@kl1/contracts 1.1.26-uat → 1.1.28-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 (45) hide show
  1. package/dist/index.js +324 -184
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +323 -184
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/business-calendar/index.d.ts +784 -0
  6. package/dist/src/business-calendar/index.d.ts.map +1 -0
  7. package/dist/src/business-calendar/schema.d.ts +169 -0
  8. package/dist/src/business-calendar/schema.d.ts.map +1 -0
  9. package/dist/src/business-calendar/validation.d.ts +210 -0
  10. package/dist/src/business-calendar/validation.d.ts.map +1 -0
  11. package/dist/src/chat/index.d.ts +1667 -141
  12. package/dist/src/chat/index.d.ts.map +1 -1
  13. package/dist/src/chat/schema.d.ts +236 -0
  14. package/dist/src/chat/schema.d.ts.map +1 -1
  15. package/dist/src/chat/validation.d.ts +308 -0
  16. package/dist/src/chat/validation.d.ts.map +1 -1
  17. package/dist/src/contract.d.ts +4071 -360
  18. package/dist/src/contract.d.ts.map +1 -1
  19. package/dist/src/cx-log/index.d.ts +106 -0
  20. package/dist/src/cx-log/index.d.ts.map +1 -1
  21. package/dist/src/cx-log/schema.d.ts +164 -0
  22. package/dist/src/cx-log/schema.d.ts.map +1 -1
  23. package/dist/src/instagram/index.d.ts +154 -0
  24. package/dist/src/instagram/index.d.ts.map +1 -1
  25. package/dist/src/line/index.d.ts +154 -0
  26. package/dist/src/line/index.d.ts.map +1 -1
  27. package/dist/src/mail/mail-contract.d.ts +390 -0
  28. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  29. package/dist/src/mail/room-contract.d.ts +390 -0
  30. package/dist/src/mail/room-contract.d.ts.map +1 -1
  31. package/dist/src/mail/schemas/room-validation.schema.d.ts +130 -0
  32. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  33. package/dist/src/mail/schemas/room.schema.d.ts +106 -0
  34. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  35. package/dist/src/messenger/index.d.ts +154 -0
  36. package/dist/src/messenger/index.d.ts.map +1 -1
  37. package/dist/src/viber/index.d.ts +154 -0
  38. package/dist/src/viber/index.d.ts.map +1 -1
  39. package/dist/src/webchat/index.d.ts +154 -0
  40. package/dist/src/webchat/index.d.ts.map +1 -1
  41. package/dist/src/wrap-up-form/index.d.ts +294 -0
  42. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  43. package/dist/src/wrap-up-form/schema.d.ts +58 -0
  44. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  45. package/package.json +1 -1
@@ -1632,6 +1632,40 @@ export declare const receiveMessageContract: {
1632
1632
  }>, "many">;
1633
1633
  callFrom: z.ZodNullable<z.ZodString>;
1634
1634
  callTo: z.ZodNullable<z.ZodString>;
1635
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
1636
+ id: z.ZodString;
1637
+ createdAt: z.ZodDate;
1638
+ updatedAt: z.ZodDate;
1639
+ deletedAt: z.ZodNullable<z.ZodDate>;
1640
+ textValue: z.ZodNullable<z.ZodString>;
1641
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
1642
+ numberValue: z.ZodNullable<z.ZodNumber>;
1643
+ dateValue: z.ZodNullable<z.ZodDate>;
1644
+ entityId: z.ZodString;
1645
+ attributeId: z.ZodString;
1646
+ }, "strip", z.ZodTypeAny, {
1647
+ id: string;
1648
+ createdAt: Date;
1649
+ updatedAt: Date;
1650
+ deletedAt: Date | null;
1651
+ entityId: string;
1652
+ attributeId: string;
1653
+ textValue: string | null;
1654
+ booleanValue: boolean | null;
1655
+ numberValue: number | null;
1656
+ dateValue: Date | null;
1657
+ }, {
1658
+ id: string;
1659
+ createdAt: Date;
1660
+ updatedAt: Date;
1661
+ deletedAt: Date | null;
1662
+ entityId: string;
1663
+ attributeId: string;
1664
+ textValue: string | null;
1665
+ booleanValue: boolean | null;
1666
+ numberValue: number | null;
1667
+ dateValue: Date | null;
1668
+ }>, "many">>;
1635
1669
  }, "strip", z.ZodTypeAny, {
1636
1670
  type: string;
1637
1671
  id: string;
@@ -1671,6 +1705,18 @@ export declare const receiveMessageContract: {
1671
1705
  callFrom: string | null;
1672
1706
  callTo: string | null;
1673
1707
  note: string | null;
1708
+ customFields?: {
1709
+ id: string;
1710
+ createdAt: Date;
1711
+ updatedAt: Date;
1712
+ deletedAt: Date | null;
1713
+ entityId: string;
1714
+ attributeId: string;
1715
+ textValue: string | null;
1716
+ booleanValue: boolean | null;
1717
+ numberValue: number | null;
1718
+ dateValue: Date | null;
1719
+ }[] | undefined;
1674
1720
  }, {
1675
1721
  type: string;
1676
1722
  id: string;
@@ -1710,6 +1756,18 @@ export declare const receiveMessageContract: {
1710
1756
  callFrom: string | null;
1711
1757
  callTo: string | null;
1712
1758
  note: string | null;
1759
+ customFields?: {
1760
+ id: string;
1761
+ createdAt: Date;
1762
+ updatedAt: Date;
1763
+ deletedAt: Date | null;
1764
+ entityId: string;
1765
+ attributeId: string;
1766
+ textValue: string | null;
1767
+ booleanValue: boolean | null;
1768
+ numberValue: number | null;
1769
+ dateValue: Date | null;
1770
+ }[] | undefined;
1713
1771
  }>>;
1714
1772
  }, "strip", z.ZodTypeAny, {
1715
1773
  id: string;
@@ -1766,6 +1824,18 @@ export declare const receiveMessageContract: {
1766
1824
  callFrom: string | null;
1767
1825
  callTo: string | null;
1768
1826
  note: string | null;
1827
+ customFields?: {
1828
+ id: string;
1829
+ createdAt: Date;
1830
+ updatedAt: Date;
1831
+ deletedAt: Date | null;
1832
+ entityId: string;
1833
+ attributeId: string;
1834
+ textValue: string | null;
1835
+ booleanValue: boolean | null;
1836
+ numberValue: number | null;
1837
+ dateValue: Date | null;
1838
+ }[] | undefined;
1769
1839
  } | null;
1770
1840
  }, {
1771
1841
  id: string;
@@ -1822,6 +1892,18 @@ export declare const receiveMessageContract: {
1822
1892
  callFrom: string | null;
1823
1893
  callTo: string | null;
1824
1894
  note: string | null;
1895
+ customFields?: {
1896
+ id: string;
1897
+ createdAt: Date;
1898
+ updatedAt: Date;
1899
+ deletedAt: Date | null;
1900
+ entityId: string;
1901
+ attributeId: string;
1902
+ textValue: string | null;
1903
+ booleanValue: boolean | null;
1904
+ numberValue: number | null;
1905
+ dateValue: Date | null;
1906
+ }[] | undefined;
1825
1907
  } | null;
1826
1908
  }>>;
1827
1909
  }, "strip", z.ZodTypeAny, {
@@ -2116,6 +2198,18 @@ export declare const receiveMessageContract: {
2116
2198
  callFrom: string | null;
2117
2199
  callTo: string | null;
2118
2200
  note: string | null;
2201
+ customFields?: {
2202
+ id: string;
2203
+ createdAt: Date;
2204
+ updatedAt: Date;
2205
+ deletedAt: Date | null;
2206
+ entityId: string;
2207
+ attributeId: string;
2208
+ textValue: string | null;
2209
+ booleanValue: boolean | null;
2210
+ numberValue: number | null;
2211
+ dateValue: Date | null;
2212
+ }[] | undefined;
2119
2213
  } | null;
2120
2214
  } | undefined;
2121
2215
  }, {
@@ -2410,6 +2504,18 @@ export declare const receiveMessageContract: {
2410
2504
  callFrom: string | null;
2411
2505
  callTo: string | null;
2412
2506
  note: string | null;
2507
+ customFields?: {
2508
+ id: string;
2509
+ createdAt: Date;
2510
+ updatedAt: Date;
2511
+ deletedAt: Date | null;
2512
+ entityId: string;
2513
+ attributeId: string;
2514
+ textValue: string | null;
2515
+ booleanValue: boolean | null;
2516
+ numberValue: number | null;
2517
+ dateValue: Date | null;
2518
+ }[] | undefined;
2413
2519
  } | null;
2414
2520
  } | undefined;
2415
2521
  }>>;
@@ -3359,6 +3465,18 @@ export declare const receiveMessageContract: {
3359
3465
  callFrom: string | null;
3360
3466
  callTo: string | null;
3361
3467
  note: string | null;
3468
+ customFields?: {
3469
+ id: string;
3470
+ createdAt: Date;
3471
+ updatedAt: Date;
3472
+ deletedAt: Date | null;
3473
+ entityId: string;
3474
+ attributeId: string;
3475
+ textValue: string | null;
3476
+ booleanValue: boolean | null;
3477
+ numberValue: number | null;
3478
+ dateValue: Date | null;
3479
+ }[] | undefined;
3362
3480
  } | null;
3363
3481
  } | undefined;
3364
3482
  } | null;
@@ -3815,6 +3933,18 @@ export declare const receiveMessageContract: {
3815
3933
  callFrom: string | null;
3816
3934
  callTo: string | null;
3817
3935
  note: string | null;
3936
+ customFields?: {
3937
+ id: string;
3938
+ createdAt: Date;
3939
+ updatedAt: Date;
3940
+ deletedAt: Date | null;
3941
+ entityId: string;
3942
+ attributeId: string;
3943
+ textValue: string | null;
3944
+ booleanValue: boolean | null;
3945
+ numberValue: number | null;
3946
+ dateValue: Date | null;
3947
+ }[] | undefined;
3818
3948
  } | null;
3819
3949
  } | undefined;
3820
3950
  } | null;
@@ -4273,6 +4403,18 @@ export declare const receiveMessageContract: {
4273
4403
  callFrom: string | null;
4274
4404
  callTo: string | null;
4275
4405
  note: string | null;
4406
+ customFields?: {
4407
+ id: string;
4408
+ createdAt: Date;
4409
+ updatedAt: Date;
4410
+ deletedAt: Date | null;
4411
+ entityId: string;
4412
+ attributeId: string;
4413
+ textValue: string | null;
4414
+ booleanValue: boolean | null;
4415
+ numberValue: number | null;
4416
+ dateValue: Date | null;
4417
+ }[] | undefined;
4276
4418
  } | null;
4277
4419
  } | undefined;
4278
4420
  } | null;
@@ -4731,6 +4873,18 @@ export declare const receiveMessageContract: {
4731
4873
  callFrom: string | null;
4732
4874
  callTo: string | null;
4733
4875
  note: string | null;
4876
+ customFields?: {
4877
+ id: string;
4878
+ createdAt: Date;
4879
+ updatedAt: Date;
4880
+ deletedAt: Date | null;
4881
+ entityId: string;
4882
+ attributeId: string;
4883
+ textValue: string | null;
4884
+ booleanValue: boolean | null;
4885
+ numberValue: number | null;
4886
+ dateValue: Date | null;
4887
+ }[] | undefined;
4734
4888
  } | null;
4735
4889
  } | undefined;
4736
4890
  } | null;
@@ -6922,6 +7076,40 @@ export declare const mainChatContract: {
6922
7076
  }>, "many">;
6923
7077
  callFrom: z.ZodNullable<z.ZodString>;
6924
7078
  callTo: z.ZodNullable<z.ZodString>;
