@kl1/contracts 1.0.44 → 1.0.46

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 (47) hide show
  1. package/dist/index.js +117 -33
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +117 -33
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +193 -0
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +44 -0
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +48 -0
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/comment/index.d.ts +1540 -150
  12. package/dist/src/comment/index.d.ts.map +1 -1
  13. package/dist/src/comment/schema.d.ts +424 -22
  14. package/dist/src/comment/schema.d.ts.map +1 -1
  15. package/dist/src/contact/index.d.ts +77 -0
  16. package/dist/src/contact/index.d.ts.map +1 -1
  17. package/dist/src/contact/schema.d.ts +16 -0
  18. package/dist/src/contact/schema.d.ts.map +1 -1
  19. package/dist/src/contact/validation.d.ts +63 -0
  20. package/dist/src/contact/validation.d.ts.map +1 -1
  21. package/dist/src/contract.d.ts +5278 -695
  22. package/dist/src/contract.d.ts.map +1 -1
  23. package/dist/src/cx-log/index.d.ts +54 -0
  24. package/dist/src/cx-log/index.d.ts.map +1 -1
  25. package/dist/src/cx-log/schema.d.ts +46 -0
  26. package/dist/src/cx-log/schema.d.ts.map +1 -1
  27. package/dist/src/mail/mail-contract.d.ts +7 -0
  28. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  29. package/dist/src/mail/room-contract.d.ts +7 -0
  30. package/dist/src/mail/room-contract.d.ts.map +1 -1
  31. package/dist/src/mail/schemas/room.schema.d.ts +5 -0
  32. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  33. package/dist/src/messenger/index.d.ts +24 -0
  34. package/dist/src/messenger/index.d.ts.map +1 -1
  35. package/dist/src/telephony-cdr/call-report.schema.d.ts +334 -1
  36. package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
  37. package/dist/src/telephony-cdr/index.d.ts +714 -1
  38. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  39. package/dist/src/telephony-cdr/schema.d.ts +698 -0
  40. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  41. package/dist/src/ticket/index.d.ts +2338 -171
  42. package/dist/src/ticket/index.d.ts.map +1 -1
  43. package/dist/src/ticket/schema.d.ts +327 -12
  44. package/dist/src/ticket/schema.d.ts.map +1 -1
  45. package/dist/src/upload/schema.d.ts +3 -0
  46. package/dist/src/upload/schema.d.ts.map +1 -1
  47. package/package.json +1 -1
@@ -364,6 +364,7 @@ export declare const receiveMessageContract: {
364
364
  fileSize: z.ZodNumber;
365
365
  fileKey: z.ZodString;
366
366
  fileUrl: z.ZodNullable<z.ZodString>;
367
+ status: z.ZodOptional<z.ZodString>;
367
368
  }, "strip", z.ZodTypeAny, {
368
369
  id: string;
369
370
  createdAt: Date;
@@ -374,6 +375,7 @@ export declare const receiveMessageContract: {
374
375
  bucketName: string;
375
376
  fileSize: number;
376
377
  fileUrl: string | null;
378
+ status?: string | undefined;
377
379
  }, {
378
380
  id: string;
379
381
  createdAt: Date;
@@ -384,6 +386,7 @@ export declare const receiveMessageContract: {
384
386
  bucketName: string;
385
387
  fileSize: number;
386
388
  fileUrl: string | null;
389
+ status?: string | undefined;
387
390
  }>;
388
391
  }, "strip", z.ZodTypeAny, {
389
392
  id: string;
@@ -401,6 +404,7 @@ export declare const receiveMessageContract: {
401
404
  bucketName: string;
402
405
  fileSize: number;
403
406
  fileUrl: string | null;
407
+ status?: string | undefined;
404
408
  };
405
409
  }, {
406
410
  id: string;
@@ -418,6 +422,7 @@ export declare const receiveMessageContract: {
418
422
  bucketName: string;
419
423
  fileSize: number;
420
424
  fileUrl: string | null;
425
+ status?: string | undefined;
421
426
  };
422
427
  }>, "many">;
423
428
  }, "strip", z.ZodTypeAny, {
@@ -459,6 +464,7 @@ export declare const receiveMessageContract: {
459
464
  bucketName: string;
460
465
  fileSize: number;
461
466
  fileUrl: string | null;
467
+ status?: string | undefined;
462
468
  };
463
469
  }[];
464
470
  }, {
@@ -500,6 +506,7 @@ export declare const receiveMessageContract: {
500
506
  bucketName: string;
501
507
  fileSize: number;
502
508
  fileUrl: string | null;
509
+ status?: string | undefined;
503
510
  };
504
511
  }[];
505
512
  }>, "many">;
@@ -654,6 +661,7 @@ export declare const receiveMessageContract: {
654
661
  bucketName: string;
655
662
  fileSize: number;
656
663
  fileUrl: string | null;
664
+ status?: string | undefined;
657
665
  };
658
666
  }[];
659
667
  }[];
@@ -756,6 +764,7 @@ export declare const receiveMessageContract: {
756
764
  bucketName: string;
757
765
  fileSize: number;
758
766
  fileUrl: string | null;
767
+ status?: string | undefined;
759
768
  };
760
769
  }[];
761
770
  }[];
@@ -872,6 +881,7 @@ export declare const receiveMessageContract: {
872
881
  bucketName: string;
873
882
  fileSize: number;
874
883
  fileUrl: string | null;
884
+ status?: string | undefined;
875
885
  };
876
886
  }[];
877
887
  }[];
@@ -989,6 +999,7 @@ export declare const receiveMessageContract: {
989
999
  bucketName: string;
990
1000
  fileSize: number;
991
1001
  fileUrl: string | null;
1002
+ status?: string | undefined;
992
1003
  };
993
1004
  }[];
994
1005
  }[];
@@ -1757,6 +1768,7 @@ export declare const receiveMessageContract: {
1757
1768
  bucketName: string;
1758
1769
  fileSize: number;
1759
1770
  fileUrl: string | null;
1771
+ status?: string | undefined;
1760
1772
  };
1761
1773
  }[];
1762
1774
  }[];
@@ -2029,6 +2041,7 @@ export declare const receiveMessageContract: {
2029
2041
  bucketName: string;
2030
2042
  fileSize: number;
2031
2043
  fileUrl: string | null;
2044
+ status?: string | undefined;
2032
2045
  };
2033
2046
  }[];
2034
2047
  }[];
@@ -2243,6 +2256,7 @@ export declare const receiveMessageContract: {
2243
2256
  fileSize: z.ZodNumber;
2244
2257
  fileKey: z.ZodString;
2245
2258
  fileUrl: z.ZodNullable<z.ZodString>;
2259
+ status: z.ZodOptional<z.ZodString>;
2246
2260
  }, "strip", z.ZodTypeAny, {
2247
2261
  id: string;
2248
2262
  createdAt: Date;
@@ -2253,6 +2267,7 @@ export declare const receiveMessageContract: {
2253
2267
  bucketName: string;
2254
2268
  fileSize: number;
2255
2269
  fileUrl: string | null;
2270
+ status?: string | undefined;
2256
2271
  }, {
2257
2272
  id: string;
2258
2273
  createdAt: Date;
@@ -2263,6 +2278,7 @@ export declare const receiveMessageContract: {
2263
2278
  bucketName: string;
2264
2279
  fileSize: number;
2265
2280
  fileUrl: string | null;
2281
+ status?: string | undefined;
2266
2282
  }>>;
2267
2283
  actor: z.ZodOptional<z.ZodObject<{
2268
2284
  id: z.ZodString;
@@ -2950,6 +2966,7 @@ export declare const receiveMessageContract: {
2950
2966
  bucketName: string;
2951
2967
  fileSize: number;
2952
2968
  fileUrl: string | null;
2969
+ status?: string | undefined;
2953
2970
  };
2954
2971
  }[];
2955
2972
  }[];
@@ -3172,6 +3189,7 @@ export declare const receiveMessageContract: {
3172
3189
  bucketName: string;
3173
3190
  fileSize: number;
3174
3191
  fileUrl: string | null;
3192
+ status?: string | undefined;
3175
3193
  } | undefined;
3176
3194
  actor?: {
3177
3195
  id: string;
@@ -3379,6 +3397,7 @@ export declare const receiveMessageContract: {
3379
3397
  bucketName: string;
3380
3398
  fileSize: number;
3381
3399
  fileUrl: string | null;
3400
+ status?: string | undefined;
3382
3401
  };
3383
3402
  }[];
3384
3403
  }[];
