Chore: Migrate REST API - getAgentDepartments to Typescript (#3855)

This commit is contained in:
Reinaldo Neto 2022-03-08 12:04:41 -03:00 committed by GitHub
parent c758fa5c9f
commit 679a628f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 6 deletions

View File

@ -194,6 +194,10 @@ export type OmnichannelEndpoints = {
};
};
'livechat/agents/:uid/departments?enabledDepartmentsOnly=true': {
GET: () => { departments: ILivechatDepartment[] };
};
'canned-responses': {
GET: (params: PaginatedRequest<{ scope?: string; departmentId?: string; text?: string }>) => PaginatedResult<{
cannedResponses: ICannedResponse[];

View File

@ -3,7 +3,6 @@ import { store } from '../../../../lib/auxStore';
import RocketChat from '../../../../lib/rocketchat';
import { inquiryQueueAdd, inquiryQueueRemove, inquiryQueueUpdate, inquiryRequest } from '../../actions/inquiry';
import sdk from '../../../../lib/rocketchat/services/sdk';
import { ILivechatDepartment } from '../../../../definitions/ILivechatDepartment';
import { IOmnichannelRoom } from '../../../../definitions';
interface IArgsQueueOmnichannel extends IOmnichannelRoom {
@ -82,7 +81,7 @@ export default function subscribeInquiry() {
throw new Error('inquiry: @subscribeInquiry user.id not found');
}
RocketChat.getAgentDepartments(user.id).then((result: { success: boolean; departments: ILivechatDepartment[] }) => {
RocketChat.getAgentDepartments(user.id).then(result => {
if (result.success) {
const { departments } = result;

View File

@ -395,10 +395,8 @@ export const getTagsList = (): Promise<
// RC 2.0.0
sdk.methodCallWrapper('livechat:getTagsList');
export const getAgentDepartments = (uid: string): any =>
export const getAgentDepartments = (uid: string) =>
// RC 2.4.0
// TODO: missing definitions from server
// @ts-ignore
sdk.get(`livechat/agents/${uid}/departments?enabledDepartmentsOnly=true`);
export const getCustomFields = () =>

View File

@ -146,7 +146,7 @@ const LivechatEditView = ({
const getAgentDepartments = async () => {
const result = await RocketChat.getAgentDepartments(visitor?._id);
if (result.success) {
const agentDepartments = result.departments.map((dept: { departmentId: string }) => dept.departmentId);
const agentDepartments = result.departments.map(dept => dept.departmentId);
getTagsList(agentDepartments);
}
};