@kl1/contracts 1.2.70-uat → 1.2.72-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api-contracts/src/activity-log/index.d.ts +1 -1
- package/dist/api-contracts/src/automation-queue/index.d.ts +7 -7
- package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/index.d.ts +27 -27
- package/dist/api-contracts/src/chat/index.d.ts +19 -19
- package/dist/api-contracts/src/contract.d.ts +102 -96
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/index.d.ts +19 -13
- package/dist/api-contracts/src/dashboard/index.d.ts.map +1 -1
- package/dist/api-contracts/src/dashboard/schema.d.ts +3 -3
- package/dist/api-contracts/src/dashboard/validation.d.ts +1 -1
- package/dist/api-contracts/src/dashboard/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/extension/index.d.ts +7 -7
- package/dist/api-contracts/src/hold-label/index.d.ts +10 -10
- package/dist/api-contracts/src/notification/index.d.ts +4 -4
- package/dist/api-contracts/src/presence-status/index.d.ts +5 -5
- package/dist/api-contracts/src/telephony-cdr/index.d.ts +14 -14
- package/dist/api-contracts/src/workflow-rule/index.d.ts +4 -4
- package/dist/index.js +46 -38
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +46 -38
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CallCountsQuerySchema, GetDashboardInOutQueryParamsSchema, GetDashboardQueryDetailParamsSchema, GetDashboardQueryParamsSchema, GetMessageChannelQueryParamsSchema,
|
|
1
|
+
import { CallCountsQuerySchema, GetDashboardInOutQueryParamsSchema, GetDashboardQueryDetailParamsSchema, GetDashboardQueryParamsSchema, GetMessageChannelQueryParamsSchema, DashboardQueryParamsSchema } from './validation';
|
|
2
2
|
import z from 'zod';
|
|
3
3
|
import { DashboardDataSchema, ExpiredTicketSchema, TicketCountByStatusSchema, MessageCountsByChannelObjSchema, queueCallDashboardDataSchema, queueLiveCallCountListSchema, TagCountObjSchema, CallEndResultSchema, ConversationCountStatusSchema, MessageStatusSchema, MessageAverageSchema, ChannelIncomingMessageSchema, MessageDispositionSchema, MessageIncomingDataSchema, MessageTotalIncomingDataSchema, TelephonyQueueCallCountListSchema, TotalTelephonyQueueCallCountListSchema, TelephonyQueueCallCountListByQueueNumberSchema, TotalQueueLiveCallStatusSchema, QueueLiveCallListByQueueSchema, DashboardDataWithCallSchema, ReceivedTicketCountDataSchema, ResolvedTicketCountDataSchema, TagCountSchema, AgentMessageStatisticsSchema, UserCheckInLogSchema, UserCheckInLogsWithDaySchema } from './schema';
|
|
4
4
|
export type DashBoardData = z.infer<typeof DashboardDataSchema>;
|
|
@@ -33,7 +33,7 @@ export type GetDashboardRequest = z.infer<typeof GetDashboardQueryParamsSchema>;
|
|
|
33
33
|
export type GetDashboardInOutQuery = z.infer<typeof GetDashboardInOutQueryParamsSchema>;
|
|
34
34
|
export type GetDashboardDetailRequest = z.infer<typeof GetDashboardQueryDetailParamsSchema>;
|
|
35
35
|
export type MessageChannelQuery = z.infer<typeof GetMessageChannelQueryParamsSchema>;
|
|
36
|
-
export type DashboardQueryparamsType = z.infer<typeof
|
|
36
|
+
export type DashboardQueryparamsType = z.infer<typeof DashboardQueryParamsSchema>;
|
|
37
37
|
export type CallCountsQuery = z.infer<typeof CallCountsQuerySchema>;
|
|
38
38
|
export declare const dashboardContract: {
|
|
39
39
|
getDashboardData: {
|
|
@@ -1166,17 +1166,17 @@ export declare const dashboardContract: {
|
|
|
1166
1166
|
summary: "Get message tag data";
|
|
1167
1167
|
method: "GET";
|
|
1168
1168
|
query: z.ZodObject<{
|
|
1169
|
+
automationQueueId: z.ZodOptional<z.ZodString>;
|
|
1169
1170
|
selectedDate: z.ZodString;
|
|
1170
1171
|
channelIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1171
|
-
agentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1172
1172
|
}, "strip", z.ZodTypeAny, {
|
|
1173
1173
|
selectedDate: string;
|
|
1174
|
+
automationQueueId?: string | undefined;
|
|
1174
1175
|
channelIds?: string[] | undefined;
|
|
1175
|
-
agentIds?: string[] | undefined;
|
|
1176
1176
|
}, {
|
|
1177
1177
|
selectedDate: string;
|
|
1178
|
+
automationQueueId?: string | undefined;
|
|
1178
1179
|
channelIds?: string[] | undefined;
|
|
1179
|
-
agentIds?: string[] | undefined;
|
|
1180
1180
|
}>;
|
|
1181
1181
|
responses: {
|
|
1182
1182
|
200: z.ZodObject<{
|
|
@@ -1784,17 +1784,17 @@ export declare const dashboardContract: {
|
|
|
1784
1784
|
summary: "Get message room status disposition data";
|
|
1785
1785
|
method: "GET";
|
|
1786
1786
|
query: z.ZodObject<{
|
|
1787
|
+
automationQueueId: z.ZodOptional<z.ZodString>;
|
|
1787
1788
|
selectedDate: z.ZodString;
|
|
1788
1789
|
channelIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1789
|
-
agentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1790
1790
|
}, "strip", z.ZodTypeAny, {
|
|
1791
1791
|
selectedDate: string;
|
|
1792
|
+
automationQueueId?: string | undefined;
|
|
1792
1793
|
channelIds?: string[] | undefined;
|
|
1793
|
-
agentIds?: string[] | undefined;
|
|
1794
1794
|
}, {
|
|
1795
1795
|
selectedDate: string;
|
|
1796
|
+
automationQueueId?: string | undefined;
|
|
1796
1797
|
channelIds?: string[] | undefined;
|
|
1797
|
-
agentIds?: string[] | undefined;
|
|
1798
1798
|
}>;
|
|
1799
1799
|
responses: {
|
|
1800
1800
|
200: z.ZodObject<{
|
|
@@ -2280,7 +2280,7 @@ export declare const dashboardContract: {
|
|
|
2280
2280
|
agentMessageStatistics: z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2281
2281
|
id: z.ZodString;
|
|
2282
2282
|
name: z.ZodString;
|
|
2283
|
-
|
|
2283
|
+
assignedRoomCount: z.ZodNumber;
|
|
2284
2284
|
holdRoomCount: z.ZodNumber;
|
|
2285
2285
|
closedRoomCount: z.ZodNumber;
|
|
2286
2286
|
averageFirstResponseTime: z.ZodString;
|
|
@@ -2290,8 +2290,8 @@ export declare const dashboardContract: {
|
|
|
2290
2290
|
name: string;
|
|
2291
2291
|
id: string;
|
|
2292
2292
|
closedRoomCount: number;
|
|
2293
|
+
assignedRoomCount: number;
|
|
2293
2294
|
holdRoomCount: number;
|
|
2294
|
-
openedRoomCount: number;
|
|
2295
2295
|
averageFirstResponseTime: string;
|
|
2296
2296
|
averageResolutionTime: string;
|
|
2297
2297
|
totalHandledTime: string;
|
|
@@ -2299,8 +2299,8 @@ export declare const dashboardContract: {
|
|
|
2299
2299
|
name: string;
|
|
2300
2300
|
id: string;
|
|
2301
2301
|
closedRoomCount: number;
|
|
2302
|
+
assignedRoomCount: number;
|
|
2302
2303
|
holdRoomCount: number;
|
|
2303
|
-
openedRoomCount: number;
|
|
2304
2304
|
averageFirstResponseTime: string;
|
|
2305
2305
|
averageResolutionTime: string;
|
|
2306
2306
|
totalHandledTime: string;
|
|
@@ -2313,8 +2313,8 @@ export declare const dashboardContract: {
|
|
|
2313
2313
|
name: string;
|
|
2314
2314
|
id: string;
|
|
2315
2315
|
closedRoomCount: number;
|
|
2316
|
+
assignedRoomCount: number;
|
|
2316
2317
|
holdRoomCount: number;
|
|
2317
|
-
openedRoomCount: number;
|
|
2318
2318
|
averageFirstResponseTime: string;
|
|
2319
2319
|
averageResolutionTime: string;
|
|
2320
2320
|
totalHandledTime: string;
|
|
@@ -2327,8 +2327,8 @@ export declare const dashboardContract: {
|
|
|
2327
2327
|
name: string;
|
|
2328
2328
|
id: string;
|
|
2329
2329
|
closedRoomCount: number;
|
|
2330
|
+
assignedRoomCount: number;
|
|
2330
2331
|
holdRoomCount: number;
|
|
2331
|
-
openedRoomCount: number;
|
|
2332
2332
|
averageFirstResponseTime: string;
|
|
2333
2333
|
averageResolutionTime: string;
|
|
2334
2334
|
totalHandledTime: string;
|
|
@@ -2341,16 +2341,19 @@ export declare const dashboardContract: {
|
|
|
2341
2341
|
method: "GET";
|
|
2342
2342
|
query: z.ZodObject<{
|
|
2343
2343
|
automationQueueId: z.ZodOptional<z.ZodString>;
|
|
2344
|
+
keyword: z.ZodOptional<z.ZodString>;
|
|
2344
2345
|
page: z.ZodNumber;
|
|
2345
2346
|
pageSize: z.ZodNumber;
|
|
2346
2347
|
}, "strip", z.ZodTypeAny, {
|
|
2347
2348
|
page: number;
|
|
2348
2349
|
pageSize: number;
|
|
2349
2350
|
automationQueueId?: string | undefined;
|
|
2351
|
+
keyword?: string | undefined;
|
|
2350
2352
|
}, {
|
|
2351
2353
|
page: number;
|
|
2352
2354
|
pageSize: number;
|
|
2353
2355
|
automationQueueId?: string | undefined;
|
|
2356
|
+
keyword?: string | undefined;
|
|
2354
2357
|
}>;
|
|
2355
2358
|
responses: {
|
|
2356
2359
|
200: z.ZodObject<{
|
|
@@ -2451,14 +2454,17 @@ export declare const dashboardContract: {
|
|
|
2451
2454
|
getRoomStatusCountsByUserId: {
|
|
2452
2455
|
method: "GET";
|
|
2453
2456
|
query: z.ZodObject<{
|
|
2457
|
+
automationQueueId: z.ZodOptional<z.ZodString>;
|
|
2454
2458
|
userId: z.ZodString;
|
|
2455
2459
|
selectedDate: z.ZodString;
|
|
2456
2460
|
}, "strip", z.ZodTypeAny, {
|
|
2457
2461
|
userId: string;
|
|
2458
2462
|
selectedDate: string;
|
|
2463
|
+
automationQueueId?: string | undefined;
|
|
2459
2464
|
}, {
|
|
2460
2465
|
userId: string;
|
|
2461
2466
|
selectedDate: string;
|
|
2467
|
+
automationQueueId?: string | undefined;
|
|
2462
2468
|
}>;
|
|
2463
2469
|
responses: {
|
|
2464
2470
|
200: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/dashboard/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/dashboard/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+X7B,CAAC"}
|
|
@@ -1089,7 +1089,7 @@ export declare const MessageQueueDataSchema: z.ZodObject<{
|
|
|
1089
1089
|
export declare const AgentMessageStatisticsSchema: z.ZodObject<{
|
|
1090
1090
|
id: z.ZodString;
|
|
1091
1091
|
name: z.ZodString;
|
|
1092
|
-
|
|
1092
|
+
assignedRoomCount: z.ZodNumber;
|
|
1093
1093
|
holdRoomCount: z.ZodNumber;
|
|
1094
1094
|
closedRoomCount: z.ZodNumber;
|
|
1095
1095
|
averageFirstResponseTime: z.ZodString;
|
|
@@ -1099,8 +1099,8 @@ export declare const AgentMessageStatisticsSchema: z.ZodObject<{
|
|
|
1099
1099
|
name: string;
|
|
1100
1100
|
id: string;
|
|
1101
1101
|
closedRoomCount: number;
|
|
1102
|
+
assignedRoomCount: number;
|
|
1102
1103
|
holdRoomCount: number;
|
|
1103
|
-
openedRoomCount: number;
|
|
1104
1104
|
averageFirstResponseTime: string;
|
|
1105
1105
|
averageResolutionTime: string;
|
|
1106
1106
|
totalHandledTime: string;
|
|
@@ -1108,8 +1108,8 @@ export declare const AgentMessageStatisticsSchema: z.ZodObject<{
|
|
|
1108
1108
|
name: string;
|
|
1109
1109
|
id: string;
|
|
1110
1110
|
closedRoomCount: number;
|
|
1111
|
+
assignedRoomCount: number;
|
|
1111
1112
|
holdRoomCount: number;
|
|
1112
|
-
openedRoomCount: number;
|
|
1113
1113
|
averageFirstResponseTime: string;
|
|
1114
1114
|
averageResolutionTime: string;
|
|
1115
1115
|
totalHandledTime: string;
|
|
@@ -22,7 +22,7 @@ export declare const GetMessageChannelQueryParamsSchema: z.ZodObject<{
|
|
|
22
22
|
selectedDate: string;
|
|
23
23
|
channelIds?: string[] | undefined;
|
|
24
24
|
}>;
|
|
25
|
-
export declare const
|
|
25
|
+
export declare const DashboardQueryParamsSchema: z.ZodObject<{
|
|
26
26
|
selectedDate: z.ZodString;
|
|
27
27
|
channelIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28
28
|
agentIds: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/dashboard/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,6BAA6B;;;;;;;;;EAGxC,CAAC;AAEH,eAAO,MAAM,kCAAkC;;;;;;;;;;;;EAI3C,CAAC;AACL,eAAO,MAAM,0BAA0B;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../../src/dashboard/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,6BAA6B;;;;;;;;;EAGxC,CAAC;AAEH,eAAO,MAAM,kCAAkC;;;;;;;;;;;;EAI3C,CAAC;AACL,eAAO,MAAM,0BAA0B;;;;;;;;;;;;EAGrC,CAAC;AAEH,eAAO,MAAM,mCAAmC;;;;;;;;;;;;GAKlC,CAAC;AAEf,eAAO,MAAM,kCAAkC;;;;;;;;;;;;EAK5C,CAAC;AAEJ,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;EAKhC,CAAC;AAEH,eAAO,MAAM,kCAAkC;;;;;;;;;;;;EAI7C,CAAC"}
|
|
@@ -152,7 +152,7 @@ export declare const extensionContract: {
|
|
|
152
152
|
error?: any;
|
|
153
153
|
}>;
|
|
154
154
|
};
|
|
155
|
-
path: "extension";
|
|
155
|
+
path: "ms/extension";
|
|
156
156
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
157
157
|
'x-tenant': z.ZodString;
|
|
158
158
|
'x-service-token': z.ZodString;
|
|
@@ -354,7 +354,7 @@ export declare const extensionContract: {
|
|
|
354
354
|
error?: any;
|
|
355
355
|
}>;
|
|
356
356
|
};
|
|
357
|
-
path: "extension";
|
|
357
|
+
path: "ms/extension";
|
|
358
358
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
359
359
|
'x-tenant': z.ZodString;
|
|
360
360
|
'x-service-token': z.ZodString;
|
|
@@ -468,7 +468,7 @@ export declare const extensionContract: {
|
|
|
468
468
|
error?: any;
|
|
469
469
|
}>;
|
|
470
470
|
};
|
|
471
|
-
path: "extension/user/:userId";
|
|
471
|
+
path: "ms/extension/user/:userId";
|
|
472
472
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
473
473
|
'x-tenant': z.ZodString;
|
|
474
474
|
'x-service-token': z.ZodString;
|
|
@@ -618,7 +618,7 @@ export declare const extensionContract: {
|
|
|
618
618
|
error?: any;
|
|
619
619
|
}>;
|
|
620
620
|
};
|
|
621
|
-
path: "extension/dialpad";
|
|
621
|
+
path: "ms/extension/dialpad";
|
|
622
622
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
623
623
|
'x-tenant': z.ZodString;
|
|
624
624
|
'x-service-token': z.ZodString;
|
|
@@ -790,7 +790,7 @@ export declare const extensionContract: {
|
|
|
790
790
|
error?: any;
|
|
791
791
|
}>;
|
|
792
792
|
};
|
|
793
|
-
path: "extension/:id";
|
|
793
|
+
path: "ms/extension/:id";
|
|
794
794
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
795
795
|
'x-tenant': z.ZodString;
|
|
796
796
|
'x-service-token': z.ZodString;
|
|
@@ -878,7 +878,7 @@ export declare const extensionContract: {
|
|
|
878
878
|
error?: any;
|
|
879
879
|
}>;
|
|
880
880
|
};
|
|
881
|
-
path: "extension/:id";
|
|
881
|
+
path: "ms/extension/:id";
|
|
882
882
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
883
883
|
'x-tenant': z.ZodString;
|
|
884
884
|
'x-service-token': z.ZodString;
|
|
@@ -959,7 +959,7 @@ export declare const extensionContract: {
|
|
|
959
959
|
error?: any;
|
|
960
960
|
}>;
|
|
961
961
|
};
|
|
962
|
-
path: "extension/request-new-extension";
|
|
962
|
+
path: "ms/extension/request-new-extension";
|
|
963
963
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
964
964
|
'x-tenant': z.ZodString;
|
|
965
965
|
'x-service-token': z.ZodString;
|
|
@@ -67,7 +67,7 @@ export declare const holdLabelContract: {
|
|
|
67
67
|
};
|
|
68
68
|
}>;
|
|
69
69
|
};
|
|
70
|
-
path: "hold-label/";
|
|
70
|
+
path: "ms/hold-label/";
|
|
71
71
|
};
|
|
72
72
|
getHoldLabels: {
|
|
73
73
|
method: "GET";
|
|
@@ -123,7 +123,7 @@ export declare const holdLabelContract: {
|
|
|
123
123
|
}[];
|
|
124
124
|
}>;
|
|
125
125
|
};
|
|
126
|
-
path: "hold-label/";
|
|
126
|
+
path: "ms/hold-label/";
|
|
127
127
|
};
|
|
128
128
|
updateHoldLabelPosition: {
|
|
129
129
|
body: z.ZodObject<{
|
|
@@ -201,7 +201,7 @@ export declare const holdLabelContract: {
|
|
|
201
201
|
};
|
|
202
202
|
}>;
|
|
203
203
|
};
|
|
204
|
-
path: "hold-label/position";
|
|
204
|
+
path: "ms/hold-label/position";
|
|
205
205
|
};
|
|
206
206
|
updateHoldLabel: {
|
|
207
207
|
body: z.ZodObject<{
|
|
@@ -271,7 +271,7 @@ export declare const holdLabelContract: {
|
|
|
271
271
|
};
|
|
272
272
|
}>;
|
|
273
273
|
};
|
|
274
|
-
path: "hold-label/:id";
|
|
274
|
+
path: "ms/hold-label/:id";
|
|
275
275
|
};
|
|
276
276
|
deleteHoldLabel: {
|
|
277
277
|
body: null;
|
|
@@ -292,7 +292,7 @@ export declare const holdLabelContract: {
|
|
|
292
292
|
requestId: string;
|
|
293
293
|
}>;
|
|
294
294
|
};
|
|
295
|
-
path: "hold-label/:id";
|
|
295
|
+
path: "ms/hold-label/:id";
|
|
296
296
|
};
|
|
297
297
|
getAutoUnhold: {
|
|
298
298
|
method: "GET";
|
|
@@ -308,7 +308,7 @@ export declare const holdLabelContract: {
|
|
|
308
308
|
autoUnhold: boolean;
|
|
309
309
|
}>;
|
|
310
310
|
};
|
|
311
|
-
path: "hold-label/auto-unhold";
|
|
311
|
+
path: "ms/hold-label/auto-unhold";
|
|
312
312
|
};
|
|
313
313
|
updateAutoUnhold: {
|
|
314
314
|
body: z.ZodObject<{
|
|
@@ -331,7 +331,7 @@ export declare const holdLabelContract: {
|
|
|
331
331
|
autoUnhold: boolean;
|
|
332
332
|
}>;
|
|
333
333
|
};
|
|
334
|
-
path: "hold-label/auto-unhold";
|
|
334
|
+
path: "ms/hold-label/auto-unhold";
|
|
335
335
|
};
|
|
336
336
|
getHoldLogs: {
|
|
337
337
|
method: "GET";
|
|
@@ -457,7 +457,7 @@ export declare const holdLabelContract: {
|
|
|
457
457
|
}[];
|
|
458
458
|
}>;
|
|
459
459
|
};
|
|
460
|
-
path: "hold-label/hold-logs";
|
|
460
|
+
path: "ms/hold-label/hold-logs";
|
|
461
461
|
};
|
|
462
462
|
holdRoom: {
|
|
463
463
|
body: z.ZodObject<{
|
|
@@ -584,7 +584,7 @@ export declare const holdLabelContract: {
|
|
|
584
584
|
};
|
|
585
585
|
}>;
|
|
586
586
|
};
|
|
587
|
-
path: "hold-label/hold-room";
|
|
587
|
+
path: "ms/hold-label/hold-room";
|
|
588
588
|
};
|
|
589
589
|
unholdRoom: {
|
|
590
590
|
body: z.ZodObject<{
|
|
@@ -708,7 +708,7 @@ export declare const holdLabelContract: {
|
|
|
708
708
|
} | undefined;
|
|
709
709
|
}>;
|
|
710
710
|
};
|
|
711
|
-
path: "hold-label/unhold-room";
|
|
711
|
+
path: "ms/hold-label/unhold-room";
|
|
712
712
|
};
|
|
713
713
|
};
|
|
714
714
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -981,7 +981,7 @@ export declare const userNotificationContract: {
|
|
|
981
981
|
error?: any;
|
|
982
982
|
}>;
|
|
983
983
|
};
|
|
984
|
-
path: "notification";
|
|
984
|
+
path: "ms/notification";
|
|
985
985
|
};
|
|
986
986
|
getNewNotificationsCount: {
|
|
987
987
|
summary: "Get user's unread notifications count";
|
|
@@ -1049,7 +1049,7 @@ export declare const userNotificationContract: {
|
|
|
1049
1049
|
error?: any;
|
|
1050
1050
|
}>;
|
|
1051
1051
|
};
|
|
1052
|
-
path: "notification/new_notifications_count";
|
|
1052
|
+
path: "ms/notification/new_notifications_count";
|
|
1053
1053
|
};
|
|
1054
1054
|
resetNotifications: {
|
|
1055
1055
|
body: null;
|
|
@@ -1407,7 +1407,7 @@ export declare const userNotificationContract: {
|
|
|
1407
1407
|
error?: any;
|
|
1408
1408
|
}>;
|
|
1409
1409
|
};
|
|
1410
|
-
path: "notification/reset";
|
|
1410
|
+
path: "ms/notification/reset";
|
|
1411
1411
|
};
|
|
1412
1412
|
readNotification: {
|
|
1413
1413
|
body: z.ZodObject<{
|
|
@@ -2211,7 +2211,7 @@ export declare const userNotificationContract: {
|
|
|
2211
2211
|
error?: any;
|
|
2212
2212
|
}>;
|
|
2213
2213
|
};
|
|
2214
|
-
path: "notification/read/:id";
|
|
2214
|
+
path: "ms/notification/read/:id";
|
|
2215
2215
|
};
|
|
2216
2216
|
};
|
|
2217
2217
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -103,7 +103,7 @@ export declare const presenceStatusContract: {
|
|
|
103
103
|
error?: any;
|
|
104
104
|
}>;
|
|
105
105
|
};
|
|
106
|
-
path: "presence_status";
|
|
106
|
+
path: "ms/presence_status";
|
|
107
107
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
108
108
|
'x-tenant': z.ZodString;
|
|
109
109
|
'x-service-token': z.ZodString;
|
|
@@ -260,7 +260,7 @@ export declare const presenceStatusContract: {
|
|
|
260
260
|
error?: any;
|
|
261
261
|
}>;
|
|
262
262
|
};
|
|
263
|
-
path: "presence_status";
|
|
263
|
+
path: "ms/presence_status";
|
|
264
264
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
265
265
|
'x-tenant': z.ZodString;
|
|
266
266
|
'x-service-token': z.ZodString;
|
|
@@ -371,7 +371,7 @@ export declare const presenceStatusContract: {
|
|
|
371
371
|
error?: any;
|
|
372
372
|
}>;
|
|
373
373
|
};
|
|
374
|
-
path: "presence_status/:id";
|
|
374
|
+
path: "ms/presence_status/:id";
|
|
375
375
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
376
376
|
'x-tenant': z.ZodString;
|
|
377
377
|
'x-service-token': z.ZodString;
|
|
@@ -535,7 +535,7 @@ export declare const presenceStatusContract: {
|
|
|
535
535
|
error?: any;
|
|
536
536
|
}>;
|
|
537
537
|
};
|
|
538
|
-
path: "presence_status/:id";
|
|
538
|
+
path: "ms/presence_status/:id";
|
|
539
539
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
540
540
|
'x-tenant': z.ZodString;
|
|
541
541
|
'x-service-token': z.ZodString;
|
|
@@ -606,7 +606,7 @@ export declare const presenceStatusContract: {
|
|
|
606
606
|
error?: any;
|
|
607
607
|
}>;
|
|
608
608
|
};
|
|
609
|
-
path: "presence_status/:id";
|
|
609
|
+
path: "ms/presence_status/:id";
|
|
610
610
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
611
611
|
'x-tenant': z.ZodString;
|
|
612
612
|
'x-service-token': z.ZodString;
|
|
@@ -2888,7 +2888,7 @@ export declare const telephonyCdrContract: {
|
|
|
2888
2888
|
error?: any;
|
|
2889
2889
|
}>;
|
|
2890
2890
|
};
|
|
2891
|
-
path: "telephony-cdr/";
|
|
2891
|
+
path: "ms/telephony-cdr/";
|
|
2892
2892
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2893
2893
|
'x-tenant': z.ZodString;
|
|
2894
2894
|
'x-service-token': z.ZodString;
|
|
@@ -5767,7 +5767,7 @@ export declare const telephonyCdrContract: {
|
|
|
5767
5767
|
error?: any;
|
|
5768
5768
|
}>;
|
|
5769
5769
|
};
|
|
5770
|
-
path: "telephony-cdr/recordings";
|
|
5770
|
+
path: "ms/telephony-cdr/recordings";
|
|
5771
5771
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
5772
5772
|
'x-tenant': z.ZodString;
|
|
5773
5773
|
'x-service-token': z.ZodString;
|
|
@@ -8649,7 +8649,7 @@ export declare const telephonyCdrContract: {
|
|
|
8649
8649
|
error?: any;
|
|
8650
8650
|
}>;
|
|
8651
8651
|
};
|
|
8652
|
-
path: "telephony-cdr/recent-calls";
|
|
8652
|
+
path: "ms/telephony-cdr/recent-calls";
|
|
8653
8653
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8654
8654
|
'x-tenant': z.ZodString;
|
|
8655
8655
|
'x-service-token': z.ZodString;
|
|
@@ -8739,7 +8739,7 @@ export declare const telephonyCdrContract: {
|
|
|
8739
8739
|
error?: any;
|
|
8740
8740
|
}>;
|
|
8741
8741
|
};
|
|
8742
|
-
path: "telephony-cdr/export";
|
|
8742
|
+
path: "ms/telephony-cdr/export";
|
|
8743
8743
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8744
8744
|
'x-tenant': z.ZodString;
|
|
8745
8745
|
'x-service-token': z.ZodString;
|
|
@@ -8829,7 +8829,7 @@ export declare const telephonyCdrContract: {
|
|
|
8829
8829
|
error?: any;
|
|
8830
8830
|
}>;
|
|
8831
8831
|
};
|
|
8832
|
-
path: "telephony-cdr/yeastar_call_report";
|
|
8832
|
+
path: "ms/telephony-cdr/yeastar_call_report";
|
|
8833
8833
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8834
8834
|
'x-tenant': z.ZodString;
|
|
8835
8835
|
'x-service-token': z.ZodString;
|
|
@@ -8919,7 +8919,7 @@ export declare const telephonyCdrContract: {
|
|
|
8919
8919
|
error?: any;
|
|
8920
8920
|
}>;
|
|
8921
8921
|
};
|
|
8922
|
-
path: "telephony-cdr/yeastar_call_report/export";
|
|
8922
|
+
path: "ms/telephony-cdr/yeastar_call_report/export";
|
|
8923
8923
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
8924
8924
|
'x-tenant': z.ZodString;
|
|
8925
8925
|
'x-service-token': z.ZodString;
|
|
@@ -8997,7 +8997,7 @@ export declare const telephonyCdrContract: {
|
|
|
8997
8997
|
error?: any;
|
|
8998
8998
|
}>;
|
|
8999
8999
|
};
|
|
9000
|
-
path: "telephony-cdr/trunks";
|
|
9000
|
+
path: "ms/telephony-cdr/trunks";
|
|
9001
9001
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9002
9002
|
'x-tenant': z.ZodString;
|
|
9003
9003
|
'x-service-token': z.ZodString;
|
|
@@ -9085,7 +9085,7 @@ export declare const telephonyCdrContract: {
|
|
|
9085
9085
|
error?: any;
|
|
9086
9086
|
}>;
|
|
9087
9087
|
};
|
|
9088
|
-
path: "telephony-cdr/queues";
|
|
9088
|
+
path: "ms/telephony-cdr/queues";
|
|
9089
9089
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9090
9090
|
'x-tenant': z.ZodString;
|
|
9091
9091
|
'x-service-token': z.ZodString;
|
|
@@ -9490,7 +9490,7 @@ export declare const telephonyCdrContract: {
|
|
|
9490
9490
|
error?: any;
|
|
9491
9491
|
}>;
|
|
9492
9492
|
};
|
|
9493
|
-
path: "telephony-cdr/extensions";
|
|
9493
|
+
path: "ms/telephony-cdr/extensions";
|
|
9494
9494
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9495
9495
|
'x-tenant': z.ZodString;
|
|
9496
9496
|
'x-service-token': z.ZodString;
|
|
@@ -9554,7 +9554,7 @@ export declare const telephonyCdrContract: {
|
|
|
9554
9554
|
error?: any;
|
|
9555
9555
|
}>;
|
|
9556
9556
|
};
|
|
9557
|
-
path: "telephony-cdr/dropdown";
|
|
9557
|
+
path: "ms/telephony-cdr/dropdown";
|
|
9558
9558
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9559
9559
|
'x-tenant': z.ZodString;
|
|
9560
9560
|
'x-service-token': z.ZodString;
|
|
@@ -9613,7 +9613,7 @@ export declare const telephonyCdrContract: {
|
|
|
9613
9613
|
error?: any;
|
|
9614
9614
|
}>;
|
|
9615
9615
|
};
|
|
9616
|
-
path: "telephony-cdr/call-redirect-setting";
|
|
9616
|
+
path: "ms/telephony-cdr/call-redirect-setting";
|
|
9617
9617
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9618
9618
|
'x-tenant': z.ZodString;
|
|
9619
9619
|
'x-service-token': z.ZodString;
|
|
@@ -9679,7 +9679,7 @@ export declare const telephonyCdrContract: {
|
|
|
9679
9679
|
error?: any;
|
|
9680
9680
|
}>;
|
|
9681
9681
|
};
|
|
9682
|
-
path: "telephony-cdr/call-redirect-setting";
|
|
9682
|
+
path: "ms/telephony-cdr/call-redirect-setting";
|
|
9683
9683
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9684
9684
|
'x-tenant': z.ZodString;
|
|
9685
9685
|
'x-service-token': z.ZodString;
|
|
@@ -9741,7 +9741,7 @@ export declare const telephonyCdrContract: {
|
|
|
9741
9741
|
error?: any;
|
|
9742
9742
|
}>;
|
|
9743
9743
|
};
|
|
9744
|
-
path: "telephony-cdr/call-setting";
|
|
9744
|
+
path: "ms/telephony-cdr/call-setting";
|
|
9745
9745
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9746
9746
|
'x-tenant': z.ZodString;
|
|
9747
9747
|
'x-service-token': z.ZodString;
|
|
@@ -9813,7 +9813,7 @@ export declare const telephonyCdrContract: {
|
|
|
9813
9813
|
error?: any;
|
|
9814
9814
|
}>;
|
|
9815
9815
|
};
|
|
9816
|
-
path: "telephony-cdr/call-setting";
|
|
9816
|
+
path: "ms/telephony-cdr/call-setting";
|
|
9817
9817
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
9818
9818
|
'x-tenant': z.ZodString;
|
|
9819
9819
|
'x-service-token': z.ZodString;
|
|
@@ -4342,7 +4342,7 @@ export declare const chatContract: {
|
|
|
4342
4342
|
error?: any;
|
|
4343
4343
|
}>;
|
|
4344
4344
|
};
|
|
4345
|
-
path: "chat/room/assignee";
|
|
4345
|
+
path: "ms/chat/room/assignee";
|
|
4346
4346
|
headers: z.ZodObject<{
|
|
4347
4347
|
'x-tenant': z.ZodString;
|
|
4348
4348
|
'x-code': z.ZodOptional<z.ZodString>;
|
|
@@ -12580,7 +12580,7 @@ export declare const chatContract: {
|
|
|
12580
12580
|
error?: any;
|
|
12581
12581
|
}>;
|
|
12582
12582
|
};
|
|
12583
|
-
path: "chat/message/send";
|
|
12583
|
+
path: "ms/chat/message/send";
|
|
12584
12584
|
headers: z.ZodObject<{
|
|
12585
12585
|
'x-tenant': z.ZodString;
|
|
12586
12586
|
'x-code': z.ZodOptional<z.ZodString>;
|
|
@@ -16936,7 +16936,7 @@ export declare const chatContract: {
|
|
|
16936
16936
|
error?: any;
|
|
16937
16937
|
}>;
|
|
16938
16938
|
};
|
|
16939
|
-
path: "chat/room/solve";
|
|
16939
|
+
path: "ms/chat/room/solve";
|
|
16940
16940
|
headers: z.ZodObject<{
|
|
16941
16941
|
'x-tenant': z.ZodString;
|
|
16942
16942
|
'x-code': z.ZodOptional<z.ZodString>;
|
|
@@ -16990,7 +16990,7 @@ export declare const chatContract: {
|
|
|
16990
16990
|
error?: any;
|
|
16991
16991
|
}>;
|
|
16992
16992
|
};
|
|
16993
|
-
path: "chat/message/emit";
|
|
16993
|
+
path: "ms/chat/message/emit";
|
|
16994
16994
|
headers: z.ZodObject<{
|
|
16995
16995
|
'x-tenant': z.ZodString;
|
|
16996
16996
|
'x-code': z.ZodOptional<z.ZodString>;
|