@@ -3601,6 +3620,7 @@ export declare const receiveMessageContract: {
3601
3620
  bucketName: string;
3602
3621
  fileSize: number;
3603
3622
  fileUrl: string | null;
3623
+ status?: string | undefined;
3604
3624
  } | undefined;
3605
3625
  actor?: {
3606
3626
  id: string;
@@ -3810,6 +3830,7 @@ export declare const receiveMessageContract: {
3810
3830
  bucketName: string;
3811
3831
  fileSize: number;
3812
3832
  fileUrl: string | null;
3833
+ status?: string | undefined;
3813
3834
  };
3814
3835
  }[];
3815
3836
  }[];
@@ -4032,6 +4053,7 @@ export declare const receiveMessageContract: {
4032
4053
  bucketName: string;
4033
4054
  fileSize: number;
4034
4055
  fileUrl: string | null;
4056
+ status?: string | undefined;
4035
4057
  } | undefined;
4036
4058
  actor?: {
4037
4059
  id: string;
@@ -4241,6 +4263,7 @@ export declare const receiveMessageContract: {
4241
4263
  bucketName: string;
4242
4264
  fileSize: number;
4243
4265
  fileUrl: string | null;
4266
+ status?: string | undefined;
4244
4267
  };
4245
4268
  }[];
4246
4269
  }[];
@@ -4463,6 +4486,7 @@ export declare const receiveMessageContract: {
4463
4486
  bucketName: string;
4464
4487
  fileSize: number;
4465
4488
  fileUrl: string | null;
4489
+ status?: string | undefined;
4466
4490
  } | undefined;
4467
4491
  actor?: {
4468
4492
  id: string;
@@ -5096,6 +5120,7 @@ export declare const mainChatContract: {
5096
5120
  fileSize: z.ZodNumber;
5097
5121
  fileKey: z.ZodString;
5098
5122
  fileUrl: z.ZodNullable<z.ZodString>;
5123
+ status: z.ZodOptional<z.ZodString>;
5099
5124
  }, "strip", z.ZodTypeAny, {
5100
5125
  id: string;
5101
5126
  createdAt: Date;
@@ -5106,6 +5131,7 @@ export declare const mainChatContract: {
5106
5131
  bucketName: string;
5107
5132
  fileSize: number;
5108
5133
  fileUrl: string | null;
5134
+ status?: string | undefined;
5109
5135
  }, {
5110
5136
  id: string;
5111
5137
  createdAt: Date;
@@ -5116,6 +5142,7 @@ export declare const mainChatContract: {
5116
5142
  bucketName: string;
5117
5143
  fileSize: number;
5118
5144
  fileUrl: string | null;
5145
+ status?: string | undefined;
5119
5146
  }>;
5120
5147
  }, "strip", z.ZodTypeAny, {
5121
5148
  id: string;
@@ -5133,6 +5160,7 @@ export declare const mainChatContract: {
5133
5160
  bucketName: string;
5134
5161
  fileSize: number;
5135
5162
  fileUrl: string | null;
5163
+ status?: string | undefined;
5136
5164
  };
5137
5165
  }, {
5138
5166
  id: string;
@@ -5150,6 +5178,7 @@ export declare const mainChatContract: {
5150
5178
  bucketName: string;
5151
5179
  fileSize: number;
5152
5180
  fileUrl: string | null;
5181
+ status?: string | undefined;
5153
5182
  };
5154
5183
  }>, "many">;
5155
5184
  }, "strip", z.ZodTypeAny, {
@@ -5191,6 +5220,7 @@ export declare const mainChatContract: {
5191
5220
  bucketName: string;
5192
5221
  fileSize: number;
5193
5222
  fileUrl: string | null;
5223
+ status?: string | undefined;
5194
5224
  };
5195
5225
  }[];
5196
5226
  }, {
@@ -5232,6 +5262,7 @@ export declare const mainChatContract: {
5232
5262
  bucketName: string;
5233
5263
  fileSize: number;
5234
5264
  fileUrl: string | null;
5265
+ status?: string | undefined;
5235
5266
  };
5236
5267
  }[];
5237
5268
  }>, "many">;
@@ -5386,6 +5417,7 @@ export declare const mainChatContract: {
5386
5417
  bucketName: string;
5387
5418
  fileSize: number;
5388
5419
  fileUrl: string | null;
5420
+ status?: string | undefined;
5389
5421
  };
5390
5422
  }[];
5391
5423
  }[];
@@ -5488,6 +5520,7 @@ export declare const mainChatContract: {
5488
5520
  bucketName: string;
5489
5521
  fileSize: number;
5490
5522
  fileUrl: string | null;
5523
+ status?: string | undefined;
5491
5524
  };
5492
5525
  }[];
5493
5526
  }[];
@@ -5604,6 +5637,7 @@ export declare const mainChatContract: {
5604
5637
  bucketName: string;
5605
5638
  fileSize: number;
5606
5639
  fileUrl: string | null;
5640
+ status?: string | undefined;
5607
5641
  };
5608
5642
  }[];
5609
5643
  }[];
@@ -5721,6 +5755,7 @@ export declare const mainChatContract: {
5721
5755
  bucketName: string;
5722
5756
  fileSize: number;
5723
5757
  fileUrl: string | null;
5758
+ status?: string | undefined;
5724
5759
  };
5725
5760
  }[];
5726
5761
  }[];
@@ -6811,6 +6846,7 @@ export declare const mainChatContract: {
6811
6846
  bucketName: string;
6812
6847
  fileSize: number;
6813
6848
  fileUrl: string | null;
6849
+ status?: string | undefined;
6814
6850
  };
6815
6851
  }[];
6816
6852
  }[];
@@ -7129,6 +7165,7 @@ export declare const mainChatContract: {
7129
7165
  bucketName: string;
7130
7166
  fileSize: number;
7131
7167
  fileUrl: string | null;
7168
+ status?: string | undefined;
7132
7169
  };
7133
7170
  }[];
7134
7171
  }[];
@@ -7459,6 +7496,7 @@ export declare const mainChatContract: {
7459
7496
  bucketName: string;
7460
7497
  fileSize: number;
7461
7498
  fileUrl: string | null;
7499
+ status?: string | undefined;
7462
7500
  };
7463
7501
  }[];
7464
7502
  }[];
@@ -7787,6 +7825,7 @@ export declare const mainChatContract: {
7787
7825
  bucketName: string;
7788
7826
  fileSize: number;
7789
7827
  fileUrl: string | null;
7828
+ status?: string | undefined;
7790
7829
  };
7791
7830
  }[];
7792
7831
  }[];
@@ -8341,6 +8380,7 @@ export declare const mainChatContract: {
8341
8380
  fileSize: z.ZodNumber;
8342
8381
  fileKey: z.ZodString;
8343
8382
  fileUrl: z.ZodNullable<z.ZodString>;
8383
+ status: z.ZodOptional<z.ZodString>;
8344
8384
  }, "strip", z.ZodTypeAny, {
8345
8385
  id: string;
8346
8386
  createdAt: Date;
@@ -8351,6 +8391,7 @@ export declare const mainChatContract: {
8351
8391
  bucketName: string;
8352
8392
  fileSize: number;
8353
8393
  fileUrl: string | null;
8394
+ status?: string | undefined;
8354
8395
  }, {
8355
8396
  id: string;
8356
8397
  createdAt: Date;
@@ -8361,6 +8402,7 @@ export declare const mainChatContract: {
8361
8402
  bucketName: string;
8362
8403
  fileSize: number;
8363
8404
  fileUrl: string | null;
8405
+ status?: string | undefined;
8364
8406
  }>;
8365
8407
  }, "strip", z.ZodTypeAny, {
8366
8408
  id: string;
@@ -8378,6 +8420,7 @@ export declare const mainChatContract: {
8378
8420
  bucketName: string;
8379
8421
  fileSize: number;
8380
8422
  fileUrl: string | null;
8423
+ status?: string | undefined;
8381
8424
  };
8382
8425
  }, {
8383
8426
  id: string;
@@ -8395,6 +8438,7 @@ export declare const mainChatContract: {
8395
8438
  bucketName: string;
8396
8439
  fileSize: number;
8397
8440
  fileUrl: string | null;
8441
+ status?: string | undefined;
8398
8442
  };
8399
8443
  }>, "many">;
8400
8444
  }, "strip", z.ZodTypeAny, {
@@ -8436,6 +8480,7 @@ export declare const mainChatContract: {
8436
8480
  bucketName: string;
8437
8481
  fileSize: number;
8438
8482
  fileUrl: string | null;
8483
+ status?: string | undefined;
8439
8484
  };
8440
8485
  }[];
