@kl1/contracts 1.2.69-uat → 1.2.71-uat

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/api-contracts/src/activity-log/index.d.ts +1 -1
  2. package/dist/api-contracts/src/attribute/index.d.ts +7 -7
  3. package/dist/api-contracts/src/auth/index.d.ts +1 -1
  4. package/dist/api-contracts/src/aws/index.d.ts +2 -2
  5. package/dist/api-contracts/src/botpress/index.d.ts +2 -2
  6. package/dist/api-contracts/src/category/index.d.ts +7 -7
  7. package/dist/api-contracts/src/channel/index.d.ts +28 -28
  8. package/dist/api-contracts/src/chat/index.d.ts +1800 -1800
  9. package/dist/api-contracts/src/chat/schema.d.ts +400 -400
  10. package/dist/api-contracts/src/chat/validation.d.ts +321 -321
  11. package/dist/api-contracts/src/comment/index.d.ts +364 -364
  12. package/dist/api-contracts/src/comment/schema.d.ts +88 -88
  13. package/dist/api-contracts/src/company/index.d.ts +5 -5
  14. package/dist/api-contracts/src/contract.d.ts +3854 -3854
  15. package/dist/api-contracts/src/cx-log/index.d.ts +64 -64
  16. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  17. package/dist/api-contracts/src/cx-log/schema.d.ts +80 -80
  18. package/dist/api-contracts/src/dashboard/index.d.ts +26 -26
  19. package/dist/api-contracts/src/evaluate-form/index.d.ts +1 -1
  20. package/dist/api-contracts/src/extension/index.d.ts +7 -7
  21. package/dist/api-contracts/src/facebook-feed/index.d.ts +220 -220
  22. package/dist/api-contracts/src/instagram/index.d.ts +220 -220
  23. package/dist/api-contracts/src/line/index.d.ts +220 -220
  24. package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts +1 -1
  25. package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts.map +1 -1
  26. package/dist/api-contracts/src/mail/mail-contract.d.ts +240 -240
  27. package/dist/api-contracts/src/mail/room-contract.d.ts +240 -240
  28. package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +80 -80
  29. package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +60 -60
  30. package/dist/api-contracts/src/messenger/index.d.ts +220 -220
  31. package/dist/api-contracts/src/notification/index.d.ts +4 -4
  32. package/dist/api-contracts/src/permission/index.d.ts +1 -1
  33. package/dist/api-contracts/src/presence-status/index.d.ts +5 -5
  34. package/dist/api-contracts/src/role/index.d.ts +5 -5
  35. package/dist/api-contracts/src/snippet/index.d.ts +8 -8
  36. package/dist/api-contracts/src/tag/index.d.ts +4 -4
  37. package/dist/api-contracts/src/telegram/index.d.ts +220 -220
  38. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +2 -2
  39. package/dist/api-contracts/src/telephony-cdr/index.d.ts +14 -14
  40. package/dist/api-contracts/src/telephony-extension/index.d.ts +1 -1
  41. package/dist/api-contracts/src/ticket/index.d.ts +672 -672
  42. package/dist/api-contracts/src/ticket/schema.d.ts +44 -44
  43. package/dist/api-contracts/src/ticket/validation.d.ts +20 -20
  44. package/dist/api-contracts/src/upload/index.d.ts +2 -2
  45. package/dist/api-contracts/src/user/index.d.ts +6 -6
  46. package/dist/api-contracts/src/user-presence-status-log/index.d.ts +2 -2
  47. package/dist/api-contracts/src/viber/index.d.ts +220 -220
  48. package/dist/api-contracts/src/webchat/index.d.ts +220 -220
  49. package/dist/api-contracts/src/whatsapp/index.d.ts +220 -220
  50. package/dist/api-contracts/src/widget/index.d.ts +9 -9
  51. package/dist/api-contracts/src/workflow-rule/index.d.ts +260 -260
  52. package/dist/api-contracts/src/wrap-up-form/index.d.ts +187 -187
  53. package/dist/api-contracts/src/wrap-up-form/schema.d.ts +20 -20
  54. package/dist/index.js +112 -106
  55. package/dist/index.js.map +1 -1
  56. package/dist/index.mjs +112 -106
  57. package/dist/index.mjs.map +1 -1
  58. package/package.json +1 -1
@@ -6540,6 +6540,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6540
6540
  createdAt: Date;
6541
6541
  updatedAt: Date;
6542
6542
  deletedAt: Date | null;
6543
+ tags: {
6544
+ name: string;
6545
+ id: string;
6546
+ createdAt: Date;
6547
+ updatedAt: Date;
6548
+ deletedAt: Date | null;
6549
+ }[];
6550
+ callFrom: string | null;
6551
+ callTo: string | null;
6552
+ note: string | null;
6543
6553
  categories: {
6544
6554
  id: string;
6545
6555
  value: string;
@@ -6562,16 +6572,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6562
6572
  }[];