7079
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
7080
+ id: z.ZodString;
7081
+ createdAt: z.ZodDate;
7082
+ updatedAt: z.ZodDate;
7083
+ deletedAt: z.ZodNullable<z.ZodDate>;
7084
+ textValue: z.ZodNullable<z.ZodString>;
7085
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
7086
+ numberValue: z.ZodNullable<z.ZodNumber>;
7087
+ dateValue: z.ZodNullable<z.ZodDate>;
7088
+ entityId: z.ZodString;
7089
+ attributeId: z.ZodString;
7090
+ }, "strip", z.ZodTypeAny, {
7091
+ id: string;
7092
+ createdAt: Date;
7093
+ updatedAt: Date;
7094
+ deletedAt: Date | null;
7095
+ entityId: string;
7096
+ attributeId: string;
7097
+ textValue: string | null;
7098
+ booleanValue: boolean | null;
7099
+ numberValue: number | null;
7100
+ dateValue: Date | null;
7101
+ }, {
7102
+ id: string;
7103
+ createdAt: Date;
7104
+ updatedAt: Date;
7105
+ deletedAt: Date | null;
7106
+ entityId: string;
7107
+ attributeId: string;
7108
+ textValue: string | null;
7109
+ booleanValue: boolean | null;
7110
+ numberValue: number | null;
7111
+ dateValue: Date | null;
7112
+ }>, "many">>;
6925
7113
  }, "strip", z.ZodTypeAny, {
6926
7114
  type: string;
6927
7115
  id: string;
@@ -6961,6 +7149,18 @@ export declare const mainChatContract: {
6961
7149
  callFrom: string | null;
6962
7150
  callTo: string | null;
6963
7151
  note: string | null;
7152
+ customFields?: {
7153
+ id: string;
7154
+ createdAt: Date;
7155
+ updatedAt: Date;
7156
+ deletedAt: Date | null;
7157
+ entityId: string;
7158
+ attributeId: string;
7159
+ textValue: string | null;
7160
+ booleanValue: boolean | null;
7161
+ numberValue: number | null;
7162
+ dateValue: Date | null;
7163
+ }[] | undefined;
6964
7164
  }, {
6965
7165
  type: string;
6966
7166
  id: string;
@@ -7000,6 +7200,18 @@ export declare const mainChatContract: {
7000
7200
  callFrom: string | null;
7001
7201
  callTo: string | null;
7002
7202
  note: string | null;
7203
+ customFields?: {
7204
+ id: string;
7205
+ createdAt: Date;
7206
+ updatedAt: Date;
7207
+ deletedAt: Date | null;
7208
+ entityId: string;
7209
+ attributeId: string;
7210
+ textValue: string | null;
7211
+ booleanValue: boolean | null;
7212
+ numberValue: number | null;
7213
+ dateValue: Date | null;
7214
+ }[] | undefined;
7003
7215
  }>>;
7004
7216
  }, "strip", z.ZodTypeAny, {
7005
7217
  id: string;
@@ -7056,6 +7268,18 @@ export declare const mainChatContract: {
7056
7268
  callFrom: string | null;
7057
7269
  callTo: string | null;
7058
7270
  note: string | null;
7271
+ customFields?: {
7272
+ id: string;
7273
+ createdAt: Date;
7274
+ updatedAt: Date;
7275
+ deletedAt: Date | null;
7276
+ entityId: string;
7277
+ attributeId: string;
7278
+ textValue: string | null;
7279
+ booleanValue: boolean | null;
7280
+ numberValue: number | null;
7281
+ dateValue: Date | null;
7282
+ }[] | undefined;
7059
7283
  } | null;
7060
7284
  }, {
7061
7285
  id: string;
@@ -7112,6 +7336,18 @@ export declare const mainChatContract: {
7112
7336
  callFrom: string | null;
7113
7337
  callTo: string | null;
7114
7338
  note: string | null;
7339
+ customFields?: {
7340
+ id: string;
7341
+ createdAt: Date;
7342
+ updatedAt: Date;
7343
+ deletedAt: Date | null;
7344
+ entityId: string;
7345
+ attributeId: string;
7346
+ textValue: string | null;
7347
+ booleanValue: boolean | null;
7348
+ numberValue: number | null;
7349
+ dateValue: Date | null;
7350
+ }[] | undefined;
7115
7351
  } | null;
7116
7352
  }>;
7117
7353
  }, "strip", z.ZodTypeAny, {
@@ -7449,6 +7685,18 @@ export declare const mainChatContract: {
7449
7685
  callFrom: string | null;
7450
7686
  callTo: string | null;
7451
7687
  note: string | null;
7688
+ customFields?: {
7689
+ id: string;
7690
+ createdAt: Date;
7691
+ updatedAt: Date;
7692
+ deletedAt: Date | null;
7693
+ entityId: string;
7694
+ attributeId: string;
7695
+ textValue: string | null;
7696
+ booleanValue: boolean | null;
7697
+ numberValue: number | null;
7698
+ dateValue: Date | null;
7699
+ }[] | undefined;
7452
7700
  } | null;
7453
7701
  };
7454
7702
  }, {
@@ -7786,6 +8034,18 @@ export declare const mainChatContract: {
7786
8034
  callFrom: string | null;
7787
8035
  callTo: string | null;
7788
8036
  note: string | null;
8037
+ customFields?: {
8038
+ id: string;
8039
+ createdAt: Date;
8040
+ updatedAt: Date;
8041
+ deletedAt: Date | null;
8042
+ entityId: string;
8043
+ attributeId: string;
8044
+ textValue: string | null;
8045
+ booleanValue: boolean | null;
8046
+ numberValue: number | null;
8047
+ dateValue: Date | null;
8048
+ }[] | undefined;
7789
8049
  } | null;
7790
8050
  };
7791
8051
  }>, "many">;
@@ -8135,6 +8395,18 @@ export declare const mainChatContract: {
8135
8395
  callFrom: string | null;
8136
8396
  callTo: string | null;
8137
8397
  note: string | null;
8398
+ customFields?: {
8399
+ id: string;
8400
+ createdAt: Date;
8401
+ updatedAt: Date;
8402
+ deletedAt: Date | null;
8403
+ entityId: string;
8404
+ attributeId: string;
8405
+ textValue: string | null;
8406
+ booleanValue: boolean | null;
8407
+ numberValue: number | null;
8408
+ dateValue: Date | null;
8409
+ }[] | undefined;
8138
8410
  } | null;
8139
8411
  };
8140
8412
  }[];
@@ -8482,6 +8754,18 @@ export declare const mainChatContract: {
8482
8754
  callFrom: string | null;
8483
8755
  callTo: string | null;
8484
8756
  note: string | null;
8757
+ customFields?: {
8758
+ id: string;
8759
+ createdAt: Date;
8760
+ updatedAt: Date;
8761
+ deletedAt: Date | null;
8762
+ entityId: string;
8763
+ attributeId: string;
8764
+ textValue: string | null;
8765
+ booleanValue: boolean | null;
8766
+ numberValue: number | null;
8767
+ dateValue: Date | null;
8768
+ }[] | undefined;
8485
8769
  } | null;
8486
8770
  };
8487
8771
  }[];
@@ -11357,6 +11641,40 @@ export declare const mainChatContract: {
11357
11641
  }>, "many">;
11358
11642
  callFrom: z.ZodNullable<z.ZodString>;
11359
11643
  callTo: z.ZodNullable<z.ZodString>;
11644
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
11645
+ id: z.ZodString;
11646
+ createdAt: z.ZodDate;
11647
+ updatedAt: z.ZodDate;
11648
+ deletedAt: z.ZodNullable<z.ZodDate>;
11649
+ textValue: z.ZodNullable<z.ZodString>;
11650
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
11651
+ numberValue: z.ZodNullable<z.ZodNumber>;
11652
+ dateValue: z.ZodNullable<z.ZodDate>;
11653
+ entityId: z.ZodString;
11654
+ attributeId: z.ZodString;
11655
+ }, "strip", z.ZodTypeAny, {
11656
+ id: string;
11657
+ createdAt: Date;
11658
+ updatedAt: Date;
11659
+ deletedAt: Date | null;
11660
+ entityId: string;
11661
+ attributeId: string;
11662
+ textValue: string | null;
11663
+ booleanValue: boolean | null;
11664
+ numberValue: number | null;
11665
+ dateValue: Date | null;
11666
+ }, {
11667
+ id: string;
11668
+ createdAt: Date;
11669
+ updatedAt: Date;
11670
+ deletedAt: Date | null;
11671
+ entityId: string;
11672
+ attributeId: string;
11673
+ textValue: string | null;
11674
+ booleanValue: boolean | null;
11675
+ numberValue: number | null;
11676
+ dateValue: Date | null;
11677
+ }>, "many">>;
11360
11678
  }, "strip", z.ZodTypeAny, {
11361
11679
  type: string;
11362
11680
  id: string;
@@ -11396,6 +11714,18 @@ export declare const mainChatContract: {
11396
11714
  callFrom: string | null;
11397
11715
  callTo: string | null;
11398
11716
  note: string | null;
11717
+ customFields?: {
11718
+ id: string;
11719
+ createdAt: Date;
11720
+ updatedAt: Date;
11721
+ deletedAt: Date | null;
11722
+ entityId: string;
11723
+ attributeId: string;
11724
+ textValue: string | null;
11725
+ booleanValue: boolean | null;
11726
+ numberValue: number | null;
11727
+ dateValue: Date | null;
11728
+ }[] | undefined;
11399
11729
  }, {
11400
11730
  type: string;
11401
11731
  id: string;
@@ -11435,6 +11765,18 @@ export declare const mainChatContract: {
11435
11765
  callFrom: string | null;
11436
11766
  callTo: string | null;
11437
11767
  note: string | null;
11768
+ customFields?: {
11769
+ id: string;
11770
+ createdAt: Date;
11771
+ updatedAt: Date;
11772
+ deletedAt: Date | null;
11773
+ entityId: string;
11774
+ attributeId: string;
11775
+ textValue: string | null;
11776
+ booleanValue: boolean | null;
11777
+ numberValue: number | null;
11778
+ dateValue: Date | null;
11779
+ }[] | undefined;
11438
11780
  }>>;
11439
11781
  }, "strip", z.ZodTypeAny, {
11440
11782
  id: string;
@@ -11491,6 +11833,18 @@ export declare const mainChatContract: {
11491
11833
  callFrom: string | null;
11492
11834
  callTo: string | null;
11493
11835
  note: string | null;
11836
+ customFields?: {
11837
+ id: string;
11838
+ createdAt: Date;
11839
+ updatedAt: Date;
11840
+ deletedAt: Date | null;
11841
+ entityId: string;
11842
+ attributeId: string;
11843
+ textValue: string | null;
11844
+ booleanValue: boolean | null;
11845
+ numberValue: number | null;
11846
+ dateValue: Date | null;
11847
+ }[] | undefined;
11494
11848
  } | null;
11495
11849
  }, {
11496
11850
  id: string;
@@ -11547,6 +11901,18 @@ export declare const mainChatContract: {
11547
11901
  callFrom: string | null;
11548
11902
  callTo: string | null;
11549
11903
  note: string | null;
11904
+ customFields?: {
11905
+ id: string;
11906
+ createdAt: Date;
11907
+ updatedAt: Date;
11908
+ deletedAt: Date | null;
11909
+ entityId: string;
11910
+ attributeId: string;
11911
+ textValue: string | null;
11912
+ booleanValue: boolean | null;
11913
+ numberValue: number | null;
11914
+ dateValue: Date | null;
11915
+ }[] | undefined;
11550
11916
  } | null;
11551
11917
  }>;
11552
11918
  }, "strip", z.ZodTypeAny, {
@@ -11884,6 +12250,18 @@ export declare const mainChatContract: {
11884
12250
  callFrom: string | null;
11885
12251
  callTo: string | null;
11886
12252
  note: string | null;
12253
+ customFields?: {
12254
+ id: string;
12255
+ createdAt: Date;
12256
+ updatedAt: Date;
12257
+ deletedAt: Date | null;
12258
+ entityId: string;
12259
+ attributeId: string;
12260
+ textValue: string | null;
12261
+ booleanValue: boolean | null;
12262
+ numberValue: number | null;
12263
+ dateValue: Date | null;
12264
+ }[] | undefined;
11887
12265
  } | null;
11888
12266
  };