8441
8486
  }, {
@@ -8477,6 +8522,7 @@ export declare const mainChatContract: {
8477
8522
  bucketName: string;
8478
8523
  fileSize: number;
8479
8524
  fileUrl: string | null;
8525
+ status?: string | undefined;
8480
8526
  };
8481
8527
  }[];
8482
8528
  }>, "many">;
@@ -8631,6 +8677,7 @@ export declare const mainChatContract: {
8631
8677
  bucketName: string;
8632
8678
  fileSize: number;
8633
8679
  fileUrl: string | null;
8680
+ status?: string | undefined;
8634
8681
  };
8635
8682
  }[];
8636
8683
  }[];
@@ -8733,6 +8780,7 @@ export declare const mainChatContract: {
8733
8780
  bucketName: string;
8734
8781
  fileSize: number;
8735
8782
  fileUrl: string | null;
8783
+ status?: string | undefined;
8736
8784
  };
8737
8785
  }[];
8738
8786
  }[];
@@ -8837,6 +8885,7 @@ export declare const mainChatContract: {
8837
8885
  bucketName: string;
8838
8886
  fileSize: number;
8839
8887
  fileUrl: string | null;
8888
+ status?: string | undefined;
8840
8889
  };
8841
8890
  }[];
8842
8891
  }[];
@@ -8942,6 +8991,7 @@ export declare const mainChatContract: {
8942
8991
  bucketName: string;
8943
8992
  fileSize: number;
8944
8993
  fileUrl: string | null;
8994
+ status?: string | undefined;
8945
8995
  };
8946
8996
  }[];
8947
8997
  }[];
@@ -9406,6 +9456,7 @@ export declare const mainChatContract: {
9406
9456
  fileSize: z.ZodNumber;
9407
9457
  fileKey: z.ZodString;
9408
9458
  fileUrl: z.ZodNullable<z.ZodString>;
9459
+ status: z.ZodOptional<z.ZodString>;
9409
9460
  }, "strip", z.ZodTypeAny, {
9410
9461
  id: string;
9411
9462
  createdAt: Date;
@@ -9416,6 +9467,7 @@ export declare const mainChatContract: {
9416
9467
  bucketName: string;
9417
9468
  fileSize: number;
9418
9469
  fileUrl: string | null;
9470
+ status?: string | undefined;
9419
9471
  }, {
9420
9472
  id: string;
9421
9473
  createdAt: Date;
@@ -9426,6 +9478,7 @@ export declare const mainChatContract: {
9426
9478
  bucketName: string;
9427
9479
  fileSize: number;
9428
9480
  fileUrl: string | null;
9481
+ status?: string | undefined;
9429
9482
  }>;
9430
9483
  }, "strip", z.ZodTypeAny, {
9431
9484
  id: string;
@@ -9443,6 +9496,7 @@ export declare const mainChatContract: {
9443
9496
  bucketName: string;
9444
9497
  fileSize: number;
9445
9498
  fileUrl: string | null;
9499
+ status?: string | undefined;
9446
9500
  };
9447
9501
  }, {
9448
9502
  id: string;
@@ -9460,6 +9514,7 @@ export declare const mainChatContract: {
9460
9514
  bucketName: string;
9461
9515
  fileSize: number;
9462
9516
  fileUrl: string | null;
9517
+ status?: string | undefined;
9463
9518
  };
9464
9519
  }>, "many">;
9465
9520
  }, "strip", z.ZodTypeAny, {
@@ -9501,6 +9556,7 @@ export declare const mainChatContract: {
9501
9556
  bucketName: string;
9502
9557
  fileSize: number;
9503
9558
  fileUrl: string | null;
9559
+ status?: string | undefined;
9504
9560
  };
9505
9561
  }[];
9506
9562
  }, {
@@ -9542,6 +9598,7 @@ export declare const mainChatContract: {
9542
9598
  bucketName: string;
9543
9599
  fileSize: number;
9544
9600
  fileUrl: string | null;
9601
+ status?: string | undefined;
9545
9602
  };
9546
9603
  }[];
9547
9604
  }>, "many">;
@@ -9696,6 +9753,7 @@ export declare const mainChatContract: {
9696
9753
  bucketName: string;
9697
9754
  fileSize: number;
9698
9755
  fileUrl: string | null;
9756
+ status?: string | undefined;
9699
9757
  };
9700
9758
  }[];
9701
9759
  }[];
@@ -9798,6 +9856,7 @@ export declare const mainChatContract: {
9798
9856
  bucketName: string;
9799
9857
  fileSize: number;
9800
9858
  fileUrl: string | null;
9859
+ status?: string | undefined;
9801
9860
  };
9802
9861
  }[];
9803
9862
  }[];
@@ -9914,6 +9973,7 @@ export declare const mainChatContract: {
9914
9973
  bucketName: string;
9915
9974
  fileSize: number;
9916
9975
  fileUrl: string | null;
9976
+ status?: string | undefined;
9917
9977
  };
9918
9978
  }[];
9919
9979
  }[];
@@ -10031,6 +10091,7 @@ export declare const mainChatContract: {
10031
10091
  bucketName: string;
10032
10092
  fileSize: number;
10033
10093
  fileUrl: string | null;
10094
+ status?: string | undefined;
10034
10095
  };
10035
10096
  }[];
10036
10097
  }[];
@@ -11121,6 +11182,7 @@ export declare const mainChatContract: {
11121
11182
  bucketName: string;
11122
11183
  fileSize: number;
11123
11184
  fileUrl: string | null;
11185
+ status?: string | undefined;
11124
11186
  };
11125
11187
  }[];
11126
11188
  }[];
@@ -11439,6 +11501,7 @@ export declare const mainChatContract: {
11439
11501
  bucketName: string;
11440
11502
  fileSize: number;
11441
11503
  fileUrl: string | null;
11504
+ status?: string | undefined;
11442
11505
  };
11443
11506
  }[];
11444
11507
  }[];
@@ -11759,6 +11822,7 @@ export declare const mainChatContract: {
11759
11822
  bucketName: string;
11760
11823
  fileSize: number;
11761
11824
  fileUrl: string | null;
11825
+ status?: string | undefined;
11762
11826
  };
11763
11827
  }[];
11764
11828
  }[];
@@ -12080,6 +12144,7 @@ export declare const mainChatContract: {
12080
12144
  bucketName: string;
12081
12145
  fileSize: number;
12082
12146
  fileUrl: string | null;
12147
+ status?: string | undefined;
12083
12148
  };
12084
12149
  }[];
12085
12150
  }[];