6563
6573
  }[];
6564
6574
  }[];
6565
- tags: {
6566
- name: string;
6567
- id: string;
6568
- createdAt: Date;
6569
- updatedAt: Date;
6570
- deletedAt: Date | null;
6571
- }[];
6572
- callFrom: string | null;
6573
- callTo: string | null;
6574
- note: string | null;
6575
6575
  customFields?: {
6576
6576
  id: string;
6577
6577
  createdAt: Date;
@@ -6591,6 +6591,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6591
6591
  createdAt: Date;
6592
6592
  updatedAt: Date;
6593
6593
  deletedAt: Date | null;
6594
+ tags: {
6595
+ name: string;
6596
+ id: string;
6597
+ createdAt: Date;
6598
+ updatedAt: Date;
6599
+ deletedAt: Date | null;
6600
+ }[];
6601
+ callFrom: string | null;
6602
+ callTo: string | null;
6603
+ note: string | null;
6594
6604
  categories: {
6595
6605
  id: string;
6596
6606
  value: string;
@@ -6613,16 +6623,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6613
6623
  }[];
6614
6624
  }[];
6615
6625
  }[];
6616
- tags: {
6617
- name: string;
6618
- id: string;
6619
- createdAt: Date;
6620
- updatedAt: Date;
6621
- deletedAt: Date | null;
6622
- }[];
6623
- callFrom: string | null;
6624
- callTo: string | null;
6625
- note: string | null;
6626
6626
  customFields?: {
6627
6627
  id: string;
6628
6628
  createdAt: Date;
@@ -6731,6 +6731,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6731
6731
  createdAt: Date;
6732
6732
  updatedAt: Date;
6733
6733
  deletedAt: Date | null;
6734
+ tags: {
6735
+ name: string;
6736
+ id: string;
6737
+ createdAt: Date;
6738
+ updatedAt: Date;
6739
+ deletedAt: Date | null;
6740
+ }[];
6741
+ callFrom: string | null;
6742
+ callTo: string | null;
6743
+ note: string | null;
6734
6744
  categories: {
6735
6745
  id: string;
6736
6746
  value: string;
@@ -6753,16 +6763,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6753
6763
  }[];
6754
6764
  }[];
6755
6765
  }[];
6756
- tags: {
6757
- name: string;
6758
- id: string;
6759
- createdAt: Date;
6760
- updatedAt: Date;
6761
- deletedAt: Date | null;
6762
- }[];
6763
- callFrom: string | null;
6764
- callTo: string | null;
6765
- note: string | null;
6766
6766
  customFields?: {
6767
6767
  id: string;
6768
6768
  createdAt: Date;
@@ -6821,6 +6821,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6821
6821
  createdAt: Date;
6822
6822
  updatedAt: Date;
6823
6823
  deletedAt: Date | null;
6824
+ tags: {
6825
+ name: string;
6826
+ id: string;
6827
+ createdAt: Date;
6828
+ updatedAt: Date;
6829
+ deletedAt: Date | null;
6830
+ }[];
6831
+ callFrom: string | null;
6832
+ callTo: string | null;
6833
+ note: string | null;
6824
6834
  categories: {
6825
6835
  id: string;
6826
6836
  value: string;
@@ -6843,16 +6853,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6843
6853
  }[];
6844
6854
  }[];
6845
6855
  }[];
6846
- tags: {
6847
- name: string;
6848
- id: string;
6849
- createdAt: Date;
6850
- updatedAt: Date;
6851
- deletedAt: Date | null;
6852
- }[];
6853
- callFrom: string | null;
6854
- callTo: string | null;
6855
- note: string | null;
6856
6856
  customFields?: {
6857
6857
  id: string;
6858
6858
  createdAt: Date;
@@ -7266,6 +7266,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7266
7266
  createdAt: Date;
7267
7267
  updatedAt: Date;
7268
7268
  deletedAt: Date | null;
7269
+ tags: {
7270
+ name: string;
7271
+ id: string;
7272
+ createdAt: Date;
7273
+ updatedAt: Date;
7274
+ deletedAt: Date | null;
7275
+ }[];
7276
+ callFrom: string | null;
7277
+ callTo: string | null;
7278
+ note: string | null;
7269
7279
  categories: {
7270
7280
  id: string;
7271
7281
  value: string;
@@ -7288,16 +7298,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7288
7298
  }[];
7289
7299
  }[];
7290
7300
  }[];
