@kl1/contracts 1.0.23 → 1.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist/index.js +23 -8
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +23 -8
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/app/index.d.ts +17 -0
  6. package/dist/src/app/index.d.ts.map +1 -0
  7. package/dist/src/attribute/index.d.ts +42 -0
  8. package/dist/src/attribute/index.d.ts.map +1 -1
  9. package/dist/src/auth/index.d.ts +30 -0
  10. package/dist/src/auth/index.d.ts.map +1 -1
  11. package/dist/src/base-contract.d.ts +6 -0
  12. package/dist/src/base-contract.d.ts.map +1 -1
  13. package/dist/src/category/index.d.ts +36 -0
  14. package/dist/src/category/index.d.ts.map +1 -1
  15. package/dist/src/channel/index.d.ts +12 -0
  16. package/dist/src/channel/index.d.ts.map +1 -1
  17. package/dist/src/chat/index.d.ts +91 -3
  18. package/dist/src/chat/index.d.ts.map +1 -1
  19. package/dist/src/contact/index.d.ts +72 -0
  20. package/dist/src/contact/index.d.ts.map +1 -1
  21. package/dist/src/contract.d.ts +909 -369
  22. package/dist/src/contract.d.ts.map +1 -1
  23. package/dist/src/cx-log/index.d.ts +133 -357
  24. package/dist/src/cx-log/index.d.ts.map +1 -1
  25. package/dist/src/cx-log/schema.d.ts +0 -287
  26. package/dist/src/cx-log/schema.d.ts.map +1 -1
  27. package/dist/src/dashboard/index.d.ts +117 -9
  28. package/dist/src/dashboard/index.d.ts.map +1 -1
  29. package/dist/src/dashboard/schema.d.ts +5 -5
  30. package/dist/src/extension/index.d.ts +36 -0
  31. package/dist/src/extension/index.d.ts.map +1 -1
  32. package/dist/src/mail/account-contract.d.ts +42 -0
  33. package/dist/src/mail/account-contract.d.ts.map +1 -1
  34. package/dist/src/mail/mail-contract.d.ts +42 -0
  35. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  36. package/dist/src/mail/mail-server.d.ts +216 -0
  37. package/dist/src/mail/mail-server.d.ts.map +1 -0
  38. package/dist/src/messenger/index.d.ts +10 -0
  39. package/dist/src/messenger/index.d.ts.map +1 -1
  40. package/dist/src/permission/index.d.ts +6 -0
  41. package/dist/src/permission/index.d.ts.map +1 -1
  42. package/dist/src/platform-contact/schema.d.ts +30 -0
  43. package/dist/src/platform-contact/schema.d.ts.map +1 -0
  44. package/dist/src/role/index.d.ts +24 -0
  45. package/dist/src/role/index.d.ts.map +1 -1
  46. package/dist/src/tag/index.d.ts +24 -0
  47. package/dist/src/tag/index.d.ts.map +1 -1
  48. package/dist/src/telephony-agent-presence-status/index.d.ts +24 -0
  49. package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  50. package/dist/src/telephony-extension/index.d.ts +6 -0
  51. package/dist/src/telephony-extension/index.d.ts.map +1 -1
  52. package/dist/src/ticket/index.d.ts +102 -0
  53. package/dist/src/ticket/index.d.ts.map +1 -1
  54. package/dist/src/user/index.d.ts +30 -0
  55. package/dist/src/user/index.d.ts.map +1 -1
  56. package/dist/src/user-presence-status-log/index.d.ts +6 -0
  57. package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
  58. package/dist/src/widget/index.d.ts +48 -0
  59. package/dist/src/widget/index.d.ts.map +1 -1
  60. package/dist/src/wrap-up-form/index.d.ts +18 -0
  61. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  62. package/package.json +1 -1
@@ -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,145 @@ 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;
19020
+ }>>>;
19021
+ };
19022
+ export: {
19023
+ summary: "Export cx-logs";
19024
+ method: "GET";
19025
+ query: import("zod").ZodOptional<import("zod").ZodObject<{
19026
+ page: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
19027
+ pageSize: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
19028
+ contactId: import("zod").ZodOptional<import("zod").ZodString>;
19029
+ caseId: import("zod").ZodOptional<import("zod").ZodString>;
19030
+ channelIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
19031
+ queueId: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
19032
+ agentIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
19033
+ direction: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"inbound">, import("zod").ZodLiteral<"outbound">]>, "many">>;
19034
+ disposition: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
19035
+ sentimentScore: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"positive">, import("zod").ZodLiteral<"negative">]>, "many">>;
19036
+ csatScore: import("zod").ZodOptional<import("zod").ZodString>;
19037
+ sla: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"meet">, import("zod").ZodLiteral<"unmeet">]>, "many">>;
19038
+ tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
19039
+ name: import("zod").ZodOptional<import("zod").ZodString>;
19040
+ contactLabels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
19041
+ email: import("zod").ZodOptional<import("zod").ZodString>;
19042
+ channel: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
19043
+ phone: import("zod").ZodOptional<import("zod").ZodString>;
19044
+ notes: import("zod").ZodOptional<import("zod").ZodString>;
19045
+ address: import("zod").ZodOptional<import("zod").ZodString>;
19046
+ company: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
19047
+ customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
19048
+ attributeId: import("zod").ZodString;
19049
+ value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
19050
+ type: import("zod").ZodOptional<import("zod").ZodString>;
19051
+ }, "strip", import("zod").ZodTypeAny, {
19052
+ value: (string | string[]) & (string | string[] | undefined);
19053
+ attributeId: string;
19054
+ type?: string | undefined;
19055
+ }, {
19056
+ value: (string | string[]) & (string | string[] | undefined);
19057
+ attributeId: string;
19058
+ type?: string | undefined;
19059
+ }>, "many">>;
19060
+ selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
19061
+ }, "strip", import("zod").ZodTypeAny, {
19062
+ page?: number | undefined;
19063
+ pageSize?: number | undefined;
19064
+ contactId?: string | undefined;
19065
+ caseId?: string | undefined;
19066
+ channelIds?: string[] | undefined;
19067
+ queueId?: string[] | undefined;
19068
+ agentIds?: string[] | undefined;
19069
+ direction?: ("inbound" | "outbound")[] | undefined;
19070
+ disposition?: string[] | undefined;
19071
+ sentimentScore?: ("positive" | "negative")[] | undefined;
19072
+ csatScore?: string | undefined;
19073
+ sla?: ("meet" | "unmeet")[] | undefined;
19074
+ tags?: string[] | undefined;
19075
+ name?: string | undefined;
19076
+ contactLabels?: string[] | undefined;
19077
+ email?: string | undefined;
19078
+ channel?: string[] | undefined;
19079
+ phone?: string | undefined;
19080
+ notes?: string | undefined;
19081
+ address?: string | undefined;
19082
+ company?: string[] | undefined;
19083
+ customFields?: {
19084
+ value: (string | string[]) & (string | string[] | undefined);
19085
+ attributeId: string;
19086
+ type?: string | undefined;
19087
+ }[] | undefined;
19088
+ selectedDate?: string | undefined;
19089
+ }, {
19090
+ page?: number | undefined;
19091
+ pageSize?: number | undefined;
19092
+ contactId?: string | undefined;
19093
+ caseId?: string | undefined;
19094
+ channelIds?: string[] | undefined;
19095
+ queueId?: string[] | undefined;
19096
+ agentIds?: string[] | undefined;
19097
+ direction?: ("inbound" | "outbound")[] | undefined;
19098
+ disposition?: string[] | undefined;
19099
+ sentimentScore?: ("positive" | "negative")[] | undefined;
19100
+ csatScore?: string | undefined;
19101
+ sla?: ("meet" | "unmeet")[] | undefined;
19102
+ tags?: string[] | undefined;
19103
+ name?: string | undefined;
19104
+ contactLabels?: string[] | undefined;
19105
+ email?: string | undefined;
19106
+ channel?: string[] | undefined;
19107
+ phone?: string | undefined;
19108
+ notes?: string | undefined;
19109
+ address?: string | undefined;
19110
+ company?: string[] | undefined;
19111
+ customFields?: {
19112
+ value: (string | string[]) & (string | string[] | undefined);
19113
+ attributeId: string;
19114
+ type?: string | undefined;
19115
+ }[] | undefined;
19116
+ selectedDate?: string | undefined;
19117
+ }>>;
19118
+ responses: {
19119
+ 200: null;
19120
+ 401: import("zod").ZodObject<{
19121
+ message: import("zod").ZodString;
19122
+ error: import("zod").ZodAny;
19123
+ }, "strip", import("zod").ZodTypeAny, {
19124
+ message: string;
19125
+ error?: any;
19126
+ }, {
19127
+ message: string;
19128
+ error?: any;
19129
+ }>;
19130
+ };
19131
+ path: "/cx-logs/export";
19132
+ headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
19133
+ 'x-tenant': import("zod").ZodString;
19134
+ authorization: import("zod").ZodString;
19135
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
19136
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
19137
+ }, "strip", import("zod").ZodTypeAny, {
19138
+ 'x-tenant': string;
19139
+ authorization: string;
19140
+ 'x-client-timezone': string;
19141
+ 'x-code'?: string | undefined;
19142
+ }, {
19143
+ 'x-tenant': string;
19144
+ authorization: string;
19145
+ 'x-code'?: string | undefined;
19146
+ 'x-client-timezone'?: string | undefined;
19299
19147
  }>>>;
19300
19148
  };
19301
19149
  };
@@ -19492,12 +19340,18 @@ export declare const apiContract: {
19492
19340
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
19493
19341
  'x-tenant': import("zod").ZodString;
19494
19342
  authorization: import("zod").ZodString;
19343
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
19344
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
19495
19345
  }, "strip", import("zod").ZodTypeAny, {
19496
19346
  'x-tenant': string;
19497
19347
  authorization: string;
19348
+ 'x-client-timezone': string;
19349
+ 'x-code'?: string | undefined;
19498
19350
  }, {
19499
19351
  'x-tenant': string;
19500
19352
  authorization: string;
19353
+ 'x-code'?: string | undefined;
19354
+ 'x-client-timezone'?: string | undefined;
19501
19355
  }>>>;
19502
19356
  };
