@kl1/contracts 1.1.31-uat → 1.1.33-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 (35) hide show
  1. package/dist/index.js +2466 -2396
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +2465 -2396
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +786 -0
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +177 -18
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +140 -0
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/contract.d.ts +9362 -581
  12. package/dist/src/contract.d.ts.map +1 -1
  13. package/dist/src/instagram/index.d.ts +140 -0
  14. package/dist/src/instagram/index.d.ts.map +1 -1
  15. package/dist/src/line/index.d.ts +140 -0
  16. package/dist/src/line/index.d.ts.map +1 -1
  17. package/dist/src/mail/mail-contract.d.ts +124 -124
  18. package/dist/src/mail/message-contract.d.ts +28 -28
  19. package/dist/src/mail/room-contract.d.ts +96 -96
  20. package/dist/src/mail/schemas/message.schema.d.ts +4 -4
  21. package/dist/src/mail/schemas/room-validation.schema.d.ts +32 -32
  22. package/dist/src/mail/schemas/room.schema.d.ts +28 -28
  23. package/dist/src/messenger/index.d.ts +140 -0
  24. package/dist/src/messenger/index.d.ts.map +1 -1
  25. package/dist/src/telephony-cdr/call-report.schema.d.ts +26 -52
  26. package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
  27. package/dist/src/viber/index.d.ts +140 -0
  28. package/dist/src/viber/index.d.ts.map +1 -1
  29. package/dist/src/webchat/index.d.ts +140 -0
  30. package/dist/src/webchat/index.d.ts.map +1 -1
  31. package/dist/src/workflow-rule/index.d.ts +7295 -0
  32. package/dist/src/workflow-rule/index.d.ts.map +1 -0
  33. package/dist/src/workflow-rule/schema.d.ts +27 -0
  34. package/dist/src/workflow-rule/schema.d.ts.map +1 -0
  35. package/package.json +1 -1