7291
- tags: {
7292
- name: string;
7293
- id: string;
7294
- createdAt: Date;
7295
- updatedAt: Date;
7296
- deletedAt: Date | null;
7297
- }[];
7298
- callFrom: string | null;
7299
- callTo: string | null;
7300
- note: string | null;
7301
7301
  customFields?: {
7302
7302
  id: string;
7303
7303
  createdAt: Date;
@@ -7695,6 +7695,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7695
7695
  createdAt: Date;
7696
7696
  updatedAt: Date;
7697
7697
  deletedAt: Date | null;
7698
+ tags: {
7699
+ name: string;
7700
+ id: string;
7701
+ createdAt: Date;
7702
+ updatedAt: Date;
7703
+ deletedAt: Date | null;
7704
+ }[];
7705
+ callFrom: string | null;
7706
+ callTo: string | null;
7707
+ note: string | null;
7698
7708
  categories: {
7699
7709
  id: string;
7700
7710
  value: string;
@@ -7717,16 +7727,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
7717
7727
  }[];
7718
7728
  }[];
7719
7729
  }[];
7720
- tags: {
7721
- name: string;
7722
- id: string;
7723
- createdAt: Date;
7724
- updatedAt: Date;
7725
- deletedAt: Date | null;
7726
- }[];
7727
- callFrom: string | null;
7728
- callTo: string | null;
7729
- note: string | null;
7730
7730
  customFields?: {
7731
7731
  id: string;
7732
7732
  createdAt: Date;
@@ -11227,6 +11227,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11227
11227
  createdAt: Date;
11228
11228
  updatedAt: Date;
11229
11229
  deletedAt: Date | null;
11230
+ tags: {
11231
+ name: string;
11232
+ id: string;
11233
+ createdAt: Date;
11234
+ updatedAt: Date;
11235
+ deletedAt: Date | null;
11236
+ }[];
11237
+ callFrom: string | null;
11238
+ callTo: string | null;
11239
+ note: string | null;
11230
11240
  categories: {
11231
11241
  id: string;
11232
11242
  value: string;
@@ -11249,16 +11259,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11249
11259
  }[];
11250
11260
  }[];
11251
11261
  }[];
11252
- tags: {
11253
- name: string;
11254
- id: string;
11255
- createdAt: Date;
11256
- updatedAt: Date;
11257
- deletedAt: Date | null;
11258
- }[];
11259
- callFrom: string | null;
11260
- callTo: string | null;
11261
- note: string | null;
11262
11262
  customFields?: {
11263
11263
  id: string;
11264
11264
  createdAt: Date;
@@ -11278,6 +11278,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11278
11278
  createdAt: Date;
11279
11279
  updatedAt: Date;
11280
11280
  deletedAt: Date | null;
11281
+ tags: {
11282
+ name: string;
11283
+ id: string;
11284
+ createdAt: Date;
11285
+ updatedAt: Date;
11286
+ deletedAt: Date | null;
11287
+ }[];
11288
+ callFrom: string | null;
11289
+ callTo: string | null;
11290
+ note: string | null;
11281
11291
  categories: {
11282
11292
  id: string;
11283
11293
  value: string;
@@ -11300,16 +11310,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11300
11310
  }[];
11301
11311
  }[];
11302
11312
  }[];
11303
- tags: {
11304
- name: string;
11305
- id: string;
11306
- createdAt: Date;
11307
- updatedAt: Date;
11308
- deletedAt: Date | null;
11309
- }[];
11310
- callFrom: string | null;
11311
- callTo: string | null;
11312
- note: string | null;
11313
11313
  customFields?: {
11314
11314
  id: string;
11315
11315
  createdAt: Date;
@@ -11418,6 +11418,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11418
11418
  createdAt: Date;
11419
11419
  updatedAt: Date;
11420
11420
  deletedAt: Date | null;
11421
+ tags: {
11422
+ name: string;
11423
+ id: string;
11424
+ createdAt: Date;
11425
+ updatedAt: Date;
11426
+ deletedAt: Date | null;
11427
+ }[];
11428
+ callFrom: string | null;
11429
+ callTo: string | null;
11430
+ note: string | null;
11421
11431
  categories: {
11422
11432
  id: string;
11423
11433
  value: string;
@@ -11440,16 +11450,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11440
11450
  }[];
11441
11451
  }[];
11442
11452
  }[];
11443
- tags: {
11444
- name: string;
11445
- id: string;
11446
- createdAt: Date;
11447
- updatedAt: Date;
11448
- deletedAt: Date | null;
11449
- }[];
11450
- callFrom: string | null;
11451
- callTo: string | null;
11452
- note: string | null;
11453
11453
  customFields?: {
11454
11454
  id: string;
11455
11455
  createdAt: Date;
@@ -11508,6 +11508,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11508
11508
  createdAt: Date;
11509
11509
  updatedAt: Date;
11510
11510
  deletedAt: Date | null;
11511
+ tags: {
11512
+ name: string;
11513
+ id: string;
11514
+ createdAt: Date;
11515
+ updatedAt: Date;
11516
+ deletedAt: Date | null;
11517
+ }[];
11518
+ callFrom: string | null;
11519
+ callTo: string | null;
11520
+ note: string | null;
11511
11521
  categories: {
11512
11522
  id: string;
11513
11523
  value: string;
@@ -11530,16 +11540,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11530
11540
  }[];
11531
11541
  }[];