@@ -12673,6 +12738,7 @@ export declare const mainChatContract: {
12673
12738
  summary: "Send message to room";
12674
12739
  method: "POST";
12675
12740
  responses: {
12741
+ 200: null;
12676
12742
  422: z.ZodObject<{
12677
12743
  message: z.ZodString;
12678
12744
  error: z.ZodAny;
@@ -13146,6 +13212,7 @@ export declare const mainChatContract: {
13146
13212
  fileSize: z.ZodNumber;
13147
13213
  fileKey: z.ZodString;
13148
13214
  fileUrl: z.ZodNullable<z.ZodString>;
13215
+ status: z.ZodOptional<z.ZodString>;
13149
13216
  }, "strip", z.ZodTypeAny, {
13150
13217
  id: string;
13151
13218
  createdAt: Date;
@@ -13156,6 +13223,7 @@ export declare const mainChatContract: {
13156
13223
  bucketName: string;
13157
13224
  fileSize: number;
13158
13225
  fileUrl: string | null;
13226
+ status?: string | undefined;
13159
13227
  }, {
13160
13228
  id: string;
13161
13229
  createdAt: Date;
@@ -13166,6 +13234,7 @@ export declare const mainChatContract: {
13166
13234
  bucketName: string;
13167
13235
  fileSize: number;
13168
13236
  fileUrl: string | null;
13237
+ status?: string | undefined;
13169
13238
  }>;
13170
13239
  }, "strip", z.ZodTypeAny, {
13171
13240
  id: string;
@@ -13183,6 +13252,7 @@ export declare const mainChatContract: {
13183
13252
  bucketName: string;
13184
13253
  fileSize: number;
13185
13254
  fileUrl: string | null;
13255
+ status?: string | undefined;
13186
13256
  };
13187
13257
  }, {
13188
13258
  id: string;
@@ -13200,6 +13270,7 @@ export declare const mainChatContract: {
13200
13270
  bucketName: string;
13201
13271
  fileSize: number;
13202
13272
  fileUrl: string | null;
13273
+ status?: string | undefined;
13203
13274
  };
13204
13275
  }>, "many">;
13205
13276
  }, "strip", z.ZodTypeAny, {
@@ -13241,6 +13312,7 @@ export declare const mainChatContract: {
13241
13312
  bucketName: string;
13242
13313
  fileSize: number;
13243
13314
  fileUrl: string | null;
13315
+ status?: string | undefined;
13244
13316
  };
13245
13317
  }[];
13246
13318
  }, {
@@ -13282,6 +13354,7 @@ export declare const mainChatContract: {
13282
13354
  bucketName: string;
13283
13355
  fileSize: number;
13284
13356
  fileUrl: string | null;
13357
+ status?: string | undefined;
13285
13358
  };
13286
13359
  }[];
13287
13360
  }>, "many">;
@@ -13436,6 +13509,7 @@ export declare const mainChatContract: {
13436
13509
  bucketName: string;
13437
13510
  fileSize: number;
13438
13511
  fileUrl: string | null;
13512
+ status?: string | undefined;
13439
13513
  };
13440
13514
  }[];
13441
13515
  }[];
@@ -13538,6 +13612,7 @@ export declare const mainChatContract: {
13538
13612
  bucketName: string;
13539
13613
  fileSize: number;
13540
13614
  fileUrl: string | null;
13615
+ status?: string | undefined;
13541
13616
  };
13542
13617
  }[];
13543
13618
  }[];
@@ -13654,6 +13729,7 @@ export declare const mainChatContract: {
13654
13729
  bucketName: string;
13655
13730
  fileSize: number;
13656
13731
  fileUrl: string | null;
13732
+ status?: string | undefined;
13657
13733
  };
13658
13734
  }[];
13659
13735
  }[];
@@ -13771,6 +13847,7 @@ export declare const mainChatContract: {
13771
13847
  bucketName: string;
13772
13848
  fileSize: number;
13773
13849
  fileUrl: string | null;
13850
+ status?: string | undefined;
13774
13851
  };
13775
13852
  }[];
13776
13853
  }[];
@@ -14861,6 +14938,7 @@ export declare const mainChatContract: {
14861
14938
  bucketName: string;
14862
14939
  fileSize: number;
14863
14940
  fileUrl: string | null;
14941
+ status?: string | undefined;
14864
14942
  };
14865
14943
  }[];
14866
14944
  }[];
@@ -15179,6 +15257,7 @@ export declare const mainChatContract: {
15179
15257
  bucketName: string;
15180
15258
  fileSize: number;
15181
15259
  fileUrl: string | null;
15260
+ status?: string | undefined;
15182
15261
  };
15183
15262
  }[];
15184
15263
  }[];
@@ -15391,6 +15470,7 @@ export declare const mainChatContract: {
15391
15470
  fileSize: z.ZodNumber;
15392
15471
  fileKey: z.ZodString;
15393
15472
  fileUrl: z.ZodNullable<z.ZodString>;
15473
+ status: z.ZodOptional<z.ZodString>;
15394
15474
  }, "strip", z.ZodTypeAny, {
15395
15475
  id: string;
15396
15476
  createdAt: Date;
@@ -15401,6 +15481,7 @@ export declare const mainChatContract: {
15401
15481
  bucketName: string;
15402
15482
  fileSize: number;
15403
15483
  fileUrl: string | null;
15484
+ status?: string | undefined;
15404
15485
  }, {
15405
15486
  id: string;
15406
15487
  createdAt: Date;
@@ -15411,6 +15492,7 @@ export declare const mainChatContract: {
15411
15492
  bucketName: string;
15412
15493
  fileSize: number;
15413
15494
  fileUrl: string | null;
15495
+ status?: string | undefined;
15414
15496
  }>;
15415
15497
  actor: z.ZodObject<{
15416
15498
  id: z.ZodString;
@@ -16088,6 +16170,7 @@ export declare const mainChatContract: {
16088
16170
  bucketName: string;
16089
16171
  fileSize: number;
16090
16172
  fileUrl: string | null;
16173
+ status?: string | undefined;
16091
16174
  };
16092
16175
  assignee: {
16093
16176
  id: string;
@@ -16250,6 +16333,7 @@ export declare const mainChatContract: {
16250
16333
  bucketName: string;
16251
16334
  fileSize: number;
16252
16335
  fileUrl: string | null;
16336
+ status?: string | undefined;
16253
16337
  };
16254
16338
  }[];
16255
16339
  }[];
@@ -16568,6 +16652,7 @@ export declare const mainChatContract: {
16568
16652
  bucketName: string;
16569
16653
  fileSize: number;
16570
16654
  fileUrl: string | null;
16655
+ status?: string | undefined;
16571
16656
  };
16572
16657
  assignee: {
16573
16658
  id: string;
@@ -16730,6 +16815,7 @@ export declare const mainChatContract: {
16730
16815
  bucketName: string;
16731
16816
  fileSize: number;
16732
16817
  fileUrl: string | null;
16818
+ status?: string | undefined;
16733
16819
  };
16734
16820
  }[];
16735
16821
  }[];
@@ -17050,6 +17136,7 @@ export declare const mainChatContract: {
17050
17136
  bucketName: string;
17051
17137
  fileSize: number;
17052
17138
  fileUrl: string | null;
17139
+ status?: string | undefined;
17053
17140
  };
17054
17141
  assignee: {
17055
17142
  id: string;
@@ -17212,6 +17299,7 @@ export declare const mainChatContract: {
17212
17299
  bucketName: string;
17213
17300
  fileSize: number;
17214
17301
  fileUrl: string | null;
17302
+ status?: string | undefined;
17215
17303
  };
17216
17304
  }[];
17217
17305
  }[];
@@ -17536,6 +17624,7 @@ export declare const mainChatContract: {
17536
17624
  bucketName: string;
17537
17625
  fileSize: number;
17538
17626
  fileUrl: string | null;
17627
+ status?: string | undefined;
17539
17628
  };
17540
17629
  assignee: {
17541
17630
  id: string;
@@ -17698,6 +17787,7 @@ export declare const mainChatContract: {
17698
17787
  bucketName: string;
17699
17788
  fileSize: number;
17700
17789
  fileUrl: string | null;
17790
+ status?: string | undefined;
17701
17791
  };
17702
17792
  }[];
17703
17793
  }[];
