@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
@@ -786,7 +786,7 @@ export declare const roomContract: {
786
786
  sendAt: z.ZodDate;
787
787
  starred: z.ZodBoolean;
788
788
  seemsLikeNew: z.ZodBoolean;
789
- from: z.ZodObject<{
789
+ from: z.ZodArray<z.ZodObject<{
790
790
  id: z.ZodString;
791
791
  createdAt: z.ZodDate;
792
792
  updatedAt: z.ZodDate;
@@ -940,7 +940,7 @@ export declare const roomContract: {
940
940
  contactId: string;
941
941
  isNewContact: boolean;
942
942
  };
943
- }>;
943
+ }>, "many">;
944
944
  to: z.ZodArray<z.ZodObject<{
945
945
  id: z.ZodString;
946
946
  createdAt: z.ZodDate;
@@ -1548,7 +1548,7 @@ export declare const roomContract: {
1548
1548
  contactId: string;
1549
1549
  isNewContact: boolean;
1550
1550
  };
1551
- };
1551
+ }[];
1552
1552
  to: {
1553
1553
  id: string;
1554
1554
  createdAt: Date;
@@ -1716,7 +1716,7 @@ export declare const roomContract: {
1716
1716
  contactId: string;
1717
1717
  isNewContact: boolean;
1718
1718
  };
1719
- };
1719
+ }[];
1720
1720
  to: {
1721
1721
  id: string;
1722
1722
  createdAt: Date;
@@ -1855,7 +1855,7 @@ export declare const roomContract: {
1855
1855
  sendAt: z.ZodDate;
1856
1856
  starred: z.ZodBoolean;
1857
1857
  seemsLikeNew: z.ZodBoolean;
1858
- from: z.ZodObject<{
1858
+ from: z.ZodArray<z.ZodObject<{
1859
1859
  id: z.ZodString;
1860
1860
  createdAt: z.ZodDate;
1861
1861
  updatedAt: z.ZodDate;
@@ -2009,7 +2009,7 @@ export declare const roomContract: {
2009
2009
  contactId: string;
2010
2010
  isNewContact: boolean;
2011
2011
  };
2012
- }>;
2012
+ }>, "many">;
2013
2013
  to: z.ZodArray<z.ZodObject<{
2014
2014
  id: z.ZodString;
2015
2015
  createdAt: z.ZodDate;
@@ -2617,7 +2617,7 @@ export declare const roomContract: {
2617
2617
  contactId: string;
2618
2618
  isNewContact: boolean;
2619
2619
  };
2620
- };
2620
+ }[];
2621
2621
  to: {
2622
2622
  id: string;
2623
2623
  createdAt: Date;
@@ -2785,7 +2785,7 @@ export declare const roomContract: {
2785
2785
  contactId: string;
2786
2786
  isNewContact: boolean;
2787
2787
  };
2788
- };
2788
+ }[];
2789
2789
  to: {
2790
2790
  id: string;
2791
2791
  createdAt: Date;
@@ -2977,7 +2977,7 @@ export declare const roomContract: {
2977
2977
  sendAt: z.ZodDate;
2978
2978
  starred: z.ZodBoolean;
2979
2979
  seemsLikeNew: z.ZodBoolean;
2980
- from: z.ZodObject<{
2980
+ from: z.ZodArray<z.ZodObject<{
2981
2981
  id: z.ZodString;
2982
2982
  createdAt: z.ZodDate;
2983
2983
  updatedAt: z.ZodDate;
@@ -3131,7 +3131,7 @@ export declare const roomContract: {
3131
3131
  contactId: string;
3132
3132
  isNewContact: boolean;
3133
3133
  };
3134
- }>;
3134
+ }>, "many">;
3135
3135
  to: z.ZodArray<z.ZodObject<{
3136
3136
  id: z.ZodString;
3137
3137
  createdAt: z.ZodDate;
@@ -3739,7 +3739,7 @@ export declare const roomContract: {
3739
3739
  contactId: string;
3740
3740
  isNewContact: boolean;
3741
3741
  };
3742
- };
3742
+ }[];
3743
3743
  to: {
3744
3744
  id: string;
3745
3745
  createdAt: Date;
@@ -3907,7 +3907,7 @@ export declare const roomContract: {
3907
3907
  contactId: string;
3908
3908
  isNewContact: boolean;
3909
3909
  };
3910
- };
3910
+ }[];
3911
3911
  to: {
3912
3912
  id: string;
3913
3913
  createdAt: Date;
@@ -4046,7 +4046,7 @@ export declare const roomContract: {
4046
4046
  sendAt: z.ZodDate;
4047
4047
  starred: z.ZodBoolean;
4048
4048
  seemsLikeNew: z.ZodBoolean;
4049
- from: z.ZodObject<{
4049
+ from: z.ZodArray<z.ZodObject<{
4050
4050
  id: z.ZodString;
4051
4051
  createdAt: z.ZodDate;
4052
4052
  updatedAt: z.ZodDate;
@@ -4200,7 +4200,7 @@ export declare const roomContract: {
4200
4200
  contactId: string;
4201
4201
  isNewContact: boolean;
4202
4202
  };
4203
- }>;
4203
+ }>, "many">;
4204
4204
  to: z.ZodArray<z.ZodObject<{
4205
4205
  id: z.ZodString;
4206
4206
  createdAt: z.ZodDate;
@@ -4808,7 +4808,7 @@ export declare const roomContract: {
4808
4808
  contactId: string;
4809
4809
  isNewContact: boolean;
4810
4810
  };
4811
- };
4811
+ }[];
4812
4812
  to: {
4813
4813
  id: string;
4814
4814
  createdAt: Date;
@@ -4976,7 +4976,7 @@ export declare const roomContract: {
4976
4976
  contactId: string;
4977
4977
  isNewContact: boolean;
4978
4978
  };
4979
- };
4979
+ }[];
4980
4980
  to: {
4981
4981
  id: string;
4982
4982
  createdAt: Date;
@@ -5761,7 +5761,7 @@ export declare const roomContract: {
5761
5761
  contactId: string;
5762
5762
  isNewContact: boolean;
5763
5763
  };
5764
- };
5764
+ }[];
5765
5765
  to: {
5766
5766
  id: string;
5767
5767
  createdAt: Date;
@@ -6140,7 +6140,7 @@ export declare const roomContract: {
6140
6140
  contactId: string;
6141
6141
  isNewContact: boolean;
6142
6142
  };
6143
- };
6143
+ }[];
6144
6144
  to: {
6145
6145
  id: string;
6146
6146
  createdAt: Date;
@@ -6309,7 +6309,7 @@ export declare const roomContract: {
6309
6309
  contactId: string;
6310
6310
  isNewContact: boolean;
6311
6311
  };
6312
- };
6312
+ }[];
6313
6313
  to: {
6314
6314
  id: string;
6315
6315
  createdAt: Date;
@@ -6478,7 +6478,7 @@ export declare const roomContract: {
6478
6478
  contactId: string;
6479
6479
  isNewContact: boolean;
6480
6480
  };
6481
- };
6481
+ }[];
6482
6482
  to: {
6483
6483
  id: string;
6484
6484
  createdAt: Date;
@@ -6708,7 +6708,7 @@ export declare const roomContract: {
6708
6708
  contactId: string;
6709
6709
  isNewContact: boolean;
6710
6710
  };
6711
- };
6711
+ }[];
6712
6712
  to: {
6713
6713
  id: string;
6714
6714
  createdAt: Date;
@@ -7087,7 +7087,7 @@ export declare const roomContract: {
7087
7087
  contactId: string;
7088
7088
  isNewContact: boolean;
7089
7089
  };
7090
- };
7090
+ }[];
7091
7091
  to: {
7092
7092
  id: string;
7093
7093
  createdAt: Date;
@@ -7256,7 +7256,7 @@ export declare const roomContract: {
7256
7256
  contactId: string;
7257
7257
  isNewContact: boolean;
7258
7258
  };
7259
- };
7259
+ }[];
7260
7260
  to: {
7261
7261
  id: string;
7262
7262
  createdAt: Date;
@@ -7425,7 +7425,7 @@ export declare const roomContract: {
7425
7425
  contactId: string;
7426
7426
  isNewContact: boolean;
7427
7427
  };
7428
- };
7428
+ }[];
7429
7429
  to: {
7430
7430
  id: string;
7431
7431
  createdAt: Date;
@@ -7660,7 +7660,7 @@ export declare const roomContract: {
7660
7660
  contactId: string;
7661
7661
  isNewContact: boolean;
7662
7662
  };
7663
- };
7663
+ }[];
7664
7664
  to: {
7665
7665
  id: string;
7666
7666
  createdAt: Date;
@@ -8039,7 +8039,7 @@ export declare const roomContract: {
8039
8039
  contactId: string;
8040
8040
  isNewContact: boolean;
8041
8041
  };
8042
- };
8042
+ }[];
8043
8043
  to: {
8044
8044
  id: string;
8045
8045
  createdAt: Date;
@@ -8208,7 +8208,7 @@ export declare const roomContract: {
8208
8208
  contactId: string;
8209
8209
  isNewContact: boolean;
8210
8210
  };
8211
- };
8211
+ }[];
8212
8212
  to: {
8213
8213
  id: string;
8214
8214
  createdAt: Date;
@@ -8377,7 +8377,7 @@ export declare const roomContract: {
8377
8377
  contactId: string;
8378
8378
  isNewContact: boolean;
8379
8379
  };
8380
- };
8380
+ }[];
8381
8381
  to: {
8382
8382
  id: string;
8383
8383
  createdAt: Date;
@@ -8613,7 +8613,7 @@ export declare const roomContract: {
8613
8613
  contactId: string;
8614
8614
  isNewContact: boolean;
8615
8615
  };
8616
- };
8616
+ }[];
8617
8617
  to: {
8618
8618
  id: string;
8619
8619
  createdAt: Date;
@@ -8992,7 +8992,7 @@ export declare const roomContract: {
8992
8992
  contactId: string;
8993
8993
  isNewContact: boolean;
8994
8994
  };
8995
- };
8995
+ }[];
8996
8996
  to: {
8997
8997
  id: string;
8998
8998
  createdAt: Date;
@@ -9161,7 +9161,7 @@ export declare const roomContract: {
9161
9161
  contactId: string;
9162
9162
  isNewContact: boolean;
9163
9163
  };
9164
- };
9164
+ }[];
9165
9165
  to: {
9166
9166
  id: string;
9167
9167
  createdAt: Date;
@@ -9330,7 +9330,7 @@ export declare const roomContract: {
9330
9330
  contactId: string;
9331
9331
  isNewContact: boolean;
9332
9332
  };
9333
- };
9333
+ }[];
9334
9334
  to: {
9335
9335
  id: string;
9336
9336
  createdAt: Date;
@@ -11165,7 +11165,7 @@ export declare const roomContract: {
11165
11165
  sendAt: z.ZodDate;
11166
11166
  starred: z.ZodBoolean;
11167
11167
  seemsLikeNew: z.ZodBoolean;
11168
- from: z.ZodObject<{
11168
+ from: z.ZodArray<z.ZodObject<{
11169
11169
  id: z.ZodString;
11170
11170
  createdAt: z.ZodDate;
11171
11171
  updatedAt: z.ZodDate;
@@ -11319,7 +11319,7 @@ export declare const roomContract: {
11319
11319
  contactId: string;
11320
11320
  isNewContact: boolean;
11321
11321
  };
11322
- }>;
11322
+ }>, "many">;
11323
11323
  to: z.ZodArray<z.ZodObject<{
11324
11324
  id: z.ZodString;
11325
11325
  createdAt: z.ZodDate;
@@ -11927,7 +11927,7 @@ export declare const roomContract: {
11927
11927
  contactId: string;
11928
11928
  isNewContact: boolean;
11929
11929
  };
11930
- };
11930
+ }[];
11931
11931
  to: {
11932
11932
  id: string;
11933
11933
  createdAt: Date;
@@ -12095,7 +12095,7 @@ export declare const roomContract: {
12095
12095
  contactId: string;
12096
12096
  isNewContact: boolean;
12097
12097
  };
12098
- };
12098
+ }[];
12099
12099
  to: {
12100
12100
  id: string;
12101
12101
  createdAt: Date;
@@ -12234,7 +12234,7 @@ export declare const roomContract: {
12234
12234
  sendAt: z.ZodDate;
12235
12235
  starred: z.ZodBoolean;
12236
12236
  seemsLikeNew: z.ZodBoolean;
12237
- from: z.ZodObject<{
12237
+ from: z.ZodArray<z.ZodObject<{
12238
12238
  id: z.ZodString;
12239
12239
  createdAt: z.ZodDate;
12240
12240
  updatedAt: z.ZodDate;
@@ -12388,7 +12388,7 @@ export declare const roomContract: {
12388
12388
  contactId: string;
12389
12389
  isNewContact: boolean;
12390
12390
  };
12391
- }>;
12391
+ }>, "many">;
12392
12392
  to: z.ZodArray<z.ZodObject<{
12393
12393
  id: z.ZodString;
12394
12394
  createdAt: z.ZodDate;
@@ -12996,7 +12996,7 @@ export declare const roomContract: {
12996
12996
  contactId: string;
12997
12997
  isNewContact: boolean;
12998
12998
  };
12999
- };
12999
+ }[];
13000
13000
  to: {
13001
13001
  id: string;
13002
13002
  createdAt: Date;
@@ -13164,7 +13164,7 @@ export declare const roomContract: {
13164
13164
  contactId: string;
13165
13165
  isNewContact: boolean;
13166
13166
  };
13167
- };
13167
+ }[];
13168
13168
  to: {
13169
13169
  id: string;
13170
13170
  createdAt: Date;
@@ -13356,7 +13356,7 @@ export declare const roomContract: {
13356
13356
  sendAt: z.ZodDate;
13357
13357
  starred: z.ZodBoolean;
13358
13358
  seemsLikeNew: z.ZodBoolean;
13359
- from: z.ZodObject<{
13359
+ from: z.ZodArray<z.ZodObject<{
13360
13360
  id: z.ZodString;
13361
13361
  createdAt: z.ZodDate;
13362
13362
  updatedAt: z.ZodDate;
@@ -13510,7 +13510,7 @@ export declare const roomContract: {
13510
13510
  contactId: string;
13511
13511
  isNewContact: boolean;
13512
13512
  };
13513
- }>;
13513
+ }>, "many">;
13514
13514
  to: z.ZodArray<z.ZodObject<{
13515
13515
  id: z.ZodString;
13516
13516
  createdAt: z.ZodDate;
@@ -14118,7 +14118,7 @@ export declare const roomContract: {
14118
14118
  contactId: string;
14119
14119
  isNewContact: boolean;
14120
14120
  };
14121
- };
14121
+ }[];
14122
14122
  to: {
14123
14123
  id: string;
14124
14124
  createdAt: Date;
@@ -14286,7 +14286,7 @@ export declare const roomContract: {
14286
14286
  contactId: string;
14287
14287
  isNewContact: boolean;
14288
14288
  };
14289
- };
14289
+ }[];
14290
14290
  to: {
14291
14291
  id: string;
14292
14292
  createdAt: Date;
@@ -14425,7 +14425,7 @@ export declare const roomContract: {
14425
14425
  sendAt: z.ZodDate;
14426
14426
  starred: z.ZodBoolean;
14427
14427
  seemsLikeNew: z.ZodBoolean;
14428
- from: z.ZodObject<{
14428
+ from: z.ZodArray<z.ZodObject<{
14429
14429
  id: z.ZodString;
14430
14430
  createdAt: z.ZodDate;
14431
14431
  updatedAt: z.ZodDate;
@@ -14579,7 +14579,7 @@ export declare const roomContract: {
14579
14579
  contactId: string;
14580
14580
  isNewContact: boolean;
14581
14581
  };
14582
- }>;
14582
+ }>, "many">;
14583
14583
  to: z.ZodArray<z.ZodObject<{
14584
14584
  id: z.ZodString;
14585
14585
  createdAt: z.ZodDate;
@@ -15187,7 +15187,7 @@ export declare const roomContract: {
15187
15187
  contactId: string;
15188
15188
  isNewContact: boolean;
15189
15189
  };
15190
- };
15190
+ }[];
15191
15191
  to: {
15192
15192
  id: string;
15193
15193
  createdAt: Date;
@@ -15355,7 +15355,7 @@ export declare const roomContract: {
15355
15355
  contactId: string;
15356
15356
  isNewContact: boolean;
15357
15357
  };
15358
- };
15358
+ }[];
15359
15359
  to: {
15360
15360
  id: string;
15361
15361
  createdAt: Date;
@@ -16140,7 +16140,7 @@ export declare const roomContract: {
16140
16140
  contactId: string;
16141
16141
  isNewContact: boolean;
16142
16142
  };
16143
- };
16143
+ }[];
16144
16144
  to: {
16145
16145
  id: string;
16146
16146
  createdAt: Date;
@@ -16519,7 +16519,7 @@ export declare const roomContract: {
16519
16519
  contactId: string;
16520
16520
  isNewContact: boolean;
16521
16521
  };
16522
- };
16522
+ }[];
16523
16523
  to: {
16524
16524
  id: string;
16525
16525
  createdAt: Date;
@@ -16688,7 +16688,7 @@ export declare const roomContract: {
16688
16688
  contactId: string;
16689
16689
  isNewContact: boolean;
16690
16690
  };
16691
- };
16691
+ }[];
16692
16692
  to: {
16693
16693
  id: string;
16694
16694
  createdAt: Date;
@@ -16857,7 +16857,7 @@ export declare const roomContract: {
16857
16857
  contactId: string;
16858
16858
  isNewContact: boolean;
16859
16859
  };
16860
- };
16860
+ }[];
16861
16861
  to: {
16862
16862
  id: string;
16863
16863
  createdAt: Date;
@@ -17087,7 +17087,7 @@ export declare const roomContract: {
17087
17087
  contactId: string;
17088
17088
  isNewContact: boolean;
17089
17089
  };
17090
- };
17090
+ }[];
17091
17091
  to: {
17092
17092
  id: string;
17093
17093
  createdAt: Date;
@@ -17466,7 +17466,7 @@ export declare const roomContract: {
17466
17466
  contactId: string;
17467
17467
  isNewContact: boolean;
17468
17468
  };
17469
- };
17469
+ }[];
17470
17470
  to: {
17471
17471
  id: string;
17472
17472
  createdAt: Date;
@@ -17635,7 +17635,7 @@ export declare const roomContract: {
17635
17635
  contactId: string;
17636
17636
  isNewContact: boolean;
17637
17637
  };
17638
- };
17638
+ }[];
17639
17639
  to: {
17640
17640
  id: string;
17641
17641
  createdAt: Date;
@@ -17804,7 +17804,7 @@ export declare const roomContract: {
17804
17804
  contactId: string;
17805
17805
  isNewContact: boolean;
17806
17806
  };
17807
- };
17807
+ }[];
17808
17808
  to: {
17809
17809
  id: string;
17810
17810
  createdAt: Date;
@@ -18036,7 +18036,7 @@ export declare const roomContract: {
18036
18036
  contactId: string;
18037
18037
  isNewContact: boolean;
18038
18038
  };
18039
- };
18039
+ }[];
18040
18040
  to: {
18041
18041
  id: string;
18042
18042
  createdAt: Date;
@@ -18415,7 +18415,7 @@ export declare const roomContract: {
18415
18415
  contactId: string;
18416
18416
  isNewContact: boolean;
18417
18417
  };
18418
- };
18418
+ }[];
18419
18419
  to: {
18420
18420
  id: string;
18421
18421
  createdAt: Date;
@@ -18584,7 +18584,7 @@ export declare const roomContract: {
18584
18584
  contactId: string;
18585
18585
  isNewContact: boolean;
18586
18586
  };
18587
- };
18587
+ }[];
18588
18588
  to: {
18589
18589
  id: string;
18590
18590
  createdAt: Date;
@@ -18753,7 +18753,7 @@ export declare const roomContract: {
18753
18753
  contactId: string;
18754
18754
  isNewContact: boolean;
18755
18755
  };
18756
- };
18756
+ }[];
18757
18757
  to: {
18758
18758
  id: string;
18759
18759
  createdAt: Date;
@@ -18986,7 +18986,7 @@ export declare const roomContract: {
18986
18986
  contactId: string;
18987
18987
  isNewContact: boolean;
18988
18988
  };
18989
- };
18989
+ }[];
18990
18990
  to: {
18991
18991
  id: string;
18992
18992
  createdAt: Date;
@@ -19365,7 +19365,7 @@ export declare const roomContract: {
19365
19365
  contactId: string;
19366
19366
  isNewContact: boolean;
19367
19367
  };
19368
- };
19368
+ }[];
19369
19369
  to: {
19370
19370
  id: string;
19371
19371
  createdAt: Date;
@@ -19534,7 +19534,7 @@ export declare const roomContract: {
19534
19534
  contactId: string;
19535
19535
  isNewContact: boolean;
19536
19536
  };
19537
- };
19537
+ }[];
19538
19538
  to: {
19539
19539
  id: string;
19540
19540
  createdAt: Date;
@@ -19703,7 +19703,7 @@ export declare const roomContract: {
19703
19703
  contactId: string;
19704
19704
  isNewContact: boolean;
19705
19705
  };
19706
- };
19706
+ }[];
19707
19707
  to: {
19708
19708
  id: string;
19709
19709
  createdAt: Date;
@@ -20624,7 +20624,7 @@ export declare const roomContract: {
20624
20624
  sendAt: z.ZodDate;
20625
20625
  starred: z.ZodBoolean;
20626
20626
  seemsLikeNew: z.ZodBoolean;
20627
- from: z.ZodObject<{
20627
+ from: z.ZodArray<z.ZodObject<{
20628
20628
  id: z.ZodString;
20629
20629
  createdAt: z.ZodDate;
20630
20630
  updatedAt: z.ZodDate;
@@ -20778,7 +20778,7 @@ export declare const roomContract: {
20778
20778
  contactId: string;
20779
20779
  isNewContact: boolean;
20780
20780
  };
20781
- }>;
20781
+ }>, "many">;
20782
20782
  to: z.ZodArray<z.ZodObject<{
20783
20783
  id: z.ZodString;
20784
20784
  createdAt: z.ZodDate;
@@ -21386,7 +21386,7 @@ export declare const roomContract: {
21386
21386
  contactId: string;
21387
21387
  isNewContact: boolean;
21388
21388
  };
21389
- };
21389
+ }[];
21390
21390
  to: {
21391
21391
  id: string;
21392
21392
  createdAt: Date;
@@ -21554,7 +21554,7 @@ export declare const roomContract: {
21554
21554
  contactId: string;
21555
21555
  isNewContact: boolean;
21556
21556
  };
21557
- };
21557
+ }[];
21558
21558
  to: {
21559
21559
  id: string;
21560
21560
  createdAt: Date;
@@ -21693,7 +21693,7 @@ export declare const roomContract: {
21693
21693
  sendAt: z.ZodDate;
21694
21694
  starred: z.ZodBoolean;
21695
21695
  seemsLikeNew: z.ZodBoolean;
21696
- from: z.ZodObject<{
21696
+ from: z.ZodArray<z.ZodObject<{
21697
21697
  id: z.ZodString;
21698
21698
  createdAt: z.ZodDate;
21699
21699
  updatedAt: z.ZodDate;
@@ -21847,7 +21847,7 @@ export declare const roomContract: {
21847
21847
  contactId: string;
21848
21848
  isNewContact: boolean;
21849
21849
  };
21850
- }>;
21850
+ }>, "many">;
21851
21851
  to: z.ZodArray<z.ZodObject<{
21852
21852
  id: z.ZodString;
21853
21853
  createdAt: z.ZodDate;
@@ -22455,7 +22455,7 @@ export declare const roomContract: {
22455
22455
  contactId: string;
22456
22456
  isNewContact: boolean;
22457
22457
  };
22458
- };
22458
+ }[];
22459
22459
  to: {
22460
22460
  id: string;
22461
22461
  createdAt: Date;
@@ -22623,7 +22623,7 @@ export declare const roomContract: {
22623
22623
  contactId: string;
22624
22624
  isNewContact: boolean;
22625
22625
  };
22626
- };
22626
+ }[];
22627
22627
  to: {
22628
22628
  id: string;
22629
22629
  createdAt: Date;
@@ -22815,7 +22815,7 @@ export declare const roomContract: {
22815
22815
  sendAt: z.ZodDate;
22816
22816
  starred: z.ZodBoolean;
22817
22817
  seemsLikeNew: z.ZodBoolean;
22818
- from: z.ZodObject<{
22818
+ from: z.ZodArray<z.ZodObject<{
22819
22819
  id: z.ZodString;
22820
22820
  createdAt: z.ZodDate;
22821
22821
  updatedAt: z.ZodDate;
@@ -22969,7 +22969,7 @@ export declare const roomContract: {
22969
22969
  contactId: string;
22970
22970
  isNewContact: boolean;
22971
22971
  };
22972
- }>;
22972
+ }>, "many">;
22973
22973
  to: z.ZodArray<z.ZodObject<{
22974
22974
  id: z.ZodString;
22975
22975
  createdAt: z.ZodDate;
@@ -23577,7 +23577,7 @@ export declare const roomContract: {
23577
23577
  contactId: string;
23578
23578
  isNewContact: boolean;
23579
23579
  };
23580
- };
23580
+ }[];
23581
23581
  to: {
23582
23582
  id: string;
23583
23583
  createdAt: Date;
@@ -23745,7 +23745,7 @@ export declare const roomContract: {
23745
23745
  contactId: string;
23746
23746
  isNewContact: boolean;
23747
23747
  };
23748
- };
23748
+ }[];
23749
23749
  to: {
23750
23750
  id: string;
23751
23751
  createdAt: Date;
@@ -23884,7 +23884,7 @@ export declare const roomContract: {
23884
23884
  sendAt: z.ZodDate;
23885
23885
  starred: z.ZodBoolean;
23886
23886
  seemsLikeNew: z.ZodBoolean;
23887
- from: z.ZodObject<{
23887
+ from: z.ZodArray<z.ZodObject<{
23888
23888
  id: z.ZodString;
23889
23889
  createdAt: z.ZodDate;
23890
23890
  updatedAt: z.ZodDate;
@@ -24038,7 +24038,7 @@ export declare const roomContract: {
24038
24038
  contactId: string;
24039
24039
  isNewContact: boolean;
24040
24040
  };
24041
- }>;
24041
+ }>, "many">;
24042
24042
  to: z.ZodArray<z.ZodObject<{
24043
24043
  id: z.ZodString;
24044
24044
  createdAt: z.ZodDate;
@@ -24646,7 +24646,7 @@ export declare const roomContract: {
24646
24646
  contactId: string;
24647
24647
  isNewContact: boolean;
24648
24648
  };
24649
- };
24649
+ }[];
24650
24650
  to: {
24651
24651
  id: string;
24652
24652
  createdAt: Date;
@@ -24814,7 +24814,7 @@ export declare const roomContract: {
24814
24814
  contactId: string;
24815
24815
  isNewContact: boolean;
24816
24816
  };
24817
- };
24817
+ }[];
24818
24818
  to: {
24819
24819
  id: string;
24820
24820
  createdAt: Date;
@@ -25599,7 +25599,7 @@ export declare const roomContract: {
25599
25599
  contactId: string;
25600
25600
  isNewContact: boolean;
25601
25601
  };
25602
- };
25602
+ }[];
25603
25603
  to: {
25604
25604
  id: string;
25605
25605
  createdAt: Date;
@@ -25978,7 +25978,7 @@ export declare const roomContract: {
25978
25978
  contactId: string;
25979
25979
  isNewContact: boolean;
25980
25980
  };
25981
- };
25981
+ }[];
25982
25982
  to: {
25983
25983
  id: string;
25984
25984
  createdAt: Date;
@@ -26147,7 +26147,7 @@ export declare const roomContract: {
26147
26147
  contactId: string;
26148
26148
  isNewContact: boolean;
26149
26149
  };
26150
- };
26150
+ }[];
26151
26151
  to: {
26152
26152
  id: string;
26153
26153
  createdAt: Date;
@@ -26316,7 +26316,7 @@ export declare const roomContract: {
26316
26316
  contactId: string;
26317
26317
  isNewContact: boolean;
26318
26318
  };
26319
- };
26319
+ }[];
26320
26320
  to: {
26321
26321
  id: string;
26322
26322
  createdAt: Date;
@@ -26546,7 +26546,7 @@ export declare const roomContract: {
26546
26546
  contactId: string;
26547
26547
  isNewContact: boolean;
26548
26548
  };
26549
- };
26549
+ }[];
26550
26550
  to: {
26551
26551
  id: string;
26552
26552
  createdAt: Date;
@@ -26925,7 +26925,7 @@ export declare const roomContract: {
26925
26925
  contactId: string;
26926
26926
  isNewContact: boolean;
26927
26927
  };
26928
- };
26928
+ }[];
26929
26929
  to: {
26930
26930
  id: string;
26931
26931
  createdAt: Date;
@@ -27094,7 +27094,7 @@ export declare const roomContract: {
27094
27094
  contactId: string;
27095
27095
  isNewContact: boolean;
27096
27096
  };
27097
- };
27097
+ }[];
27098
27098
  to: {
27099
27099
  id: string;
27100
27100
  createdAt: Date;
@@ -27263,7 +27263,7 @@ export declare const roomContract: {
27263
27263
  contactId: string;
27264
27264
  isNewContact: boolean;
27265
27265
  };
27266
- };
27266
+ }[];
27267
27267
  to: {
27268
27268
  id: string;
27269
27269
  createdAt: Date;
@@ -27495,7 +27495,7 @@ export declare const roomContract: {
27495
27495
  contactId: string;
27496
27496
  isNewContact: boolean;
27497
27497
  };
27498
- };
27498
+ }[];
27499
27499
  to: {
27500
27500
  id: string;
27501
27501
  createdAt: Date;
@@ -27874,7 +27874,7 @@ export declare const roomContract: {
27874
27874
  contactId: string;
27875
27875
  isNewContact: boolean;
27876
27876
  };
27877
- };
27877
+ }[];
27878
27878
  to: {
27879
27879
  id: string;
27880
27880
  createdAt: Date;
@@ -28043,7 +28043,7 @@ export declare const roomContract: {
28043
28043
  contactId: string;
28044
28044
  isNewContact: boolean;
28045
28045
  };
28046
- };
28046
+ }[];
28047
28047
  to: {
28048
28048
  id: string;
28049
28049
  createdAt: Date;
@@ -28212,7 +28212,7 @@ export declare const roomContract: {
28212
28212
  contactId: string;
28213
28213
  isNewContact: boolean;
28214
28214
  };
28215
- };
28215
+ }[];
28216
28216
  to: {
28217
28217
  id: string;
28218
28218
  createdAt: Date;
@@ -28445,7 +28445,7 @@ export declare const roomContract: {
28445
28445
  contactId: string;
28446
28446
  isNewContact: boolean;
28447
28447
  };
28448
- };
28448
+ }[];
28449
28449
  to: {
28450
28450
  id: string;
28451
28451
  createdAt: Date;
@@ -28824,7 +28824,7 @@ export declare const roomContract: {
28824
28824
  contactId: string;
28825
28825
  isNewContact: boolean;
28826
28826
  };
28827
- };
28827
+ }[];
28828
28828
  to: {
28829
28829
  id: string;
28830
28830
  createdAt: Date;
@@ -28993,7 +28993,7 @@ export declare const roomContract: {
28993
28993
  contactId: string;
28994
28994
  isNewContact: boolean;
28995
28995
  };
28996
- };
28996
+ }[];
28997
28997
  to: {
28998
28998
  id: string;
28999
28999
  createdAt: Date;
@@ -29162,7 +29162,7 @@ export declare const roomContract: {
29162
29162
  contactId: string;
29163
29163
  isNewContact: boolean;
29164
29164
  };
29165
- };
29165
+ }[];
29166
29166
  to: {
29167
29167
  id: string;
29168
29168
  createdAt: Date;