11532
11542
  }[];
11533
- tags: {
11534
- name: string;
11535
- id: string;
11536
- createdAt: Date;
11537
- updatedAt: Date;
11538
- deletedAt: Date | null;
11539
- }[];
11540
- callFrom: string | null;
11541
- callTo: string | null;
11542
- note: string | null;
11543
11543
  customFields?: {
11544
11544
  id: string;
11545
11545
  createdAt: Date;
@@ -11953,6 +11953,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11953
11953
  createdAt: Date;
11954
11954
  updatedAt: Date;
11955
11955
  deletedAt: Date | null;
11956
+ tags: {
11957
+ name: string;
11958
+ id: string;
11959
+ createdAt: Date;
11960
+ updatedAt: Date;
11961
+ deletedAt: Date | null;
11962
+ }[];
11963
+ callFrom: string | null;
11964
+ callTo: string | null;
11965
+ note: string | null;
11956
11966
  categories: {
11957
11967
  id: string;
11958
11968
  value: string;
@@ -11975,16 +11985,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
11975
11985
  }[];
11976
11986
  }[];
11977
11987
  }[];
11978
- tags: {
11979
- name: string;
11980
- id: string;
11981
- createdAt: Date;
11982
- updatedAt: Date;
11983
- deletedAt: Date | null;
11984
- }[];
11985
- callFrom: string | null;
11986
- callTo: string | null;
11987
- note: string | null;
11988
11988
  customFields?: {
11989
11989
  id: string;
11990
11990
  createdAt: Date;
@@ -12382,6 +12382,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
12382
12382
  createdAt: Date;
12383
12383
  updatedAt: Date;
12384
12384
  deletedAt: Date | null;
12385
+ tags: {
12386
+ name: string;
12387
+ id: string;
12388
+ createdAt: Date;
12389
+ updatedAt: Date;
12390
+ deletedAt: Date | null;
12391
+ }[];
12392
+ callFrom: string | null;
12393
+ callTo: string | null;
12394
+ note: string | null;
12385
12395
  categories: {
12386
12396
  id: string;
12387
12397
  value: string;
@@ -12404,16 +12414,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
12404
12414
  }[];
12405
12415
  }[];
12406
12416
  }[];
12407
- tags: {
12408
- name: string;
12409
- id: string;
12410
- createdAt: Date;
12411
- updatedAt: Date;
12412
- deletedAt: Date | null;
12413
- }[];
12414
- callFrom: string | null;
12415
- callTo: string | null;
12416
- note: string | null;
12417
12417
  customFields?: {
12418
12418
  id: string;
12419
12419
  createdAt: Date;
@@ -14584,6 +14584,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14584
14584
  createdAt: Date;
14585
14585
  updatedAt: Date;
14586
14586
  deletedAt: Date | null;
14587
+ tags: {
14588
+ name: string;
14589
+ id: string;
14590
+ createdAt: Date;
14591
+ updatedAt: Date;
14592
+ deletedAt: Date | null;
14593
+ }[];
14594
+ callFrom: string | null;
14595
+ callTo: string | null;
14596
+ note: string | null;
14587
14597
  categories: {
14588
14598
  id: string;
14589
14599
  value: string;
@@ -14606,17 +14616,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
14606
14616
  }[];
14607
14617
  }[];
14608
14618
  }[];
14609
- tags: {
14610
- name: string;
14611
- id: string;
14612
- createdAt: Date;
14613
- updatedAt: Date;
14614
- deletedAt: Date | null;
14615
- }[];
14616
- callFrom: string | null;
14617
- callTo: string | null;
14618
- note: string | null;
14619
- customFields?: {
14619
+ customFields?: {
14620
14620
  id: string;
14621
14621
  createdAt: Date;
14622
14622
  updatedAt: Date;
@@ -15350,6 +15350,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15350
15350
  createdAt: Date;
15351
15351
  updatedAt: Date;
15352
15352
  deletedAt: Date | null;
15353
+ tags: {
15354
+ name: string;
15355
+ id: string;
15356
+ createdAt: Date;
15357
+ updatedAt: Date;
15358
+ deletedAt: Date | null;
15359
+ }[];
15360
+ callFrom: string | null;
15361
+ callTo: string | null;
15362
+ note: string | null;
15353
15363
  categories: {
15354
15364
  id: string;
15355
15365
  value: string;
@@ -15372,16 +15382,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
15372
15382
  }[];
15373
15383
  }[];
15374
15384
  }[];