@@ -18895,6 +18985,7 @@ export declare const mainChatContract: {
18895
18985
  fileSize: z.ZodNumber;
18896
18986
  fileKey: z.ZodString;
18897
18987
  fileUrl: z.ZodNullable<z.ZodString>;
18988
+ status: z.ZodOptional<z.ZodString>;
18898
18989
  }, "strip", z.ZodTypeAny, {
18899
18990
  id: string;
18900
18991
  createdAt: Date;
@@ -18905,6 +18996,7 @@ export declare const mainChatContract: {
18905
18996
  bucketName: string;
18906
18997
  fileSize: number;
18907
18998
  fileUrl: string | null;
18999
+ status?: string | undefined;
18908
19000
  }, {
18909
19001
  id: string;
18910
19002
  createdAt: Date;
@@ -18915,6 +19007,7 @@ export declare const mainChatContract: {
18915
19007
  bucketName: string;
18916
19008
  fileSize: number;
18917
19009
  fileUrl: string | null;
19010
+ status?: string | undefined;
18918
19011
  }>;
18919
19012
  }, "strip", z.ZodTypeAny, {
18920
19013
  id: string;
@@ -18932,6 +19025,7 @@ export declare const mainChatContract: {
18932
19025
  bucketName: string;
18933
19026
  fileSize: number;
18934
19027
  fileUrl: string | null;
19028
+ status?: string | undefined;
18935
19029
  };
18936
19030
  }, {
18937
19031
  id: string;
@@ -18949,6 +19043,7 @@ export declare const mainChatContract: {
18949
19043
  bucketName: string;
18950
19044
  fileSize: number;
18951
19045
  fileUrl: string | null;
19046
+ status?: string | undefined;
18952
19047
  };
18953
19048
  }>, "many">;
18954
19049
  }, "strip", z.ZodTypeAny, {
@@ -18990,6 +19085,7 @@ export declare const mainChatContract: {
18990
19085
  bucketName: string;
18991
19086
  fileSize: number;
18992
19087
  fileUrl: string | null;
19088
+ status?: string | undefined;
18993
19089
  };
18994
19090
  }[];
18995
19091
  }, {
@@ -19031,6 +19127,7 @@ export declare const mainChatContract: {
19031
19127
  bucketName: string;
19032
19128
  fileSize: number;
19033
19129
  fileUrl: string | null;
19130
+ status?: string | undefined;
19034
19131
  };
19035
19132
  }[];
19036
19133
  }>, "many">;
@@ -19185,6 +19282,7 @@ export declare const mainChatContract: {
19185
19282
  bucketName: string;
19186
19283
  fileSize: number;
19187
19284
  fileUrl: string | null;
19285
+ status?: string | undefined;
19188
19286
  };
19189
19287
  }[];
19190
19288
  }[];
@@ -19287,6 +19385,7 @@ export declare const mainChatContract: {
19287
19385
  bucketName: string;
19288
19386
  fileSize: number;
19289
19387
  fileUrl: string | null;
19388
+ status?: string | undefined;
19290
19389
  };
19291
19390
  }[];
19292
19391
  }[];
@@ -19403,6 +19502,7 @@ export declare const mainChatContract: {
19403
19502
  bucketName: string;
19404
19503
  fileSize: number;
19405
19504
  fileUrl: string | null;
19505
+ status?: string | undefined;
19406
19506
  };
19407
19507
  }[];
19408
19508
  }[];
@@ -19520,6 +19620,7 @@ export declare const mainChatContract: {
19520
19620
  bucketName: string;
19521
19621
  fileSize: number;
19522
19622
  fileUrl: string | null;
19623
+ status?: string | undefined;
19523
19624
  };
19524
19625
  }[];
19525
19626
  }[];
@@ -20047,6 +20148,7 @@ export declare const mainChatContract: {
20047
20148
  bucketName: string;
20048
20149
  fileSize: number;
20049
20150
  fileUrl: string | null;
20151
+ status?: string | undefined;
20050
20152
  };
20051
20153
  }[];
20052
20154
  }[];
@@ -20366,6 +20468,7 @@ export declare const mainChatContract: {
20366
20468
  bucketName: string;
20367
20469
  fileSize: number;
20368
20470
  fileUrl: string | null;
20471
+ status?: string | undefined;
20369
20472
  };
20370
20473
  }[];
20371
20474
  }[];
@@ -20687,6 +20790,7 @@ export declare const mainChatContract: {
20687
20790
  bucketName: string;
20688
20791
  fileSize: number;
20689
20792
  fileUrl: string | null;
20793
+ status?: string | undefined;
20690
20794
  };
20691
20795
  }[];
20692
20796
  }[];
@@ -21009,6 +21113,7 @@ export declare const mainChatContract: {
21009
21113
  bucketName: string;
21010
21114
  fileSize: number;
21011
21115
  fileUrl: string | null;
21116
+ status?: string | undefined;
21012
21117
  };
21013
21118
  }[];
21014
21119
  }[];
@@ -21597,6 +21702,7 @@ export declare const mainChatContract: {
21597
21702
  fileSize: z.ZodNumber;
21598
21703
  fileKey: z.ZodString;
21599
21704
  fileUrl: z.ZodNullable<z.ZodString>;
21705
+ status: z.ZodOptional<z.ZodString>;
21600
21706
  }, "strip", z.ZodTypeAny, {
21601
21707
  id: string;
21602
21708
  createdAt: Date;
@@ -21607,6 +21713,7 @@ export declare const mainChatContract: {
21607
21713
  bucketName: string;
21608
21714
  fileSize: number;
21609
21715
  fileUrl: string | null;
21716
+ status?: string | undefined;
21610
21717
  }, {
21611
21718
  id: string;
21612
21719
  createdAt: Date;
@@ -21617,6 +21724,7 @@ export declare const mainChatContract: {
21617
21724
  bucketName: string;
21618
21725
  fileSize: number;
21619
21726
  fileUrl: string | null;
21727
+ status?: string | undefined;
21620
21728
  }>;
21621
21729
  }, "strip", z.ZodTypeAny, {
21622
21730
  id: string;
@@ -21634,6 +21742,7 @@ export declare const mainChatContract: {
21634
21742
  bucketName: string;
21635
21743
  fileSize: number;
21636
21744
  fileUrl: string | null;
21745
+ status?: string | undefined;
21637
21746
  };
21638
21747
  }, {
21639
21748
  id: string;
@@ -21651,6 +21760,7 @@ export declare const mainChatContract: {
21651
21760
  bucketName: string;
21652
21761
  fileSize: number;
21653
21762
  fileUrl: string | null;
21763
+ status?: string | undefined;
21654
21764
  };
21655
21765
  }>, "many">;
21656
21766
  }, "strip", z.ZodTypeAny, {
@@ -21692,6 +21802,7 @@ export declare const mainChatContract: {
21692
21802
  bucketName: string;
21693
21803
  fileSize: number;
21694
21804
  fileUrl: string | null;
21805
+ status?: string | undefined;
21695
21806
  };
21696
21807
  }[];
21697
21808
  }, {
@@ -21733,6 +21844,7 @@ export declare const mainChatContract: {
21733
21844
  bucketName: string;
21734
21845
  fileSize: number;
21735
21846
  fileUrl: string | null;
21847
+ status?: string | undefined;
21736
21848
  };
21737
21849
  }[];
21738
21850
  }>, "many">;
@@ -21887,6 +21999,7 @@ export declare const mainChatContract: {
21887
21999
  bucketName: string;
21888
22000
  fileSize: number;
21889
22001
  fileUrl: string | null;
22002
+ status?: string | undefined;
21890
22003
  };
21891
22004
  }[];
21892
22005
  }[];
@@ -21989,6 +22102,7 @@ export declare const mainChatContract: {
21989
22102
  bucketName: string;
21990
22103
  fileSize: number;
21991
22104
  fileUrl: string | null;
22105
+ status?: string | undefined;
21992
22106
  };
21993
22107
  }[];
21994
22108
  }[];
@@ -22105,6 +22219,7 @@ export declare const mainChatContract: {
22105
22219
  bucketName: string;
22106
22220
  fileSize: number;
22107
22221
  fileUrl: string | null;
22222
+ status?: string | undefined;
22108
22223
  };
22109
22224
  }[];
22110
22225
  }[];
@@ -22222,6 +22337,7 @@ export declare const mainChatContract: {
22222
22337
  bucketName: string;
22223
22338
  fileSize: number;
22224
22339
  fileUrl: string | null;
22340
+ status?: string | undefined;
22225
22341
  };
22226
22342
  }[];
22227
22343
  }[];
@@ -23312,6 +23428,7 @@ export declare const mainChatContract: {
23312
23428
  bucketName: string;
23313
23429
  fileSize: number;
23314
23430
  fileUrl: string | null;
23431
+ status?: string | undefined;
23315
23432
  };
23316
23433
  }[];
23317
23434
  }[];
@@ -23630,6 +23747,7 @@ export declare const mainChatContract: {
23630
23747
  bucketName: string;
23631
23748
  fileSize: number;
23632
23749
  fileUrl: string | null;
23750
+ status?: string | undefined;
23633
23751
  };