@@ -19,7 +19,7 @@ export declare const MessageSchema: z.ZodObject<{
19
19
  sendAt: z.ZodDate;
20
20
  starred: z.ZodBoolean;
21
21
  seemsLikeNew: z.ZodBoolean;
22
- from: z.ZodObject<{
22
+ from: z.ZodArray<z.ZodObject<{
23
23
  id: z.ZodString;
24
24
  createdAt: z.ZodDate;
25
25
  updatedAt: z.ZodDate;
@@ -173,7 +173,7 @@ export declare const MessageSchema: z.ZodObject<{
173
173
  contactId: string;
174
174
  isNewContact: boolean;
175
175
  };
176
- }>;
176
+ }>, "many">;
177
177
  to: z.ZodArray<z.ZodObject<{
178
178
  id: z.ZodString;
179
179
  createdAt: z.ZodDate;
@@ -781,7 +781,7 @@ export declare const MessageSchema: z.ZodObject<{
781
781
  contactId: string;
782
782
  isNewContact: boolean;
783
783
  };
784
- };
784
+ }[];
785
785
  to: {
786
786
  id: string;
787
787
  createdAt: Date;
@@ -949,7 +949,7 @@ export declare const MessageSchema: z.ZodObject<{
949
949
  contactId: string;
950
950
  isNewContact: boolean;
951
951
  };
952
- };
952
+ }[];
953
953
  to: {
954
954
  id: string;
955
955
  createdAt: Date;
@@ -704,7 +704,7 @@ export declare const RoomContractsValidationSchema: {
704
704
  sendAt: z.ZodDate;
705
705
  starred: z.ZodBoolean;
706
706
  seemsLikeNew: z.ZodBoolean;
707
- from: z.ZodObject<{
707
+ from: z.ZodArray<z.ZodObject<{
708
708
  id: z.ZodString;
709
709
  createdAt: z.ZodDate;
710
710
  updatedAt: z.ZodDate;
@@ -858,7 +858,7 @@ export declare const RoomContractsValidationSchema: {
858
858
  contactId: string;
859
859
  isNewContact: boolean;
860
860
  };
861
- }>;
861
+ }>, "many">;
862
862
  to: z.ZodArray<z.ZodObject<{
863
863
  id: z.ZodString;
864
864
  createdAt: z.ZodDate;
@@ -1466,7 +1466,7 @@ export declare const RoomContractsValidationSchema: {
1466
1466
  contactId: string;
1467
1467
  isNewContact: boolean;
1468
1468
  };
1469
- };
1469
+ }[];
1470
1470
  to: {
1471
1471
  id: string;
1472
1472
  createdAt: Date;
@@ -1634,7 +1634,7 @@ export declare const RoomContractsValidationSchema: {
1634
1634
  contactId: string;
1635
1635
  isNewContact: boolean;
1636
1636
  };
1637
- };
1637
+ }[];
1638
1638
  to: {
1639
1639
  id: string;
1640
1640
  createdAt: Date;
@@ -1773,7 +1773,7 @@ export declare const RoomContractsValidationSchema: {
1773
1773
  sendAt: z.ZodDate;
1774
1774
  starred: z.ZodBoolean;
1775
1775
  seemsLikeNew: z.ZodBoolean;
1776
- from: z.ZodObject<{
1776
+ from: z.ZodArray<z.ZodObject<{
1777
1777
  id: z.ZodString;
1778
1778
  createdAt: z.ZodDate;
1779
1779
  updatedAt: z.ZodDate;
@@ -1927,7 +1927,7 @@ export declare const RoomContractsValidationSchema: {
1927
1927
  contactId: string;
1928
1928
  isNewContact: boolean;
1929
1929
  };
1930
- }>;
1930
+ }>, "many">;
1931
1931
  to: z.ZodArray<z.ZodObject<{
1932
1932
  id: z.ZodString;
1933
1933
  createdAt: z.ZodDate;
@@ -2535,7 +2535,7 @@ export declare const RoomContractsValidationSchema: {
2535
2535
  contactId: string;
2536
2536
  isNewContact: boolean;
2537
2537
  };
2538
- };
2538
+ }[];
2539
2539
  to: {
2540
2540
  id: string;
2541
2541
  createdAt: Date;
@@ -2703,7 +2703,7 @@ export declare const RoomContractsValidationSchema: {
2703
2703
  contactId: string;
2704
2704
  isNewContact: boolean;
2705
2705
  };
2706
- };
2706
+ }[];
2707
2707
  to: {
2708
2708
  id: string;
2709
2709
  createdAt: Date;
@@ -2895,7 +2895,7 @@ export declare const RoomContractsValidationSchema: {
2895
2895
  sendAt: z.ZodDate;
2896
2896
  starred: z.ZodBoolean;
2897
2897
  seemsLikeNew: z.ZodBoolean;
2898
- from: z.ZodObject<{
2898
+ from: z.ZodArray<z.ZodObject<{
2899
2899
  id: z.ZodString;
2900
2900
  createdAt: z.ZodDate;
2901
2901
  updatedAt: z.ZodDate;
@@ -3049,7 +3049,7 @@ export declare const RoomContractsValidationSchema: {
3049
3049
  contactId: string;
3050
3050
  isNewContact: boolean;
3051
3051
  };
3052
- }>;
3052
+ }>, "many">;
3053
3053
  to: z.ZodArray<z.ZodObject<{
3054
3054
  id: z.ZodString;
3055
3055
  createdAt: z.ZodDate;
@@ -3657,7 +3657,7 @@ export declare const RoomContractsValidationSchema: {
3657
3657
  contactId: string;
3658
3658
  isNewContact: boolean;
3659
3659
  };
3660
- };
3660
+ }[];
3661
3661
  to: {
3662
3662
  id: string;
3663
3663
  createdAt: Date;
@@ -3825,7 +3825,7 @@ export declare const RoomContractsValidationSchema: {
3825
3825
  contactId: string;
3826
3826
  isNewContact: boolean;
3827
3827
  };
3828
- };
3828
+ }[];
3829
3829
  to: {
3830
3830
  id: string;
3831
3831
  createdAt: Date;
@@ -3964,7 +3964,7 @@ export declare const RoomContractsValidationSchema: {
3964
3964
  sendAt: z.ZodDate;
3965
3965
  starred: z.ZodBoolean;
3966
3966
  seemsLikeNew: z.ZodBoolean;
3967
- from: z.ZodObject<{
3967
+ from: z.ZodArray<z.ZodObject<{
3968
3968
  id: z.ZodString;
3969
3969
  createdAt: z.ZodDate;
3970
3970
  updatedAt: z.ZodDate;
@@ -4118,7 +4118,7 @@ export declare const RoomContractsValidationSchema: {
4118
4118
  contactId: string;
4119
4119
  isNewContact: boolean;
4120
4120
  };
4121
- }>;
4121
+ }>, "many">;
4122
4122
  to: z.ZodArray<z.ZodObject<{
4123
4123
  id: z.ZodString;
4124
4124
  createdAt: z.ZodDate;
@@ -4726,7 +4726,7 @@ export declare const RoomContractsValidationSchema: {
4726
4726
  contactId: string;
4727
4727
  isNewContact: boolean;
4728
4728
  };
4729
- };
4729
+ }[];
4730
4730
  to: {
4731
4731
  id: string;
4732
4732
  createdAt: Date;
@@ -4894,7 +4894,7 @@ export declare const RoomContractsValidationSchema: {
4894
4894
  contactId: string;
4895
4895
  isNewContact: boolean;
4896
4896
  };
4897
- };
4897
+ }[];
4898
4898
  to: {
4899
4899
  id: string;
4900
4900
  createdAt: Date;
@@ -5679,7 +5679,7 @@ export declare const RoomContractsValidationSchema: {
5679
5679
  contactId: string;
5680
5680
  isNewContact: boolean;
5681
5681
  };
5682
- };
5682
+ }[];
5683
5683
  to: {
5684
5684
  id: string;
5685
5685
  createdAt: Date;
@@ -6058,7 +6058,7 @@ export declare const RoomContractsValidationSchema: {
6058
6058
  contactId: string;
6059
6059
  isNewContact: boolean;
6060
6060
  };
6061
- };
6061
+ }[];
6062
6062
  to: {
6063
6063
  id: string;
6064
6064
  createdAt: Date;
@@ -6227,7 +6227,7 @@ export declare const RoomContractsValidationSchema: {
6227
6227
  contactId: string;
6228
6228
  isNewContact: boolean;
6229
6229
  };
6230
- };
6230
+ }[];
6231
6231
  to: {
6232
6232
  id: string;
6233
6233
  createdAt: Date;
@@ -6396,7 +6396,7 @@ export declare const RoomContractsValidationSchema: {
6396
6396
  contactId: string;
6397
6397
  isNewContact: boolean;
6398
6398
  };
6399
- };
6399
+ }[];
6400
6400
  to: {
6401
6401
  id: string;
6402
6402
  createdAt: Date;
@@ -6626,7 +6626,7 @@ export declare const RoomContractsValidationSchema: {
6626
6626
  contactId: string;
6627
6627
  isNewContact: boolean;
6628
6628
  };
6629
- };
6629
+ }[];
6630
6630
  to: {
6631
6631
  id: string;
6632
6632
  createdAt: Date;
@@ -7005,7 +7005,7 @@ export declare const RoomContractsValidationSchema: {
7005
7005
  contactId: string;
7006
7006
  isNewContact: boolean;
7007
7007
  };
7008
- };
7008
+ }[];
7009
7009
  to: {
7010
7010
  id: string;
7011
7011
  createdAt: Date;
@@ -7174,7 +7174,7 @@ export declare const RoomContractsValidationSchema: {
7174
7174
  contactId: string;
7175
7175
  isNewContact: boolean;
7176
7176
  };
7177
- };
7177
+ }[];
7178
7178
  to: {
7179
7179
  id: string;
7180
7180
  createdAt: Date;
@@ -7343,7 +7343,7 @@ export declare const RoomContractsValidationSchema: {
7343
7343
  contactId: string;
7344
7344
  isNewContact: boolean;
7345
7345
  };
7346
- };
7346
+ }[];
7347
7347
  to: {
7348
7348
  id: string;
7349
7349
  createdAt: Date;
@@ -7578,7 +7578,7 @@ export declare const RoomContractsValidationSchema: {
7578
7578
  contactId: string;
7579
7579
  isNewContact: boolean;
7580
7580
  };
7581
- };
7581
+ }[];
7582
7582
  to: {
7583
7583
  id: string;
7584
7584
  createdAt: Date;
@@ -7957,7 +7957,7 @@ export declare const RoomContractsValidationSchema: {
7957
7957
  contactId: string;
7958
7958
  isNewContact: boolean;
7959
7959
  };
7960
- };
7960
+ }[];
7961
7961
  to: {
7962
7962
  id: string;
7963
7963
  createdAt: Date;
@@ -8126,7 +8126,7 @@ export declare const RoomContractsValidationSchema: {
8126
8126
  contactId: string;
8127
8127
  isNewContact: boolean;
8128
8128
  };
8129
- };
8129
+ }[];
8130
8130
  to: {
8131
8131
  id: string;
8132
8132
  createdAt: Date;
@@ -8295,7 +8295,7 @@ export declare const RoomContractsValidationSchema: {
8295
8295
  contactId: string;
8296
8296
  isNewContact: boolean;
8297
8297
  };
8298
- };
8298
+ }[];
8299
8299
  to: {
8300
8300
  id: string;
8301
8301
  createdAt: Date;
@@ -8530,7 +8530,7 @@ export declare const RoomContractsValidationSchema: {
8530
8530
  contactId: string;
8531
8531
  isNewContact: boolean;
8532
8532
  };
8533
- };
8533
+ }[];
8534
8534
  to: {
8535
8535
  id: string;
8536
8536
  createdAt: Date;
@@ -8909,7 +8909,7 @@ export declare const RoomContractsValidationSchema: {
8909
8909
  contactId: string;
8910
8910
  isNewContact: boolean;
8911
8911
  };
8912
- };
8912
+ }[];
8913
8913
  to: {
8914
8914
  id: string;
8915
8915
  createdAt: Date;
@@ -9078,7 +9078,7 @@ export declare const RoomContractsValidationSchema: {
9078
9078
  contactId: string;
9079
9079
  isNewContact: boolean;
9080
9080
  };
9081
- };
9081
+ }[];
9082
9082
  to: {
9083
9083
  id: string;
9084
9084
  createdAt: Date;
@@ -9247,7 +9247,7 @@ export declare const RoomContractsValidationSchema: {
9247
9247
  contactId: string;
9248
9248
  isNewContact: boolean;
9249
9249
  };
9250
- };
9250
+ }[];
9251
9251
  to: {
9252
9252
  id: string;
9253
9253
  createdAt: Date;
@@ -347,7 +347,7 @@ export declare const MessagesAndLogsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
347
347
  sendAt: z.ZodDate;
348
348
  starred: z.ZodBoolean;
349
349
  seemsLikeNew: z.ZodBoolean;
350
- from: z.ZodObject<{
350
+ from: z.ZodArray<z.ZodObject<{
351
351
  id: z.ZodString;
352
352
  createdAt: z.ZodDate;
353
353
  updatedAt: z.ZodDate;
@@ -501,7 +501,7 @@ export declare const MessagesAndLogsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
501
501
  contactId: string;
502
502
  isNewContact: boolean;
503
503
  };
504
- }>;
504
+ }>, "many">;
505
505
  to: z.ZodArray<z.ZodObject<{
506
506
  id: z.ZodString;
507
507
  createdAt: z.ZodDate;
@@ -1109,7 +1109,7 @@ export declare const MessagesAndLogsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1109
1109
  contactId: string;
1110
1110
  isNewContact: boolean;
1111
1111
  };
