@kl1/contracts 1.0.23 → 1.0.24
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 +19 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -15
- package/dist/index.mjs.map +1 -1
- 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 +801 -388
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +6 -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 +136 -28
- 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/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/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 +4 -10
package/dist/src/contract.d.ts
CHANGED
@@ -53,12 +53,18 @@ export declare const apiContract: {
|
|
53
53
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
54
54
|
'x-tenant': import("zod").ZodString;
|
55
55
|
authorization: import("zod").ZodString;
|
56
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
57
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
56
58
|
}, "strip", import("zod").ZodTypeAny, {
|
57
59
|
'x-tenant': string;
|
58
60
|
authorization: string;
|
61
|
+
'x-client-timezone': string;
|
62
|
+
'x-code'?: string | undefined;
|
59
63
|
}, {
|
60
64
|
'x-tenant': string;
|
61
65
|
authorization: string;
|
66
|
+
'x-code'?: string | undefined;
|
67
|
+
'x-client-timezone'?: string | undefined;
|
62
68
|
}>>>;
|
63
69
|
};
|
64
70
|
exchangeToken: {
|
@@ -114,12 +120,18 @@ export declare const apiContract: {
|
|
114
120
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
115
121
|
'x-tenant': import("zod").ZodString;
|
116
122
|
authorization: import("zod").ZodString;
|
123
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
124
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
117
125
|
}, "strip", import("zod").ZodTypeAny, {
|
118
126
|
'x-tenant': string;
|
119
127
|
authorization: string;
|
128
|
+
'x-client-timezone': string;
|
129
|
+
'x-code'?: string | undefined;
|
120
130
|
}, {
|
121
131
|
'x-tenant': string;
|
122
132
|
authorization: string;
|
133
|
+
'x-code'?: string | undefined;
|
134
|
+
'x-client-timezone'?: string | undefined;
|
123
135
|
}>>>;
|
124
136
|
};
|
125
137
|
logout: {
|
@@ -172,12 +184,18 @@ export declare const apiContract: {
|
|
172
184
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
173
185
|
'x-tenant': import("zod").ZodString;
|
174
186
|
authorization: import("zod").ZodString;
|
187
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
188
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
175
189
|
}, "strip", import("zod").ZodTypeAny, {
|
176
190
|
'x-tenant': string;
|
177
191
|
authorization: string;
|
192
|
+
'x-client-timezone': string;
|
193
|
+
'x-code'?: string | undefined;
|
178
194
|
}, {
|
179
195
|
'x-tenant': string;
|
180
196
|
authorization: string;
|
197
|
+
'x-code'?: string | undefined;
|
198
|
+
'x-client-timezone'?: string | undefined;
|
181
199
|
}>>>;
|
182
200
|
};
|
183
201
|
me: {
|
@@ -511,12 +529,18 @@ export declare const apiContract: {
|
|
511
529
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
512
530
|
'x-tenant': import("zod").ZodString;
|
513
531
|
authorization: import("zod").ZodString;
|
532
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
533
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
514
534
|
}, "strip", import("zod").ZodTypeAny, {
|
515
535
|
'x-tenant': string;
|
516
536
|
authorization: string;
|
537
|
+
'x-client-timezone': string;
|
538
|
+
'x-code'?: string | undefined;
|
517
539
|
}, {
|
518
540
|
'x-tenant': string;
|
519
541
|
authorization: string;
|
542
|
+
'x-code'?: string | undefined;
|
543
|
+
'x-client-timezone'?: string | undefined;
|
520
544
|
}>>>;
|
521
545
|
};
|
522
546
|
getAuthUserRole: {
|
@@ -546,12 +570,18 @@ export declare const apiContract: {
|
|
546
570
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
547
571
|
'x-tenant': import("zod").ZodString;
|
548
572
|
authorization: import("zod").ZodString;
|
573
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
574
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
549
575
|
}, "strip", import("zod").ZodTypeAny, {
|
550
576
|
'x-tenant': string;
|
551
577
|
authorization: string;
|
578
|
+
'x-client-timezone': string;
|
579
|
+
'x-code'?: string | undefined;
|
552
580
|
}, {
|
553
581
|
'x-tenant': string;
|
554
582
|
authorization: string;
|
583
|
+
'x-code'?: string | undefined;
|
584
|
+
'x-client-timezone'?: string | undefined;
|
555
585
|
}>>>;
|
556
586
|
};
|
557
587
|
};
|
@@ -12060,12 +12090,18 @@ export declare const apiContract: {
|
|
12060
12090
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
12061
12091
|
'x-tenant': import("zod").ZodString;
|
12062
12092
|
authorization: import("zod").ZodString;
|
12093
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
12094
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
12063
12095
|
}, "strip", import("zod").ZodTypeAny, {
|
12064
12096
|
'x-tenant': string;
|
12065
12097
|
authorization: string;
|
12098
|
+
'x-client-timezone': string;
|
12099
|
+
'x-code'?: string | undefined;
|
12066
12100
|
}, {
|
12067
12101
|
'x-tenant': string;
|
12068
12102
|
authorization: string;
|
12103
|
+
'x-code'?: string | undefined;
|
12104
|
+
'x-client-timezone'?: string | undefined;
|
12069
12105
|
}>>>;
|
12070
12106
|
};
|
12071
12107
|
getById: {
|
@@ -12277,12 +12313,18 @@ export declare const apiContract: {
|
|
12277
12313
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
12278
12314
|
'x-tenant': import("zod").ZodString;
|
12279
12315
|
authorization: import("zod").ZodString;
|
12316
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
12317
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
12280
12318
|
}, "strip", import("zod").ZodTypeAny, {
|
12281
12319
|
'x-tenant': string;
|
12282
12320
|
authorization: string;
|
12321
|
+
'x-client-timezone': string;
|
12322
|
+
'x-code'?: string | undefined;
|
12283
12323
|
}, {
|
12284
12324
|
'x-tenant': string;
|
12285
12325
|
authorization: string;
|
12326
|
+
'x-code'?: string | undefined;
|
12327
|
+
'x-client-timezone'?: string | undefined;
|
12286
12328
|
}>>>;
|
12287
12329
|
};
|
12288
12330
|
getAll: {
|
@@ -12334,12 +12376,18 @@ export declare const apiContract: {
|
|
12334
12376
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
12335
12377
|
'x-tenant': import("zod").ZodString;
|
12336
12378
|
authorization: import("zod").ZodString;
|
12379
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
12380
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
12337
12381
|
}, "strip", import("zod").ZodTypeAny, {
|
12338
12382
|
'x-tenant': string;
|
12339
12383
|
authorization: string;
|
12384
|
+
'x-client-timezone': string;
|
12385
|
+
'x-code'?: string | undefined;
|
12340
12386
|
}, {
|
12341
12387
|
'x-tenant': string;
|
12342
12388
|
authorization: string;
|
12389
|
+
'x-code'?: string | undefined;
|
12390
|
+
'x-client-timezone'?: string | undefined;
|
12343
12391
|
}>>>;
|
12344
12392
|
};
|
12345
12393
|
update: {
|
@@ -12655,12 +12703,18 @@ export declare const apiContract: {
|
|
12655
12703
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
12656
12704
|
'x-tenant': import("zod").ZodString;
|
12657
12705
|
authorization: import("zod").ZodString;
|
12706
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
12707
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
12658
12708
|
}, "strip", import("zod").ZodTypeAny, {
|
12659
12709
|
'x-tenant': string;
|
12660
12710
|
authorization: string;
|
12711
|
+
'x-client-timezone': string;
|
12712
|
+
'x-code'?: string | undefined;
|
12661
12713
|
}, {
|
12662
12714
|
'x-tenant': string;
|
12663
12715
|
authorization: string;
|
12716
|
+
'x-code'?: string | undefined;
|
12717
|
+
'x-client-timezone'?: string | undefined;
|
12664
12718
|
}>>>;
|
12665
12719
|
};
|
12666
12720
|
disconnect: {
|
@@ -12873,12 +12927,18 @@ export declare const apiContract: {
|
|
12873
12927
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
12874
12928
|
'x-tenant': import("zod").ZodString;
|
12875
12929
|
authorization: import("zod").ZodString;
|
12930
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
12931
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
12876
12932
|
}, "strip", import("zod").ZodTypeAny, {
|
12877
12933
|
'x-tenant': string;
|
12878
12934
|
authorization: string;
|
12935
|
+
'x-client-timezone': string;
|
12936
|
+
'x-code'?: string | undefined;
|
12879
12937
|
}, {
|
12880
12938
|
'x-tenant': string;
|
12881
12939
|
authorization: string;
|
12940
|
+
'x-code'?: string | undefined;
|
12941
|
+
'x-client-timezone'?: string | undefined;
|
12882
12942
|
}>>>;
|
12883
12943
|
};
|
12884
12944
|
reconnect: {
|
@@ -13091,12 +13151,18 @@ export declare const apiContract: {
|
|
13091
13151
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
13092
13152
|
'x-tenant': import("zod").ZodString;
|
13093
13153
|
authorization: import("zod").ZodString;
|
13154
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
13155
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
13094
13156
|
}, "strip", import("zod").ZodTypeAny, {
|
13095
13157
|
'x-tenant': string;
|
13096
13158
|
authorization: string;
|
13159
|
+
'x-client-timezone': string;
|
13160
|
+
'x-code'?: string | undefined;
|
13097
13161
|
}, {
|
13098
13162
|
'x-tenant': string;
|
13099
13163
|
authorization: string;
|
13164
|
+
'x-code'?: string | undefined;
|
13165
|
+
'x-client-timezone'?: string | undefined;
|
13100
13166
|
}>>>;
|
13101
13167
|
};
|
13102
13168
|
delete: {
|
@@ -13156,12 +13222,18 @@ export declare const apiContract: {
|
|
13156
13222
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
13157
13223
|
'x-tenant': import("zod").ZodString;
|
13158
13224
|
authorization: import("zod").ZodString;
|
13225
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
13226
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
13159
13227
|
}, "strip", import("zod").ZodTypeAny, {
|
13160
13228
|
'x-tenant': string;
|
13161
13229
|
authorization: string;
|
13230
|
+
'x-client-timezone': string;
|
13231
|
+
'x-code'?: string | undefined;
|
13162
13232
|
}, {
|
13163
13233
|
'x-tenant': string;
|
13164
13234
|
authorization: string;
|
13235
|
+
'x-code'?: string | undefined;
|
13236
|
+
'x-client-timezone'?: string | undefined;
|
13165
13237
|
}>>>;
|
13166
13238
|
};
|
13167
13239
|
};
|
@@ -15346,153 +15418,6 @@ export declare const apiContract: {
|
|
15346
15418
|
} | undefined;
|
15347
15419
|
} | undefined;
|
15348
15420
|
}>>;
|
15349
|
-
cxlog: import("zod").ZodObject<{
|
15350
|
-
id: import("zod").ZodString;
|
15351
|
-
createdAt: import("zod").ZodDate;
|
15352
|
-
updatedAt: import("zod").ZodDate;
|
15353
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15354
|
-
caseId: import("zod").ZodNumber;
|
15355
|
-
entityId: import("zod").ZodString;
|
15356
|
-
entityName: import("zod").ZodString;
|
15357
|
-
contactId: import("zod").ZodNullable<import("zod").ZodString>;
|
15358
|
-
channel: import("zod").ZodNullable<import("zod").ZodString>;
|
15359
|
-
queueId: import("zod").ZodNullable<import("zod").ZodString>;
|
15360
|
-
agentId: import("zod").ZodNullable<import("zod").ZodString>;
|
15361
|
-
direction: import("zod").ZodNullable<import("zod").ZodString>;
|
15362
|
-
startedDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
15363
|
-
handledTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
15364
|
-
firstResponseTime: import("zod").ZodNullable<import("zod").ZodNumber>;
|
15365
|
-
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
15366
|
-
wrapUpForm: import("zod").ZodNullable<import("zod").ZodObject<{
|
15367
|
-
id: import("zod").ZodString;
|
15368
|
-
createdAt: import("zod").ZodDate;
|
15369
|
-
updatedAt: import("zod").ZodDate;
|
15370
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15371
|
-
note: import("zod").ZodNullable<import("zod").ZodString>;
|
15372
|
-
disposition: import("zod").ZodNullable<import("zod").ZodString>;
|
15373
|
-
callFrom: import("zod").ZodNullable<import("zod").ZodString>;
|
15374
|
-
callTo: import("zod").ZodNullable<import("zod").ZodString>;
|
15375
|
-
tags: import("zod").ZodArray<import("zod").ZodObject<{
|
15376
|
-
id: import("zod").ZodString;
|
15377
|
-
createdAt: import("zod").ZodDate;
|
15378
|
-
updatedAt: import("zod").ZodDate;
|
15379
|
-
deletedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15380
|
-
name: import("zod").ZodString;
|
15381
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15382
|
-
id: string;
|
15383
|
-
name: string;
|
15384
|
-
createdAt: Date;
|
15385
|
-
updatedAt: Date;
|
15386
|
-
deletedAt: Date | null;
|
15387
|
-
}, {
|
15388
|
-
id: string;
|
15389
|
-
name: string;
|
15390
|
-
createdAt: Date;
|
15391
|
-
updatedAt: Date;
|
15392
|
-
deletedAt: Date | null;
|
15393
|
-
}>, "many">;
|
15394
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15395
|
-
id: string;
|
15396
|
-
disposition: string | null;
|
15397
|
-
createdAt: Date;
|
15398
|
-
updatedAt: Date;
|
15399
|
-
deletedAt: Date | null;
|
15400
|
-
tags: {
|
15401
|
-
id: string;
|
15402
|
-
name: string;
|
15403
|
-
createdAt: Date;
|
15404
|
-
updatedAt: Date;
|
15405
|
-
deletedAt: Date | null;
|
15406
|
-
}[];
|
15407
|
-
callFrom: string | null;
|
15408
|
-
callTo: string | null;
|
15409
|
-
note: string | null;
|
15410
|
-
}, {
|
15411
|
-
id: string;
|
15412
|
-
disposition: string | null;
|
15413
|
-
createdAt: Date;
|
15414
|
-
updatedAt: Date;
|
15415
|
-
deletedAt: Date | null;
|
15416
|
-
tags: {
|
15417
|
-
id: string;
|
15418
|
-
name: string;
|
15419
|
-
createdAt: Date;
|
15420
|
-
updatedAt: Date;
|
15421
|
-
deletedAt: Date | null;
|
15422
|
-
}[];
|
15423
|
-
callFrom: string | null;
|
15424
|
-
callTo: string | null;
|
15425
|
-
note: string | null;
|
15426
|
-
}>>;
|
15427
|
-
}, "strip", import("zod").ZodTypeAny, {
|
15428
|
-
id: string;
|
15429
|
-
channel: string | null;
|
15430
|
-
disposition: string | null;
|
15431
|
-
direction: string | null;
|
15432
|
-
createdAt: Date;
|
15433
|
-
updatedAt: Date;
|
15434
|
-
deletedAt: Date | null;
|
15435
|
-
entityId: string;
|
15436
|
-
contactId: string | null;
|
15437
|
-
caseId: number;
|
15438
|
-
entityName: string;
|
15439
|
-
queueId: string | null;
|
15440
|
-
agentId: string | null;
|
15441
|
-
startedDate: Date | null;
|
15442
|
-
handledTime: number | null;
|
15443
|
-
firstResponseTime: number | null;
|
15444
|
-
wrapUpForm: {
|
15445
|
-
id: string;
|
15446
|
-
disposition: string | null;
|
15447
|
-
createdAt: Date;
|
15448
|
-
updatedAt: Date;
|
15449
|
-
deletedAt: Date | null;
|
15450
|
-
tags: {
|
15451
|
-
id: string;
|
15452
|
-
name: string;
|
15453
|
-
createdAt: Date;
|
15454
|
-
updatedAt: Date;
|
15455
|
-
deletedAt: Date | null;
|
15456
|
-
}[];
|
15457
|
-
callFrom: string | null;
|
15458
|
-
callTo: string | null;
|
15459
|
-
note: string | null;
|
15460
|
-
} | null;
|
15461
|
-
}, {
|
15462
|
-
id: string;
|
15463
|
-
channel: string | null;
|
15464
|
-
disposition: string | null;
|
15465
|
-
direction: string | null;
|
15466
|
-
createdAt: Date;
|
15467
|
-
updatedAt: Date;
|
15468
|
-
deletedAt: Date | null;
|
15469
|
-
entityId: string;
|
15470
|
-
contactId: string | null;
|
15471
|
-
caseId: number;
|
15472
|
-
entityName: string;
|
15473
|
-
queueId: string | null;
|
15474
|
-
agentId: string | null;
|
15475
|
-
startedDate: Date | null;
|
15476
|
-
handledTime: number | null;
|
15477
|
-
firstResponseTime: number | null;
|
15478
|
-
wrapUpForm: {
|
15479
|
-
id: string;
|
15480
|
-
disposition: string | null;
|
15481
|
-
createdAt: Date;
|
15482
|
-
updatedAt: Date;
|
15483
|
-
deletedAt: Date | null;
|
15484
|
-
tags: {
|
15485
|
-
id: string;
|
15486
|
-
name: string;
|
15487
|
-
createdAt: Date;
|
15488
|
-
updatedAt: Date;
|
15489
|
-
deletedAt: Date | null;
|
15490
|
-
}[];
|
15491
|
-
callFrom: string | null;
|
15492
|
-
callTo: string | null;
|
15493
|
-
note: string | null;
|
15494
|
-
} | null;
|
15495
|
-
}>;
|
15496
15421
|
}, "strip", import("zod").ZodTypeAny, {
|
15497
15422
|
id: string;
|
15498
15423
|
direction: "incoming" | "outgoing" | "system";
|
@@ -15709,41 +15634,6 @@ export declare const apiContract: {
|
|
15709
15634
|
telephonySignature: string | null;
|
15710
15635
|
} | undefined;
|
15711
15636
|
};
|
15712
|
-
cxlog: {
|
15713
|
-
id: string;
|
15714
|
-
channel: string | null;
|
15715
|
-
disposition: string | null;
|
15716
|
-
direction: string | null;
|
15717
|
-
createdAt: Date;
|
15718
|
-
updatedAt: Date;
|
15719
|
-
deletedAt: Date | null;
|
15720
|
-
entityId: string;
|
15721
|
-
contactId: string | null;
|
15722
|
-
caseId: number;
|
15723
|
-
entityName: string;
|
15724
|
-
queueId: string | null;
|
15725
|
-
agentId: string | null;
|
15726
|
-
startedDate: Date | null;
|
15727
|
-
handledTime: number | null;
|
15728
|
-
firstResponseTime: number | null;
|
15729
|
-
wrapUpForm: {
|
15730
|
-
id: string;
|
15731
|
-
disposition: string | null;
|
15732
|
-
createdAt: Date;
|
15733
|
-
updatedAt: Date;
|
15734
|
-
deletedAt: Date | null;
|
15735
|
-
tags: {
|
15736
|
-
id: string;
|
15737
|
-
name: string;
|
15738
|
-
createdAt: Date;
|
15739
|
-
updatedAt: Date;
|
15740
|
-
deletedAt: Date | null;
|
15741
|
-
}[];
|
15742
|
-
callFrom: string | null;
|
15743
|
-
callTo: string | null;
|
15744
|
-
note: string | null;
|
15745
|
-
} | null;
|
15746
|
-
};
|
15747
15637
|
channel?: {
|
15748
15638
|
id?: string | undefined;
|
15749
15639
|
createdAt?: Date | undefined;
|
@@ -16023,41 +15913,6 @@ export declare const apiContract: {
|
|
16023
15913
|
telephonySignature: string | null;
|
16024
15914
|
} | undefined;
|
16025
15915
|
};
|
16026
|
-
cxlog: {
|
16027
|
-
id: string;
|
16028
|
-
channel: string | null;
|
16029
|
-
disposition: string | null;
|
16030
|
-
direction: string | null;
|
16031
|
-
createdAt: Date;
|
16032
|
-
updatedAt: Date;
|
16033
|
-
deletedAt: Date | null;
|
16034
|
-
entityId: string;
|
16035
|
-
contactId: string | null;
|
16036
|
-
caseId: number;
|
16037
|
-
entityName: string;
|
16038
|
-
queueId: string | null;
|
16039
|
-
agentId: string | null;
|
16040
|
-
startedDate: Date | null;
|
16041
|
-
handledTime: number | null;
|
16042
|
-
firstResponseTime: number | null;
|
16043
|
-
wrapUpForm: {
|
16044
|
-
id: string;
|
16045
|
-
disposition: string | null;
|
16046
|
-
createdAt: Date;
|
16047
|
-
updatedAt: Date;
|
16048
|
-
deletedAt: Date | null;
|
16049
|
-
tags: {
|
16050
|
-
id: string;
|
16051
|
-
name: string;
|
16052
|
-
createdAt: Date;
|
16053
|
-
updatedAt: Date;
|
16054
|
-
deletedAt: Date | null;
|
16055
|
-
}[];
|
16056
|
-
callFrom: string | null;
|
16057
|
-
callTo: string | null;
|
16058
|
-
note: string | null;
|
16059
|
-
} | null;
|
16060
|
-
};
|
16061
15916
|
channel?: {
|
16062
15917
|
id?: string | undefined;
|
16063
15918
|
createdAt?: Date | undefined;
|
@@ -17501,41 +17356,6 @@ export declare const apiContract: {
|
|
17501
17356
|
telephonySignature: string | null;
|
17502
17357
|
} | undefined;
|
17503
17358
|
};
|
17504
|
-
cxlog: {
|
17505
|
-
id: string;
|
17506
|
-
channel: string | null;
|
17507
|
-
disposition: string | null;
|
17508
|
-
direction: string | null;
|
17509
|
-
createdAt: Date;
|
17510
|
-
updatedAt: Date;
|
17511
|
-
deletedAt: Date | null;
|
17512
|
-
entityId: string;
|
17513
|
-
contactId: string | null;
|
17514
|
-
caseId: number;
|
17515
|
-
entityName: string;
|
17516
|
-
queueId: string | null;
|
17517
|
-
agentId: string | null;
|
17518
|
-
startedDate: Date | null;
|
17519
|
-
handledTime: number | null;
|
17520
|
-
firstResponseTime: number | null;
|
17521
|
-
wrapUpForm: {
|
17522
|
-
id: string;
|
17523
|
-
disposition: string | null;
|
17524
|
-
createdAt: Date;
|
17525
|
-
updatedAt: Date;
|
17526
|
-
deletedAt: Date | null;
|
17527
|
-
tags: {
|
17528
|
-
id: string;
|
17529
|
-
name: string;
|
17530
|
-
createdAt: Date;
|
17531
|
-
updatedAt: Date;
|
17532
|
-
deletedAt: Date | null;
|
17533
|
-
}[];
|
17534
|
-
callFrom: string | null;
|
17535
|
-
callTo: string | null;
|
17536
|
-
note: string | null;
|
17537
|
-
} | null;
|
17538
|
-
};
|
17539
17359
|
channel?: {
|
17540
17360
|
id?: string | undefined;
|
17541
17361
|
createdAt?: Date | undefined;
|
@@ -18031,41 +17851,6 @@ export declare const apiContract: {
|
|
18031
17851
|
telephonySignature: string | null;
|
18032
17852
|
} | undefined;
|
18033
17853
|
};
|
18034
|
-
cxlog: {
|
18035
|
-
id: string;
|
18036
|
-
channel: string | null;
|
18037
|
-
disposition: string | null;
|
18038
|
-
direction: string | null;
|
18039
|
-
createdAt: Date;
|
18040
|
-
updatedAt: Date;
|
18041
|
-
deletedAt: Date | null;
|
18042
|
-
entityId: string;
|
18043
|
-
contactId: string | null;
|
18044
|
-
caseId: number;
|
18045
|
-
entityName: string;
|
18046
|
-
queueId: string | null;
|
18047
|
-
agentId: string | null;
|
18048
|
-
startedDate: Date | null;
|
18049
|
-
handledTime: number | null;
|
18050
|
-
firstResponseTime: number | null;
|
18051
|
-
wrapUpForm: {
|
18052
|
-
id: string;
|
18053
|
-
disposition: string | null;
|
18054
|
-
createdAt: Date;
|
18055
|
-
updatedAt: Date;
|
18056
|
-
deletedAt: Date | null;
|
18057
|
-
tags: {
|
18058
|
-
id: string;
|
18059
|
-
name: string;
|
18060
|
-
createdAt: Date;
|
18061
|
-
updatedAt: Date;
|
18062
|
-
deletedAt: Date | null;
|
18063
|
-
}[];
|
18064
|
-
callFrom: string | null;
|
18065
|
-
callTo: string | null;
|
18066
|
-
note: string | null;
|
18067
|
-
} | null;
|
18068
|
-
};
|
18069
17854
|
channel?: {
|
18070
17855
|
id?: string | undefined;
|
18071
17856
|
createdAt?: Date | undefined;
|
@@ -18567,41 +18352,6 @@ export declare const apiContract: {
|
|
18567
18352
|
telephonySignature: string | null;
|
18568
18353
|
} | undefined;
|
18569
18354
|
};
|
18570
|
-
cxlog: {
|
18571
|
-
id: string;
|
18572
|
-
channel: string | null;
|
18573
|
-
disposition: string | null;
|
18574
|
-
direction: string | null;
|
18575
|
-
createdAt: Date;
|
18576
|
-
updatedAt: Date;
|
18577
|
-
deletedAt: Date | null;
|
18578
|
-
entityId: string;
|
18579
|
-
contactId: string | null;
|
18580
|
-
caseId: number;
|
18581
|
-
entityName: string;
|
18582
|
-
queueId: string | null;
|
18583
|
-
agentId: string | null;
|
18584
|
-
startedDate: Date | null;
|
18585
|
-
handledTime: number | null;
|
18586
|
-
firstResponseTime: number | null;
|
18587
|
-
wrapUpForm: {
|
18588
|
-
id: string;
|
18589
|
-
disposition: string | null;
|
18590
|
-
createdAt: Date;
|
18591
|
-
updatedAt: Date;
|
18592
|
-
deletedAt: Date | null;
|
18593
|
-
tags: {
|
18594
|
-
id: string;
|
18595
|
-
name: string;
|
18596
|
-
createdAt: Date;
|
18597
|
-
updatedAt: Date;
|
18598
|
-
deletedAt: Date | null;
|
18599
|
-
}[];
|
18600
|
-
callFrom: string | null;
|
18601
|
-
callTo: string | null;
|
18602
|
-
note: string | null;
|
18603
|
-
} | null;
|
18604
|
-
};
|
18605
18355
|
channel?: {
|
18606
18356
|
id?: string | undefined;
|
18607
18357
|
createdAt?: Date | undefined;
|
@@ -19103,41 +18853,6 @@ export declare const apiContract: {
|
|
19103
18853
|
telephonySignature: string | null;
|
19104
18854
|
} | undefined;
|
19105
18855
|
};
|
19106
|
-
cxlog: {
|
19107
|
-
id: string;
|
19108
|
-
channel: string | null;
|
19109
|
-
disposition: string | null;
|
19110
|
-
direction: string | null;
|
19111
|
-
createdAt: Date;
|
19112
|
-
updatedAt: Date;
|
19113
|
-
deletedAt: Date | null;
|
19114
|
-
entityId: string;
|
19115
|
-
contactId: string | null;
|
19116
|
-
caseId: number;
|
19117
|
-
entityName: string;
|
19118
|
-
queueId: string | null;
|
19119
|
-
agentId: string | null;
|
19120
|
-
startedDate: Date | null;
|
19121
|
-
handledTime: number | null;
|
19122
|
-
firstResponseTime: number | null;
|
19123
|
-
wrapUpForm: {
|
19124
|
-
id: string;
|
19125
|
-
disposition: string | null;
|
19126
|
-
createdAt: Date;
|
19127
|
-
updatedAt: Date;
|
19128
|
-
deletedAt: Date | null;
|
19129
|
-
tags: {
|
19130
|
-
id: string;
|
19131
|
-
name: string;
|
19132
|
-
createdAt: Date;
|
19133
|
-
updatedAt: Date;
|
19134
|
-
deletedAt: Date | null;
|
19135
|
-
}[];
|
19136
|
-
callFrom: string | null;
|
19137
|
-
callTo: string | null;
|
19138
|
-
note: string | null;
|
19139
|
-
} | null;
|
19140
|
-
};
|
19141
18856
|
channel?: {
|
19142
18857
|
id?: string | undefined;
|
19143
18858
|
createdAt?: Date | undefined;
|
@@ -19290,12 +19005,18 @@ export declare const apiContract: {
|
|
19290
19005
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
19291
19006
|
'x-tenant': import("zod").ZodString;
|
19292
19007
|
authorization: import("zod").ZodString;
|
19008
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
19009
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
19293
19010
|
}, "strip", import("zod").ZodTypeAny, {
|
19294
19011
|
'x-tenant': string;
|
19295
19012
|
authorization: string;
|
19013
|
+
'x-client-timezone': string;
|
19014
|
+
'x-code'?: string | undefined;
|
19296
19015
|
}, {
|
19297
19016
|
'x-tenant': string;
|
19298
19017
|
authorization: string;
|
19018
|
+
'x-code'?: string | undefined;
|
19019
|
+
'x-client-timezone'?: string | undefined;
|
19299
19020
|
}>>>;
|
19300
19021
|
};
|
19301
19022
|
};
|
@@ -19492,12 +19213,18 @@ export declare const apiContract: {
|
|
19492
19213
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
19493
19214
|
'x-tenant': import("zod").ZodString;
|
19494
19215
|
authorization: import("zod").ZodString;
|
19216
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
19217
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
19495
19218
|
}, "strip", import("zod").ZodTypeAny, {
|
19496
19219
|
'x-tenant': string;
|
19497
19220
|
authorization: string;
|
19221
|
+
'x-client-timezone': string;
|
19222
|
+
'x-code'?: string | undefined;
|
19498
19223
|
}, {
|
19499
19224
|
'x-tenant': string;
|
19500
19225
|
authorization: string;
|
19226
|
+
'x-code'?: string | undefined;
|
19227
|
+
'x-client-timezone'?: string | undefined;
|
19501
19228
|
}>>>;
|
19502
19229
|
};
|
19503
19230
|
getQueueCallDashboardData: {
|
@@ -19549,7 +19276,7 @@ export declare const apiContract: {
|
|
19549
19276
|
totalMaximumRingDuration: string;
|
19550
19277
|
}>;
|
19551
19278
|
telephonyQueueCallCountListByQueueNumber: import("zod").ZodArray<import("zod").ZodObject<{
|
19552
|
-
queueNumber: import("zod").
|
19279
|
+
queueNumber: import("zod").ZodString;
|
19553
19280
|
queueName: import("zod").ZodString;
|
19554
19281
|
yeastarQueueCallCountList: import("zod").ZodObject<{
|
19555
19282
|
totalQueueCall: import("zod").ZodString;
|
@@ -19587,7 +19314,7 @@ export declare const apiContract: {
|
|
19587
19314
|
}>;
|
19588
19315
|
}, "strip", import("zod").ZodTypeAny, {
|
19589
19316
|
queueName: string;
|
19590
|
-
queueNumber:
|
19317
|
+
queueNumber: string;
|
19591
19318
|
yeastarQueueCallCountList: {
|
19592
19319
|
totalQueueCall: string;
|
19593
19320
|
totalMissedQueueCall: string;
|
@@ -19602,7 +19329,7 @@ export declare const apiContract: {
|
|
19602
19329
|
};
|
19603
19330
|
}, {
|
19604
19331
|
queueName: string;
|
19605
|
-
queueNumber:
|
19332
|
+
queueNumber: string;
|
19606
19333
|
yeastarQueueCallCountList: {
|
19607
19334
|
totalQueueCall: string;
|
19608
19335
|
totalMissedQueueCall: string;
|
@@ -19631,7 +19358,7 @@ export declare const apiContract: {
|
|
19631
19358
|
};
|
19632
19359
|
telephonyQueueCallCountListByQueueNumber: {
|
19633
19360
|
queueName: string;
|
19634
|
-
queueNumber:
|
19361
|
+
queueNumber: string;
|
19635
19362
|
yeastarQueueCallCountList: {
|
19636
19363
|
totalQueueCall: string;
|
19637
19364
|
totalMissedQueueCall: string;
|
@@ -19660,7 +19387,7 @@ export declare const apiContract: {
|
|
19660
19387
|
};
|
19661
19388
|
telephonyQueueCallCountListByQueueNumber: {
|
19662
19389
|
queueName: string;
|
19663
|
-
queueNumber:
|
19390
|
+
queueNumber: string;
|
19664
19391
|
yeastarQueueCallCountList: {
|
19665
19392
|
totalQueueCall: string;
|
19666
19393
|
totalMissedQueueCall: string;
|
@@ -19692,7 +19419,7 @@ export declare const apiContract: {
|
|
19692
19419
|
};
|
19693
19420
|
telephonyQueueCallCountListByQueueNumber: {
|
19694
19421
|
queueName: string;
|
19695
|
-
queueNumber:
|
19422
|
+
queueNumber: string;
|
19696
19423
|
yeastarQueueCallCountList: {
|
19697
19424
|
totalQueueCall: string;
|
19698
19425
|
totalMissedQueueCall: string;
|
@@ -19724,7 +19451,7 @@ export declare const apiContract: {
|
|
19724
19451
|
};
|
19725
19452
|
telephonyQueueCallCountListByQueueNumber: {
|
19726
19453
|
queueName: string;
|
19727
|
-
queueNumber:
|
19454
|
+
queueNumber: string;
|
19728
19455
|
yeastarQueueCallCountList: {
|
19729
19456
|
totalQueueCall: string;
|
19730
19457
|
totalMissedQueueCall: string;
|
@@ -19758,16 +19485,22 @@ export declare const apiContract: {
|
|
19758
19485
|
error?: any;
|
19759
19486
|
}>;
|
19760
19487
|
};
|
19761
|
-
path: "dashboard/
|
19488
|
+
path: "dashboard/queue_call_dashboard";
|
19762
19489
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
19763
19490
|
'x-tenant': import("zod").ZodString;
|
19764
19491
|
authorization: import("zod").ZodString;
|
19492
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
19493
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
19765
19494
|
}, "strip", import("zod").ZodTypeAny, {
|
19766
19495
|
'x-tenant': string;
|
19767
19496
|
authorization: string;
|
19497
|
+
'x-client-timezone': string;
|
19498
|
+
'x-code'?: string | undefined;
|
19768
19499
|
}, {
|
19769
19500
|
'x-tenant': string;
|
19770
19501
|
authorization: string;
|
19502
|
+
'x-code'?: string | undefined;
|
19503
|
+
'x-client-timezone'?: string | undefined;
|
19771
19504
|
}>>>;
|
19772
19505
|
};
|
19773
19506
|
getQueueLiveCallCountList: {
|
@@ -19860,16 +19593,22 @@ export declare const apiContract: {
|
|
19860
19593
|
error?: any;
|
19861
19594
|
}>;
|
19862
19595
|
};
|
19863
|
-
path: "dashboard/
|
19596
|
+
path: "dashboard/queue_live_call_count_list";
|
19864
19597
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
19865
19598
|
'x-tenant': import("zod").ZodString;
|
19866
19599
|
authorization: import("zod").ZodString;
|
19600
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
19601
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
19867
19602
|
}, "strip", import("zod").ZodTypeAny, {
|
19868
19603
|
'x-tenant': string;
|
19869
19604
|
authorization: string;
|
19605
|
+
'x-client-timezone': string;
|
19606
|
+
'x-code'?: string | undefined;
|
19870
19607
|
}, {
|
19871
19608
|
'x-tenant': string;
|
19872
19609
|
authorization: string;
|
19610
|
+
'x-code'?: string | undefined;
|
19611
|
+
'x-client-timezone'?: string | undefined;
|
19873
19612
|
}>>>;
|
19874
19613
|
};
|
19875
19614
|
getQueryCalls: {
|
@@ -20048,12 +19787,18 @@ export declare const apiContract: {
|
|
20048
19787
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20049
19788
|
'x-tenant': import("zod").ZodString;
|
20050
19789
|
authorization: import("zod").ZodString;
|
19790
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
19791
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20051
19792
|
}, "strip", import("zod").ZodTypeAny, {
|
20052
19793
|
'x-tenant': string;
|
20053
19794
|
authorization: string;
|
19795
|
+
'x-client-timezone': string;
|
19796
|
+
'x-code'?: string | undefined;
|
20054
19797
|
}, {
|
20055
19798
|
'x-tenant': string;
|
20056
19799
|
authorization: string;
|
19800
|
+
'x-code'?: string | undefined;
|
19801
|
+
'x-client-timezone'?: string | undefined;
|
20057
19802
|
}>>>;
|
20058
19803
|
};
|
20059
19804
|
getTicketDashboardData: {
|
@@ -20161,12 +19906,18 @@ export declare const apiContract: {
|
|
20161
19906
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20162
19907
|
'x-tenant': import("zod").ZodString;
|
20163
19908
|
authorization: import("zod").ZodString;
|
19909
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
19910
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20164
19911
|
}, "strip", import("zod").ZodTypeAny, {
|
20165
19912
|
'x-tenant': string;
|
20166
19913
|
authorization: string;
|
19914
|
+
'x-client-timezone': string;
|
19915
|
+
'x-code'?: string | undefined;
|
20167
19916
|
}, {
|
20168
19917
|
'x-tenant': string;
|
20169
19918
|
authorization: string;
|
19919
|
+
'x-code'?: string | undefined;
|
19920
|
+
'x-client-timezone'?: string | undefined;
|
20170
19921
|
}>>>;
|
20171
19922
|
};
|
20172
19923
|
getExpiredTicketData: {
|
@@ -20229,12 +19980,18 @@ export declare const apiContract: {
|
|
20229
19980
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20230
19981
|
'x-tenant': import("zod").ZodString;
|
20231
19982
|
authorization: import("zod").ZodString;
|
19983
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
19984
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20232
19985
|
}, "strip", import("zod").ZodTypeAny, {
|
20233
19986
|
'x-tenant': string;
|
20234
19987
|
authorization: string;
|
19988
|
+
'x-client-timezone': string;
|
19989
|
+
'x-code'?: string | undefined;
|
20235
19990
|
}, {
|
20236
19991
|
'x-tenant': string;
|
20237
19992
|
authorization: string;
|
19993
|
+
'x-code'?: string | undefined;
|
19994
|
+
'x-client-timezone'?: string | undefined;
|
20238
19995
|
}>>>;
|
20239
19996
|
};
|
20240
19997
|
getTicketTagData: {
|
@@ -20293,12 +20050,18 @@ export declare const apiContract: {
|
|
20293
20050
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20294
20051
|
'x-tenant': import("zod").ZodString;
|
20295
20052
|
authorization: import("zod").ZodString;
|
20053
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20054
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20296
20055
|
}, "strip", import("zod").ZodTypeAny, {
|
20297
20056
|
'x-tenant': string;
|
20298
20057
|
authorization: string;
|
20058
|
+
'x-client-timezone': string;
|
20059
|
+
'x-code'?: string | undefined;
|
20299
20060
|
}, {
|
20300
20061
|
'x-tenant': string;
|
20301
20062
|
authorization: string;
|
20063
|
+
'x-code'?: string | undefined;
|
20064
|
+
'x-client-timezone'?: string | undefined;
|
20302
20065
|
}>>>;
|
20303
20066
|
};
|
20304
20067
|
getMessageChannelData: {
|
@@ -20346,12 +20109,18 @@ export declare const apiContract: {
|
|
20346
20109
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20347
20110
|
'x-tenant': import("zod").ZodString;
|
20348
20111
|
authorization: import("zod").ZodString;
|
20112
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20113
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20349
20114
|
}, "strip", import("zod").ZodTypeAny, {
|
20350
20115
|
'x-tenant': string;
|
20351
20116
|
authorization: string;
|
20117
|
+
'x-client-timezone': string;
|
20118
|
+
'x-code'?: string | undefined;
|
20352
20119
|
}, {
|
20353
20120
|
'x-tenant': string;
|
20354
20121
|
authorization: string;
|
20122
|
+
'x-code'?: string | undefined;
|
20123
|
+
'x-client-timezone'?: string | undefined;
|
20355
20124
|
}>>>;
|
20356
20125
|
};
|
20357
20126
|
getMessageTagData: {
|
@@ -20410,12 +20179,18 @@ export declare const apiContract: {
|
|
20410
20179
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20411
20180
|
'x-tenant': import("zod").ZodString;
|
20412
20181
|
authorization: import("zod").ZodString;
|
20182
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20183
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20413
20184
|
}, "strip", import("zod").ZodTypeAny, {
|
20414
20185
|
'x-tenant': string;
|
20415
20186
|
authorization: string;
|
20187
|
+
'x-client-timezone': string;
|
20188
|
+
'x-code'?: string | undefined;
|
20416
20189
|
}, {
|
20417
20190
|
'x-tenant': string;
|
20418
20191
|
authorization: string;
|
20192
|
+
'x-code'?: string | undefined;
|
20193
|
+
'x-client-timezone'?: string | undefined;
|
20419
20194
|
}>>>;
|
20420
20195
|
};
|
20421
20196
|
getCallTagData: {
|
@@ -20474,12 +20249,18 @@ export declare const apiContract: {
|
|
20474
20249
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20475
20250
|
'x-tenant': import("zod").ZodString;
|
20476
20251
|
authorization: import("zod").ZodString;
|
20252
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20253
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20477
20254
|
}, "strip", import("zod").ZodTypeAny, {
|
20478
20255
|
'x-tenant': string;
|
20479
20256
|
authorization: string;
|
20257
|
+
'x-client-timezone': string;
|
20258
|
+
'x-code'?: string | undefined;
|
20480
20259
|
}, {
|
20481
20260
|
'x-tenant': string;
|
20482
20261
|
authorization: string;
|
20262
|
+
'x-code'?: string | undefined;
|
20263
|
+
'x-client-timezone'?: string | undefined;
|
20483
20264
|
}>>>;
|
20484
20265
|
};
|
20485
20266
|
getCallResultData: {
|
@@ -20536,12 +20317,18 @@ export declare const apiContract: {
|
|
20536
20317
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20537
20318
|
'x-tenant': import("zod").ZodString;
|
20538
20319
|
authorization: import("zod").ZodString;
|
20320
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20321
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20539
20322
|
}, "strip", import("zod").ZodTypeAny, {
|
20540
20323
|
'x-tenant': string;
|
20541
20324
|
authorization: string;
|
20325
|
+
'x-client-timezone': string;
|
20326
|
+
'x-code'?: string | undefined;
|
20542
20327
|
}, {
|
20543
20328
|
'x-tenant': string;
|
20544
20329
|
authorization: string;
|
20330
|
+
'x-code'?: string | undefined;
|
20331
|
+
'x-client-timezone'?: string | undefined;
|
20545
20332
|
}>>>;
|
20546
20333
|
};
|
20547
20334
|
getConversationActivity: {
|
@@ -20557,7 +20344,7 @@ export declare const apiContract: {
|
|
20557
20344
|
responses: {
|
20558
20345
|
200: import("zod").ZodObject<{
|
20559
20346
|
requestId: import("zod").ZodString;
|
20560
|
-
|
20347
|
+
conversationActivity: import("zod").ZodObject<{
|
20561
20348
|
newContactCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
20562
20349
|
oldContactCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
20563
20350
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -20569,13 +20356,13 @@ export declare const apiContract: {
|
|
20569
20356
|
}>;
|
20570
20357
|
}, "strip", import("zod").ZodTypeAny, {
|
20571
20358
|
requestId: string;
|
20572
|
-
|
20359
|
+
conversationActivity: {
|
20573
20360
|
newContactCount: number | null;
|
20574
20361
|
oldContactCount: number | null;
|
20575
20362
|
};
|
20576
20363
|
}, {
|
20577
20364
|
requestId: string;
|
20578
|
-
|
20365
|
+
conversationActivity: {
|
20579
20366
|
newContactCount: number | null;
|
20580
20367
|
oldContactCount: number | null;
|
20581
20368
|
};
|
@@ -20591,16 +20378,22 @@ export declare const apiContract: {
|
|
20591
20378
|
error?: any;
|
20592
20379
|
}>;
|
20593
20380
|
};
|
20594
|
-
path: "dashboard/message/
|
20381
|
+
path: "dashboard/message/conversation-activities";
|
20595
20382
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20596
20383
|
'x-tenant': import("zod").ZodString;
|
20597
20384
|
authorization: import("zod").ZodString;
|
20385
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20386
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20598
20387
|
}, "strip", import("zod").ZodTypeAny, {
|
20599
20388
|
'x-tenant': string;
|
20600
20389
|
authorization: string;
|
20390
|
+
'x-client-timezone': string;
|
20391
|
+
'x-code'?: string | undefined;
|
20601
20392
|
}, {
|
20602
20393
|
'x-tenant': string;
|
20603
20394
|
authorization: string;
|
20395
|
+
'x-code'?: string | undefined;
|
20396
|
+
'x-client-timezone'?: string | undefined;
|
20604
20397
|
}>>>;
|
20605
20398
|
};
|
20606
20399
|
getRoomStatusCountByStatus: {
|
@@ -20616,7 +20409,7 @@ export declare const apiContract: {
|
|
20616
20409
|
responses: {
|
20617
20410
|
200: import("zod").ZodObject<{
|
20618
20411
|
requestId: import("zod").ZodString;
|
20619
|
-
|
20412
|
+
roomStatusCountByStatus: import("zod").ZodObject<{
|
20620
20413
|
total: import("zod").ZodNullable<import("zod").ZodNumber>;
|
20621
20414
|
closed: import("zod").ZodNullable<import("zod").ZodNumber>;
|
20622
20415
|
unassignedOpen: import("zod").ZodNullable<import("zod").ZodNumber>;
|
@@ -20634,7 +20427,7 @@ export declare const apiContract: {
|
|
20634
20427
|
}>;
|
20635
20428
|
}, "strip", import("zod").ZodTypeAny, {
|
20636
20429
|
requestId: string;
|
20637
|
-
|
20430
|
+
roomStatusCountByStatus: {
|
20638
20431
|
total: number | null;
|
20639
20432
|
closed: number | null;
|
20640
20433
|
unassignedOpen: number | null;
|
@@ -20642,7 +20435,7 @@ export declare const apiContract: {
|
|
20642
20435
|
};
|
20643
20436
|
}, {
|
20644
20437
|
requestId: string;
|
20645
|
-
|
20438
|
+
roomStatusCountByStatus: {
|
20646
20439
|
total: number | null;
|
20647
20440
|
closed: number | null;
|
20648
20441
|
unassignedOpen: number | null;
|
@@ -20664,12 +20457,18 @@ export declare const apiContract: {
|
|
20664
20457
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20665
20458
|
'x-tenant': import("zod").ZodString;
|
20666
20459
|
authorization: import("zod").ZodString;
|
20460
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20461
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20667
20462
|
}, "strip", import("zod").ZodTypeAny, {
|
20668
20463
|
'x-tenant': string;
|
20669
20464
|
authorization: string;
|
20465
|
+
'x-client-timezone': string;
|
20466
|
+
'x-code'?: string | undefined;
|
20670
20467
|
}, {
|
20671
20468
|
'x-tenant': string;
|
20672
20469
|
authorization: string;
|
20470
|
+
'x-code'?: string | undefined;
|
20471
|
+
'x-client-timezone'?: string | undefined;
|
20673
20472
|
}>>>;
|
20674
20473
|
};
|
20675
20474
|
getRoomStatusAverage: {
|
@@ -20685,7 +20484,7 @@ export declare const apiContract: {
|
|
20685
20484
|
responses: {
|
20686
20485
|
200: import("zod").ZodObject<{
|
20687
20486
|
requestId: import("zod").ZodString;
|
20688
|
-
|
20487
|
+
roomStatusAverage: import("zod").ZodObject<{
|
20689
20488
|
selectedWeekAvgByDay: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
20690
20489
|
day: import("zod").ZodNullable<import("zod").ZodString>;
|
20691
20490
|
avgResolutionTime: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -20750,7 +20549,7 @@ export declare const apiContract: {
|
|
20750
20549
|
}>;
|
20751
20550
|
}, "strip", import("zod").ZodTypeAny, {
|
20752
20551
|
requestId: string;
|
20753
|
-
|
20552
|
+
roomStatusAverage: {
|
20754
20553
|
selectedWeekAvgByDay?: {
|
20755
20554
|
day: string | null;
|
20756
20555
|
avgResolutionTime: string | null;
|
@@ -20767,7 +20566,7 @@ export declare const apiContract: {
|
|
20767
20566
|
};
|
20768
20567
|
}, {
|
20769
20568
|
requestId: string;
|
20770
|
-
|
20569
|
+
roomStatusAverage: {
|
20771
20570
|
selectedWeekAvgByDay?: {
|
20772
20571
|
day: string | null;
|
20773
20572
|
avgResolutionTime: string | null;
|
@@ -20798,12 +20597,18 @@ export declare const apiContract: {
|
|
20798
20597
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20799
20598
|
'x-tenant': import("zod").ZodString;
|
20800
20599
|
authorization: import("zod").ZodString;
|
20600
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20601
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20801
20602
|
}, "strip", import("zod").ZodTypeAny, {
|
20802
20603
|
'x-tenant': string;
|
20803
20604
|
authorization: string;
|
20605
|
+
'x-client-timezone': string;
|
20606
|
+
'x-code'?: string | undefined;
|
20804
20607
|
}, {
|
20805
20608
|
'x-tenant': string;
|
20806
20609
|
authorization: string;
|
20610
|
+
'x-code'?: string | undefined;
|
20611
|
+
'x-client-timezone'?: string | undefined;
|
20807
20612
|
}>>>;
|
20808
20613
|
};
|
20809
20614
|
getMessagePlatformData: {
|
@@ -20923,12 +20728,18 @@ export declare const apiContract: {
|
|
20923
20728
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20924
20729
|
'x-tenant': import("zod").ZodString;
|
20925
20730
|
authorization: import("zod").ZodString;
|
20731
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20732
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
20926
20733
|
}, "strip", import("zod").ZodTypeAny, {
|
20927
20734
|
'x-tenant': string;
|
20928
20735
|
authorization: string;
|
20736
|
+
'x-client-timezone': string;
|
20737
|
+
'x-code'?: string | undefined;
|
20929
20738
|
}, {
|
20930
20739
|
'x-tenant': string;
|
20931
20740
|
authorization: string;
|
20741
|
+
'x-code'?: string | undefined;
|
20742
|
+
'x-client-timezone'?: string | undefined;
|
20932
20743
|
}>>>;
|
20933
20744
|
};
|
20934
20745
|
getMessageRoomStatusDispositionData: {
|
@@ -20944,7 +20755,7 @@ export declare const apiContract: {
|
|
20944
20755
|
responses: {
|
20945
20756
|
200: import("zod").ZodObject<{
|
20946
20757
|
requestId: import("zod").ZodString;
|
20947
|
-
|
20758
|
+
messageRoomStatusDispositionData: import("zod").ZodObject<{
|
20948
20759
|
resolvedDispositionCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
20949
20760
|
prankDispositionCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
20950
20761
|
followUpDispositionCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
@@ -20965,7 +20776,7 @@ export declare const apiContract: {
|
|
20965
20776
|
}>;
|
20966
20777
|
}, "strip", import("zod").ZodTypeAny, {
|
20967
20778
|
requestId: string;
|
20968
|
-
|
20779
|
+
messageRoomStatusDispositionData: {
|
20969
20780
|
resolvedDispositionCount: number | null;
|
20970
20781
|
prankDispositionCount: number | null;
|
20971
20782
|
followUpDispositionCount: number | null;
|
@@ -20974,7 +20785,7 @@ export declare const apiContract: {
|
|
20974
20785
|
};
|
20975
20786
|
}, {
|
20976
20787
|
requestId: string;
|
20977
|
-
|
20788
|
+
messageRoomStatusDispositionData: {
|
20978
20789
|
resolvedDispositionCount: number | null;
|
20979
20790
|
prankDispositionCount: number | null;
|
20980
20791
|
followUpDispositionCount: number | null;
|
@@ -20997,12 +20808,18 @@ export declare const apiContract: {
|
|
20997
20808
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
20998
20809
|
'x-tenant': import("zod").ZodString;
|
20999
20810
|
authorization: import("zod").ZodString;
|
20811
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20812
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
21000
20813
|
}, "strip", import("zod").ZodTypeAny, {
|
21001
20814
|
'x-tenant': string;
|
21002
20815
|
authorization: string;
|
20816
|
+
'x-client-timezone': string;
|
20817
|
+
'x-code'?: string | undefined;
|
21003
20818
|
}, {
|
21004
20819
|
'x-tenant': string;
|
21005
20820
|
authorization: string;
|
20821
|
+
'x-code'?: string | undefined;
|
20822
|
+
'x-client-timezone'?: string | undefined;
|
21006
20823
|
}>>>;
|
21007
20824
|
};
|
21008
20825
|
getIncomingMessageByPlatform: {
|
@@ -21018,7 +20835,7 @@ export declare const apiContract: {
|
|
21018
20835
|
responses: {
|
21019
20836
|
200: import("zod").ZodObject<{
|
21020
20837
|
requestId: import("zod").ZodString;
|
21021
|
-
|
20838
|
+
incomingMessageByPlatform: import("zod").ZodArray<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
21022
20839
|
platform: import("zod").ZodNullable<import("zod").ZodString>;
|
21023
20840
|
hour: import("zod").ZodNullable<import("zod").ZodString>;
|
21024
20841
|
messageCount: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -21033,14 +20850,14 @@ export declare const apiContract: {
|
|
21033
20850
|
}>>>, "many">;
|
21034
20851
|
}, "strip", import("zod").ZodTypeAny, {
|
21035
20852
|
requestId: string;
|
21036
|
-
|
20853
|
+
incomingMessageByPlatform: ({
|
21037
20854
|
platform: string | null;
|
21038
20855
|
hour: string | null;
|
21039
20856
|
messageCount: string | null;
|
21040
20857
|
} | null | undefined)[];
|
21041
20858
|
}, {
|
21042
20859
|
requestId: string;
|
21043
|
-
|
20860
|
+
incomingMessageByPlatform: ({
|
21044
20861
|
platform: string | null;
|
21045
20862
|
hour: string | null;
|
21046
20863
|
messageCount: string | null;
|
@@ -21061,12 +20878,18 @@ export declare const apiContract: {
|
|
21061
20878
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
21062
20879
|
'x-tenant': import("zod").ZodString;
|
21063
20880
|
authorization: import("zod").ZodString;
|
20881
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20882
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
21064
20883
|
}, "strip", import("zod").ZodTypeAny, {
|
21065
20884
|
'x-tenant': string;
|
21066
20885
|
authorization: string;
|
20886
|
+
'x-client-timezone': string;
|
20887
|
+
'x-code'?: string | undefined;
|
21067
20888
|
}, {
|
21068
20889
|
'x-tenant': string;
|
21069
20890
|
authorization: string;
|
20891
|
+
'x-code'?: string | undefined;
|
20892
|
+
'x-client-timezone'?: string | undefined;
|
21070
20893
|
}>>>;
|
21071
20894
|
};
|
21072
20895
|
getTotalIncomingMessageData: {
|
@@ -21082,7 +20905,7 @@ export declare const apiContract: {
|
|
21082
20905
|
responses: {
|
21083
20906
|
200: import("zod").ZodObject<{
|
21084
20907
|
requestId: import("zod").ZodString;
|
21085
|
-
|
20908
|
+
totalIncomingMessageData: import("zod").ZodArray<import("zod").ZodNullable<import("zod").ZodObject<{
|
21086
20909
|
name: import("zod").ZodString;
|
21087
20910
|
data: import("zod").ZodArray<import("zod").ZodNumber, "many">;
|
21088
20911
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -21094,13 +20917,13 @@ export declare const apiContract: {
|
|
21094
20917
|
}>>, "many">;
|
21095
20918
|
}, "strip", import("zod").ZodTypeAny, {
|
21096
20919
|
requestId: string;
|
21097
|
-
|
20920
|
+
totalIncomingMessageData: ({
|
21098
20921
|
data: number[];
|
21099
20922
|
name: string;
|
21100
20923
|
} | null)[];
|
21101
20924
|
}, {
|
21102
20925
|
requestId: string;
|
21103
|
-
|
20926
|
+
totalIncomingMessageData: ({
|
21104
20927
|
data: number[];
|
21105
20928
|
name: string;
|
21106
20929
|
} | null)[];
|
@@ -21120,12 +20943,18 @@ export declare const apiContract: {
|
|
21120
20943
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
21121
20944
|
'x-tenant': import("zod").ZodString;
|
21122
20945
|
authorization: import("zod").ZodString;
|
20946
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
20947
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
21123
20948
|
}, "strip", import("zod").ZodTypeAny, {
|
21124
20949
|
'x-tenant': string;
|
21125
20950
|
authorization: string;
|
20951
|
+
'x-client-timezone': string;
|
20952
|
+
'x-code'?: string | undefined;
|
21126
20953
|
}, {
|
21127
20954
|
'x-tenant': string;
|
21128
20955
|
authorization: string;
|
20956
|
+
'x-code'?: string | undefined;
|
20957
|
+
'x-client-timezone'?: string | undefined;
|
21129
20958
|
}>>>;
|
21130
20959
|
};
|
21131
20960
|
};
|
@@ -21213,12 +21042,18 @@ export declare const apiContract: {
|
|
21213
21042
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
21214
21043
|
'x-tenant': import("zod").ZodString;
|
21215
21044
|
authorization: import("zod").ZodString;
|
21045
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
21046
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
21216
21047
|
}, "strip", import("zod").ZodTypeAny, {
|
21217
21048
|
'x-tenant': string;
|
21218
21049
|
authorization: string;
|
21050
|
+
'x-client-timezone': string;
|
21051
|
+
'x-code'?: string | undefined;
|
21219
21052
|
}, {
|
21220
21053
|
'x-tenant': string;
|
21221
21054
|
authorization: string;
|
21055
|
+
'x-code'?: string | undefined;
|
21056
|
+
'x-client-timezone'?: string | undefined;
|
21222
21057
|
}>>>;
|
21223
21058
|
};
|
21224
21059
|
};
|
@@ -21386,12 +21221,18 @@ export declare const apiContract: {
|
|
21386
21221
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
21387
21222
|
'x-tenant': import("zod").ZodString;
|
21388
21223
|
authorization: import("zod").ZodString;
|
21224
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
21225
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
21389
21226
|
}, "strip", import("zod").ZodTypeAny, {
|
21390
21227
|
'x-tenant': string;
|
21391
21228
|
authorization: string;
|
21229
|
+
'x-client-timezone': string;
|
21230
|
+
'x-code'?: string | undefined;
|
21392
21231
|
}, {
|
21393
21232
|
'x-tenant': string;
|
21394
21233
|
authorization: string;
|
21234
|
+
'x-code'?: string | undefined;
|
21235
|
+
'x-client-timezone'?: string | undefined;
|
21395
21236
|
}>>>;
|
21396
21237
|
};
|
21397
21238
|
getRoles: {
|
@@ -21527,12 +21368,18 @@ export declare const apiContract: {
|
|
21527
21368
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
21528
21369
|
'x-tenant': import("zod").ZodString;
|
21529
21370
|
authorization: import("zod").ZodString;
|
21371
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
21372
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
21530
21373
|
}, "strip", import("zod").ZodTypeAny, {
|
21531
21374
|
'x-tenant': string;
|
21532
21375
|
authorization: string;
|
21376
|
+
'x-client-timezone': string;
|
21377
|
+
'x-code'?: string | undefined;
|
21533
21378
|
}, {
|
21534
21379
|
'x-tenant': string;
|
21535
21380
|
authorization: string;
|
21381
|
+
'x-code'?: string | undefined;
|
21382
|
+
'x-client-timezone'?: string | undefined;
|
21536
21383
|
}>>>;
|
21537
21384
|
};
|
21538
21385
|
updateRole: {
|
@@ -21705,12 +21552,18 @@ export declare const apiContract: {
|
|
21705
21552
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
21706
21553
|
'x-tenant': import("zod").ZodString;
|
21707
21554
|
authorization: import("zod").ZodString;
|
21555
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
21556
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
21708
21557
|
}, "strip", import("zod").ZodTypeAny, {
|
21709
21558
|
'x-tenant': string;
|
21710
21559
|
authorization: string;
|
21560
|
+
'x-client-timezone': string;
|
21561
|
+
'x-code'?: string | undefined;
|
21711
21562
|
}, {
|
21712
21563
|
'x-tenant': string;
|
21713
21564
|
authorization: string;
|
21565
|
+
'x-code'?: string | undefined;
|
21566
|
+
'x-client-timezone'?: string | undefined;
|
21714
21567
|
}>>>;
|
21715
21568
|
};
|
21716
21569
|
deleteRole: {
|
@@ -21750,12 +21603,18 @@ export declare const apiContract: {
|
|
21750
21603
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
21751
21604
|
'x-tenant': import("zod").ZodString;
|
21752
21605
|
authorization: import("zod").ZodString;
|
21606
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
21607
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
21753
21608
|
}, "strip", import("zod").ZodTypeAny, {
|
21754
21609
|
'x-tenant': string;
|
21755
21610
|
authorization: string;
|
21611
|
+
'x-client-timezone': string;
|
21612
|
+
'x-code'?: string | undefined;
|
21756
21613
|
}, {
|
21757
21614
|
'x-tenant': string;
|
21758
21615
|
authorization: string;
|
21616
|
+
'x-code'?: string | undefined;
|
21617
|
+
'x-client-timezone'?: string | undefined;
|
21759
21618
|
}>>>;
|
21760
21619
|
};
|
21761
21620
|
};
|
@@ -22103,12 +21962,18 @@ export declare const apiContract: {
|
|
22103
21962
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
22104
21963
|
'x-tenant': import("zod").ZodString;
|
22105
21964
|
authorization: import("zod").ZodString;
|
21965
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
21966
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
22106
21967
|
}, "strip", import("zod").ZodTypeAny, {
|
22107
21968
|
'x-tenant': string;
|
22108
21969
|
authorization: string;
|
21970
|
+
'x-client-timezone': string;
|
21971
|
+
'x-code'?: string | undefined;
|
22109
21972
|
}, {
|
22110
21973
|
'x-tenant': string;
|
22111
21974
|
authorization: string;
|
21975
|
+
'x-code'?: string | undefined;
|
21976
|
+
'x-client-timezone'?: string | undefined;
|
22112
21977
|
}>>>;
|
22113
21978
|
};
|
22114
21979
|
getUsers: {
|
@@ -22347,12 +22212,18 @@ export declare const apiContract: {
|
|
22347
22212
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
22348
22213
|
'x-tenant': import("zod").ZodString;
|
22349
22214
|
authorization: import("zod").ZodString;
|
22215
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
22216
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
22350
22217
|
}, "strip", import("zod").ZodTypeAny, {
|
22351
22218
|
'x-tenant': string;
|
22352
22219
|
authorization: string;
|
22220
|
+
'x-client-timezone': string;
|
22221
|
+
'x-code'?: string | undefined;
|
22353
22222
|
}, {
|
22354
22223
|
'x-tenant': string;
|
22355
22224
|
authorization: string;
|
22225
|
+
'x-code'?: string | undefined;
|
22226
|
+
'x-client-timezone'?: string | undefined;
|
22356
22227
|
}>>>;
|
22357
22228
|
};
|
22358
22229
|
getUserById: {
|
@@ -22587,12 +22458,18 @@ export declare const apiContract: {
|
|
22587
22458
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
22588
22459
|
'x-tenant': import("zod").ZodString;
|
22589
22460
|
authorization: import("zod").ZodString;
|
22461
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
22462
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
22590
22463
|
}, "strip", import("zod").ZodTypeAny, {
|
22591
22464
|
'x-tenant': string;
|
22592
22465
|
authorization: string;
|
22466
|
+
'x-client-timezone': string;
|
22467
|
+
'x-code'?: string | undefined;
|
22593
22468
|
}, {
|
22594
22469
|
'x-tenant': string;
|
22595
22470
|
authorization: string;
|
22471
|
+
'x-code'?: string | undefined;
|
22472
|
+
'x-client-timezone'?: string | undefined;
|
22596
22473
|
}>>>;
|
22597
22474
|
};
|
22598
22475
|
updateUser: {
|
@@ -22948,12 +22825,18 @@ export declare const apiContract: {
|
|
22948
22825
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
22949
22826
|
'x-tenant': import("zod").ZodString;
|
22950
22827
|
authorization: import("zod").ZodString;
|
22828
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
22829
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
22951
22830
|
}, "strip", import("zod").ZodTypeAny, {
|
22952
22831
|
'x-tenant': string;
|
22953
22832
|
authorization: string;
|
22833
|
+
'x-client-timezone': string;
|
22834
|
+
'x-code'?: string | undefined;
|
22954
22835
|
}, {
|
22955
22836
|
'x-tenant': string;
|
22956
22837
|
authorization: string;
|
22838
|
+
'x-code'?: string | undefined;
|
22839
|
+
'x-client-timezone'?: string | undefined;
|
22957
22840
|
}>>>;
|
22958
22841
|
};
|
22959
22842
|
deleteUser: {
|
@@ -22993,12 +22876,18 @@ export declare const apiContract: {
|
|
22993
22876
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
22994
22877
|
'x-tenant': import("zod").ZodString;
|
22995
22878
|
authorization: import("zod").ZodString;
|
22879
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
22880
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
22996
22881
|
}, "strip", import("zod").ZodTypeAny, {
|
22997
22882
|
'x-tenant': string;
|
22998
22883
|
authorization: string;
|
22884
|
+
'x-client-timezone': string;
|
22885
|
+
'x-code'?: string | undefined;
|
22999
22886
|
}, {
|
23000
22887
|
'x-tenant': string;
|
23001
22888
|
authorization: string;
|
22889
|
+
'x-code'?: string | undefined;
|
22890
|
+
'x-client-timezone'?: string | undefined;
|
23002
22891
|
}>>>;
|
23003
22892
|
};
|
23004
22893
|
};
|
@@ -23123,12 +23012,18 @@ export declare const apiContract: {
|
|
23123
23012
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
23124
23013
|
'x-tenant': import("zod").ZodString;
|
23125
23014
|
authorization: import("zod").ZodString;
|
23015
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
23016
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
23126
23017
|
}, "strip", import("zod").ZodTypeAny, {
|
23127
23018
|
'x-tenant': string;
|
23128
23019
|
authorization: string;
|
23020
|
+
'x-client-timezone': string;
|
23021
|
+
'x-code'?: string | undefined;
|
23129
23022
|
}, {
|
23130
23023
|
'x-tenant': string;
|
23131
23024
|
authorization: string;
|
23025
|
+
'x-code'?: string | undefined;
|
23026
|
+
'x-client-timezone'?: string | undefined;
|
23132
23027
|
}>>>;
|
23133
23028
|
};
|
23134
23029
|
getExtensions: {
|
@@ -23415,12 +23310,18 @@ export declare const apiContract: {
|
|
23415
23310
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
23416
23311
|
'x-tenant': import("zod").ZodString;
|
23417
23312
|
authorization: import("zod").ZodString;
|
23313
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
23314
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
23418
23315
|
}, "strip", import("zod").ZodTypeAny, {
|
23419
23316
|
'x-tenant': string;
|
23420
23317
|
authorization: string;
|
23318
|
+
'x-client-timezone': string;
|
23319
|
+
'x-code'?: string | undefined;
|
23421
23320
|
}, {
|
23422
23321
|
'x-tenant': string;
|
23423
23322
|
authorization: string;
|
23323
|
+
'x-code'?: string | undefined;
|
23324
|
+
'x-client-timezone'?: string | undefined;
|
23424
23325
|
}>>>;
|
23425
23326
|
};
|
23426
23327
|
getExtensionByUserId: {
|
@@ -23500,12 +23401,18 @@ export declare const apiContract: {
|
|
23500
23401
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
23501
23402
|
'x-tenant': import("zod").ZodString;
|
23502
23403
|
authorization: import("zod").ZodString;
|
23404
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
23405
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
23503
23406
|
}, "strip", import("zod").ZodTypeAny, {
|
23504
23407
|
'x-tenant': string;
|
23505
23408
|
authorization: string;
|
23409
|
+
'x-client-timezone': string;
|
23410
|
+
'x-code'?: string | undefined;
|
23506
23411
|
}, {
|
23507
23412
|
'x-tenant': string;
|
23508
23413
|
authorization: string;
|
23414
|
+
'x-code'?: string | undefined;
|
23415
|
+
'x-client-timezone'?: string | undefined;
|
23509
23416
|
}>>>;
|
23510
23417
|
};
|
23511
23418
|
getExtensionByDialpad: {
|
@@ -23620,12 +23527,18 @@ export declare const apiContract: {
|
|
23620
23527
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
23621
23528
|
'x-tenant': import("zod").ZodString;
|
23622
23529
|
authorization: import("zod").ZodString;
|
23530
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
23531
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
23623
23532
|
}, "strip", import("zod").ZodTypeAny, {
|
23624
23533
|
'x-tenant': string;
|
23625
23534
|
authorization: string;
|
23535
|
+
'x-client-timezone': string;
|
23536
|
+
'x-code'?: string | undefined;
|
23626
23537
|
}, {
|
23627
23538
|
'x-tenant': string;
|
23628
23539
|
authorization: string;
|
23540
|
+
'x-code'?: string | undefined;
|
23541
|
+
'x-client-timezone'?: string | undefined;
|
23629
23542
|
}>>>;
|
23630
23543
|
};
|
23631
23544
|
updateExtension: {
|
@@ -23738,12 +23651,18 @@ export declare const apiContract: {
|
|
23738
23651
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
23739
23652
|
'x-tenant': import("zod").ZodString;
|
23740
23653
|
authorization: import("zod").ZodString;
|
23654
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
23655
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
23741
23656
|
}, "strip", import("zod").ZodTypeAny, {
|
23742
23657
|
'x-tenant': string;
|
23743
23658
|
authorization: string;
|
23659
|
+
'x-client-timezone': string;
|
23660
|
+
'x-code'?: string | undefined;
|
23744
23661
|
}, {
|
23745
23662
|
'x-tenant': string;
|
23746
23663
|
authorization: string;
|
23664
|
+
'x-code'?: string | undefined;
|
23665
|
+
'x-client-timezone'?: string | undefined;
|
23747
23666
|
}>>>;
|
23748
23667
|
};
|
23749
23668
|
deleteExtension: {
|
@@ -23783,12 +23702,18 @@ export declare const apiContract: {
|
|
23783
23702
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
23784
23703
|
'x-tenant': import("zod").ZodString;
|
23785
23704
|
authorization: import("zod").ZodString;
|
23705
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
23706
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
23786
23707
|
}, "strip", import("zod").ZodTypeAny, {
|
23787
23708
|
'x-tenant': string;
|
23788
23709
|
authorization: string;
|
23710
|
+
'x-client-timezone': string;
|
23711
|
+
'x-code'?: string | undefined;
|
23789
23712
|
}, {
|
23790
23713
|
'x-tenant': string;
|
23791
23714
|
authorization: string;
|
23715
|
+
'x-code'?: string | undefined;
|
23716
|
+
'x-client-timezone'?: string | undefined;
|
23792
23717
|
}>>>;
|
23793
23718
|
};
|
23794
23719
|
};
|
@@ -23932,12 +23857,18 @@ export declare const apiContract: {
|
|
23932
23857
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
23933
23858
|
'x-tenant': import("zod").ZodString;
|
23934
23859
|
authorization: import("zod").ZodString;
|
23860
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
23861
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
23935
23862
|
}, "strip", import("zod").ZodTypeAny, {
|
23936
23863
|
'x-tenant': string;
|
23937
23864
|
authorization: string;
|
23865
|
+
'x-client-timezone': string;
|
23866
|
+
'x-code'?: string | undefined;
|
23938
23867
|
}, {
|
23939
23868
|
'x-tenant': string;
|
23940
23869
|
authorization: string;
|
23870
|
+
'x-code'?: string | undefined;
|
23871
|
+
'x-client-timezone'?: string | undefined;
|
23941
23872
|
}>>>;
|
23942
23873
|
};
|
23943
23874
|
getWidgets: {
|
@@ -24056,12 +23987,18 @@ export declare const apiContract: {
|
|
24056
23987
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24057
23988
|
'x-tenant': import("zod").ZodString;
|
24058
23989
|
authorization: import("zod").ZodString;
|
23990
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
23991
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24059
23992
|
}, "strip", import("zod").ZodTypeAny, {
|
24060
23993
|
'x-tenant': string;
|
24061
23994
|
authorization: string;
|
23995
|
+
'x-client-timezone': string;
|
23996
|
+
'x-code'?: string | undefined;
|
24062
23997
|
}, {
|
24063
23998
|
'x-tenant': string;
|
24064
23999
|
authorization: string;
|
24000
|
+
'x-code'?: string | undefined;
|
24001
|
+
'x-client-timezone'?: string | undefined;
|
24065
24002
|
}>>>;
|
24066
24003
|
};
|
24067
24004
|
getMenuWidgets: {
|
@@ -24141,12 +24078,18 @@ export declare const apiContract: {
|
|
24141
24078
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24142
24079
|
'x-tenant': import("zod").ZodString;
|
24143
24080
|
authorization: import("zod").ZodString;
|
24081
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
24082
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24144
24083
|
}, "strip", import("zod").ZodTypeAny, {
|
24145
24084
|
'x-tenant': string;
|
24146
24085
|
authorization: string;
|
24086
|
+
'x-client-timezone': string;
|
24087
|
+
'x-code'?: string | undefined;
|
24147
24088
|
}, {
|
24148
24089
|
'x-tenant': string;
|
24149
24090
|
authorization: string;
|
24091
|
+
'x-code'?: string | undefined;
|
24092
|
+
'x-client-timezone'?: string | undefined;
|
24150
24093
|
}>>>;
|
24151
24094
|
};
|
24152
24095
|
getTicketWidgets: {
|
@@ -24226,12 +24169,18 @@ export declare const apiContract: {
|
|
24226
24169
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24227
24170
|
'x-tenant': import("zod").ZodString;
|
24228
24171
|
authorization: import("zod").ZodString;
|
24172
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
24173
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24229
24174
|
}, "strip", import("zod").ZodTypeAny, {
|
24230
24175
|
'x-tenant': string;
|
24231
24176
|
authorization: string;
|
24177
|
+
'x-client-timezone': string;
|
24178
|
+
'x-code'?: string | undefined;
|
24232
24179
|
}, {
|
24233
24180
|
'x-tenant': string;
|
24234
24181
|
authorization: string;
|
24182
|
+
'x-code'?: string | undefined;
|
24183
|
+
'x-client-timezone'?: string | undefined;
|
24235
24184
|
}>>>;
|
24236
24185
|
};
|
24237
24186
|
getContactWidgets: {
|
@@ -24311,12 +24260,18 @@ export declare const apiContract: {
|
|
24311
24260
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24312
24261
|
'x-tenant': import("zod").ZodString;
|
24313
24262
|
authorization: import("zod").ZodString;
|
24263
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
24264
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24314
24265
|
}, "strip", import("zod").ZodTypeAny, {
|
24315
24266
|
'x-tenant': string;
|
24316
24267
|
authorization: string;
|
24268
|
+
'x-client-timezone': string;
|
24269
|
+
'x-code'?: string | undefined;
|
24317
24270
|
}, {
|
24318
24271
|
'x-tenant': string;
|
24319
24272
|
authorization: string;
|
24273
|
+
'x-code'?: string | undefined;
|
24274
|
+
'x-client-timezone'?: string | undefined;
|
24320
24275
|
}>>>;
|
24321
24276
|
};
|
24322
24277
|
getWidgetById: {
|
@@ -24403,12 +24358,18 @@ export declare const apiContract: {
|
|
24403
24358
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24404
24359
|
'x-tenant': import("zod").ZodString;
|
24405
24360
|
authorization: import("zod").ZodString;
|
24361
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
24362
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24406
24363
|
}, "strip", import("zod").ZodTypeAny, {
|
24407
24364
|
'x-tenant': string;
|
24408
24365
|
authorization: string;
|
24366
|
+
'x-client-timezone': string;
|
24367
|
+
'x-code'?: string | undefined;
|
24409
24368
|
}, {
|
24410
24369
|
'x-tenant': string;
|
24411
24370
|
authorization: string;
|
24371
|
+
'x-code'?: string | undefined;
|
24372
|
+
'x-client-timezone'?: string | undefined;
|
24412
24373
|
}>>>;
|
24413
24374
|
};
|
24414
24375
|
updateWidget: {
|
@@ -24547,12 +24508,18 @@ export declare const apiContract: {
|
|
24547
24508
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24548
24509
|
'x-tenant': import("zod").ZodString;
|
24549
24510
|
authorization: import("zod").ZodString;
|
24511
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
24512
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24550
24513
|
}, "strip", import("zod").ZodTypeAny, {
|
24551
24514
|
'x-tenant': string;
|
24552
24515
|
authorization: string;
|
24516
|
+
'x-client-timezone': string;
|
24517
|
+
'x-code'?: string | undefined;
|
24553
24518
|
}, {
|
24554
24519
|
'x-tenant': string;
|
24555
24520
|
authorization: string;
|
24521
|
+
'x-code'?: string | undefined;
|
24522
|
+
'x-client-timezone'?: string | undefined;
|
24556
24523
|
}>>>;
|
24557
24524
|
};
|
24558
24525
|
deleteWidget: {
|
@@ -24592,12 +24559,18 @@ export declare const apiContract: {
|
|
24592
24559
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24593
24560
|
'x-tenant': import("zod").ZodString;
|
24594
24561
|
authorization: import("zod").ZodString;
|
24562
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
24563
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24595
24564
|
}, "strip", import("zod").ZodTypeAny, {
|
24596
24565
|
'x-tenant': string;
|
24597
24566
|
authorization: string;
|
24567
|
+
'x-client-timezone': string;
|
24568
|
+
'x-code'?: string | undefined;
|
24598
24569
|
}, {
|
24599
24570
|
'x-tenant': string;
|
24600
24571
|
authorization: string;
|
24572
|
+
'x-code'?: string | undefined;
|
24573
|
+
'x-client-timezone'?: string | undefined;
|
24601
24574
|
}>>>;
|
24602
24575
|
};
|
24603
24576
|
};
|
@@ -24756,12 +24729,18 @@ export declare const apiContract: {
|
|
24756
24729
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24757
24730
|
'x-tenant': import("zod").ZodString;
|
24758
24731
|
authorization: import("zod").ZodString;
|
24732
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
24733
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24759
24734
|
}, "strip", import("zod").ZodTypeAny, {
|
24760
24735
|
'x-tenant': string;
|
24761
24736
|
authorization: string;
|
24737
|
+
'x-client-timezone': string;
|
24738
|
+
'x-code'?: string | undefined;
|
24762
24739
|
}, {
|
24763
24740
|
'x-tenant': string;
|
24764
24741
|
authorization: string;
|
24742
|
+
'x-code'?: string | undefined;
|
24743
|
+
'x-client-timezone'?: string | undefined;
|
24765
24744
|
}>>>;
|
24766
24745
|
};
|
24767
24746
|
getWrapUpForms: {
|
@@ -24893,12 +24872,18 @@ export declare const apiContract: {
|
|
24893
24872
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
24894
24873
|
'x-tenant': import("zod").ZodString;
|
24895
24874
|
authorization: import("zod").ZodString;
|
24875
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
24876
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
24896
24877
|
}, "strip", import("zod").ZodTypeAny, {
|
24897
24878
|
'x-tenant': string;
|
24898
24879
|
authorization: string;
|
24880
|
+
'x-client-timezone': string;
|
24881
|
+
'x-code'?: string | undefined;
|
24899
24882
|
}, {
|
24900
24883
|
'x-tenant': string;
|
24901
24884
|
authorization: string;
|
24885
|
+
'x-code'?: string | undefined;
|
24886
|
+
'x-client-timezone'?: string | undefined;
|
24902
24887
|
}>>>;
|
24903
24888
|
};
|
24904
24889
|
updateWrapUpForm: {
|
@@ -25065,12 +25050,18 @@ export declare const apiContract: {
|
|
25065
25050
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25066
25051
|
'x-tenant': import("zod").ZodString;
|
25067
25052
|
authorization: import("zod").ZodString;
|
25053
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25054
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25068
25055
|
}, "strip", import("zod").ZodTypeAny, {
|
25069
25056
|
'x-tenant': string;
|
25070
25057
|
authorization: string;
|
25058
|
+
'x-client-timezone': string;
|
25059
|
+
'x-code'?: string | undefined;
|
25071
25060
|
}, {
|
25072
25061
|
'x-tenant': string;
|
25073
25062
|
authorization: string;
|
25063
|
+
'x-code'?: string | undefined;
|
25064
|
+
'x-client-timezone'?: string | undefined;
|
25074
25065
|
}>>>;
|
25075
25066
|
};
|
25076
25067
|
};
|
@@ -25277,12 +25268,18 @@ export declare const apiContract: {
|
|
25277
25268
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25278
25269
|
'x-tenant': import("zod").ZodString;
|
25279
25270
|
authorization: import("zod").ZodString;
|
25271
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25272
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25280
25273
|
}, "strip", import("zod").ZodTypeAny, {
|
25281
25274
|
'x-tenant': string;
|
25282
25275
|
authorization: string;
|
25276
|
+
'x-client-timezone': string;
|
25277
|
+
'x-code'?: string | undefined;
|
25283
25278
|
}, {
|
25284
25279
|
'x-tenant': string;
|
25285
25280
|
authorization: string;
|
25281
|
+
'x-code'?: string | undefined;
|
25282
|
+
'x-client-timezone'?: string | undefined;
|
25286
25283
|
}>>>;
|
25287
25284
|
};
|
25288
25285
|
getCategories: {
|
@@ -25416,12 +25413,18 @@ export declare const apiContract: {
|
|
25416
25413
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25417
25414
|
'x-tenant': import("zod").ZodString;
|
25418
25415
|
authorization: import("zod").ZodString;
|
25416
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25417
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25419
25418
|
}, "strip", import("zod").ZodTypeAny, {
|
25420
25419
|
'x-tenant': string;
|
25421
25420
|
authorization: string;
|
25421
|
+
'x-client-timezone': string;
|
25422
|
+
'x-code'?: string | undefined;
|
25422
25423
|
}, {
|
25423
25424
|
'x-tenant': string;
|
25424
25425
|
authorization: string;
|
25426
|
+
'x-code'?: string | undefined;
|
25427
|
+
'x-client-timezone'?: string | undefined;
|
25425
25428
|
}>>>;
|
25426
25429
|
};
|
25427
25430
|
updateCategory: {
|
@@ -25607,12 +25610,18 @@ export declare const apiContract: {
|
|
25607
25610
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25608
25611
|
'x-tenant': import("zod").ZodString;
|
25609
25612
|
authorization: import("zod").ZodString;
|
25613
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25614
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25610
25615
|
}, "strip", import("zod").ZodTypeAny, {
|
25611
25616
|
'x-tenant': string;
|
25612
25617
|
authorization: string;
|
25618
|
+
'x-client-timezone': string;
|
25619
|
+
'x-code'?: string | undefined;
|
25613
25620
|
}, {
|
25614
25621
|
'x-tenant': string;
|
25615
25622
|
authorization: string;
|
25623
|
+
'x-code'?: string | undefined;
|
25624
|
+
'x-client-timezone'?: string | undefined;
|
25616
25625
|
}>>>;
|
25617
25626
|
};
|
25618
25627
|
deleteCategory: {
|
@@ -25651,12 +25660,18 @@ export declare const apiContract: {
|
|
25651
25660
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25652
25661
|
'x-tenant': import("zod").ZodString;
|
25653
25662
|
authorization: import("zod").ZodString;
|
25663
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25664
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25654
25665
|
}, "strip", import("zod").ZodTypeAny, {
|
25655
25666
|
'x-tenant': string;
|
25656
25667
|
authorization: string;
|
25668
|
+
'x-client-timezone': string;
|
25669
|
+
'x-code'?: string | undefined;
|
25657
25670
|
}, {
|
25658
25671
|
'x-tenant': string;
|
25659
25672
|
authorization: string;
|
25673
|
+
'x-code'?: string | undefined;
|
25674
|
+
'x-client-timezone'?: string | undefined;
|
25660
25675
|
}>>>;
|
25661
25676
|
};
|
25662
25677
|
createCategoryLevel: {
|
@@ -25717,12 +25732,18 @@ export declare const apiContract: {
|
|
25717
25732
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25718
25733
|
'x-tenant': import("zod").ZodString;
|
25719
25734
|
authorization: import("zod").ZodString;
|
25735
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25736
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25720
25737
|
}, "strip", import("zod").ZodTypeAny, {
|
25721
25738
|
'x-tenant': string;
|
25722
25739
|
authorization: string;
|
25740
|
+
'x-client-timezone': string;
|
25741
|
+
'x-code'?: string | undefined;
|
25723
25742
|
}, {
|
25724
25743
|
'x-tenant': string;
|
25725
25744
|
authorization: string;
|
25745
|
+
'x-code'?: string | undefined;
|
25746
|
+
'x-client-timezone'?: string | undefined;
|
25726
25747
|
}>>>;
|
25727
25748
|
};
|
25728
25749
|
getCategoryLevels: {
|
@@ -25836,12 +25857,18 @@ export declare const apiContract: {
|
|
25836
25857
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
25837
25858
|
'x-tenant': import("zod").ZodString;
|
25838
25859
|
authorization: import("zod").ZodString;
|
25860
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
25861
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
25839
25862
|
}, "strip", import("zod").ZodTypeAny, {
|
25840
25863
|
'x-tenant': string;
|
25841
25864
|
authorization: string;
|
25865
|
+
'x-client-timezone': string;
|
25866
|
+
'x-code'?: string | undefined;
|
25842
25867
|
}, {
|
25843
25868
|
'x-tenant': string;
|
25844
25869
|
authorization: string;
|
25870
|
+
'x-code'?: string | undefined;
|
25871
|
+
'x-client-timezone'?: string | undefined;
|
25845
25872
|
}>>>;
|
25846
25873
|
};
|
25847
25874
|
};
|
@@ -26089,12 +26116,18 @@ export declare const apiContract: {
|
|
26089
26116
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
26090
26117
|
'x-tenant': import("zod").ZodString;
|
26091
26118
|
authorization: import("zod").ZodString;
|
26119
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
26120
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
26092
26121
|
}, "strip", import("zod").ZodTypeAny, {
|
26093
26122
|
'x-tenant': string;
|
26094
26123
|
authorization: string;
|
26124
|
+
'x-client-timezone': string;
|
26125
|
+
'x-code'?: string | undefined;
|
26095
26126
|
}, {
|
26096
26127
|
'x-tenant': string;
|
26097
26128
|
authorization: string;
|
26129
|
+
'x-code'?: string | undefined;
|
26130
|
+
'x-client-timezone'?: string | undefined;
|
26098
26131
|
}>>>;
|
26099
26132
|
};
|
26100
26133
|
};
|
@@ -26340,12 +26373,18 @@ export declare const apiContract: {
|
|
26340
26373
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
26341
26374
|
'x-tenant': import("zod").ZodString;
|
26342
26375
|
authorization: import("zod").ZodString;
|
26376
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
26377
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
26343
26378
|
}, "strip", import("zod").ZodTypeAny, {
|
26344
26379
|
'x-tenant': string;
|
26345
26380
|
authorization: string;
|
26381
|
+
'x-client-timezone': string;
|
26382
|
+
'x-code'?: string | undefined;
|
26346
26383
|
}, {
|
26347
26384
|
'x-tenant': string;
|
26348
26385
|
authorization: string;
|
26386
|
+
'x-code'?: string | undefined;
|
26387
|
+
'x-client-timezone'?: string | undefined;
|
26349
26388
|
}>>>;
|
26350
26389
|
};
|
26351
26390
|
getAttributes: {
|
@@ -26552,12 +26591,18 @@ export declare const apiContract: {
|
|
26552
26591
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
26553
26592
|
'x-tenant': import("zod").ZodString;
|
26554
26593
|
authorization: import("zod").ZodString;
|
26594
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
26595
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
26555
26596
|
}, "strip", import("zod").ZodTypeAny, {
|
26556
26597
|
'x-tenant': string;
|
26557
26598
|
authorization: string;
|
26599
|
+
'x-client-timezone': string;
|
26600
|
+
'x-code'?: string | undefined;
|
26558
26601
|
}, {
|
26559
26602
|
'x-tenant': string;
|
26560
26603
|
authorization: string;
|
26604
|
+
'x-code'?: string | undefined;
|
26605
|
+
'x-client-timezone'?: string | undefined;
|
26561
26606
|
}>>>;
|
26562
26607
|
};
|
26563
26608
|
updateAttribute: {
|
@@ -26808,12 +26853,18 @@ export declare const apiContract: {
|
|
26808
26853
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
26809
26854
|
'x-tenant': import("zod").ZodString;
|
26810
26855
|
authorization: import("zod").ZodString;
|
26856
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
26857
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
26811
26858
|
}, "strip", import("zod").ZodTypeAny, {
|
26812
26859
|
'x-tenant': string;
|
26813
26860
|
authorization: string;
|
26861
|
+
'x-client-timezone': string;
|
26862
|
+
'x-code'?: string | undefined;
|
26814
26863
|
}, {
|
26815
26864
|
'x-tenant': string;
|
26816
26865
|
authorization: string;
|
26866
|
+
'x-code'?: string | undefined;
|
26867
|
+
'x-client-timezone'?: string | undefined;
|
26817
26868
|
}>>>;
|
26818
26869
|
};
|
26819
26870
|
changeVisibility: {
|
@@ -26858,12 +26909,18 @@ export declare const apiContract: {
|
|
26858
26909
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
26859
26910
|
'x-tenant': import("zod").ZodString;
|
26860
26911
|
authorization: import("zod").ZodString;
|
26912
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
26913
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
26861
26914
|
}, "strip", import("zod").ZodTypeAny, {
|
26862
26915
|
'x-tenant': string;
|
26863
26916
|
authorization: string;
|
26917
|
+
'x-client-timezone': string;
|
26918
|
+
'x-code'?: string | undefined;
|
26864
26919
|
}, {
|
26865
26920
|
'x-tenant': string;
|
26866
26921
|
authorization: string;
|
26922
|
+
'x-code'?: string | undefined;
|
26923
|
+
'x-client-timezone'?: string | undefined;
|
26867
26924
|
}>>>;
|
26868
26925
|
};
|
26869
26926
|
changeRequired: {
|
@@ -26908,12 +26965,18 @@ export declare const apiContract: {
|
|
26908
26965
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
26909
26966
|
'x-tenant': import("zod").ZodString;
|
26910
26967
|
authorization: import("zod").ZodString;
|
26968
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
26969
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
26911
26970
|
}, "strip", import("zod").ZodTypeAny, {
|
26912
26971
|
'x-tenant': string;
|
26913
26972
|
authorization: string;
|
26973
|
+
'x-client-timezone': string;
|
26974
|
+
'x-code'?: string | undefined;
|
26914
26975
|
}, {
|
26915
26976
|
'x-tenant': string;
|
26916
26977
|
authorization: string;
|
26978
|
+
'x-code'?: string | undefined;
|
26979
|
+
'x-client-timezone'?: string | undefined;
|
26917
26980
|
}>>>;
|
26918
26981
|
};
|
26919
26982
|
updatePosition: {
|
@@ -26966,12 +27029,18 @@ export declare const apiContract: {
|
|
26966
27029
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
26967
27030
|
'x-tenant': import("zod").ZodString;
|
26968
27031
|
authorization: import("zod").ZodString;
|
27032
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
27033
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
26969
27034
|
}, "strip", import("zod").ZodTypeAny, {
|
26970
27035
|
'x-tenant': string;
|
26971
27036
|
authorization: string;
|
27037
|
+
'x-client-timezone': string;
|
27038
|
+
'x-code'?: string | undefined;
|
26972
27039
|
}, {
|
26973
27040
|
'x-tenant': string;
|
26974
27041
|
authorization: string;
|
27042
|
+
'x-code'?: string | undefined;
|
27043
|
+
'x-client-timezone'?: string | undefined;
|
26975
27044
|
}>>>;
|
26976
27045
|
};
|
26977
27046
|
deleteAttribute: {
|
@@ -27010,12 +27079,18 @@ export declare const apiContract: {
|
|
27010
27079
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
27011
27080
|
'x-tenant': import("zod").ZodString;
|
27012
27081
|
authorization: import("zod").ZodString;
|
27082
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
27083
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
27013
27084
|
}, "strip", import("zod").ZodTypeAny, {
|
27014
27085
|
'x-tenant': string;
|
27015
27086
|
authorization: string;
|
27087
|
+
'x-client-timezone': string;
|
27088
|
+
'x-code'?: string | undefined;
|
27016
27089
|
}, {
|
27017
27090
|
'x-tenant': string;
|
27018
27091
|
authorization: string;
|
27092
|
+
'x-code'?: string | undefined;
|
27093
|
+
'x-client-timezone'?: string | undefined;
|
27019
27094
|
}>>>;
|
27020
27095
|
};
|
27021
27096
|
};
|
@@ -27088,12 +27163,18 @@ export declare const apiContract: {
|
|
27088
27163
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
27089
27164
|
'x-tenant': import("zod").ZodString;
|
27090
27165
|
authorization: import("zod").ZodString;
|
27166
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
27167
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
27091
27168
|
}, "strip", import("zod").ZodTypeAny, {
|
27092
27169
|
'x-tenant': string;
|
27093
27170
|
authorization: string;
|
27171
|
+
'x-client-timezone': string;
|
27172
|
+
'x-code'?: string | undefined;
|
27094
27173
|
}, {
|
27095
27174
|
'x-tenant': string;
|
27096
27175
|
authorization: string;
|
27176
|
+
'x-code'?: string | undefined;
|
27177
|
+
'x-client-timezone'?: string | undefined;
|
27097
27178
|
}>>>;
|
27098
27179
|
};
|
27099
27180
|
getTags: {
|
@@ -27164,12 +27245,18 @@ export declare const apiContract: {
|
|
27164
27245
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
27165
27246
|
'x-tenant': import("zod").ZodString;
|
27166
27247
|
authorization: import("zod").ZodString;
|
27248
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
27249
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
27167
27250
|
}, "strip", import("zod").ZodTypeAny, {
|
27168
27251
|
'x-tenant': string;
|
27169
27252
|
authorization: string;
|
27253
|
+
'x-client-timezone': string;
|
27254
|
+
'x-code'?: string | undefined;
|
27170
27255
|
}, {
|
27171
27256
|
'x-tenant': string;
|
27172
27257
|
authorization: string;
|
27258
|
+
'x-code'?: string | undefined;
|
27259
|
+
'x-client-timezone'?: string | undefined;
|
27173
27260
|
}>>>;
|
27174
27261
|
};
|
27175
27262
|
updateTag: {
|
@@ -27244,12 +27331,18 @@ export declare const apiContract: {
|
|
27244
27331
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
27245
27332
|
'x-tenant': import("zod").ZodString;
|
27246
27333
|
authorization: import("zod").ZodString;
|
27334
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
27335
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
27247
27336
|
}, "strip", import("zod").ZodTypeAny, {
|
27248
27337
|
'x-tenant': string;
|
27249
27338
|
authorization: string;
|
27339
|
+
'x-client-timezone': string;
|
27340
|
+
'x-code'?: string | undefined;
|
27250
27341
|
}, {
|
27251
27342
|
'x-tenant': string;
|
27252
27343
|
authorization: string;
|
27344
|
+
'x-code'?: string | undefined;
|
27345
|
+
'x-client-timezone'?: string | undefined;
|
27253
27346
|
}>>>;
|
27254
27347
|
};
|
27255
27348
|
deleteTag: {
|
@@ -27288,12 +27381,18 @@ export declare const apiContract: {
|
|
27288
27381
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
27289
27382
|
'x-tenant': import("zod").ZodString;
|
27290
27383
|
authorization: import("zod").ZodString;
|
27384
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
27385
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
27291
27386
|
}, "strip", import("zod").ZodTypeAny, {
|
27292
27387
|
'x-tenant': string;
|
27293
27388
|
authorization: string;
|
27389
|
+
'x-client-timezone': string;
|
27390
|
+
'x-code'?: string | undefined;
|
27294
27391
|
}, {
|
27295
27392
|
'x-tenant': string;
|
27296
27393
|
authorization: string;
|
27394
|
+
'x-code'?: string | undefined;
|
27395
|
+
'x-client-timezone'?: string | undefined;
|
27297
27396
|
}>>>;
|
27298
27397
|
};
|
27299
27398
|
};
|
@@ -28138,12 +28237,18 @@ export declare const apiContract: {
|
|
28138
28237
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
28139
28238
|
'x-tenant': import("zod").ZodString;
|
28140
28239
|
authorization: import("zod").ZodString;
|
28240
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
28241
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
28141
28242
|
}, "strip", import("zod").ZodTypeAny, {
|
28142
28243
|
'x-tenant': string;
|
28143
28244
|
authorization: string;
|
28245
|
+
'x-client-timezone': string;
|
28246
|
+
'x-code'?: string | undefined;
|
28144
28247
|
}, {
|
28145
28248
|
'x-tenant': string;
|
28146
28249
|
authorization: string;
|
28250
|
+
'x-code'?: string | undefined;
|
28251
|
+
'x-client-timezone'?: string | undefined;
|
28147
28252
|
}>>>;
|
28148
28253
|
};
|
28149
28254
|
getChannels: {
|
@@ -28641,12 +28746,18 @@ export declare const apiContract: {
|
|
28641
28746
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
28642
28747
|
'x-tenant': import("zod").ZodString;
|
28643
28748
|
authorization: import("zod").ZodString;
|
28749
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
28750
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
28644
28751
|
}, "strip", import("zod").ZodTypeAny, {
|
28645
28752
|
'x-tenant': string;
|
28646
28753
|
authorization: string;
|
28754
|
+
'x-client-timezone': string;
|
28755
|
+
'x-code'?: string | undefined;
|
28647
28756
|
}, {
|
28648
28757
|
'x-tenant': string;
|
28649
28758
|
authorization: string;
|
28759
|
+
'x-code'?: string | undefined;
|
28760
|
+
'x-client-timezone'?: string | undefined;
|
28650
28761
|
}>>>;
|
28651
28762
|
};
|
28652
28763
|
};
|
@@ -28885,12 +28996,18 @@ export declare const apiContract: {
|
|
28885
28996
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
28886
28997
|
'x-tenant': import("zod").ZodString;
|
28887
28998
|
authorization: import("zod").ZodString;
|
28999
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
29000
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
28888
29001
|
}, "strip", import("zod").ZodTypeAny, {
|
28889
29002
|
'x-tenant': string;
|
28890
29003
|
authorization: string;
|
29004
|
+
'x-client-timezone': string;
|
29005
|
+
'x-code'?: string | undefined;
|
28891
29006
|
}, {
|
28892
29007
|
'x-tenant': string;
|
28893
29008
|
authorization: string;
|
29009
|
+
'x-code'?: string | undefined;
|
29010
|
+
'x-client-timezone'?: string | undefined;
|
28894
29011
|
}>>>;
|
28895
29012
|
};
|
28896
29013
|
getAllAgentStatus: {
|
@@ -29271,12 +29388,18 @@ export declare const apiContract: {
|
|
29271
29388
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
29272
29389
|
'x-tenant': import("zod").ZodString;
|
29273
29390
|
authorization: import("zod").ZodString;
|
29391
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
29392
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
29274
29393
|
}, "strip", import("zod").ZodTypeAny, {
|
29275
29394
|
'x-tenant': string;
|
29276
29395
|
authorization: string;
|
29396
|
+
'x-client-timezone': string;
|
29397
|
+
'x-code'?: string | undefined;
|
29277
29398
|
}, {
|
29278
29399
|
'x-tenant': string;
|
29279
29400
|
authorization: string;
|
29401
|
+
'x-code'?: string | undefined;
|
29402
|
+
'x-client-timezone'?: string | undefined;
|
29280
29403
|
}>>>;
|
29281
29404
|
};
|
29282
29405
|
getAgentStatus: {
|
@@ -29664,12 +29787,18 @@ export declare const apiContract: {
|
|
29664
29787
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
29665
29788
|
'x-tenant': import("zod").ZodString;
|
29666
29789
|
authorization: import("zod").ZodString;
|
29790
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
29791
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
29667
29792
|
}, "strip", import("zod").ZodTypeAny, {
|
29668
29793
|
'x-tenant': string;
|
29669
29794
|
authorization: string;
|
29795
|
+
'x-client-timezone': string;
|
29796
|
+
'x-code'?: string | undefined;
|
29670
29797
|
}, {
|
29671
29798
|
'x-tenant': string;
|
29672
29799
|
authorization: string;
|
29800
|
+
'x-code'?: string | undefined;
|
29801
|
+
'x-client-timezone'?: string | undefined;
|
29673
29802
|
}>>>;
|
29674
29803
|
};
|
29675
29804
|
updateUserStatus: {
|
@@ -30189,12 +30318,18 @@ export declare const apiContract: {
|
|
30189
30318
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
30190
30319
|
'x-tenant': import("zod").ZodString;
|
30191
30320
|
authorization: import("zod").ZodString;
|
30321
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
30322
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
30192
30323
|
}, "strip", import("zod").ZodTypeAny, {
|
30193
30324
|
'x-tenant': string;
|
30194
30325
|
authorization: string;
|
30326
|
+
'x-client-timezone': string;
|
30327
|
+
'x-code'?: string | undefined;
|
30195
30328
|
}, {
|
30196
30329
|
'x-tenant': string;
|
30197
30330
|
authorization: string;
|
30331
|
+
'x-code'?: string | undefined;
|
30332
|
+
'x-client-timezone'?: string | undefined;
|
30198
30333
|
}>>>;
|
30199
30334
|
};
|
30200
30335
|
};
|
@@ -30527,12 +30662,18 @@ export declare const apiContract: {
|
|
30527
30662
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
30528
30663
|
'x-tenant': import("zod").ZodString;
|
30529
30664
|
authorization: import("zod").ZodString;
|
30665
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
30666
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
30530
30667
|
}, "strip", import("zod").ZodTypeAny, {
|
30531
30668
|
'x-tenant': string;
|
30532
30669
|
authorization: string;
|
30670
|
+
'x-client-timezone': string;
|
30671
|
+
'x-code'?: string | undefined;
|
30533
30672
|
}, {
|
30534
30673
|
'x-tenant': string;
|
30535
30674
|
authorization: string;
|
30675
|
+
'x-code'?: string | undefined;
|
30676
|
+
'x-client-timezone'?: string | undefined;
|
30536
30677
|
}>>>;
|
30537
30678
|
};
|
30538
30679
|
};
|
@@ -30870,12 +31011,18 @@ export declare const apiContract: {
|
|
30870
31011
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
30871
31012
|
'x-tenant': import("zod").ZodString;
|
30872
31013
|
authorization: import("zod").ZodString;
|
31014
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
31015
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
30873
31016
|
}, "strip", import("zod").ZodTypeAny, {
|
30874
31017
|
'x-tenant': string;
|
30875
31018
|
authorization: string;
|
31019
|
+
'x-client-timezone': string;
|
31020
|
+
'x-code'?: string | undefined;
|
30876
31021
|
}, {
|
30877
31022
|
'x-tenant': string;
|
30878
31023
|
authorization: string;
|
31024
|
+
'x-code'?: string | undefined;
|
31025
|
+
'x-client-timezone'?: string | undefined;
|
30879
31026
|
}>>>;
|
30880
31027
|
};
|
30881
31028
|
getById: {
|
@@ -31896,12 +32043,18 @@ export declare const apiContract: {
|
|
31896
32043
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
31897
32044
|
'x-tenant': import("zod").ZodString;
|
31898
32045
|
authorization: import("zod").ZodString;
|
32046
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
32047
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
31899
32048
|
}, "strip", import("zod").ZodTypeAny, {
|
31900
32049
|
'x-tenant': string;
|
31901
32050
|
authorization: string;
|
32051
|
+
'x-client-timezone': string;
|
32052
|
+
'x-code'?: string | undefined;
|
31902
32053
|
}, {
|
31903
32054
|
'x-tenant': string;
|
31904
32055
|
authorization: string;
|
32056
|
+
'x-code'?: string | undefined;
|
32057
|
+
'x-client-timezone'?: string | undefined;
|
31905
32058
|
}>>>;
|
31906
32059
|
};
|
31907
32060
|
getAll: {
|
@@ -32990,12 +33143,18 @@ export declare const apiContract: {
|
|
32990
33143
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
32991
33144
|
'x-tenant': import("zod").ZodString;
|
32992
33145
|
authorization: import("zod").ZodString;
|
33146
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
33147
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
32993
33148
|
}, "strip", import("zod").ZodTypeAny, {
|
32994
33149
|
'x-tenant': string;
|
32995
33150
|
authorization: string;
|
33151
|
+
'x-client-timezone': string;
|
33152
|
+
'x-code'?: string | undefined;
|
32996
33153
|
}, {
|
32997
33154
|
'x-tenant': string;
|
32998
33155
|
authorization: string;
|
33156
|
+
'x-code'?: string | undefined;
|
33157
|
+
'x-client-timezone'?: string | undefined;
|
32999
33158
|
}>>>;
|
33000
33159
|
};
|
33001
33160
|
filterContacts: {
|
@@ -34034,12 +34193,18 @@ export declare const apiContract: {
|
|
34034
34193
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
34035
34194
|
'x-tenant': import("zod").ZodString;
|
34036
34195
|
authorization: import("zod").ZodString;
|
34196
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
34197
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
34037
34198
|
}, "strip", import("zod").ZodTypeAny, {
|
34038
34199
|
'x-tenant': string;
|
34039
34200
|
authorization: string;
|
34201
|
+
'x-client-timezone': string;
|
34202
|
+
'x-code'?: string | undefined;
|
34040
34203
|
}, {
|
34041
34204
|
'x-tenant': string;
|
34042
34205
|
authorization: string;
|
34206
|
+
'x-code'?: string | undefined;
|
34207
|
+
'x-client-timezone'?: string | undefined;
|
34043
34208
|
}>>>;
|
34044
34209
|
};
|
34045
34210
|
update: {
|
@@ -35323,12 +35488,18 @@ export declare const apiContract: {
|
|
35323
35488
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
35324
35489
|
'x-tenant': import("zod").ZodString;
|
35325
35490
|
authorization: import("zod").ZodString;
|
35491
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
35492
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
35326
35493
|
}, "strip", import("zod").ZodTypeAny, {
|
35327
35494
|
'x-tenant': string;
|
35328
35495
|
authorization: string;
|
35496
|
+
'x-client-timezone': string;
|
35497
|
+
'x-code'?: string | undefined;
|
35329
35498
|
}, {
|
35330
35499
|
'x-tenant': string;
|
35331
35500
|
authorization: string;
|
35501
|
+
'x-code'?: string | undefined;
|
35502
|
+
'x-client-timezone'?: string | undefined;
|
35332
35503
|
}>>>;
|
35333
35504
|
};
|
35334
35505
|
delete: {
|
@@ -35409,12 +35580,18 @@ export declare const apiContract: {
|
|
35409
35580
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
35410
35581
|
'x-tenant': import("zod").ZodString;
|
35411
35582
|
authorization: import("zod").ZodString;
|
35583
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
35584
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
35412
35585
|
}, "strip", import("zod").ZodTypeAny, {
|
35413
35586
|
'x-tenant': string;
|
35414
35587
|
authorization: string;
|
35588
|
+
'x-client-timezone': string;
|
35589
|
+
'x-code'?: string | undefined;
|
35415
35590
|
}, {
|
35416
35591
|
'x-tenant': string;
|
35417
35592
|
authorization: string;
|
35593
|
+
'x-code'?: string | undefined;
|
35594
|
+
'x-client-timezone'?: string | undefined;
|
35418
35595
|
}>>>;
|
35419
35596
|
};
|
35420
35597
|
createContactByPhone: {
|
@@ -36435,12 +36612,18 @@ export declare const apiContract: {
|
|
36435
36612
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
36436
36613
|
'x-tenant': import("zod").ZodString;
|
36437
36614
|
authorization: import("zod").ZodString;
|
36615
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
36616
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
36438
36617
|
}, "strip", import("zod").ZodTypeAny, {
|
36439
36618
|
'x-tenant': string;
|
36440
36619
|
authorization: string;
|
36620
|
+
'x-client-timezone': string;
|
36621
|
+
'x-code'?: string | undefined;
|
36441
36622
|
}, {
|
36442
36623
|
'x-tenant': string;
|
36443
36624
|
authorization: string;
|
36625
|
+
'x-code'?: string | undefined;
|
36626
|
+
'x-client-timezone'?: string | undefined;
|
36444
36627
|
}>>>;
|
36445
36628
|
};
|
36446
36629
|
updateFromOngoingCall: {
|
@@ -37464,12 +37647,18 @@ export declare const apiContract: {
|
|
37464
37647
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
37465
37648
|
'x-tenant': import("zod").ZodString;
|
37466
37649
|
authorization: import("zod").ZodString;
|
37650
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
37651
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
37467
37652
|
}, "strip", import("zod").ZodTypeAny, {
|
37468
37653
|
'x-tenant': string;
|
37469
37654
|
authorization: string;
|
37655
|
+
'x-client-timezone': string;
|
37656
|
+
'x-code'?: string | undefined;
|
37470
37657
|
}, {
|
37471
37658
|
'x-tenant': string;
|
37472
37659
|
authorization: string;
|
37660
|
+
'x-code'?: string | undefined;
|
37661
|
+
'x-client-timezone'?: string | undefined;
|
37473
37662
|
}>>>;
|
37474
37663
|
};
|
37475
37664
|
merge: {
|
@@ -38529,12 +38718,18 @@ export declare const apiContract: {
|
|
38529
38718
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
38530
38719
|
'x-tenant': import("zod").ZodString;
|
38531
38720
|
authorization: import("zod").ZodString;
|
38721
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
38722
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
38532
38723
|
}, "strip", import("zod").ZodTypeAny, {
|
38533
38724
|
'x-tenant': string;
|
38534
38725
|
authorization: string;
|
38726
|
+
'x-client-timezone': string;
|
38727
|
+
'x-code'?: string | undefined;
|
38535
38728
|
}, {
|
38536
38729
|
'x-tenant': string;
|
38537
38730
|
authorization: string;
|
38731
|
+
'x-code'?: string | undefined;
|
38732
|
+
'x-client-timezone'?: string | undefined;
|
38538
38733
|
}>>>;
|
38539
38734
|
};
|
38540
38735
|
checkContactPhone: {
|
@@ -38617,12 +38812,18 @@ export declare const apiContract: {
|
|
38617
38812
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
38618
38813
|
'x-tenant': import("zod").ZodString;
|
38619
38814
|
authorization: import("zod").ZodString;
|
38815
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
38816
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
38620
38817
|
}, "strip", import("zod").ZodTypeAny, {
|
38621
38818
|
'x-tenant': string;
|
38622
38819
|
authorization: string;
|
38820
|
+
'x-client-timezone': string;
|
38821
|
+
'x-code'?: string | undefined;
|
38623
38822
|
}, {
|
38624
38823
|
'x-tenant': string;
|
38625
38824
|
authorization: string;
|
38825
|
+
'x-code'?: string | undefined;
|
38826
|
+
'x-client-timezone'?: string | undefined;
|
38626
38827
|
}>>>;
|
38627
38828
|
};
|
38628
38829
|
checkContactEmail: {
|
@@ -38705,12 +38906,18 @@ export declare const apiContract: {
|
|
38705
38906
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
38706
38907
|
'x-tenant': import("zod").ZodString;
|
38707
38908
|
authorization: import("zod").ZodString;
|
38909
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
38910
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
38708
38911
|
}, "strip", import("zod").ZodTypeAny, {
|
38709
38912
|
'x-tenant': string;
|
38710
38913
|
authorization: string;
|
38914
|
+
'x-client-timezone': string;
|
38915
|
+
'x-code'?: string | undefined;
|
38711
38916
|
}, {
|
38712
38917
|
'x-tenant': string;
|
38713
38918
|
authorization: string;
|
38919
|
+
'x-code'?: string | undefined;
|
38920
|
+
'x-client-timezone'?: string | undefined;
|
38714
38921
|
}>>>;
|
38715
38922
|
};
|
38716
38923
|
addAttachments: {
|
@@ -38880,12 +39087,18 @@ export declare const apiContract: {
|
|
38880
39087
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
38881
39088
|
'x-tenant': import("zod").ZodString;
|
38882
39089
|
authorization: import("zod").ZodString;
|
39090
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
39091
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
38883
39092
|
}, "strip", import("zod").ZodTypeAny, {
|
38884
39093
|
'x-tenant': string;
|
38885
39094
|
authorization: string;
|
39095
|
+
'x-client-timezone': string;
|
39096
|
+
'x-code'?: string | undefined;
|
38886
39097
|
}, {
|
38887
39098
|
'x-tenant': string;
|
38888
39099
|
authorization: string;
|
39100
|
+
'x-code'?: string | undefined;
|
39101
|
+
'x-client-timezone'?: string | undefined;
|
38889
39102
|
}>>>;
|
38890
39103
|
};
|
38891
39104
|
};
|
@@ -39722,12 +39935,18 @@ export declare const apiContract: {
|
|
39722
39935
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
39723
39936
|
'x-tenant': import("zod").ZodString;
|
39724
39937
|
authorization: import("zod").ZodString;
|
39938
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
39939
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
39725
39940
|
}, "strip", import("zod").ZodTypeAny, {
|
39726
39941
|
'x-tenant': string;
|
39727
39942
|
authorization: string;
|
39943
|
+
'x-client-timezone': string;
|
39944
|
+
'x-code'?: string | undefined;
|
39728
39945
|
}, {
|
39729
39946
|
'x-tenant': string;
|
39730
39947
|
authorization: string;
|
39948
|
+
'x-code'?: string | undefined;
|
39949
|
+
'x-client-timezone'?: string | undefined;
|
39731
39950
|
}>>>;
|
39732
39951
|
};
|
39733
39952
|
getAllTickets: {
|
@@ -40085,12 +40304,18 @@ export declare const apiContract: {
|
|
40085
40304
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
40086
40305
|
'x-tenant': import("zod").ZodString;
|
40087
40306
|
authorization: import("zod").ZodString;
|
40307
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
40308
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
40088
40309
|
}, "strip", import("zod").ZodTypeAny, {
|
40089
40310
|
'x-tenant': string;
|
40090
40311
|
authorization: string;
|
40312
|
+
'x-client-timezone': string;
|
40313
|
+
'x-code'?: string | undefined;
|
40091
40314
|
}, {
|
40092
40315
|
'x-tenant': string;
|
40093
40316
|
authorization: string;
|
40317
|
+
'x-code'?: string | undefined;
|
40318
|
+
'x-client-timezone'?: string | undefined;
|
40094
40319
|
}>>>;
|
40095
40320
|
};
|
40096
40321
|
getTicketById: {
|
@@ -40505,12 +40730,18 @@ export declare const apiContract: {
|
|
40505
40730
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
40506
40731
|
'x-tenant': import("zod").ZodString;
|
40507
40732
|
authorization: import("zod").ZodString;
|
40733
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
40734
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
40508
40735
|
}, "strip", import("zod").ZodTypeAny, {
|
40509
40736
|
'x-tenant': string;
|
40510
40737
|
authorization: string;
|
40738
|
+
'x-client-timezone': string;
|
40739
|
+
'x-code'?: string | undefined;
|
40511
40740
|
}, {
|
40512
40741
|
'x-tenant': string;
|
40513
40742
|
authorization: string;
|
40743
|
+
'x-code'?: string | undefined;
|
40744
|
+
'x-client-timezone'?: string | undefined;
|
40514
40745
|
}>>>;
|
40515
40746
|
};
|
40516
40747
|
getTicketByContactId: {
|
@@ -40813,12 +41044,18 @@ export declare const apiContract: {
|
|
40813
41044
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
40814
41045
|
'x-tenant': import("zod").ZodString;
|
40815
41046
|
authorization: import("zod").ZodString;
|
41047
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
41048
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
40816
41049
|
}, "strip", import("zod").ZodTypeAny, {
|
40817
41050
|
'x-tenant': string;
|
40818
41051
|
authorization: string;
|
41052
|
+
'x-client-timezone': string;
|
41053
|
+
'x-code'?: string | undefined;
|
40819
41054
|
}, {
|
40820
41055
|
'x-tenant': string;
|
40821
41056
|
authorization: string;
|
41057
|
+
'x-code'?: string | undefined;
|
41058
|
+
'x-client-timezone'?: string | undefined;
|
40822
41059
|
}>>>;
|
40823
41060
|
};
|
40824
41061
|
updateTicket: {
|
@@ -41660,12 +41897,18 @@ export declare const apiContract: {
|
|
41660
41897
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
41661
41898
|
'x-tenant': import("zod").ZodString;
|
41662
41899
|
authorization: import("zod").ZodString;
|
41900
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
41901
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
41663
41902
|
}, "strip", import("zod").ZodTypeAny, {
|
41664
41903
|
'x-tenant': string;
|
41665
41904
|
authorization: string;
|
41905
|
+
'x-client-timezone': string;
|
41906
|
+
'x-code'?: string | undefined;
|
41666
41907
|
}, {
|
41667
41908
|
'x-tenant': string;
|
41668
41909
|
authorization: string;
|
41910
|
+
'x-code'?: string | undefined;
|
41911
|
+
'x-client-timezone'?: string | undefined;
|
41669
41912
|
}>>>;
|
41670
41913
|
};
|
41671
41914
|
deleteTicket: {
|
@@ -41705,12 +41948,18 @@ export declare const apiContract: {
|
|
41705
41948
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
41706
41949
|
'x-tenant': import("zod").ZodString;
|
41707
41950
|
authorization: import("zod").ZodString;
|
41951
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
41952
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
41708
41953
|
}, "strip", import("zod").ZodTypeAny, {
|
41709
41954
|
'x-tenant': string;
|
41710
41955
|
authorization: string;
|
41956
|
+
'x-client-timezone': string;
|
41957
|
+
'x-code'?: string | undefined;
|
41711
41958
|
}, {
|
41712
41959
|
'x-tenant': string;
|
41713
41960
|
authorization: string;
|
41961
|
+
'x-code'?: string | undefined;
|
41962
|
+
'x-client-timezone'?: string | undefined;
|
41714
41963
|
}>>>;
|
41715
41964
|
};
|
41716
41965
|
updateDescription: {
|
@@ -41797,12 +42046,18 @@ export declare const apiContract: {
|
|
41797
42046
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
41798
42047
|
'x-tenant': import("zod").ZodString;
|
41799
42048
|
authorization: import("zod").ZodString;
|
42049
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
42050
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
41800
42051
|
}, "strip", import("zod").ZodTypeAny, {
|
41801
42052
|
'x-tenant': string;
|
41802
42053
|
authorization: string;
|
42054
|
+
'x-client-timezone': string;
|
42055
|
+
'x-code'?: string | undefined;
|
41803
42056
|
}, {
|
41804
42057
|
'x-tenant': string;
|
41805
42058
|
authorization: string;
|
42059
|
+
'x-code'?: string | undefined;
|
42060
|
+
'x-client-timezone'?: string | undefined;
|
41806
42061
|
}>>>;
|
41807
42062
|
};
|
41808
42063
|
updateTitle: {
|
@@ -41889,12 +42144,18 @@ export declare const apiContract: {
|
|
41889
42144
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
41890
42145
|
'x-tenant': import("zod").ZodString;
|
41891
42146
|
authorization: import("zod").ZodString;
|
42147
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
42148
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
41892
42149
|
}, "strip", import("zod").ZodTypeAny, {
|
41893
42150
|
'x-tenant': string;
|
41894
42151
|
authorization: string;
|
42152
|
+
'x-client-timezone': string;
|
42153
|
+
'x-code'?: string | undefined;
|
41895
42154
|
}, {
|
41896
42155
|
'x-tenant': string;
|
41897
42156
|
authorization: string;
|
42157
|
+
'x-code'?: string | undefined;
|
42158
|
+
'x-client-timezone'?: string | undefined;
|
41898
42159
|
}>>>;
|
41899
42160
|
};
|
41900
42161
|
updateType: {
|
@@ -41981,12 +42242,18 @@ export declare const apiContract: {
|
|
41981
42242
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
41982
42243
|
'x-tenant': import("zod").ZodString;
|
41983
42244
|
authorization: import("zod").ZodString;
|
42245
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
42246
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
41984
42247
|
}, "strip", import("zod").ZodTypeAny, {
|
41985
42248
|
'x-tenant': string;
|
41986
42249
|
authorization: string;
|
42250
|
+
'x-client-timezone': string;
|
42251
|
+
'x-code'?: string | undefined;
|
41987
42252
|
}, {
|
41988
42253
|
'x-tenant': string;
|
41989
42254
|
authorization: string;
|
42255
|
+
'x-code'?: string | undefined;
|
42256
|
+
'x-client-timezone'?: string | undefined;
|
41990
42257
|
}>>>;
|
41991
42258
|
};
|
41992
42259
|
updateStatus: {
|
@@ -42073,12 +42340,18 @@ export declare const apiContract: {
|
|
42073
42340
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
42074
42341
|
'x-tenant': import("zod").ZodString;
|
42075
42342
|
authorization: import("zod").ZodString;
|
42343
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
42344
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
42076
42345
|
}, "strip", import("zod").ZodTypeAny, {
|
42077
42346
|
'x-tenant': string;
|
42078
42347
|
authorization: string;
|
42348
|
+
'x-client-timezone': string;
|
42349
|
+
'x-code'?: string | undefined;
|
42079
42350
|
}, {
|
42080
42351
|
'x-tenant': string;
|
42081
42352
|
authorization: string;
|
42353
|
+
'x-code'?: string | undefined;
|
42354
|
+
'x-client-timezone'?: string | undefined;
|
42082
42355
|
}>>>;
|
42083
42356
|
};
|
42084
42357
|
updatePriority: {
|
@@ -42165,12 +42438,18 @@ export declare const apiContract: {
|
|
42165
42438
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
42166
42439
|
'x-tenant': import("zod").ZodString;
|
42167
42440
|
authorization: import("zod").ZodString;
|
42441
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
42442
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
42168
42443
|
}, "strip", import("zod").ZodTypeAny, {
|
42169
42444
|
'x-tenant': string;
|
42170
42445
|
authorization: string;
|
42446
|
+
'x-client-timezone': string;
|
42447
|
+
'x-code'?: string | undefined;
|
42171
42448
|
}, {
|
42172
42449
|
'x-tenant': string;
|
42173
42450
|
authorization: string;
|
42451
|
+
'x-code'?: string | undefined;
|
42452
|
+
'x-client-timezone'?: string | undefined;
|
42174
42453
|
}>>>;
|
42175
42454
|
};
|
42176
42455
|
updateChannel: {
|
@@ -42257,12 +42536,18 @@ export declare const apiContract: {
|
|
42257
42536
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
42258
42537
|
'x-tenant': import("zod").ZodString;
|
42259
42538
|
authorization: import("zod").ZodString;
|
42539
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
42540
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
42260
42541
|
}, "strip", import("zod").ZodTypeAny, {
|
42261
42542
|
'x-tenant': string;
|
42262
42543
|
authorization: string;
|
42544
|
+
'x-client-timezone': string;
|
42545
|
+
'x-code'?: string | undefined;
|
42263
42546
|
}, {
|
42264
42547
|
'x-tenant': string;
|
42265
42548
|
authorization: string;
|
42549
|
+
'x-code'?: string | undefined;
|
42550
|
+
'x-client-timezone'?: string | undefined;
|
42266
42551
|
}>>>;
|
42267
42552
|
};
|
42268
42553
|
updateTags: {
|
@@ -42349,12 +42634,18 @@ export declare const apiContract: {
|
|
42349
42634
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
42350
42635
|
'x-tenant': import("zod").ZodString;
|
42351
42636
|
authorization: import("zod").ZodString;
|
42637
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
42638
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
42352
42639
|
}, "strip", import("zod").ZodTypeAny, {
|
42353
42640
|
'x-tenant': string;
|
42354
42641
|
authorization: string;
|
42642
|
+
'x-client-timezone': string;
|
42643
|
+
'x-code'?: string | undefined;
|
42355
42644
|
}, {
|
42356
42645
|
'x-tenant': string;
|
42357
42646
|
authorization: string;
|
42647
|
+
'x-code'?: string | undefined;
|
42648
|
+
'x-client-timezone'?: string | undefined;
|
42358
42649
|
}>>>;
|
42359
42650
|
};
|
42360
42651
|
changeAssignee: {
|
@@ -42803,12 +43094,18 @@ export declare const apiContract: {
|
|
42803
43094
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
42804
43095
|
'x-tenant': import("zod").ZodString;
|
42805
43096
|
authorization: import("zod").ZodString;
|
43097
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
43098
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
42806
43099
|
}, "strip", import("zod").ZodTypeAny, {
|
42807
43100
|
'x-tenant': string;
|
42808
43101
|
authorization: string;
|
43102
|
+
'x-client-timezone': string;
|
43103
|
+
'x-code'?: string | undefined;
|
42809
43104
|
}, {
|
42810
43105
|
'x-tenant': string;
|
42811
43106
|
authorization: string;
|
43107
|
+
'x-code'?: string | undefined;
|
43108
|
+
'x-client-timezone'?: string | undefined;
|
42812
43109
|
}>>>;
|
42813
43110
|
};
|
42814
43111
|
getTicketCountByContact: {
|
@@ -42873,12 +43170,18 @@ export declare const apiContract: {
|
|
42873
43170
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
42874
43171
|
'x-tenant': import("zod").ZodString;
|
42875
43172
|
authorization: import("zod").ZodString;
|
43173
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
43174
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
42876
43175
|
}, "strip", import("zod").ZodTypeAny, {
|
42877
43176
|
'x-tenant': string;
|
42878
43177
|
authorization: string;
|
43178
|
+
'x-client-timezone': string;
|
43179
|
+
'x-code'?: string | undefined;
|
42879
43180
|
}, {
|
42880
43181
|
'x-tenant': string;
|
42881
43182
|
authorization: string;
|
43183
|
+
'x-code'?: string | undefined;
|
43184
|
+
'x-client-timezone'?: string | undefined;
|
42882
43185
|
}>>>;
|
42883
43186
|
};
|
42884
43187
|
getTicketByContact: {
|
@@ -43181,12 +43484,18 @@ export declare const apiContract: {
|
|
43181
43484
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
43182
43485
|
'x-tenant': import("zod").ZodString;
|
43183
43486
|
authorization: import("zod").ZodString;
|
43487
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
43488
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
43184
43489
|
}, "strip", import("zod").ZodTypeAny, {
|
43185
43490
|
'x-tenant': string;
|
43186
43491
|
authorization: string;
|
43492
|
+
'x-client-timezone': string;
|
43493
|
+
'x-code'?: string | undefined;
|
43187
43494
|
}, {
|
43188
43495
|
'x-tenant': string;
|
43189
43496
|
authorization: string;
|
43497
|
+
'x-code'?: string | undefined;
|
43498
|
+
'x-client-timezone'?: string | undefined;
|
43190
43499
|
}>>>;
|
43191
43500
|
};
|
43192
43501
|
createTicketAttachmentRecords: {
|
@@ -43530,12 +43839,18 @@ export declare const apiContract: {
|
|
43530
43839
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
43531
43840
|
'x-tenant': import("zod").ZodString;
|
43532
43841
|
authorization: import("zod").ZodString;
|
43842
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
43843
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
43533
43844
|
}, "strip", import("zod").ZodTypeAny, {
|
43534
43845
|
'x-tenant': string;
|
43535
43846
|
authorization: string;
|
43847
|
+
'x-client-timezone': string;
|
43848
|
+
'x-code'?: string | undefined;
|
43536
43849
|
}, {
|
43537
43850
|
'x-tenant': string;
|
43538
43851
|
authorization: string;
|
43852
|
+
'x-code'?: string | undefined;
|
43853
|
+
'x-client-timezone'?: string | undefined;
|
43539
43854
|
}>>>;
|
43540
43855
|
};
|
43541
43856
|
};
|
@@ -51212,6 +51527,16 @@ export declare const platformContract: {
|
|
51212
51527
|
message: string;
|
51213
51528
|
error?: any;
|
51214
51529
|
}>;
|
51530
|
+
400: import("zod").ZodObject<{
|
51531
|
+
message: import("zod").ZodString;
|
51532
|
+
error: import("zod").ZodAny;
|
51533
|
+
}, "strip", import("zod").ZodTypeAny, {
|
51534
|
+
message: string;
|
51535
|
+
error?: any;
|
51536
|
+
}, {
|
51537
|
+
message: string;
|
51538
|
+
error?: any;
|
51539
|
+
}>;
|
51215
51540
|
};
|
51216
51541
|
path: "/connect";
|
51217
51542
|
};
|
@@ -54555,12 +54880,18 @@ export declare const chatContract: {
|
|
54555
54880
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
54556
54881
|
'x-tenant': import("zod").ZodString;
|
54557
54882
|
authorization: import("zod").ZodString;
|
54883
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
54884
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
54558
54885
|
}, "strip", import("zod").ZodTypeAny, {
|
54559
54886
|
'x-tenant': string;
|
54560
54887
|
authorization: string;
|
54888
|
+
'x-client-timezone': string;
|
54889
|
+
'x-code'?: string | undefined;
|
54561
54890
|
}, {
|
54562
54891
|
'x-tenant': string;
|
54563
54892
|
authorization: string;
|
54893
|
+
'x-code'?: string | undefined;
|
54894
|
+
'x-client-timezone'?: string | undefined;
|
54564
54895
|
}>>>;
|
54565
54896
|
};
|
54566
54897
|
getRoomContact: {
|
@@ -55530,12 +55861,18 @@ export declare const chatContract: {
|
|
55530
55861
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
55531
55862
|
'x-tenant': import("zod").ZodString;
|
55532
55863
|
authorization: import("zod").ZodString;
|
55864
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
55865
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
55533
55866
|
}, "strip", import("zod").ZodTypeAny, {
|
55534
55867
|
'x-tenant': string;
|
55535
55868
|
authorization: string;
|
55869
|
+
'x-client-timezone': string;
|
55870
|
+
'x-code'?: string | undefined;
|
55536
55871
|
}, {
|
55537
55872
|
'x-tenant': string;
|
55538
55873
|
authorization: string;
|
55874
|
+
'x-code'?: string | undefined;
|
55875
|
+
'x-client-timezone'?: string | undefined;
|
55539
55876
|
}>>>;
|
55540
55877
|
};
|
55541
55878
|
updateRoomAttributes: {
|
@@ -58764,12 +59101,18 @@ export declare const chatContract: {
|
|
58764
59101
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
58765
59102
|
'x-tenant': import("zod").ZodString;
|
58766
59103
|
authorization: import("zod").ZodString;
|
59104
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
59105
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
58767
59106
|
}, "strip", import("zod").ZodTypeAny, {
|
58768
59107
|
'x-tenant': string;
|
58769
59108
|
authorization: string;
|
59109
|
+
'x-client-timezone': string;
|
59110
|
+
'x-code'?: string | undefined;
|
58770
59111
|
}, {
|
58771
59112
|
'x-tenant': string;
|
58772
59113
|
authorization: string;
|
59114
|
+
'x-code'?: string | undefined;
|
59115
|
+
'x-client-timezone'?: string | undefined;
|
58773
59116
|
}>>>;
|
58774
59117
|
};
|
58775
59118
|
sendMessage: {
|
@@ -64216,12 +64559,18 @@ export declare const chatContract: {
|
|
64216
64559
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
64217
64560
|
'x-tenant': import("zod").ZodString;
|
64218
64561
|
authorization: import("zod").ZodString;
|
64562
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
64563
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
64219
64564
|
}, "strip", import("zod").ZodTypeAny, {
|
64220
64565
|
'x-tenant': string;
|
64221
64566
|
authorization: string;
|
64567
|
+
'x-client-timezone': string;
|
64568
|
+
'x-code'?: string | undefined;
|
64222
64569
|
}, {
|
64223
64570
|
'x-tenant': string;
|
64224
64571
|
authorization: string;
|
64572
|
+
'x-code'?: string | undefined;
|
64573
|
+
'x-client-timezone'?: string | undefined;
|
64225
64574
|
}>>>;
|
64226
64575
|
};
|
64227
64576
|
receiveMessage: {
|
@@ -69309,12 +69658,18 @@ export declare const chatContract: {
|
|
69309
69658
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
69310
69659
|
'x-tenant': import("zod").ZodString;
|
69311
69660
|
authorization: import("zod").ZodString;
|
69661
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
69662
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
69312
69663
|
}, "strip", import("zod").ZodTypeAny, {
|
69313
69664
|
'x-tenant': string;
|
69314
69665
|
authorization: string;
|
69666
|
+
'x-client-timezone': string;
|
69667
|
+
'x-code'?: string | undefined;
|
69315
69668
|
}, {
|
69316
69669
|
'x-tenant': string;
|
69317
69670
|
authorization: string;
|
69671
|
+
'x-code'?: string | undefined;
|
69672
|
+
'x-client-timezone'?: string | undefined;
|
69318
69673
|
}>>>;
|
69319
69674
|
};
|
69320
69675
|
getRoomsByPlatformContactId: {
|
@@ -69329,14 +69684,24 @@ export declare const chatContract: {
|
|
69329
69684
|
responses: {
|
69330
69685
|
200: import("zod").ZodObject<{
|
69331
69686
|
requestId: import("zod").ZodString;
|
69332
|
-
data: import("zod").
|
69687
|
+
data: import("zod").ZodObject<{
|
69688
|
+
id: import("zod").ZodArray<import("zod").ZodString, "many">;
|
69689
|
+
}, "strip", import("zod").ZodTypeAny, {
|
69690
|
+
id: string[];
|
69691
|
+
}, {
|
69692
|
+
id: string[];
|
69693
|
+
}>;
|
69333
69694
|
total: import("zod").ZodNumber;
|
69334
69695
|
}, "strip", import("zod").ZodTypeAny, {
|
69335
|
-
data:
|
69696
|
+
data: {
|
69697
|
+
id: string[];
|
69698
|
+
};
|
69336
69699
|
total: number;
|
69337
69700
|
requestId: string;
|
69338
69701
|
}, {
|
69339
|
-
data:
|
69702
|
+
data: {
|
69703
|
+
id: string[];
|
69704
|
+
};
|
69340
69705
|
total: number;
|
69341
69706
|
requestId: string;
|
69342
69707
|
}>;
|
@@ -69345,12 +69710,18 @@ export declare const chatContract: {
|
|
69345
69710
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
69346
69711
|
'x-tenant': import("zod").ZodString;
|
69347
69712
|
authorization: import("zod").ZodString;
|
69713
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
69714
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
69348
69715
|
}, "strip", import("zod").ZodTypeAny, {
|
69349
69716
|
'x-tenant': string;
|
69350
69717
|
authorization: string;
|
69718
|
+
'x-client-timezone': string;
|
69719
|
+
'x-code'?: string | undefined;
|
69351
69720
|
}, {
|
69352
69721
|
'x-tenant': string;
|
69353
69722
|
authorization: string;
|
69723
|
+
'x-code'?: string | undefined;
|
69724
|
+
'x-client-timezone'?: string | undefined;
|
69354
69725
|
}>>>;
|
69355
69726
|
};
|
69356
69727
|
getMessages: {
|
@@ -74466,12 +74837,18 @@ export declare const chatContract: {
|
|
74466
74837
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
74467
74838
|
'x-tenant': import("zod").ZodString;
|
74468
74839
|
authorization: import("zod").ZodString;
|
74840
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
74841
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
74469
74842
|
}, "strip", import("zod").ZodTypeAny, {
|
74470
74843
|
'x-tenant': string;
|
74471
74844
|
authorization: string;
|
74845
|
+
'x-client-timezone': string;
|
74846
|
+
'x-code'?: string | undefined;
|
74472
74847
|
}, {
|
74473
74848
|
'x-tenant': string;
|
74474
74849
|
authorization: string;
|
74850
|
+
'x-code'?: string | undefined;
|
74851
|
+
'x-client-timezone'?: string | undefined;
|
74475
74852
|
}>>>;
|
74476
74853
|
};
|
74477
74854
|
solveRoom: {
|
@@ -77679,12 +78056,18 @@ export declare const chatContract: {
|
|
77679
78056
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
77680
78057
|
'x-tenant': import("zod").ZodString;
|
77681
78058
|
authorization: import("zod").ZodString;
|
78059
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
78060
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
77682
78061
|
}, "strip", import("zod").ZodTypeAny, {
|
77683
78062
|
'x-tenant': string;
|
77684
78063
|
authorization: string;
|
78064
|
+
'x-client-timezone': string;
|
78065
|
+
'x-code'?: string | undefined;
|
77685
78066
|
}, {
|
77686
78067
|
'x-tenant': string;
|
77687
78068
|
authorization: string;
|
78069
|
+
'x-code'?: string | undefined;
|
78070
|
+
'x-client-timezone'?: string | undefined;
|
77688
78071
|
}>>>;
|
77689
78072
|
};
|
77690
78073
|
updateAssignee: {
|
@@ -80880,12 +81263,18 @@ export declare const chatContract: {
|
|
80880
81263
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
80881
81264
|
'x-tenant': import("zod").ZodString;
|
80882
81265
|
authorization: import("zod").ZodString;
|
81266
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
81267
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
80883
81268
|
}, "strip", import("zod").ZodTypeAny, {
|
80884
81269
|
'x-tenant': string;
|
80885
81270
|
authorization: string;
|
81271
|
+
'x-client-timezone': string;
|
81272
|
+
'x-code'?: string | undefined;
|
80886
81273
|
}, {
|
80887
81274
|
'x-tenant': string;
|
80888
81275
|
authorization: string;
|
81276
|
+
'x-code'?: string | undefined;
|
81277
|
+
'x-client-timezone'?: string | undefined;
|
80889
81278
|
}>>>;
|
80890
81279
|
};
|
80891
81280
|
getRoom: {
|
@@ -84088,12 +84477,18 @@ export declare const chatContract: {
|
|
84088
84477
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
84089
84478
|
'x-tenant': import("zod").ZodString;
|
84090
84479
|
authorization: import("zod").ZodString;
|
84480
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
84481
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
84091
84482
|
}, "strip", import("zod").ZodTypeAny, {
|
84092
84483
|
'x-tenant': string;
|
84093
84484
|
authorization: string;
|
84485
|
+
'x-client-timezone': string;
|
84486
|
+
'x-code'?: string | undefined;
|
84094
84487
|
}, {
|
84095
84488
|
'x-tenant': string;
|
84096
84489
|
authorization: string;
|
84490
|
+
'x-code'?: string | undefined;
|
84491
|
+
'x-client-timezone'?: string | undefined;
|
84097
84492
|
}>>>;
|
84098
84493
|
};
|
84099
84494
|
createRoom: {
|
@@ -88440,12 +88835,18 @@ export declare const chatContract: {
|
|
88440
88835
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
88441
88836
|
'x-tenant': import("zod").ZodString;
|
88442
88837
|
authorization: import("zod").ZodString;
|
88838
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
88839
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
88443
88840
|
}, "strip", import("zod").ZodTypeAny, {
|
88444
88841
|
'x-tenant': string;
|
88445
88842
|
authorization: string;
|
88843
|
+
'x-client-timezone': string;
|
88844
|
+
'x-code'?: string | undefined;
|
88446
88845
|
}, {
|
88447
88846
|
'x-tenant': string;
|
88448
88847
|
authorization: string;
|
88848
|
+
'x-code'?: string | undefined;
|
88849
|
+
'x-client-timezone'?: string | undefined;
|
88449
88850
|
}>>>;
|
88450
88851
|
};
|
88451
88852
|
readRoom: {
|
@@ -91644,12 +92045,18 @@ export declare const chatContract: {
|
|
91644
92045
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
91645
92046
|
'x-tenant': import("zod").ZodString;
|
91646
92047
|
authorization: import("zod").ZodString;
|
92048
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
92049
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
91647
92050
|
}, "strip", import("zod").ZodTypeAny, {
|
91648
92051
|
'x-tenant': string;
|
91649
92052
|
authorization: string;
|
92053
|
+
'x-client-timezone': string;
|
92054
|
+
'x-code'?: string | undefined;
|
91650
92055
|
}, {
|
91651
92056
|
'x-tenant': string;
|
91652
92057
|
authorization: string;
|
92058
|
+
'x-code'?: string | undefined;
|
92059
|
+
'x-client-timezone'?: string | undefined;
|
91653
92060
|
}>>>;
|
91654
92061
|
};
|
91655
92062
|
searchRooms: {
|
@@ -94857,12 +95264,18 @@ export declare const chatContract: {
|
|
94857
95264
|
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
94858
95265
|
'x-tenant': import("zod").ZodString;
|
94859
95266
|
authorization: import("zod").ZodString;
|
95267
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
95268
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
94860
95269
|
}, "strip", import("zod").ZodTypeAny, {
|
94861
95270
|
'x-tenant': string;
|
94862
95271
|
authorization: string;
|
95272
|
+
'x-client-timezone': string;
|
95273
|
+
'x-code'?: string | undefined;
|
94863
95274
|
}, {
|
94864
95275
|
'x-tenant': string;
|
94865
95276
|
authorization: string;
|
95277
|
+
'x-code'?: string | undefined;
|
95278
|
+
'x-client-timezone'?: string | undefined;
|
94866
95279
|
}>>>;
|
94867
95280
|
};
|
94868
95281
|
};
|