23634
23752
  }[];
23635
23753
  }[];
@@ -23950,6 +24068,7 @@ export declare const mainChatContract: {
23950
24068
  bucketName: string;
23951
24069
  fileSize: number;
23952
24070
  fileUrl: string | null;
24071
+ status?: string | undefined;
23953
24072
  };
23954
24073
  }[];
23955
24074
  }[];
@@ -24271,6 +24390,7 @@ export declare const mainChatContract: {
24271
24390
  bucketName: string;
24272
24391
  fileSize: number;
24273
24392
  fileUrl: string | null;
24393
+ status?: string | undefined;
24274
24394
  };
24275
24395
  }[];
24276
24396
  }[];
@@ -24845,6 +24965,7 @@ export declare const mainChatContract: {
24845
24965
  fileSize: z.ZodNumber;
24846
24966
  fileKey: z.ZodString;
24847
24967
  fileUrl: z.ZodNullable<z.ZodString>;
24968
+ status: z.ZodOptional<z.ZodString>;
24848
24969
  }, "strip", z.ZodTypeAny, {
24849
24970
  id: string;
24850
24971
  createdAt: Date;
@@ -24855,6 +24976,7 @@ export declare const mainChatContract: {
24855
24976
  bucketName: string;
24856
24977
  fileSize: number;
24857
24978
  fileUrl: string | null;
24979
+ status?: string | undefined;
24858
24980
  }, {
24859
24981
  id: string;
24860
24982
  createdAt: Date;
@@ -24865,6 +24987,7 @@ export declare const mainChatContract: {
24865
24987
  bucketName: string;
24866
24988
  fileSize: number;
24867
24989
  fileUrl: string | null;
24990
+ status?: string | undefined;
24868
24991
  }>;
24869
24992
  }, "strip", z.ZodTypeAny, {
24870
24993
  id: string;
@@ -24882,6 +25005,7 @@ export declare const mainChatContract: {
24882
25005
  bucketName: string;
24883
25006
  fileSize: number;
24884
25007
  fileUrl: string | null;
25008
+ status?: string | undefined;
24885
25009
  };
24886
25010
  }, {
24887
25011
  id: string;
@@ -24899,6 +25023,7 @@ export declare const mainChatContract: {
24899
25023
  bucketName: string;
24900
25024
  fileSize: number;
24901
25025
  fileUrl: string | null;
25026
+ status?: string | undefined;
24902
25027
  };
24903
25028
  }>, "many">;
24904
25029
  }, "strip", z.ZodTypeAny, {
@@ -24940,6 +25065,7 @@ export declare const mainChatContract: {
24940
25065
  bucketName: string;
24941
25066
  fileSize: number;
24942
25067
  fileUrl: string | null;
25068
+ status?: string | undefined;
24943
25069
  };
24944
25070
  }[];
24945
25071
  }, {
@@ -24981,6 +25107,7 @@ export declare const mainChatContract: {
24981
25107
  bucketName: string;
24982
25108
  fileSize: number;
24983
25109
  fileUrl: string | null;
25110
+ status?: string | undefined;
24984
25111
  };
24985
25112
  }[];
24986
25113
  }>, "many">;
@@ -25135,6 +25262,7 @@ export declare const mainChatContract: {
25135
25262
  bucketName: string;
25136
25263
  fileSize: number;
25137
25264
  fileUrl: string | null;
25265
+ status?: string | undefined;
25138
25266
  };
25139
25267
  }[];
25140
25268
  }[];
@@ -25237,6 +25365,7 @@ export declare const mainChatContract: {
25237
25365
  bucketName: string;
25238
25366
  fileSize: number;
25239
25367
  fileUrl: string | null;
25368
+ status?: string | undefined;
25240
25369
  };
25241
25370
  }[];
25242
25371
  }[];
@@ -25353,6 +25482,7 @@ export declare const mainChatContract: {
25353
25482
  bucketName: string;
25354
25483
  fileSize: number;
25355
25484
  fileUrl: string | null;
25485
+ status?: string | undefined;
25356
25486
  };
25357
25487
  }[];
25358
25488
  }[];
@@ -25470,6 +25600,7 @@ export declare const mainChatContract: {
25470
25600
  bucketName: string;
25471
25601
  fileSize: number;
25472
25602
  fileUrl: string | null;
25603
+ status?: string | undefined;
25473
25604
  };
25474
25605
  }[];
25475
25606
  }[];
@@ -26560,6 +26691,7 @@ export declare const mainChatContract: {
26560
26691
  bucketName: string;
26561
26692
  fileSize: number;
26562
26693
  fileUrl: string | null;
26694
+ status?: string | undefined;
26563
26695
  };
26564
26696
  }[];
26565
26697
  }[];
@@ -26878,6 +27010,7 @@ export declare const mainChatContract: {
26878
27010
  bucketName: string;
26879
27011
  fileSize: number;
26880
27012
  fileUrl: string | null;
27013
+ status?: string | undefined;
26881
27014
  };
26882
27015
  }[];
26883
27016
  }[];
@@ -27198,6 +27331,7 @@ export declare const mainChatContract: {
27198
27331
  bucketName: string;
27199
27332
  fileSize: number;
27200
27333
  fileUrl: string | null;
27334
+ status?: string | undefined;
27201
27335
  };
27202
27336
  }[];
27203
27337
  }[];
@@ -27519,6 +27653,7 @@ export declare const mainChatContract: {
27519
27653
  bucketName: string;
27520
27654
  fileSize: number;
27521
27655
  fileUrl: string | null;
27656
+ status?: string | undefined;
27522
27657
  };
27523
27658
  }[];
27524
27659
  }[];
@@ -28668,6 +28803,7 @@ export declare const mainChatContract: {
28668
28803
  fileSize: z.ZodNumber;
28669
28804
  fileKey: z.ZodString;
28670
28805
  fileUrl: z.ZodNullable<z.ZodString>;
28806
+ status: z.ZodOptional<z.ZodString>;
28671
28807
  }, "strip", z.ZodTypeAny, {
28672
28808
  id: string;
28673
28809
  createdAt: Date;
@@ -28678,6 +28814,7 @@ export declare const mainChatContract: {
28678
28814
  bucketName: string;
28679
28815
  fileSize: number;
28680
28816
  fileUrl: string | null;
28817
+ status?: string | undefined;
28681
28818
  }, {
28682
28819
  id: string;
28683
28820
  createdAt: Date;
@@ -28688,6 +28825,7 @@ export declare const mainChatContract: {
28688
28825
  bucketName: string;
28689
28826
  fileSize: number;
28690
28827
  fileUrl: string | null;
28828
+ status?: string | undefined;
28691
28829
  }>;
28692
28830
  }, "strip", z.ZodTypeAny, {
28693
28831
  id: string;
@@ -28705,6 +28843,7 @@ export declare const mainChatContract: {
28705
28843
  bucketName: string;
28706
28844
  fileSize: number;
28707
28845
  fileUrl: string | null;
28846
+ status?: string | undefined;
28708
28847
  };
28709
28848
  }, {
28710
28849
  id: string;
@@ -28722,6 +28861,7 @@ export declare const mainChatContract: {
28722
28861
  bucketName: string;
28723
28862
  fileSize: number;
28724
28863
  fileUrl: string | null;
28864
+ status?: string | undefined;
28725
28865
  };
28726
28866
  }>, "many">;
28727
28867
  }, "strip", z.ZodTypeAny, {
@@ -28763,6 +28903,7 @@ export declare const mainChatContract: {
28763
28903
  bucketName: string;
28764
28904
  fileSize: number;
28765
28905
  fileUrl: string | null;
28906
+ status?: string | undefined;
28766
28907
  };
28767
28908
  }[];
28768
28909
  }, {
@@ -28804,6 +28945,7 @@ export declare const mainChatContract: {
28804
28945
  bucketName: string;
28805
28946
  fileSize: number;
28806
28947
  fileUrl: string | null;
28948
+ status?: string | undefined;
28807
28949
  };
28808
28950
  }[];
28809
28951
  }>, "many">;
@@ -28958,6 +29100,7 @@ export declare const mainChatContract: {
28958
29100
  bucketName: string;
28959
29101
  fileSize: number;
28960
29102
  fileUrl: string | null;
29103
+ status?: string | undefined;
28961
29104
  };