1112
- };
1112
+ }[];
1113
1113
  to: {
1114
1114
  id: string;
1115
1115
  createdAt: Date;
@@ -1277,7 +1277,7 @@ export declare const MessagesAndLogsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1277
1277
  contactId: string;
1278
1278
  isNewContact: boolean;
1279
1279
  };
1280
- };
1280
+ }[];
1281
1281
  to: {
1282
1282
  id: string;
1283
1283
  createdAt: Date;
@@ -2126,7 +2126,7 @@ export declare const MailRoomSchema: z.ZodObject<{
2126
2126
  sendAt: z.ZodDate;
2127
2127
  starred: z.ZodBoolean;
2128
2128
  seemsLikeNew: z.ZodBoolean;
2129
- from: z.ZodObject<{
2129
+ from: z.ZodArray<z.ZodObject<{
2130
2130
  id: z.ZodString;
2131
2131
  createdAt: z.ZodDate;
2132
2132
  updatedAt: z.ZodDate;
@@ -2280,7 +2280,7 @@ export declare const MailRoomSchema: z.ZodObject<{
2280
2280
  contactId: string;
2281
2281
  isNewContact: boolean;
2282
2282
  };
2283
- }>;
2283
+ }>, "many">;
2284
2284
  to: z.ZodArray<z.ZodObject<{
2285
2285
  id: z.ZodString;
2286
2286
  createdAt: z.ZodDate;
@@ -2888,7 +2888,7 @@ export declare const MailRoomSchema: z.ZodObject<{
2888
2888
  contactId: string;
2889
2889
  isNewContact: boolean;
2890
2890
  };
2891
- };
2891
+ }[];
2892
2892
  to: {
2893
2893
  id: string;
2894
2894
  createdAt: Date;
@@ -3056,7 +3056,7 @@ export declare const MailRoomSchema: z.ZodObject<{
3056
3056
  contactId: string;
3057
3057
  isNewContact: boolean;
3058
3058
  };
3059
- };
3059
+ }[];
3060
3060
  to: {
3061
3061
  id: string;
3062
3062
  createdAt: Date;
@@ -3195,7 +3195,7 @@ export declare const MailRoomSchema: z.ZodObject<{
3195
3195
  sendAt: z.ZodDate;
3196
3196
  starred: z.ZodBoolean;
3197
3197
  seemsLikeNew: z.ZodBoolean;
3198
- from: z.ZodObject<{
3198
+ from: z.ZodArray<z.ZodObject<{
3199
3199
  id: z.ZodString;
3200
3200
  createdAt: z.ZodDate;
3201
3201
  updatedAt: z.ZodDate;
@@ -3349,7 +3349,7 @@ export declare const MailRoomSchema: z.ZodObject<{
3349
3349
  contactId: string;
3350
3350
  isNewContact: boolean;
3351
3351
  };
3352
- }>;
3352
+ }>, "many">;
3353
3353
  to: z.ZodArray<z.ZodObject<{
3354
3354
  id: z.ZodString;
3355
3355
  createdAt: z.ZodDate;
@@ -3957,7 +3957,7 @@ export declare const MailRoomSchema: z.ZodObject<{
3957
3957
  contactId: string;
3958
3958
  isNewContact: boolean;
3959
3959
  };
3960
- };
3960
+ }[];
3961
3961
  to: {
3962
3962
  id: string;
3963
3963
  createdAt: Date;
@@ -4125,7 +4125,7 @@ export declare const MailRoomSchema: z.ZodObject<{
4125
4125
  contactId: string;
4126
4126
  isNewContact: boolean;
4127
4127
  };
4128
- };
4128
+ }[];
4129
4129
  to: {
4130
4130
  id: string;
4131
4131
  createdAt: Date;
@@ -4317,7 +4317,7 @@ export declare const MailRoomSchema: z.ZodObject<{
4317
4317
  sendAt: z.ZodDate;
4318
4318
  starred: z.ZodBoolean;
4319
4319
  seemsLikeNew: z.ZodBoolean;
4320
- from: z.ZodObject<{
4320
+ from: z.ZodArray<z.ZodObject<{
4321
4321
  id: z.ZodString;
4322
4322
  createdAt: z.ZodDate;
4323
4323
  updatedAt: z.ZodDate;
@@ -4471,7 +4471,7 @@ export declare const MailRoomSchema: z.ZodObject<{
4471
4471
  contactId: string;
4472
4472
  isNewContact: boolean;
4473
4473
  };
4474
- }>;
4474
+ }>, "many">;
4475
4475
  to: z.ZodArray<z.ZodObject<{
4476
4476
  id: z.ZodString;
4477
4477
  createdAt: z.ZodDate;
@@ -5079,7 +5079,7 @@ export declare const MailRoomSchema: z.ZodObject<{
5079
5079
  contactId: string;
5080
5080
  isNewContact: boolean;
5081
5081
  };
5082
- };
5082
+ }[];
5083
5083
  to: {
5084
5084
  id: string;
5085
5085
  createdAt: Date;
@@ -5247,7 +5247,7 @@ export declare const MailRoomSchema: z.ZodObject<{
5247
5247
  contactId: string;
5248
5248
  isNewContact: boolean;
5249
5249
  };
5250
- };
5250
+ }[];
5251
5251
  to: {
5252
5252
  id: string;
5253
5253
  createdAt: Date;
@@ -5386,7 +5386,7 @@ export declare const MailRoomSchema: z.ZodObject<{
5386
5386
  sendAt: z.ZodDate;
5387
5387
  starred: z.ZodBoolean;
5388
5388
  seemsLikeNew: z.ZodBoolean;
5389
- from: z.ZodObject<{
5389
+ from: z.ZodArray<z.ZodObject<{
5390
5390
  id: z.ZodString;
5391
5391
  createdAt: z.ZodDate;
5392
5392
  updatedAt: z.ZodDate;
@@ -5540,7 +5540,7 @@ export declare const MailRoomSchema: z.ZodObject<{
5540
5540
  contactId: string;
5541
5541
  isNewContact: boolean;
5542
5542
  };
5543
- }>;
5543
+ }>, "many">;
5544
5544
  to: z.ZodArray<z.ZodObject<{
5545
5545
  id: z.ZodString;
5546
5546
  createdAt: z.ZodDate;
@@ -6148,7 +6148,7 @@ export declare const MailRoomSchema: z.ZodObject<{
6148
6148
  contactId: string;
6149
6149
  isNewContact: boolean;
6150
6150
  };
6151
- };
6151
+ }[];
6152
6152
  to: {
6153
6153
  id: string;
6154
6154
  createdAt: Date;
@@ -6316,7 +6316,7 @@ export declare const MailRoomSchema: z.ZodObject<{
6316
6316
  contactId: string;
6317
6317
  isNewContact: boolean;
6318
6318
  };
6319
- };
6319
+ }[];
6320
6320
  to: {
6321
6321
  id: string;
6322
6322
  createdAt: Date;
@@ -7101,7 +7101,7 @@ export declare const MailRoomSchema: z.ZodObject<{
7101
7101
  contactId: string;
7102
7102
  isNewContact: boolean;
7103
7103
  };
7104
- };
7104
+ }[];
7105
7105
  to: {
7106
7106
  id: string;
7107
7107
  createdAt: Date;
@@ -7480,7 +7480,7 @@ export declare const MailRoomSchema: z.ZodObject<{
7480
7480
  contactId: string;
7481
7481
  isNewContact: boolean;
7482
7482
  };
7483
- };
7483
+ }[];
7484
7484
  to: {
7485
7485
  id: string;
7486
7486
  createdAt: Date;
@@ -7649,7 +7649,7 @@ export declare const MailRoomSchema: z.ZodObject<{
7649
7649
  contactId: string;
7650
7650
  isNewContact: boolean;
7651
7651
  };
7652
- };
7652
+ }[];
7653
7653
  to: {
7654
7654
  id: string;
7655
7655
  createdAt: Date;
@@ -7818,7 +7818,7 @@ export declare const MailRoomSchema: z.ZodObject<{
7818
7818
  contactId: string;
7819
7819
  isNewContact: boolean;
7820
7820
  };
7821
- };
7821
+ }[];
7822
7822
  to: {
7823
7823
  id: string;
7824
7824
  createdAt: Date;
@@ -8048,7 +8048,7 @@ export declare const MailRoomSchema: z.ZodObject<{
8048
8048
  contactId: string;
8049
8049
  isNewContact: boolean;
8050
8050
  };
8051
- };
8051
+ }[];
8052
8052
  to: {
8053
8053
  id: string;
8054
8054
  createdAt: Date;
@@ -8427,7 +8427,7 @@ export declare const MailRoomSchema: z.ZodObject<{
8427
8427
  contactId: string;
8428
8428
  isNewContact: boolean;
8429
8429
  };
8430
- };
8430
+ }[];
8431
8431
  to: {
8432
8432
  id: string;
8433
8433
  createdAt: Date;
@@ -8596,7 +8596,7 @@ export declare const MailRoomSchema: z.ZodObject<{
8596
8596
  contactId: string;
8597
8597
  isNewContact: boolean;
8598
8598
  };
8599
- };
8599
+ }[];
8600
8600
  to: {
8601
8601
  id: string;
8602
8602
  createdAt: Date;
@@ -8765,7 +8765,7 @@ export declare const MailRoomSchema: z.ZodObject<{
8765
8765
  contactId: string;
8766
8766
  isNewContact: boolean;
8767
8767
  };
8768
- };
8768
+ }[];
8769
8769
  to: {
8770
8770
  id: string;
8771
8771
  createdAt: Date;