@kl1/contracts 1.2.68-uat → 1.2.70-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/attribute/index.d.ts +7 -7
- package/dist/api-contracts/src/auth/index.d.ts +1 -1
- package/dist/api-contracts/src/aws/index.d.ts +2 -2
- package/dist/api-contracts/src/botpress/index.d.ts +2 -2
- package/dist/api-contracts/src/category/index.d.ts +7 -7
- package/dist/api-contracts/src/channel/index.d.ts +799 -2
- package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
- package/dist/api-contracts/src/channel/validation.d.ts +10 -0
- package/dist/api-contracts/src/channel/validation.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/index.d.ts +1800 -1800
- package/dist/api-contracts/src/chat/schema.d.ts +400 -400
- package/dist/api-contracts/src/chat/schema.d.ts.map +1 -1
- package/dist/api-contracts/src/chat/validation.d.ts +321 -321
- package/dist/api-contracts/src/comment/index.d.ts +364 -364
- package/dist/api-contracts/src/comment/schema.d.ts +88 -88
- package/dist/api-contracts/src/company/index.d.ts +5 -5
- package/dist/api-contracts/src/contract.d.ts +6799 -5207
- package/dist/api-contracts/src/contract.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/index.d.ts +64 -64
- package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
- package/dist/api-contracts/src/cx-log/schema.d.ts +80 -80
- package/dist/api-contracts/src/dashboard/index.d.ts +26 -26
- package/dist/api-contracts/src/evaluate-form/index.d.ts +1 -1
- package/dist/api-contracts/src/facebook-feed/index.d.ts +220 -220
- package/dist/api-contracts/src/instagram/index.d.ts +220 -220
- package/dist/api-contracts/src/line/index.d.ts +220 -220
- package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts +1 -1
- package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts.map +1 -1
- package/dist/api-contracts/src/mail/mail-contract.d.ts +240 -240
- package/dist/api-contracts/src/mail/room-contract.d.ts +240 -240
- package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +80 -80
- package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +60 -60
- package/dist/api-contracts/src/messenger/index.d.ts +220 -220
- package/dist/api-contracts/src/permission/index.d.ts +1 -1
- package/dist/api-contracts/src/role/index.d.ts +5 -5
- package/dist/api-contracts/src/snippet/index.d.ts +8 -8
- package/dist/api-contracts/src/tag/index.d.ts +4 -4
- package/dist/api-contracts/src/telegram/index.d.ts +220 -220
- package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +2 -2
- package/dist/api-contracts/src/telephony-extension/index.d.ts +1 -1
- package/dist/api-contracts/src/ticket/index.d.ts +672 -672
- package/dist/api-contracts/src/ticket/schema.d.ts +44 -44
- package/dist/api-contracts/src/ticket/validation.d.ts +20 -20
- package/dist/api-contracts/src/upload/index.d.ts +2 -2
- package/dist/api-contracts/src/user/index.d.ts +6 -6
- package/dist/api-contracts/src/user-presence-status-log/index.d.ts +2 -2
- package/dist/api-contracts/src/viber/index.d.ts +220 -220
- package/dist/api-contracts/src/webchat/index.d.ts +220 -220
- package/dist/api-contracts/src/whatsapp/index.d.ts +220 -220
- package/dist/api-contracts/src/widget/index.d.ts +9 -9
- package/dist/api-contracts/src/workflow-rule/index.d.ts +260 -260
- package/dist/api-contracts/src/wrap-up-form/index.d.ts +187 -187
- package/dist/api-contracts/src/wrap-up-form/schema.d.ts +20 -20
- package/dist/index.js +124 -93
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +124 -93
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -169,6 +169,16 @@ export declare const WrapUpFormSchema: z.ZodObject<{
|
|
|
169
169
|
createdAt: Date;
|
|
170
170
|
updatedAt: Date;
|
|
171
171
|
deletedAt: Date | null;
|
|
172
|
+
tags: {
|
|
173
|
+
name: string;
|
|
174
|
+
id: string;
|
|
175
|
+
createdAt: Date;
|
|
176
|
+
updatedAt: Date;
|
|
177
|
+
deletedAt: Date | null;
|
|
178
|
+
}[];
|
|
179
|
+
callFrom: string | null;
|
|
180
|
+
callTo: string | null;
|
|
181
|
+
note: string | null;
|
|
172
182
|
categories: {
|
|
173
183
|
id: string;
|
|
174
184
|
value: string;
|
|
@@ -191,16 +201,6 @@ export declare const WrapUpFormSchema: z.ZodObject<{
|
|
|
191
201
|
}[];
|
|
192
202
|
}[];
|
|
193
203
|
}[];
|
|
194
|
-
tags: {
|
|
195
|
-
name: string;
|
|
196
|
-
id: string;
|
|
197
|
-
createdAt: Date;
|
|
198
|
-
updatedAt: Date;
|
|
199
|
-
deletedAt: Date | null;
|
|
200
|
-
}[];
|
|
201
|
-
callFrom: string | null;
|
|
202
|
-
callTo: string | null;
|
|
203
|
-
note: string | null;
|
|
204
204
|
customFields?: {
|
|
205
205
|
id: string;
|
|
206
206
|
createdAt: Date;
|
|
@@ -220,6 +220,16 @@ export declare const WrapUpFormSchema: z.ZodObject<{
|
|
|
220
220
|
createdAt: Date;
|
|
221
221
|
updatedAt: Date;
|
|
222
222
|
deletedAt: Date | null;
|
|
223
|
+
tags: {
|
|
224
|
+
name: string;
|
|
225
|
+
id: string;
|
|
226
|
+
createdAt: Date;
|
|
227
|
+
updatedAt: Date;
|
|
228
|
+
deletedAt: Date | null;
|
|
229
|
+
}[];
|
|
230
|
+
callFrom: string | null;
|
|
231
|
+
callTo: string | null;
|
|
232
|
+
note: string | null;
|
|
223
233
|
categories: {
|
|
224
234
|
id: string;
|
|
225
235
|
value: string;
|
|
@@ -242,16 +252,6 @@ export declare const WrapUpFormSchema: z.ZodObject<{
|
|
|
242
252
|
}[];
|
|
243
253
|
}[];
|
|
244
254
|
}[];
|
|
245
|
-
tags: {
|
|
246
|
-
name: string;
|
|
247
|
-
id: string;
|
|
248
|
-
createdAt: Date;
|
|
249
|
-
updatedAt: Date;
|
|
250
|
-
deletedAt: Date | null;
|
|
251
|
-
}[];
|
|
252
|
-
callFrom: string | null;
|
|
253
|
-
callTo: string | null;
|
|
254
|
-
note: string | null;
|
|
255
255
|
customFields?: {
|
|
256
256
|
id: string;
|
|
257
257
|
createdAt: Date;
|
package/dist/index.js
CHANGED
|
@@ -751,6 +751,7 @@ var MessageTypeSchema = import_zod18.default.enum([
|
|
|
751
751
|
"edited",
|
|
752
752
|
"deleted",
|
|
753
753
|
"unsupported",
|
|
754
|
+
// lazada specific
|
|
754
755
|
"item"
|
|
755
756
|
]);
|
|
756
757
|
var FeedPostTypeSchema = import_zod18.default.enum([
|
|
@@ -1949,7 +1950,7 @@ var attributeContract = (0, import_core3.initContract)().router(
|
|
|
1949
1950
|
}
|
|
1950
1951
|
},
|
|
1951
1952
|
{
|
|
1952
|
-
pathPrefix: "attributes"
|
|
1953
|
+
pathPrefix: "ms/attributes"
|
|
1953
1954
|
}
|
|
1954
1955
|
);
|
|
1955
1956
|
|
|
@@ -1972,7 +1973,7 @@ var authContract = (0, import_core4.initContract)().router(
|
|
|
1972
1973
|
summary: "Get current user"
|
|
1973
1974
|
}
|
|
1974
1975
|
},
|
|
1975
|
-
{ pathPrefix: "auth" }
|
|
1976
|
+
{ pathPrefix: "ms/auth" }
|
|
1976
1977
|
);
|
|
1977
1978
|
|
|
1978
1979
|
// src/aws/index.ts
|
|
@@ -2036,7 +2037,7 @@ var awsContract = (0, import_core5.initContract)().router(
|
|
|
2036
2037
|
}
|
|
2037
2038
|
},
|
|
2038
2039
|
{
|
|
2039
|
-
pathPrefix: "aws/s3"
|
|
2040
|
+
pathPrefix: "ms/aws/s3"
|
|
2040
2041
|
}
|
|
2041
2042
|
);
|
|
2042
2043
|
|
|
@@ -2164,7 +2165,7 @@ var categoryContract = (0, import_core6.initContract)().router(
|
|
|
2164
2165
|
}
|
|
2165
2166
|
},
|
|
2166
2167
|
{
|
|
2167
|
-
pathPrefix: "categories"
|
|
2168
|
+
pathPrefix: "ms/categories"
|
|
2168
2169
|
}
|
|
2169
2170
|
);
|
|
2170
2171
|
|
|
@@ -2287,6 +2288,10 @@ var ConnectWhatsappSchema = import_zod37.default.object({
|
|
|
2287
2288
|
metadata: ChannelMetadataSchema,
|
|
2288
2289
|
platformId: import_zod37.default.string()
|
|
2289
2290
|
});
|
|
2291
|
+
var ConnectLazadaSchema = import_zod37.default.object({
|
|
2292
|
+
name: import_zod37.default.string(),
|
|
2293
|
+
code: import_zod37.default.string()
|
|
2294
|
+
});
|
|
2290
2295
|
|
|
2291
2296
|
// src/instagram/validation.ts
|
|
2292
2297
|
var import_zod38 = __toESM(require("zod"));
|
|
@@ -2606,6 +2611,25 @@ var whatsapp = (0, import_core7.initContract)().router(
|
|
|
2606
2611
|
pathPrefix: "/whatsapp"
|
|
2607
2612
|
}
|
|
2608
2613
|
);
|
|
2614
|
+
var lazada = (0, import_core7.initContract)().router(
|
|
2615
|
+
{
|
|
2616
|
+
connect: {
|
|
2617
|
+
method: "POST",
|
|
2618
|
+
path: "/connect",
|
|
2619
|
+
responses: {
|
|
2620
|
+
200: DefaultSuccessResponseSchema.extend({
|
|
2621
|
+
channel: ChannelSchema
|
|
2622
|
+
}),
|
|
2623
|
+
408: DefaultErrorResponseSchema
|
|
2624
|
+
},
|
|
2625
|
+
body: ConnectLazadaSchema,
|
|
2626
|
+
summary: "Connect message channel"
|
|
2627
|
+
}
|
|
2628
|
+
},
|
|
2629
|
+
{
|
|
2630
|
+
pathPrefix: "/lazada"
|
|
2631
|
+
}
|
|
2632
|
+
);
|
|
2609
2633
|
var channelContract = (0, import_core7.initContract)().router(
|
|
2610
2634
|
{
|
|
2611
2635
|
getChannels: {
|
|
@@ -2742,7 +2766,8 @@ var channelContract = (0, import_core7.initContract)().router(
|
|
|
2742
2766
|
viber,
|
|
2743
2767
|
telegram,
|
|
2744
2768
|
webchat,
|
|
2745
|
-
whatsapp
|
|
2769
|
+
whatsapp,
|
|
2770
|
+
lazada
|
|
2746
2771
|
},
|
|
2747
2772
|
{
|
|
2748
2773
|
baseHeaders: DefaultHeaderSchema,
|
|
@@ -2817,7 +2842,7 @@ var channelSMSContract = (0, import_core7.initContract)().router(
|
|
|
2817
2842
|
}
|
|
2818
2843
|
},
|
|
2819
2844
|
{
|
|
2820
|
-
pathPrefix: "/channel/sms"
|
|
2845
|
+
pathPrefix: "ms/channel/sms"
|
|
2821
2846
|
}
|
|
2822
2847
|
);
|
|
2823
2848
|
|
|
@@ -3535,7 +3560,7 @@ var companyContract = (0, import_core10.initContract)().router(
|
|
|
3535
3560
|
}
|
|
3536
3561
|
},
|
|
3537
3562
|
{
|
|
3538
|
-
pathPrefix: "cs/companies"
|
|
3563
|
+
pathPrefix: "ms/cs/companies"
|
|
3539
3564
|
}
|
|
3540
3565
|
);
|
|
3541
3566
|
|
|
@@ -4163,66 +4188,69 @@ var GetAllCxLogQueryParamsSchema = DefaultQueryParamsSchema.extend({
|
|
|
4163
4188
|
}).partial().optional();
|
|
4164
4189
|
|
|
4165
4190
|
// src/cx-log/index.ts
|
|
4166
|
-
var cxLogContract = (0, import_core12.initContract)().router(
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4175
|
-
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
|
|
4191
|
+
var cxLogContract = (0, import_core12.initContract)().router(
|
|
4192
|
+
{
|
|
4193
|
+
findAll: {
|
|
4194
|
+
method: "GET",
|
|
4195
|
+
path: "/cx-logs",
|
|
4196
|
+
headers: DefaultHeaderSchema,
|
|
4197
|
+
responses: {
|
|
4198
|
+
200: DefaultSuccessResponseSchema.extend({
|
|
4199
|
+
total: import_zod52.default.number(),
|
|
4200
|
+
page: import_zod52.default.number(),
|
|
4201
|
+
pageSize: import_zod52.default.number(),
|
|
4202
|
+
cxLogs: import_zod52.default.array(CxLogSchemaWithRelations)
|
|
4203
|
+
}),
|
|
4204
|
+
401: DefaultUnauthorizedSchema
|
|
4205
|
+
},
|
|
4206
|
+
query: GetAllCxLogQueryParamsSchema,
|
|
4207
|
+
summary: "Get all cx-logs"
|
|
4179
4208
|
},
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4209
|
+
export: {
|
|
4210
|
+
method: "GET",
|
|
4211
|
+
path: "/cx-logs/export",
|
|
4212
|
+
headers: DefaultHeaderSchema,
|
|
4213
|
+
responses: {
|
|
4214
|
+
200: null,
|
|
4215
|
+
401: DefaultUnauthorizedSchema
|
|
4216
|
+
},
|
|
4217
|
+
query: GetAllCxLogQueryParamsSchema,
|
|
4218
|
+
summary: "Export cx-logs"
|
|
4190
4219
|
},
|
|
4191
|
-
|
|
4192
|
-
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
|
|
4220
|
+
syncSla: {
|
|
4221
|
+
method: "POST",
|
|
4222
|
+
path: "/cx-logs/sync-sla",
|
|
4223
|
+
headers: DefaultHeaderSchema,
|
|
4224
|
+
responses: {
|
|
4225
|
+
200: null,
|
|
4226
|
+
401: DefaultUnauthorizedSchema,
|
|
4227
|
+
500: DefaultErrorResponseSchema
|
|
4228
|
+
},
|
|
4229
|
+
body: null,
|
|
4230
|
+
summary: "Export cx-logs"
|
|
4202
4231
|
},
|
|
4203
|
-
|
|
4204
|
-
|
|
4232
|
+
updateSla: {
|
|
4233
|
+
method: "POST",
|
|
4234
|
+
path: "/cx-logs",
|
|
4235
|
+
headers: import_zod52.default.object({
|
|
4236
|
+
// biome-ignore lint/style/useNamingConvention: <explanation>
|
|
4237
|
+
"x-tenant": import_zod52.default.string({ required_error: "Tenant id is required" }),
|
|
4238
|
+
"x-code": import_zod52.default.string().uuid().optional()
|
|
4239
|
+
}),
|
|
4240
|
+
responses: {
|
|
4241
|
+
200: null,
|
|
4242
|
+
403: DefaultUnauthorizedSchema,
|
|
4243
|
+
404: DefaultNotFoundSchema,
|
|
4244
|
+
500: DefaultErrorResponseSchema
|
|
4245
|
+
},
|
|
4246
|
+
body: import_zod52.default.object({
|
|
4247
|
+
roomId: import_zod52.default.string().uuid(),
|
|
4248
|
+
slaStatus: import_zod52.default.enum(["meet", "unmeet", "-"])
|
|
4249
|
+
})
|
|
4250
|
+
}
|
|
4205
4251
|
},
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
path: "/cx-logs",
|
|
4209
|
-
headers: import_zod52.default.object({
|
|
4210
|
-
// biome-ignore lint/style/useNamingConvention: <explanation>
|
|
4211
|
-
"x-tenant": import_zod52.default.string({ required_error: "Tenant id is required" }),
|
|
4212
|
-
"x-code": import_zod52.default.string().uuid().optional()
|
|
4213
|
-
}),
|
|
4214
|
-
responses: {
|
|
4215
|
-
200: null,
|
|
4216
|
-
403: DefaultUnauthorizedSchema,
|
|
4217
|
-
404: DefaultNotFoundSchema,
|
|
4218
|
-
500: DefaultErrorResponseSchema
|
|
4219
|
-
},
|
|
4220
|
-
body: import_zod52.default.object({
|
|
4221
|
-
roomId: import_zod52.default.string().uuid(),
|
|
4222
|
-
slaStatus: import_zod52.default.enum(["meet", "unmeet", "-"])
|
|
4223
|
-
})
|
|
4224
|
-
}
|
|
4225
|
-
});
|
|
4252
|
+
{ pathPrefix: "ms" }
|
|
4253
|
+
);
|
|
4226
4254
|
|
|
4227
4255
|
// src/dashboard/index.ts
|
|
4228
4256
|
var import_core13 = require("@ts-rest/core");
|
|
@@ -4866,7 +4894,7 @@ var dashboardContract = (0, import_core13.initContract)().router(
|
|
|
4866
4894
|
}
|
|
4867
4895
|
},
|
|
4868
4896
|
{
|
|
4869
|
-
pathPrefix: "dashboard"
|
|
4897
|
+
pathPrefix: "ms/dashboard"
|
|
4870
4898
|
}
|
|
4871
4899
|
);
|
|
4872
4900
|
|
|
@@ -4899,7 +4927,7 @@ var evaluateFormContract = (0, import_core14.initContract)().router(
|
|
|
4899
4927
|
summary: "Create evaluate form"
|
|
4900
4928
|
}
|
|
4901
4929
|
},
|
|
4902
|
-
{ pathPrefix: "evaluate-forms" }
|
|
4930
|
+
{ pathPrefix: "ms/evaluate-forms" }
|
|
4903
4931
|
);
|
|
4904
4932
|
|
|
4905
4933
|
// src/extension/index.ts
|
|
@@ -5333,20 +5361,23 @@ var lineContract = (0, import_core17.initContract)().router({
|
|
|
5333
5361
|
// src/mail/email-engine-webhooks-events.contract.ts
|
|
5334
5362
|
var import_core18 = require("@ts-rest/core");
|
|
5335
5363
|
var import_zod64 = __toESM(require("zod"));
|
|
5336
|
-
var emailEngineWebhooksEventsContract = (0, import_core18.initContract)().router(
|
|
5337
|
-
|
|
5338
|
-
|
|
5339
|
-
|
|
5340
|
-
|
|
5341
|
-
|
|
5342
|
-
|
|
5343
|
-
|
|
5344
|
-
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
|
|
5349
|
-
}
|
|
5364
|
+
var emailEngineWebhooksEventsContract = (0, import_core18.initContract)().router(
|
|
5365
|
+
{
|
|
5366
|
+
handleWebhooksEvents: {
|
|
5367
|
+
method: "POST",
|
|
5368
|
+
path: "/email_engine/webhooks",
|
|
5369
|
+
// we don't need to respone anything but added responses just for solving type error
|
|
5370
|
+
responses: {
|
|
5371
|
+
200: DefaultSuccessResponseSchema.extend({
|
|
5372
|
+
message: import_zod64.default.string()
|
|
5373
|
+
})
|
|
5374
|
+
},
|
|
5375
|
+
body: null,
|
|
5376
|
+
summary: "Handle email engine webhooks events such as authenticationSuccess, messageNew"
|
|
5377
|
+
}
|
|
5378
|
+
},
|
|
5379
|
+
{ pathPrefix: "ms" }
|
|
5380
|
+
);
|
|
5350
5381
|
|
|
5351
5382
|
// src/messenger/index.ts
|
|
5352
5383
|
var import_core19 = require("@ts-rest/core");
|
|
@@ -5482,7 +5513,7 @@ var permissionContract = (0, import_core20.initContract)().router(
|
|
|
5482
5513
|
summary: "Get all permissions"
|
|
5483
5514
|
}
|
|
5484
5515
|
},
|
|
5485
|
-
{ pathPrefix: "permission" }
|
|
5516
|
+
{ pathPrefix: "ms/permission" }
|
|
5486
5517
|
);
|
|
5487
5518
|
|
|
5488
5519
|
// src/role/index.ts
|
|
@@ -5585,7 +5616,7 @@ var roleContract = (0, import_core21.initContract)().router(
|
|
|
5585
5616
|
summary: "Get role by Id"
|
|
5586
5617
|
}
|
|
5587
5618
|
},
|
|
5588
|
-
{ pathPrefix: "role" }
|
|
5619
|
+
{ pathPrefix: "ms/role" }
|
|
5589
5620
|
);
|
|
5590
5621
|
|
|
5591
5622
|
// src/tag/index.ts
|
|
@@ -5658,7 +5689,7 @@ var tagContract = (0, import_core22.initContract)().router(
|
|
|
5658
5689
|
}
|
|
5659
5690
|
},
|
|
5660
5691
|
{
|
|
5661
|
-
pathPrefix: "tags"
|
|
5692
|
+
pathPrefix: "ms/tags"
|
|
5662
5693
|
}
|
|
5663
5694
|
);
|
|
5664
5695
|
|
|
@@ -5737,7 +5768,7 @@ var telephonyAgentPresenceStatusContract = (0, import_core23.initContract)().rou
|
|
|
5737
5768
|
summary: "Update presence status"
|
|
5738
5769
|
}
|
|
5739
5770
|
},
|
|
5740
|
-
{ pathPrefix: "telephony" }
|
|
5771
|
+
{ pathPrefix: "ms/telephony" }
|
|
5741
5772
|
);
|
|
5742
5773
|
|
|
5743
5774
|
// src/telephony-cdr/index.ts
|
|
@@ -6116,7 +6147,7 @@ var telephonyExtensionContract = (0, import_core25.initContract)().router(
|
|
|
6116
6147
|
summary: "Get all extension list by yeastar"
|
|
6117
6148
|
}
|
|
6118
6149
|
},
|
|
6119
|
-
{ pathPrefix: "telephony" }
|
|
6150
|
+
{ pathPrefix: "ms/telephony" }
|
|
6120
6151
|
);
|
|
6121
6152
|
|
|
6122
6153
|
// src/ticket/index.ts
|
|
@@ -6779,7 +6810,7 @@ var userContract = (0, import_core27.initContract)().router(
|
|
|
6779
6810
|
summary: "Delete a user."
|
|
6780
6811
|
}
|
|
6781
6812
|
},
|
|
6782
|
-
{ pathPrefix: "user" }
|
|
6813
|
+
{ pathPrefix: "ms/user" }
|
|
6783
6814
|
);
|
|
6784
6815
|
|
|
6785
6816
|
// src/user-presence-status-log/index.ts
|
|
@@ -6839,7 +6870,7 @@ var userPresenceStatusLogContract = (0, import_core28.initContract)().router(
|
|
|
6839
6870
|
}
|
|
6840
6871
|
}
|
|
6841
6872
|
},
|
|
6842
|
-
{ pathPrefix: "user-presence-status-log" }
|
|
6873
|
+
{ pathPrefix: "ms/user-presence-status-log" }
|
|
6843
6874
|
);
|
|
6844
6875
|
|
|
6845
6876
|
// src/widget/index.ts
|
|
@@ -7026,7 +7057,7 @@ var widgetContract = (0, import_core29.initContract)().router(
|
|
|
7026
7057
|
summary: "Delete a widget."
|
|
7027
7058
|
}
|
|
7028
7059
|
},
|
|
7029
|
-
{ pathPrefix: "widget" }
|
|
7060
|
+
{ pathPrefix: "ms/widget" }
|
|
7030
7061
|
);
|
|
7031
7062
|
|
|
7032
7063
|
// src/wrap-up-form/index.ts
|
|
@@ -7176,7 +7207,7 @@ var wrapUpFormContract = (0, import_core30.initContract)().router(
|
|
|
7176
7207
|
summary: "Update a wrap up form."
|
|
7177
7208
|
}
|
|
7178
7209
|
},
|
|
7179
|
-
{ pathPrefix: "wrap-up-form" }
|
|
7210
|
+
{ pathPrefix: "ms/wrap-up-form" }
|
|
7180
7211
|
);
|
|
7181
7212
|
|
|
7182
7213
|
// src/upload/index.ts
|
|
@@ -7240,7 +7271,7 @@ var uploadContract = (0, import_core31.initContract)().router(
|
|
|
7240
7271
|
}
|
|
7241
7272
|
},
|
|
7242
7273
|
{
|
|
7243
|
-
pathPrefix: "/upload"
|
|
7274
|
+
pathPrefix: "ms/upload"
|
|
7244
7275
|
}
|
|
7245
7276
|
);
|
|
7246
7277
|
|
|
@@ -7727,7 +7758,7 @@ var snippetContract = (0, import_core35.initContract)().router(
|
|
|
7727
7758
|
}
|
|
7728
7759
|
},
|
|
7729
7760
|
{
|
|
7730
|
-
pathPrefix: "snippets"
|
|
7761
|
+
pathPrefix: "ms/snippets"
|
|
7731
7762
|
}
|
|
7732
7763
|
);
|
|
7733
7764
|
|
|
@@ -8516,7 +8547,7 @@ var botContract = (0, import_core40.initContract)().router(
|
|
|
8516
8547
|
}
|
|
8517
8548
|
},
|
|
8518
8549
|
{
|
|
8519
|
-
pathPrefix: "/bots"
|
|
8550
|
+
pathPrefix: "ms/bots"
|
|
8520
8551
|
}
|
|
8521
8552
|
);
|
|
8522
8553
|
|
|
@@ -8828,10 +8859,10 @@ var workflowContract = (0, import_core43.initContract)().router(
|
|
|
8828
8859
|
chat: chatContract
|
|
8829
8860
|
},
|
|
8830
8861
|
{
|
|
8831
|
-
pathPrefix: "workflow/"
|
|
8862
|
+
pathPrefix: "ms/workflow/"
|
|
8832
8863
|
}
|
|
8833
8864
|
);
|
|
8834
|
-
var settingsPathPrefix = "settings/";
|
|
8865
|
+
var settingsPathPrefix = "ms/settings/";
|
|
8835
8866
|
var ticketSettingContract = (0, import_core43.initContract)().router(
|
|
8836
8867
|
{
|
|
8837
8868
|
ticketSetting: attributeContract
|