15375
- tags: {
15376
- name: string;
15377
- id: string;
15378
- createdAt: Date;
15379
- updatedAt: Date;
15380
- deletedAt: Date | null;
15381
- }[];
15382
- callFrom: string | null;
15383
- callTo: string | null;
15384
- note: string | null;
15385
15385
  customFields?: {
15386
15386
  id: string;
15387
15387
  createdAt: Date;
@@ -16117,6 +16117,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16117
16117
  createdAt: Date;
16118
16118
  updatedAt: Date;
16119
16119
  deletedAt: Date | null;
16120
+ tags: {
16121
+ name: string;
16122
+ id: string;
16123
+ createdAt: Date;
16124
+ updatedAt: Date;
16125
+ deletedAt: Date | null;
16126
+ }[];
16127
+ callFrom: string | null;
16128
+ callTo: string | null;
16129
+ note: string | null;
16120
16130
  categories: {
16121
16131
  id: string;
16122
16132
  value: string;
@@ -16139,16 +16149,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16139
16149
  }[];
16140
16150
  }[];
16141
16151
  }[];
16142
- tags: {
16143
- name: string;
16144
- id: string;
16145
- createdAt: Date;
16146
- updatedAt: Date;
16147
- deletedAt: Date | null;
16148
- }[];
16149
- callFrom: string | null;
16150
- callTo: string | null;
16151
- note: string | null;
16152
16152
  customFields?: {
16153
16153
  id: string;
16154
16154
  createdAt: Date;
@@ -16883,6 +16883,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16883
16883
  createdAt: Date;
16884
16884
  updatedAt: Date;
16885
16885
  deletedAt: Date | null;
16886
+ tags: {
16887
+ name: string;
16888
+ id: string;
16889
+ createdAt: Date;
16890
+ updatedAt: Date;
16891
+ deletedAt: Date | null;
16892
+ }[];
16893
+ callFrom: string | null;
16894
+ callTo: string | null;
16895
+ note: string | null;
16886
16896
  categories: {
16887
16897
  id: string;
16888
16898
  value: string;
@@ -16905,16 +16915,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
16905
16915
  }[];
16906
16916
  }[];
16907
16917
  }[];
16908
- tags: {
16909
- name: string;
16910
- id: string;
16911
- createdAt: Date;
16912
- updatedAt: Date;
16913
- deletedAt: Date | null;
16914
- }[];
16915
- callFrom: string | null;
16916
- callTo: string | null;
16917
- note: string | null;
16918
16918
  customFields?: {
16919
16919
  id: string;
16920
16920
  createdAt: Date;
@@ -17650,6 +17650,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17650
17650
  createdAt: Date;
17651
17651
  updatedAt: Date;
17652
17652
  deletedAt: Date | null;
17653
+ tags: {
17654
+ name: string;
17655
+ id: string;
17656
+ createdAt: Date;
17657
+ updatedAt: Date;
17658
+ deletedAt: Date | null;
17659
+ }[];
17660
+ callFrom: string | null;
17661
+ callTo: string | null;
17662
+ note: string | null;
17653
17663
  categories: {
17654
17664
  id: string;
17655
17665
  value: string;
@@ -17672,16 +17682,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
17672
17682
  }[];
17673
17683
  }[];
17674
17684
  }[];
17675
- tags: {
17676
- name: string;
17677
- id: string;
17678
- createdAt: Date;
17679
- updatedAt: Date;
17680
- deletedAt: Date | null;
17681
- }[];
17682
- callFrom: string | null;
17683
- callTo: string | null;
17684
- note: string | null;
17685
17685
  customFields?: {
17686
17686
  id: string;
17687
17687
  createdAt: Date;
@@ -18416,6 +18416,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18416
18416
  createdAt: Date;
18417
18417
  updatedAt: Date;
18418
18418
  deletedAt: Date | null;
18419
+ tags: {
18420
+ name: string;
18421
+ id: string;
18422
+ createdAt: Date;
18423
+ updatedAt: Date;
18424
+ deletedAt: Date | null;
18425
+ }[];
18426
+ callFrom: string | null;
18427
+ callTo: string | null;
18428
+ note: string | null;
18419
18429
  categories: {
18420
18430
  id: string;
18421
18431
  value: string;
@@ -18438,16 +18448,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
18438
18448
  }[];
18439
18449
  }[];
18440
18450
  }[];
18441
- tags: {
18442
- name: string;
18443
- id: string;
18444
- createdAt: Date;
18445
- updatedAt: Date;
18446
- deletedAt: Date | null;
18447
- }[];
18448
- callFrom: string | null;
18449
- callTo: string | null;
18450
- note: string | null;
18451
18451
  customFields?: {
18452
18452
  id: string;
18453
18453
  createdAt: Date;
@@ -19185,6 +19185,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19185
19185
  createdAt: Date;
19186
19186
  updatedAt: Date;
19187
19187
  deletedAt: Date | null;
19188
+ tags: {
19189
+ name: string;
19190
+ id: string;
19191
+ createdAt: Date;
19192
+ updatedAt: Date;
19193
+ deletedAt: Date | null;
19194
+ }[];
19195
+ callFrom: string | null;
19196
+ callTo: string | null;
19197
+ note: string | null;
19188
19198
  categories: {
19189
19199
  id: string;
19190
19200
  value: string;
@@ -19207,16 +19217,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19207
19217
  }[];
19208
19218
  }[];
