@kl1/contracts 1.0.43 → 1.0.45
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.
- package/dist/index.js +333 -25
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +333 -25
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +203 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +44 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +48 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +1540 -150
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +424 -22
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +77 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +16 -0
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +63 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +9588 -950
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +610 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +514 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +7 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/mail/room-contract.d.ts +7 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +24 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/call-report.schema.d.ts +1753 -0
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/index.d.ts +4378 -175
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +1050 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/validation.d.ts +56 -0
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +2338 -171
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +327 -12
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/upload/schema.d.ts +3 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/chat/index.d.ts
CHANGED
@@ -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,17 @@ export declare const mainChatContract: {
|
|
12673
12738
|
summary: "Send message to room";
|
12674
12739
|
method: "POST";
|
12675
12740
|
responses: {
|
12741
|
+
200: null;
|
12742
|
+
422: z.ZodObject<{
|
12743
|
+
message: z.ZodString;
|
12744
|
+
error: z.ZodAny;
|
12745
|
+
}, "strip", z.ZodTypeAny, {
|
12746
|
+
message: string;
|
12747
|
+
error?: any;
|
12748
|
+
}, {
|
12749
|
+
message: string;
|
12750
|
+
error?: any;
|
12751
|
+
}>;
|
12676
12752
|
500: z.ZodObject<{
|
12677
12753
|
message: z.ZodString;
|
12678
12754
|
error: z.ZodAny;
|
@@ -13136,6 +13212,7 @@ export declare const mainChatContract: {
|
|
13136
13212
|
fileSize: z.ZodNumber;
|
13137
13213
|
fileKey: z.ZodString;
|
13138
13214
|
fileUrl: z.ZodNullable<z.ZodString>;
|
13215
|
+
status: z.ZodOptional<z.ZodString>;
|
13139
13216
|
}, "strip", z.ZodTypeAny, {
|
13140
13217
|
id: string;
|
13141
13218
|
createdAt: Date;
|
@@ -13146,6 +13223,7 @@ export declare const mainChatContract: {
|
|
13146
13223
|
bucketName: string;
|
13147
13224
|
fileSize: number;
|
13148
13225
|
fileUrl: string | null;
|
13226
|
+
status?: string | undefined;
|
13149
13227
|
}, {
|
13150
13228
|
id: string;
|
13151
13229
|
createdAt: Date;
|
@@ -13156,6 +13234,7 @@ export declare const mainChatContract: {
|
|
13156
13234
|
bucketName: string;
|
13157
13235
|
fileSize: number;
|
13158
13236
|
fileUrl: string | null;
|
13237
|
+
status?: string | undefined;
|
13159
13238
|
}>;
|
13160
13239
|
}, "strip", z.ZodTypeAny, {
|
13161
13240
|
id: string;
|
@@ -13173,6 +13252,7 @@ export declare const mainChatContract: {
|
|
13173
13252
|
bucketName: string;
|
13174
13253
|
fileSize: number;
|
13175
13254
|
fileUrl: string | null;
|
13255
|
+
status?: string | undefined;
|
13176
13256
|
};
|
13177
13257
|
}, {
|
13178
13258
|
id: string;
|
@@ -13190,6 +13270,7 @@ export declare const mainChatContract: {
|
|
13190
13270
|
bucketName: string;
|
13191
13271
|
fileSize: number;
|
13192
13272
|
fileUrl: string | null;
|
13273
|
+
status?: string | undefined;
|
13193
13274
|
};
|
13194
13275
|
}>, "many">;
|
13195
13276
|
}, "strip", z.ZodTypeAny, {
|
@@ -13231,6 +13312,7 @@ export declare const mainChatContract: {
|
|
13231
13312
|
bucketName: string;
|
13232
13313
|
fileSize: number;
|
13233
13314
|
fileUrl: string | null;
|
13315
|
+
status?: string | undefined;
|
13234
13316
|
};
|
13235
13317
|
}[];
|
13236
13318
|
}, {
|
@@ -13272,6 +13354,7 @@ export declare const mainChatContract: {
|
|
13272
13354
|
bucketName: string;
|
13273
13355
|
fileSize: number;
|
13274
13356
|
fileUrl: string | null;
|
13357
|
+
status?: string | undefined;
|
13275
13358
|
};
|
13276
13359
|
}[];
|
13277
13360
|
}>, "many">;
|
@@ -13426,6 +13509,7 @@ export declare const mainChatContract: {
|
|
13426
13509
|
bucketName: string;
|
13427
13510
|
fileSize: number;
|
13428
13511
|
fileUrl: string | null;
|
13512
|
+
status?: string | undefined;
|
13429
13513
|
};
|
13430
13514
|
}[];
|
13431
13515
|
}[];
|
@@ -13528,6 +13612,7 @@ export declare const mainChatContract: {
|
|
13528
13612
|
bucketName: string;
|
13529
13613
|
fileSize: number;
|
13530
13614
|
fileUrl: string | null;
|
13615
|
+
status?: string | undefined;
|
13531
13616
|
};
|
13532
13617
|
}[];
|
13533
13618
|
}[];
|
@@ -13644,6 +13729,7 @@ export declare const mainChatContract: {
|
|
13644
13729
|
bucketName: string;
|
13645
13730
|
fileSize: number;
|
13646
13731
|
fileUrl: string | null;
|
13732
|
+
status?: string | undefined;
|
13647
13733
|
};
|
13648
13734
|
}[];
|
13649
13735
|
}[];
|
@@ -13761,6 +13847,7 @@ export declare const mainChatContract: {
|
|
13761
13847
|
bucketName: string;
|
13762
13848
|
fileSize: number;
|
13763
13849
|
fileUrl: string | null;
|
13850
|
+
status?: string | undefined;
|
13764
13851
|
};
|
13765
13852
|
}[];
|
13766
13853
|
}[];
|
@@ -14851,6 +14938,7 @@ export declare const mainChatContract: {
|
|
14851
14938
|
bucketName: string;
|
14852
14939
|
fileSize: number;
|
14853
14940
|
fileUrl: string | null;
|
14941
|
+
status?: string | undefined;
|
14854
14942
|
};
|
14855
14943
|
}[];
|
14856
14944
|
}[];
|
@@ -15169,6 +15257,7 @@ export declare const mainChatContract: {
|
|
15169
15257
|
bucketName: string;
|
15170
15258
|
fileSize: number;
|
15171
15259
|
fileUrl: string | null;
|
15260
|
+
status?: string | undefined;
|
15172
15261
|
};
|
15173
15262
|
}[];
|
15174
15263
|
}[];
|
@@ -15381,6 +15470,7 @@ export declare const mainChatContract: {
|
|
15381
15470
|
fileSize: z.ZodNumber;
|
15382
15471
|
fileKey: z.ZodString;
|
15383
15472
|
fileUrl: z.ZodNullable<z.ZodString>;
|
15473
|
+
status: z.ZodOptional<z.ZodString>;
|
15384
15474
|
}, "strip", z.ZodTypeAny, {
|
15385
15475
|
id: string;
|
15386
15476
|
createdAt: Date;
|
@@ -15391,6 +15481,7 @@ export declare const mainChatContract: {
|
|
15391
15481
|
bucketName: string;
|
15392
15482
|
fileSize: number;
|
15393
15483
|
fileUrl: string | null;
|
15484
|
+
status?: string | undefined;
|
15394
15485
|
}, {
|
15395
15486
|
id: string;
|
15396
15487
|
createdAt: Date;
|
@@ -15401,6 +15492,7 @@ export declare const mainChatContract: {
|
|
15401
15492
|
bucketName: string;
|
15402
15493
|
fileSize: number;
|
15403
15494
|
fileUrl: string | null;
|
15495
|
+
status?: string | undefined;
|
15404
15496
|
}>;
|
15405
15497
|
actor: z.ZodObject<{
|
15406
15498
|
id: z.ZodString;
|
@@ -16078,6 +16170,7 @@ export declare const mainChatContract: {
|
|
16078
16170
|
bucketName: string;
|
16079
16171
|
fileSize: number;
|
16080
16172
|
fileUrl: string | null;
|
16173
|
+
status?: string | undefined;
|
16081
16174
|
};
|
16082
16175
|
assignee: {
|
16083
16176
|
id: string;
|
@@ -16240,6 +16333,7 @@ export declare const mainChatContract: {
|
|
16240
16333
|
bucketName: string;
|
16241
16334
|
fileSize: number;
|
16242
16335
|
fileUrl: string | null;
|
16336
|
+
status?: string | undefined;
|
16243
16337
|
};
|
16244
16338
|
}[];
|
16245
16339
|
}[];
|
@@ -16558,6 +16652,7 @@ export declare const mainChatContract: {
|
|
16558
16652
|
bucketName: string;
|
16559
16653
|
fileSize: number;
|
16560
16654
|
fileUrl: string | null;
|
16655
|
+
status?: string | undefined;
|
16561
16656
|
};
|
16562
16657
|
assignee: {
|
16563
16658
|
id: string;
|
@@ -16720,6 +16815,7 @@ export declare const mainChatContract: {
|
|
16720
16815
|
bucketName: string;
|
16721
16816
|
fileSize: number;
|
16722
16817
|
fileUrl: string | null;
|
16818
|
+
status?: string | undefined;
|
16723
16819
|
};
|
16724
16820
|
}[];
|
16725
16821
|
}[];
|
@@ -17040,6 +17136,7 @@ export declare const mainChatContract: {
|
|
17040
17136
|
bucketName: string;
|
17041
17137
|
fileSize: number;
|
17042
17138
|
fileUrl: string | null;
|
17139
|
+
status?: string | undefined;
|
17043
17140
|
};
|
17044
17141
|
assignee: {
|
17045
17142
|
id: string;
|
@@ -17202,6 +17299,7 @@ export declare const mainChatContract: {
|
|
17202
17299
|
bucketName: string;
|
17203
17300
|
fileSize: number;
|
17204
17301
|
fileUrl: string | null;
|
17302
|
+
status?: string | undefined;
|
17205
17303
|
};
|
17206
17304
|
}[];
|
17207
17305
|
}[];
|
@@ -17526,6 +17624,7 @@ export declare const mainChatContract: {
|
|
17526
17624
|
bucketName: string;
|
17527
17625
|
fileSize: number;
|
17528
17626
|
fileUrl: string | null;
|
17627
|
+
status?: string | undefined;
|
17529
17628
|
};
|
17530
17629
|
assignee: {
|
17531
17630
|
id: string;
|
@@ -17688,6 +17787,7 @@ export declare const mainChatContract: {
|
|
17688
17787
|
bucketName: string;
|
17689
17788
|
fileSize: number;
|
17690
17789
|
fileUrl: string | null;
|
17790
|
+
status?: string | undefined;
|
17691
17791
|
};
|
17692
17792
|
}[];
|
17693
17793
|
}[];
|
@@ -18885,6 +18985,7 @@ export declare const mainChatContract: {
|
|
18885
18985
|
fileSize: z.ZodNumber;
|
18886
18986
|
fileKey: z.ZodString;
|
18887
18987
|
fileUrl: z.ZodNullable<z.ZodString>;
|
18988
|
+
status: z.ZodOptional<z.ZodString>;
|
18888
18989
|
}, "strip", z.ZodTypeAny, {
|
18889
18990
|
id: string;
|
18890
18991
|
createdAt: Date;
|
@@ -18895,6 +18996,7 @@ export declare const mainChatContract: {
|
|
18895
18996
|
bucketName: string;
|
18896
18997
|
fileSize: number;
|
18897
18998
|
fileUrl: string | null;
|
18999
|
+
status?: string | undefined;
|
18898
19000
|
}, {
|
18899
19001
|
id: string;
|
18900
19002
|
createdAt: Date;
|
@@ -18905,6 +19007,7 @@ export declare const mainChatContract: {
|
|
18905
19007
|
bucketName: string;
|
18906
19008
|
fileSize: number;
|
18907
19009
|
fileUrl: string | null;
|
19010
|
+
status?: string | undefined;
|
18908
19011
|
}>;
|
18909
19012
|
}, "strip", z.ZodTypeAny, {
|
18910
19013
|
id: string;
|
@@ -18922,6 +19025,7 @@ export declare const mainChatContract: {
|
|
18922
19025
|
bucketName: string;
|
18923
19026
|
fileSize: number;
|
18924
19027
|
fileUrl: string | null;
|
19028
|
+
status?: string | undefined;
|
18925
19029
|
};
|
18926
19030
|
}, {
|
18927
19031
|
id: string;
|
@@ -18939,6 +19043,7 @@ export declare const mainChatContract: {
|
|
18939
19043
|
bucketName: string;
|
18940
19044
|
fileSize: number;
|
18941
19045
|
fileUrl: string | null;
|
19046
|
+
status?: string | undefined;
|
18942
19047
|
};
|
18943
19048
|
}>, "many">;
|
18944
19049
|
}, "strip", z.ZodTypeAny, {
|
@@ -18980,6 +19085,7 @@ export declare const mainChatContract: {
|
|
18980
19085
|
bucketName: string;
|
18981
19086
|
fileSize: number;
|
18982
19087
|
fileUrl: string | null;
|
19088
|
+
status?: string | undefined;
|
18983
19089
|
};
|
18984
19090
|
}[];
|
18985
19091
|
}, {
|
@@ -19021,6 +19127,7 @@ export declare const mainChatContract: {
|
|
19021
19127
|
bucketName: string;
|
19022
19128
|
fileSize: number;
|
19023
19129
|
fileUrl: string | null;
|
19130
|
+
status?: string | undefined;
|
19024
19131
|
};
|
19025
19132
|
}[];
|
19026
19133
|
}>, "many">;
|
@@ -19175,6 +19282,7 @@ export declare const mainChatContract: {
|
|
19175
19282
|
bucketName: string;
|
19176
19283
|
fileSize: number;
|
19177
19284
|
fileUrl: string | null;
|
19285
|
+
status?: string | undefined;
|
19178
19286
|
};
|
19179
19287
|
}[];
|
19180
19288
|
}[];
|
@@ -19277,6 +19385,7 @@ export declare const mainChatContract: {
|
|
19277
19385
|
bucketName: string;
|
19278
19386
|
fileSize: number;
|
19279
19387
|
fileUrl: string | null;
|
19388
|
+
status?: string | undefined;
|
19280
19389
|
};
|
19281
19390
|
}[];
|
19282
19391
|
}[];
|
@@ -19393,6 +19502,7 @@ export declare const mainChatContract: {
|
|
19393
19502
|
bucketName: string;
|
19394
19503
|
fileSize: number;
|
19395
19504
|
fileUrl: string | null;
|
19505
|
+
status?: string | undefined;
|
19396
19506
|
};
|
19397
19507
|
}[];
|
19398
19508
|
}[];
|
@@ -19510,6 +19620,7 @@ export declare const mainChatContract: {
|
|
19510
19620
|
bucketName: string;
|
19511
19621
|
fileSize: number;
|
19512
19622
|
fileUrl: string | null;
|
19623
|
+
status?: string | undefined;
|
19513
19624
|
};
|
19514
19625
|
}[];
|
19515
19626
|
}[];
|
@@ -20037,6 +20148,7 @@ export declare const mainChatContract: {
|
|
20037
20148
|
bucketName: string;
|
20038
20149
|
fileSize: number;
|
20039
20150
|
fileUrl: string | null;
|
20151
|
+
status?: string | undefined;
|
20040
20152
|
};
|
20041
20153
|
}[];
|
20042
20154
|
}[];
|
@@ -20356,6 +20468,7 @@ export declare const mainChatContract: {
|
|
20356
20468
|
bucketName: string;
|
20357
20469
|
fileSize: number;
|
20358
20470
|
fileUrl: string | null;
|
20471
|
+
status?: string | undefined;
|
20359
20472
|
};
|
20360
20473
|
}[];
|
20361
20474
|
}[];
|
@@ -20677,6 +20790,7 @@ export declare const mainChatContract: {
|
|
20677
20790
|
bucketName: string;
|
20678
20791
|
fileSize: number;
|
20679
20792
|
fileUrl: string | null;
|
20793
|
+
status?: string | undefined;
|
20680
20794
|
};
|
20681
20795
|
}[];
|
20682
20796
|
}[];
|
@@ -20999,6 +21113,7 @@ export declare const mainChatContract: {
|
|
20999
21113
|
bucketName: string;
|
21000
21114
|
fileSize: number;
|
21001
21115
|
fileUrl: string | null;
|
21116
|
+
status?: string | undefined;
|
21002
21117
|
};
|
21003
21118
|
}[];
|
21004
21119
|
}[];
|
@@ -21587,6 +21702,7 @@ export declare const mainChatContract: {
|
|
21587
21702
|
fileSize: z.ZodNumber;
|
21588
21703
|
fileKey: z.ZodString;
|
21589
21704
|
fileUrl: z.ZodNullable<z.ZodString>;
|
21705
|
+
status: z.ZodOptional<z.ZodString>;
|
21590
21706
|
}, "strip", z.ZodTypeAny, {
|
21591
21707
|
id: string;
|
21592
21708
|
createdAt: Date;
|
@@ -21597,6 +21713,7 @@ export declare const mainChatContract: {
|
|
21597
21713
|
bucketName: string;
|
21598
21714
|
fileSize: number;
|
21599
21715
|
fileUrl: string | null;
|
21716
|
+
status?: string | undefined;
|
21600
21717
|
}, {
|
21601
21718
|
id: string;
|
21602
21719
|
createdAt: Date;
|
@@ -21607,6 +21724,7 @@ export declare const mainChatContract: {
|
|
21607
21724
|
bucketName: string;
|
21608
21725
|
fileSize: number;
|
21609
21726
|
fileUrl: string | null;
|
21727
|
+
status?: string | undefined;
|
21610
21728
|
}>;
|
21611
21729
|
}, "strip", z.ZodTypeAny, {
|
21612
21730
|
id: string;
|
@@ -21624,6 +21742,7 @@ export declare const mainChatContract: {
|
|
21624
21742
|
bucketName: string;
|
21625
21743
|
fileSize: number;
|
21626
21744
|
fileUrl: string | null;
|
21745
|
+
status?: string | undefined;
|
21627
21746
|
};
|
21628
21747
|
}, {
|
21629
21748
|
id: string;
|
@@ -21641,6 +21760,7 @@ export declare const mainChatContract: {
|
|
21641
21760
|
bucketName: string;
|
21642
21761
|
fileSize: number;
|
21643
21762
|
fileUrl: string | null;
|
21763
|
+
status?: string | undefined;
|
21644
21764
|
};
|
21645
21765
|
}>, "many">;
|
21646
21766
|
}, "strip", z.ZodTypeAny, {
|
@@ -21682,6 +21802,7 @@ export declare const mainChatContract: {
|
|
21682
21802
|
bucketName: string;
|
21683
21803
|
fileSize: number;
|
21684
21804
|
fileUrl: string | null;
|
21805
|
+
status?: string | undefined;
|
21685
21806
|
};
|
21686
21807
|
}[];
|
21687
21808
|
}, {
|
@@ -21723,6 +21844,7 @@ export declare const mainChatContract: {
|
|
21723
21844
|
bucketName: string;
|
21724
21845
|
fileSize: number;
|
21725
21846
|
fileUrl: string | null;
|
21847
|
+
status?: string | undefined;
|
21726
21848
|
};
|
21727
21849
|
}[];
|
21728
21850
|
}>, "many">;
|
@@ -21877,6 +21999,7 @@ export declare const mainChatContract: {
|
|
21877
21999
|
bucketName: string;
|
21878
22000
|
fileSize: number;
|
21879
22001
|
fileUrl: string | null;
|
22002
|
+
status?: string | undefined;
|
21880
22003
|
};
|
21881
22004
|
}[];
|
21882
22005
|
}[];
|
@@ -21979,6 +22102,7 @@ export declare const mainChatContract: {
|
|
21979
22102
|
bucketName: string;
|
21980
22103
|
fileSize: number;
|
21981
22104
|
fileUrl: string | null;
|
22105
|
+
status?: string | undefined;
|
21982
22106
|
};
|
21983
22107
|
}[];
|
21984
22108
|
}[];
|
@@ -22095,6 +22219,7 @@ export declare const mainChatContract: {
|
|
22095
22219
|
bucketName: string;
|
22096
22220
|
fileSize: number;
|
22097
22221
|
fileUrl: string | null;
|
22222
|
+
status?: string | undefined;
|
22098
22223
|
};
|
22099
22224
|
}[];
|
22100
22225
|
}[];
|
@@ -22212,6 +22337,7 @@ export declare const mainChatContract: {
|
|
22212
22337
|
bucketName: string;
|
22213
22338
|
fileSize: number;
|
22214
22339
|
fileUrl: string | null;
|
22340
|
+
status?: string | undefined;
|
22215
22341
|
};
|
22216
22342
|
}[];
|
22217
22343
|
}[];
|
@@ -23302,6 +23428,7 @@ export declare const mainChatContract: {
|
|
23302
23428
|
bucketName: string;
|
23303
23429
|
fileSize: number;
|
23304
23430
|
fileUrl: string | null;
|
23431
|
+
status?: string | undefined;
|
23305
23432
|
};
|
23306
23433
|
}[];
|
23307
23434
|
}[];
|
@@ -23620,6 +23747,7 @@ export declare const mainChatContract: {
|
|
23620
23747
|
bucketName: string;
|
23621
23748
|
fileSize: number;
|
23622
23749
|
fileUrl: string | null;
|
23750
|
+
status?: string | undefined;
|
23623
23751
|
};
|
23624
23752
|
}[];
|
23625
23753
|
}[];
|
@@ -23940,6 +24068,7 @@ export declare const mainChatContract: {
|
|
23940
24068
|
bucketName: string;
|
23941
24069
|
fileSize: number;
|
23942
24070
|
fileUrl: string | null;
|
24071
|
+
status?: string | undefined;
|
23943
24072
|
};
|
23944
24073
|
}[];
|
23945
24074
|
}[];
|
@@ -24261,6 +24390,7 @@ export declare const mainChatContract: {
|
|
24261
24390
|
bucketName: string;
|
24262
24391
|
fileSize: number;
|
24263
24392
|
fileUrl: string | null;
|
24393
|
+
status?: string | undefined;
|
24264
24394
|
};
|
24265
24395
|
}[];
|
24266
24396
|
}[];
|
@@ -24835,6 +24965,7 @@ export declare const mainChatContract: {
|
|
24835
24965
|
fileSize: z.ZodNumber;
|
24836
24966
|
fileKey: z.ZodString;
|
24837
24967
|
fileUrl: z.ZodNullable<z.ZodString>;
|
24968
|
+
status: z.ZodOptional<z.ZodString>;
|
24838
24969
|
}, "strip", z.ZodTypeAny, {
|
24839
24970
|
id: string;
|
24840
24971
|
createdAt: Date;
|
@@ -24845,6 +24976,7 @@ export declare const mainChatContract: {
|
|
24845
24976
|
bucketName: string;
|
24846
24977
|
fileSize: number;
|
24847
24978
|
fileUrl: string | null;
|
24979
|
+
status?: string | undefined;
|
24848
24980
|
}, {
|
24849
24981
|
id: string;
|
24850
24982
|
createdAt: Date;
|
@@ -24855,6 +24987,7 @@ export declare const mainChatContract: {
|
|
24855
24987
|
bucketName: string;
|
24856
24988
|
fileSize: number;
|
24857
24989
|
fileUrl: string | null;
|
24990
|
+
status?: string | undefined;
|
24858
24991
|
}>;
|
24859
24992
|
}, "strip", z.ZodTypeAny, {
|
24860
24993
|
id: string;
|
@@ -24872,6 +25005,7 @@ export declare const mainChatContract: {
|
|
24872
25005
|
bucketName: string;
|
24873
25006
|
fileSize: number;
|
24874
25007
|
fileUrl: string | null;
|
25008
|
+
status?: string | undefined;
|
24875
25009
|
};
|
24876
25010
|
}, {
|
24877
25011
|
id: string;
|
@@ -24889,6 +25023,7 @@ export declare const mainChatContract: {
|
|
24889
25023
|
bucketName: string;
|
24890
25024
|
fileSize: number;
|
24891
25025
|
fileUrl: string | null;
|
25026
|
+
status?: string | undefined;
|
24892
25027
|
};
|
24893
25028
|
}>, "many">;
|
24894
25029
|
}, "strip", z.ZodTypeAny, {
|
@@ -24930,6 +25065,7 @@ export declare const mainChatContract: {
|
|
24930
25065
|
bucketName: string;
|
24931
25066
|
fileSize: number;
|
24932
25067
|
fileUrl: string | null;
|
25068
|
+
status?: string | undefined;
|
24933
25069
|
};
|
24934
25070
|
}[];
|
24935
25071
|
}, {
|
@@ -24971,6 +25107,7 @@ export declare const mainChatContract: {
|
|
24971
25107
|
bucketName: string;
|
24972
25108
|
fileSize: number;
|
24973
25109
|
fileUrl: string | null;
|
25110
|
+
status?: string | undefined;
|
24974
25111
|
};
|
24975
25112
|
}[];
|
24976
25113
|
}>, "many">;
|
@@ -25125,6 +25262,7 @@ export declare const mainChatContract: {
|
|
25125
25262
|
bucketName: string;
|
25126
25263
|
fileSize: number;
|
25127
25264
|
fileUrl: string | null;
|
25265
|
+
status?: string | undefined;
|
25128
25266
|
};
|
25129
25267
|
}[];
|
25130
25268
|
}[];
|
@@ -25227,6 +25365,7 @@ export declare const mainChatContract: {
|
|
25227
25365
|
bucketName: string;
|
25228
25366
|
fileSize: number;
|
25229
25367
|
fileUrl: string | null;
|
25368
|
+
status?: string | undefined;
|
25230
25369
|
};
|
25231
25370
|
}[];
|
25232
25371
|
}[];
|
@@ -25343,6 +25482,7 @@ export declare const mainChatContract: {
|
|
25343
25482
|
bucketName: string;
|
25344
25483
|
fileSize: number;
|
25345
25484
|
fileUrl: string | null;
|
25485
|
+
status?: string | undefined;
|
25346
25486
|
};
|
25347
25487
|
}[];
|
25348
25488
|
}[];
|
@@ -25460,6 +25600,7 @@ export declare const mainChatContract: {
|
|
25460
25600
|
bucketName: string;
|
25461
25601
|
fileSize: number;
|
25462
25602
|
fileUrl: string | null;
|
25603
|
+
status?: string | undefined;
|
25463
25604
|
};
|
25464
25605
|
}[];
|
25465
25606
|
}[];
|
@@ -26550,6 +26691,7 @@ export declare const mainChatContract: {
|
|
26550
26691
|
bucketName: string;
|
26551
26692
|
fileSize: number;
|
26552
26693
|
fileUrl: string | null;
|
26694
|
+
status?: string | undefined;
|
26553
26695
|
};
|
26554
26696
|
}[];
|
26555
26697
|
}[];
|
@@ -26868,6 +27010,7 @@ export declare const mainChatContract: {
|
|
26868
27010
|
bucketName: string;
|
26869
27011
|
fileSize: number;
|
26870
27012
|
fileUrl: string | null;
|
27013
|
+
status?: string | undefined;
|
26871
27014
|
};
|
26872
27015
|
}[];
|
26873
27016
|
}[];
|
@@ -27188,6 +27331,7 @@ export declare const mainChatContract: {
|
|
27188
27331
|
bucketName: string;
|
27189
27332
|
fileSize: number;
|
27190
27333
|
fileUrl: string | null;
|
27334
|
+
status?: string | undefined;
|
27191
27335
|
};
|
27192
27336
|
}[];
|
27193
27337
|
}[];
|
@@ -27509,6 +27653,7 @@ export declare const mainChatContract: {
|
|
27509
27653
|
bucketName: string;
|
27510
27654
|
fileSize: number;
|
27511
27655
|
fileUrl: string | null;
|
27656
|
+
status?: string | undefined;
|
27512
27657
|
};
|
27513
27658
|
}[];
|
27514
27659
|
}[];
|
@@ -28658,6 +28803,7 @@ export declare const mainChatContract: {
|
|
28658
28803
|
fileSize: z.ZodNumber;
|
28659
28804
|
fileKey: z.ZodString;
|
28660
28805
|
fileUrl: z.ZodNullable<z.ZodString>;
|
28806
|
+
status: z.ZodOptional<z.ZodString>;
|
28661
28807
|
}, "strip", z.ZodTypeAny, {
|
28662
28808
|
id: string;
|
28663
28809
|
createdAt: Date;
|
@@ -28668,6 +28814,7 @@ export declare const mainChatContract: {
|
|
28668
28814
|
bucketName: string;
|
28669
28815
|
fileSize: number;
|
28670
28816
|
fileUrl: string | null;
|
28817
|
+
status?: string | undefined;
|
28671
28818
|
}, {
|
28672
28819
|
id: string;
|
28673
28820
|
createdAt: Date;
|
@@ -28678,6 +28825,7 @@ export declare const mainChatContract: {
|
|
28678
28825
|
bucketName: string;
|
28679
28826
|
fileSize: number;
|
28680
28827
|
fileUrl: string | null;
|
28828
|
+
status?: string | undefined;
|
28681
28829
|
}>;
|
28682
28830
|
}, "strip", z.ZodTypeAny, {
|
28683
28831
|
id: string;
|
@@ -28695,6 +28843,7 @@ export declare const mainChatContract: {
|
|
28695
28843
|
bucketName: string;
|
28696
28844
|
fileSize: number;
|
28697
28845
|
fileUrl: string | null;
|
28846
|
+
status?: string | undefined;
|
28698
28847
|
};
|
28699
28848
|
}, {
|
28700
28849
|
id: string;
|
@@ -28712,6 +28861,7 @@ export declare const mainChatContract: {
|
|
28712
28861
|
bucketName: string;
|
28713
28862
|
fileSize: number;
|
28714
28863
|
fileUrl: string | null;
|
28864
|
+
status?: string | undefined;
|
28715
28865
|
};
|
28716
28866
|
}>, "many">;
|
28717
28867
|
}, "strip", z.ZodTypeAny, {
|
@@ -28753,6 +28903,7 @@ export declare const mainChatContract: {
|
|
28753
28903
|
bucketName: string;
|
28754
28904
|
fileSize: number;
|
28755
28905
|
fileUrl: string | null;
|
28906
|
+
status?: string | undefined;
|
28756
28907
|
};
|
28757
28908
|
}[];
|
28758
28909
|
}, {
|
@@ -28794,6 +28945,7 @@ export declare const mainChatContract: {
|
|
28794
28945
|
bucketName: string;
|
28795
28946
|
fileSize: number;
|
28796
28947
|
fileUrl: string | null;
|
28948
|
+
status?: string | undefined;
|
28797
28949
|
};
|
28798
28950
|
}[];
|
28799
28951
|
}>, "many">;
|
@@ -28948,6 +29100,7 @@ export declare const mainChatContract: {
|
|
28948
29100
|
bucketName: string;
|
28949
29101
|
fileSize: number;
|
28950
29102
|
fileUrl: string | null;
|
29103
|
+
status?: string | undefined;
|
28951
29104
|
};
|
28952
29105
|
}[];
|
28953
29106
|
}[];
|
@@ -29050,6 +29203,7 @@ export declare const mainChatContract: {
|
|
29050
29203
|
bucketName: string;
|
29051
29204
|
fileSize: number;
|
29052
29205
|
fileUrl: string | null;
|
29206
|
+
status?: string | undefined;
|
29053
29207
|
};
|
29054
29208
|
}[];
|
29055
29209
|
}[];
|
@@ -29166,6 +29320,7 @@ export declare const mainChatContract: {
|
|
29166
29320
|
bucketName: string;
|
29167
29321
|
fileSize: number;
|
29168
29322
|
fileUrl: string | null;
|
29323
|
+
status?: string | undefined;
|
29169
29324
|
};
|
29170
29325
|
}[];
|
29171
29326
|
}[];
|
@@ -29283,6 +29438,7 @@ export declare const mainChatContract: {
|
|
29283
29438
|
bucketName: string;
|
29284
29439
|
fileSize: number;
|
29285
29440
|
fileUrl: string | null;
|
29441
|
+
status?: string | undefined;
|
29286
29442
|
};
|
29287
29443
|
}[];
|
29288
29444
|
}[];
|
@@ -29993,6 +30149,7 @@ export declare const mainChatContract: {
|
|
29993
30149
|
fileSize: z.ZodNumber;
|
29994
30150
|
fileKey: z.ZodString;
|
29995
30151
|
fileUrl: z.ZodNullable<z.ZodString>;
|
30152
|
+
status: z.ZodOptional<z.ZodString>;
|
29996
30153
|
}, "strip", z.ZodTypeAny, {
|
29997
30154
|
id: string;
|
29998
30155
|
createdAt: Date;
|
@@ -30003,6 +30160,7 @@ export declare const mainChatContract: {
|
|
30003
30160
|
bucketName: string;
|
30004
30161
|
fileSize: number;
|
30005
30162
|
fileUrl: string | null;
|
30163
|
+
status?: string | undefined;
|
30006
30164
|
}, {
|
30007
30165
|
id: string;
|
30008
30166
|
createdAt: Date;
|
@@ -30013,6 +30171,7 @@ export declare const mainChatContract: {
|
|
30013
30171
|
bucketName: string;
|
30014
30172
|
fileSize: number;
|
30015
30173
|
fileUrl: string | null;
|
30174
|
+
status?: string | undefined;
|
30016
30175
|
}>;
|
30017
30176
|
}, "strip", z.ZodTypeAny, {
|
30018
30177
|
id: string;
|
@@ -30030,6 +30189,7 @@ export declare const mainChatContract: {
|
|
30030
30189
|
bucketName: string;
|
30031
30190
|
fileSize: number;
|
30032
30191
|
fileUrl: string | null;
|
30192
|
+
status?: string | undefined;
|
30033
30193
|
};
|
30034
30194
|
}, {
|
30035
30195
|
id: string;
|
@@ -30047,6 +30207,7 @@ export declare const mainChatContract: {
|
|
30047
30207
|
bucketName: string;
|
30048
30208
|
fileSize: number;
|
30049
30209
|
fileUrl: string | null;
|
30210
|
+
status?: string | undefined;
|
30050
30211
|
};
|
30051
30212
|
}>, "many">;
|
30052
30213
|
}, "strip", z.ZodTypeAny, {
|
@@ -30088,6 +30249,7 @@ export declare const mainChatContract: {
|
|
30088
30249
|
bucketName: string;
|
30089
30250
|
fileSize: number;
|
30090
30251
|
fileUrl: string | null;
|
30252
|
+
status?: string | undefined;
|
30091
30253
|
};
|
30092
30254
|
}[];
|
30093
30255
|
}, {
|
@@ -30129,6 +30291,7 @@ export declare const mainChatContract: {
|
|
30129
30291
|
bucketName: string;
|
30130
30292
|
fileSize: number;
|
30131
30293
|
fileUrl: string | null;
|
30294
|
+
status?: string | undefined;
|
30132
30295
|
};
|
30133
30296
|
}[];
|
30134
30297
|
}>, "many">;
|
@@ -30283,6 +30446,7 @@ export declare const mainChatContract: {
|
|
30283
30446
|
bucketName: string;
|
30284
30447
|
fileSize: number;
|
30285
30448
|
fileUrl: string | null;
|
30449
|
+
status?: string | undefined;
|
30286
30450
|
};
|
30287
30451
|
}[];
|
30288
30452
|
}[];
|
@@ -30385,6 +30549,7 @@ export declare const mainChatContract: {
|
|
30385
30549
|
bucketName: string;
|
30386
30550
|
fileSize: number;
|
30387
30551
|
fileUrl: string | null;
|
30552
|
+
status?: string | undefined;
|
30388
30553
|
};
|
30389
30554
|
}[];
|
30390
30555
|
}[];
|
@@ -30539,6 +30704,7 @@ export declare const mainChatContract: {
|
|
30539
30704
|
bucketName: string;
|
30540
30705
|
fileSize: number;
|
30541
30706
|
fileUrl: string | null;
|
30707
|
+
status?: string | undefined;
|
30542
30708
|
};
|
30543
30709
|
}[];
|
30544
30710
|
}[];
|
@@ -30662,6 +30828,7 @@ export declare const mainChatContract: {
|
|
30662
30828
|
bucketName: string;
|
30663
30829
|
fileSize: number;
|
30664
30830
|
fileUrl: string | null;
|
30831
|
+
status?: string | undefined;
|
30665
30832
|
};
|
30666
30833
|
}[];
|
30667
30834
|
}[];
|
@@ -30961,6 +31128,7 @@ export declare const mainChatContract: {
|
|
30961
31128
|
bucketName: string;
|
30962
31129
|
fileSize: number;
|
30963
31130
|
fileUrl: string | null;
|
31131
|
+
status?: string | undefined;
|
30964
31132
|
};
|
30965
31133
|
}[];
|
30966
31134
|
}[];
|
@@ -31084,6 +31252,7 @@ export declare const mainChatContract: {
|
|
31084
31252
|
bucketName: string;
|
31085
31253
|
fileSize: number;
|
31086
31254
|
fileUrl: string | null;
|
31255
|
+
status?: string | undefined;
|
31087
31256
|
};
|
31088
31257
|
}[];
|
31089
31258
|
}[];
|
@@ -31385,6 +31554,7 @@ export declare const mainChatContract: {
|
|
31385
31554
|
bucketName: string;
|
31386
31555
|
fileSize: number;
|
31387
31556
|
fileUrl: string | null;
|
31557
|
+
status?: string | undefined;
|
31388
31558
|
};
|
31389
31559
|
}[];
|
31390
31560
|
}[];
|
@@ -31508,6 +31678,7 @@ export declare const mainChatContract: {
|
|
31508
31678
|
bucketName: string;
|
31509
31679
|
fileSize: number;
|
31510
31680
|
fileUrl: string | null;
|
31681
|
+
status?: string | undefined;
|
31511
31682
|
};
|
31512
31683
|
}[];
|
31513
31684
|
}[];
|
@@ -31810,6 +31981,7 @@ export declare const mainChatContract: {
|
|
31810
31981
|
bucketName: string;
|
31811
31982
|
fileSize: number;
|
31812
31983
|
fileUrl: string | null;
|
31984
|
+
status?: string | undefined;
|
31813
31985
|
};
|
31814
31986
|
}[];
|
31815
31987
|
}[];
|
@@ -31933,6 +32105,7 @@ export declare const mainChatContract: {
|
|
31933
32105
|
bucketName: string;
|
31934
32106
|
fileSize: number;
|
31935
32107
|
fileUrl: string | null;
|
32108
|
+
status?: string | undefined;
|
31936
32109
|
};
|
31937
32110
|
}[];
|
31938
32111
|
}[];
|
@@ -33073,6 +33246,7 @@ export declare const mainChatContract: {
|
|
33073
33246
|
fileSize: z.ZodNumber;
|
33074
33247
|
fileKey: z.ZodString;
|
33075
33248
|
fileUrl: z.ZodNullable<z.ZodString>;
|
33249
|
+
status: z.ZodOptional<z.ZodString>;
|
33076
33250
|
}, "strip", z.ZodTypeAny, {
|
33077
33251
|
id: string;
|
33078
33252
|
createdAt: Date;
|
@@ -33083,6 +33257,7 @@ export declare const mainChatContract: {
|
|
33083
33257
|
bucketName: string;
|
33084
33258
|
fileSize: number;
|
33085
33259
|
fileUrl: string | null;
|
33260
|
+
status?: string | undefined;
|
33086
33261
|
}, {
|
33087
33262
|
id: string;
|
33088
33263
|
createdAt: Date;
|
@@ -33093,6 +33268,7 @@ export declare const mainChatContract: {
|
|
33093
33268
|
bucketName: string;
|
33094
33269
|
fileSize: number;
|
33095
33270
|
fileUrl: string | null;
|
33271
|
+
status?: string | undefined;
|
33096
33272
|
}>;
|
33097
33273
|
}, "strip", z.ZodTypeAny, {
|
33098
33274
|
id: string;
|
@@ -33110,6 +33286,7 @@ export declare const mainChatContract: {
|
|
33110
33286
|
bucketName: string;
|
33111
33287
|
fileSize: number;
|
33112
33288
|
fileUrl: string | null;
|
33289
|
+
status?: string | undefined;
|
33113
33290
|
};
|
33114
33291
|
}, {
|
33115
33292
|
id: string;
|
@@ -33127,6 +33304,7 @@ export declare const mainChatContract: {
|
|
33127
33304
|
bucketName: string;
|
33128
33305
|
fileSize: number;
|
33129
33306
|
fileUrl: string | null;
|
33307
|
+
status?: string | undefined;
|
33130
33308
|
};
|
33131
33309
|
}>, "many">;
|
33132
33310
|
}, "strip", z.ZodTypeAny, {
|
@@ -33168,6 +33346,7 @@ export declare const mainChatContract: {
|
|
33168
33346
|
bucketName: string;
|
33169
33347
|
fileSize: number;
|
33170
33348
|
fileUrl: string | null;
|
33349
|
+
status?: string | undefined;
|
33171
33350
|
};
|
33172
33351
|
}[];
|
33173
33352
|
}, {
|
@@ -33209,6 +33388,7 @@ export declare const mainChatContract: {
|
|
33209
33388
|
bucketName: string;
|
33210
33389
|
fileSize: number;
|
33211
33390
|
fileUrl: string | null;
|
33391
|
+
status?: string | undefined;
|
33212
33392
|
};
|
33213
33393
|
}[];
|
33214
33394
|
}>, "many">;
|
@@ -33363,6 +33543,7 @@ export declare const mainChatContract: {
|
|
33363
33543
|
bucketName: string;
|
33364
33544
|
fileSize: number;
|
33365
33545
|
fileUrl: string | null;
|
33546
|
+
status?: string | undefined;
|
33366
33547
|
};
|
33367
33548
|
}[];
|
33368
33549
|
}[];
|
@@ -33465,6 +33646,7 @@ export declare const mainChatContract: {
|
|
33465
33646
|
bucketName: string;
|
33466
33647
|
fileSize: number;
|
33467
33648
|
fileUrl: string | null;
|
33649
|
+
status?: string | undefined;
|
33468
33650
|
};
|
33469
33651
|
}[];
|
33470
33652
|
}[];
|
@@ -33581,6 +33763,7 @@ export declare const mainChatContract: {
|
|
33581
33763
|
bucketName: string;
|
33582
33764
|
fileSize: number;
|
33583
33765
|
fileUrl: string | null;
|
33766
|
+
status?: string | undefined;
|
33584
33767
|
};
|
33585
33768
|
}[];
|
33586
33769
|
}[];
|
@@ -33698,6 +33881,7 @@ export declare const mainChatContract: {
|
|
33698
33881
|
bucketName: string;
|
33699
33882
|
fileSize: number;
|
33700
33883
|
fileUrl: string | null;
|
33884
|
+
status?: string | undefined;
|
33701
33885
|
};
|
33702
33886
|
}[];
|
33703
33887
|
}[];
|
@@ -34226,6 +34410,7 @@ export declare const mainChatContract: {
|
|
34226
34410
|
bucketName: string;
|
34227
34411
|
fileSize: number;
|
34228
34412
|
fileUrl: string | null;
|
34413
|
+
status?: string | undefined;
|
34229
34414
|
};
|
34230
34415
|
}[];
|
34231
34416
|
}[];
|
@@ -34545,6 +34730,7 @@ export declare const mainChatContract: {
|
|
34545
34730
|
bucketName: string;
|
34546
34731
|
fileSize: number;
|
34547
34732
|
fileUrl: string | null;
|
34733
|
+
status?: string | undefined;
|
34548
34734
|
};
|
34549
34735
|
}[];
|
34550
34736
|
}[];
|
@@ -34866,6 +35052,7 @@ export declare const mainChatContract: {
|
|
34866
35052
|
bucketName: string;
|
34867
35053
|
fileSize: number;
|
34868
35054
|
fileUrl: string | null;
|
35055
|
+
status?: string | undefined;
|
34869
35056
|
};
|
34870
35057
|
}[];
|
34871
35058
|
}[];
|
@@ -35188,6 +35375,7 @@ export declare const mainChatContract: {
|
|
35188
35375
|
bucketName: string;
|
35189
35376
|
fileSize: number;
|
35190
35377
|
fileUrl: string | null;
|
35378
|
+
status?: string | undefined;
|
35191
35379
|
};
|
35192
35380
|
}[];
|
35193
35381
|
}[];
|
@@ -35771,6 +35959,7 @@ export declare const mainChatContract: {
|
|
35771
35959
|
fileSize: z.ZodNumber;
|
35772
35960
|
fileKey: z.ZodString;
|
35773
35961
|
fileUrl: z.ZodNullable<z.ZodString>;
|
35962
|
+
status: z.ZodOptional<z.ZodString>;
|
35774
35963
|
}, "strip", z.ZodTypeAny, {
|
35775
35964
|
id: string;
|
35776
35965
|
createdAt: Date;
|
@@ -35781,6 +35970,7 @@ export declare const mainChatContract: {
|
|
35781
35970
|
bucketName: string;
|
35782
35971
|
fileSize: number;
|
35783
35972
|
fileUrl: string | null;
|
35973
|
+
status?: string | undefined;
|
35784
35974
|
}, {
|
35785
35975
|
id: string;
|
35786
35976
|
createdAt: Date;
|
@@ -35791,6 +35981,7 @@ export declare const mainChatContract: {
|
|
35791
35981
|
bucketName: string;
|
35792
35982
|
fileSize: number;
|
35793
35983
|
fileUrl: string | null;
|
35984
|
+
status?: string | undefined;
|
35794
35985
|
}>;
|
35795
35986
|
}, "strip", z.ZodTypeAny, {
|
35796
35987
|
id: string;
|
@@ -35808,6 +35999,7 @@ export declare const mainChatContract: {
|
|
35808
35999
|
bucketName: string;
|
35809
36000
|
fileSize: number;
|
35810
36001
|
fileUrl: string | null;
|
36002
|
+
status?: string | undefined;
|
35811
36003
|
};
|
35812
36004
|
}, {
|
35813
36005
|
id: string;
|
@@ -35825,6 +36017,7 @@ export declare const mainChatContract: {
|
|
35825
36017
|
bucketName: string;
|
35826
36018
|
fileSize: number;
|
35827
36019
|
fileUrl: string | null;
|
36020
|
+
status?: string | undefined;
|
35828
36021
|
};
|
35829
36022
|
}>, "many">;
|
35830
36023
|
}, "strip", z.ZodTypeAny, {
|
@@ -35866,6 +36059,7 @@ export declare const mainChatContract: {
|
|
35866
36059
|
bucketName: string;
|
35867
36060
|
fileSize: number;
|
35868
36061
|
fileUrl: string | null;
|
36062
|
+
status?: string | undefined;
|
35869
36063
|
};
|
35870
36064
|
}[];
|
35871
36065
|
}, {
|
@@ -35907,6 +36101,7 @@ export declare const mainChatContract: {
|
|
35907
36101
|
bucketName: string;
|
35908
36102
|
fileSize: number;
|
35909
36103
|
fileUrl: string | null;
|
36104
|
+
status?: string | undefined;
|
35910
36105
|
};
|
35911
36106
|
}[];
|
35912
36107
|
}>, "many">;
|
@@ -36061,6 +36256,7 @@ export declare const mainChatContract: {
|
|
36061
36256
|
bucketName: string;
|
36062
36257
|
fileSize: number;
|
36063
36258
|
fileUrl: string | null;
|
36259
|
+
status?: string | undefined;
|
36064
36260
|
};
|
36065
36261
|
}[];
|
36066
36262
|
}[];
|
@@ -36163,6 +36359,7 @@ export declare const mainChatContract: {
|
|
36163
36359
|
bucketName: string;
|
36164
36360
|
fileSize: number;
|
36165
36361
|
fileUrl: string | null;
|
36362
|
+
status?: string | undefined;
|
36166
36363
|
};
|
36167
36364
|
}[];
|
36168
36365
|
}[];
|
@@ -36279,6 +36476,7 @@ export declare const mainChatContract: {
|
|
36279
36476
|
bucketName: string;
|
36280
36477
|
fileSize: number;
|
36281
36478
|
fileUrl: string | null;
|
36479
|
+
status?: string | undefined;
|
36282
36480
|
};
|
36283
36481
|
}[];
|
36284
36482
|
}[];
|
@@ -36396,6 +36594,7 @@ export declare const mainChatContract: {
|
|
36396
36594
|
bucketName: string;
|
36397
36595
|
fileSize: number;
|
36398
36596
|
fileUrl: string | null;
|
36597
|
+
status?: string | undefined;
|
36399
36598
|
};
|
36400
36599
|
}[];
|
36401
36600
|
}[];
|
@@ -37486,6 +37685,7 @@ export declare const mainChatContract: {
|
|
37486
37685
|
bucketName: string;
|
37487
37686
|
fileSize: number;
|
37488
37687
|
fileUrl: string | null;
|
37688
|
+
status?: string | undefined;
|
37489
37689
|
};
|
37490
37690
|
}[];
|
37491
37691
|
}[];
|
@@ -37804,6 +38004,7 @@ export declare const mainChatContract: {
|
|
37804
38004
|
bucketName: string;
|
37805
38005
|
fileSize: number;
|
37806
38006
|
fileUrl: string | null;
|
38007
|
+
status?: string | undefined;
|
37807
38008
|
};
|
37808
38009
|
}[];
|
37809
38010
|
}[];
|
@@ -38124,6 +38325,7 @@ export declare const mainChatContract: {
|
|
38124
38325
|
bucketName: string;
|
38125
38326
|
fileSize: number;
|
38126
38327
|
fileUrl: string | null;
|
38328
|
+
status?: string | undefined;
|
38127
38329
|
};
|
38128
38330
|
}[];
|
38129
38331
|
}[];
|
@@ -38448,6 +38650,7 @@ export declare const mainChatContract: {
|
|
38448
38650
|
bucketName: string;
|
38449
38651
|
fileSize: number;
|
38450
38652
|
fileUrl: string | null;
|
38653
|
+
status?: string | undefined;
|
38451
38654
|
};
|
38452
38655
|
}[];
|
38453
38656
|
}[];
|