11889
12267
  }, {
@@ -12221,6 +12599,18 @@ export declare const mainChatContract: {
12221
12599
  callFrom: string | null;
12222
12600
  callTo: string | null;
12223
12601
  note: string | null;
12602
+ customFields?: {
12603
+ id: string;
12604
+ createdAt: Date;
12605
+ updatedAt: Date;
12606
+ deletedAt: Date | null;
12607
+ entityId: string;
12608
+ attributeId: string;
12609
+ textValue: string | null;
12610
+ booleanValue: boolean | null;
12611
+ numberValue: number | null;
12612
+ dateValue: Date | null;
12613
+ }[] | undefined;
12224
12614
  } | null;
12225
12615
  };
12226
12616
  }>;
@@ -12560,6 +12950,18 @@ export declare const mainChatContract: {
12560
12950
  callFrom: string | null;
12561
12951
  callTo: string | null;
12562
12952
  note: string | null;
12953
+ customFields?: {
12954
+ id: string;
12955
+ createdAt: Date;
12956
+ updatedAt: Date;
12957
+ deletedAt: Date | null;
12958
+ entityId: string;
12959
+ attributeId: string;
12960
+ textValue: string | null;
12961
+ booleanValue: boolean | null;
12962
+ numberValue: number | null;
12963
+ dateValue: Date | null;
12964
+ }[] | undefined;
12563
12965
  } | null;
12564
12966
  };
12565
12967
  };
@@ -12900,6 +13302,18 @@ export declare const mainChatContract: {
12900
13302
  callFrom: string | null;
12901
13303
  callTo: string | null;
12902
13304
  note: string | null;
13305
+ customFields?: {
13306
+ id: string;
13307
+ createdAt: Date;
13308
+ updatedAt: Date;
13309
+ deletedAt: Date | null;
13310
+ entityId: string;
13311
+ attributeId: string;
13312
+ textValue: string | null;
13313
+ booleanValue: boolean | null;
13314
+ numberValue: number | null;
13315
+ dateValue: Date | null;
13316
+ }[] | undefined;
12903
13317
  } | null;
12904
13318
  };
12905
13319
  };
@@ -15187,6 +15601,40 @@ export declare const mainChatContract: {
15187
15601
  }>, "many">;
15188
15602
  callFrom: z.ZodNullable<z.ZodString>;
15189
15603
  callTo: z.ZodNullable<z.ZodString>;
15604
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
15605
+ id: z.ZodString;
15606
+ createdAt: z.ZodDate;
15607
+ updatedAt: z.ZodDate;
15608
+ deletedAt: z.ZodNullable<z.ZodDate>;
15609
+ textValue: z.ZodNullable<z.ZodString>;
15610
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
15611
+ numberValue: z.ZodNullable<z.ZodNumber>;
15612
+ dateValue: z.ZodNullable<z.ZodDate>;
15613
+ entityId: z.ZodString;
15614
+ attributeId: z.ZodString;
15615
+ }, "strip", z.ZodTypeAny, {
15616
+ id: string;
15617
+ createdAt: Date;
15618
+ updatedAt: Date;
15619
+ deletedAt: Date | null;
15620
+ entityId: string;
15621
+ attributeId: string;
15622
+ textValue: string | null;
15623
+ booleanValue: boolean | null;
15624
+ numberValue: number | null;
15625
+ dateValue: Date | null;
15626
+ }, {
15627
+ id: string;
15628
+ createdAt: Date;
15629
+ updatedAt: Date;
15630
+ deletedAt: Date | null;
15631
+ entityId: string;
15632
+ attributeId: string;
15633
+ textValue: string | null;
15634
+ booleanValue: boolean | null;
15635
+ numberValue: number | null;
15636
+ dateValue: Date | null;
15637
+ }>, "many">>;
15190
15638
  }, "strip", z.ZodTypeAny, {
15191
15639
  type: string;
15192
15640
  id: string;
@@ -15226,6 +15674,18 @@ export declare const mainChatContract: {
15226
15674
  callFrom: string | null;
15227
15675
  callTo: string | null;
15228
15676
  note: string | null;
15677
+ customFields?: {
15678
+ id: string;
15679
+ createdAt: Date;
15680
+ updatedAt: Date;
15681
+ deletedAt: Date | null;
15682
+ entityId: string;
15683
+ attributeId: string;
15684
+ textValue: string | null;
15685
+ booleanValue: boolean | null;
15686
+ numberValue: number | null;
15687
+ dateValue: Date | null;
15688
+ }[] | undefined;
15229
15689
  }, {
15230
15690
  type: string;
15231
15691
  id: string;
@@ -15265,6 +15725,18 @@ export declare const mainChatContract: {
15265
15725
  callFrom: string | null;
15266
15726
  callTo: string | null;
15267
15727
  note: string | null;
15728
+ customFields?: {
15729
+ id: string;
15730
+ createdAt: Date;
15731
+ updatedAt: Date;
15732
+ deletedAt: Date | null;
15733
+ entityId: string;
15734
+ attributeId: string;
15735
+ textValue: string | null;
15736
+ booleanValue: boolean | null;
15737
+ numberValue: number | null;
15738
+ dateValue: Date | null;
15739
+ }[] | undefined;
15268
15740
  }>>;
15269
15741
  }, "strip", z.ZodTypeAny, {
15270
15742
  id: string;
@@ -15321,6 +15793,18 @@ export declare const mainChatContract: {
15321
15793
  callFrom: string | null;
15322
15794
  callTo: string | null;
15323
15795
  note: string | null;
15796
+ customFields?: {
15797
+ id: string;
15798
+ createdAt: Date;
15799
+ updatedAt: Date;
15800
+ deletedAt: Date | null;
15801
+ entityId: string;
15802
+ attributeId: string;
15803
+ textValue: string | null;
15804
+ booleanValue: boolean | null;
15805
+ numberValue: number | null;
15806
+ dateValue: Date | null;
15807
+ }[] | undefined;
15324
15808
  } | null;
15325
15809
  }, {
15326
15810
  id: string;
@@ -15377,6 +15861,18 @@ export declare const mainChatContract: {
15377
15861
  callFrom: string | null;
15378
15862
  callTo: string | null;
15379
15863
  note: string | null;
15864
+ customFields?: {
15865
+ id: string;
15866
+ createdAt: Date;
15867
+ updatedAt: Date;
15868
+ deletedAt: Date | null;
15869
+ entityId: string;
15870
+ attributeId: string;
15871
+ textValue: string | null;
15872
+ booleanValue: boolean | null;
15873
+ numberValue: number | null;
15874
+ dateValue: Date | null;
15875
+ }[] | undefined;
15380
15876
  } | null;
15381
15877
  }>;
15382
15878
  }, "strip", z.ZodTypeAny, {
@@ -15714,6 +16210,18 @@ export declare const mainChatContract: {
15714
16210
  callFrom: string | null;
15715
16211
  callTo: string | null;
15716
16212
  note: string | null;
16213
+ customFields?: {
16214
+ id: string;
16215
+ createdAt: Date;
16216
+ updatedAt: Date;
16217
+ deletedAt: Date | null;
16218
+ entityId: string;
16219
+ attributeId: string;
16220
+ textValue: string | null;
16221
+ booleanValue: boolean | null;
16222
+ numberValue: number | null;
16223
+ dateValue: Date | null;
16224
+ }[] | undefined;
15717
16225
  } | null;
15718
16226
  };
15719
16227
  }, {
@@ -16051,6 +16559,18 @@ export declare const mainChatContract: {
16051
16559
  callFrom: string | null;
16052
16560
  callTo: string | null;
16053
16561
  note: string | null;
16562
+ customFields?: {
16563
+ id: string;
16564
+ createdAt: Date;
16565
+ updatedAt: Date;
16566
+ deletedAt: Date | null;
16567
+ entityId: string;
16568
+ attributeId: string;
16569
+ textValue: string | null;
16570
+ booleanValue: boolean | null;
16571
+ numberValue: number | null;
16572
+ dateValue: Date | null;
16573
+ }[] | undefined;
16054
16574
  } | null;
16055
16575
  };
16056
16576
  }>;
@@ -18134,6 +18654,18 @@ export declare const mainChatContract: {
18134
18654
  callFrom: string | null;
18135
18655
  callTo: string | null;
18136
18656
  note: string | null;
18657
+ customFields?: {
18658
+ id: string;
18659
+ createdAt: Date;
18660
+ updatedAt: Date;
18661
+ deletedAt: Date | null;
18662
+ entityId: string;
18663
+ attributeId: string;
18664
+ textValue: string | null;
18665
+ booleanValue: boolean | null;
18666
+ numberValue: number | null;
18667
+ dateValue: Date | null;
18668
+ }[] | undefined;
18137
18669
  } | null;
18138
18670
  };
18139
18671
  };
@@ -18797,6 +19329,18 @@ export declare const mainChatContract: {
18797
19329
  callFrom: string | null;
18798
19330
  callTo: string | null;
18799
19331
  note: string | null;
19332
+ customFields?: {
19333
+ id: string;
19334
+ createdAt: Date;
19335
+ updatedAt: Date;
19336
+ deletedAt: Date | null;
19337
+ entityId: string;
19338
+ attributeId: string;
19339
+ textValue: string | null;
19340
+ booleanValue: boolean | null;
19341
+ numberValue: number | null;
19342
+ dateValue: Date | null;
19343
+ }[] | undefined;
18800
19344
  } | null;
18801
19345
  };
18802
19346
  };
@@ -19462,6 +20006,18 @@ export declare const mainChatContract: {
19462
20006
  callFrom: string | null;
19463
20007
  callTo: string | null;
19464
20008
  note: string | null;
20009
+ customFields?: {
20010
+ id: string;
20011
+ createdAt: Date;
20012
+ updatedAt: Date;
20013
+ deletedAt: Date | null;
20014
+ entityId: string;
20015
+ attributeId: string;
20016
+ textValue: string | null;
20017
+ booleanValue: boolean | null;
20018
+ numberValue: number | null;
20019
+ dateValue: Date | null;
20020
+ }[] | undefined;
19465
20021
  } | null;
19466
20022
  };
19467
20023
  };
@@ -20128,6 +20684,18 @@ export declare const mainChatContract: {
20128
20684
  callFrom: string | null;
20129
20685
  callTo: string | null;
20130
20686
  note: string | null;
20687
+ customFields?: {
20688
+ id: string;
20689
+ createdAt: Date;
20690
+ updatedAt: Date;
20691
+ deletedAt: Date | null;
20692
+ entityId: string;
20693
+ attributeId: string;
20694
+ textValue: string | null;
20695
+ booleanValue: boolean | null;
20696
+ numberValue: number | null;
20697
+ dateValue: Date | null;
20698
+ }[] | undefined;
20131
20699
  } | null;
20132
20700
  };
20133
20701
  };
@@ -22361,6 +22929,40 @@ export declare const mainChatContract: {
22361
22929
  }>, "many">;
22362
22930
  callFrom: z.ZodNullable<z.ZodString>;
22363
22931
  callTo: z.ZodNullable<z.ZodString>;