19209
19219
  }[];
19210
- tags: {
19211
- name: string;
19212
- id: string;
19213
- createdAt: Date;
19214
- updatedAt: Date;
19215
- deletedAt: Date | null;
19216
- }[];
19217
- callFrom: string | null;
19218
- callTo: string | null;
19219
- note: string | null;
19220
19220
  customFields?: {
19221
19221
  id: string;
19222
19222
  createdAt: Date;
@@ -19951,6 +19951,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19951
19951
  createdAt: Date;
19952
19952
  updatedAt: Date;
19953
19953
  deletedAt: Date | null;
19954
+ tags: {
19955
+ name: string;
19956
+ id: string;
19957
+ createdAt: Date;
19958
+ updatedAt: Date;
19959
+ deletedAt: Date | null;
19960
+ }[];
19961
+ callFrom: string | null;
19962
+ callTo: string | null;
19963
+ note: string | null;
19954
19964
  categories: {
19955
19965
  id: string;
19956
19966
  value: string;
@@ -19973,16 +19983,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
19973
19983
  }[];
19974
19984
  }[];
19975
19985
  }[];
19976
- tags: {
19977
- name: string;
19978
- id: string;
19979
- createdAt: Date;
19980
- updatedAt: Date;
19981
- deletedAt: Date | null;
19982
- }[];
19983
- callFrom: string | null;
19984
- callTo: string | null;
19985
- note: string | null;
19986
19986
  customFields?: {
19987
19987
  id: string;
19988
19988
  createdAt: Date;
@@ -20721,6 +20721,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20721
20721
  createdAt: Date;
20722
20722
  updatedAt: Date;
20723
20723
  deletedAt: Date | null;
20724
+ tags: {
20725
+ name: string;
20726
+ id: string;
20727
+ createdAt: Date;
20728
+ updatedAt: Date;
20729
+ deletedAt: Date | null;
20730
+ }[];
20731
+ callFrom: string | null;
20732
+ callTo: string | null;
20733
+ note: string | null;
20724
20734
  categories: {
20725
20735
  id: string;
20726
20736
  value: string;
@@ -20743,16 +20753,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
20743
20753
  }[];
20744
20754
  }[];
20745
20755
  }[];
20746
- tags: {
20747
- name: string;
20748
- id: string;
20749
- createdAt: Date;
20750
- updatedAt: Date;
20751
- deletedAt: Date | null;
20752
- }[];
20753
- callFrom: string | null;
20754
- callTo: string | null;
20755
- note: string | null;
20756
20756
  customFields?: {
20757
20757
  id: string;
20758
20758
  createdAt: Date;
@@ -21487,6 +21487,16 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
21487
21487
  createdAt: Date;
21488
21488
  updatedAt: Date;
21489
21489
  deletedAt: Date | null;
21490
+ tags: {
21491
+ name: string;
21492
+ id: string;
21493
+ createdAt: Date;
21494
+ updatedAt: Date;
21495
+ deletedAt: Date | null;
21496
+ }[];
21497
+ callFrom: string | null;
21498
+ callTo: string | null;
21499
+ note: string | null;
21490
21500
  categories: {
21491
21501
  id: string;
21492
21502
  value: string;
@@ -21509,16 +21519,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
21509
21519
  }[];
21510
21520
  }[];
21511
21521
  }[];
21512
- tags: {
21513
- name: string;
21514
- id: string;
21515
- createdAt: Date;
21516
- updatedAt: Date;
21517
- deletedAt: Date | null;
21518
- }[];
21519
- callFrom: string | null;
21520
- callTo: string | null;
21521
- note: string | null;
21522
21522
  customFields?: {
21523
21523
  id: string;
21524
21524
  createdAt: Date;
@@ -23962,6 +23962,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23962
23962
  createdAt: Date;
23963
23963
  updatedAt: Date;
23964
23964
  deletedAt: Date | null;
23965
+ tags: {
23966
+ name: string;
23967
+ id: string;
23968
+ createdAt: Date;
23969
+ updatedAt: Date;
23970
+ deletedAt: Date | null;
23971
+ }[];
23972
+ callFrom: string | null;
23973
+ callTo: string | null;
23974
+ note: string | null;
23965
23975
  categories: {
23966
23976
  id: string;
23967
23977
  value: string;
@@ -23984,16 +23994,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
23984
23994
  }[];
23985
23995
  }[];
23986
23996
  }[];