19503
19357
  getQueueCallDashboardData: {
@@ -19549,7 +19403,7 @@ export declare const apiContract: {
19549
19403
  totalMaximumRingDuration: string;
19550
19404
  }>;
19551
19405
  telephonyQueueCallCountListByQueueNumber: import("zod").ZodArray<import("zod").ZodObject<{
19552
- queueNumber: import("zod").ZodNumber;
19406
+ queueNumber: import("zod").ZodString;
19553
19407
  queueName: import("zod").ZodString;
19554
19408
  yeastarQueueCallCountList: import("zod").ZodObject<{
19555
19409
  totalQueueCall: import("zod").ZodString;
@@ -19587,7 +19441,7 @@ export declare const apiContract: {
19587
19441
  }>;
19588
19442
  }, "strip", import("zod").ZodTypeAny, {
19589
19443
  queueName: string;
19590
- queueNumber: number;
19444
+ queueNumber: string;
19591
19445
  yeastarQueueCallCountList: {
19592
19446
  totalQueueCall: string;
19593
19447
  totalMissedQueueCall: string;
@@ -19602,7 +19456,7 @@ export declare const apiContract: {
19602
19456
  };
19603
19457
  }, {
19604
19458
  queueName: string;
19605
- queueNumber: number;
19459
+ queueNumber: string;
19606
19460
  yeastarQueueCallCountList: {
19607
19461
  totalQueueCall: string;
19608
19462
  totalMissedQueueCall: string;
@@ -19631,7 +19485,7 @@ export declare const apiContract: {
19631
19485
  };
19632
19486
  telephonyQueueCallCountListByQueueNumber: {
19633
19487
  queueName: string;
19634
- queueNumber: number;
19488
+ queueNumber: string;
19635
19489
  yeastarQueueCallCountList: {
19636
19490
  totalQueueCall: string;
19637
19491
  totalMissedQueueCall: string;
@@ -19660,7 +19514,7 @@ export declare const apiContract: {
19660
19514
  };
19661
19515
  telephonyQueueCallCountListByQueueNumber: {
19662
19516
  queueName: string;
19663
- queueNumber: number;
19517
+ queueNumber: string;
19664
19518
  yeastarQueueCallCountList: {
19665
19519
  totalQueueCall: string;
19666
19520
  totalMissedQueueCall: string;
@@ -19692,7 +19546,7 @@ export declare const apiContract: {
19692
19546
  };
19693
19547
  telephonyQueueCallCountListByQueueNumber: {
19694
19548
  queueName: string;
19695
- queueNumber: number;
19549
+ queueNumber: string;
19696
19550
  yeastarQueueCallCountList: {
19697
19551
  totalQueueCall: string;
19698
19552
  totalMissedQueueCall: string;
@@ -19724,7 +19578,7 @@ export declare const apiContract: {
19724
19578
  };
19725
19579
  telephonyQueueCallCountListByQueueNumber: {
19726
19580
  queueName: string;
19727
- queueNumber: number;
19581
+ queueNumber: string;
19728
19582
  yeastarQueueCallCountList: {
19729
19583
  totalQueueCall: string;
19730
19584
  totalMissedQueueCall: string;
@@ -19758,16 +19612,22 @@ export declare const apiContract: {
19758
19612
  error?: any;
19759
19613
  }>;
19760
19614
  };
19761
- path: "dashboard/queue-call-dashboard";
19615
+ path: "dashboard/queue_call_dashboard";
19762
19616
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
19763
19617
  'x-tenant': import("zod").ZodString;
19764
19618
  authorization: import("zod").ZodString;
19619
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
19620
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
19765
19621
  }, "strip", import("zod").ZodTypeAny, {
19766
19622
  'x-tenant': string;
19767
19623
  authorization: string;
19624
+ 'x-client-timezone': string;
19625
+ 'x-code'?: string | undefined;
19768
19626
  }, {
19769
19627
  'x-tenant': string;
19770
19628
  authorization: string;
19629
+ 'x-code'?: string | undefined;
19630
+ 'x-client-timezone'?: string | undefined;
19771
19631
  }>>>;
19772
19632
  };
19773
19633
  getQueueLiveCallCountList: {
@@ -19860,16 +19720,22 @@ export declare const apiContract: {
19860
19720
  error?: any;
19861
19721
  }>;
19862
19722
  };
19863
- path: "dashboard/queue-live-call-count-list";
19723
+ path: "dashboard/queue_live_call_count_list";
19864
19724
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
19865
19725
  'x-tenant': import("zod").ZodString;
19866
19726
  authorization: import("zod").ZodString;
19727
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
19728
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
19867
19729
  }, "strip", import("zod").ZodTypeAny, {
19868
19730
  'x-tenant': string;
19869
19731
  authorization: string;
19732
+ 'x-client-timezone': string;
19733
+ 'x-code'?: string | undefined;
19870
19734
  }, {
19871
19735
  'x-tenant': string;
19872
19736
  authorization: string;
19737
+ 'x-code'?: string | undefined;
19738
+ 'x-client-timezone'?: string | undefined;
19873
19739
  }>>>;
19874
19740
  };
19875
19741
  getQueryCalls: {
@@ -20048,12 +19914,18 @@ export declare const apiContract: {
20048
19914
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20049
19915
  'x-tenant': import("zod").ZodString;
20050
19916
  authorization: import("zod").ZodString;
19917
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
19918
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20051
19919
  }, "strip", import("zod").ZodTypeAny, {
20052
19920
  'x-tenant': string;
20053
19921
  authorization: string;
19922
+ 'x-client-timezone': string;
19923
+ 'x-code'?: string | undefined;
20054
19924
  }, {
20055
19925
  'x-tenant': string;
20056
19926
  authorization: string;
19927
+ 'x-code'?: string | undefined;
19928
+ 'x-client-timezone'?: string | undefined;
20057
19929
  }>>>;
20058
19930
  };
20059
19931
  getTicketDashboardData: {
@@ -20161,12 +20033,18 @@ export declare const apiContract: {
20161
20033
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20162
20034
  'x-tenant': import("zod").ZodString;
20163
20035
  authorization: import("zod").ZodString;
20036
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20037
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20164
20038
  }, "strip", import("zod").ZodTypeAny, {
20165
20039
  'x-tenant': string;
20166
20040
  authorization: string;
20041
+ 'x-client-timezone': string;
20042
+ 'x-code'?: string | undefined;
20167
20043
  }, {
20168
20044
  'x-tenant': string;
20169
20045
  authorization: string;
20046
+ 'x-code'?: string | undefined;
20047
+ 'x-client-timezone'?: string | undefined;
20170
20048
  }>>>;
20171
20049
  };
20172
20050
  getExpiredTicketData: {
@@ -20229,12 +20107,18 @@ export declare const apiContract: {
20229
20107
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20230
20108
  'x-tenant': import("zod").ZodString;
20231
20109
  authorization: import("zod").ZodString;
20110
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20111
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20232
20112
  }, "strip", import("zod").ZodTypeAny, {
20233
20113
  'x-tenant': string;
20234
20114
  authorization: string;
20115
+ 'x-client-timezone': string;
20116
+ 'x-code'?: string | undefined;
20235
20117
  }, {
20236
20118
  'x-tenant': string;
20237
20119
  authorization: string;
20120
+ 'x-code'?: string | undefined;
20121
+ 'x-client-timezone'?: string | undefined;
20238
20122
  }>>>;
20239
20123
  };
20240
20124
  getTicketTagData: {
@@ -20293,12 +20177,18 @@ export declare const apiContract: {
20293
20177
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20294
20178
  'x-tenant': import("zod").ZodString;
20295
20179
  authorization: import("zod").ZodString;
20180
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20181
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20296
20182
  }, "strip", import("zod").ZodTypeAny, {
20297
20183
  'x-tenant': string;
20298
20184
  authorization: string;
20185
+ 'x-client-timezone': string;
20186
+ 'x-code'?: string | undefined;
20299
20187
  }, {
20300
20188
  'x-tenant': string;
20301
20189
  authorization: string;
20190
+ 'x-code'?: string | undefined;
20191
+ 'x-client-timezone'?: string | undefined;
20302
20192
  }>>>;
20303
20193
  };
20304
20194
  getMessageChannelData: {
@@ -20346,12 +20236,18 @@ export declare const apiContract: {
20346
20236
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20347
20237
  'x-tenant': import("zod").ZodString;
20348
20238
  authorization: import("zod").ZodString;
20239
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20240
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20349
20241
  }, "strip", import("zod").ZodTypeAny, {
20350
20242
  'x-tenant': string;
20351
20243
  authorization: string;
20244
+ 'x-client-timezone': string;
20245
+ 'x-code'?: string | undefined;
20352
20246
  }, {
20353
20247
  'x-tenant': string;
20354
20248
  authorization: string;
20249
+ 'x-code'?: string | undefined;
20250
+ 'x-client-timezone'?: string | undefined;
20355
20251
  }>>>;
20356
20252
  };
20357
20253
  getMessageTagData: {
@@ -20410,12 +20306,18 @@ export declare const apiContract: {
20410
20306
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20411
20307
  'x-tenant': import("zod").ZodString;
20412
20308
  authorization: import("zod").ZodString;
20309
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20310
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20413
20311
  }, "strip", import("zod").ZodTypeAny, {
20414
20312
  'x-tenant': string;
20415
20313
  authorization: string;
20314
+ 'x-client-timezone': string;
20315
+ 'x-code'?: string | undefined;
20416
20316
  }, {
20417
20317
  'x-tenant': string;
20418
20318
  authorization: string;
20319
+ 'x-code'?: string | undefined;
20320
+ 'x-client-timezone'?: string | undefined;
20419
20321
  }>>>;
20420
20322
  };
20421
20323
  getCallTagData: {
@@ -20474,12 +20376,18 @@ export declare const apiContract: {
20474
20376
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20475
20377
  'x-tenant': import("zod").ZodString;
20476
20378
  authorization: import("zod").ZodString;
20379
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20380
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20477
20381
  }, "strip", import("zod").ZodTypeAny, {
20478
20382
  'x-tenant': string;
20479
20383
  authorization: string;
20384
+ 'x-client-timezone': string;
20385
+ 'x-code'?: string | undefined;
20480
20386
  }, {
20481
20387
  'x-tenant': string;
20482
20388
  authorization: string;
20389
+ 'x-code'?: string | undefined;
20390
+ 'x-client-timezone'?: string | undefined;
20483
20391
  }>>>;
20484
20392
  };
20485
20393
  getCallResultData: {
@@ -20536,12 +20444,18 @@ export declare const apiContract: {
20536
20444
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20537
20445
  'x-tenant': import("zod").ZodString;
20538
20446
  authorization: import("zod").ZodString;
20447
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20448
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20539
20449
  }, "strip", import("zod").ZodTypeAny, {
20540
20450
  'x-tenant': string;
20541
20451
  authorization: string;
20452
+ 'x-client-timezone': string;
20453
+ 'x-code'?: string | undefined;
20542
20454
  }, {
20543
20455
  'x-tenant': string;
20544
20456
  authorization: string;
20457
+ 'x-code'?: string | undefined;
20458
+ 'x-client-timezone'?: string | undefined;
20545
20459
  }>>>;
20546
20460
  };
20547
20461
  getConversationActivity: {
@@ -20595,12 +20509,18 @@ export declare const apiContract: {
20595
20509
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20596
20510
  'x-tenant': import("zod").ZodString;
20597
20511
  authorization: import("zod").ZodString;
20512
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20513
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20598
20514
  }, "strip", import("zod").ZodTypeAny, {
20599
20515
  'x-tenant': string;
20600
20516
  authorization: string;
20517
+ 'x-client-timezone': string;
20518
+ 'x-code'?: string | undefined;
20601
20519
  }, {
20602
20520
  'x-tenant': string;
20603
20521
  authorization: string;
20522
+ 'x-code'?: string | undefined;
20523
+ 'x-client-timezone'?: string | undefined;
20604
20524
  }>>>;
20605
20525
  };
20606
20526
  getRoomStatusCountByStatus: {
@@ -20664,12 +20584,18 @@ export declare const apiContract: {
20664
20584
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20665
20585
  'x-tenant': import("zod").ZodString;
20666
20586
  authorization: import("zod").ZodString;
20587
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20588
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20667
20589
  }, "strip", import("zod").ZodTypeAny, {
20668
20590
  'x-tenant': string;
20669
20591
  authorization: string;
20592
+ 'x-client-timezone': string;
20593
+ 'x-code'?: string | undefined;
20670
20594
  }, {
20671
20595
  'x-tenant': string;
20672
20596
  authorization: string;
20597
+ 'x-code'?: string | undefined;
20598
+ 'x-client-timezone'?: string | undefined;
20673
20599
  }>>>;
20674
20600
  };
20675
20601
  getRoomStatusAverage: {
@@ -20798,12 +20724,18 @@ export declare const apiContract: {
20798
20724
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20799
20725
  'x-tenant': import("zod").ZodString;
20800
20726
  authorization: import("zod").ZodString;
20727
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20728
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20801
20729
  }, "strip", import("zod").ZodTypeAny, {
20802
20730
  'x-tenant': string;
20803
20731
  authorization: string;
20732
+ 'x-client-timezone': string;
20733
+ 'x-code'?: string | undefined;
20804
20734
  }, {
20805
20735
  'x-tenant': string;
20806
20736
  authorization: string;
20737
+ 'x-code'?: string | undefined;
20738
+ 'x-client-timezone'?: string | undefined;
20807
20739
  }>>>;
20808
20740
  };
20809
20741
  getMessagePlatformData: {
@@ -20923,12 +20855,18 @@ export declare const apiContract: {
20923
20855
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20924
20856
  'x-tenant': import("zod").ZodString;
20925
20857
  authorization: import("zod").ZodString;
20858
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20859
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
20926
20860
  }, "strip", import("zod").ZodTypeAny, {
20927
20861
  'x-tenant': string;
20928
20862
  authorization: string;
20863
+ 'x-client-timezone': string;
20864
+ 'x-code'?: string | undefined;
20929
20865
  }, {
20930
20866
  'x-tenant': string;
20931
20867
  authorization: string;
20868
+ 'x-code'?: string | undefined;
20869
+ 'x-client-timezone'?: string | undefined;
20932
20870
  }>>>;
20933
20871
  };
20934
20872
  getMessageRoomStatusDispositionData: {
@@ -20997,12 +20935,18 @@ export declare const apiContract: {
20997
20935
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
20998
20936
  'x-tenant': import("zod").ZodString;
20999
20937
  authorization: import("zod").ZodString;
20938
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
20939
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
21000
20940
  }, "strip", import("zod").ZodTypeAny, {
21001
20941
  'x-tenant': string;
21002
20942
  authorization: string;
20943
+ 'x-client-timezone': string;
20944
+ 'x-code'?: string | undefined;
21003
20945
  }, {
21004
20946
  'x-tenant': string;
21005
20947
  authorization: string;
20948
+ 'x-code'?: string | undefined;
20949
+ 'x-client-timezone'?: string | undefined;
21006
20950
  }>>>;
21007
20951
  };
21008
20952
  getIncomingMessageByPlatform: {
@@ -21061,12 +21005,18 @@ export declare const apiContract: {
21061
21005
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
21062
21006
  'x-tenant': import("zod").ZodString;
21063
21007
  authorization: import("zod").ZodString;
21008
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
21009
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
21064
21010
  }, "strip", import("zod").ZodTypeAny, {
21065
21011
  'x-tenant': string;
21066
21012
  authorization: string;
21013
+ 'x-client-timezone': string;
21014
+ 'x-code'?: string | undefined;
21067
21015
  }, {
21068
21016
  'x-tenant': string;
21069
21017
  authorization: string;
21018
+ 'x-code'?: string | undefined;
21019
+ 'x-client-timezone'?: string | undefined;
21070
21020
  }>>>;
21071
21021
  };
21072
21022
  getTotalIncomingMessageData: {
@@ -21120,12 +21070,18 @@ export declare const apiContract: {
21120
21070
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
21121
21071
  'x-tenant': import("zod").ZodString;
21122
21072
  authorization: import("zod").ZodString;
21073
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
21074
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
21123
21075
  }, "strip", import("zod").ZodTypeAny, {
21124
21076
  'x-tenant': string;
21125
21077
  authorization: string;
21078
+ 'x-client-timezone': string;
21079
+ 'x-code'?: string | undefined;
21126
21080
  }, {
21127
21081
  'x-tenant': string;
21128
21082
  authorization: string;
21083
+ 'x-code'?: string | undefined;
21084
+ 'x-client-timezone'?: string | undefined;
21129
21085
  }>>>;
21130
21086
  };
21131
21087
  };
@@ -21213,12 +21169,18 @@ export declare const apiContract: {
21213
21169
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
21214
21170
  'x-tenant': import("zod").ZodString;
21215
21171
  authorization: import("zod").ZodString;
21172
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
21173
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
21216
21174
  }, "strip", import("zod").ZodTypeAny, {
21217
21175
  'x-tenant': string;
21218
21176
  authorization: string;
21177
+ 'x-client-timezone': string;
21178
+ 'x-code'?: string | undefined;
21219
21179
  }, {
21220
21180
  'x-tenant': string;
21221
21181
  authorization: string;
21182
+ 'x-code'?: string | undefined;
21183
+ 'x-client-timezone'?: string | undefined;
21222
21184
  }>>>;
21223
21185
  };
21224
21186
  };
@@ -21386,12 +21348,18 @@ export declare const apiContract: {
21386
21348
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
21387
21349
  'x-tenant': import("zod").ZodString;
21388
21350
  authorization: import("zod").ZodString;
21351
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
21352
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
21389
21353
  }, "strip", import("zod").ZodTypeAny, {
21390
21354
  'x-tenant': string;
21391
21355
  authorization: string;
21356
+ 'x-client-timezone': string;
21357
+ 'x-code'?: string | undefined;
21392
21358
  }, {
21393
21359
  'x-tenant': string;
21394
21360
  authorization: string;
21361
+ 'x-code'?: string | undefined;
21362
+ 'x-client-timezone'?: string | undefined;
21395
21363
  }>>>;
21396
21364
  };
21397
21365
  getRoles: {
@@ -21527,12 +21495,18 @@ export declare const apiContract: {
21527
21495
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
21528
21496
  'x-tenant': import("zod").ZodString;
21529
21497
  authorization: import("zod").ZodString;
21498
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
21499
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
21530
21500
  }, "strip", import("zod").ZodTypeAny, {
21531
21501
  'x-tenant': string;
21532
21502
  authorization: string;
21503
+ 'x-client-timezone': string;
21504
+ 'x-code'?: string | undefined;
21533
21505
  }, {
21534
21506
  'x-tenant': string;
21535
21507
  authorization: string;
21508
+ 'x-code'?: string | undefined;
21509
+ 'x-client-timezone'?: string | undefined;
21536
21510
  }>>>;
21537
21511
  };
21538
21512
  updateRole: {
@@ -21705,12 +21679,18 @@ export declare const apiContract: {
21705
21679
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
21706
21680
  'x-tenant': import("zod").ZodString;
21707
21681
  authorization: import("zod").ZodString;
21682
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
21683
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
21708
21684
  }, "strip", import("zod").ZodTypeAny, {
21709
21685
  'x-tenant': string;
21710
21686
  authorization: string;
21687
+ 'x-client-timezone': string;
21688
+ 'x-code'?: string | undefined;
21711
21689
  }, {
21712
21690
  'x-tenant': string;
21713
21691
  authorization: string;
21692
+ 'x-code'?: string | undefined;
21693
+ 'x-client-timezone'?: string | undefined;
21714
21694
  }>>>;
21715
21695
  };
21716
21696
  deleteRole: {
@@ -21750,12 +21730,18 @@ export declare const apiContract: {
21750
21730
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
21751
21731
  'x-tenant': import("zod").ZodString;
21752
21732
  authorization: import("zod").ZodString;
21733
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
21734
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
21753
21735
  }, "strip", import("zod").ZodTypeAny, {
21754
21736
  'x-tenant': string;
21755
21737
  authorization: string;
21738
+ 'x-client-timezone': string;
21739
+ 'x-code'?: string | undefined;
21756
21740
  }, {
21757
21741
  'x-tenant': string;
21758
21742
  authorization: string;
21743
+ 'x-code'?: string | undefined;
21744
+ 'x-client-timezone'?: string | undefined;
21759
21745
  }>>>;
21760
21746
  };
21761
21747
  };
@@ -22103,12 +22089,18 @@ export declare const apiContract: {
22103
22089
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
22104
22090
  'x-tenant': import("zod").ZodString;
22105
22091
  authorization: import("zod").ZodString;
22092
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
22093
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
22106
22094
  }, "strip", import("zod").ZodTypeAny, {
22107
22095
  'x-tenant': string;
22108
22096
  authorization: string;
22097
+ 'x-client-timezone': string;
22098
+ 'x-code'?: string | undefined;
22109
22099
  }, {
22110
22100
  'x-tenant': string;
22111
22101
  authorization: string;
22102
+ 'x-code'?: string | undefined;
22103
+ 'x-client-timezone'?: string | undefined;
22112
22104
  }>>>;
22113
22105
  };
22114
22106
  getUsers: {
@@ -22347,12 +22339,18 @@ export declare const apiContract: {
22347
22339
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
22348
22340
  'x-tenant': import("zod").ZodString;
22349
22341
  authorization: import("zod").ZodString;
22342
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
22343
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
22350
22344
  }, "strip", import("zod").ZodTypeAny, {
22351
22345
  'x-tenant': string;
22352
22346
  authorization: string;
22347
+ 'x-client-timezone': string;
22348
+ 'x-code'?: string | undefined;
22353
22349
  }, {
22354
22350
  'x-tenant': string;
22355
22351
  authorization: string;
22352
+ 'x-code'?: string | undefined;
22353
+ 'x-client-timezone'?: string | undefined;
22356
22354
  }>>>;
22357
22355
  };
22358
22356
  getUserById: {
@@ -22587,12 +22585,18 @@ export declare const apiContract: {
22587
22585
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
22588
22586
  'x-tenant': import("zod").ZodString;
22589
22587
  authorization: import("zod").ZodString;
22588
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
22589
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
22590
22590
  }, "strip", import("zod").ZodTypeAny, {
22591
22591
  'x-tenant': string;
22592
22592
  authorization: string;
22593
+ 'x-client-timezone': string;
22594
+ 'x-code'?: string | undefined;
22593
22595
  }, {
22594
22596
  'x-tenant': string;
22595
22597
  authorization: string;
22598
+ 'x-code'?: string | undefined;
22599
+ 'x-client-timezone'?: string | undefined;
22596
22600
  }>>>;
22597
22601
  };
22598
22602
  updateUser: {
@@ -22948,12 +22952,18 @@ export declare const apiContract: {
22948
22952
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
22949
22953
  'x-tenant': import("zod").ZodString;
22950
22954
  authorization: import("zod").ZodString;
22955
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
22956
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
22951
22957
  }, "strip", import("zod").ZodTypeAny, {
22952
22958
  'x-tenant': string;
22953
22959
  authorization: string;
22960
+ 'x-client-timezone': string;
22961
+ 'x-code'?: string | undefined;
22954
22962
  }, {
22955
22963
  'x-tenant': string;
22956
22964
  authorization: string;
22965
+ 'x-code'?: string | undefined;
22966
+ 'x-client-timezone'?: string | undefined;
22957
22967
  }>>>;
22958
22968
  };
22959
22969
  deleteUser: {
@@ -22993,12 +23003,18 @@ export declare const apiContract: {
22993
23003
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
22994
23004
  'x-tenant': import("zod").ZodString;
22995
23005
  authorization: import("zod").ZodString;
23006
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
23007
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
22996
23008
  }, "strip", import("zod").ZodTypeAny, {
22997
23009
  'x-tenant': string;
22998
23010
  authorization: string;
23011
+ 'x-client-timezone': string;
23012
+ 'x-code'?: string | undefined;
22999
23013
  }, {
23000
23014
  'x-tenant': string;
23001
23015
  authorization: string;
23016
+ 'x-code'?: string | undefined;
23017
+ 'x-client-timezone'?: string | undefined;
23002
23018
  }>>>;
23003
23019
  };
23004
23020
  };
@@ -23123,12 +23139,18 @@ export declare const apiContract: {
23123
23139
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
23124
23140
  'x-tenant': import("zod").ZodString;
23125
23141
  authorization: import("zod").ZodString;
23142
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
23143
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
23126
23144
  }, "strip", import("zod").ZodTypeAny, {
23127
23145
  'x-tenant': string;
23128
23146
  authorization: string;
23147
+ 'x-client-timezone': string;
23148
+ 'x-code'?: string | undefined;
23129
23149
  }, {
23130
23150
  'x-tenant': string;
23131
23151
  authorization: string;
23152
+ 'x-code'?: string | undefined;
23153
+ 'x-client-timezone'?: string | undefined;
23132
23154
  }>>>;
23133
23155
  };