22932
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
22933
+ id: z.ZodString;
22934
+ createdAt: z.ZodDate;
22935
+ updatedAt: z.ZodDate;
22936
+ deletedAt: z.ZodNullable<z.ZodDate>;
22937
+ textValue: z.ZodNullable<z.ZodString>;
22938
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
22939
+ numberValue: z.ZodNullable<z.ZodNumber>;
22940
+ dateValue: z.ZodNullable<z.ZodDate>;
22941
+ entityId: z.ZodString;
22942
+ attributeId: z.ZodString;
22943
+ }, "strip", z.ZodTypeAny, {
22944
+ id: string;
22945
+ createdAt: Date;
22946
+ updatedAt: Date;
22947
+ deletedAt: Date | null;
22948
+ entityId: string;
22949
+ attributeId: string;
22950
+ textValue: string | null;
22951
+ booleanValue: boolean | null;
22952
+ numberValue: number | null;
22953
+ dateValue: Date | null;
22954
+ }, {
22955
+ id: string;
22956
+ createdAt: Date;
22957
+ updatedAt: Date;
22958
+ deletedAt: Date | null;
22959
+ entityId: string;
22960
+ attributeId: string;
22961
+ textValue: string | null;
22962
+ booleanValue: boolean | null;
22963
+ numberValue: number | null;
22964
+ dateValue: Date | null;
22965
+ }>, "many">>;
22364
22966
  }, "strip", z.ZodTypeAny, {
22365
22967
  type: string;
22366
22968
  id: string;
@@ -22400,6 +23002,18 @@ export declare const mainChatContract: {
22400
23002
  callFrom: string | null;
22401
23003
  callTo: string | null;
22402
23004
  note: string | null;
23005
+ customFields?: {
23006
+ id: string;
23007
+ createdAt: Date;
23008
+ updatedAt: Date;
23009
+ deletedAt: Date | null;
23010
+ entityId: string;
23011
+ attributeId: string;
23012
+ textValue: string | null;
23013
+ booleanValue: boolean | null;
23014
+ numberValue: number | null;
23015
+ dateValue: Date | null;
23016
+ }[] | undefined;
22403
23017
  }, {
22404
23018
  type: string;
22405
23019
  id: string;
@@ -22439,6 +23053,18 @@ export declare const mainChatContract: {
22439
23053
  callFrom: string | null;
22440
23054
  callTo: string | null;
22441
23055
  note: string | null;
23056
+ customFields?: {
23057
+ id: string;
23058
+ createdAt: Date;
23059
+ updatedAt: Date;
23060
+ deletedAt: Date | null;
23061
+ entityId: string;
23062
+ attributeId: string;
23063
+ textValue: string | null;
23064
+ booleanValue: boolean | null;
23065
+ numberValue: number | null;
23066
+ dateValue: Date | null;
23067
+ }[] | undefined;
22442
23068
  }>>;
22443
23069
  }, "strip", z.ZodTypeAny, {
22444
23070
  id: string;
@@ -22495,6 +23121,18 @@ export declare const mainChatContract: {
22495
23121
  callFrom: string | null;
22496
23122
  callTo: string | null;
22497
23123
  note: string | null;
23124
+ customFields?: {
23125
+ id: string;
23126
+ createdAt: Date;
23127
+ updatedAt: Date;
23128
+ deletedAt: Date | null;
23129
+ entityId: string;
23130
+ attributeId: string;
23131
+ textValue: string | null;
23132
+ booleanValue: boolean | null;
23133
+ numberValue: number | null;
23134
+ dateValue: Date | null;
23135
+ }[] | undefined;
22498
23136
  } | null;
22499
23137
  }, {
22500
23138
  id: string;
@@ -22551,6 +23189,18 @@ export declare const mainChatContract: {
22551
23189
  callFrom: string | null;
22552
23190
  callTo: string | null;
22553
23191
  note: string | null;
23192
+ customFields?: {
23193
+ id: string;
23194
+ createdAt: Date;
23195
+ updatedAt: Date;
23196
+ deletedAt: Date | null;
23197
+ entityId: string;
23198
+ attributeId: string;
23199
+ textValue: string | null;
23200
+ booleanValue: boolean | null;
23201
+ numberValue: number | null;
23202
+ dateValue: Date | null;
23203
+ }[] | undefined;
22554
23204
  } | null;
22555
23205
  }>;
22556
23206
  }, "strip", z.ZodTypeAny, {
@@ -22888,6 +23538,18 @@ export declare const mainChatContract: {
22888
23538
  callFrom: string | null;
22889
23539
  callTo: string | null;
22890
23540
  note: string | null;
23541
+ customFields?: {
23542
+ id: string;
23543
+ createdAt: Date;
23544
+ updatedAt: Date;
23545
+ deletedAt: Date | null;
23546
+ entityId: string;
23547
+ attributeId: string;
23548
+ textValue: string | null;
23549
+ booleanValue: boolean | null;
23550
+ numberValue: number | null;
23551
+ dateValue: Date | null;
23552
+ }[] | undefined;
22891
23553
  } | null;
22892
23554
  };
22893
23555
  }, {
@@ -23225,6 +23887,18 @@ export declare const mainChatContract: {
23225
23887
  callFrom: string | null;
23226
23888
  callTo: string | null;
23227
23889
  note: string | null;
23890
+ customFields?: {
23891
+ id: string;
23892
+ createdAt: Date;
23893
+ updatedAt: Date;
23894
+ deletedAt: Date | null;
23895
+ entityId: string;
23896
+ attributeId: string;
23897
+ textValue: string | null;
23898
+ booleanValue: boolean | null;
23899
+ numberValue: number | null;
23900
+ dateValue: Date | null;
23901
+ }[] | undefined;
23228
23902
  } | null;
23229
23903
  };
23230
23904
  }>;
@@ -25308,6 +25982,18 @@ export declare const mainChatContract: {
25308
25982
  callFrom: string | null;
25309
25983
  callTo: string | null;
25310
25984
  note: string | null;
25985
+ customFields?: {
25986
+ id: string;
25987
+ createdAt: Date;
25988
+ updatedAt: Date;
25989
+ deletedAt: Date | null;
25990
+ entityId: string;
25991
+ attributeId: string;
25992
+ textValue: string | null;
25993
+ booleanValue: boolean | null;
25994
+ numberValue: number | null;
25995
+ dateValue: Date | null;
25996
+ }[] | undefined;
25311
25997
  } | null;
25312
25998
  };
25313
25999
  };
@@ -25971,6 +26657,18 @@ export declare const mainChatContract: {
25971
26657
  callFrom: string | null;
25972
26658
  callTo: string | null;
25973
26659
  note: string | null;
26660
+ customFields?: {
26661
+ id: string;
26662
+ createdAt: Date;
26663
+ updatedAt: Date;
26664
+ deletedAt: Date | null;
26665
+ entityId: string;
26666
+ attributeId: string;
26667
+ textValue: string | null;
26668
+ booleanValue: boolean | null;
26669
+ numberValue: number | null;
26670
+ dateValue: Date | null;
26671
+ }[] | undefined;
25974
26672
  } | null;
25975
26673
  };
25976
26674
  };
@@ -26636,6 +27334,18 @@ export declare const mainChatContract: {
26636
27334
  callFrom: string | null;
26637
27335
  callTo: string | null;
26638
27336
  note: string | null;
27337
+ customFields?: {
27338
+ id: string;
27339
+ createdAt: Date;
27340
+ updatedAt: Date;
27341
+ deletedAt: Date | null;
27342
+ entityId: string;
27343
+ attributeId: string;
27344
+ textValue: string | null;
27345
+ booleanValue: boolean | null;
27346
+ numberValue: number | null;
27347
+ dateValue: Date | null;
27348
+ }[] | undefined;
26639
27349
  } | null;
26640
27350
  };
26641
27351
  };
@@ -27305,6 +28015,18 @@ export declare const mainChatContract: {
27305
28015
  callFrom: string | null;
27306
28016
  callTo: string | null;
27307
28017
  note: string | null;
28018
+ customFields?: {
28019
+ id: string;
28020
+ createdAt: Date;
28021
+ updatedAt: Date;
28022
+ deletedAt: Date | null;
28023
+ entityId: string;
28024
+ attributeId: string;
28025
+ textValue: string | null;
28026
+ booleanValue: boolean | null;
28027
+ numberValue: number | null;
28028
+ dateValue: Date | null;
28029
+ }[] | undefined;
27308
28030
  } | null;
27309
28031
  };
27310
28032
  };
@@ -29431,6 +30153,40 @@ export declare const mainChatContract: {
29431
30153
  }>, "many">;
29432
30154
  callFrom: z.ZodNullable<z.ZodString>;
29433
30155
  callTo: z.ZodNullable<z.ZodString>;
30156
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
30157
+ id: z.ZodString;
30158
+ createdAt: z.ZodDate;
30159
+ updatedAt: z.ZodDate;
30160
+ deletedAt: z.ZodNullable<z.ZodDate>;
30161
+ textValue: z.ZodNullable<z.ZodString>;
30162
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
30163
+ numberValue: z.ZodNullable<z.ZodNumber>;
30164
+ dateValue: z.ZodNullable<z.ZodDate>;
30165
+ entityId: z.ZodString;
30166
+ attributeId: z.ZodString;
30167
+ }, "strip", z.ZodTypeAny, {
30168
+ id: string;
30169
+ createdAt: Date;
30170
+ updatedAt: Date;
30171
+ deletedAt: Date | null;
30172
+ entityId: string;
30173
+ attributeId: string;
30174
+ textValue: string | null;
30175
+ booleanValue: boolean | null;
30176
+ numberValue: number | null;
30177
+ dateValue: Date | null;
30178
+ }, {
30179
+ id: string;
30180
+ createdAt: Date;
30181
+ updatedAt: Date;
30182
+ deletedAt: Date | null;
30183
+ entityId: string;
30184
+ attributeId: string;
30185
+ textValue: string | null;
30186
+ booleanValue: boolean | null;
30187
+ numberValue: number | null;
30188
+ dateValue: Date | null;
30189
+ }>, "many">>;
29434
30190
  }, "strip", z.ZodTypeAny, {
29435
30191
  type: string;
29436
30192
  id: string;
@@ -29470,6 +30226,18 @@ export declare const mainChatContract: {
29470
30226
  callFrom: string | null;
29471
30227
  callTo: string | null;
29472
30228
  note: string | null;
30229
+ customFields?: {
30230
+ id: string;
30231
+ createdAt: Date;
30232
+ updatedAt: Date;
30233
+ deletedAt: Date | null;
30234
+ entityId: string;
30235
+ attributeId: string;
30236
+ textValue: string | null;
30237
+ booleanValue: boolean | null;
30238
+ numberValue: number | null;
30239
+ dateValue: Date | null;
30240
+ }[] | undefined;
29473
30241
  }, {
29474
30242
  type: string;
29475
30243
  id: string;
@@ -29509,6 +30277,18 @@ export declare const mainChatContract: {
29509
30277
  callFrom: string | null;
29510
30278
  callTo: string | null;
29511
30279
  note: string | null;
30280
+ customFields?: {
30281
+ id: string;
30282
+ createdAt: Date;
30283
+ updatedAt: Date;
30284
+ deletedAt: Date | null;
30285
+ entityId: string;
30286
+ attributeId: string;
30287
+ textValue: string | null;
30288
+ booleanValue: boolean | null;
30289
+ numberValue: number | null;
30290
+ dateValue: Date | null;
30291
+ }[] | undefined;
29512
30292
  }>>;
29513
30293
  }, "strip", z.ZodTypeAny, {
29514
30294
  id: string;
@@ -29565,6 +30345,18 @@ export declare const mainChatContract: {
29565
30345
  callFrom: string | null;
29566
30346
  callTo: string | null;
29567
30347
  note: string | null;
30348
+ customFields?: {
30349
+ id: string;
30350
+ createdAt: Date;
30351
+ updatedAt: Date;
30352
+ deletedAt: Date | null;
30353
+ entityId: string;
30354
+ attributeId: string;
30355
+ textValue: string | null;
30356
+ booleanValue: boolean | null;
30357
+ numberValue: number | null;
30358
+ dateValue: Date | null;
30359
+ }[] | undefined;
29568
30360
  } | null;
29569
30361
  }, {
29570
30362
  id: string;
@@ -29621,6 +30413,18 @@ export declare const mainChatContract: {
29621
30413
  callFrom: string | null;
29622
30414
  callTo: string | null;
29623
30415
  note: string | null;
30416
+ customFields?: {
30417
+ id: string;
30418
+ createdAt: Date;
30419
+ updatedAt: Date;
30420
+ deletedAt: Date | null;
30421
+ entityId: string;
30422
+ attributeId: string;
30423
+ textValue: string | null;
30424
+ booleanValue: boolean | null;
30425
+ numberValue: number | null;
30426
+ dateValue: Date | null;
30427
+ }[] | undefined;
29624
30428
  } | null;
29625
30429
  }>;
29626
30430
  solveMessage: z.ZodString;
@@ -29959,6 +30763,18 @@ export declare const mainChatContract: {
29959
30763
  callFrom: string | null;
29960
30764
  callTo: string | null;
29961
30765
  note: string | null;
30766
+ customFields?: {
30767
+ id: string;
30768
+ createdAt: Date;
30769
+ updatedAt: Date;
30770
+ deletedAt: Date | null;
30771
+ entityId: string;
30772
+ attributeId: string;
30773
+ textValue: string | null;
30774
+ booleanValue: boolean | null;
30775
+ numberValue: number | null;
30776
+ dateValue: Date | null;
30777
+ }[] | undefined;
29962
30778
  } | null;
29963
30779
  };