23987
- tags: {
23988
- name: string;
23989
- id: string;
23990
- createdAt: Date;
23991
- updatedAt: Date;
23992
- deletedAt: Date | null;
23993
- }[];
23994
- callFrom: string | null;
23995
- callTo: string | null;
23996
- note: string | null;
23997
23997
  customFields?: {
23998
23998
  id: string;
23999
23999
  createdAt: Date;
@@ -24013,6 +24013,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24013
24013
  createdAt: Date;
24014
24014
  updatedAt: Date;
24015
24015
  deletedAt: Date | null;
24016
+ tags: {
24017
+ name: string;
24018
+ id: string;
24019
+ createdAt: Date;
24020
+ updatedAt: Date;
24021
+ deletedAt: Date | null;
24022
+ }[];
24023
+ callFrom: string | null;
24024
+ callTo: string | null;
24025
+ note: string | null;
24016
24026
  categories: {
24017
24027
  id: string;
24018
24028
  value: string;
@@ -24035,16 +24045,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24035
24045
  }[];
24036
24046
  }[];
24037
24047
  }[];
24038
- tags: {
24039
- name: string;
24040
- id: string;
24041
- createdAt: Date;
24042
- updatedAt: Date;
24043
- deletedAt: Date | null;
24044
- }[];
24045
- callFrom: string | null;
24046
- callTo: string | null;
24047
- note: string | null;
24048
24048
  customFields?: {
24049
24049
  id: string;
24050
24050
  createdAt: Date;
@@ -24153,6 +24153,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24153
24153
  createdAt: Date;
24154
24154
  updatedAt: Date;
24155
24155
  deletedAt: Date | null;
24156
+ tags: {
24157
+ name: string;
24158
+ id: string;
24159
+ createdAt: Date;
24160
+ updatedAt: Date;
24161
+ deletedAt: Date | null;
24162
+ }[];
24163
+ callFrom: string | null;
24164
+ callTo: string | null;
24165
+ note: string | null;
24156
24166
  categories: {
24157
24167
  id: string;
24158
24168
  value: string;
@@ -24175,16 +24185,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24175
24185
  }[];
24176
24186
  }[];
24177
24187
  }[];
24178
- tags: {
24179
- name: string;
24180
- id: string;
24181
- createdAt: Date;
24182
- updatedAt: Date;
24183
- deletedAt: Date | null;
24184
- }[];
24185
- callFrom: string | null;
24186
- callTo: string | null;
24187
- note: string | null;
24188
24188
  customFields?: {
24189
24189
  id: string;
24190
24190
  createdAt: Date;
@@ -24243,6 +24243,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24243
24243
  createdAt: Date;
24244
24244
  updatedAt: Date;
24245
24245
  deletedAt: Date | null;
24246
+ tags: {
24247
+ name: string;
24248
+ id: string;
24249
+ createdAt: Date;
24250
+ updatedAt: Date;
24251
+ deletedAt: Date | null;
24252
+ }[];
24253
+ callFrom: string | null;
24254
+ callTo: string | null;
24255
+ note: string | null;
24246
24256
  categories: {
24247
24257
  id: string;
24248
24258
  value: string;
@@ -24265,16 +24275,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24265
24275
  }[];
24266
24276
  }[];
24267
24277
  }[];
24268
- tags: {
24269
- name: string;
24270
- id: string;
24271
- createdAt: Date;
24272
- updatedAt: Date;
24273
- deletedAt: Date | null;
24274
- }[];
24275
- callFrom: string | null;
24276
- callTo: string | null;
24277
- note: string | null;
24278
24278
  customFields?: {
24279
24279
  id: string;
24280
24280
  createdAt: Date;
@@ -24596,6 +24596,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24596
24596
  createdAt: Date;
24597
24597
  updatedAt: Date;
24598
24598
  deletedAt: Date | null;
24599
+ tags: {
24600
+ name: string;
24601
+ id: string;
24602
+ createdAt: Date;
24603
+ updatedAt: Date;
24604
+ deletedAt: Date | null;
24605
+ }[];
24606
+ callFrom: string | null;
24607
+ callTo: string | null;
24608
+ note: string | null;
24599
24609
  categories: {
24600
24610
  id: string;
24601
24611
  value: string;
@@ -24618,16 +24628,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24618
24628
  }[];
24619
24629
  }[];
24620
24630
  }[];
24621
- tags: {
24622
- name: string;
24623
- id: string;
24624
- createdAt: Date;
24625
- updatedAt: Date;
24626
- deletedAt: Date | null;
24627
- }[];
24628
- callFrom: string | null;
24629
- callTo: string | null;
24630
- note: string | null;
24631
24631
  customFields?: {
24632
24632
  id: string;
24633
24633
  createdAt: Date;
@@ -24949,6 +24949,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24949
24949
  createdAt: Date;
24950
24950
  updatedAt: Date;
24951
24951
  deletedAt: Date | null;
24952
+ tags: {
24953
+ name: string;
24954
+ id: string;
24955
+ createdAt: Date;
24956
+ updatedAt: Date;
24957
+ deletedAt: Date | null;
24958
+ }[];
24959
+ callFrom: string | null;
24960
+ callTo: string | null;
24961
+ note: string | null;
24952
24962
  categories: {
24953
24963
  id: string;
24954
24964
  value: string;
@@ -24971,16 +24981,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
24971
24981
  }[];
24972
24982
  }[];