23134
23156
  getExtensions: {
@@ -23415,12 +23437,18 @@ export declare const apiContract: {
23415
23437
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
23416
23438
  'x-tenant': import("zod").ZodString;
23417
23439
  authorization: import("zod").ZodString;
23440
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
23441
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
23418
23442
  }, "strip", import("zod").ZodTypeAny, {
23419
23443
  'x-tenant': string;
23420
23444
  authorization: string;
23445
+ 'x-client-timezone': string;
23446
+ 'x-code'?: string | undefined;
23421
23447
  }, {
23422
23448
  'x-tenant': string;
23423
23449
  authorization: string;
23450
+ 'x-code'?: string | undefined;
23451
+ 'x-client-timezone'?: string | undefined;
23424
23452
  }>>>;
23425
23453
  };
23426
23454
  getExtensionByUserId: {
@@ -23500,12 +23528,18 @@ export declare const apiContract: {
23500
23528
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
23501
23529
  'x-tenant': import("zod").ZodString;
23502
23530
  authorization: import("zod").ZodString;
23531
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
23532
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
23503
23533
  }, "strip", import("zod").ZodTypeAny, {
23504
23534
  'x-tenant': string;
23505
23535
  authorization: string;
23536
+ 'x-client-timezone': string;
23537
+ 'x-code'?: string | undefined;
23506
23538
  }, {
23507
23539
  'x-tenant': string;
23508
23540
  authorization: string;
23541
+ 'x-code'?: string | undefined;
23542
+ 'x-client-timezone'?: string | undefined;
23509
23543
  }>>>;
23510
23544
  };
23511
23545
  getExtensionByDialpad: {
@@ -23620,12 +23654,18 @@ export declare const apiContract: {
23620
23654
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
23621
23655
  'x-tenant': import("zod").ZodString;
23622
23656
  authorization: import("zod").ZodString;
23657
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
23658
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
23623
23659
  }, "strip", import("zod").ZodTypeAny, {
23624
23660
  'x-tenant': string;
23625
23661
  authorization: string;
23662
+ 'x-client-timezone': string;
23663
+ 'x-code'?: string | undefined;
23626
23664
  }, {
23627
23665
  'x-tenant': string;
23628
23666
  authorization: string;
23667
+ 'x-code'?: string | undefined;
23668
+ 'x-client-timezone'?: string | undefined;
23629
23669
  }>>>;
23630
23670
  };