29964
30780
  solveMessage: string;
@@ -30297,6 +31113,18 @@ export declare const mainChatContract: {
30297
31113
  callFrom: string | null;
30298
31114
  callTo: string | null;
30299
31115
  note: string | null;
31116
+ customFields?: {
31117
+ id: string;
31118
+ createdAt: Date;
31119
+ updatedAt: Date;
31120
+ deletedAt: Date | null;
31121
+ entityId: string;
31122
+ attributeId: string;
31123
+ textValue: string | null;
31124
+ booleanValue: boolean | null;
31125
+ numberValue: number | null;
31126
+ dateValue: Date | null;
31127
+ }[] | undefined;
30300
31128
  } | null;
30301
31129
  };
30302
31130
  solveMessage: string;
@@ -30637,6 +31465,18 @@ export declare const mainChatContract: {
30637
31465
  callFrom: string | null;
30638
31466
  callTo: string | null;
30639
31467
  note: string | null;
31468
+ customFields?: {
31469
+ id: string;
31470
+ createdAt: Date;
31471
+ updatedAt: Date;
31472
+ deletedAt: Date | null;
31473
+ entityId: string;
31474
+ attributeId: string;
31475
+ textValue: string | null;
31476
+ booleanValue: boolean | null;
31477
+ numberValue: number | null;
31478
+ dateValue: Date | null;
31479
+ }[] | undefined;
30640
31480
  } | null;
30641
31481
  };
30642
31482
  solveMessage: string;
@@ -30978,6 +31818,18 @@ export declare const mainChatContract: {
30978
31818
  callFrom: string | null;
30979
31819
  callTo: string | null;
30980
31820
  note: string | null;
31821
+ customFields?: {
31822
+ id: string;
31823
+ createdAt: Date;
31824
+ updatedAt: Date;
31825
+ deletedAt: Date | null;
31826
+ entityId: string;
31827
+ attributeId: string;
31828
+ textValue: string | null;
31829
+ booleanValue: boolean | null;
31830
+ numberValue: number | null;
31831
+ dateValue: Date | null;
31832
+ }[] | undefined;
30981
31833
  } | null;
30982
31834
  };
30983
31835
  solveMessage: string;
@@ -32896,6 +33748,40 @@ export declare const mainChatContract: {
32896
33748
  }>, "many">;
32897
33749
  callFrom: z.ZodNullable<z.ZodString>;
32898
33750
  callTo: z.ZodNullable<z.ZodString>;
33751
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
33752
+ id: z.ZodString;
33753
+ createdAt: z.ZodDate;
33754
+ updatedAt: z.ZodDate;
33755
+ deletedAt: z.ZodNullable<z.ZodDate>;
33756
+ textValue: z.ZodNullable<z.ZodString>;
33757
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
33758
+ numberValue: z.ZodNullable<z.ZodNumber>;
33759
+ dateValue: z.ZodNullable<z.ZodDate>;
33760
+ entityId: z.ZodString;
33761
+ attributeId: z.ZodString;
33762
+ }, "strip", z.ZodTypeAny, {
33763
+ id: string;
33764
+ createdAt: Date;
33765
+ updatedAt: Date;
33766
+ deletedAt: Date | null;
33767
+ entityId: string;
33768
+ attributeId: string;
33769
+ textValue: string | null;
33770
+ booleanValue: boolean | null;
33771
+ numberValue: number | null;
33772
+ dateValue: Date | null;
33773
+ }, {
33774
+ id: string;
33775
+ createdAt: Date;
33776
+ updatedAt: Date;
33777
+ deletedAt: Date | null;
33778
+ entityId: string;
33779
+ attributeId: string;
33780
+ textValue: string | null;
33781
+ booleanValue: boolean | null;
33782
+ numberValue: number | null;
33783
+ dateValue: Date | null;
33784
+ }>, "many">>;
32899
33785
  }, "strip", z.ZodTypeAny, {
32900
33786
  type: string;
32901
33787
  id: string;
@@ -32935,6 +33821,18 @@ export declare const mainChatContract: {
32935
33821
  callFrom: string | null;
32936
33822
  callTo: string | null;
32937
33823
  note: string | null;
33824
+ customFields?: {
33825
+ id: string;
33826
+ createdAt: Date;
33827
+ updatedAt: Date;
33828
+ deletedAt: Date | null;
33829
+ entityId: string;
33830
+ attributeId: string;
33831
+ textValue: string | null;
33832
+ booleanValue: boolean | null;
33833
+ numberValue: number | null;
33834
+ dateValue: Date | null;
33835
+ }[] | undefined;
32938
33836
  }, {
32939
33837
  type: string;
32940
33838
  id: string;
@@ -32974,62 +33872,86 @@ export declare const mainChatContract: {
32974
33872
  callFrom: string | null;
32975
33873
  callTo: string | null;
32976
33874
  note: string | null;
32977
- }>>;
32978
- }, "strip", z.ZodTypeAny, {
32979
- id: string;
32980
- channel: string | null;
32981
- direction: string | null;
32982
- createdAt: Date;
32983
- updatedAt: Date;
32984
- deletedAt: Date | null;
32985
- entityId: string;
32986
- queueId: string | null;
32987
- contactId: string | null;
32988
- caseId: number;
32989
- entityName: string;
32990
- agentId: string | null;
32991
- startedDate: Date | null;
32992
- handledTime: number | null;
32993
- firstResponseTime: number | null;
32994
- wrapUpForm: {
32995
- type: string;
32996
- id: string;
32997
- disposition: string | null;
32998
- createdAt: Date;
32999
- updatedAt: Date;
33000
- deletedAt: Date | null;
33001
- categories: {
33002
- id: string;
33003
- value: string;
33004
- createdAt: Date;
33005
- updatedAt: Date;
33006
- deletedAt: Date | null;
33007
- level: 2 | 1 | 3;
33008
- parentId: string | null;
33009
- childCategoryList: {
33010
- id: string;
33011
- value: string;
33012
- level: 2 | 1 | 3;
33013
- parentId: string | null;
33014
- childCategoryList: {
33015
- id: string;
33016
- value: string;
33017
- level: 2 | 1 | 3;
33018
- parentId: string | null;
33019
- childCategoryList: any[];
33020
- }[];
33021
- }[];
33022
- }[];
33023
- tags: {
33875
+ customFields?: {
33876
+ id: string;
33877
+ createdAt: Date;
33878
+ updatedAt: Date;
33879
+ deletedAt: Date | null;
33880
+ entityId: string;
33881
+ attributeId: string;
33882
+ textValue: string | null;
33883
+ booleanValue: boolean | null;
33884
+ numberValue: number | null;
33885
+ dateValue: Date | null;
33886
+ }[] | undefined;
33887
+ }>>;
33888
+ }, "strip", z.ZodTypeAny, {
33889
+ id: string;
33890
+ channel: string | null;
33891
+ direction: string | null;
33892
+ createdAt: Date;
33893
+ updatedAt: Date;
33894
+ deletedAt: Date | null;
33895
+ entityId: string;
33896
+ queueId: string | null;
33897
+ contactId: string | null;
33898
+ caseId: number;
33899
+ entityName: string;
33900
+ agentId: string | null;
33901
+ startedDate: Date | null;
33902
+ handledTime: number | null;
33903
+ firstResponseTime: number | null;
33904
+ wrapUpForm: {
33905
+ type: string;
33906
+ id: string;
33907
+ disposition: string | null;
33908
+ createdAt: Date;
33909
+ updatedAt: Date;
33910
+ deletedAt: Date | null;
33911
+ categories: {
33912
+ id: string;
33913
+ value: string;
33914
+ createdAt: Date;
33915
+ updatedAt: Date;
33916
+ deletedAt: Date | null;
33917
+ level: 2 | 1 | 3;
33918
+ parentId: string | null;
33919
+ childCategoryList: {
33920
+ id: string;
33921
+ value: string;
33922
+ level: 2 | 1 | 3;
33923
+ parentId: string | null;
33924
+ childCategoryList: {
33925
+ id: string;
33926
+ value: string;
33927
+ level: 2 | 1 | 3;
33928
+ parentId: string | null;
33929
+ childCategoryList: any[];
33930
+ }[];
33931
+ }[];
33932
+ }[];
33933
+ tags: {
33934
+ id: string;
33935
+ name: string;
33936
+ createdAt: Date;
33937
+ updatedAt: Date;
33938
+ deletedAt: Date | null;
33939
+ }[];
33940
+ callFrom: string | null;
33941
+ callTo: string | null;
33942
+ note: string | null;
33943
+ customFields?: {
33024
33944
  id: string;
33025
- name: string;
33026
33945
  createdAt: Date;
33027
33946
  updatedAt: Date;
33028
33947
  deletedAt: Date | null;
33029
- }[];
33030
- callFrom: string | null;
33031
- callTo: string | null;
33032
- note: string | null;
33948
+ entityId: string;
33949
+ attributeId: string;
33950
+ textValue: string | null;
33951
+ booleanValue: boolean | null;
33952
+ numberValue: number | null;
33953
+ dateValue: Date | null;
33954
+ }[] | undefined;
33033
33955
  } | null;
33034
33956
  }, {
33035
33957
  id: string;
@@ -33086,6 +34008,18 @@ export declare const mainChatContract: {
33086
34008
  callFrom: string | null;
33087
34009
  callTo: string | null;
33088
34010
  note: string | null;
34011
+ customFields?: {
34012
+ id: string;
34013
+ createdAt: Date;
34014
+ updatedAt: Date;
34015
+ deletedAt: Date | null;
34016
+ entityId: string;
34017
+ attributeId: string;
34018
+ textValue: string | null;
34019
+ booleanValue: boolean | null;
34020
+ numberValue: number | null;
34021
+ dateValue: Date | null;
34022
+ }[] | undefined;
33089
34023
  } | null;
33090
34024
  }>;
33091
34025
  }, "strip", z.ZodTypeAny, {
@@ -33423,6 +34357,18 @@ export declare const mainChatContract: {
33423
34357
  callFrom: string | null;
33424
34358
  callTo: string | null;
33425
34359
  note: string | null;
34360
+ customFields?: {
34361
+ id: string;
34362
+ createdAt: Date;
34363
+ updatedAt: Date;
34364
+ deletedAt: Date | null;
34365
+ entityId: string;
34366
+ attributeId: string;
34367
+ textValue: string | null;
34368
+ booleanValue: boolean | null;
34369
+ numberValue: number | null;
34370
+ dateValue: Date | null;
34371
+ }[] | undefined;
33426
34372
  } | null;
33427
34373
  };
33428
34374
  }, {
@@ -33760,6 +34706,18 @@ export declare const mainChatContract: {
33760
34706
  callFrom: string | null;
33761
34707
  callTo: string | null;
33762
34708
  note: string | null;
34709
+ customFields?: {
34710
+ id: string;
34711
+ createdAt: Date;
34712
+ updatedAt: Date;
34713
+ deletedAt: Date | null;
34714
+ entityId: string;
34715
+ attributeId: string;
34716
+ textValue: string | null;
34717
+ booleanValue: boolean | null;
34718
+ numberValue: number | null;
34719
+ dateValue: Date | null;
34720
+ }[] | undefined;
33763
34721
  } | null;
33764
34722
  };
33765
34723
  }>;
@@ -34099,6 +35057,18 @@ export declare const mainChatContract: {
34099
35057
  callFrom: string | null;
34100
35058
  callTo: string | null;
34101
35059
  note: string | null;
35060
+ customFields?: {
35061
+ id: string;
35062
+ createdAt: Date;
35063
+ updatedAt: Date;
35064
+ deletedAt: Date | null;
35065
+ entityId: string;
35066
+ attributeId: string;
35067
+ textValue: string | null;
35068
+ booleanValue: boolean | null;
35069
+ numberValue: number | null;
35070
+ dateValue: Date | null;
35071
+ }[] | undefined;
34102
35072
  } | null;
34103
35073
  };
34104
35074
  };