24973
24983
  }[];
24974
- tags: {
24975
- name: string;
24976
- id: string;
24977
- createdAt: Date;
24978
- updatedAt: Date;
24979
- deletedAt: Date | null;
24980
- }[];
24981
- callFrom: string | null;
24982
- callTo: string | null;
24983
- note: string | null;
24984
24984
  customFields?: {
24985
24985
  id: string;
24986
24986
  createdAt: Date;
@@ -25958,6 +25958,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25958
25958
  createdAt: Date;
25959
25959
  updatedAt: Date;
25960
25960
  deletedAt: Date | null;
25961
+ tags: {
25962
+ name: string;
25963
+ id: string;
25964
+ createdAt: Date;
25965
+ updatedAt: Date;
25966
+ deletedAt: Date | null;
25967
+ }[];
25968
+ callFrom: string | null;
25969
+ callTo: string | null;
25970
+ note: string | null;
25961
25971
  categories: {
25962
25972
  id: string;
25963
25973
  value: string;
@@ -25980,16 +25990,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
25980
25990
  }[];
25981
25991
  }[];
25982
25992
  }[];
25983
- tags: {
25984
- name: string;
25985
- id: string;
25986
- createdAt: Date;
25987
- updatedAt: Date;
25988
- deletedAt: Date | null;
25989
- }[];
25990
- callFrom: string | null;
25991
- callTo: string | null;
25992
- note: string | null;
25993
25993
  customFields?: {
25994
25994
  id: string;
25995
25995
  createdAt: Date;
@@ -26474,6 +26474,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26474
26474
  createdAt: Date;
26475
26475
  updatedAt: Date;
26476
26476
  deletedAt: Date | null;
26477
+ tags: {
26478
+ name: string;
26479
+ id: string;
26480
+ createdAt: Date;
26481
+ updatedAt: Date;
26482
+ deletedAt: Date | null;
26483
+ }[];
26484
+ callFrom: string | null;
26485
+ callTo: string | null;
26486
+ note: string | null;
26477
26487
  categories: {
26478
26488
  id: string;
26479
26489
  value: string;
@@ -26496,16 +26506,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26496
26506
  }[];
26497
26507
  }[];
26498
26508
  }[];
26499
- tags: {
26500
- name: string;
26501
- id: string;
26502
- createdAt: Date;
26503
- updatedAt: Date;
26504
- deletedAt: Date | null;
26505
- }[];
26506
- callFrom: string | null;
26507
- callTo: string | null;
26508
- note: string | null;
26509
26509
  customFields?: {
26510
26510
  id: string;
26511
26511
  createdAt: Date;
@@ -26992,6 +26992,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
26992
26992
  createdAt: Date;
26993
26993
  updatedAt: Date;
26994
26994
  deletedAt: Date | null;
26995
+ tags: {
26996
+ name: string;
26997
+ id: string;
26998
+ createdAt: Date;
26999
+ updatedAt: Date;
27000
+ deletedAt: Date | null;
27001
+ }[];
27002
+ callFrom: string | null;
27003
+ callTo: string | null;
27004
+ note: string | null;
26995
27005
  categories: {
26996
27006
  id: string;
26997
27007
  value: string;
@@ -27014,16 +27024,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
27014
27024
  }[];
27015
27025
  }[];
27016
27026
  }[];
27017
- tags: {
27018
- name: string;
27019
- id: string;
27020
- createdAt: Date;
27021
- updatedAt: Date;
27022
- deletedAt: Date | null;
27023
- }[];
27024
- callFrom: string | null;
27025
- callTo: string | null;
27026
- note: string | null;
27027
27027
  customFields?: {
27028
27028
  id: string;
27029
27029
  createdAt: Date;
@@ -27510,6 +27510,16 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
27510
27510
  createdAt: Date;
27511
27511
  updatedAt: Date;
27512
27512
  deletedAt: Date | null;
27513
+ tags: {
27514
+ name: string;
27515
+ id: string;
27516
+ createdAt: Date;
27517
+ updatedAt: Date;
27518
+ deletedAt: Date | null;
27519
+ }[];
27520
+ callFrom: string | null;
27521
+ callTo: string | null;
27522
+ note: string | null;
27513
27523
  categories: {
27514
27524
  id: string;
27515
27525
  value: string;
@@ -27532,16 +27542,6 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
27532
27542
  }[];
27533
27543
  }[];
27534
27544
  }[];
27535
- tags: {
27536
- name: string;
27537
- id: string;
27538
- createdAt: Date;
27539
- updatedAt: Date;
27540
- deletedAt: Date | null;
27541
- }[];
27542
- callFrom: string | null;
27543
- callTo: string | null;
27544
- note: string | null;
27545
27545
  customFields?: {
27546
27546
  id: string;
27547
27547
  createdAt: Date;