23631
23671
  updateExtension: {
@@ -23738,12 +23778,18 @@ export declare const apiContract: {
23738
23778
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
23739
23779
  'x-tenant': import("zod").ZodString;
23740
23780
  authorization: import("zod").ZodString;
23781
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
23782
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
23741
23783
  }, "strip", import("zod").ZodTypeAny, {
23742
23784
  'x-tenant': string;
23743
23785
  authorization: string;
23786
+ 'x-client-timezone': string;
23787
+ 'x-code'?: string | undefined;
23744
23788
  }, {
23745
23789
  'x-tenant': string;
23746
23790
  authorization: string;
23791
+ 'x-code'?: string | undefined;
23792
+ 'x-client-timezone'?: string | undefined;
23747
23793
  }>>>;
23748
23794
  };
23749
23795
  deleteExtension: {
@@ -23783,12 +23829,18 @@ export declare const apiContract: {
23783
23829
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
23784
23830
  'x-tenant': import("zod").ZodString;
23785
23831
  authorization: import("zod").ZodString;
23832
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
23833
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
23786
23834
  }, "strip", import("zod").ZodTypeAny, {
23787
23835
  'x-tenant': string;
23788
23836
  authorization: string;
23837
+ 'x-client-timezone': string;
23838
+ 'x-code'?: string | undefined;
23789
23839
  }, {
23790
23840
  'x-tenant': string;
23791
23841
  authorization: string;
23842
+ 'x-code'?: string | undefined;
23843
+ 'x-client-timezone'?: string | undefined;
23792
23844
  }>>>;
23793
23845
  };
23794
23846
  };
@@ -23932,12 +23984,18 @@ export declare const apiContract: {
23932
23984
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
23933
23985
  'x-tenant': import("zod").ZodString;
23934
23986
  authorization: import("zod").ZodString;
23987
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
23988
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
23935
23989
  }, "strip", import("zod").ZodTypeAny, {
23936
23990
  'x-tenant': string;
23937
23991
  authorization: string;
23992
+ 'x-client-timezone': string;
23993
+ 'x-code'?: string | undefined;
23938
23994
  }, {
23939
23995
  'x-tenant': string;
23940
23996
  authorization: string;
23997
+ 'x-code'?: string | undefined;
23998
+ 'x-client-timezone'?: string | undefined;
23941
23999
  }>>>;
23942
24000
  };
23943
24001
  getWidgets: {
@@ -24056,12 +24114,18 @@ export declare const apiContract: {
24056
24114
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24057
24115
  'x-tenant': import("zod").ZodString;
24058
24116
  authorization: import("zod").ZodString;
24117
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
24118
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24059
24119
  }, "strip", import("zod").ZodTypeAny, {
24060
24120
  'x-tenant': string;
24061
24121
  authorization: string;
24122
+ 'x-client-timezone': string;
24123
+ 'x-code'?: string | undefined;
24062
24124
  }, {
24063
24125
  'x-tenant': string;
24064
24126
  authorization: string;
24127
+ 'x-code'?: string | undefined;
24128
+ 'x-client-timezone'?: string | undefined;
24065
24129
  }>>>;
24066
24130
  };
24067
24131
  getMenuWidgets: {
@@ -24141,12 +24205,18 @@ export declare const apiContract: {
24141
24205
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24142
24206
  'x-tenant': import("zod").ZodString;
24143
24207
  authorization: import("zod").ZodString;
24208
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
24209
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24144
24210
  }, "strip", import("zod").ZodTypeAny, {
24145
24211
  'x-tenant': string;
24146
24212
  authorization: string;
24213
+ 'x-client-timezone': string;
24214
+ 'x-code'?: string | undefined;
24147
24215
  }, {
24148
24216
  'x-tenant': string;
24149
24217
  authorization: string;
24218
+ 'x-code'?: string | undefined;
24219
+ 'x-client-timezone'?: string | undefined;
24150
24220
  }>>>;
24151
24221
  };
24152
24222
  getTicketWidgets: {
@@ -24226,12 +24296,18 @@ export declare const apiContract: {
24226
24296
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24227
24297
  'x-tenant': import("zod").ZodString;
24228
24298
  authorization: import("zod").ZodString;
24299
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
24300
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24229
24301
  }, "strip", import("zod").ZodTypeAny, {
24230
24302
  'x-tenant': string;
24231
24303
  authorization: string;
24304
+ 'x-client-timezone': string;
24305
+ 'x-code'?: string | undefined;
24232
24306
  }, {
24233
24307
  'x-tenant': string;
24234
24308
  authorization: string;
24309
+ 'x-code'?: string | undefined;
24310
+ 'x-client-timezone'?: string | undefined;
24235
24311
  }>>>;
24236
24312
  };
24237
24313
  getContactWidgets: {
@@ -24311,12 +24387,18 @@ export declare const apiContract: {
24311
24387
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24312
24388
  'x-tenant': import("zod").ZodString;
24313
24389
  authorization: import("zod").ZodString;
24390
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
24391
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24314
24392
  }, "strip", import("zod").ZodTypeAny, {
24315
24393
  'x-tenant': string;
24316
24394
  authorization: string;
24395
+ 'x-client-timezone': string;
24396
+ 'x-code'?: string | undefined;
24317
24397
  }, {
24318
24398
  'x-tenant': string;
24319
24399
  authorization: string;
24400
+ 'x-code'?: string | undefined;
24401
+ 'x-client-timezone'?: string | undefined;
24320
24402
  }>>>;
24321
24403
  };
24322
24404
  getWidgetById: {
@@ -24403,12 +24485,18 @@ export declare const apiContract: {
24403
24485
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24404
24486
  'x-tenant': import("zod").ZodString;
24405
24487
  authorization: import("zod").ZodString;
24488
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
24489
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24406
24490
  }, "strip", import("zod").ZodTypeAny, {
24407
24491
  'x-tenant': string;
24408
24492
  authorization: string;
24493
+ 'x-client-timezone': string;
24494
+ 'x-code'?: string | undefined;
24409
24495
  }, {
24410
24496
  'x-tenant': string;
24411
24497
  authorization: string;
24498
+ 'x-code'?: string | undefined;
24499
+ 'x-client-timezone'?: string | undefined;
24412
24500
  }>>>;
24413
24501
  };
24414
24502
  updateWidget: {
@@ -24547,12 +24635,18 @@ export declare const apiContract: {
24547
24635
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24548
24636
  'x-tenant': import("zod").ZodString;
24549
24637
  authorization: import("zod").ZodString;
24638
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
24639
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24550
24640
  }, "strip", import("zod").ZodTypeAny, {
24551
24641
  'x-tenant': string;
24552
24642
  authorization: string;
24643
+ 'x-client-timezone': string;
24644
+ 'x-code'?: string | undefined;
24553
24645
  }, {
24554
24646
  'x-tenant': string;
24555
24647
  authorization: string;
24648
+ 'x-code'?: string | undefined;
24649
+ 'x-client-timezone'?: string | undefined;
24556
24650
  }>>>;
24557
24651
  };
24558
24652
  deleteWidget: {
@@ -24592,12 +24686,18 @@ export declare const apiContract: {
24592
24686
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24593
24687
  'x-tenant': import("zod").ZodString;
24594
24688
  authorization: import("zod").ZodString;
24689
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
24690
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24595
24691
  }, "strip", import("zod").ZodTypeAny, {
24596
24692
  'x-tenant': string;
24597
24693
  authorization: string;
24694
+ 'x-client-timezone': string;
24695
+ 'x-code'?: string | undefined;
24598
24696
  }, {
24599
24697
  'x-tenant': string;
24600
24698
  authorization: string;
24699
+ 'x-code'?: string | undefined;
24700
+ 'x-client-timezone'?: string | undefined;
24601
24701
  }>>>;
24602
24702
  };
24603
24703
  };
@@ -24756,12 +24856,18 @@ export declare const apiContract: {
24756
24856
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24757
24857
  'x-tenant': import("zod").ZodString;
24758
24858
  authorization: import("zod").ZodString;
24859
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
24860
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24759
24861
  }, "strip", import("zod").ZodTypeAny, {
24760
24862
  'x-tenant': string;
24761
24863
  authorization: string;
24864
+ 'x-client-timezone': string;
24865
+ 'x-code'?: string | undefined;
24762
24866
  }, {
24763
24867
  'x-tenant': string;
24764
24868
  authorization: string;
24869
+ 'x-code'?: string | undefined;
24870
+ 'x-client-timezone'?: string | undefined;
24765
24871
  }>>>;
24766
24872
  };
24767
24873
  getWrapUpForms: {
@@ -24893,12 +24999,18 @@ export declare const apiContract: {
24893
24999
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
24894
25000
  'x-tenant': import("zod").ZodString;
24895
25001
  authorization: import("zod").ZodString;
25002
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
25003
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
24896
25004
  }, "strip", import("zod").ZodTypeAny, {
24897
25005
  'x-tenant': string;
24898
25006
  authorization: string;
25007
+ 'x-client-timezone': string;
25008
+ 'x-code'?: string | undefined;
24899
25009
  }, {
24900
25010
  'x-tenant': string;
24901
25011
  authorization: string;
25012
+ 'x-code'?: string | undefined;
25013
+ 'x-client-timezone'?: string | undefined;
24902
25014
  }>>>;
24903
25015
  };
24904
25016
  updateWrapUpForm: {
@@ -25065,12 +25177,18 @@ export declare const apiContract: {
25065
25177
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
25066
25178
  'x-tenant': import("zod").ZodString;
25067
25179
  authorization: import("zod").ZodString;
25180
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
25181
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
25068
25182
  }, "strip", import("zod").ZodTypeAny, {
25069
25183
  'x-tenant': string;
25070
25184
  authorization: string;
25185
+ 'x-client-timezone': string;
25186
+ 'x-code'?: string | undefined;
25071
25187
  }, {
25072
25188
  'x-tenant': string;
25073
25189
  authorization: string;
25190
+ 'x-code'?: string | undefined;
25191
+ 'x-client-timezone'?: string | undefined;
25074
25192
  }>>>;
25075
25193
  };
25076
25194
  };
@@ -25277,12 +25395,18 @@ export declare const apiContract: {
25277
25395
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
25278
25396
  'x-tenant': import("zod").ZodString;
25279
25397
  authorization: import("zod").ZodString;
25398
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
25399
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
25280
25400
  }, "strip", import("zod").ZodTypeAny, {
25281
25401
  'x-tenant': string;
25282
25402
  authorization: string;
25403
+ 'x-client-timezone': string;
25404
+ 'x-code'?: string | undefined;
25283
25405
  }, {
25284
25406
  'x-tenant': string;
25285
25407
  authorization: string;
25408
+ 'x-code'?: string | undefined;
25409
+ 'x-client-timezone'?: string | undefined;
25286
25410
  }>>>;
25287
25411
  };
25288
25412
  getCategories: {
@@ -25416,12 +25540,18 @@ export declare const apiContract: {
25416
25540
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
25417
25541
  'x-tenant': import("zod").ZodString;
25418
25542
  authorization: import("zod").ZodString;
25543
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
25544
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
25419
25545
  }, "strip", import("zod").ZodTypeAny, {
25420
25546
  'x-tenant': string;
25421
25547
  authorization: string;
25548
+ 'x-client-timezone': string;
25549
+ 'x-code'?: string | undefined;
25422
25550
  }, {
25423
25551
  'x-tenant': string;
25424
25552
  authorization: string;
25553
+ 'x-code'?: string | undefined;
25554
+ 'x-client-timezone'?: string | undefined;
25425
25555
  }>>>;
25426
25556
  };
25427
25557
  updateCategory: {
@@ -25607,12 +25737,18 @@ export declare const apiContract: {
25607
25737
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
25608
25738
  'x-tenant': import("zod").ZodString;
25609
25739
  authorization: import("zod").ZodString;
25740
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
25741
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
25610
25742
  }, "strip", import("zod").ZodTypeAny, {
25611
25743
  'x-tenant': string;
25612
25744
  authorization: string;
25745
+ 'x-client-timezone': string;
25746
+ 'x-code'?: string | undefined;
25613
25747
  }, {
25614
25748
  'x-tenant': string;
25615
25749
  authorization: string;
25750
+ 'x-code'?: string | undefined;
25751
+ 'x-client-timezone'?: string | undefined;
25616
25752
  }>>>;
25617
25753
  };
25618
25754
  deleteCategory: {
@@ -25651,12 +25787,18 @@ export declare const apiContract: {
25651
25787
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
25652
25788
  'x-tenant': import("zod").ZodString;
25653
25789
  authorization: import("zod").ZodString;
25790
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
25791
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
25654
25792
  }, "strip", import("zod").ZodTypeAny, {
25655
25793
  'x-tenant': string;
25656
25794
  authorization: string;
25795
+ 'x-client-timezone': string;
25796
+ 'x-code'?: string | undefined;
25657
25797
  }, {
25658
25798
  'x-tenant': string;
25659
25799
  authorization: string;
25800
+ 'x-code'?: string | undefined;
25801
+ 'x-client-timezone'?: string | undefined;
25660
25802
  }>>>;
25661
25803
  };
