@kl1/contracts 1.3.30 → 1.3.32

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 (66) 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/automation-queue/index.d.ts +7 -7
  5. package/dist/api-contracts/src/automation-queue/index.d.ts.map +1 -1
  6. package/dist/api-contracts/src/aws/index.d.ts +2 -2
  7. package/dist/api-contracts/src/botpress/index.d.ts +2 -2
  8. package/dist/api-contracts/src/business-calendar/index.d.ts +4 -4
  9. package/dist/api-contracts/src/business-calendar/index.d.ts.map +1 -1
  10. package/dist/api-contracts/src/category/index.d.ts +7 -7
  11. package/dist/api-contracts/src/channel/index.d.ts +27 -27
  12. package/dist/api-contracts/src/channel/index.d.ts.map +1 -1
  13. package/dist/api-contracts/src/chat/index.d.ts +1821 -1821
  14. package/dist/api-contracts/src/chat/index.d.ts.map +1 -1
  15. package/dist/api-contracts/src/chat/schema.d.ts +400 -400
  16. package/dist/api-contracts/src/chat/validation.d.ts +321 -321
  17. package/dist/api-contracts/src/comment/index.d.ts +364 -364
  18. package/dist/api-contracts/src/comment/schema.d.ts +88 -88
  19. package/dist/api-contracts/src/contract.d.ts +33503 -33503
  20. package/dist/api-contracts/src/contract.d.ts.map +1 -1
  21. package/dist/api-contracts/src/cx-log/index.d.ts +64 -64
  22. package/dist/api-contracts/src/cx-log/index.d.ts.map +1 -1
  23. package/dist/api-contracts/src/cx-log/schema.d.ts +80 -80
  24. package/dist/api-contracts/src/dashboard/index.d.ts +19 -19
  25. package/dist/api-contracts/src/evaluate-form/index.d.ts +1 -1
  26. package/dist/api-contracts/src/extension/index.d.ts +7 -7
  27. package/dist/api-contracts/src/facebook-feed/index.d.ts +220 -220
  28. package/dist/api-contracts/src/general-setting/index.d.ts +2 -2
  29. package/dist/api-contracts/src/hold-label/index.d.ts +10 -10
  30. package/dist/api-contracts/src/instagram/index.d.ts +220 -220
  31. package/dist/api-contracts/src/line/index.d.ts +220 -220
  32. package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts +1 -1
  33. package/dist/api-contracts/src/mail/email-engine-webhooks-events.contract.d.ts.map +1 -1
  34. package/dist/api-contracts/src/mail/mail-contract.d.ts +240 -240
  35. package/dist/api-contracts/src/mail/room-contract.d.ts +240 -240
  36. package/dist/api-contracts/src/mail/schemas/room-validation.schema.d.ts +80 -80
  37. package/dist/api-contracts/src/mail/schemas/room.schema.d.ts +60 -60
  38. package/dist/api-contracts/src/messenger/index.d.ts +220 -220
  39. package/dist/api-contracts/src/notification/index.d.ts +4 -4
  40. package/dist/api-contracts/src/permission/index.d.ts +1 -1
  41. package/dist/api-contracts/src/presence-status/index.d.ts +5 -5
  42. package/dist/api-contracts/src/role/index.d.ts +5 -5
  43. package/dist/api-contracts/src/snippet/index.d.ts +8 -8
  44. package/dist/api-contracts/src/subscription/index.d.ts +5 -5
  45. package/dist/api-contracts/src/tag/index.d.ts +4 -4
  46. package/dist/api-contracts/src/telegram/index.d.ts +220 -220
  47. package/dist/api-contracts/src/telephony-agent-presence-status/index.d.ts +3 -3
  48. package/dist/api-contracts/src/telephony-cdr/index.d.ts +14 -14
  49. package/dist/api-contracts/src/telephony-extension/index.d.ts +1 -1
  50. package/dist/api-contracts/src/ticket/index.d.ts +672 -672
  51. package/dist/api-contracts/src/ticket/schema.d.ts +44 -44
  52. package/dist/api-contracts/src/ticket/validation.d.ts +20 -20
  53. package/dist/api-contracts/src/upload/index.d.ts +2 -2
  54. package/dist/api-contracts/src/user/index.d.ts +7 -7
  55. package/dist/api-contracts/src/user-presence-status-log/index.d.ts +2 -2
  56. package/dist/api-contracts/src/viber/index.d.ts +220 -220
  57. package/dist/api-contracts/src/webchat/index.d.ts +220 -220
  58. package/dist/api-contracts/src/whatsapp/index.d.ts +220 -220
  59. package/dist/api-contracts/src/workflow-rule/index.d.ts +260 -260
  60. package/dist/api-contracts/src/wrap-up-form/index.d.ts +187 -187
  61. package/dist/api-contracts/src/wrap-up-form/schema.d.ts +20 -20
  62. package/dist/index.js +187 -169
  63. package/dist/index.js.map +1 -1
  64. package/dist/index.mjs +187 -169
  65. package/dist/index.mjs.map +1 -1
  66. package/package.json +1 -1