@@ -34439,6 +35409,18 @@ export declare const mainChatContract: {
34439
35409
  callFrom: string | null;
34440
35410
  callTo: string | null;
34441
35411
  note: string | null;
35412
+ customFields?: {
35413
+ id: string;
35414
+ createdAt: Date;
35415
+ updatedAt: Date;
35416
+ deletedAt: Date | null;
35417
+ entityId: string;
35418
+ attributeId: string;
35419
+ textValue: string | null;
35420
+ booleanValue: boolean | null;
35421
+ numberValue: number | null;
35422
+ dateValue: Date | null;
35423
+ }[] | undefined;
34442
35424
  } | null;
34443
35425
  };
34444
35426
  };
@@ -36344,6 +37326,40 @@ export declare const mainChatContract: {
36344
37326
  }>, "many">;
36345
37327
  callFrom: z.ZodNullable<z.ZodString>;
36346
37328
  callTo: z.ZodNullable<z.ZodString>;
37329
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
37330
+ id: z.ZodString;
37331
+ createdAt: z.ZodDate;
37332
+ updatedAt: z.ZodDate;
37333
+ deletedAt: z.ZodNullable<z.ZodDate>;
37334
+ textValue: z.ZodNullable<z.ZodString>;
37335
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
37336
+ numberValue: z.ZodNullable<z.ZodNumber>;
37337
+ dateValue: z.ZodNullable<z.ZodDate>;
37338
+ entityId: z.ZodString;
37339
+ attributeId: z.ZodString;
37340
+ }, "strip", z.ZodTypeAny, {
37341
+ id: string;
37342
+ createdAt: Date;
37343
+ updatedAt: Date;
37344
+ deletedAt: Date | null;
37345
+ entityId: string;
37346
+ attributeId: string;
37347
+ textValue: string | null;
37348
+ booleanValue: boolean | null;
37349
+ numberValue: number | null;
37350
+ dateValue: Date | null;
37351
+ }, {
37352
+ id: string;
37353
+ createdAt: Date;
37354
+ updatedAt: Date;
37355
+ deletedAt: Date | null;
37356
+ entityId: string;
37357
+ attributeId: string;
37358
+ textValue: string | null;
37359
+ booleanValue: boolean | null;
37360
+ numberValue: number | null;
37361
+ dateValue: Date | null;
37362
+ }>, "many">>;
36347
37363
  }, "strip", z.ZodTypeAny, {
36348
37364
  type: string;
36349
37365
  id: string;
@@ -36383,47 +37399,139 @@ export declare const mainChatContract: {
36383
37399
  callFrom: string | null;
36384
37400
  callTo: string | null;
36385
37401
  note: string | null;
36386
- }, {
36387
- type: string;
36388
- id: string;
36389
- disposition: string | null;
36390
- createdAt: Date;
36391
- updatedAt: Date;
36392
- deletedAt: Date | null;
36393
- categories: {
37402
+ customFields?: {
37403
+ id: string;
37404
+ createdAt: Date;
37405
+ updatedAt: Date;
37406
+ deletedAt: Date | null;
37407
+ entityId: string;
37408
+ attributeId: string;
37409
+ textValue: string | null;
37410
+ booleanValue: boolean | null;
37411
+ numberValue: number | null;
37412
+ dateValue: Date | null;
37413
+ }[] | undefined;
37414
+ }, {
37415
+ type: string;
37416
+ id: string;
37417
+ disposition: string | null;
37418
+ createdAt: Date;
37419
+ updatedAt: Date;
37420
+ deletedAt: Date | null;
37421
+ categories: {
37422
+ id: string;
37423
+ value: string;
37424
+ createdAt: Date;
37425
+ updatedAt: Date;
37426
+ deletedAt: Date | null;
37427
+ level: 2 | 1 | 3;
37428
+ parentId: string | null;
37429
+ childCategoryList: {
37430
+ id: string;
37431
+ value: string;
37432
+ level: 2 | 1 | 3;
37433
+ parentId: string | null;
37434
+ childCategoryList: {
37435
+ id: string;
37436
+ value: string;
37437
+ level: 2 | 1 | 3;
37438
+ parentId: string | null;
37439
+ childCategoryList: any[];
37440
+ }[];
37441
+ }[];
37442
+ }[];
37443
+ tags: {
37444
+ id: string;
37445
+ name: string;
37446
+ createdAt: Date;
37447
+ updatedAt: Date;
37448
+ deletedAt: Date | null;
37449
+ }[];
37450
+ callFrom: string | null;
37451
+ callTo: string | null;
37452
+ note: string | null;
37453
+ customFields?: {
37454
+ id: string;
37455
+ createdAt: Date;
37456
+ updatedAt: Date;
37457
+ deletedAt: Date | null;
37458
+ entityId: string;
37459
+ attributeId: string;
37460
+ textValue: string | null;
37461
+ booleanValue: boolean | null;
37462
+ numberValue: number | null;
37463
+ dateValue: Date | null;
37464
+ }[] | undefined;
37465
+ }>>;
37466
+ }, "strip", z.ZodTypeAny, {
37467
+ id: string;
37468
+ channel: string | null;
37469
+ direction: string | null;
37470
+ createdAt: Date;
37471
+ updatedAt: Date;
37472
+ deletedAt: Date | null;
37473
+ entityId: string;
37474
+ queueId: string | null;
37475
+ contactId: string | null;
37476
+ caseId: number;
37477
+ entityName: string;
37478
+ agentId: string | null;
37479
+ startedDate: Date | null;
37480
+ handledTime: number | null;
37481
+ firstResponseTime: number | null;
37482
+ wrapUpForm: {
37483
+ type: string;
37484
+ id: string;
37485
+ disposition: string | null;
37486
+ createdAt: Date;
37487
+ updatedAt: Date;
37488
+ deletedAt: Date | null;
37489
+ categories: {
37490
+ id: string;
37491
+ value: string;
37492
+ createdAt: Date;
37493
+ updatedAt: Date;
37494
+ deletedAt: Date | null;
37495
+ level: 2 | 1 | 3;
37496
+ parentId: string | null;
37497
+ childCategoryList: {
37498
+ id: string;
37499
+ value: string;
37500
+ level: 2 | 1 | 3;
37501
+ parentId: string | null;
37502
+ childCategoryList: {
37503
+ id: string;
37504
+ value: string;
37505
+ level: 2 | 1 | 3;
37506
+ parentId: string | null;
37507
+ childCategoryList: any[];
37508
+ }[];
37509
+ }[];
37510
+ }[];
37511
+ tags: {
37512
+ id: string;
37513
+ name: string;
37514
+ createdAt: Date;
37515
+ updatedAt: Date;
37516
+ deletedAt: Date | null;
37517
+ }[];
37518
+ callFrom: string | null;
37519
+ callTo: string | null;
37520
+ note: string | null;
37521
+ customFields?: {
36394
37522
  id: string;
36395
- value: string;
36396
37523
  createdAt: Date;
36397
37524
  updatedAt: Date;
36398
37525
  deletedAt: Date | null;
36399
- level: 2 | 1 | 3;
36400
- parentId: string | null;
36401
- childCategoryList: {
36402
- id: string;
36403
- value: string;
36404
- level: 2 | 1 | 3;
36405
- parentId: string | null;
36406
- childCategoryList: {
36407
- id: string;
36408
- value: string;
36409
- level: 2 | 1 | 3;
36410
- parentId: string | null;
36411
- childCategoryList: any[];
36412
- }[];
36413
- }[];
36414
- }[];
36415
- tags: {
36416
- id: string;
36417
- name: string;
36418
- createdAt: Date;
36419
- updatedAt: Date;
36420
- deletedAt: Date | null;
36421
- }[];
36422
- callFrom: string | null;
36423
- callTo: string | null;
36424
- note: string | null;
36425
- }>>;
36426
- }, "strip", z.ZodTypeAny, {
37526
+ entityId: string;
37527
+ attributeId: string;
37528
+ textValue: string | null;
37529
+ booleanValue: boolean | null;
37530
+ numberValue: number | null;
37531
+ dateValue: Date | null;
37532
+ }[] | undefined;
37533
+ } | null;
37534
+ }, {
36427
37535
  id: string;
36428
37536
  channel: string | null;
36429
37537
  direction: string | null;
@@ -36478,62 +37586,18 @@ export declare const mainChatContract: {
36478
37586
  callFrom: string | null;
36479
37587
  callTo: string | null;
36480
37588
  note: string | null;
36481
- } | null;
36482
- }, {
36483
- id: string;
36484
- channel: string | null;
36485
- direction: string | null;
36486
- createdAt: Date;
36487
- updatedAt: Date;
36488
- deletedAt: Date | null;
36489
- entityId: string;
36490
- queueId: string | null;
36491
- contactId: string | null;
36492
- caseId: number;
36493
- entityName: string;
36494
- agentId: string | null;
36495
- startedDate: Date | null;
36496
- handledTime: number | null;
36497
- firstResponseTime: number | null;
36498
- wrapUpForm: {
36499
- type: string;
36500
- id: string;
36501
- disposition: string | null;
36502
- createdAt: Date;
36503
- updatedAt: Date;
36504
- deletedAt: Date | null;
36505
- categories: {
37589
+ customFields?: {
36506
37590
  id: string;
36507
- value: string;
36508
37591
  createdAt: Date;
36509
37592
  updatedAt: Date;
36510
37593
  deletedAt: Date | null;
36511
- level: 2 | 1 | 3;
36512
- parentId: string | null;
36513
- childCategoryList: {
36514
- id: string;
36515
- value: string;
36516
- level: 2 | 1 | 3;
36517
- parentId: string | null;
36518
- childCategoryList: {
36519
- id: string;
36520
- value: string;
36521
- level: 2 | 1 | 3;
36522
- parentId: string | null;
36523
- childCategoryList: any[];
36524
- }[];
36525
- }[];
36526
- }[];
36527
- tags: {
36528
- id: string;
36529
- name: string;
36530
- createdAt: Date;
36531
- updatedAt: Date;
36532
- deletedAt: Date | null;
36533
- }[];
36534
- callFrom: string | null;
36535
- callTo: string | null;
36536
- note: string | null;
37594
+ entityId: string;
37595
+ attributeId: string;
37596
+ textValue: string | null;
37597
+ booleanValue: boolean | null;
37598
+ numberValue: number | null;
37599
+ dateValue: Date | null;
37600
+ }[] | undefined;
36537
37601
  } | null;
36538
37602
  }>;
36539
37603
  }, "strip", z.ZodTypeAny, {
@@ -36871,6 +37935,18 @@ export declare const mainChatContract: {
36871
37935
  callFrom: string | null;
36872
37936
  callTo: string | null;
36873
37937
  note: string | null;
37938
+ customFields?: {
37939
+ id: string;
37940
+ createdAt: Date;
37941
+ updatedAt: Date;
37942
+ deletedAt: Date | null;
37943
+ entityId: string;
37944
+ attributeId: string;
37945
+ textValue: string | null;
37946
+ booleanValue: boolean | null;
37947
+ numberValue: number | null;
37948
+ dateValue: Date | null;
37949
+ }[] | undefined;
36874
37950
  } | null;
36875
37951
  };
36876
37952
  }, {
@@ -37208,6 +38284,18 @@ export declare const mainChatContract: {
37208
38284
  callFrom: string | null;
37209
38285
  callTo: string | null;
37210
38286
  note: string | null;
38287
+ customFields?: {
38288
+ id: string;
38289
+ createdAt: Date;
38290
+ updatedAt: Date;
38291
+ deletedAt: Date | null;
38292
+ entityId: string;
38293
+ attributeId: string;
38294
+ textValue: string | null;
38295
+ booleanValue: boolean | null;
38296
+ numberValue: number | null;
38297
+ dateValue: Date | null;
38298
+ }[] | undefined;
37211
38299
  } | null;
37212
38300
  };
37213
38301
  }>;
@@ -37590,6 +38678,18 @@ export declare const mainChatContract: {
37590
38678
  callFrom: string | null;
37591
38679
  callTo: string | null;
37592
38680
  note: string | null;
38681
+ customFields?: {
38682
+ id: string;
38683
+ createdAt: Date;
38684
+ updatedAt: Date;
38685
+ deletedAt: Date | null;
38686
+ entityId: string;
38687
+ attributeId: string;
38688
+ textValue: string | null;
38689
+ booleanValue: boolean | null;
38690
+ numberValue: number | null;
38691
+ dateValue: Date | null;
38692
+ }[] | undefined;
37593
38693
  } | null;