25662
25804
  createCategoryLevel: {
@@ -25717,12 +25859,18 @@ export declare const apiContract: {
25717
25859
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
25718
25860
  'x-tenant': import("zod").ZodString;
25719
25861
  authorization: import("zod").ZodString;
25862
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
25863
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
25720
25864
  }, "strip", import("zod").ZodTypeAny, {
25721
25865
  'x-tenant': string;
25722
25866
  authorization: string;
25867
+ 'x-client-timezone': string;
25868
+ 'x-code'?: string | undefined;
25723
25869
  }, {
25724
25870
  'x-tenant': string;
25725
25871
  authorization: string;
25872
+ 'x-code'?: string | undefined;
25873
+ 'x-client-timezone'?: string | undefined;
25726
25874
  }>>>;
25727
25875
  };
25728
25876
  getCategoryLevels: {
@@ -25836,12 +25984,18 @@ export declare const apiContract: {
25836
25984
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
25837
25985
  'x-tenant': import("zod").ZodString;
25838
25986
  authorization: import("zod").ZodString;
25987
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
25988
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
25839
25989
  }, "strip", import("zod").ZodTypeAny, {
25840
25990
  'x-tenant': string;
25841
25991
  authorization: string;
25992
+ 'x-client-timezone': string;
25993
+ 'x-code'?: string | undefined;
25842
25994
  }, {
25843
25995
  'x-tenant': string;
25844
25996
  authorization: string;
25997
+ 'x-code'?: string | undefined;
25998
+ 'x-client-timezone'?: string | undefined;
25845
25999
  }>>>;
25846
26000
  };
25847
26001
  };
@@ -26089,12 +26243,18 @@ export declare const apiContract: {
26089
26243
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
26090
26244
  'x-tenant': import("zod").ZodString;
26091
26245
  authorization: import("zod").ZodString;
26246
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
26247
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
26092
26248
  }, "strip", import("zod").ZodTypeAny, {
26093
26249
  'x-tenant': string;
26094
26250
  authorization: string;
26251
+ 'x-client-timezone': string;
26252
+ 'x-code'?: string | undefined;
26095
26253
  }, {
26096
26254
  'x-tenant': string;
26097
26255
  authorization: string;
26256
+ 'x-code'?: string | undefined;
26257
+ 'x-client-timezone'?: string | undefined;
26098
26258
  }>>>;
26099
26259
  };
26100
26260
  };
@@ -26340,12 +26500,18 @@ export declare const apiContract: {
26340
26500
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
26341
26501
  'x-tenant': import("zod").ZodString;
26342
26502
  authorization: import("zod").ZodString;
26503
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
26504
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
26343
26505
  }, "strip", import("zod").ZodTypeAny, {
26344
26506
  'x-tenant': string;
26345
26507
  authorization: string;
26508
+ 'x-client-timezone': string;
26509
+ 'x-code'?: string | undefined;
26346
26510
  }, {
26347
26511
  'x-tenant': string;
26348
26512
  authorization: string;
26513
+ 'x-code'?: string | undefined;
26514
+ 'x-client-timezone'?: string | undefined;
26349
26515
  }>>>;
26350
26516
  };
26351
26517
  getAttributes: {
@@ -26552,12 +26718,18 @@ export declare const apiContract: {
26552
26718
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
26553
26719
  'x-tenant': import("zod").ZodString;
26554
26720
  authorization: import("zod").ZodString;
26721
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
26722
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
26555
26723
  }, "strip", import("zod").ZodTypeAny, {
26556
26724
  'x-tenant': string;
26557
26725
  authorization: string;
26726
+ 'x-client-timezone': string;
26727
+ 'x-code'?: string | undefined;
26558
26728
  }, {
26559
26729
  'x-tenant': string;
26560
26730
  authorization: string;
26731
+ 'x-code'?: string | undefined;
26732
+ 'x-client-timezone'?: string | undefined;
26561
26733
  }>>>;
26562
26734
  };
26563
26735
  updateAttribute: {
@@ -26808,12 +26980,18 @@ export declare const apiContract: {
26808
26980
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
26809
26981
  'x-tenant': import("zod").ZodString;
26810
26982
  authorization: import("zod").ZodString;
26983
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
26984
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
26811
26985
  }, "strip", import("zod").ZodTypeAny, {
26812
26986
  'x-tenant': string;
26813
26987
  authorization: string;
26988
+ 'x-client-timezone': string;
26989
+ 'x-code'?: string | undefined;
26814
26990
  }, {
26815
26991
  'x-tenant': string;
26816
26992
  authorization: string;
26993
+ 'x-code'?: string | undefined;
26994
+ 'x-client-timezone'?: string | undefined;
26817
26995
  }>>>;
26818
26996
  };
26819
26997
  changeVisibility: {
@@ -26858,12 +27036,18 @@ export declare const apiContract: {
26858
27036
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
26859
27037
  'x-tenant': import("zod").ZodString;
26860
27038
  authorization: import("zod").ZodString;
27039
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
27040
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
26861
27041
  }, "strip", import("zod").ZodTypeAny, {
26862
27042
  'x-tenant': string;
26863
27043
  authorization: string;
27044
+ 'x-client-timezone': string;
27045
+ 'x-code'?: string | undefined;
26864
27046
  }, {
26865
27047
  'x-tenant': string;
26866
27048
  authorization: string;
27049
+ 'x-code'?: string | undefined;
27050
+ 'x-client-timezone'?: string | undefined;
26867
27051
  }>>>;
26868
27052
  };
26869
27053
  changeRequired: {
@@ -26908,12 +27092,18 @@ export declare const apiContract: {
26908
27092
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
26909
27093
  'x-tenant': import("zod").ZodString;
26910
27094
  authorization: import("zod").ZodString;
27095
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
27096
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
26911
27097
  }, "strip", import("zod").ZodTypeAny, {
26912
27098
  'x-tenant': string;
26913
27099
  authorization: string;
27100
+ 'x-client-timezone': string;
27101
+ 'x-code'?: string | undefined;
26914
27102
  }, {
26915
27103
  'x-tenant': string;
26916
27104
  authorization: string;
27105
+ 'x-code'?: string | undefined;
27106
+ 'x-client-timezone'?: string | undefined;
26917
27107
  }>>>;
26918
27108
  };
26919
27109
  updatePosition: {
@@ -26966,12 +27156,18 @@ export declare const apiContract: {
26966
27156
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
26967
27157
  'x-tenant': import("zod").ZodString;
26968
27158
  authorization: import("zod").ZodString;
27159
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
27160
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
26969
27161
  }, "strip", import("zod").ZodTypeAny, {
26970
27162
  'x-tenant': string;
26971
27163
  authorization: string;
27164
+ 'x-client-timezone': string;
27165
+ 'x-code'?: string | undefined;
26972
27166
  }, {
26973
27167
  'x-tenant': string;
26974
27168
  authorization: string;
27169
+ 'x-code'?: string | undefined;
27170
+ 'x-client-timezone'?: string | undefined;
26975
27171
  }>>>;
26976
27172
  };
26977
27173
  deleteAttribute: {
@@ -27010,12 +27206,18 @@ export declare const apiContract: {
27010
27206
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
27011
27207
  'x-tenant': import("zod").ZodString;
27012
27208
  authorization: import("zod").ZodString;
27209
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
27210
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
27013
27211
  }, "strip", import("zod").ZodTypeAny, {
27014
27212
  'x-tenant': string;
27015
27213
  authorization: string;
27214
+ 'x-client-timezone': string;
27215
+ 'x-code'?: string | undefined;
27016
27216
  }, {
27017
27217
  'x-tenant': string;
27018
27218
  authorization: string;
27219
+ 'x-code'?: string | undefined;
27220
+ 'x-client-timezone'?: string | undefined;
27019
27221
  }>>>;
27020
27222
  };
27021
27223
  };
@@ -27088,12 +27290,18 @@ export declare const apiContract: {
27088
27290
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
27089
27291
  'x-tenant': import("zod").ZodString;
27090
27292
  authorization: import("zod").ZodString;
27293
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
27294
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
27091
27295
  }, "strip", import("zod").ZodTypeAny, {
27092
27296
  'x-tenant': string;
27093
27297
  authorization: string;
27298
+ 'x-client-timezone': string;
27299
+ 'x-code'?: string | undefined;
27094
27300
  }, {
27095
27301
  'x-tenant': string;
27096
27302
  authorization: string;
27303
+ 'x-code'?: string | undefined;
27304
+ 'x-client-timezone'?: string | undefined;
27097
27305
  }>>>;
27098
27306
  };
27099
27307
  getTags: {
@@ -27164,12 +27372,18 @@ export declare const apiContract: {
27164
27372
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
27165
27373
  'x-tenant': import("zod").ZodString;
27166
27374
  authorization: import("zod").ZodString;
27375
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
27376
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
27167
27377
  }, "strip", import("zod").ZodTypeAny, {
27168
27378
  'x-tenant': string;
27169
27379
  authorization: string;
27380
+ 'x-client-timezone': string;
27381
+ 'x-code'?: string | undefined;
27170
27382
  }, {
27171
27383
  'x-tenant': string;
27172
27384
  authorization: string;
27385
+ 'x-code'?: string | undefined;
27386
+ 'x-client-timezone'?: string | undefined;
27173
27387
  }>>>;
27174
27388
  };
27175
27389
  updateTag: {
@@ -27244,12 +27458,18 @@ export declare const apiContract: {
27244
27458
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
27245
27459
  'x-tenant': import("zod").ZodString;
27246
27460
  authorization: import("zod").ZodString;
27461
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
27462
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
27247
27463
  }, "strip", import("zod").ZodTypeAny, {
27248
27464
  'x-tenant': string;
27249
27465
  authorization: string;
27466
+ 'x-client-timezone': string;
27467
+ 'x-code'?: string | undefined;
27250
27468
  }, {
27251
27469
  'x-tenant': string;
27252
27470
  authorization: string;
27471
+ 'x-code'?: string | undefined;
27472
+ 'x-client-timezone'?: string | undefined;
27253
27473
  }>>>;
27254
27474
  };
27255
27475
  deleteTag: {
@@ -27288,12 +27508,18 @@ export declare const apiContract: {
27288
27508
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
27289
27509
  'x-tenant': import("zod").ZodString;
27290
27510
  authorization: import("zod").ZodString;
27511
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
27512
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
27291
27513
  }, "strip", import("zod").ZodTypeAny, {
27292
27514
  'x-tenant': string;
27293
27515
  authorization: string;
27516
+ 'x-client-timezone': string;
27517
+ 'x-code'?: string | undefined;
27294
27518
  }, {
27295
27519
  'x-tenant': string;
27296
27520
  authorization: string;
27521
+ 'x-code'?: string | undefined;
27522
+ 'x-client-timezone'?: string | undefined;
27297
27523
  }>>>;
27298
27524
  };
27299
27525
  };
@@ -28138,12 +28364,18 @@ export declare const apiContract: {
28138
28364
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
28139
28365
  'x-tenant': import("zod").ZodString;
28140
28366
  authorization: import("zod").ZodString;
28367
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
28368
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
28141
28369
  }, "strip", import("zod").ZodTypeAny, {
28142
28370
  'x-tenant': string;
28143
28371
  authorization: string;
28372
+ 'x-client-timezone': string;
28373
+ 'x-code'?: string | undefined;
28144
28374
  }, {
28145
28375
  'x-tenant': string;
28146
28376
  authorization: string;
28377
+ 'x-code'?: string | undefined;
28378
+ 'x-client-timezone'?: string | undefined;
28147
28379
  }>>>;
28148
28380
  };
28149
28381
  getChannels: {
@@ -28641,12 +28873,18 @@ export declare const apiContract: {
28641
28873
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
28642
28874
  'x-tenant': import("zod").ZodString;
28643
28875
  authorization: import("zod").ZodString;
28876
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
28877
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
28644
28878
  }, "strip", import("zod").ZodTypeAny, {
28645
28879
  'x-tenant': string;
28646
28880
  authorization: string;
28881
+ 'x-client-timezone': string;
28882
+ 'x-code'?: string | undefined;
28647
28883
  }, {
28648
28884
  'x-tenant': string;
28649
28885
  authorization: string;
28886
+ 'x-code'?: string | undefined;
28887
+ 'x-client-timezone'?: string | undefined;
28650
28888
  }>>>;
28651
28889
  };
28652
28890
  };