28962
29105
  }[];
28963
29106
  }[];
@@ -29060,6 +29203,7 @@ export declare const mainChatContract: {
29060
29203
  bucketName: string;
29061
29204
  fileSize: number;
29062
29205
  fileUrl: string | null;
29206
+ status?: string | undefined;
29063
29207
  };
29064
29208
  }[];
29065
29209
  }[];
@@ -29176,6 +29320,7 @@ export declare const mainChatContract: {
29176
29320
  bucketName: string;
29177
29321
  fileSize: number;
29178
29322
  fileUrl: string | null;
29323
+ status?: string | undefined;
29179
29324
  };
29180
29325
  }[];
29181
29326
  }[];
@@ -29293,6 +29438,7 @@ export declare const mainChatContract: {
29293
29438
  bucketName: string;
29294
29439
  fileSize: number;
29295
29440
  fileUrl: string | null;
29441
+ status?: string | undefined;
29296
29442
  };
29297
29443
  }[];
29298
29444
  }[];
@@ -30003,6 +30149,7 @@ export declare const mainChatContract: {
30003
30149
  fileSize: z.ZodNumber;
30004
30150
  fileKey: z.ZodString;
30005
30151
  fileUrl: z.ZodNullable<z.ZodString>;
30152
+ status: z.ZodOptional<z.ZodString>;
30006
30153
  }, "strip", z.ZodTypeAny, {
30007
30154
  id: string;
30008
30155
  createdAt: Date;
@@ -30013,6 +30160,7 @@ export declare const mainChatContract: {
30013
30160
  bucketName: string;
30014
30161
  fileSize: number;
30015
30162
  fileUrl: string | null;
30163
+ status?: string | undefined;
30016
30164
  }, {
30017
30165
  id: string;
30018
30166
  createdAt: Date;
@@ -30023,6 +30171,7 @@ export declare const mainChatContract: {
30023
30171
  bucketName: string;
30024
30172
  fileSize: number;
30025
30173
  fileUrl: string | null;
30174
+ status?: string | undefined;
30026
30175
  }>;
30027
30176
  }, "strip", z.ZodTypeAny, {
30028
30177
  id: string;
@@ -30040,6 +30189,7 @@ export declare const mainChatContract: {
30040
30189
  bucketName: string;
30041
30190
  fileSize: number;
30042
30191
  fileUrl: string | null;
30192
+ status?: string | undefined;
30043
30193
  };
30044
30194
  }, {
30045
30195
  id: string;
@@ -30057,6 +30207,7 @@ export declare const mainChatContract: {
30057
30207
  bucketName: string;
30058
30208
  fileSize: number;
30059
30209
  fileUrl: string | null;
30210
+ status?: string | undefined;
30060
30211
  };
30061
30212
  }>, "many">;
30062
30213
  }, "strip", z.ZodTypeAny, {
@@ -30098,6 +30249,7 @@ export declare const mainChatContract: {
30098
30249
  bucketName: string;
30099
30250
  fileSize: number;
30100
30251
  fileUrl: string | null;
30252
+ status?: string | undefined;
30101
30253
  };
30102
30254
  }[];
30103
30255
  }, {
@@ -30139,6 +30291,7 @@ export declare const mainChatContract: {
30139
30291
  bucketName: string;
30140
30292
  fileSize: number;
30141
30293
  fileUrl: string | null;
30294
+ status?: string | undefined;
30142
30295
  };
30143
30296
  }[];
30144
30297
  }>, "many">;
@@ -30293,6 +30446,7 @@ export declare const mainChatContract: {
30293
30446
  bucketName: string;
30294
30447
  fileSize: number;
30295
30448
  fileUrl: string | null;
30449
+ status?: string | undefined;
30296
30450
  };
30297
30451
  }[];
30298
30452
  }[];
@@ -30395,6 +30549,7 @@ export declare const mainChatContract: {
30395
30549
  bucketName: string;
30396
30550
  fileSize: number;
30397
30551
  fileUrl: string | null;
30552
+ status?: string | undefined;
30398
30553
  };
30399
30554
  }[];
30400
30555
  }[];
@@ -30549,6 +30704,7 @@ export declare const mainChatContract: {
30549
30704
  bucketName: string;
30550
30705
  fileSize: number;
30551
30706
  fileUrl: string | null;
30707
+ status?: string | undefined;
30552
30708
  };
30553
30709
  }[];
30554
30710
  }[];
@@ -30672,6 +30828,7 @@ export declare const mainChatContract: {
30672
30828
  bucketName: string;
30673
30829
  fileSize: number;
30674
30830
  fileUrl: string | null;
30831
+ status?: string | undefined;
30675
30832
  };
30676
30833
  }[];
30677
30834
  }[];
@@ -30971,6 +31128,7 @@ export declare const mainChatContract: {
30971
31128
  bucketName: string;
30972
31129
  fileSize: number;
30973
31130
  fileUrl: string | null;
31131
+ status?: string | undefined;
30974
31132
  };
30975
31133
  }[];
30976
31134
  }[];
@@ -31094,6 +31252,7 @@ export declare const mainChatContract: {
31094
31252
  bucketName: string;
31095
31253
  fileSize: number;
31096
31254
  fileUrl: string | null;
31255
+ status?: string | undefined;
31097
31256
  };
31098
31257
  }[];
31099
31258
  }[];
@@ -31395,6 +31554,7 @@ export declare const mainChatContract: {
31395
31554
  bucketName: string;
31396
31555
  fileSize: number;
31397
31556
  fileUrl: string | null;
31557
+ status?: string | undefined;
31398
31558
  };
31399
31559
  }[];
31400
31560
  }[];
@@ -31518,6 +31678,7 @@ export declare const mainChatContract: {
31518
31678
  bucketName: string;
31519
31679
  fileSize: number;
31520
31680
  fileUrl: string | null;
31681
+ status?: string | undefined;
31521
31682
  };
31522
31683
  }[];
31523
31684
  }[];
@@ -31820,6 +31981,7 @@ export declare const mainChatContract: {
31820
31981
  bucketName: string;
31821
31982
  fileSize: number;
31822
31983
  fileUrl: string | null;
31984
+ status?: string | undefined;
31823
31985
  };
31824
31986
  }[];
31825
31987
  }[];
@@ -31943,6 +32105,7 @@ export declare const mainChatContract: {
31943
32105
  bucketName: string;
31944
32106
  fileSize: number;
31945
32107
  fileUrl: string | null;
32108
+ status?: string | undefined;
31946
32109
  };
31947
32110
  }[];
31948
32111
  }[];
@@ -33083,6 +33246,7 @@ export declare const mainChatContract: {
33083
33246
  fileSize: z.ZodNumber;
33084
33247
  fileKey: z.ZodString;
33085
33248
  fileUrl: z.ZodNullable<z.ZodString>;
33249
+ status: z.ZodOptional<z.ZodString>;
33086
33250
  }, "strip", z.ZodTypeAny, {
33087
33251
  id: string;
33088
33252
  createdAt: Date;
@@ -33093,6 +33257,7 @@ export declare const mainChatContract: {
33093
33257
  bucketName: string;
33094
33258
  fileSize: number;
33095
33259
  fileUrl: string | null;
33260
+ status?: string | undefined;
33096
33261
  }, {
33097
33262
  id: string;
33098
33263
  createdAt: Date;
@@ -33103,6 +33268,7 @@ export declare const mainChatContract: {
33103
33268
  bucketName: string;
33104
33269
  fileSize: number;
33105
33270
  fileUrl: string | null;
33271
+ status?: string | undefined;
33106
33272
  }>;
33107
33273
  }, "strip", z.ZodTypeAny, {
33108
33274
  id: string;
@@ -33120,6 +33286,7 @@ export declare const mainChatContract: {
33120
33286
  bucketName: string;
33121
33287
  fileSize: number;
33122
33288
  fileUrl: string | null;
33289
+ status?: string | undefined;
33123
33290
  };
33124
33291
  }, {
33125
33292
  id: string;
@@ -33137,6 +33304,7 @@ export declare const mainChatContract: {
33137
33304
  bucketName: string;
33138
33305
  fileSize: number;
33139
33306
  fileUrl: string | null;
33307
+ status?: string | undefined;
33140
33308
  };
33141
33309
  }>, "many">;
33142
33310
  }, "strip", z.ZodTypeAny, {
@@ -33178,6 +33346,7 @@ export declare const mainChatContract: {
33178
33346
  bucketName: string;
33179
33347
  fileSize: number;
33180
33348
  fileUrl: string | null;
33349
+ status?: string | undefined;
33181
33350
  };
33182
33351
  }[];
