@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
|
@@ -12264,17 +12264,17 @@ export declare const apiContract: {
|
|
|
12264
12264
|
summary: "Get message tag data";
|
|
12265
12265
|
method: "GET";
|
|
12266
12266
|
query: import("zod").ZodObject<{
|
|
12267
|
+
automationQueueId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12267
12268
|
selectedDate: import("zod").ZodString;
|
|
12268
12269
|
channelIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
12269
|
-
agentIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
12270
12270
|
}, "strip", import("zod").ZodTypeAny, {
|
|
12271
12271
|
selectedDate: string;
|
|
12272
|
+
automationQueueId?: string | undefined;
|
|
12272
12273
|
channelIds?: string[] | undefined;
|
|
12273
|
-
agentIds?: string[] | undefined;
|
|
12274
12274
|
}, {
|
|
12275
12275
|
selectedDate: string;
|
|
12276
|
+
automationQueueId?: string | undefined;
|
|
12276
12277
|
channelIds?: string[] | undefined;
|
|
12277
|
-
agentIds?: string[] | undefined;
|
|
12278
12278
|
}>;
|
|
12279
12279
|
responses: {
|
|
12280
12280
|
200: import("zod").ZodObject<{
|
|
@@ -12882,17 +12882,17 @@ export declare const apiContract: {
|
|
|
12882
12882
|
summary: "Get message room status disposition data";
|
|
12883
12883
|
method: "GET";
|
|
12884
12884
|
query: import("zod").ZodObject<{
|
|
12885
|
+
automationQueueId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12885
12886
|
selectedDate: import("zod").ZodString;
|
|
12886
12887
|
channelIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
12887
|
-
agentIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
12888
12888
|
}, "strip", import("zod").ZodTypeAny, {
|
|
12889
12889
|
selectedDate: string;
|
|
12890
|
+
automationQueueId?: string | undefined;
|
|
12890
12891
|
channelIds?: string[] | undefined;
|
|
12891
|
-
agentIds?: string[] | undefined;
|
|
12892
12892
|
}, {
|
|
12893
12893
|
selectedDate: string;
|
|
12894
|
+
automationQueueId?: string | undefined;
|
|
12894
12895
|
channelIds?: string[] | undefined;
|
|
12895
|
-
agentIds?: string[] | undefined;
|
|
12896
12896
|
}>;
|
|
12897
12897
|
responses: {
|
|
12898
12898
|
200: import("zod").ZodObject<{
|
|
@@ -13378,7 +13378,7 @@ export declare const apiContract: {
|
|
|
13378
13378
|
agentMessageStatistics: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodObject<{
|
|
13379
13379
|
id: import("zod").ZodString;
|
|
13380
13380
|
name: import("zod").ZodString;
|
|
13381
|
-
|
|
13381
|
+
assignedRoomCount: import("zod").ZodNumber;
|
|
13382
13382
|
holdRoomCount: import("zod").ZodNumber;
|
|
13383
13383
|
closedRoomCount: import("zod").ZodNumber;
|
|
13384
13384
|
averageFirstResponseTime: import("zod").ZodString;
|
|
@@ -13388,8 +13388,8 @@ export declare const apiContract: {
|
|
|
13388
13388
|
name: string;
|
|
13389
13389
|
id: string;
|
|
13390
13390
|
closedRoomCount: number;
|
|
13391
|
+
assignedRoomCount: number;
|
|
13391
13392
|
holdRoomCount: number;
|
|
13392
|
-
openedRoomCount: number;
|
|
13393
13393
|
averageFirstResponseTime: string;
|
|
13394
13394
|
averageResolutionTime: string;
|
|
13395
13395
|
totalHandledTime: string;
|
|
@@ -13397,8 +13397,8 @@ export declare const apiContract: {
|
|
|
13397
13397
|
name: string;
|
|
13398
13398
|
id: string;
|
|
13399
13399
|
closedRoomCount: number;
|
|
13400
|
+
assignedRoomCount: number;
|
|
13400
13401
|
holdRoomCount: number;
|
|
13401
|
-
openedRoomCount: number;
|
|
13402
13402
|
averageFirstResponseTime: string;
|
|
13403
13403
|
averageResolutionTime: string;
|
|
13404
13404
|
totalHandledTime: string;
|
|
@@ -13411,8 +13411,8 @@ export declare const apiContract: {
|
|
|
13411
13411
|
name: string;
|
|
13412
13412
|
id: string;
|
|
13413
13413
|
closedRoomCount: number;
|
|
13414
|
+
assignedRoomCount: number;
|
|
13414
13415
|
holdRoomCount: number;
|
|
13415
|
-
openedRoomCount: number;
|
|
13416
13416
|
averageFirstResponseTime: string;
|
|
13417
13417
|
averageResolutionTime: string;
|
|
13418
13418
|
totalHandledTime: string;
|
|
@@ -13425,8 +13425,8 @@ export declare const apiContract: {
|
|
|
13425
13425
|
name: string;
|
|
13426
13426
|
id: string;
|
|
13427
13427
|
closedRoomCount: number;
|
|
13428
|
+
assignedRoomCount: number;
|
|
13428
13429
|
holdRoomCount: number;
|
|
13429
|
-
openedRoomCount: number;
|
|
13430
13430
|
averageFirstResponseTime: string;
|
|
13431
13431
|
averageResolutionTime: string;
|
|
13432
13432
|
totalHandledTime: string;
|
|
@@ -13439,16 +13439,19 @@ export declare const apiContract: {
|
|
|
13439
13439
|
method: "GET";
|
|
13440
13440
|
query: import("zod").ZodObject<{
|
|
13441
13441
|
automationQueueId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13442
|
+
keyword: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13442
13443
|
page: import("zod").ZodNumber;
|
|
13443
13444
|
pageSize: import("zod").ZodNumber;
|
|
13444
13445
|
}, "strip", import("zod").ZodTypeAny, {
|
|
13445
13446
|
page: number;
|
|
13446
13447
|
pageSize: number;
|
|
13447
13448
|
automationQueueId?: string | undefined;
|
|
13449
|
+
keyword?: string | undefined;
|
|
13448
13450
|
}, {
|
|
13449
13451
|
page: number;
|
|
13450
13452
|
pageSize: number;
|
|
13451
13453
|
automationQueueId?: string | undefined;
|
|
13454
|
+
keyword?: string | undefined;
|
|
13452
13455
|
}>;
|
|
13453
13456
|
responses: {
|
|
13454
13457
|
200: import("zod").ZodObject<{
|
|
@@ -13549,14 +13552,17 @@ export declare const apiContract: {
|
|
|
13549
13552
|
getRoomStatusCountsByUserId: {
|
|
13550
13553
|
method: "GET";
|
|
13551
13554
|
query: import("zod").ZodObject<{
|
|
13555
|
+
automationQueueId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13552
13556
|
userId: import("zod").ZodString;
|
|
13553
13557
|
selectedDate: import("zod").ZodString;
|
|
13554
13558
|
}, "strip", import("zod").ZodTypeAny, {
|
|
13555
13559
|
userId: string;
|
|
13556
13560
|
selectedDate: string;
|
|
13561
|
+
automationQueueId?: string | undefined;
|
|
13557
13562
|
}, {
|
|
13558
13563
|
userId: string;
|
|
13559
13564
|
selectedDate: string;
|
|
13565
|
+
automationQueueId?: string | undefined;
|
|
13560
13566
|
}>;
|
|
13561
13567
|
responses: {
|
|
13562
13568
|
200: import("zod").ZodObject<{
|
|
@@ -22354,7 +22360,7 @@ export declare const apiContract: {
|
|
|
22354
22360
|
requestId: string;
|
|
22355
22361
|
}>;
|
|
22356
22362
|
};
|
|
22357
|
-
path: "channel/";
|
|
22363
|
+
path: "ms/channel/";
|
|
22358
22364
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
22359
22365
|
'x-tenant': import("zod").ZodString;
|
|
22360
22366
|
'x-service-token': import("zod").ZodString;
|
|
@@ -22771,7 +22777,7 @@ export declare const apiContract: {
|
|
|
22771
22777
|
error?: any;
|
|
22772
22778
|
}>;
|
|
22773
22779
|
};
|
|
22774
|
-
path: "channel/disconnect/:channelId";
|
|
22780
|
+
path: "ms/channel/disconnect/:channelId";
|
|
22775
22781
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
22776
22782
|
'x-tenant': import("zod").ZodString;
|
|
22777
22783
|
'x-service-token': import("zod").ZodString;
|
|
@@ -23563,7 +23569,7 @@ export declare const apiContract: {
|
|
|
23563
23569
|
error?: any;
|
|
23564
23570
|
}>;
|
|
23565
23571
|
};
|
|
23566
|
-
path: "channel/delete/:channelId";
|
|
23572
|
+
path: "ms/channel/delete/:channelId";
|
|
23567
23573
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
23568
23574
|
'x-tenant': import("zod").ZodString;
|
|
23569
23575
|
'x-service-token': import("zod").ZodString;
|
|
@@ -24361,7 +24367,7 @@ export declare const apiContract: {
|
|
|
24361
24367
|
error?: any;
|
|
24362
24368
|
}>;
|
|
24363
24369
|
};
|
|
24364
|
-
path: "channel/rename/:channelId";
|
|
24370
|
+
path: "ms/channel/rename/:channelId";
|
|
24365
24371
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
24366
24372
|
'x-tenant': import("zod").ZodString;
|
|
24367
24373
|
'x-service-token': import("zod").ZodString;
|
|
@@ -25153,7 +25159,7 @@ export declare const apiContract: {
|
|
|
25153
25159
|
error?: any;
|
|
25154
25160
|
}>;
|
|
25155
25161
|
};
|
|
25156
|
-
path: "channel/reconnect/:channelId";
|
|
25162
|
+
path: "ms/channel/reconnect/:channelId";
|
|
25157
25163
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
25158
25164
|
'x-tenant': import("zod").ZodString;
|
|
25159
25165
|
'x-service-token': import("zod").ZodString;
|
|
@@ -26143,7 +26149,7 @@ export declare const apiContract: {
|
|
|
26143
26149
|
error?: any;
|
|
26144
26150
|
}>;
|
|
26145
26151
|
};
|
|
26146
|
-
path: "channel/relogin";
|
|
26152
|
+
path: "ms/channel/relogin";
|
|
26147
26153
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
26148
26154
|
'x-tenant': import("zod").ZodString;
|
|
26149
26155
|
'x-service-token': import("zod").ZodString;
|
|
@@ -26201,7 +26207,7 @@ export declare const apiContract: {
|
|
|
26201
26207
|
error?: any;
|
|
26202
26208
|
}>;
|
|
26203
26209
|
};
|
|
26204
|
-
path: "channel/check-new-tenant";
|
|
26210
|
+
path: "ms/channel/check-new-tenant";
|
|
26205
26211
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
26206
26212
|
'x-tenant': import("zod").ZodString;
|
|
26207
26213
|
'x-service-token': import("zod").ZodString;
|
|
@@ -26254,7 +26260,7 @@ export declare const apiContract: {
|
|
|
26254
26260
|
error?: any;
|
|
26255
26261
|
}>;
|
|
26256
26262
|
};
|
|
26257
|
-
path: "channel/update-new-tenant";
|
|
26263
|
+
path: "ms/channel/update-new-tenant";
|
|
26258
26264
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
26259
26265
|
'x-tenant': import("zod").ZodString;
|
|
26260
26266
|
'x-service-token': import("zod").ZodString;
|
|
@@ -27052,7 +27058,7 @@ export declare const apiContract: {
|
|
|
27052
27058
|
error?: any;
|
|
27053
27059
|
}>;
|
|
27054
27060
|
};
|
|
27055
|
-
path: "channel/csat/:channelId";
|
|
27061
|
+
path: "ms/channel/csat/:channelId";
|
|
27056
27062
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
27057
27063
|
'x-tenant': import("zod").ZodString;
|
|
27058
27064
|
'x-service-token': import("zod").ZodString;
|
|
@@ -27284,7 +27290,7 @@ export declare const apiContract: {
|
|
|
27284
27290
|
error?: any;
|
|
27285
27291
|
}>;
|
|
27286
27292
|
};
|
|
27287
|
-
path: "
|
|
27293
|
+
path: "ms/channelms/messenger/pages";
|
|
27288
27294
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
27289
27295
|
'x-tenant': import("zod").ZodString;
|
|
27290
27296
|
'x-service-token': import("zod").ZodString;
|
|
@@ -27580,7 +27586,7 @@ export declare const apiContract: {
|
|
|
27580
27586
|
error?: any;
|
|
27581
27587
|
}>;
|
|
27582
27588
|
};
|
|
27583
|
-
path: "
|
|
27589
|
+
path: "ms/channelms/messenger/facebook-businesses";
|
|
27584
27590
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
27585
27591
|
'x-tenant': import("zod").ZodString;
|
|
27586
27592
|
'x-service-token': import("zod").ZodString;
|
|
@@ -27876,7 +27882,7 @@ export declare const apiContract: {
|
|
|
27876
27882
|
error?: any;
|
|
27877
27883
|
}>;
|
|
27878
27884
|
};
|
|
27879
|
-
path: "
|
|
27885
|
+
path: "ms/channelms/messenger/facebook-business-pages";
|
|
27880
27886
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
27881
27887
|
'x-tenant': import("zod").ZodString;
|
|
27882
27888
|
'x-service-token': import("zod").ZodString;
|
|
@@ -28866,7 +28872,7 @@ export declare const apiContract: {
|
|
|
28866
28872
|
error?: any;
|
|
28867
28873
|
}>;
|
|
28868
28874
|
};
|
|
28869
|
-
path: "
|
|
28875
|
+
path: "ms/channelms/messenger/connect";
|
|
28870
28876
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
28871
28877
|
'x-tenant': import("zod").ZodString;
|
|
28872
28878
|
'x-service-token': import("zod").ZodString;
|
|
@@ -28927,7 +28933,7 @@ export declare const apiContract: {
|
|
|
28927
28933
|
error?: any;
|
|
28928
28934
|
}>;
|
|
28929
28935
|
};
|
|
28930
|
-
path: "
|
|
28936
|
+
path: "ms/channelms/line/connect";
|
|
28931
28937
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
28932
28938
|
'x-tenant': import("zod").ZodString;
|
|
28933
28939
|
'x-service-token': import("zod").ZodString;
|
|
@@ -29117,7 +29123,7 @@ export declare const apiContract: {
|
|
|
29117
29123
|
error?: any;
|
|
29118
29124
|
}>;
|
|
29119
29125
|
};
|
|
29120
|
-
path: "
|
|
29126
|
+
path: "ms/channelms/instagram/pages";
|
|
29121
29127
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
29122
29128
|
'x-tenant': import("zod").ZodString;
|
|
29123
29129
|
'x-service-token': import("zod").ZodString;
|
|
@@ -30107,7 +30113,7 @@ export declare const apiContract: {
|
|
|
30107
30113
|
error?: any;
|
|
30108
30114
|
}>;
|
|
30109
30115
|
};
|
|
30110
|
-
path: "
|
|
30116
|
+
path: "ms/channelms/instagram/connect";
|
|
30111
30117
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
30112
30118
|
'x-tenant': import("zod").ZodString;
|
|
30113
30119
|
'x-service-token': import("zod").ZodString;
|
|
@@ -30913,7 +30919,7 @@ export declare const apiContract: {
|
|
|
30913
30919
|
error?: any;
|
|
30914
30920
|
}>;
|
|
30915
30921
|
};
|
|
30916
|
-
path: "
|
|
30922
|
+
path: "ms/channelms/viber/connect";
|
|
30917
30923
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
30918
30924
|
'x-tenant': import("zod").ZodString;
|
|
30919
30925
|
'x-service-token': import("zod").ZodString;
|
|
@@ -31719,7 +31725,7 @@ export declare const apiContract: {
|
|
|
31719
31725
|
error?: any;
|
|
31720
31726
|
}>;
|
|
31721
31727
|
};
|
|
31722
|
-
path: "
|
|
31728
|
+
path: "ms/channelms/telegram/connect";
|
|
31723
31729
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
31724
31730
|
'x-tenant': import("zod").ZodString;
|
|
31725
31731
|
'x-service-token': import("zod").ZodString;
|
|
@@ -32575,7 +32581,7 @@ export declare const apiContract: {
|
|
|
32575
32581
|
error?: any;
|
|
32576
32582
|
}>;
|
|
32577
32583
|
};
|
|
32578
|
-
path: "
|
|
32584
|
+
path: "ms/channelms/webchat/connect";
|
|
32579
32585
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
32580
32586
|
'x-tenant': import("zod").ZodString;
|
|
32581
32587
|
'x-service-token': import("zod").ZodString;
|
|
@@ -33561,7 +33567,7 @@ export declare const apiContract: {
|
|
|
33561
33567
|
error?: any;
|
|
33562
33568
|
}>;
|
|
33563
33569
|
};
|
|
33564
|
-
path: "
|
|
33570
|
+
path: "ms/channelms/whatsapp/connect";
|
|
33565
33571
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
33566
33572
|
'x-tenant': import("zod").ZodString;
|
|
33567
33573
|
'x-service-token': import("zod").ZodString;
|
|
@@ -33645,7 +33651,7 @@ export declare const apiContract: {
|
|
|
33645
33651
|
error?: any;
|
|
33646
33652
|
}>;
|
|
33647
33653
|
};
|
|
33648
|
-
path: "
|
|
33654
|
+
path: "ms/channelms/whatsapp/templates";
|
|
33649
33655
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
33650
33656
|
'x-tenant': import("zod").ZodString;
|
|
33651
33657
|
'x-service-token': import("zod").ZodString;
|
|
@@ -33708,7 +33714,7 @@ export declare const apiContract: {
|
|
|
33708
33714
|
error?: any;
|
|
33709
33715
|
}>;
|
|
33710
33716
|
};
|
|
33711
|
-
path: "
|
|
33717
|
+
path: "ms/channelms/whatsapp/mobile";
|
|
33712
33718
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
33713
33719
|
'x-tenant': import("zod").ZodString;
|
|
33714
33720
|
'x-service-token': import("zod").ZodString;
|
|
@@ -33782,7 +33788,7 @@ export declare const apiContract: {
|
|
|
33782
33788
|
error?: any;
|
|
33783
33789
|
}>;
|
|
33784
33790
|
};
|
|
33785
|
-
path: "
|
|
33791
|
+
path: "ms/channelms/whatsapp/mobile/qr";
|
|
33786
33792
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
33787
33793
|
'x-tenant': import("zod").ZodString;
|
|
33788
33794
|
'x-service-token': import("zod").ZodString;
|
|
@@ -33839,7 +33845,7 @@ export declare const apiContract: {
|
|
|
33839
33845
|
error?: any;
|
|
33840
33846
|
}>;
|
|
33841
33847
|
};
|
|
33842
|
-
path: "
|
|
33848
|
+
path: "ms/channelms/whatsapp/mobile/:instanceId";
|
|
33843
33849
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
33844
33850
|
'x-tenant': import("zod").ZodString;
|
|
33845
33851
|
'x-service-token': import("zod").ZodString;
|
|
@@ -34635,7 +34641,7 @@ export declare const apiContract: {
|
|
|
34635
34641
|
error?: any;
|
|
34636
34642
|
}>;
|
|
34637
34643
|
};
|
|
34638
|
-
path: "channel/lazada/connect";
|
|
34644
|
+
path: "ms/channel/lazada/connect";
|
|
34639
34645
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
34640
34646
|
'x-tenant': import("zod").ZodString;
|
|
34641
34647
|
'x-service-token': import("zod").ZodString;
|
|
@@ -70967,7 +70973,7 @@ export declare const extensionContract: {
|
|
|
70967
70973
|
error?: any;
|
|
70968
70974
|
}>;
|
|
70969
70975
|
};
|
|
70970
|
-
path: "extension";
|
|
70976
|
+
path: "ms/extension";
|
|
70971
70977
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
70972
70978
|
'x-tenant': import("zod").ZodString;
|
|
70973
70979
|
'x-service-token': import("zod").ZodString;
|
|
@@ -71169,7 +71175,7 @@ export declare const extensionContract: {
|
|
|
71169
71175
|
error?: any;
|
|
71170
71176
|
}>;
|
|
71171
71177
|
};
|
|
71172
|
-
path: "extension";
|
|
71178
|
+
path: "ms/extension";
|
|
71173
71179
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71174
71180
|
'x-tenant': import("zod").ZodString;
|
|
71175
71181
|
'x-service-token': import("zod").ZodString;
|
|
@@ -71283,7 +71289,7 @@ export declare const extensionContract: {
|
|
|
71283
71289
|
error?: any;
|
|
71284
71290
|
}>;
|
|
71285
71291
|
};
|
|
71286
|
-
path: "extension/user/:userId";
|
|
71292
|
+
path: "ms/extension/user/:userId";
|
|
71287
71293
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71288
71294
|
'x-tenant': import("zod").ZodString;
|
|
71289
71295
|
'x-service-token': import("zod").ZodString;
|
|
@@ -71433,7 +71439,7 @@ export declare const extensionContract: {
|
|
|
71433
71439
|
error?: any;
|
|
71434
71440
|
}>;
|
|
71435
71441
|
};
|
|
71436
|
-
path: "extension/dialpad";
|
|
71442
|
+
path: "ms/extension/dialpad";
|
|
71437
71443
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71438
71444
|
'x-tenant': import("zod").ZodString;
|
|
71439
71445
|
'x-service-token': import("zod").ZodString;
|
|
@@ -71605,7 +71611,7 @@ export declare const extensionContract: {
|
|
|
71605
71611
|
error?: any;
|
|
71606
71612
|
}>;
|
|
71607
71613
|
};
|
|
71608
|
-
path: "extension/:id";
|
|
71614
|
+
path: "ms/extension/:id";
|
|
71609
71615
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71610
71616
|
'x-tenant': import("zod").ZodString;
|
|
71611
71617
|
'x-service-token': import("zod").ZodString;
|
|
@@ -71693,7 +71699,7 @@ export declare const extensionContract: {
|
|
|
71693
71699
|
error?: any;
|
|
71694
71700
|
}>;
|
|
71695
71701
|
};
|
|
71696
|
-
path: "extension/:id";
|
|
71702
|
+
path: "ms/extension/:id";
|
|
71697
71703
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71698
71704
|
'x-tenant': import("zod").ZodString;
|
|
71699
71705
|
'x-service-token': import("zod").ZodString;
|
|
@@ -71774,7 +71780,7 @@ export declare const extensionContract: {
|
|
|
71774
71780
|
error?: any;
|
|
71775
71781
|
}>;
|
|
71776
71782
|
};
|
|
71777
|
-
path: "extension/request-new-extension";
|
|
71783
|
+
path: "ms/extension/request-new-extension";
|
|
71778
71784
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
71779
71785
|
'x-tenant': import("zod").ZodString;
|
|
71780
71786
|
'x-service-token': import("zod").ZodString;
|
|
@@ -86278,7 +86284,7 @@ export declare const commentActivityContract: {
|
|
|
86278
86284
|
error?: any;
|
|
86279
86285
|
}>;
|
|
86280
86286
|
};
|
|
86281
|
-
path: "activity-log";
|
|
86287
|
+
path: "ms/activity-log";
|
|
86282
86288
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
86283
86289
|
'x-tenant': import("zod").ZodString;
|
|
86284
86290
|
'x-service-token': import("zod").ZodString;
|
|
@@ -270244,7 +270250,7 @@ export declare const telephonyContract: {
|
|
|
270244
270250
|
error?: any;
|
|
270245
270251
|
}>;
|
|
270246
270252
|
};
|
|
270247
|
-
path: "telephony-cdr/";
|
|
270253
|
+
path: "ms/telephony-cdr/";
|
|
270248
270254
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
270249
270255
|
'x-tenant': import("zod").ZodString;
|
|
270250
270256
|
'x-service-token': import("zod").ZodString;
|
|
@@ -273123,7 +273129,7 @@ export declare const telephonyContract: {
|
|
|
273123
273129
|
error?: any;
|
|
273124
273130
|
}>;
|
|
273125
273131
|
};
|
|
273126
|
-
path: "telephony-cdr/recordings";
|
|
273132
|
+
path: "ms/telephony-cdr/recordings";
|
|
273127
273133
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
273128
273134
|
'x-tenant': import("zod").ZodString;
|
|
273129
273135
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276005,7 +276011,7 @@ export declare const telephonyContract: {
|
|
|
276005
276011
|
error?: any;
|
|
276006
276012
|
}>;
|
|
276007
276013
|
};
|
|
276008
|
-
path: "telephony-cdr/recent-calls";
|
|
276014
|
+
path: "ms/telephony-cdr/recent-calls";
|
|
276009
276015
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276010
276016
|
'x-tenant': import("zod").ZodString;
|
|
276011
276017
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276095,7 +276101,7 @@ export declare const telephonyContract: {
|
|
|
276095
276101
|
error?: any;
|
|
276096
276102
|
}>;
|
|
276097
276103
|
};
|
|
276098
|
-
path: "telephony-cdr/export";
|
|
276104
|
+
path: "ms/telephony-cdr/export";
|
|
276099
276105
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276100
276106
|
'x-tenant': import("zod").ZodString;
|
|
276101
276107
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276185,7 +276191,7 @@ export declare const telephonyContract: {
|
|
|
276185
276191
|
error?: any;
|
|
276186
276192
|
}>;
|
|
276187
276193
|
};
|
|
276188
|
-
path: "telephony-cdr/yeastar_call_report";
|
|
276194
|
+
path: "ms/telephony-cdr/yeastar_call_report";
|
|
276189
276195
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276190
276196
|
'x-tenant': import("zod").ZodString;
|
|
276191
276197
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276275,7 +276281,7 @@ export declare const telephonyContract: {
|
|
|
276275
276281
|
error?: any;
|
|
276276
276282
|
}>;
|
|
276277
276283
|
};
|
|
276278
|
-
path: "telephony-cdr/yeastar_call_report/export";
|
|
276284
|
+
path: "ms/telephony-cdr/yeastar_call_report/export";
|
|
276279
276285
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276280
276286
|
'x-tenant': import("zod").ZodString;
|
|
276281
276287
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276353,7 +276359,7 @@ export declare const telephonyContract: {
|
|
|
276353
276359
|
error?: any;
|
|
276354
276360
|
}>;
|
|
276355
276361
|
};
|
|
276356
|
-
path: "telephony-cdr/trunks";
|
|
276362
|
+
path: "ms/telephony-cdr/trunks";
|
|
276357
276363
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276358
276364
|
'x-tenant': import("zod").ZodString;
|
|
276359
276365
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276441,7 +276447,7 @@ export declare const telephonyContract: {
|
|
|
276441
276447
|
error?: any;
|
|
276442
276448
|
}>;
|
|
276443
276449
|
};
|
|
276444
|
-
path: "telephony-cdr/queues";
|
|
276450
|
+
path: "ms/telephony-cdr/queues";
|
|
276445
276451
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276446
276452
|
'x-tenant': import("zod").ZodString;
|
|
276447
276453
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276846,7 +276852,7 @@ export declare const telephonyContract: {
|
|
|
276846
276852
|
error?: any;
|
|
276847
276853
|
}>;
|
|
276848
276854
|
};
|
|
276849
|
-
path: "telephony-cdr/extensions";
|
|
276855
|
+
path: "ms/telephony-cdr/extensions";
|
|
276850
276856
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276851
276857
|
'x-tenant': import("zod").ZodString;
|
|
276852
276858
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276910,7 +276916,7 @@ export declare const telephonyContract: {
|
|
|
276910
276916
|
error?: any;
|
|
276911
276917
|
}>;
|
|
276912
276918
|
};
|
|
276913
|
-
path: "telephony-cdr/dropdown";
|
|
276919
|
+
path: "ms/telephony-cdr/dropdown";
|
|
276914
276920
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276915
276921
|
'x-tenant': import("zod").ZodString;
|
|
276916
276922
|
'x-service-token': import("zod").ZodString;
|
|
@@ -276969,7 +276975,7 @@ export declare const telephonyContract: {
|
|
|
276969
276975
|
error?: any;
|
|
276970
276976
|
}>;
|
|
276971
276977
|
};
|
|
276972
|
-
path: "telephony-cdr/call-redirect-setting";
|
|
276978
|
+
path: "ms/telephony-cdr/call-redirect-setting";
|
|
276973
276979
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
276974
276980
|
'x-tenant': import("zod").ZodString;
|
|
276975
276981
|
'x-service-token': import("zod").ZodString;
|
|
@@ -277035,7 +277041,7 @@ export declare const telephonyContract: {
|
|
|
277035
277041
|
error?: any;
|
|
277036
277042
|
}>;
|
|
277037
277043
|
};
|
|
277038
|
-
path: "telephony-cdr/call-redirect-setting";
|
|
277044
|
+
path: "ms/telephony-cdr/call-redirect-setting";
|
|
277039
277045
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
277040
277046
|
'x-tenant': import("zod").ZodString;
|
|
277041
277047
|
'x-service-token': import("zod").ZodString;
|
|
@@ -277097,7 +277103,7 @@ export declare const telephonyContract: {
|
|
|
277097
277103
|
error?: any;
|
|
277098
277104
|
}>;
|
|
277099
277105
|
};
|
|
277100
|
-
path: "telephony-cdr/call-setting";
|
|
277106
|
+
path: "ms/telephony-cdr/call-setting";
|
|
277101
277107
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
277102
277108
|
'x-tenant': import("zod").ZodString;
|
|
277103
277109
|
'x-service-token': import("zod").ZodString;
|
|
@@ -277169,7 +277175,7 @@ export declare const telephonyContract: {
|
|
|
277169
277175
|
error?: any;
|
|
277170
277176
|
}>;
|
|
277171
277177
|
};
|
|
277172
|
-
path: "telephony-cdr/call-setting";
|
|
277178
|
+
path: "ms/telephony-cdr/call-setting";
|
|
277173
277179
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
277174
277180
|
'x-tenant': import("zod").ZodString;
|
|
277175
277181
|
'x-service-token': import("zod").ZodString;
|
|
@@ -278165,7 +278171,7 @@ export declare const notificationContract: {
|
|
|
278165
278171
|
error?: any;
|
|
278166
278172
|
}>;
|
|
278167
278173
|
};
|
|
278168
|
-
path: "notification";
|
|
278174
|
+
path: "ms/notification";
|
|
278169
278175
|
};
|
|
278170
278176
|
getNewNotificationsCount: {
|
|
278171
278177
|
summary: "Get user's unread notifications count";
|
|
@@ -278233,7 +278239,7 @@ export declare const notificationContract: {
|
|
|
278233
278239
|
error?: any;
|
|
278234
278240
|
}>;
|
|
278235
278241
|
};
|
|
278236
|
-
path: "notification/new_notifications_count";
|
|
278242
|
+
path: "ms/notification/new_notifications_count";
|
|
278237
278243
|
};
|
|
278238
278244
|
resetNotifications: {
|
|
278239
278245
|
body: null;
|
|
@@ -278591,7 +278597,7 @@ export declare const notificationContract: {
|
|
|
278591
278597
|
error?: any;
|
|
278592
278598
|
}>;
|
|
278593
278599
|
};
|
|
278594
|
-
path: "notification/reset";
|
|
278600
|
+
path: "ms/notification/reset";
|
|
278595
278601
|
};
|
|
278596
278602
|
readNotification: {
|
|
278597
278603
|
body: import("zod").ZodObject<{
|
|
@@ -279395,7 +279401,7 @@ export declare const notificationContract: {
|
|
|
279395
279401
|
error?: any;
|
|
279396
279402
|
}>;
|
|
279397
279403
|
};
|
|
279398
|
-
path: "notification/read/:id";
|
|
279404
|
+
path: "ms/notification/read/:id";
|
|
279399
279405
|
};
|
|
279400
279406
|
};
|
|
279401
279407
|
};
|
|
@@ -290368,7 +290374,7 @@ export declare const workflowContract: {
|
|
|
290368
290374
|
error?: any;
|
|
290369
290375
|
}>;
|
|
290370
290376
|
};
|
|
290371
|
-
path: "ms/workflow/chat/room/assignee";
|
|
290377
|
+
path: "ms/workflow/ms/chat/room/assignee";
|
|
290372
290378
|
headers: import("zod").ZodObject<{
|
|
290373
290379
|
'x-tenant': import("zod").ZodString;
|
|
290374
290380
|
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -298606,7 +298612,7 @@ export declare const workflowContract: {
|
|
|
298606
298612
|
error?: any;
|
|
298607
298613
|
}>;
|
|
298608
298614
|
};
|
|
298609
|
-
path: "ms/workflow/chat/message/send";
|
|
298615
|
+
path: "ms/workflow/ms/chat/message/send";
|
|
298610
298616
|
headers: import("zod").ZodObject<{
|
|
298611
298617
|
'x-tenant': import("zod").ZodString;
|
|
298612
298618
|
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -302962,7 +302968,7 @@ export declare const workflowContract: {
|
|
|
302962
302968
|
error?: any;
|
|
302963
302969
|
}>;
|
|
302964
302970
|
};
|
|
302965
|
-
path: "ms/workflow/chat/room/solve";
|
|
302971
|
+
path: "ms/workflow/ms/chat/room/solve";
|
|
302966
302972
|
headers: import("zod").ZodObject<{
|
|
302967
302973
|
'x-tenant': import("zod").ZodString;
|
|
302968
302974
|
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -303016,7 +303022,7 @@ export declare const workflowContract: {
|
|
|
303016
303022
|
error?: any;
|
|
303017
303023
|
}>;
|
|
303018
303024
|
};
|
|
303019
|
-
path: "ms/workflow/chat/message/emit";
|
|
303025
|
+
path: "ms/workflow/ms/chat/message/emit";
|
|
303020
303026
|
headers: import("zod").ZodObject<{
|
|
303021
303027
|
'x-tenant': import("zod").ZodString;
|
|
303022
303028
|
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -311026,7 +311032,7 @@ export declare const channelSettingContract: {
|
|
|
311026
311032
|
requestId: string;
|
|
311027
311033
|
}>;
|
|
311028
311034
|
};
|
|
311029
|
-
path: "ms/settings/channel/";
|
|
311035
|
+
path: "ms/settings/ms/channel/";
|
|
311030
311036
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
311031
311037
|
'x-tenant': import("zod").ZodString;
|
|
311032
311038
|
'x-service-token': import("zod").ZodString;
|
|
@@ -311443,7 +311449,7 @@ export declare const channelSettingContract: {
|
|
|
311443
311449
|
error?: any;
|
|
311444
311450
|
}>;
|
|
311445
311451
|
};
|
|
311446
|
-
path: "ms/settings/channel/disconnect/:channelId";
|
|
311452
|
+
path: "ms/settings/ms/channel/disconnect/:channelId";
|
|
311447
311453
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
311448
311454
|
'x-tenant': import("zod").ZodString;
|
|
311449
311455
|
'x-service-token': import("zod").ZodString;
|
|
@@ -312235,7 +312241,7 @@ export declare const channelSettingContract: {
|
|
|
312235
312241
|
error?: any;
|
|
312236
312242
|
}>;
|
|
312237
312243
|
};
|
|
312238
|
-
path: "ms/settings/channel/delete/:channelId";
|
|
312244
|
+
path: "ms/settings/ms/channel/delete/:channelId";
|
|
312239
312245
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
312240
312246
|
'x-tenant': import("zod").ZodString;
|
|
312241
312247
|
'x-service-token': import("zod").ZodString;
|
|
@@ -313033,7 +313039,7 @@ export declare const channelSettingContract: {
|
|
|
313033
313039
|
error?: any;
|
|
313034
313040
|
}>;
|
|
313035
313041
|
};
|
|
313036
|
-
path: "ms/settings/channel/rename/:channelId";
|
|
313042
|
+
path: "ms/settings/ms/channel/rename/:channelId";
|
|
313037
313043
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
313038
313044
|
'x-tenant': import("zod").ZodString;
|
|
313039
313045
|
'x-service-token': import("zod").ZodString;
|
|
@@ -313825,7 +313831,7 @@ export declare const channelSettingContract: {
|
|
|
313825
313831
|
error?: any;
|
|
313826
313832
|
}>;
|
|
313827
313833
|
};
|
|
313828
|
-
path: "ms/settings/channel/reconnect/:channelId";
|
|
313834
|
+
path: "ms/settings/ms/channel/reconnect/:channelId";
|
|
313829
313835
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
313830
313836
|
'x-tenant': import("zod").ZodString;
|
|
313831
313837
|
'x-service-token': import("zod").ZodString;
|
|
@@ -314815,7 +314821,7 @@ export declare const channelSettingContract: {
|
|
|
314815
314821
|
error?: any;
|
|
314816
314822
|
}>;
|
|
314817
314823
|
};
|
|
314818
|
-
path: "ms/settings/channel/relogin";
|
|
314824
|
+
path: "ms/settings/ms/channel/relogin";
|
|
314819
314825
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
314820
314826
|
'x-tenant': import("zod").ZodString;
|
|
314821
314827
|
'x-service-token': import("zod").ZodString;
|
|
@@ -314873,7 +314879,7 @@ export declare const channelSettingContract: {
|
|
|
314873
314879
|
error?: any;
|
|
314874
314880
|
}>;
|
|
314875
314881
|
};
|
|
314876
|
-
path: "ms/settings/channel/check-new-tenant";
|
|
314882
|
+
path: "ms/settings/ms/channel/check-new-tenant";
|
|
314877
314883
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
314878
314884
|
'x-tenant': import("zod").ZodString;
|
|
314879
314885
|
'x-service-token': import("zod").ZodString;
|
|
@@ -314926,7 +314932,7 @@ export declare const channelSettingContract: {
|
|
|
314926
314932
|
error?: any;
|
|
314927
314933
|
}>;
|
|
314928
314934
|
};
|
|
314929
|
-
path: "ms/settings/channel/update-new-tenant";
|
|
314935
|
+
path: "ms/settings/ms/channel/update-new-tenant";
|
|
314930
314936
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
314931
314937
|
'x-tenant': import("zod").ZodString;
|
|
314932
314938
|
'x-service-token': import("zod").ZodString;
|
|
@@ -315724,7 +315730,7 @@ export declare const channelSettingContract: {
|
|
|
315724
315730
|
error?: any;
|
|
315725
315731
|
}>;
|
|
315726
315732
|
};
|
|
315727
|
-
path: "ms/settings/channel/csat/:channelId";
|
|
315733
|
+
path: "ms/settings/ms/channel/csat/:channelId";
|
|
315728
315734
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
315729
315735
|
'x-tenant': import("zod").ZodString;
|
|
315730
315736
|
'x-service-token': import("zod").ZodString;
|
|
@@ -315956,7 +315962,7 @@ export declare const channelSettingContract: {
|
|
|
315956
315962
|
error?: any;
|
|
315957
315963
|
}>;
|
|
315958
315964
|
};
|
|
315959
|
-
path: "ms/settings/
|
|
315965
|
+
path: "ms/settings/ms/channelms/messenger/pages";
|
|
315960
315966
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
315961
315967
|
'x-tenant': import("zod").ZodString;
|
|
315962
315968
|
'x-service-token': import("zod").ZodString;
|
|
@@ -316252,7 +316258,7 @@ export declare const channelSettingContract: {
|
|
|
316252
316258
|
error?: any;
|
|
316253
316259
|
}>;
|
|
316254
316260
|
};
|
|
316255
|
-
path: "ms/settings/
|
|
316261
|
+
path: "ms/settings/ms/channelms/messenger/facebook-businesses";
|
|
316256
316262
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
316257
316263
|
'x-tenant': import("zod").ZodString;
|
|
316258
316264
|
'x-service-token': import("zod").ZodString;
|
|
@@ -316548,7 +316554,7 @@ export declare const channelSettingContract: {
|
|
|
316548
316554
|
error?: any;
|
|
316549
316555
|
}>;
|
|
316550
316556
|
};
|
|
316551
|
-
path: "ms/settings/
|
|
316557
|
+
path: "ms/settings/ms/channelms/messenger/facebook-business-pages";
|
|
316552
316558
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
316553
316559
|
'x-tenant': import("zod").ZodString;
|
|
316554
316560
|
'x-service-token': import("zod").ZodString;
|
|
@@ -317538,7 +317544,7 @@ export declare const channelSettingContract: {
|
|
|
317538
317544
|
error?: any;
|
|
317539
317545
|
}>;
|
|
317540
317546
|
};
|
|
317541
|
-
path: "ms/settings/
|
|
317547
|
+
path: "ms/settings/ms/channelms/messenger/connect";
|
|
317542
317548
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
317543
317549
|
'x-tenant': import("zod").ZodString;
|
|
317544
317550
|
'x-service-token': import("zod").ZodString;
|
|
@@ -317599,7 +317605,7 @@ export declare const channelSettingContract: {
|
|
|
317599
317605
|
error?: any;
|
|
317600
317606
|
}>;
|
|
317601
317607
|
};
|
|
317602
|
-
path: "ms/settings/
|
|
317608
|
+
path: "ms/settings/ms/channelms/line/connect";
|
|
317603
317609
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
317604
317610
|
'x-tenant': import("zod").ZodString;
|
|
317605
317611
|
'x-service-token': import("zod").ZodString;
|
|
@@ -317789,7 +317795,7 @@ export declare const channelSettingContract: {
|
|
|
317789
317795
|
error?: any;
|
|
317790
317796
|
}>;
|
|
317791
317797
|
};
|
|
317792
|
-
path: "ms/settings/
|
|
317798
|
+
path: "ms/settings/ms/channelms/instagram/pages";
|
|
317793
317799
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
317794
317800
|
'x-tenant': import("zod").ZodString;
|
|
317795
317801
|
'x-service-token': import("zod").ZodString;
|
|
@@ -318779,7 +318785,7 @@ export declare const channelSettingContract: {
|
|
|
318779
318785
|
error?: any;
|
|
318780
318786
|
}>;
|
|
318781
318787
|
};
|
|
318782
|
-
path: "ms/settings/
|
|
318788
|
+
path: "ms/settings/ms/channelms/instagram/connect";
|
|
318783
318789
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
318784
318790
|
'x-tenant': import("zod").ZodString;
|
|
318785
318791
|
'x-service-token': import("zod").ZodString;
|
|
@@ -319585,7 +319591,7 @@ export declare const channelSettingContract: {
|
|
|
319585
319591
|
error?: any;
|
|
319586
319592
|
}>;
|
|
319587
319593
|
};
|
|
319588
|
-
path: "ms/settings/
|
|
319594
|
+
path: "ms/settings/ms/channelms/viber/connect";
|
|
319589
319595
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
319590
319596
|
'x-tenant': import("zod").ZodString;
|
|
319591
319597
|
'x-service-token': import("zod").ZodString;
|
|
@@ -320391,7 +320397,7 @@ export declare const channelSettingContract: {
|
|
|
320391
320397
|
error?: any;
|
|
320392
320398
|
}>;
|
|
320393
320399
|
};
|
|
320394
|
-
path: "ms/settings/
|
|
320400
|
+
path: "ms/settings/ms/channelms/telegram/connect";
|
|
320395
320401
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
320396
320402
|
'x-tenant': import("zod").ZodString;
|
|
320397
320403
|
'x-service-token': import("zod").ZodString;
|
|
@@ -321247,7 +321253,7 @@ export declare const channelSettingContract: {
|
|
|
321247
321253
|
error?: any;
|
|
321248
321254
|
}>;
|
|
321249
321255
|
};
|
|
321250
|
-
path: "ms/settings/
|
|
321256
|
+
path: "ms/settings/ms/channelms/webchat/connect";
|
|
321251
321257
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
321252
321258
|
'x-tenant': import("zod").ZodString;
|
|
321253
321259
|
'x-service-token': import("zod").ZodString;
|
|
@@ -322233,7 +322239,7 @@ export declare const channelSettingContract: {
|
|
|
322233
322239
|
error?: any;
|
|
322234
322240
|
}>;
|
|
322235
322241
|
};
|
|
322236
|
-
path: "ms/settings/
|
|
322242
|
+
path: "ms/settings/ms/channelms/whatsapp/connect";
|
|
322237
322243
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
322238
322244
|
'x-tenant': import("zod").ZodString;
|
|
322239
322245
|
'x-service-token': import("zod").ZodString;
|
|
@@ -322317,7 +322323,7 @@ export declare const channelSettingContract: {
|
|
|
322317
322323
|
error?: any;
|
|
322318
322324
|
}>;
|
|
322319
322325
|
};
|
|
322320
|
-
path: "ms/settings/
|
|
322326
|
+
path: "ms/settings/ms/channelms/whatsapp/templates";
|
|
322321
322327
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
322322
322328
|
'x-tenant': import("zod").ZodString;
|
|
322323
322329
|
'x-service-token': import("zod").ZodString;
|
|
@@ -322380,7 +322386,7 @@ export declare const channelSettingContract: {
|
|
|
322380
322386
|
error?: any;
|
|
322381
322387
|
}>;
|
|
322382
322388
|
};
|
|
322383
|
-
path: "ms/settings/
|
|
322389
|
+
path: "ms/settings/ms/channelms/whatsapp/mobile";
|
|
322384
322390
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
322385
322391
|
'x-tenant': import("zod").ZodString;
|
|
322386
322392
|
'x-service-token': import("zod").ZodString;
|
|
@@ -322454,7 +322460,7 @@ export declare const channelSettingContract: {
|
|
|
322454
322460
|
error?: any;
|
|
322455
322461
|
}>;
|
|
322456
322462
|
};
|
|
322457
|
-
path: "ms/settings/
|
|
322463
|
+
path: "ms/settings/ms/channelms/whatsapp/mobile/qr";
|
|
322458
322464
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
322459
322465
|
'x-tenant': import("zod").ZodString;
|
|
322460
322466
|
'x-service-token': import("zod").ZodString;
|
|
@@ -322511,7 +322517,7 @@ export declare const channelSettingContract: {
|
|
|
322511
322517
|
error?: any;
|
|
322512
322518
|
}>;
|
|
322513
322519
|
};
|
|
322514
|
-
path: "ms/settings/
|
|
322520
|
+
path: "ms/settings/ms/channelms/whatsapp/mobile/:instanceId";
|
|
322515
322521
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
322516
322522
|
'x-tenant': import("zod").ZodString;
|
|
322517
322523
|
'x-service-token': import("zod").ZodString;
|
|
@@ -323307,7 +323313,7 @@ export declare const channelSettingContract: {
|
|
|
323307
323313
|
error?: any;
|
|
323308
323314
|
}>;
|
|
323309
323315
|
};
|
|
323310
|
-
path: "ms/settings/channel/lazada/connect";
|
|
323316
|
+
path: "ms/settings/ms/channel/lazada/connect";
|
|
323311
323317
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
323312
323318
|
'x-tenant': import("zod").ZodString;
|
|
323313
323319
|
'x-service-token': import("zod").ZodString;
|
|
@@ -326925,7 +326931,7 @@ export declare const presenceStatusContract: {
|
|
|
326925
326931
|
error?: any;
|
|
326926
326932
|
}>;
|
|
326927
326933
|
};
|
|
326928
|
-
path: "presence_status";
|
|
326934
|
+
path: "ms/presence_status";
|
|
326929
326935
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
326930
326936
|
'x-tenant': import("zod").ZodString;
|
|
326931
326937
|
'x-service-token': import("zod").ZodString;
|
|
@@ -327082,7 +327088,7 @@ export declare const presenceStatusContract: {
|
|
|
327082
327088
|
error?: any;
|
|
327083
327089
|
}>;
|
|
327084
327090
|
};
|
|
327085
|
-
path: "presence_status";
|
|
327091
|
+
path: "ms/presence_status";
|
|
327086
327092
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
327087
327093
|
'x-tenant': import("zod").ZodString;
|
|
327088
327094
|
'x-service-token': import("zod").ZodString;
|
|
@@ -327193,7 +327199,7 @@ export declare const presenceStatusContract: {
|
|
|
327193
327199
|
error?: any;
|
|
327194
327200
|
}>;
|
|
327195
327201
|
};
|
|
327196
|
-
path: "presence_status/:id";
|
|
327202
|
+
path: "ms/presence_status/:id";
|
|
327197
327203
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
327198
327204
|
'x-tenant': import("zod").ZodString;
|
|
327199
327205
|
'x-service-token': import("zod").ZodString;
|
|
@@ -327357,7 +327363,7 @@ export declare const presenceStatusContract: {
|
|
|
327357
327363
|
error?: any;
|
|
327358
327364
|
}>;
|
|
327359
327365
|
};
|
|
327360
|
-
path: "presence_status/:id";
|
|
327366
|
+
path: "ms/presence_status/:id";
|
|
327361
327367
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
327362
327368
|
'x-tenant': import("zod").ZodString;
|
|
327363
327369
|
'x-service-token': import("zod").ZodString;
|
|
@@ -327428,7 +327434,7 @@ export declare const presenceStatusContract: {
|
|
|
327428
327434
|
error?: any;
|
|
327429
327435
|
}>;
|
|
327430
327436
|
};
|
|
327431
|
-
path: "presence_status/:id";
|
|
327437
|
+
path: "ms/presence_status/:id";
|
|
327432
327438
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
327433
327439
|
'x-tenant': import("zod").ZodString;
|
|
327434
327440
|
'x-service-token': import("zod").ZodString;
|