@@ -28885,12 +29123,18 @@ export declare const apiContract: {
28885
29123
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
28886
29124
  'x-tenant': import("zod").ZodString;
28887
29125
  authorization: import("zod").ZodString;
29126
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
29127
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
28888
29128
  }, "strip", import("zod").ZodTypeAny, {
28889
29129
  'x-tenant': string;
28890
29130
  authorization: string;
29131
+ 'x-client-timezone': string;
29132
+ 'x-code'?: string | undefined;
28891
29133
  }, {
28892
29134
  'x-tenant': string;
28893
29135
  authorization: string;
29136
+ 'x-code'?: string | undefined;
29137
+ 'x-client-timezone'?: string | undefined;
28894
29138
  }>>>;
28895
29139
  };
28896
29140
  getAllAgentStatus: {
@@ -29271,12 +29515,18 @@ export declare const apiContract: {
29271
29515
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
29272
29516
  'x-tenant': import("zod").ZodString;
29273
29517
  authorization: import("zod").ZodString;
29518
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
29519
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
29274
29520
  }, "strip", import("zod").ZodTypeAny, {
29275
29521
  'x-tenant': string;
29276
29522
  authorization: string;
29523
+ 'x-client-timezone': string;
29524
+ 'x-code'?: string | undefined;
29277
29525
  }, {
29278
29526
  'x-tenant': string;
29279
29527
  authorization: string;
29528
+ 'x-code'?: string | undefined;
29529
+ 'x-client-timezone'?: string | undefined;
29280
29530
  }>>>;
29281
29531
  };
29282
29532
  getAgentStatus: {
@@ -29664,12 +29914,18 @@ export declare const apiContract: {
29664
29914
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
29665
29915
  'x-tenant': import("zod").ZodString;
29666
29916
  authorization: import("zod").ZodString;
29917
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
29918
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
29667
29919
  }, "strip", import("zod").ZodTypeAny, {
29668
29920
  'x-tenant': string;
29669
29921
  authorization: string;
29922
+ 'x-client-timezone': string;
29923
+ 'x-code'?: string | undefined;
29670
29924
  }, {
29671
29925
  'x-tenant': string;
29672
29926
  authorization: string;
29927
+ 'x-code'?: string | undefined;
29928
+ 'x-client-timezone'?: string | undefined;
29673
29929
  }>>>;
29674
29930
  };
29675
29931
  updateUserStatus: {
@@ -30189,12 +30445,18 @@ export declare const apiContract: {
30189
30445
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
30190
30446
  'x-tenant': import("zod").ZodString;
30191
30447
  authorization: import("zod").ZodString;
30448
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
30449
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
30192
30450
  }, "strip", import("zod").ZodTypeAny, {
30193
30451
  'x-tenant': string;
30194
30452
  authorization: string;
30453
+ 'x-client-timezone': string;
30454
+ 'x-code'?: string | undefined;
30195
30455
  }, {
30196
30456
  'x-tenant': string;
30197
30457
  authorization: string;
30458
+ 'x-code'?: string | undefined;
30459
+ 'x-client-timezone'?: string | undefined;
30198
30460
  }>>>;
30199
30461
  };
30200
30462
  };
@@ -30527,12 +30789,18 @@ export declare const apiContract: {
30527
30789
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
30528
30790
  'x-tenant': import("zod").ZodString;
30529
30791
  authorization: import("zod").ZodString;
30792
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
30793
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
30530
30794
  }, "strip", import("zod").ZodTypeAny, {
30531
30795
  'x-tenant': string;
30532
30796
  authorization: string;
30797
+ 'x-client-timezone': string;
30798
+ 'x-code'?: string | undefined;
30533
30799
  }, {
30534
30800
  'x-tenant': string;
30535
30801
  authorization: string;
30802
+ 'x-code'?: string | undefined;
30803
+ 'x-client-timezone'?: string | undefined;
30536
30804
  }>>>;
30537
30805
  };
30538
30806
  };
@@ -30870,12 +31138,18 @@ export declare const apiContract: {
30870
31138
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
30871
31139
  'x-tenant': import("zod").ZodString;
30872
31140
  authorization: import("zod").ZodString;
31141
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
31142
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
30873
31143
  }, "strip", import("zod").ZodTypeAny, {
30874
31144
  'x-tenant': string;
30875
31145
  authorization: string;
31146
+ 'x-client-timezone': string;
31147
+ 'x-code'?: string | undefined;
30876
31148
  }, {
30877
31149
  'x-tenant': string;
30878
31150
  authorization: string;
31151
+ 'x-code'?: string | undefined;
31152
+ 'x-client-timezone'?: string | undefined;
30879
31153
  }>>>;
30880
31154
  };
30881
31155
  getById: {
@@ -31896,12 +32170,18 @@ export declare const apiContract: {
31896
32170
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
31897
32171
  'x-tenant': import("zod").ZodString;
31898
32172
  authorization: import("zod").ZodString;
32173
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
32174
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
31899
32175
  }, "strip", import("zod").ZodTypeAny, {
31900
32176
  'x-tenant': string;
31901
32177
  authorization: string;
32178
+ 'x-client-timezone': string;
32179
+ 'x-code'?: string | undefined;
31902
32180
  }, {
31903
32181
  'x-tenant': string;
31904
32182
  authorization: string;
32183
+ 'x-code'?: string | undefined;
32184
+ 'x-client-timezone'?: string | undefined;
31905
32185
  }>>>;
31906
32186
  };
31907
32187
  getAll: {
@@ -32990,12 +33270,18 @@ export declare const apiContract: {
32990
33270
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
32991
33271
  'x-tenant': import("zod").ZodString;
32992
33272
  authorization: import("zod").ZodString;
33273
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
33274
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
32993
33275
  }, "strip", import("zod").ZodTypeAny, {
32994
33276
  'x-tenant': string;
32995
33277
  authorization: string;
33278
+ 'x-client-timezone': string;
33279
+ 'x-code'?: string | undefined;
32996
33280
  }, {
32997
33281
  'x-tenant': string;
32998
33282
  authorization: string;
33283
+ 'x-code'?: string | undefined;
33284
+ 'x-client-timezone'?: string | undefined;
32999
33285
  }>>>;
33000
33286
  };
33001
33287
  filterContacts: {
@@ -34034,12 +34320,18 @@ export declare const apiContract: {
34034
34320
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
34035
34321
  'x-tenant': import("zod").ZodString;
34036
34322
  authorization: import("zod").ZodString;
34323
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
34324
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
34037
34325
  }, "strip", import("zod").ZodTypeAny, {
34038
34326
  'x-tenant': string;
34039
34327
  authorization: string;
34328
+ 'x-client-timezone': string;
34329
+ 'x-code'?: string | undefined;
34040
34330
  }, {
34041
34331
  'x-tenant': string;
34042
34332
  authorization: string;
34333
+ 'x-code'?: string | undefined;
34334
+ 'x-client-timezone'?: string | undefined;
34043
34335
  }>>>;
34044
34336
  };
34045
34337
  update: {
@@ -35323,12 +35615,18 @@ export declare const apiContract: {
35323
35615
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
35324
35616
  'x-tenant': import("zod").ZodString;
35325
35617
  authorization: import("zod").ZodString;
35618
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
35619
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
35326
35620
  }, "strip", import("zod").ZodTypeAny, {
35327
35621
  'x-tenant': string;
35328
35622
  authorization: string;
35623
+ 'x-client-timezone': string;
35624
+ 'x-code'?: string | undefined;
35329
35625
  }, {
35330
35626
  'x-tenant': string;
35331
35627
  authorization: string;
35628
+ 'x-code'?: string | undefined;
35629
+ 'x-client-timezone'?: string | undefined;
35332
35630
  }>>>;
35333
35631
  };
35334
35632
  delete: {
@@ -35409,12 +35707,18 @@ export declare const apiContract: {
35409
35707
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
35410
35708
  'x-tenant': import("zod").ZodString;
35411
35709
  authorization: import("zod").ZodString;
35710
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
35711
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
35412
35712
  }, "strip", import("zod").ZodTypeAny, {
35413
35713
  'x-tenant': string;
35414
35714
  authorization: string;
35715
+ 'x-client-timezone': string;
35716
+ 'x-code'?: string | undefined;
35415
35717
  }, {
35416
35718
  'x-tenant': string;
35417
35719
  authorization: string;
35720
+ 'x-code'?: string | undefined;
35721
+ 'x-client-timezone'?: string | undefined;
35418
35722
  }>>>;
35419
35723
  };
35420
35724
  createContactByPhone: {
@@ -36435,12 +36739,18 @@ export declare const apiContract: {
36435
36739
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
36436
36740
  'x-tenant': import("zod").ZodString;
36437
36741
  authorization: import("zod").ZodString;
36742
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
36743
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
36438
36744
  }, "strip", import("zod").ZodTypeAny, {
36439
36745
  'x-tenant': string;
36440
36746
  authorization: string;
36747
+ 'x-client-timezone': string;
36748
+ 'x-code'?: string | undefined;
36441
36749
  }, {
36442
36750
  'x-tenant': string;
36443
36751
  authorization: string;
36752
+ 'x-code'?: string | undefined;
36753
+ 'x-client-timezone'?: string | undefined;
36444
36754
  }>>>;
36445
36755
  };
36446
36756
  updateFromOngoingCall: {
@@ -37464,12 +37774,18 @@ export declare const apiContract: {
37464
37774
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
37465
37775
  'x-tenant': import("zod").ZodString;
37466
37776
  authorization: import("zod").ZodString;
37777
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
37778
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
37467
37779
  }, "strip", import("zod").ZodTypeAny, {
37468
37780
  'x-tenant': string;
37469
37781
  authorization: string;
37782
+ 'x-client-timezone': string;
37783
+ 'x-code'?: string | undefined;
37470
37784
  }, {
37471
37785
  'x-tenant': string;
37472
37786
  authorization: string;
37787
+ 'x-code'?: string | undefined;
37788
+ 'x-client-timezone'?: string | undefined;
37473
37789
  }>>>;
37474
37790
  };
37475
37791
  merge: {
@@ -38529,12 +38845,18 @@ export declare const apiContract: {
38529
38845
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
38530
38846
  'x-tenant': import("zod").ZodString;
38531
38847
  authorization: import("zod").ZodString;
38848
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
38849
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
38532
38850
  }, "strip", import("zod").ZodTypeAny, {
38533
38851
  'x-tenant': string;
38534
38852
  authorization: string;
38853
+ 'x-client-timezone': string;
38854
+ 'x-code'?: string | undefined;
38535
38855
  }, {
38536
38856
  'x-tenant': string;
38537
38857
  authorization: string;
38858
+ 'x-code'?: string | undefined;
38859
+ 'x-client-timezone'?: string | undefined;
38538
38860
  }>>>;
38539
38861
  };
38540
38862
  checkContactPhone: {
@@ -38617,12 +38939,18 @@ export declare const apiContract: {
38617
38939
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
38618
38940
  'x-tenant': import("zod").ZodString;
38619
38941
  authorization: import("zod").ZodString;
38942
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
38943
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
38620
38944
  }, "strip", import("zod").ZodTypeAny, {
38621
38945
  'x-tenant': string;
38622
38946
  authorization: string;
38947
+ 'x-client-timezone': string;
38948
+ 'x-code'?: string | undefined;
38623
38949
  }, {
38624
38950
  'x-tenant': string;
38625
38951
  authorization: string;
38952
+ 'x-code'?: string | undefined;
38953
+ 'x-client-timezone'?: string | undefined;
38626
38954
  }>>>;
38627
38955
  };
38628
38956
  checkContactEmail: {
@@ -38705,12 +39033,18 @@ export declare const apiContract: {
38705
39033
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
38706
39034
  'x-tenant': import("zod").ZodString;
38707
39035
  authorization: import("zod").ZodString;
39036
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
39037
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
38708
39038
  }, "strip", import("zod").ZodTypeAny, {
38709
39039
  'x-tenant': string;
38710
39040
  authorization: string;
39041
+ 'x-client-timezone': string;
39042
+ 'x-code'?: string | undefined;
38711
39043
  }, {
38712
39044
  'x-tenant': string;
38713
39045
  authorization: string;
39046
+ 'x-code'?: string | undefined;
39047
+ 'x-client-timezone'?: string | undefined;
38714
39048
  }>>>;
38715
39049
  };
38716
39050
  addAttachments: {
@@ -38880,12 +39214,18 @@ export declare const apiContract: {
38880
39214
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
38881
39215
  'x-tenant': import("zod").ZodString;
38882
39216
  authorization: import("zod").ZodString;
39217
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
39218
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
38883
39219
  }, "strip", import("zod").ZodTypeAny, {
38884
39220
  'x-tenant': string;
38885
39221
  authorization: string;
39222
+ 'x-client-timezone': string;
39223
+ 'x-code'?: string | undefined;
38886
39224
  }, {
38887
39225
  'x-tenant': string;
38888
39226
  authorization: string;
39227
+ 'x-code'?: string | undefined;
39228
+ 'x-client-timezone'?: string | undefined;
38889
39229
  }>>>;
38890
39230
  };