33183
33352
  }, {
@@ -33219,6 +33388,7 @@ export declare const mainChatContract: {
33219
33388
  bucketName: string;
33220
33389
  fileSize: number;
33221
33390
  fileUrl: string | null;
33391
+ status?: string | undefined;
33222
33392
  };
33223
33393
  }[];
33224
33394
  }>, "many">;
@@ -33373,6 +33543,7 @@ export declare const mainChatContract: {
33373
33543
  bucketName: string;
33374
33544
  fileSize: number;
33375
33545
  fileUrl: string | null;
33546
+ status?: string | undefined;
33376
33547
  };
33377
33548
  }[];
33378
33549
  }[];
@@ -33475,6 +33646,7 @@ export declare const mainChatContract: {
33475
33646
  bucketName: string;
33476
33647
  fileSize: number;
33477
33648
  fileUrl: string | null;
33649
+ status?: string | undefined;
33478
33650
  };
33479
33651
  }[];
33480
33652
  }[];
@@ -33591,6 +33763,7 @@ export declare const mainChatContract: {
33591
33763
  bucketName: string;
33592
33764
  fileSize: number;
33593
33765
  fileUrl: string | null;
33766
+ status?: string | undefined;
33594
33767
  };
33595
33768
  }[];
33596
33769
  }[];
@@ -33708,6 +33881,7 @@ export declare const mainChatContract: {
33708
33881
  bucketName: string;
33709
33882
  fileSize: number;
33710
33883
  fileUrl: string | null;
33884
+ status?: string | undefined;
33711
33885
  };
33712
33886
  }[];
33713
33887
  }[];
@@ -34236,6 +34410,7 @@ export declare const mainChatContract: {
34236
34410
  bucketName: string;
34237
34411
  fileSize: number;
34238
34412
  fileUrl: string | null;
34413
+ status?: string | undefined;
34239
34414
  };
34240
34415
  }[];
34241
34416
  }[];
@@ -34555,6 +34730,7 @@ export declare const mainChatContract: {
34555
34730
  bucketName: string;
34556
34731
  fileSize: number;
34557
34732
  fileUrl: string | null;
34733
+ status?: string | undefined;
34558
34734
  };
34559
34735
  }[];
34560
34736
  }[];
@@ -34876,6 +35052,7 @@ export declare const mainChatContract: {
34876
35052
  bucketName: string;
34877
35053
  fileSize: number;
34878
35054
  fileUrl: string | null;
35055
+ status?: string | undefined;
34879
35056
  };
34880
35057
  }[];
34881
35058
  }[];
@@ -35198,6 +35375,7 @@ export declare const mainChatContract: {
35198
35375
  bucketName: string;
35199
35376
  fileSize: number;
35200
35377
  fileUrl: string | null;
35378
+ status?: string | undefined;
35201
35379
  };
35202
35380
  }[];
35203
35381
  }[];
@@ -35781,6 +35959,7 @@ export declare const mainChatContract: {
35781
35959
  fileSize: z.ZodNumber;
35782
35960
  fileKey: z.ZodString;
35783
35961
  fileUrl: z.ZodNullable<z.ZodString>;
35962
+ status: z.ZodOptional<z.ZodString>;
35784
35963
  }, "strip", z.ZodTypeAny, {
35785
35964
  id: string;
35786
35965
  createdAt: Date;
@@ -35791,6 +35970,7 @@ export declare const mainChatContract: {
35791
35970
  bucketName: string;
35792
35971
  fileSize: number;
35793
35972
  fileUrl: string | null;
35973
+ status?: string | undefined;
35794
35974
  }, {
35795
35975
  id: string;
35796
35976
  createdAt: Date;
@@ -35801,6 +35981,7 @@ export declare const mainChatContract: {
35801
35981
  bucketName: string;
35802
35982
  fileSize: number;
35803
35983
  fileUrl: string | null;
35984
+ status?: string | undefined;
35804
35985
  }>;
35805
35986
  }, "strip", z.ZodTypeAny, {
35806
35987
  id: string;
@@ -35818,6 +35999,7 @@ export declare const mainChatContract: {
35818
35999
  bucketName: string;
35819
36000
  fileSize: number;
35820
36001
  fileUrl: string | null;
36002
+ status?: string | undefined;
35821
36003
  };
35822
36004
  }, {
35823
36005
  id: string;
@@ -35835,6 +36017,7 @@ export declare const mainChatContract: {
35835
36017
  bucketName: string;
35836
36018
  fileSize: number;
35837
36019
  fileUrl: string | null;
36020
+ status?: string | undefined;
35838
36021
  };
35839
36022
  }>, "many">;
35840
36023
  }, "strip", z.ZodTypeAny, {
@@ -35876,6 +36059,7 @@ export declare const mainChatContract: {
35876
36059
  bucketName: string;
35877
36060
  fileSize: number;
35878
36061
  fileUrl: string | null;
36062
+ status?: string | undefined;
35879
36063
  };
35880
36064
  }[];
35881
36065
  }, {
@@ -35917,6 +36101,7 @@ export declare const mainChatContract: {
35917
36101
  bucketName: string;
35918
36102
  fileSize: number;
35919
36103
  fileUrl: string | null;
36104
+ status?: string | undefined;
35920
36105
  };
35921
36106
  }[];
35922
36107
  }>, "many">;
@@ -36071,6 +36256,7 @@ export declare const mainChatContract: {
36071
36256
  bucketName: string;
36072
36257
  fileSize: number;
36073
36258
  fileUrl: string | null;
36259
+ status?: string | undefined;
36074
36260
  };
36075
36261
  }[];
36076
36262
  }[];
@@ -36173,6 +36359,7 @@ export declare const mainChatContract: {
36173
36359
  bucketName: string;
36174
36360
  fileSize: number;
36175
36361
  fileUrl: string | null;
36362
+ status?: string | undefined;
36176
36363
  };
36177
36364
  }[];
36178
36365
  }[];
@@ -36289,6 +36476,7 @@ export declare const mainChatContract: {
36289
36476
  bucketName: string;
36290
36477
  fileSize: number;
36291
36478
  fileUrl: string | null;
36479
+ status?: string | undefined;
36292
36480
  };
36293
36481
  }[];
36294
36482
  }[];
@@ -36406,6 +36594,7 @@ export declare const mainChatContract: {
36406
36594
  bucketName: string;
36407
36595
  fileSize: number;
36408
36596
  fileUrl: string | null;
36597
+ status?: string | undefined;
36409
36598
  };
36410
36599
  }[];
36411
36600
  }[];
@@ -37496,6 +37685,7 @@ export declare const mainChatContract: {
37496
37685
  bucketName: string;
37497
37686
  fileSize: number;
37498
37687
  fileUrl: string | null;
37688
+ status?: string | undefined;
37499
37689
  };
37500
37690
  }[];
37501
37691
  }[];
@@ -37814,6 +38004,7 @@ export declare const mainChatContract: {
37814
38004
  bucketName: string;
37815
38005
  fileSize: number;
37816
38006
  fileUrl: string | null;
38007
+ status?: string | undefined;
37817
38008
  };
37818
38009
  }[];
37819
38010
  }[];
@@ -38134,6 +38325,7 @@ export declare const mainChatContract: {
38134
38325
  bucketName: string;
38135
38326
  fileSize: number;
38136
38327
  fileUrl: string | null;
38328
+ status?: string | undefined;
38137
38329
  };
38138
38330
  }[];
38139
38331
  }[];
@@ -38458,6 +38650,7 @@ export declare const mainChatContract: {
38458
38650
  bucketName: string;
38459
38651
  fileSize: number;
38460
38652
  fileUrl: string | null;
38653
+ status?: string | undefined;
38461
38654
  };
38462
38655
  }[];
38463
38656
  }[];