@@ -2236,6 +2236,16 @@ export declare const chatContract: {
2236
2236
  createdAt: Date;
2237
2237
  updatedAt: Date;
2238
2238
  deletedAt: Date | null;
2239
+ tags: {
2240
+ name: string;
2241
+ id: string;
2242
+ createdAt: Date;
2243
+ updatedAt: Date;
2244
+ deletedAt: Date | null;
2245
+ }[];
2246
+ callFrom: string | null;
2247
+ callTo: string | null;
2248
+ note: string | null;
2239
2249
  categories: {
2240
2250
  id: string;
2241
2251
  value: string;
@@ -2258,16 +2268,6 @@ export declare const chatContract: {
2258
2268
  }[];
2259
2269
  }[];
2260
2270
  }[];
2261
- tags: {
2262
- name: string;
2263
- id: string;
2264
- createdAt: Date;
2265
- updatedAt: Date;
2266
- deletedAt: Date | null;
2267
- }[];
2268
- callFrom: string | null;
2269
- callTo: string | null;
2270
- note: string | null;
2271
2271
  customFields?: {
2272
2272
  id: string;
2273
2273
  createdAt: Date;
@@ -2287,6 +2287,16 @@ export declare const chatContract: {
2287
2287
  createdAt: Date;
2288
2288
  updatedAt: Date;
2289
2289
  deletedAt: Date | null;
2290
+ tags: {
2291
+ name: string;
2292
+ id: string;
2293
+ createdAt: Date;
2294
+ updatedAt: Date;
2295
+ deletedAt: Date | null;
2296
+ }[];
2297
+ callFrom: string | null;
2298
+ callTo: string | null;
2299
+ note: string | null;
2290
2300
  categories: {
2291
2301
  id: string;
2292
2302
  value: string;
@@ -2309,16 +2319,6 @@ export declare const chatContract: {
2309
2319
  }[];
2310
2320
  }[];
2311
2321
  }[];
2312
- tags: {
2313
- name: string;
2314
- id: string;
2315
- createdAt: Date;
2316
- updatedAt: Date;
2317
- deletedAt: Date | null;
2318
- }[];
2319
- callFrom: string | null;
2320
- callTo: string | null;
2321
- note: string | null;
2322
2322
  customFields?: {
2323
2323
  id: string;
2324
2324
  createdAt: Date;
@@ -2427,6 +2427,16 @@ export declare const chatContract: {
2427
2427
  createdAt: Date;
2428
2428
  updatedAt: Date;
2429
2429
  deletedAt: Date | null;
2430
+ tags: {
2431
+ name: string;
2432
+ id: string;
2433
+ createdAt: Date;
2434
+ updatedAt: Date;
2435
+ deletedAt: Date | null;
2436
+ }[];
2437
+ callFrom: string | null;
2438
+ callTo: string | null;
2439
+ note: string | null;
2430
2440
  categories: {
2431
2441
  id: string;
2432
2442
  value: string;
@@ -2449,16 +2459,6 @@ export declare const chatContract: {
2449
2459
  }[];
2450
2460
  }[];
2451
2461
  }[];
2452
- tags: {
2453
- name: string;
2454
- id: string;
2455
- createdAt: Date;
2456
- updatedAt: Date;
2457
- deletedAt: Date | null;
2458
- }[];
2459
- callFrom: string | null;
2460
- callTo: string | null;
2461
- note: string | null;
2462
2462
  customFields?: {
2463
2463
  id: string;
2464
2464
  createdAt: Date;
@@ -2517,6 +2517,16 @@ export declare const chatContract: {
2517
2517
  createdAt: Date;
2518
2518
  updatedAt: Date;
2519
2519
  deletedAt: Date | null;
2520
+ tags: {
2521
+ name: string;
2522
+ id: string;
2523
+ createdAt: Date;
2524
+ updatedAt: Date;
2525
+ deletedAt: Date | null;
2526
+ }[];
2527
+ callFrom: string | null;
2528
+ callTo: string | null;
2529
+ note: string | null;
2520
2530
  categories: {
2521
2531
  id: string;
2522
2532
  value: string;
@@ -2539,16 +2549,6 @@ export declare const chatContract: {
2539
2549
  }[];
2540
2550
  }[];
2541
2551
  }[];
2542
- tags: {
2543
- name: string;
2544
- id: string;
2545
- createdAt: Date;
2546
- updatedAt: Date;
2547
- deletedAt: Date | null;
2548
- }[];
2549
- callFrom: string | null;
2550
- callTo: string | null;
2551
- note: string | null;
2552
2552
  customFields?: {
2553
2553
  id: string;
2554
2554
  createdAt: Date;
@@ -2962,6 +2962,16 @@ export declare const chatContract: {
2962
2962
  createdAt: Date;
2963
2963
  updatedAt: Date;
2964
2964
  deletedAt: Date | null;
2965
+ tags: {
2966
+ name: string;
2967
+ id: string;
2968
+ createdAt: Date;
2969
+ updatedAt: Date;
2970
+ deletedAt: Date | null;
2971
+ }[];
2972
+ callFrom: string | null;
2973
+ callTo: string | null;
2974
+ note: string | null;
2965
2975
  categories: {
2966
2976
  id: string;
2967
2977
  value: string;
@@ -2984,16 +2994,6 @@ export declare const chatContract: {
2984
2994
  }[];
2985
2995
  }[];
2986
2996
  }[];
2987
- tags: {
2988
- name: string;
2989
- id: string;
2990
- createdAt: Date;
2991
- updatedAt: Date;
2992
- deletedAt: Date | null;
2993
- }[];
2994
- callFrom: string | null;
2995
- callTo: string | null;
2996
- note: string | null;
2997
2997
  customFields?: {
2998
2998
  id: string;
2999
2999
  createdAt: Date;
@@ -3391,6 +3391,16 @@ export declare const chatContract: {
3391
3391
  createdAt: Date;
3392
3392
  updatedAt: Date;
3393
3393
  deletedAt: Date | null;
3394
+ tags: {
3395
+ name: string;
3396
+ id: string;
3397
+ createdAt: Date;
3398
+ updatedAt: Date;
3399
+ deletedAt: Date | null;
3400
+ }[];
3401
+ callFrom: string | null;
3402
+ callTo: string | null;
3403
+ note: string | null;
3394
3404
  categories: {
3395
3405
  id: string;
3396
3406
  value: string;
@@ -3413,16 +3423,6 @@ export declare const chatContract: {
3413
3423
  }[];
3414
3424
  }[];
3415
3425
  }[];
3416
- tags: {
3417
- name: string;
3418
- id: string;
3419
- createdAt: Date;
3420
- updatedAt: Date;
3421
- deletedAt: Date | null;
3422
- }[];
3423
- callFrom: string | null;
3424
- callTo: string | null;
3425
- note: string | null;
3426
3426
  customFields?: {
3427
3427
  id: string;
3428
3428
  createdAt: Date;
@@ -3822,6 +3822,16 @@ export declare const chatContract: {
3822
3822
  createdAt: Date;
3823
3823
  updatedAt: Date;
3824
3824
  deletedAt: Date | null;
3825
+ tags: {
3826
+ name: string;
3827
+ id: string;
3828
+ createdAt: Date;
3829
+ updatedAt: Date;
3830
+ deletedAt: Date | null;
3831
+ }[];
3832
+ callFrom: string | null;
3833
+ callTo: string | null;
3834
+ note: string | null;
3825
3835
  categories: {
3826
3836
  id: string;
3827
3837
  value: string;
@@ -3844,16 +3854,6 @@ export declare const chatContract: {
3844
3854
  }[];
3845
3855
  }[];
3846
3856
  }[];
3847
- tags: {
3848
- name: string;
3849
- id: string;
3850
- createdAt: Date;
3851
- updatedAt: Date;
3852
- deletedAt: Date | null;
3853
- }[];
3854
- callFrom: string | null;
3855
- callTo: string | null;
3856
- note: string | null;
3857
3857
  customFields?: {
3858
3858
  id: string;
3859
3859
  createdAt: Date;
@@ -4254,6 +4254,16 @@ export declare const chatContract: {
4254
4254
  createdAt: Date;
4255
4255
  updatedAt: Date;
4256
4256
  deletedAt: Date | null;
4257
+ tags: {
4258
+ name: string;
4259
+ id: string;
4260
+ createdAt: Date;
4261
+ updatedAt: Date;
4262
+ deletedAt: Date | null;
4263
+ }[];
4264
+ callFrom: string | null;
4265
+ callTo: string | null;
4266
+ note: string | null;
4257
4267
  categories: {
4258
4268
  id: string;
4259
4269
  value: string;
@@ -4276,16 +4286,6 @@ export declare const chatContract: {
4276
4286
  }[];
4277
4287
  }[];
4278
4288
  }[];
4279
- tags: {
4280
- name: string;
4281
- id: string;
4282
- createdAt: Date;
4283
- updatedAt: Date;
4284
- deletedAt: Date | null;
4285
- }[];
4286
- callFrom: string | null;
4287
- callTo: string | null;
4288
- note: string | null;
4289
4289
  customFields?: {
4290
4290
  id: string;
4291
4291
  createdAt: Date;
@@ -6605,6 +6605,16 @@ export declare const chatContract: {
6605
6605
  createdAt: Date;
6606
6606
  updatedAt: Date;
6607
6607
  deletedAt: Date | null;
6608
+ tags: {
6609
+ name: string;
6610
+ id: string;
6611
+ createdAt: Date;
6612
+ updatedAt: Date;
6613
+ deletedAt: Date | null;
6614
+ }[];
6615
+ callFrom: string | null;
6616
+ callTo: string | null;
6617
+ note: string | null;
6608
6618
  categories: {
6609
6619
  id: string;
6610
6620
  value: string;
@@ -6627,16 +6637,6 @@ export declare const chatContract: {
6627
6637
  }[];
6628
6638
  }[];
6629
6639
  }[];
6630
- tags: {
6631
- name: string;
6632
- id: string;
6633
- createdAt: Date;
6634
- updatedAt: Date;
6635
- deletedAt: Date | null;
6636
- }[];
6637
- callFrom: string | null;
6638
- callTo: string | null;
6639
- note: string | null;
6640
6640
  customFields?: {
6641
6641
  id: string;
6642
6642
  createdAt: Date;
@@ -6656,6 +6656,16 @@ export declare const chatContract: {
6656
6656
  createdAt: Date;
6657
6657
  updatedAt: Date;
6658
6658
  deletedAt: Date | null;
6659
+ tags: {
6660
+ name: string;
6661
+ id: string;
6662
+ createdAt: Date;
6663
+ updatedAt: Date;
6664
+ deletedAt: Date | null;
6665
+ }[];
6666
+ callFrom: string | null;
6667
+ callTo: string | null;
6668
+ note: string | null;
6659
6669
  categories: {
6660
6670
  id: string;
6661
6671
  value: string;
@@ -6678,16 +6688,6 @@ export declare const chatContract: {
6678
6688
  }[];
6679
6689
  }[];
6680
6690
  }[];
6681
- tags: {
6682
- name: string;
6683
- id: string;
6684
- createdAt: Date;
6685
- updatedAt: Date;
6686
- deletedAt: Date | null;
6687
- }[];
6688
- callFrom: string | null;
6689
- callTo: string | null;
6690
- note: string | null;
6691
6691
  customFields?: {
6692
6692
  id: string;
6693
6693
  createdAt: Date;
@@ -6796,6 +6796,16 @@ export declare const chatContract: {
6796
6796
  createdAt: Date;
6797
6797
  updatedAt: Date;
6798
6798
  deletedAt: Date | null;
6799
+ tags: {
6800
+ name: string;
6801
+ id: string;
6802
+ createdAt: Date;
6803
+ updatedAt: Date;
6804
+ deletedAt: Date | null;
6805
+ }[];
6806
+ callFrom: string | null;
6807
+ callTo: string | null;
6808
+ note: string | null;
6799
6809
  categories: {
6800
6810
  id: string;
6801
6811
  value: string;
@@ -6818,16 +6828,6 @@ export declare const chatContract: {
6818
6828
  }[];
6819
6829
  }[];
6820
6830
  }[];
6821
- tags: {
6822
- name: string;
6823
- id: string;
6824
- createdAt: Date;
6825
- updatedAt: Date;
6826
- deletedAt: Date | null;
6827
- }[];
6828
- callFrom: string | null;
6829
- callTo: string | null;
6830
- note: string | null;
6831
6831
  customFields?: {
6832
6832
  id: string;
6833
6833
  createdAt: Date;
@@ -6886,6 +6886,16 @@ export declare const chatContract: {
6886
6886
  createdAt: Date;
6887
6887
  updatedAt: Date;
6888
6888
  deletedAt: Date | null;
6889
+ tags: {
6890
+ name: string;
6891
+ id: string;
6892
+ createdAt: Date;
6893
+ updatedAt: Date;
6894
+ deletedAt: Date | null;
6895
+ }[];
6896
+ callFrom: string | null;
6897
+ callTo: string | null;
6898
+ note: string | null;
6889
6899
  categories: {
6890
6900
  id: string;
6891
6901
  value: string;
@@ -6908,16 +6918,6 @@ export declare const chatContract: {
6908
6918
  }[];
6909
6919
  }[];
6910
6920
  }[];
6911
- tags: {
6912
- name: string;
6913
- id: string;
6914
- createdAt: Date;
6915
- updatedAt: Date;
6916
- deletedAt: Date | null;
6917
- }[];
6918
- callFrom: string | null;
6919
- callTo: string | null;
6920
- note: string | null;
6921
6921
  customFields?: {
6922
6922
  id: string;
6923
6923
  createdAt: Date;
@@ -7331,6 +7331,16 @@ export declare const chatContract: {
7331
7331
  createdAt: Date;
7332
7332
  updatedAt: Date;
7333
7333
  deletedAt: Date | null;
7334
+ tags: {
7335
+ name: string;
7336
+ id: string;
7337
+ createdAt: Date;
7338
+ updatedAt: Date;
7339
+ deletedAt: Date | null;
7340
+ }[];
7341
+ callFrom: string | null;
7342
+ callTo: string | null;
7343
+ note: string | null;
7334
7344
  categories: {
7335
7345
  id: string;
7336
7346
  value: string;
@@ -7353,16 +7363,6 @@ export declare const chatContract: {
7353
7363
  }[];
7354
7364
  }[];
7355
7365
  }[];
7356
- tags: {
7357
- name: string;
7358
- id: string;
7359
- createdAt: Date;
7360
- updatedAt: Date;
7361
- deletedAt: Date | null;
7362
- }[];
7363
- callFrom: string | null;
7364
- callTo: string | null;
7365
- note: string | null;
7366
7366
  customFields?: {
7367
7367
  id: string;
7368
7368
  createdAt: Date;
@@ -7760,6 +7760,16 @@ export declare const chatContract: {
7760
7760
  createdAt: Date;
7761
7761
  updatedAt: Date;
7762
7762
  deletedAt: Date | null;
7763
+ tags: {
7764
+ name: string;
7765
+ id: string;
7766
+ createdAt: Date;
7767
+ updatedAt: Date;
7768
+ deletedAt: Date | null;
7769
+ }[];
7770
+ callFrom: string | null;
7771
+ callTo: string | null;
7772
+ note: string | null;
7763
7773
  categories: {
7764
7774
  id: string;
7765
7775
  value: string;
@@ -7782,16 +7792,6 @@ export declare const chatContract: {
7782
7792
  }[];
7783
7793
  }[];
7784
7794
  }[];
7785
- tags: {
7786
- name: string;
7787
- id: string;
7788
- createdAt: Date;
7789
- updatedAt: Date;
7790
- deletedAt: Date | null;
7791
- }[];
7792
- callFrom: string | null;
7793
- callTo: string | null;
7794
- note: string | null;
7795
7795
  customFields?: {
7796
7796
  id: string;
7797
7797
  createdAt: Date;
@@ -9962,6 +9962,16 @@ export declare const chatContract: {
9962
9962
  createdAt: Date;
9963
9963
  updatedAt: Date;
9964
9964
  deletedAt: Date | null;
9965
+ tags: {
9966
+ name: string;
9967
+ id: string;
9968
+ createdAt: Date;
9969
+ updatedAt: Date;
9970
+ deletedAt: Date | null;
9971
+ }[];
9972
+ callFrom: string | null;
9973
+ callTo: string | null;
9974
+ note: string | null;
9965
9975
  categories: {
9966
9976
  id: string;
9967
9977
  value: string;
@@ -9984,16 +9994,6 @@ export declare const chatContract: {
9984
9994
  }[];
9985
9995
  }[];
9986
9996
  }[];
9987
- tags: {
9988
- name: string;
9989
- id: string;
9990
- createdAt: Date;
9991
- updatedAt: Date;
9992
- deletedAt: Date | null;
9993
- }[];
9994
- callFrom: string | null;
9995
- callTo: string | null;
9996
- note: string | null;
9997
9997
  customFields?: {
9998
9998
  id: string;
9999
9999
  createdAt: Date;
@@ -10728,6 +10728,16 @@ export declare const chatContract: {
10728
10728
  createdAt: Date;
10729
10729
  updatedAt: Date;
10730
10730
  deletedAt: Date | null;
10731
+ tags: {
10732
+ name: string;
10733
+ id: string;
10734
+ createdAt: Date;
10735
+ updatedAt: Date;
10736
+ deletedAt: Date | null;
10737
+ }[];
10738
+ callFrom: string | null;
10739
+ callTo: string | null;
10740
+ note: string | null;
10731
10741
  categories: {
10732
10742
  id: string;
10733
10743
  value: string;
@@ -10750,16 +10760,6 @@ export declare const chatContract: {
10750
10760
  }[];
10751
10761
  }[];
10752
10762
  }[];
10753
- tags: {
10754
- name: string;
10755
- id: string;
10756
- createdAt: Date;
10757
- updatedAt: Date;
10758
- deletedAt: Date | null;
10759
- }[];
10760
- callFrom: string | null;
10761
- callTo: string | null;
10762
- note: string | null;
10763
10763
  customFields?: {
10764
10764
  id: string;
10765
10765
  createdAt: Date;
@@ -11496,6 +11496,16 @@ export declare const chatContract: {
11496
11496
  createdAt: Date;
11497
11497
  updatedAt: Date;
11498
11498
  deletedAt: Date | null;
11499
+ tags: {
11500
+ name: string;
11501
+ id: string;
11502
+ createdAt: Date;
11503
+ updatedAt: Date;
11504
+ deletedAt: Date | null;
11505
+ }[];
11506
+ callFrom: string | null;
11507
+ callTo: string | null;
11508
+ note: string | null;
11499
11509
  categories: {
11500
11510
  id: string;
11501
11511
  value: string;
@@ -11518,16 +11528,6 @@ export declare const chatContract: {
11518
11528
  }[];
11519
11529
  }[];
11520
11530
  }[];
11521
- tags: {
11522
- name: string;
11523
- id: string;
11524
- createdAt: Date;
11525
- updatedAt: Date;
11526
- deletedAt: Date | null;
11527
- }[];
11528
- callFrom: string | null;
11529
- callTo: string | null;
11530
- note: string | null;
11531
11531
  customFields?: {
11532
11532
  id: string;
11533
11533
  createdAt: Date;
@@ -12265,6 +12265,16 @@ export declare const chatContract: {
12265
12265
  createdAt: Date;
12266
12266
  updatedAt: Date;
12267
12267
  deletedAt: Date | null;
12268
+ tags: {
12269
+ name: string;
12270
+ id: string;
12271
+ createdAt: Date;
12272
+ updatedAt: Date;
12273
+ deletedAt: Date | null;
12274
+ }[];
12275
+ callFrom: string | null;
12276
+ callTo: string | null;
12277
+ note: string | null;
12268
12278
  categories: {
12269
12279
  id: string;
12270
12280
  value: string;
@@ -12287,16 +12297,6 @@ export declare const chatContract: {
12287
12297
  }[];
12288
12298
  }[];
12289
12299
  }[];
12290
- tags: {
12291
- name: string;
12292
- id: string;
12293
- createdAt: Date;
12294
- updatedAt: Date;
12295
- deletedAt: Date | null;
12296
- }[];
12297
- callFrom: string | null;
12298
- callTo: string | null;
12299
- note: string | null;
12300
12300
  customFields?: {
12301
12301
  id: string;
12302
12302
  createdAt: Date;
@@ -14825,6 +14825,16 @@ export declare const chatContract: {
14825
14825
  createdAt: Date;
14826
14826
  updatedAt: Date;
14827
14827
  deletedAt: Date | null;
14828
+ tags: {
14829
+ name: string;
14830
+ id: string;
14831
+ createdAt: Date;
14832
+ updatedAt: Date;
14833
+ deletedAt: Date | null;
14834
+ }[];
14835
+ callFrom: string | null;
14836
+ callTo: string | null;
14837
+ note: string | null;
14828
14838
  categories: {
14829
14839
  id: string;
14830
14840
  value: string;
@@ -14847,16 +14857,6 @@ export declare const chatContract: {
14847
14857
  }[];
14848
14858
  }[];
14849
14859
  }[];
14850
- tags: {
14851
- name: string;
14852
- id: string;
14853
- createdAt: Date;
14854
- updatedAt: Date;
14855
- deletedAt: Date | null;
14856
- }[];
14857
- callFrom: string | null;
14858
- callTo: string | null;
14859
- note: string | null;
14860
14860
  customFields?: {
14861
14861
  id: string;
14862
14862
  createdAt: Date;
@@ -14876,6 +14876,16 @@ export declare const chatContract: {
14876
14876
  createdAt: Date;
14877
14877
  updatedAt: Date;
14878
14878
  deletedAt: Date | null;
14879
+ tags: {
14880
+ name: string;
14881
+ id: string;
14882
+ createdAt: Date;
14883
+ updatedAt: Date;
14884
+ deletedAt: Date | null;
14885
+ }[];
14886
+ callFrom: string | null;
14887
+ callTo: string | null;
14888
+ note: string | null;
14879
14889
  categories: {
14880
14890
  id: string;
14881
14891
  value: string;
@@ -14898,16 +14908,6 @@ export declare const chatContract: {
14898
14908
  }[];
14899
14909
  }[];
14900
14910
  }[];
14901
- tags: {
14902
- name: string;
14903
- id: string;
14904
- createdAt: Date;
14905
- updatedAt: Date;
14906
- deletedAt: Date | null;
14907
- }[];
14908
- callFrom: string | null;
14909
- callTo: string | null;
14910
- note: string | null;
14911
14911
  customFields?: {
14912
14912
  id: string;
14913
14913
  createdAt: Date;
@@ -15016,6 +15016,16 @@ export declare const chatContract: {
15016
15016
  createdAt: Date;
15017
15017
  updatedAt: Date;
15018
15018
  deletedAt: Date | null;
15019
+ tags: {
15020
+ name: string;
15021
+ id: string;
15022
+ createdAt: Date;
15023
+ updatedAt: Date;
15024
+ deletedAt: Date | null;
15025
+ }[];
15026
+ callFrom: string | null;
15027
+ callTo: string | null;
15028
+ note: string | null;
15019
15029
  categories: {
15020
15030
  id: string;
15021
15031
  value: string;
@@ -15038,16 +15048,6 @@ export declare const chatContract: {
15038
15048
  }[];
15039
15049
  }[];
15040
15050
  }[];
15041
- tags: {
15042
- name: string;
15043
- id: string;
15044
- createdAt: Date;
15045
- updatedAt: Date;
15046
- deletedAt: Date | null;
15047
- }[];
15048
- callFrom: string | null;
15049
- callTo: string | null;
15050
- note: string | null;
15051
15051
  customFields?: {
15052
15052
  id: string;
15053
15053
  createdAt: Date;
@@ -15106,6 +15106,16 @@ export declare const chatContract: {
15106
15106
  createdAt: Date;
15107
15107
  updatedAt: Date;
15108
15108
  deletedAt: Date | null;
15109
+ tags: {
15110
+ name: string;
15111
+ id: string;
15112
+ createdAt: Date;
15113
+ updatedAt: Date;
15114
+ deletedAt: Date | null;
15115
+ }[];
15116
+ callFrom: string | null;
15117
+ callTo: string | null;
15118
+ note: string | null;
15109
15119
  categories: {
15110
15120
  id: string;
15111
15121
  value: string;
@@ -15128,16 +15138,6 @@ export declare const chatContract: {
15128
15138
  }[];
15129
15139
  }[];
15130
15140
  }[];
15131
- tags: {
15132
- name: string;
15133
- id: string;
15134
- createdAt: Date;
15135
- updatedAt: Date;
15136
- deletedAt: Date | null;
15137
- }[];
15138
- callFrom: string | null;
15139
- callTo: string | null;
15140
- note: string | null;
15141
15141
  customFields?: {
15142
15142
  id: string;
15143
15143
  createdAt: Date;
@@ -15552,6 +15552,16 @@ export declare const chatContract: {
15552
15552
  createdAt: Date;
15553
15553
  updatedAt: Date;
15554
15554
  deletedAt: Date | null;
15555
+ tags: {
15556
+ name: string;
15557
+ id: string;
15558
+ createdAt: Date;
15559
+ updatedAt: Date;
15560
+ deletedAt: Date | null;
15561
+ }[];
15562
+ callFrom: string | null;
15563
+ callTo: string | null;
15564
+ note: string | null;
15555
15565
  categories: {
15556
15566
  id: string;
15557
15567
  value: string;
@@ -15574,16 +15584,6 @@ export declare const chatContract: {
15574
15584
  }[];
15575
15585
  }[];
15576
15586
  }[];
15577
- tags: {
15578
- name: string;
15579
- id: string;
15580
- createdAt: Date;
15581
- updatedAt: Date;
15582
- deletedAt: Date | null;
15583
- }[];
15584
- callFrom: string | null;
15585
- callTo: string | null;
15586
- note: string | null;
15587
15587
  customFields?: {
15588
15588
  id: string;
15589
15589
  createdAt: Date;
@@ -15982,6 +15982,16 @@ export declare const chatContract: {
15982
15982
  createdAt: Date;
15983
15983
  updatedAt: Date;
15984
15984
  deletedAt: Date | null;
15985
+ tags: {
15986
+ name: string;
15987
+ id: string;
15988
+ createdAt: Date;
15989
+ updatedAt: Date;
15990
+ deletedAt: Date | null;
15991
+ }[];
15992
+ callFrom: string | null;
15993
+ callTo: string | null;
15994
+ note: string | null;
15985
15995
  categories: {
15986
15996
  id: string;
15987
15997
  value: string;
@@ -16004,16 +16014,6 @@ export declare const chatContract: {
16004
16014
  }[];
16005
16015
  }[];
16006
16016
  }[];
16007
- tags: {
16008
- name: string;
16009
- id: string;
16010
- createdAt: Date;
16011
- updatedAt: Date;
16012
- deletedAt: Date | null;
16013
- }[];
16014
- callFrom: string | null;
16015
- callTo: string | null;
16016
- note: string | null;
16017
16017
  customFields?: {
16018
16018
  id: string;
16019
16019
  createdAt: Date;
@@ -16414,6 +16414,16 @@ export declare const chatContract: {
16414
16414
  createdAt: Date;
16415
16415
  updatedAt: Date;
16416
16416
  deletedAt: Date | null;
16417
+ tags: {
16418
+ name: string;
16419
+ id: string;
16420
+ createdAt: Date;
16421
+ updatedAt: Date;
16422
+ deletedAt: Date | null;
16423
+ }[];
16424
+ callFrom: string | null;
16425
+ callTo: string | null;
16426
+ note: string | null;
16417
16427
  categories: {
16418
16428
  id: string;
16419
16429
  value: string;
@@ -16436,16 +16446,6 @@ export declare const chatContract: {
16436
16446
  }[];
16437
16447
  }[];
16438
16448
  }[];
16439
- tags: {
16440
- name: string;
16441
- id: string;
16442
- createdAt: Date;
16443
- updatedAt: Date;
16444
- deletedAt: Date | null;
16445
- }[];
16446
- callFrom: string | null;
16447
- callTo: string | null;
16448
- note: string | null;
16449
16449
  customFields?: {
16450
16450
  id: string;
16451
16451
  createdAt: Date;
@@ -16847,6 +16847,16 @@ export declare const chatContract: {
16847
16847
  createdAt: Date;
16848
16848
  updatedAt: Date;
16849
16849
  deletedAt: Date | null;
16850
+ tags: {
16851
+ name: string;
16852
+ id: string;
16853
+ createdAt: Date;
16854
+ updatedAt: Date;
16855
+ deletedAt: Date | null;
16856
+ }[];
16857
+ callFrom: string | null;
16858
+ callTo: string | null;
16859
+ note: string | null;
16850
16860
  categories: {
16851
16861
  id: string;
16852
16862
  value: string;
@@ -16869,16 +16879,6 @@ export declare const chatContract: {
16869
16879
  }[];
16870
16880
  }[];
16871
16881
  }[];
16872
- tags: {
16873
- name: string;
16874
- id: string;
16875
- createdAt: Date;
16876
- updatedAt: Date;
16877
- deletedAt: Date | null;
16878
- }[];
16879
- callFrom: string | null;
16880
- callTo: string | null;
16881
- note: string | null;
16882
16882
  customFields?: {
16883
16883
  id: string;
16884
16884
  createdAt: Date;