37594
38694
  };
37595
38695
  };
@@ -37944,6 +39044,18 @@ export declare const mainChatContract: {
37944
39044
  callFrom: string | null;
37945
39045
  callTo: string | null;
37946
39046
  note: string | null;
39047
+ customFields?: {
39048
+ id: string;
39049
+ createdAt: Date;
39050
+ updatedAt: Date;
39051
+ deletedAt: Date | null;
39052
+ entityId: string;
39053
+ attributeId: string;
39054
+ textValue: string | null;
39055
+ booleanValue: boolean | null;
39056
+ numberValue: number | null;
39057
+ dateValue: Date | null;
39058
+ }[] | undefined;
37947
39059
  } | null;
37948
39060
  };
37949
39061
  };
@@ -38300,6 +39412,18 @@ export declare const mainChatContract: {
38300
39412
  callFrom: string | null;
38301
39413
  callTo: string | null;
38302
39414
  note: string | null;
39415
+ customFields?: {
39416
+ id: string;
39417
+ createdAt: Date;
39418
+ updatedAt: Date;
39419
+ deletedAt: Date | null;
39420
+ entityId: string;
39421
+ attributeId: string;
39422
+ textValue: string | null;
39423
+ booleanValue: boolean | null;
39424
+ numberValue: number | null;
39425
+ dateValue: Date | null;
39426
+ }[] | undefined;
38303
39427
  } | null;
38304
39428
  };
38305
39429
  };
@@ -38657,6 +39781,18 @@ export declare const mainChatContract: {
38657
39781
  callFrom: string | null;
38658
39782
  callTo: string | null;
38659
39783
  note: string | null;
39784
+ customFields?: {
39785
+ id: string;
39786
+ createdAt: Date;
39787
+ updatedAt: Date;
39788
+ deletedAt: Date | null;
39789
+ entityId: string;
39790
+ attributeId: string;
39791
+ textValue: string | null;
39792
+ booleanValue: boolean | null;
39793
+ numberValue: number | null;
39794
+ dateValue: Date | null;
39795
+ }[] | undefined;
38660
39796
  } | null;
38661
39797
  };
38662
39798
  };
@@ -40588,6 +41724,40 @@ export declare const mainChatContract: {
40588
41724
  }>, "many">;
40589
41725
  callFrom: z.ZodNullable<z.ZodString>;
40590
41726
  callTo: z.ZodNullable<z.ZodString>;
41727
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
41728
+ id: z.ZodString;
41729
+ createdAt: z.ZodDate;
41730
+ updatedAt: z.ZodDate;
41731
+ deletedAt: z.ZodNullable<z.ZodDate>;
41732
+ textValue: z.ZodNullable<z.ZodString>;
41733
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
41734
+ numberValue: z.ZodNullable<z.ZodNumber>;
41735
+ dateValue: z.ZodNullable<z.ZodDate>;
41736
+ entityId: z.ZodString;
41737
+ attributeId: z.ZodString;
41738
+ }, "strip", z.ZodTypeAny, {
41739
+ id: string;
41740
+ createdAt: Date;
41741
+ updatedAt: Date;
41742
+ deletedAt: Date | null;
41743
+ entityId: string;
41744
+ attributeId: string;
41745
+ textValue: string | null;
41746
+ booleanValue: boolean | null;
41747
+ numberValue: number | null;
41748
+ dateValue: Date | null;
41749
+ }, {
41750
+ id: string;
41751
+ createdAt: Date;
41752
+ updatedAt: Date;
41753
+ deletedAt: Date | null;
41754
+ entityId: string;
41755
+ attributeId: string;
41756
+ textValue: string | null;
41757
+ booleanValue: boolean | null;
41758
+ numberValue: number | null;
41759
+ dateValue: Date | null;
41760
+ }>, "many">>;
40591
41761
  }, "strip", z.ZodTypeAny, {
40592
41762
  type: string;
40593
41763
  id: string;
@@ -40627,6 +41797,18 @@ export declare const mainChatContract: {
40627
41797
  callFrom: string | null;
40628
41798
  callTo: string | null;
40629
41799
  note: string | null;
41800
+ customFields?: {
41801
+ id: string;
41802
+ createdAt: Date;
41803
+ updatedAt: Date;
41804
+ deletedAt: Date | null;
41805
+ entityId: string;
41806
+ attributeId: string;
41807
+ textValue: string | null;
41808
+ booleanValue: boolean | null;
41809
+ numberValue: number | null;
41810
+ dateValue: Date | null;
41811
+ }[] | undefined;
40630
41812
  }, {
40631
41813
  type: string;
40632
41814
  id: string;
@@ -40666,6 +41848,18 @@ export declare const mainChatContract: {
40666
41848
  callFrom: string | null;
40667
41849
  callTo: string | null;
40668
41850
  note: string | null;
41851
+ customFields?: {
41852
+ id: string;
41853
+ createdAt: Date;
41854
+ updatedAt: Date;
41855
+ deletedAt: Date | null;
41856
+ entityId: string;
41857
+ attributeId: string;
41858
+ textValue: string | null;
41859
+ booleanValue: boolean | null;
41860
+ numberValue: number | null;
41861
+ dateValue: Date | null;
41862
+ }[] | undefined;
40669
41863
  }>>;
40670
41864
  }, "strip", z.ZodTypeAny, {
40671
41865
  id: string;
@@ -40722,6 +41916,18 @@ export declare const mainChatContract: {
40722
41916
  callFrom: string | null;
40723
41917
  callTo: string | null;
40724
41918
  note: string | null;
41919
+ customFields?: {
41920
+ id: string;
41921
+ createdAt: Date;
41922
+ updatedAt: Date;
41923
+ deletedAt: Date | null;
41924
+ entityId: string;
41925
+ attributeId: string;
41926
+ textValue: string | null;
41927
+ booleanValue: boolean | null;
41928
+ numberValue: number | null;
41929
+ dateValue: Date | null;
41930
+ }[] | undefined;
40725
41931
  } | null;
40726
41932
  }, {
40727
41933
  id: string;
@@ -40778,6 +41984,18 @@ export declare const mainChatContract: {
40778
41984
  callFrom: string | null;
40779
41985
  callTo: string | null;
40780
41986
  note: string | null;
41987
+ customFields?: {
41988
+ id: string;
41989
+ createdAt: Date;
41990
+ updatedAt: Date;
41991
+ deletedAt: Date | null;
41992
+ entityId: string;
41993
+ attributeId: string;
41994
+ textValue: string | null;
41995
+ booleanValue: boolean | null;
41996
+ numberValue: number | null;
41997
+ dateValue: Date | null;
41998
+ }[] | undefined;
40781
41999
  } | null;
40782
42000
  }>;
40783
42001
  contact: z.ZodObject<{
@@ -41900,6 +43118,18 @@ export declare const mainChatContract: {
41900
43118
  callFrom: string | null;
41901
43119
  callTo: string | null;
41902
43120
  note: string | null;
43121
+ customFields?: {
43122
+ id: string;
43123
+ createdAt: Date;
43124
+ updatedAt: Date;
43125
+ deletedAt: Date | null;
43126
+ entityId: string;
43127
+ attributeId: string;
43128
+ textValue: string | null;
43129
+ booleanValue: boolean | null;
43130
+ numberValue: number | null;
43131
+ dateValue: Date | null;
43132
+ }[] | undefined;
41903
43133
  } | null;
41904
43134
  };
41905
43135
  openMessage: string;
@@ -42335,6 +43565,18 @@ export declare const mainChatContract: {
42335
43565
  callFrom: string | null;
42336
43566
  callTo: string | null;
42337
43567
  note: string | null;
43568
+ customFields?: {
43569
+ id: string;
43570
+ createdAt: Date;
43571
+ updatedAt: Date;
43572
+ deletedAt: Date | null;
43573
+ entityId: string;
43574
+ attributeId: string;
43575
+ textValue: string | null;
43576
+ booleanValue: boolean | null;
43577
+ numberValue: number | null;
43578
+ dateValue: Date | null;
43579
+ }[] | undefined;
42338
43580
  } | null;
42339
43581
  };
42340
43582
  openMessage: string;
@@ -42772,6 +44014,18 @@ export declare const mainChatContract: {
42772
44014
  callFrom: string | null;
42773
44015
  callTo: string | null;
42774
44016
  note: string | null;
44017
+ customFields?: {
44018
+ id: string;
44019
+ createdAt: Date;
44020
+ updatedAt: Date;
44021
+ deletedAt: Date | null;
44022
+ entityId: string;
44023
+ attributeId: string;
44024
+ textValue: string | null;
44025
+ booleanValue: boolean | null;
44026
+ numberValue: number | null;
44027
+ dateValue: Date | null;
44028
+ }[] | undefined;
42775
44029
  } | null;
42776
44030
  };
42777
44031
  openMessage: string;
@@ -43210,6 +44464,18 @@ export declare const mainChatContract: {
43210
44464
  callFrom: string | null;
43211
44465
  callTo: string | null;
43212
44466
  note: string | null;
44467
+ customFields?: {
44468
+ id: string;
44469
+ createdAt: Date;
44470
+ updatedAt: Date;
44471
+ deletedAt: Date | null;
44472
+ entityId: string;
44473
+ attributeId: string;
44474
+ textValue: string | null;
44475
+ booleanValue: boolean | null;
44476
+ numberValue: number | null;
44477
+ dateValue: Date | null;
44478
+ }[] | undefined;
43213
44479
  } | null;
43214
44480
  };
43215
44481
  openMessage: string;
@@ -45116,6 +46382,40 @@ export declare const mainChatContract: {
45116
46382
  }>, "many">;
45117
46383
  callFrom: z.ZodNullable<z.ZodString>;
45118
46384
  callTo: z.ZodNullable<z.ZodString>;