38891
39231
  };
@@ -39722,12 +40062,18 @@ export declare const apiContract: {
39722
40062
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
39723
40063
  'x-tenant': import("zod").ZodString;
39724
40064
  authorization: import("zod").ZodString;
40065
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
40066
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
39725
40067
  }, "strip", import("zod").ZodTypeAny, {
39726
40068
  'x-tenant': string;
39727
40069
  authorization: string;
40070
+ 'x-client-timezone': string;
40071
+ 'x-code'?: string | undefined;
39728
40072
  }, {
39729
40073
  'x-tenant': string;
39730
40074
  authorization: string;
40075
+ 'x-code'?: string | undefined;
40076
+ 'x-client-timezone'?: string | undefined;
39731
40077
  }>>>;
39732
40078
  };
39733
40079
  getAllTickets: {
@@ -40085,12 +40431,18 @@ export declare const apiContract: {
40085
40431
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
40086
40432
  'x-tenant': import("zod").ZodString;
40087
40433
  authorization: import("zod").ZodString;
40434
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
40435
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
40088
40436
  }, "strip", import("zod").ZodTypeAny, {
40089
40437
  'x-tenant': string;
40090
40438
  authorization: string;
40439
+ 'x-client-timezone': string;
40440
+ 'x-code'?: string | undefined;
40091
40441
  }, {
40092
40442
  'x-tenant': string;
40093
40443
  authorization: string;
40444
+ 'x-code'?: string | undefined;
40445
+ 'x-client-timezone'?: string | undefined;
40094
40446
  }>>>;
40095
40447
  };
40096
40448
  getTicketById: {
@@ -40505,12 +40857,18 @@ export declare const apiContract: {
40505
40857
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
40506
40858
  'x-tenant': import("zod").ZodString;
40507
40859
  authorization: import("zod").ZodString;
40860
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
40861
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
40508
40862
  }, "strip", import("zod").ZodTypeAny, {
40509
40863
  'x-tenant': string;
40510
40864
  authorization: string;
40865
+ 'x-client-timezone': string;
40866
+ 'x-code'?: string | undefined;
40511
40867
  }, {
40512
40868
  'x-tenant': string;
40513
40869
  authorization: string;
40870
+ 'x-code'?: string | undefined;
40871
+ 'x-client-timezone'?: string | undefined;
40514
40872
  }>>>;
40515
40873
  };
40516
40874
  getTicketByContactId: {
@@ -40813,12 +41171,18 @@ export declare const apiContract: {
40813
41171
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
40814
41172
  'x-tenant': import("zod").ZodString;
40815
41173
  authorization: import("zod").ZodString;
41174
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
41175
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
40816
41176
  }, "strip", import("zod").ZodTypeAny, {
40817
41177
  'x-tenant': string;
40818
41178
  authorization: string;
41179
+ 'x-client-timezone': string;
41180
+ 'x-code'?: string | undefined;
40819
41181
  }, {
40820
41182
  'x-tenant': string;
40821
41183
  authorization: string;
41184
+ 'x-code'?: string | undefined;
41185
+ 'x-client-timezone'?: string | undefined;
40822
41186
  }>>>;
40823
41187
  };
40824
41188
  updateTicket: {
@@ -41660,12 +42024,18 @@ export declare const apiContract: {
41660
42024
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
41661
42025
  'x-tenant': import("zod").ZodString;
41662
42026
  authorization: import("zod").ZodString;
42027
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42028
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
41663
42029
  }, "strip", import("zod").ZodTypeAny, {
41664
42030
  'x-tenant': string;
41665
42031
  authorization: string;
42032
+ 'x-client-timezone': string;
42033
+ 'x-code'?: string | undefined;
41666
42034
  }, {
41667
42035
  'x-tenant': string;
41668
42036
  authorization: string;
42037
+ 'x-code'?: string | undefined;
42038
+ 'x-client-timezone'?: string | undefined;
41669
42039
  }>>>;
41670
42040
  };
41671
42041
  deleteTicket: {
@@ -41705,12 +42075,18 @@ export declare const apiContract: {
41705
42075
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
41706
42076
  'x-tenant': import("zod").ZodString;
41707
42077
  authorization: import("zod").ZodString;
42078
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42079
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
41708
42080
  }, "strip", import("zod").ZodTypeAny, {
41709
42081
  'x-tenant': string;
41710
42082
  authorization: string;
42083
+ 'x-client-timezone': string;
42084
+ 'x-code'?: string | undefined;
41711
42085
  }, {
41712
42086
  'x-tenant': string;
41713
42087
  authorization: string;
42088
+ 'x-code'?: string | undefined;
42089
+ 'x-client-timezone'?: string | undefined;
41714
42090
  }>>>;
41715
42091
  };
41716
42092
  updateDescription: {
@@ -41797,12 +42173,18 @@ export declare const apiContract: {
41797
42173
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
41798
42174
  'x-tenant': import("zod").ZodString;
41799
42175
  authorization: import("zod").ZodString;
42176
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42177
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
41800
42178
  }, "strip", import("zod").ZodTypeAny, {
41801
42179
  'x-tenant': string;
41802
42180
  authorization: string;
42181
+ 'x-client-timezone': string;
42182
+ 'x-code'?: string | undefined;
41803
42183
  }, {
41804
42184
  'x-tenant': string;
41805
42185
  authorization: string;
42186
+ 'x-code'?: string | undefined;
42187
+ 'x-client-timezone'?: string | undefined;
41806
42188
  }>>>;
41807
42189
  };
41808
42190
  updateTitle: {
@@ -41889,12 +42271,18 @@ export declare const apiContract: {
41889
42271
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
41890
42272
  'x-tenant': import("zod").ZodString;
41891
42273
  authorization: import("zod").ZodString;
42274
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42275
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
41892
42276
  }, "strip", import("zod").ZodTypeAny, {
41893
42277
  'x-tenant': string;
41894
42278
  authorization: string;
42279
+ 'x-client-timezone': string;
42280
+ 'x-code'?: string | undefined;
41895
42281
  }, {
41896
42282
  'x-tenant': string;
41897
42283
  authorization: string;
42284
+ 'x-code'?: string | undefined;
42285
+ 'x-client-timezone'?: string | undefined;
41898
42286
  }>>>;
41899
42287
  };
41900
42288
  updateType: {
@@ -41981,12 +42369,18 @@ export declare const apiContract: {
41981
42369
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
41982
42370
  'x-tenant': import("zod").ZodString;
41983
42371
  authorization: import("zod").ZodString;
42372
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42373
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
41984
42374
  }, "strip", import("zod").ZodTypeAny, {
41985
42375
  'x-tenant': string;
41986
42376
  authorization: string;
42377
+ 'x-client-timezone': string;
42378
+ 'x-code'?: string | undefined;
41987
42379
  }, {
41988
42380
  'x-tenant': string;
41989
42381
  authorization: string;
42382
+ 'x-code'?: string | undefined;
42383
+ 'x-client-timezone'?: string | undefined;
41990
42384
  }>>>;
41991
42385
  };
41992
42386
  updateStatus: {
@@ -42073,12 +42467,18 @@ export declare const apiContract: {
42073
42467
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
42074
42468
  'x-tenant': import("zod").ZodString;
42075
42469
  authorization: import("zod").ZodString;
42470
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42471
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
42076
42472
  }, "strip", import("zod").ZodTypeAny, {
42077
42473
  'x-tenant': string;
42078
42474
  authorization: string;
42475
+ 'x-client-timezone': string;
42476
+ 'x-code'?: string | undefined;
42079
42477
  }, {
42080
42478
  'x-tenant': string;
42081
42479
  authorization: string;
42480
+ 'x-code'?: string | undefined;
42481
+ 'x-client-timezone'?: string | undefined;
42082
42482
  }>>>;
42083
42483
  };
42084
42484
  updatePriority: {
@@ -42165,12 +42565,18 @@ export declare const apiContract: {
42165
42565
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
42166
42566
  'x-tenant': import("zod").ZodString;
42167
42567
  authorization: import("zod").ZodString;
42568
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42569
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
42168
42570
  }, "strip", import("zod").ZodTypeAny, {
42169
42571
  'x-tenant': string;
42170
42572
  authorization: string;
42573
+ 'x-client-timezone': string;
42574
+ 'x-code'?: string | undefined;
42171
42575
  }, {
42172
42576
  'x-tenant': string;
42173
42577
  authorization: string;
42578
+ 'x-code'?: string | undefined;
42579
+ 'x-client-timezone'?: string | undefined;
42174
42580
  }>>>;
42175
42581
  };
42176
42582
  updateChannel: {
@@ -42257,12 +42663,18 @@ export declare const apiContract: {
42257
42663
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
42258
42664
  'x-tenant': import("zod").ZodString;
42259
42665
  authorization: import("zod").ZodString;
42666
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42667
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
42260
42668
  }, "strip", import("zod").ZodTypeAny, {
42261
42669
  'x-tenant': string;
42262
42670
  authorization: string;
42671
+ 'x-client-timezone': string;
42672
+ 'x-code'?: string | undefined;
42263
42673
  }, {
42264
42674
  'x-tenant': string;
42265
42675
  authorization: string;
42676
+ 'x-code'?: string | undefined;
42677
+ 'x-client-timezone'?: string | undefined;
42266
42678
  }>>>;
42267
42679
  };
42268
42680
  updateTags: {
@@ -42349,12 +42761,18 @@ export declare const apiContract: {
42349
42761
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
42350
42762
  'x-tenant': import("zod").ZodString;
42351
42763
  authorization: import("zod").ZodString;
42764
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
42765
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
42352
42766
  }, "strip", import("zod").ZodTypeAny, {
42353
42767
  'x-tenant': string;
42354
42768
  authorization: string;
42769
+ 'x-client-timezone': string;
42770
+ 'x-code'?: string | undefined;
42355
42771
  }, {
42356
42772
  'x-tenant': string;
42357
42773
  authorization: string;
42774
+ 'x-code'?: string | undefined;
42775
+ 'x-client-timezone'?: string | undefined;
42358
42776
  }>>>;
42359
42777
  };
42360
42778
  changeAssignee: {
@@ -42803,12 +43221,18 @@ export declare const apiContract: {
42803
43221
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
42804
43222
  'x-tenant': import("zod").ZodString;
42805
43223
  authorization: import("zod").ZodString;
43224
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
43225
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
42806
43226
  }, "strip", import("zod").ZodTypeAny, {
42807
43227
  'x-tenant': string;
42808
43228
  authorization: string;
43229
+ 'x-client-timezone': string;
43230
+ 'x-code'?: string | undefined;
42809
43231
  }, {
42810
43232
  'x-tenant': string;
42811
43233
  authorization: string;
43234
+ 'x-code'?: string | undefined;
43235
+ 'x-client-timezone'?: string | undefined;
42812
43236
  }>>>;
42813
43237
  };
42814
43238
  getTicketCountByContact: {
@@ -42873,12 +43297,18 @@ export declare const apiContract: {
42873
43297
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
42874
43298
  'x-tenant': import("zod").ZodString;
42875
43299
  authorization: import("zod").ZodString;
43300
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
43301
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
42876
43302
  }, "strip", import("zod").ZodTypeAny, {
42877
43303
  'x-tenant': string;
42878
43304
  authorization: string;
43305
+ 'x-client-timezone': string;
43306
+ 'x-code'?: string | undefined;
42879
43307
  }, {
42880
43308
  'x-tenant': string;
42881
43309
  authorization: string;
43310
+ 'x-code'?: string | undefined;
43311
+ 'x-client-timezone'?: string | undefined;
42882
43312
  }>>>;
42883
43313
  };
42884
43314
  getTicketByContact: {
@@ -43181,12 +43611,18 @@ export declare const apiContract: {
43181
43611
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
43182
43612
  'x-tenant': import("zod").ZodString;
43183
43613
  authorization: import("zod").ZodString;
43614
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
43615
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
43184
43616
  }, "strip", import("zod").ZodTypeAny, {
43185
43617
  'x-tenant': string;
43186
43618
  authorization: string;
43619
+ 'x-client-timezone': string;
43620
+ 'x-code'?: string | undefined;
43187
43621
  }, {
43188
43622
  'x-tenant': string;
43189
43623
  authorization: string;
43624
+ 'x-code'?: string | undefined;
43625
+ 'x-client-timezone'?: string | undefined;
43190
43626
  }>>>;
43191
43627
  };
