@kl1/contracts 1.0.23 → 1.0.25
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/index.js +23 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +23 -8
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/attribute/index.d.ts +42 -0
- package/dist/src/attribute/index.d.ts.map +1 -1
- package/dist/src/auth/index.d.ts +30 -0
- package/dist/src/auth/index.d.ts.map +1 -1
- package/dist/src/base-contract.d.ts +6 -0
- package/dist/src/base-contract.d.ts.map +1 -1
- package/dist/src/category/index.d.ts +36 -0
- package/dist/src/category/index.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +12 -0
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +91 -3
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +72 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contract.d.ts +909 -369
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +133 -357
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +0 -287
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +117 -9
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +5 -5
- package/dist/src/extension/index.d.ts +36 -0
- package/dist/src/extension/index.d.ts.map +1 -1
- package/dist/src/mail/account-contract.d.ts +42 -0
- package/dist/src/mail/account-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +42 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/messenger/index.d.ts +10 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/permission/index.d.ts +6 -0
- package/dist/src/permission/index.d.ts.map +1 -1
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/role/index.d.ts +24 -0
- package/dist/src/role/index.d.ts.map +1 -1
- package/dist/src/tag/index.d.ts +24 -0
- package/dist/src/tag/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/index.d.ts +24 -0
- package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/src/telephony-extension/index.d.ts +6 -0
- package/dist/src/telephony-extension/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +102 -0
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +30 -0
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/index.d.ts +6 -0
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/widget/index.d.ts +48 -0
- package/dist/src/widget/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +18 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/role/index.d.ts
CHANGED
@@ -166,12 +166,18 @@ export declare const roleContract: {
|
|
166
166
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
167
167
|
'x-tenant': z.ZodString;
|
168
168
|
authorization: z.ZodString;
|
169
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
170
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
169
171
|
}, "strip", z.ZodTypeAny, {
|
170
172
|
'x-tenant': string;
|
171
173
|
authorization: string;
|
174
|
+
'x-client-timezone': string;
|
175
|
+
'x-code'?: string | undefined;
|
172
176
|
}, {
|
173
177
|
'x-tenant': string;
|
174
178
|
authorization: string;
|
179
|
+
'x-code'?: string | undefined;
|
180
|
+
'x-client-timezone'?: string | undefined;
|
175
181
|
}>>>;
|
176
182
|
};
|
177
183
|
getRoles: {
|
@@ -307,12 +313,18 @@ export declare const roleContract: {
|
|
307
313
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
308
314
|
'x-tenant': z.ZodString;
|
309
315
|
authorization: z.ZodString;
|
316
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
317
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
310
318
|
}, "strip", z.ZodTypeAny, {
|
311
319
|
'x-tenant': string;
|
312
320
|
authorization: string;
|
321
|
+
'x-client-timezone': string;
|
322
|
+
'x-code'?: string | undefined;
|
313
323
|
}, {
|
314
324
|
'x-tenant': string;
|
315
325
|
authorization: string;
|
326
|
+
'x-code'?: string | undefined;
|
327
|
+
'x-client-timezone'?: string | undefined;
|
316
328
|
}>>>;
|
317
329
|
};
|
318
330
|
updateRole: {
|
@@ -485,12 +497,18 @@ export declare const roleContract: {
|
|
485
497
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
486
498
|
'x-tenant': z.ZodString;
|
487
499
|
authorization: z.ZodString;
|
500
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
501
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
488
502
|
}, "strip", z.ZodTypeAny, {
|
489
503
|
'x-tenant': string;
|
490
504
|
authorization: string;
|
505
|
+
'x-client-timezone': string;
|
506
|
+
'x-code'?: string | undefined;
|
491
507
|
}, {
|
492
508
|
'x-tenant': string;
|
493
509
|
authorization: string;
|
510
|
+
'x-code'?: string | undefined;
|
511
|
+
'x-client-timezone'?: string | undefined;
|
494
512
|
}>>>;
|
495
513
|
};
|
496
514
|
deleteRole: {
|
@@ -530,12 +548,18 @@ export declare const roleContract: {
|
|
530
548
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
531
549
|
'x-tenant': z.ZodString;
|
532
550
|
authorization: z.ZodString;
|
551
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
552
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
533
553
|
}, "strip", z.ZodTypeAny, {
|
534
554
|
'x-tenant': string;
|
535
555
|
authorization: string;
|
556
|
+
'x-client-timezone': string;
|
557
|
+
'x-code'?: string | undefined;
|
536
558
|
}, {
|
537
559
|
'x-tenant': string;
|
538
560
|
authorization: string;
|
561
|
+
'x-code'?: string | undefined;
|
562
|
+
'x-client-timezone'?: string | undefined;
|
539
563
|
}>>>;
|
540
564
|
};
|
541
565
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/role/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGlE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEjE,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/role/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGlE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEjE,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0ExB,CAAC"}
|
package/dist/src/tag/index.d.ts
CHANGED
@@ -74,12 +74,18 @@ export declare const tagContract: {
|
|
74
74
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
75
75
|
'x-tenant': z.ZodString;
|
76
76
|
authorization: z.ZodString;
|
77
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
78
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
77
79
|
}, "strip", z.ZodTypeAny, {
|
78
80
|
'x-tenant': string;
|
79
81
|
authorization: string;
|
82
|
+
'x-client-timezone': string;
|
83
|
+
'x-code'?: string | undefined;
|
80
84
|
}, {
|
81
85
|
'x-tenant': string;
|
82
86
|
authorization: string;
|
87
|
+
'x-code'?: string | undefined;
|
88
|
+
'x-client-timezone'?: string | undefined;
|
83
89
|
}>>>;
|
84
90
|
};
|
85
91
|
getTags: {
|
@@ -150,12 +156,18 @@ export declare const tagContract: {
|
|
150
156
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
151
157
|
'x-tenant': z.ZodString;
|
152
158
|
authorization: z.ZodString;
|
159
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
160
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
153
161
|
}, "strip", z.ZodTypeAny, {
|
154
162
|
'x-tenant': string;
|
155
163
|
authorization: string;
|
164
|
+
'x-client-timezone': string;
|
165
|
+
'x-code'?: string | undefined;
|
156
166
|
}, {
|
157
167
|
'x-tenant': string;
|
158
168
|
authorization: string;
|
169
|
+
'x-code'?: string | undefined;
|
170
|
+
'x-client-timezone'?: string | undefined;
|
159
171
|
}>>>;
|
160
172
|
};
|
161
173
|
updateTag: {
|
@@ -230,12 +242,18 @@ export declare const tagContract: {
|
|
230
242
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
231
243
|
'x-tenant': z.ZodString;
|
232
244
|
authorization: z.ZodString;
|
245
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
246
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
233
247
|
}, "strip", z.ZodTypeAny, {
|
234
248
|
'x-tenant': string;
|
235
249
|
authorization: string;
|
250
|
+
'x-client-timezone': string;
|
251
|
+
'x-code'?: string | undefined;
|
236
252
|
}, {
|
237
253
|
'x-tenant': string;
|
238
254
|
authorization: string;
|
255
|
+
'x-code'?: string | undefined;
|
256
|
+
'x-client-timezone'?: string | undefined;
|
239
257
|
}>>>;
|
240
258
|
};
|
241
259
|
deleteTag: {
|
@@ -274,12 +292,18 @@ export declare const tagContract: {
|
|
274
292
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
275
293
|
'x-tenant': z.ZodString;
|
276
294
|
authorization: z.ZodString;
|
295
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
296
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
277
297
|
}, "strip", z.ZodTypeAny, {
|
278
298
|
'x-tenant': string;
|
279
299
|
authorization: string;
|
300
|
+
'x-client-timezone': string;
|
301
|
+
'x-code'?: string | undefined;
|
280
302
|
}, {
|
281
303
|
'x-tenant': string;
|
282
304
|
authorization: string;
|
305
|
+
'x-code'?: string | undefined;
|
306
|
+
'x-client-timezone'?: string | undefined;
|
283
307
|
}>>>;
|
284
308
|
};
|
285
309
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/tag/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAG/E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC/D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAC3D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC/D,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAE5C,eAAO,MAAM,WAAW
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/tag/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AACrC,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AAG/E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC/D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAC3D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC/D,MAAM,MAAM,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAE5C,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsDvB,CAAC"}
|
@@ -60,12 +60,18 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
60
60
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
61
61
|
'x-tenant': z.ZodString;
|
62
62
|
authorization: z.ZodString;
|
63
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
64
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
63
65
|
}, "strip", z.ZodTypeAny, {
|
64
66
|
'x-tenant': string;
|
65
67
|
authorization: string;
|
68
|
+
'x-client-timezone': string;
|
69
|
+
'x-code'?: string | undefined;
|
66
70
|
}, {
|
67
71
|
'x-tenant': string;
|
68
72
|
authorization: string;
|
73
|
+
'x-code'?: string | undefined;
|
74
|
+
'x-client-timezone'?: string | undefined;
|
69
75
|
}>>>;
|
70
76
|
};
|
71
77
|
getAllAgentStatus: {
|
@@ -446,12 +452,18 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
446
452
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
447
453
|
'x-tenant': z.ZodString;
|
448
454
|
authorization: z.ZodString;
|
455
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
456
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
449
457
|
}, "strip", z.ZodTypeAny, {
|
450
458
|
'x-tenant': string;
|
451
459
|
authorization: string;
|
460
|
+
'x-client-timezone': string;
|
461
|
+
'x-code'?: string | undefined;
|
452
462
|
}, {
|
453
463
|
'x-tenant': string;
|
454
464
|
authorization: string;
|
465
|
+
'x-code'?: string | undefined;
|
466
|
+
'x-client-timezone'?: string | undefined;
|
455
467
|
}>>>;
|
456
468
|
};
|
457
469
|
getAgentStatus: {
|
@@ -839,12 +851,18 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
839
851
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
840
852
|
'x-tenant': z.ZodString;
|
841
853
|
authorization: z.ZodString;
|
854
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
855
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
842
856
|
}, "strip", z.ZodTypeAny, {
|
843
857
|
'x-tenant': string;
|
844
858
|
authorization: string;
|
859
|
+
'x-client-timezone': string;
|
860
|
+
'x-code'?: string | undefined;
|
845
861
|
}, {
|
846
862
|
'x-tenant': string;
|
847
863
|
authorization: string;
|
864
|
+
'x-code'?: string | undefined;
|
865
|
+
'x-client-timezone'?: string | undefined;
|
848
866
|
}>>>;
|
849
867
|
};
|
850
868
|
updateUserStatus: {
|
@@ -1364,12 +1382,18 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1364
1382
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1365
1383
|
'x-tenant': z.ZodString;
|
1366
1384
|
authorization: z.ZodString;
|
1385
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
1386
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
1367
1387
|
}, "strip", z.ZodTypeAny, {
|
1368
1388
|
'x-tenant': string;
|
1369
1389
|
authorization: string;
|
1390
|
+
'x-client-timezone': string;
|
1391
|
+
'x-code'?: string | undefined;
|
1370
1392
|
}, {
|
1371
1393
|
'x-tenant': string;
|
1372
1394
|
authorization: string;
|
1395
|
+
'x-code'?: string | undefined;
|
1396
|
+
'x-client-timezone'?: string | undefined;
|
1373
1397
|
}>>>;
|
1374
1398
|
};
|
1375
1399
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/telephony-agent-presence-status/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAEtD,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE7E,eAAO,MAAM,oCAAoC
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/telephony-agent-presence-status/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB,OAAO,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAEtD,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE7E,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoEhD,CAAC"}
|
@@ -243,12 +243,18 @@ export declare const telephonyExtensionContract: {
|
|
243
243
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
244
244
|
'x-tenant': z.ZodString;
|
245
245
|
authorization: z.ZodString;
|
246
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
247
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
246
248
|
}, "strip", z.ZodTypeAny, {
|
247
249
|
'x-tenant': string;
|
248
250
|
authorization: string;
|
251
|
+
'x-client-timezone': string;
|
252
|
+
'x-code'?: string | undefined;
|
249
253
|
}, {
|
250
254
|
'x-tenant': string;
|
251
255
|
authorization: string;
|
256
|
+
'x-code'?: string | undefined;
|
257
|
+
'x-client-timezone'?: string | undefined;
|
252
258
|
}>>>;
|
253
259
|
};
|
254
260
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/telephony-extension/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,0BAA0B
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/telephony-extension/index.ts"],"names":[],"mappings":"AAMA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmBtC,CAAC"}
|
@@ -838,12 +838,18 @@ export declare const ticketContract: {
|
|
838
838
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
839
839
|
'x-tenant': z.ZodString;
|
840
840
|
authorization: z.ZodString;
|
841
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
842
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
841
843
|
}, "strip", z.ZodTypeAny, {
|
842
844
|
'x-tenant': string;
|
843
845
|
authorization: string;
|
846
|
+
'x-client-timezone': string;
|
847
|
+
'x-code'?: string | undefined;
|
844
848
|
}, {
|
845
849
|
'x-tenant': string;
|
846
850
|
authorization: string;
|
851
|
+
'x-code'?: string | undefined;
|
852
|
+
'x-client-timezone'?: string | undefined;
|
847
853
|
}>>>;
|
848
854
|
};
|
849
855
|
getAllTickets: {
|
@@ -1201,12 +1207,18 @@ export declare const ticketContract: {
|
|
1201
1207
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1202
1208
|
'x-tenant': z.ZodString;
|
1203
1209
|
authorization: z.ZodString;
|
1210
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
1211
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
1204
1212
|
}, "strip", z.ZodTypeAny, {
|
1205
1213
|
'x-tenant': string;
|
1206
1214
|
authorization: string;
|
1215
|
+
'x-client-timezone': string;
|
1216
|
+
'x-code'?: string | undefined;
|
1207
1217
|
}, {
|
1208
1218
|
'x-tenant': string;
|
1209
1219
|
authorization: string;
|
1220
|
+
'x-code'?: string | undefined;
|
1221
|
+
'x-client-timezone'?: string | undefined;
|
1210
1222
|
}>>>;
|
1211
1223
|
};
|
1212
1224
|
getTicketById: {
|
@@ -1621,12 +1633,18 @@ export declare const ticketContract: {
|
|
1621
1633
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1622
1634
|
'x-tenant': z.ZodString;
|
1623
1635
|
authorization: z.ZodString;
|
1636
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
1637
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
1624
1638
|
}, "strip", z.ZodTypeAny, {
|
1625
1639
|
'x-tenant': string;
|
1626
1640
|
authorization: string;
|
1641
|
+
'x-client-timezone': string;
|
1642
|
+
'x-code'?: string | undefined;
|
1627
1643
|
}, {
|
1628
1644
|
'x-tenant': string;
|
1629
1645
|
authorization: string;
|
1646
|
+
'x-code'?: string | undefined;
|
1647
|
+
'x-client-timezone'?: string | undefined;
|
1630
1648
|
}>>>;
|
1631
1649
|
};
|
1632
1650
|
getTicketByContactId: {
|
@@ -1929,12 +1947,18 @@ export declare const ticketContract: {
|
|
1929
1947
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
1930
1948
|
'x-tenant': z.ZodString;
|
1931
1949
|
authorization: z.ZodString;
|
1950
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
1951
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
1932
1952
|
}, "strip", z.ZodTypeAny, {
|
1933
1953
|
'x-tenant': string;
|
1934
1954
|
authorization: string;
|
1955
|
+
'x-client-timezone': string;
|
1956
|
+
'x-code'?: string | undefined;
|
1935
1957
|
}, {
|
1936
1958
|
'x-tenant': string;
|
1937
1959
|
authorization: string;
|
1960
|
+
'x-code'?: string | undefined;
|
1961
|
+
'x-client-timezone'?: string | undefined;
|
1938
1962
|
}>>>;
|
1939
1963
|
};
|
1940
1964
|
updateTicket: {
|
@@ -2776,12 +2800,18 @@ export declare const ticketContract: {
|
|
2776
2800
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
2777
2801
|
'x-tenant': z.ZodString;
|
2778
2802
|
authorization: z.ZodString;
|
2803
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
2804
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
2779
2805
|
}, "strip", z.ZodTypeAny, {
|
2780
2806
|
'x-tenant': string;
|
2781
2807
|
authorization: string;
|
2808
|
+
'x-client-timezone': string;
|
2809
|
+
'x-code'?: string | undefined;
|
2782
2810
|
}, {
|
2783
2811
|
'x-tenant': string;
|
2784
2812
|
authorization: string;
|
2813
|
+
'x-code'?: string | undefined;
|
2814
|
+
'x-client-timezone'?: string | undefined;
|
2785
2815
|
}>>>;
|
2786
2816
|
};
|
2787
2817
|
deleteTicket: {
|
@@ -2821,12 +2851,18 @@ export declare const ticketContract: {
|
|
2821
2851
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
2822
2852
|
'x-tenant': z.ZodString;
|
2823
2853
|
authorization: z.ZodString;
|
2854
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
2855
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
2824
2856
|
}, "strip", z.ZodTypeAny, {
|
2825
2857
|
'x-tenant': string;
|
2826
2858
|
authorization: string;
|
2859
|
+
'x-client-timezone': string;
|
2860
|
+
'x-code'?: string | undefined;
|
2827
2861
|
}, {
|
2828
2862
|
'x-tenant': string;
|
2829
2863
|
authorization: string;
|
2864
|
+
'x-code'?: string | undefined;
|
2865
|
+
'x-client-timezone'?: string | undefined;
|
2830
2866
|
}>>>;
|
2831
2867
|
};
|
2832
2868
|
updateDescription: {
|
@@ -2913,12 +2949,18 @@ export declare const ticketContract: {
|
|
2913
2949
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
2914
2950
|
'x-tenant': z.ZodString;
|
2915
2951
|
authorization: z.ZodString;
|
2952
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
2953
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
2916
2954
|
}, "strip", z.ZodTypeAny, {
|
2917
2955
|
'x-tenant': string;
|
2918
2956
|
authorization: string;
|
2957
|
+
'x-client-timezone': string;
|
2958
|
+
'x-code'?: string | undefined;
|
2919
2959
|
}, {
|
2920
2960
|
'x-tenant': string;
|
2921
2961
|
authorization: string;
|
2962
|
+
'x-code'?: string | undefined;
|
2963
|
+
'x-client-timezone'?: string | undefined;
|
2922
2964
|
}>>>;
|
2923
2965
|
};
|
2924
2966
|
updateTitle: {
|
@@ -3005,12 +3047,18 @@ export declare const ticketContract: {
|
|
3005
3047
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3006
3048
|
'x-tenant': z.ZodString;
|
3007
3049
|
authorization: z.ZodString;
|
3050
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
3051
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
3008
3052
|
}, "strip", z.ZodTypeAny, {
|
3009
3053
|
'x-tenant': string;
|
3010
3054
|
authorization: string;
|
3055
|
+
'x-client-timezone': string;
|
3056
|
+
'x-code'?: string | undefined;
|
3011
3057
|
}, {
|
3012
3058
|
'x-tenant': string;
|
3013
3059
|
authorization: string;
|
3060
|
+
'x-code'?: string | undefined;
|
3061
|
+
'x-client-timezone'?: string | undefined;
|
3014
3062
|
}>>>;
|
3015
3063
|
};
|
3016
3064
|
updateType: {
|
@@ -3097,12 +3145,18 @@ export declare const ticketContract: {
|
|
3097
3145
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3098
3146
|
'x-tenant': z.ZodString;
|
3099
3147
|
authorization: z.ZodString;
|
3148
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
3149
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
3100
3150
|
}, "strip", z.ZodTypeAny, {
|
3101
3151
|
'x-tenant': string;
|
3102
3152
|
authorization: string;
|
3153
|
+
'x-client-timezone': string;
|
3154
|
+
'x-code'?: string | undefined;
|
3103
3155
|
}, {
|
3104
3156
|
'x-tenant': string;
|
3105
3157
|
authorization: string;
|
3158
|
+
'x-code'?: string | undefined;
|
3159
|
+
'x-client-timezone'?: string | undefined;
|
3106
3160
|
}>>>;
|
3107
3161
|
};
|
3108
3162
|
updateStatus: {
|
@@ -3189,12 +3243,18 @@ export declare const ticketContract: {
|
|
3189
3243
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3190
3244
|
'x-tenant': z.ZodString;
|
3191
3245
|
authorization: z.ZodString;
|
3246
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
3247
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
3192
3248
|
}, "strip", z.ZodTypeAny, {
|
3193
3249
|
'x-tenant': string;
|
3194
3250
|
authorization: string;
|
3251
|
+
'x-client-timezone': string;
|
3252
|
+
'x-code'?: string | undefined;
|
3195
3253
|
}, {
|
3196
3254
|
'x-tenant': string;
|
3197
3255
|
authorization: string;
|
3256
|
+
'x-code'?: string | undefined;
|
3257
|
+
'x-client-timezone'?: string | undefined;
|
3198
3258
|
}>>>;
|
3199
3259
|
};
|
3200
3260
|
updatePriority: {
|
@@ -3281,12 +3341,18 @@ export declare const ticketContract: {
|
|
3281
3341
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3282
3342
|
'x-tenant': z.ZodString;
|
3283
3343
|
authorization: z.ZodString;
|
3344
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
3345
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
3284
3346
|
}, "strip", z.ZodTypeAny, {
|
3285
3347
|
'x-tenant': string;
|
3286
3348
|
authorization: string;
|
3349
|
+
'x-client-timezone': string;
|
3350
|
+
'x-code'?: string | undefined;
|
3287
3351
|
}, {
|
3288
3352
|
'x-tenant': string;
|
3289
3353
|
authorization: string;
|
3354
|
+
'x-code'?: string | undefined;
|
3355
|
+
'x-client-timezone'?: string | undefined;
|
3290
3356
|
}>>>;
|
3291
3357
|
};
|
3292
3358
|
updateChannel: {
|
@@ -3373,12 +3439,18 @@ export declare const ticketContract: {
|
|
3373
3439
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3374
3440
|
'x-tenant': z.ZodString;
|
3375
3441
|
authorization: z.ZodString;
|
3442
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
3443
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
3376
3444
|
}, "strip", z.ZodTypeAny, {
|
3377
3445
|
'x-tenant': string;
|
3378
3446
|
authorization: string;
|
3447
|
+
'x-client-timezone': string;
|
3448
|
+
'x-code'?: string | undefined;
|
3379
3449
|
}, {
|
3380
3450
|
'x-tenant': string;
|
3381
3451
|
authorization: string;
|
3452
|
+
'x-code'?: string | undefined;
|
3453
|
+
'x-client-timezone'?: string | undefined;
|
3382
3454
|
}>>>;
|
3383
3455
|
};
|
3384
3456
|
updateTags: {
|
@@ -3465,12 +3537,18 @@ export declare const ticketContract: {
|
|
3465
3537
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3466
3538
|
'x-tenant': z.ZodString;
|
3467
3539
|
authorization: z.ZodString;
|
3540
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
3541
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
3468
3542
|
}, "strip", z.ZodTypeAny, {
|
3469
3543
|
'x-tenant': string;
|
3470
3544
|
authorization: string;
|
3545
|
+
'x-client-timezone': string;
|
3546
|
+
'x-code'?: string | undefined;
|
3471
3547
|
}, {
|
3472
3548
|
'x-tenant': string;
|
3473
3549
|
authorization: string;
|
3550
|
+
'x-code'?: string | undefined;
|
3551
|
+
'x-client-timezone'?: string | undefined;
|
3474
3552
|
}>>>;
|
3475
3553
|
};
|
3476
3554
|
changeAssignee: {
|
@@ -3919,12 +3997,18 @@ export declare const ticketContract: {
|
|
3919
3997
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3920
3998
|
'x-tenant': z.ZodString;
|
3921
3999
|
authorization: z.ZodString;
|
4000
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
4001
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
3922
4002
|
}, "strip", z.ZodTypeAny, {
|
3923
4003
|
'x-tenant': string;
|
3924
4004
|
authorization: string;
|
4005
|
+
'x-client-timezone': string;
|
4006
|
+
'x-code'?: string | undefined;
|
3925
4007
|
}, {
|
3926
4008
|
'x-tenant': string;
|
3927
4009
|
authorization: string;
|
4010
|
+
'x-code'?: string | undefined;
|
4011
|
+
'x-client-timezone'?: string | undefined;
|
3928
4012
|
}>>>;
|
3929
4013
|
};
|
3930
4014
|
getTicketCountByContact: {
|
@@ -3989,12 +4073,18 @@ export declare const ticketContract: {
|
|
3989
4073
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3990
4074
|
'x-tenant': z.ZodString;
|
3991
4075
|
authorization: z.ZodString;
|
4076
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
4077
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
3992
4078
|
}, "strip", z.ZodTypeAny, {
|
3993
4079
|
'x-tenant': string;
|
3994
4080
|
authorization: string;
|
4081
|
+
'x-client-timezone': string;
|
4082
|
+
'x-code'?: string | undefined;
|
3995
4083
|
}, {
|
3996
4084
|
'x-tenant': string;
|
3997
4085
|
authorization: string;
|
4086
|
+
'x-code'?: string | undefined;
|
4087
|
+
'x-client-timezone'?: string | undefined;
|
3998
4088
|
}>>>;
|
3999
4089
|
};
|
4000
4090
|
getTicketByContact: {
|
@@ -4297,12 +4387,18 @@ export declare const ticketContract: {
|
|
4297
4387
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
4298
4388
|
'x-tenant': z.ZodString;
|
4299
4389
|
authorization: z.ZodString;
|
4390
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
4391
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
4300
4392
|
}, "strip", z.ZodTypeAny, {
|
4301
4393
|
'x-tenant': string;
|
4302
4394
|
authorization: string;
|
4395
|
+
'x-client-timezone': string;
|
4396
|
+
'x-code'?: string | undefined;
|
4303
4397
|
}, {
|
4304
4398
|
'x-tenant': string;
|
4305
4399
|
authorization: string;
|
4400
|
+
'x-code'?: string | undefined;
|
4401
|
+
'x-client-timezone'?: string | undefined;
|
4306
4402
|
}>>>;
|
4307
4403
|
};
|
4308
4404
|
createTicketAttachmentRecords: {
|
@@ -4646,12 +4742,18 @@ export declare const ticketContract: {
|
|
4646
4742
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
4647
4743
|
'x-tenant': z.ZodString;
|
4648
4744
|
authorization: z.ZodString;
|
4745
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
4746
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
4649
4747
|
}, "strip", z.ZodTypeAny, {
|
4650
4748
|
'x-tenant': string;
|
4651
4749
|
authorization: string;
|
4750
|
+
'x-client-timezone': string;
|
4751
|
+
'x-code'?: string | undefined;
|
4652
4752
|
}, {
|
4653
4753
|
'x-tenant': string;
|
4654
4754
|
authorization: string;
|
4755
|
+
'x-code'?: string | undefined;
|
4756
|
+
'x-client-timezone'?: string | undefined;
|
4655
4757
|
}>>>;
|
4656
4758
|
};
|
4657
4759
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ticket/index.ts"],"names":[],"mappings":"AASA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EACL,mCAAmC,EACnC,4BAA4B,EAC5B,4BAA4B,EAC5B,uBAAuB,EACvB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CACxD,OAAO,mCAAmC,CAC3C,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC/E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAExE,eAAO,MAAM,cAAc
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ticket/index.ts"],"names":[],"mappings":"AASA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EACL,mCAAmC,EACnC,4BAA4B,EAC5B,4BAA4B,EAC5B,uBAAuB,EACvB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CACxD,OAAO,mCAAmC,CAC3C,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC/E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAExE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0X1B,CAAC"}
|