46385
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
46386
+ id: z.ZodString;
46387
+ createdAt: z.ZodDate;
46388
+ updatedAt: z.ZodDate;
46389
+ deletedAt: z.ZodNullable<z.ZodDate>;
46390
+ textValue: z.ZodNullable<z.ZodString>;
46391
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
46392
+ numberValue: z.ZodNullable<z.ZodNumber>;
46393
+ dateValue: z.ZodNullable<z.ZodDate>;
46394
+ entityId: z.ZodString;
46395
+ attributeId: z.ZodString;
46396
+ }, "strip", z.ZodTypeAny, {
46397
+ id: string;
46398
+ createdAt: Date;
46399
+ updatedAt: Date;
46400
+ deletedAt: Date | null;
46401
+ entityId: string;
46402
+ attributeId: string;
46403
+ textValue: string | null;
46404
+ booleanValue: boolean | null;
46405
+ numberValue: number | null;
46406
+ dateValue: Date | null;
46407
+ }, {
46408
+ id: string;
46409
+ createdAt: Date;
46410
+ updatedAt: Date;
46411
+ deletedAt: Date | null;
46412
+ entityId: string;
46413
+ attributeId: string;
46414
+ textValue: string | null;
46415
+ booleanValue: boolean | null;
46416
+ numberValue: number | null;
46417
+ dateValue: Date | null;
46418
+ }>, "many">>;
45119
46419
  }, "strip", z.ZodTypeAny, {
45120
46420
  type: string;
45121
46421
  id: string;
@@ -45155,6 +46455,18 @@ export declare const mainChatContract: {
45155
46455
  callFrom: string | null;
45156
46456
  callTo: string | null;
45157
46457
  note: string | null;
46458
+ customFields?: {
46459
+ id: string;
46460
+ createdAt: Date;
46461
+ updatedAt: Date;
46462
+ deletedAt: Date | null;
46463
+ entityId: string;
46464
+ attributeId: string;
46465
+ textValue: string | null;
46466
+ booleanValue: boolean | null;
46467
+ numberValue: number | null;
46468
+ dateValue: Date | null;
46469
+ }[] | undefined;
45158
46470
  }, {
45159
46471
  type: string;
45160
46472
  id: string;
@@ -45194,6 +46506,18 @@ export declare const mainChatContract: {
45194
46506
  callFrom: string | null;
45195
46507
  callTo: string | null;
45196
46508
  note: string | null;
46509
+ customFields?: {
46510
+ id: string;
46511
+ createdAt: Date;
46512
+ updatedAt: Date;
46513
+ deletedAt: Date | null;
46514
+ entityId: string;
46515
+ attributeId: string;
46516
+ textValue: string | null;
46517
+ booleanValue: boolean | null;
46518
+ numberValue: number | null;
46519
+ dateValue: Date | null;
46520
+ }[] | undefined;
45197
46521
  }>>;
45198
46522
  }, "strip", z.ZodTypeAny, {
45199
46523
  id: string;
@@ -45250,6 +46574,18 @@ export declare const mainChatContract: {
45250
46574
  callFrom: string | null;
45251
46575
  callTo: string | null;
45252
46576
  note: string | null;
46577
+ customFields?: {
46578
+ id: string;
46579
+ createdAt: Date;
46580
+ updatedAt: Date;
46581
+ deletedAt: Date | null;
46582
+ entityId: string;
46583
+ attributeId: string;
46584
+ textValue: string | null;
46585
+ booleanValue: boolean | null;
46586
+ numberValue: number | null;
46587
+ dateValue: Date | null;
46588
+ }[] | undefined;
45253
46589
  } | null;
45254
46590
  }, {
45255
46591
  id: string;
@@ -45306,6 +46642,18 @@ export declare const mainChatContract: {
45306
46642
  callFrom: string | null;
45307
46643
  callTo: string | null;
45308
46644
  note: string | null;
46645
+ customFields?: {
46646
+ id: string;
46647
+ createdAt: Date;
46648
+ updatedAt: Date;
46649
+ deletedAt: Date | null;
46650
+ entityId: string;
46651
+ attributeId: string;
46652
+ textValue: string | null;
46653
+ booleanValue: boolean | null;
46654
+ numberValue: number | null;
46655
+ dateValue: Date | null;
46656
+ }[] | undefined;
45309
46657
  } | null;
45310
46658
  }>;
45311
46659
  description: z.ZodNullable<z.ZodString>;
@@ -45645,6 +46993,18 @@ export declare const mainChatContract: {
45645
46993
  callFrom: string | null;
45646
46994
  callTo: string | null;
45647
46995
  note: string | null;
46996
+ customFields?: {
46997
+ id: string;
46998
+ createdAt: Date;
46999
+ updatedAt: Date;
47000
+ deletedAt: Date | null;
47001
+ entityId: string;
47002
+ attributeId: string;
47003
+ textValue: string | null;
47004
+ booleanValue: boolean | null;
47005
+ numberValue: number | null;
47006
+ dateValue: Date | null;
47007
+ }[] | undefined;
45648
47008
  } | null;
45649
47009
  };
45650
47010
  }, {
@@ -45983,6 +47343,18 @@ export declare const mainChatContract: {
45983
47343
  callFrom: string | null;
45984
47344
  callTo: string | null;
45985
47345
  note: string | null;
47346
+ customFields?: {
47347
+ id: string;
47348
+ createdAt: Date;
47349
+ updatedAt: Date;
47350
+ deletedAt: Date | null;
47351
+ entityId: string;
47352
+ attributeId: string;
47353
+ textValue: string | null;
47354
+ booleanValue: boolean | null;
47355
+ numberValue: number | null;
47356
+ dateValue: Date | null;
47357
+ }[] | undefined;
45986
47358
  } | null;
45987
47359
  };
45988
47360
  }>;
@@ -46323,6 +47695,18 @@ export declare const mainChatContract: {
46323
47695
  callFrom: string | null;
46324
47696
  callTo: string | null;
46325
47697
  note: string | null;
47698
+ customFields?: {
47699
+ id: string;
47700
+ createdAt: Date;
47701
+ updatedAt: Date;
47702
+ deletedAt: Date | null;
47703
+ entityId: string;
47704
+ attributeId: string;
47705
+ textValue: string | null;
47706
+ booleanValue: boolean | null;
47707
+ numberValue: number | null;
47708
+ dateValue: Date | null;
47709
+ }[] | undefined;
46326
47710
  } | null;
46327
47711
  };
46328
47712
  };
@@ -46664,6 +48048,18 @@ export declare const mainChatContract: {
46664
48048
  callFrom: string | null;
46665
48049
  callTo: string | null;
46666
48050
  note: string | null;
48051
+ customFields?: {
48052
+ id: string;
48053
+ createdAt: Date;
48054
+ updatedAt: Date;
48055
+ deletedAt: Date | null;
48056
+ entityId: string;
48057
+ attributeId: string;
48058
+ textValue: string | null;
48059
+ booleanValue: boolean | null;
48060
+ numberValue: number | null;
48061
+ dateValue: Date | null;
48062
+ }[] | undefined;
46667
48063
  } | null;
46668
48064
  };
46669
48065
  };
@@ -48580,6 +49976,40 @@ export declare const mainChatContract: {
48580
49976
  }>, "many">;
48581
49977
  callFrom: z.ZodNullable<z.ZodString>;
48582
49978
  callTo: z.ZodNullable<z.ZodString>;
49979
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
49980
+ id: z.ZodString;
49981
+ createdAt: z.ZodDate;
49982
+ updatedAt: z.ZodDate;
49983
+ deletedAt: z.ZodNullable<z.ZodDate>;
49984
+ textValue: z.ZodNullable<z.ZodString>;
49985
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
49986
+ numberValue: z.ZodNullable<z.ZodNumber>;
49987
+ dateValue: z.ZodNullable<z.ZodDate>;
49988
+ entityId: z.ZodString;
49989
+ attributeId: z.ZodString;
49990
+ }, "strip", z.ZodTypeAny, {
49991
+ id: string;
49992
+ createdAt: Date;
49993
+ updatedAt: Date;
49994
+ deletedAt: Date | null;
49995
+ entityId: string;
49996
+ attributeId: string;
49997
+ textValue: string | null;
49998
+ booleanValue: boolean | null;
49999
+ numberValue: number | null;
50000
+ dateValue: Date | null;
50001
+ }, {
50002
+ id: string;
50003
+ createdAt: Date;
50004
+ updatedAt: Date;
50005
+ deletedAt: Date | null;
50006
+ entityId: string;
50007
+ attributeId: string;
50008
+ textValue: string | null;
50009
+ booleanValue: boolean | null;
50010
+ numberValue: number | null;
50011
+ dateValue: Date | null;
50012
+ }>, "many">>;
48583
50013
  }, "strip", z.ZodTypeAny, {
48584
50014
  type: string;
48585
50015
  id: string;
@@ -48619,6 +50049,18 @@ export declare const mainChatContract: {
48619
50049
  callFrom: string | null;
48620
50050
  callTo: string | null;
48621
50051
  note: string | null;
50052
+ customFields?: {
50053
+ id: string;
50054
+ createdAt: Date;
50055
+ updatedAt: Date;
50056
+ deletedAt: Date | null;
50057
+ entityId: string;
50058
+ attributeId: string;
50059
+ textValue: string | null;
50060
+ booleanValue: boolean | null;
50061
+ numberValue: number | null;
50062
+ dateValue: Date | null;
50063
+ }[] | undefined;
48622
50064
  }, {
48623
50065
  type: string;
48624
50066
  id: string;
@@ -48658,6 +50100,18 @@ export declare const mainChatContract: {
48658
50100
  callFrom: string | null;
48659
50101
  callTo: string | null;
48660
50102
  note: string | null;
50103
+ customFields?: {
50104
+ id: string;
50105
+ createdAt: Date;
50106
+ updatedAt: Date;
50107
+ deletedAt: Date | null;
50108
+ entityId: string;
50109
+ attributeId: string;
50110
+ textValue: string | null;
50111
+ booleanValue: boolean | null;
50112
+ numberValue: number | null;
50113
+ dateValue: Date | null;
50114
+ }[] | undefined;
48661
50115
  }>>;
48662
50116
  }, "strip", z.ZodTypeAny, {
48663
50117
  id: string;
@@ -48714,6 +50168,18 @@ export declare const mainChatContract: {
48714
50168
  callFrom: string | null;
48715
50169
  callTo: string | null;
48716
50170
  note: string | null;
50171
+ customFields?: {
50172
+ id: string;
50173
+ createdAt: Date;
50174
+ updatedAt: Date;
50175
+ deletedAt: Date | null;
50176
+ entityId: string;
50177
+ attributeId: string;
50178
+ textValue: string | null;
50179
+ booleanValue: boolean | null;
50180
+ numberValue: number | null;
50181
+ dateValue: Date | null;
50182
+ }[] | undefined;
48717
50183
  } | null;
48718
50184
  }, {
48719
50185
  id: string;
@@ -48770,6 +50236,18 @@ export declare const mainChatContract: {
48770
50236
  callFrom: string | null;
48771
50237
  callTo: string | null;
48772
50238
  note: string | null;
50239
+ customFields?: {
50240
+ id: string;
50241
+ createdAt: Date;
50242
+ updatedAt: Date;
50243
+ deletedAt: Date | null;
50244
+ entityId: string;
50245
+ attributeId: string;
50246
+ textValue: string | null;
50247
+ booleanValue: boolean | null;
50248
+ numberValue: number | null;
50249
+ dateValue: Date | null;
50250
+ }[] | undefined;
48773
50251
  } | null;
48774
50252
  }>;
48775
50253
  }, "strip", z.ZodTypeAny, {
@@ -49107,6 +50585,18 @@ export declare const mainChatContract: {
49107
50585
  callFrom: string | null;
49108
50586
  callTo: string | null;
49109
50587
  note: string | null;
50588
+ customFields?: {
50589
+ id: string;
50590
+ createdAt: Date;
50591
+ updatedAt: Date;
50592
+ deletedAt: Date | null;
50593
+ entityId: string;
50594
+ attributeId: string;
50595
+ textValue: string | null;
50596
+ booleanValue: boolean | null;
50597
+ numberValue: number | null;
50598
+ dateValue: Date | null;
50599
+ }[] | undefined;
49110
50600
  } | null;
49111
50601
  };
49112
50602
  }, {
@@ -49444,6 +50934,18 @@ export declare const mainChatContract: {
49444
50934
  callFrom: string | null;
49445
50935
  callTo: string | null;
49446
50936
  note: string | null;
50937
+ customFields?: {
50938
+ id: string;
50939
+ createdAt: Date;
50940
+ updatedAt: Date;
50941
+ deletedAt: Date | null;
50942
+ entityId: string;
50943
+ attributeId: string;
50944
+ textValue: string | null;
50945
+ booleanValue: boolean | null;
50946
+ numberValue: number | null;
50947
+ dateValue: Date | null;
50948
+ }[] | undefined;
49447
50949
  } | null;
49448
50950
  };
49449
50951
  }>, "many">;
@@ -49783,6 +51285,18 @@ export declare const mainChatContract: {
49783
51285
  callFrom: string | null;
49784
51286
  callTo: string | null;
49785
51287
  note: string | null;
51288
+ customFields?: {
51289
+ id: string;
51290
+ createdAt: Date;
51291
+ updatedAt: Date;
51292
+ deletedAt: Date | null;
51293
+ entityId: string;
51294
+ attributeId: string;
51295
+ textValue: string | null;
51296
+ booleanValue: boolean | null;
51297
+ numberValue: number | null;
51298
+ dateValue: Date | null;
51299
+ }[] | undefined;
49786
51300
  } | null;
49787
51301
  };
49788
51302
  }[];
@@ -50126,6 +51640,18 @@ export declare const mainChatContract: {
50126
51640
  callFrom: string | null;
50127
51641
  callTo: string | null;
50128
51642
  note: string | null;
51643
+ customFields?: {
51644
+ id: string;
51645
+ createdAt: Date;
51646
+ updatedAt: Date;
51647
+ deletedAt: Date | null;
51648
+ entityId: string;
51649
+ attributeId: string;
51650
+ textValue: string | null;
51651
+ booleanValue: boolean | null;
51652
+ numberValue: number | null;
51653
+ dateValue: Date | null;
51654
+ }[] | undefined;
50129
51655
  } | null;
50130
51656
  };
50131
51657
  }[];