43192
43628
  createTicketAttachmentRecords: {
@@ -43530,12 +43966,18 @@ export declare const apiContract: {
43530
43966
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
43531
43967
  'x-tenant': import("zod").ZodString;
43532
43968
  authorization: import("zod").ZodString;
43969
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
43970
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
43533
43971
  }, "strip", import("zod").ZodTypeAny, {
43534
43972
  'x-tenant': string;
43535
43973
  authorization: string;
43974
+ 'x-client-timezone': string;
43975
+ 'x-code'?: string | undefined;
43536
43976
  }, {
43537
43977
  'x-tenant': string;
43538
43978
  authorization: string;
43979
+ 'x-code'?: string | undefined;
43980
+ 'x-client-timezone'?: string | undefined;
43539
43981
  }>>>;
43540
43982
  };
43541
43983
  };
@@ -51212,6 +51654,16 @@ export declare const platformContract: {
51212
51654
  message: string;
51213
51655
  error?: any;
51214
51656
  }>;
51657
+ 400: import("zod").ZodObject<{
51658
+ message: import("zod").ZodString;
51659
+ error: import("zod").ZodAny;
51660
+ }, "strip", import("zod").ZodTypeAny, {
51661
+ message: string;
51662
+ error?: any;
51663
+ }, {
51664
+ message: string;
51665
+ error?: any;
51666
+ }>;
51215
51667
  };
51216
51668
  path: "/connect";
51217
51669
  };
@@ -54555,12 +55007,18 @@ export declare const chatContract: {
54555
55007
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
54556
55008
  'x-tenant': import("zod").ZodString;
54557
55009
  authorization: import("zod").ZodString;
55010
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
55011
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
54558
55012
  }, "strip", import("zod").ZodTypeAny, {
54559
55013
  'x-tenant': string;
54560
55014
  authorization: string;
55015
+ 'x-client-timezone': string;
55016
+ 'x-code'?: string | undefined;
54561
55017
  }, {
54562
55018
  'x-tenant': string;
54563
55019
  authorization: string;
55020
+ 'x-code'?: string | undefined;
55021
+ 'x-client-timezone'?: string | undefined;
54564
55022
  }>>>;
54565
55023
  };
54566
55024
  getRoomContact: {
@@ -55530,12 +55988,18 @@ export declare const chatContract: {
55530
55988
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
55531
55989
  'x-tenant': import("zod").ZodString;
55532
55990
  authorization: import("zod").ZodString;
55991
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
55992
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
55533
55993
  }, "strip", import("zod").ZodTypeAny, {
55534
55994
  'x-tenant': string;
55535
55995
  authorization: string;
55996
+ 'x-client-timezone': string;
55997
+ 'x-code'?: string | undefined;
55536
55998
  }, {
55537
55999
  'x-tenant': string;
55538
56000
  authorization: string;
56001
+ 'x-code'?: string | undefined;
56002
+ 'x-client-timezone'?: string | undefined;
55539
56003
  }>>>;
55540
56004
  };
55541
56005
  updateRoomAttributes: {
@@ -58764,12 +59228,18 @@ export declare const chatContract: {
58764
59228
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
58765
59229
  'x-tenant': import("zod").ZodString;
58766
59230
  authorization: import("zod").ZodString;
59231
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
59232
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
58767
59233
  }, "strip", import("zod").ZodTypeAny, {
58768
59234
  'x-tenant': string;
58769
59235
  authorization: string;
59236
+ 'x-client-timezone': string;
59237
+ 'x-code'?: string | undefined;
58770
59238
  }, {
58771
59239
  'x-tenant': string;
58772
59240
  authorization: string;
59241
+ 'x-code'?: string | undefined;
59242
+ 'x-client-timezone'?: string | undefined;
58773
59243
  }>>>;
58774
59244
  };
58775
59245
  sendMessage: {
@@ -64216,12 +64686,18 @@ export declare const chatContract: {
64216
64686
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
64217
64687
  'x-tenant': import("zod").ZodString;
64218
64688
  authorization: import("zod").ZodString;
64689
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
64690
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
64219
64691
  }, "strip", import("zod").ZodTypeAny, {
64220
64692
  'x-tenant': string;
64221
64693
  authorization: string;
64694
+ 'x-client-timezone': string;
64695
+ 'x-code'?: string | undefined;
64222
64696
  }, {
64223
64697
  'x-tenant': string;
64224
64698
  authorization: string;
64699
+ 'x-code'?: string | undefined;
64700
+ 'x-client-timezone'?: string | undefined;
64225
64701
  }>>>;
64226
64702
  };
64227
64703
  receiveMessage: {
@@ -69309,12 +69785,18 @@ export declare const chatContract: {
69309
69785
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
69310
69786
  'x-tenant': import("zod").ZodString;
69311
69787
  authorization: import("zod").ZodString;
69788
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
69789
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
69312
69790
  }, "strip", import("zod").ZodTypeAny, {
69313
69791
  'x-tenant': string;
69314
69792
  authorization: string;
69793
+ 'x-client-timezone': string;
69794
+ 'x-code'?: string | undefined;
69315
69795
  }, {
69316
69796
  'x-tenant': string;
69317
69797
  authorization: string;
69798
+ 'x-code'?: string | undefined;
69799
+ 'x-client-timezone'?: string | undefined;
69318
69800
  }>>>;
69319
69801
  };
69320
69802
  getRoomsByPlatformContactId: {
@@ -69329,14 +69811,24 @@ export declare const chatContract: {
69329
69811
  responses: {
69330
69812
  200: import("zod").ZodObject<{
69331
69813
  requestId: import("zod").ZodString;
69332
- data: import("zod").ZodArray<import("zod").ZodString, "many">;
69814
+ data: import("zod").ZodObject<{
69815
+ id: import("zod").ZodArray<import("zod").ZodString, "many">;
69816
+ }, "strip", import("zod").ZodTypeAny, {
69817
+ id: string[];
69818
+ }, {
69819
+ id: string[];
69820
+ }>;
69333
69821
  total: import("zod").ZodNumber;
69334
69822
  }, "strip", import("zod").ZodTypeAny, {
69335
- data: string[];
69823
+ data: {
69824
+ id: string[];
69825
+ };
69336
69826
  total: number;
69337
69827
  requestId: string;
69338
69828
  }, {
69339
- data: string[];
69829
+ data: {
69830
+ id: string[];
69831
+ };
69340
69832
  total: number;
69341
69833
  requestId: string;
69342
69834
  }>;
@@ -69345,12 +69837,18 @@ export declare const chatContract: {
69345
69837
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
69346
69838
  'x-tenant': import("zod").ZodString;
69347
69839
  authorization: import("zod").ZodString;
69840
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
69841
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
69348
69842
  }, "strip", import("zod").ZodTypeAny, {
69349
69843
  'x-tenant': string;
69350
69844
  authorization: string;
69845
+ 'x-client-timezone': string;
69846
+ 'x-code'?: string | undefined;
69351
69847
  }, {
69352
69848
  'x-tenant': string;
69353
69849
  authorization: string;
69850
+ 'x-code'?: string | undefined;
69851
+ 'x-client-timezone'?: string | undefined;
69354
69852
  }>>>;
69355
69853
  };
69356
69854
  getMessages: {
@@ -74466,12 +74964,18 @@ export declare const chatContract: {
74466
74964
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
74467
74965
  'x-tenant': import("zod").ZodString;
74468
74966
  authorization: import("zod").ZodString;
74967
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
74968
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
74469
74969
  }, "strip", import("zod").ZodTypeAny, {
74470
74970
  'x-tenant': string;
74471
74971
  authorization: string;
74972
+ 'x-client-timezone': string;
74973
+ 'x-code'?: string | undefined;
74472
74974
  }, {
74473
74975
  'x-tenant': string;
74474
74976
  authorization: string;
74977
+ 'x-code'?: string | undefined;
74978
+ 'x-client-timezone'?: string | undefined;
74475
74979
  }>>>;
74476
74980
  };
74477
74981
  solveRoom: {
@@ -77679,12 +78183,18 @@ export declare const chatContract: {
77679
78183
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
77680
78184
  'x-tenant': import("zod").ZodString;
77681
78185
  authorization: import("zod").ZodString;
78186
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
78187
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
77682
78188
  }, "strip", import("zod").ZodTypeAny, {
77683
78189
  'x-tenant': string;
77684
78190
  authorization: string;
78191
+ 'x-client-timezone': string;
78192
+ 'x-code'?: string | undefined;
77685
78193
  }, {
77686
78194
  'x-tenant': string;
77687
78195
  authorization: string;
78196
+ 'x-code'?: string | undefined;
78197
+ 'x-client-timezone'?: string | undefined;
77688
78198
  }>>>;
77689
78199
  };
77690
78200
  updateAssignee: {
@@ -80880,12 +81390,18 @@ export declare const chatContract: {
80880
81390
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
80881
81391
  'x-tenant': import("zod").ZodString;
80882
81392
  authorization: import("zod").ZodString;
81393
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
81394
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
80883
81395
  }, "strip", import("zod").ZodTypeAny, {
80884
81396
  'x-tenant': string;
80885
81397
  authorization: string;
81398
+ 'x-client-timezone': string;
81399
+ 'x-code'?: string | undefined;
80886
81400
  }, {
80887
81401
  'x-tenant': string;
80888
81402
  authorization: string;
81403
+ 'x-code'?: string | undefined;
81404
+ 'x-client-timezone'?: string | undefined;
80889
81405
  }>>>;
80890
81406
  };
80891
81407
  getRoom: {
@@ -84088,12 +84604,18 @@ export declare const chatContract: {
84088
84604
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
84089
84605
  'x-tenant': import("zod").ZodString;
84090
84606
  authorization: import("zod").ZodString;
84607
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
84608
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
84091
84609
  }, "strip", import("zod").ZodTypeAny, {
84092
84610
  'x-tenant': string;
84093
84611
  authorization: string;
84612
+ 'x-client-timezone': string;
84613
+ 'x-code'?: string | undefined;
84094
84614
  }, {
84095
84615
  'x-tenant': string;
84096
84616
  authorization: string;
84617
+ 'x-code'?: string | undefined;
84618
+ 'x-client-timezone'?: string | undefined;
84097
84619
  }>>>;
84098
84620
  };
84099
84621
  createRoom: {
@@ -88440,12 +88962,18 @@ export declare const chatContract: {
88440
88962
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
88441
88963
  'x-tenant': import("zod").ZodString;
88442
88964
  authorization: import("zod").ZodString;
88965
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
88966
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
88443
88967
  }, "strip", import("zod").ZodTypeAny, {
88444
88968
  'x-tenant': string;
88445
88969
  authorization: string;
88970
+ 'x-client-timezone': string;
88971
+ 'x-code'?: string | undefined;
88446
88972
  }, {
88447
88973
  'x-tenant': string;
88448
88974
  authorization: string;
88975
+ 'x-code'?: string | undefined;
88976
+ 'x-client-timezone'?: string | undefined;
88449
88977
  }>>>;
88450
88978
  };
88451
88979
  readRoom: {
@@ -91644,12 +92172,18 @@ export declare const chatContract: {
91644
92172
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
91645
92173
  'x-tenant': import("zod").ZodString;
91646
92174
  authorization: import("zod").ZodString;
92175
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
92176
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
91647
92177
  }, "strip", import("zod").ZodTypeAny, {
91648
92178
  'x-tenant': string;
91649
92179
  authorization: string;
92180
+ 'x-client-timezone': string;
92181
+ 'x-code'?: string | undefined;
91650
92182
  }, {
91651
92183
  'x-tenant': string;
91652
92184
  authorization: string;
92185
+ 'x-code'?: string | undefined;
92186
+ 'x-client-timezone'?: string | undefined;
91653
92187
  }>>>;
91654
92188
  };
91655
92189
  searchRooms: {
@@ -94857,12 +95391,18 @@ export declare const chatContract: {
94857
95391
  headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
94858
95392
  'x-tenant': import("zod").ZodString;
94859
95393
  authorization: import("zod").ZodString;
95394
+ 'x-code': import("zod").ZodOptional<import("zod").ZodString>;
95395
+ 'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
94860
95396
  }, "strip", import("zod").ZodTypeAny, {
94861
95397
  'x-tenant': string;
94862
95398
  authorization: string;
95399
+ 'x-client-timezone': string;
95400
+ 'x-code'?: string | undefined;
94863
95401
  }, {
94864
95402
  'x-tenant': string;
94865
95403
  authorization: string;
95404
+ 'x-code'?: string | undefined;
95405
+ 'x-client-timezone'?: string | undefined;
94866
95406
  }>>>;
94867
95407
  };
94868
95408
  };