@kl1/contracts 1.0.33 → 1.0.35
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 +101 -26
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +101 -26
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +564 -1
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +11644 -11982
- 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 +896 -1401
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +155 -395
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +45 -117
- 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 +1887 -6248
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +127 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +101 -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/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 +280 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +112 -1
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +53 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/validation.d.ts +46 -0
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +245 -629
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +60 -168
- 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 +46 -47
@@ -488,67 +488,31 @@ export declare const commentContract: {
|
|
488
488
|
createdAt: z.ZodDate;
|
489
489
|
updatedAt: z.ZodDate;
|
490
490
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
497
|
-
bucketName: z.ZodString;
|
498
|
-
fileName: z.ZodString;
|
499
|
-
fileSize: z.ZodNumber;
|
500
|
-
fileKey: z.ZodString;
|
501
|
-
}, "strip", z.ZodTypeAny, {
|
502
|
-
id: string;
|
503
|
-
createdAt: Date;
|
504
|
-
updatedAt: Date;
|
505
|
-
deletedAt: Date | null;
|
506
|
-
fileName: string;
|
507
|
-
fileKey: string;
|
508
|
-
bucketName: string;
|
509
|
-
fileSize: number;
|
510
|
-
}, {
|
511
|
-
id: string;
|
512
|
-
createdAt: Date;
|
513
|
-
updatedAt: Date;
|
514
|
-
deletedAt: Date | null;
|
515
|
-
fileName: string;
|
516
|
-
fileKey: string;
|
517
|
-
bucketName: string;
|
518
|
-
fileSize: number;
|
519
|
-
}>;
|
491
|
+
bucketName: z.ZodString;
|
492
|
+
fileName: z.ZodString;
|
493
|
+
fileSize: z.ZodNumber;
|
494
|
+
fileKey: z.ZodString;
|
495
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
520
496
|
}, "strip", z.ZodTypeAny, {
|
521
497
|
id: string;
|
522
498
|
createdAt: Date;
|
523
499
|
updatedAt: Date;
|
524
500
|
deletedAt: Date | null;
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
deletedAt: Date | null;
|
531
|
-
fileName: string;
|
532
|
-
fileKey: string;
|
533
|
-
bucketName: string;
|
534
|
-
fileSize: number;
|
535
|
-
};
|
501
|
+
fileName: string;
|
502
|
+
fileKey: string;
|
503
|
+
bucketName: string;
|
504
|
+
fileSize: number;
|
505
|
+
fileUrl: string | null;
|
536
506
|
}, {
|
537
507
|
id: string;
|
538
508
|
createdAt: Date;
|
539
509
|
updatedAt: Date;
|
540
510
|
deletedAt: Date | null;
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
deletedAt: Date | null;
|
547
|
-
fileName: string;
|
548
|
-
fileKey: string;
|
549
|
-
bucketName: string;
|
550
|
-
fileSize: number;
|
551
|
-
};
|
511
|
+
fileName: string;
|
512
|
+
fileKey: string;
|
513
|
+
bucketName: string;
|
514
|
+
fileSize: number;
|
515
|
+
fileUrl: string | null;
|
552
516
|
}>, "many">;
|
553
517
|
}, "strip", z.ZodTypeAny, {
|
554
518
|
id: string;
|
@@ -578,17 +542,11 @@ export declare const commentContract: {
|
|
578
542
|
createdAt: Date;
|
579
543
|
updatedAt: Date;
|
580
544
|
deletedAt: Date | null;
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
deletedAt: Date | null;
|
587
|
-
fileName: string;
|
588
|
-
fileKey: string;
|
589
|
-
bucketName: string;
|
590
|
-
fileSize: number;
|
591
|
-
};
|
545
|
+
fileName: string;
|
546
|
+
fileKey: string;
|
547
|
+
bucketName: string;
|
548
|
+
fileSize: number;
|
549
|
+
fileUrl: string | null;
|
592
550
|
}[];
|
593
551
|
}, {
|
594
552
|
id: string;
|
@@ -618,17 +576,11 @@ export declare const commentContract: {
|
|
618
576
|
createdAt: Date;
|
619
577
|
updatedAt: Date;
|
620
578
|
deletedAt: Date | null;
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
deletedAt: Date | null;
|
627
|
-
fileName: string;
|
628
|
-
fileKey: string;
|
629
|
-
bucketName: string;
|
630
|
-
fileSize: number;
|
631
|
-
};
|
579
|
+
fileName: string;
|
580
|
+
fileKey: string;
|
581
|
+
bucketName: string;
|
582
|
+
fileSize: number;
|
583
|
+
fileUrl: string | null;
|
632
584
|
}[];
|
633
585
|
}>, "many">;
|
634
586
|
}, "strip", z.ZodTypeAny, {
|
@@ -670,17 +622,11 @@ export declare const commentContract: {
|
|
670
622
|
createdAt: Date;
|
671
623
|
updatedAt: Date;
|
672
624
|
deletedAt: Date | null;
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
deletedAt: Date | null;
|
679
|
-
fileName: string;
|
680
|
-
fileKey: string;
|
681
|
-
bucketName: string;
|
682
|
-
fileSize: number;
|
683
|
-
};
|
625
|
+
fileName: string;
|
626
|
+
fileKey: string;
|
627
|
+
bucketName: string;
|
628
|
+
fileSize: number;
|
629
|
+
fileUrl: string | null;
|
684
630
|
}[];
|
685
631
|
}[];
|
686
632
|
contactId: string;
|
@@ -727,17 +673,11 @@ export declare const commentContract: {
|
|
727
673
|
createdAt: Date;
|
728
674
|
updatedAt: Date;
|
729
675
|
deletedAt: Date | null;
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
deletedAt: Date | null;
|
736
|
-
fileName: string;
|
737
|
-
fileKey: string;
|
738
|
-
bucketName: string;
|
739
|
-
fileSize: number;
|
740
|
-
};
|
676
|
+
fileName: string;
|
677
|
+
fileKey: string;
|
678
|
+
bucketName: string;
|
679
|
+
fileSize: number;
|
680
|
+
fileUrl: string | null;
|
741
681
|
}[];
|
742
682
|
}[];
|
743
683
|
contactId: string;
|
@@ -1091,17 +1031,11 @@ export declare const commentContract: {
|
|
1091
1031
|
createdAt: Date;
|
1092
1032
|
updatedAt: Date;
|
1093
1033
|
deletedAt: Date | null;
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
deletedAt: Date | null;
|
1100
|
-
fileName: string;
|
1101
|
-
fileKey: string;
|
1102
|
-
bucketName: string;
|
1103
|
-
fileSize: number;
|
1104
|
-
};
|
1034
|
+
fileName: string;
|
1035
|
+
fileKey: string;
|
1036
|
+
bucketName: string;
|
1037
|
+
fileSize: number;
|
1038
|
+
fileUrl: string | null;
|
1105
1039
|
}[];
|
1106
1040
|
}[];
|
1107
1041
|
contactId: string;
|
@@ -1258,17 +1192,11 @@ export declare const commentContract: {
|
|
1258
1192
|
createdAt: Date;
|
1259
1193
|
updatedAt: Date;
|
1260
1194
|
deletedAt: Date | null;
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
deletedAt: Date | null;
|
1267
|
-
fileName: string;
|
1268
|
-
fileKey: string;
|
1269
|
-
bucketName: string;
|
1270
|
-
fileSize: number;
|
1271
|
-
};
|
1195
|
+
fileName: string;
|
1196
|
+
fileKey: string;
|
1197
|
+
bucketName: string;
|
1198
|
+
fileSize: number;
|
1199
|
+
fileUrl: string | null;
|
1272
1200
|
}[];
|
1273
1201
|
}[];
|
1274
1202
|
contactId: string;
|
@@ -1428,17 +1356,11 @@ export declare const commentContract: {
|
|
1428
1356
|
createdAt: Date;
|
1429
1357
|
updatedAt: Date;
|
1430
1358
|
deletedAt: Date | null;
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
|
1435
|
-
|
1436
|
-
deletedAt: Date | null;
|
1437
|
-
fileName: string;
|
1438
|
-
fileKey: string;
|
1439
|
-
bucketName: string;
|
1440
|
-
fileSize: number;
|
1441
|
-
};
|
1359
|
+
fileName: string;
|
1360
|
+
fileKey: string;
|
1361
|
+
bucketName: string;
|
1362
|
+
fileSize: number;
|
1363
|
+
fileUrl: string | null;
|
1442
1364
|
}[];
|
1443
1365
|
}[];
|
1444
1366
|
contactId: string;
|
@@ -1598,17 +1520,11 @@ export declare const commentContract: {
|
|
1598
1520
|
createdAt: Date;
|
1599
1521
|
updatedAt: Date;
|
1600
1522
|
deletedAt: Date | null;
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1606
|
-
deletedAt: Date | null;
|
1607
|
-
fileName: string;
|
1608
|
-
fileKey: string;
|
1609
|
-
bucketName: string;
|
1610
|
-
fileSize: number;
|
1611
|
-
};
|
1523
|
+
fileName: string;
|
1524
|
+
fileKey: string;
|
1525
|
+
bucketName: string;
|
1526
|
+
fileSize: number;
|
1527
|
+
fileUrl: string | null;
|
1612
1528
|
}[];
|
1613
1529
|
}[];
|
1614
1530
|
contactId: string;
|
@@ -2144,67 +2060,31 @@ export declare const commentContract: {
|
|
2144
2060
|
createdAt: z.ZodDate;
|
2145
2061
|
updatedAt: z.ZodDate;
|
2146
2062
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
2147
|
-
|
2148
|
-
|
2149
|
-
|
2150
|
-
|
2151
|
-
|
2152
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
2153
|
-
bucketName: z.ZodString;
|
2154
|
-
fileName: z.ZodString;
|
2155
|
-
fileSize: z.ZodNumber;
|
2156
|
-
fileKey: z.ZodString;
|
2157
|
-
}, "strip", z.ZodTypeAny, {
|
2158
|
-
id: string;
|
2159
|
-
createdAt: Date;
|
2160
|
-
updatedAt: Date;
|
2161
|
-
deletedAt: Date | null;
|
2162
|
-
fileName: string;
|
2163
|
-
fileKey: string;
|
2164
|
-
bucketName: string;
|
2165
|
-
fileSize: number;
|
2166
|
-
}, {
|
2167
|
-
id: string;
|
2168
|
-
createdAt: Date;
|
2169
|
-
updatedAt: Date;
|
2170
|
-
deletedAt: Date | null;
|
2171
|
-
fileName: string;
|
2172
|
-
fileKey: string;
|
2173
|
-
bucketName: string;
|
2174
|
-
fileSize: number;
|
2175
|
-
}>;
|
2063
|
+
bucketName: z.ZodString;
|
2064
|
+
fileName: z.ZodString;
|
2065
|
+
fileSize: z.ZodNumber;
|
2066
|
+
fileKey: z.ZodString;
|
2067
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
2176
2068
|
}, "strip", z.ZodTypeAny, {
|
2177
2069
|
id: string;
|
2178
2070
|
createdAt: Date;
|
2179
2071
|
updatedAt: Date;
|
2180
2072
|
deletedAt: Date | null;
|
2181
|
-
|
2182
|
-
|
2183
|
-
|
2184
|
-
|
2185
|
-
|
2186
|
-
deletedAt: Date | null;
|
2187
|
-
fileName: string;
|
2188
|
-
fileKey: string;
|
2189
|
-
bucketName: string;
|
2190
|
-
fileSize: number;
|
2191
|
-
};
|
2073
|
+
fileName: string;
|
2074
|
+
fileKey: string;
|
2075
|
+
bucketName: string;
|
2076
|
+
fileSize: number;
|
2077
|
+
fileUrl: string | null;
|
2192
2078
|
}, {
|
2193
2079
|
id: string;
|
2194
2080
|
createdAt: Date;
|
2195
2081
|
updatedAt: Date;
|
2196
2082
|
deletedAt: Date | null;
|
2197
|
-
|
2198
|
-
|
2199
|
-
|
2200
|
-
|
2201
|
-
|
2202
|
-
deletedAt: Date | null;
|
2203
|
-
fileName: string;
|
2204
|
-
fileKey: string;
|
2205
|
-
bucketName: string;
|
2206
|
-
fileSize: number;
|
2207
|
-
};
|
2083
|
+
fileName: string;
|
2084
|
+
fileKey: string;
|
2085
|
+
bucketName: string;
|
2086
|
+
fileSize: number;
|
2087
|
+
fileUrl: string | null;
|
2208
2088
|
}>, "many">;
|
2209
2089
|
}, "strip", z.ZodTypeAny, {
|
2210
2090
|
id: string;
|
@@ -2234,17 +2114,11 @@ export declare const commentContract: {
|
|
2234
2114
|
createdAt: Date;
|
2235
2115
|
updatedAt: Date;
|
2236
2116
|
deletedAt: Date | null;
|
2237
|
-
|
2238
|
-
|
2239
|
-
|
2240
|
-
|
2241
|
-
|
2242
|
-
deletedAt: Date | null;
|
2243
|
-
fileName: string;
|
2244
|
-
fileKey: string;
|
2245
|
-
bucketName: string;
|
2246
|
-
fileSize: number;
|
2247
|
-
};
|
2117
|
+
fileName: string;
|
2118
|
+
fileKey: string;
|
2119
|
+
bucketName: string;
|
2120
|
+
fileSize: number;
|
2121
|
+
fileUrl: string | null;
|
2248
2122
|
}[];
|
2249
2123
|
}, {
|
2250
2124
|
id: string;
|
@@ -2274,17 +2148,11 @@ export declare const commentContract: {
|
|
2274
2148
|
createdAt: Date;
|
2275
2149
|
updatedAt: Date;
|
2276
2150
|
deletedAt: Date | null;
|
2277
|
-
|
2278
|
-
|
2279
|
-
|
2280
|
-
|
2281
|
-
|
2282
|
-
deletedAt: Date | null;
|
2283
|
-
fileName: string;
|
2284
|
-
fileKey: string;
|
2285
|
-
bucketName: string;
|
2286
|
-
fileSize: number;
|
2287
|
-
};
|
2151
|
+
fileName: string;
|
2152
|
+
fileKey: string;
|
2153
|
+
bucketName: string;
|
2154
|
+
fileSize: number;
|
2155
|
+
fileUrl: string | null;
|
2288
2156
|
}[];
|
2289
2157
|
}>, "many">;
|
2290
2158
|
}, "strip", z.ZodTypeAny, {
|
@@ -2326,17 +2194,11 @@ export declare const commentContract: {
|
|
2326
2194
|
createdAt: Date;
|
2327
2195
|
updatedAt: Date;
|
2328
2196
|
deletedAt: Date | null;
|
2329
|
-
|
2330
|
-
|
2331
|
-
|
2332
|
-
|
2333
|
-
|
2334
|
-
deletedAt: Date | null;
|
2335
|
-
fileName: string;
|
2336
|
-
fileKey: string;
|
2337
|
-
bucketName: string;
|
2338
|
-
fileSize: number;
|
2339
|
-
};
|
2197
|
+
fileName: string;
|
2198
|
+
fileKey: string;
|
2199
|
+
bucketName: string;
|
2200
|
+
fileSize: number;
|
2201
|
+
fileUrl: string | null;
|
2340
2202
|
}[];
|
2341
2203
|
}[];
|
2342
2204
|
contactId: string;
|
@@ -2383,17 +2245,11 @@ export declare const commentContract: {
|
|
2383
2245
|
createdAt: Date;
|
2384
2246
|
updatedAt: Date;
|
2385
2247
|
deletedAt: Date | null;
|
2386
|
-
|
2387
|
-
|
2388
|
-
|
2389
|
-
|
2390
|
-
|
2391
|
-
deletedAt: Date | null;
|
2392
|
-
fileName: string;
|
2393
|
-
fileKey: string;
|
2394
|
-
bucketName: string;
|
2395
|
-
fileSize: number;
|
2396
|
-
};
|
2248
|
+
fileName: string;
|
2249
|
+
fileKey: string;
|
2250
|
+
bucketName: string;
|
2251
|
+
fileSize: number;
|
2252
|
+
fileUrl: string | null;
|
2397
2253
|
}[];
|
2398
2254
|
}[];
|
2399
2255
|
contactId: string;
|
@@ -2747,17 +2603,11 @@ export declare const commentContract: {
|
|
2747
2603
|
createdAt: Date;
|
2748
2604
|
updatedAt: Date;
|
2749
2605
|
deletedAt: Date | null;
|
2750
|
-
|
2751
|
-
|
2752
|
-
|
2753
|
-
|
2754
|
-
|
2755
|
-
deletedAt: Date | null;
|
2756
|
-
fileName: string;
|
2757
|
-
fileKey: string;
|
2758
|
-
bucketName: string;
|
2759
|
-
fileSize: number;
|
2760
|
-
};
|
2606
|
+
fileName: string;
|
2607
|
+
fileKey: string;
|
2608
|
+
bucketName: string;
|
2609
|
+
fileSize: number;
|
2610
|
+
fileUrl: string | null;
|
2761
2611
|
}[];
|
2762
2612
|
}[];
|
2763
2613
|
contactId: string;
|
@@ -2914,17 +2764,11 @@ export declare const commentContract: {
|
|
2914
2764
|
createdAt: Date;
|
2915
2765
|
updatedAt: Date;
|
2916
2766
|
deletedAt: Date | null;
|
2917
|
-
|
2918
|
-
|
2919
|
-
|
2920
|
-
|
2921
|
-
|
2922
|
-
deletedAt: Date | null;
|
2923
|
-
fileName: string;
|
2924
|
-
fileKey: string;
|
2925
|
-
bucketName: string;
|
2926
|
-
fileSize: number;
|
2927
|
-
};
|
2767
|
+
fileName: string;
|
2768
|
+
fileKey: string;
|
2769
|
+
bucketName: string;
|
2770
|
+
fileSize: number;
|
2771
|
+
fileUrl: string | null;
|
2928
2772
|
}[];
|
2929
2773
|
}[];
|
2930
2774
|
contactId: string;
|
@@ -3471,67 +3315,31 @@ export declare const commentContract: {
|
|
3471
3315
|
createdAt: z.ZodDate;
|
3472
3316
|
updatedAt: z.ZodDate;
|
3473
3317
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
3474
|
-
|
3475
|
-
|
3476
|
-
|
3477
|
-
|
3478
|
-
|
3479
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
3480
|
-
bucketName: z.ZodString;
|
3481
|
-
fileName: z.ZodString;
|
3482
|
-
fileSize: z.ZodNumber;
|
3483
|
-
fileKey: z.ZodString;
|
3484
|
-
}, "strip", z.ZodTypeAny, {
|
3485
|
-
id: string;
|
3486
|
-
createdAt: Date;
|
3487
|
-
updatedAt: Date;
|
3488
|
-
deletedAt: Date | null;
|
3489
|
-
fileName: string;
|
3490
|
-
fileKey: string;
|
3491
|
-
bucketName: string;
|
3492
|
-
fileSize: number;
|
3493
|
-
}, {
|
3494
|
-
id: string;
|
3495
|
-
createdAt: Date;
|
3496
|
-
updatedAt: Date;
|
3497
|
-
deletedAt: Date | null;
|
3498
|
-
fileName: string;
|
3499
|
-
fileKey: string;
|
3500
|
-
bucketName: string;
|
3501
|
-
fileSize: number;
|
3502
|
-
}>;
|
3318
|
+
bucketName: z.ZodString;
|
3319
|
+
fileName: z.ZodString;
|
3320
|
+
fileSize: z.ZodNumber;
|
3321
|
+
fileKey: z.ZodString;
|
3322
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
3503
3323
|
}, "strip", z.ZodTypeAny, {
|
3504
3324
|
id: string;
|
3505
3325
|
createdAt: Date;
|
3506
3326
|
updatedAt: Date;
|
3507
3327
|
deletedAt: Date | null;
|
3508
|
-
|
3509
|
-
|
3510
|
-
|
3511
|
-
|
3512
|
-
|
3513
|
-
deletedAt: Date | null;
|
3514
|
-
fileName: string;
|
3515
|
-
fileKey: string;
|
3516
|
-
bucketName: string;
|
3517
|
-
fileSize: number;
|
3518
|
-
};
|
3328
|
+
fileName: string;
|
3329
|
+
fileKey: string;
|
3330
|
+
bucketName: string;
|
3331
|
+
fileSize: number;
|
3332
|
+
fileUrl: string | null;
|
3519
3333
|
}, {
|
3520
3334
|
id: string;
|
3521
3335
|
createdAt: Date;
|
3522
3336
|
updatedAt: Date;
|
3523
3337
|
deletedAt: Date | null;
|
3524
|
-
|
3525
|
-
|
3526
|
-
|
3527
|
-
|
3528
|
-
|
3529
|
-
deletedAt: Date | null;
|
3530
|
-
fileName: string;
|
3531
|
-
fileKey: string;
|
3532
|
-
bucketName: string;
|
3533
|
-
fileSize: number;
|
3534
|
-
};
|
3338
|
+
fileName: string;
|
3339
|
+
fileKey: string;
|
3340
|
+
bucketName: string;
|
3341
|
+
fileSize: number;
|
3342
|
+
fileUrl: string | null;
|
3535
3343
|
}>, "many">;
|
3536
3344
|
}, "strip", z.ZodTypeAny, {
|
3537
3345
|
id: string;
|
@@ -3561,17 +3369,11 @@ export declare const commentContract: {
|
|
3561
3369
|
createdAt: Date;
|
3562
3370
|
updatedAt: Date;
|
3563
3371
|
deletedAt: Date | null;
|
3564
|
-
|
3565
|
-
|
3566
|
-
|
3567
|
-
|
3568
|
-
|
3569
|
-
deletedAt: Date | null;
|
3570
|
-
fileName: string;
|
3571
|
-
fileKey: string;
|
3572
|
-
bucketName: string;
|
3573
|
-
fileSize: number;
|
3574
|
-
};
|
3372
|
+
fileName: string;
|
3373
|
+
fileKey: string;
|
3374
|
+
bucketName: string;
|
3375
|
+
fileSize: number;
|
3376
|
+
fileUrl: string | null;
|
3575
3377
|
}[];
|
3576
3378
|
}, {
|
3577
3379
|
id: string;
|
@@ -3601,17 +3403,11 @@ export declare const commentContract: {
|
|
3601
3403
|
createdAt: Date;
|
3602
3404
|
updatedAt: Date;
|
3603
3405
|
deletedAt: Date | null;
|
3604
|
-
|
3605
|
-
|
3606
|
-
|
3607
|
-
|
3608
|
-
|
3609
|
-
deletedAt: Date | null;
|
3610
|
-
fileName: string;
|
3611
|
-
fileKey: string;
|
3612
|
-
bucketName: string;
|
3613
|
-
fileSize: number;
|
3614
|
-
};
|
3406
|
+
fileName: string;
|
3407
|
+
fileKey: string;
|
3408
|
+
bucketName: string;
|
3409
|
+
fileSize: number;
|
3410
|
+
fileUrl: string | null;
|
3615
3411
|
}[];
|
3616
3412
|
}>, "many">;
|
3617
3413
|
}, "strip", z.ZodTypeAny, {
|
@@ -3653,17 +3449,11 @@ export declare const commentContract: {
|
|
3653
3449
|
createdAt: Date;
|
3654
3450
|
updatedAt: Date;
|
3655
3451
|
deletedAt: Date | null;
|
3656
|
-
|
3657
|
-
|
3658
|
-
|
3659
|
-
|
3660
|
-
|
3661
|
-
deletedAt: Date | null;
|
3662
|
-
fileName: string;
|
3663
|
-
fileKey: string;
|
3664
|
-
bucketName: string;
|
3665
|
-
fileSize: number;
|
3666
|
-
};
|
3452
|
+
fileName: string;
|
3453
|
+
fileKey: string;
|
3454
|
+
bucketName: string;
|
3455
|
+
fileSize: number;
|
3456
|
+
fileUrl: string | null;
|
3667
3457
|
}[];
|
3668
3458
|
}[];
|
3669
3459
|
contactId: string;
|
@@ -3710,17 +3500,11 @@ export declare const commentContract: {
|
|
3710
3500
|
createdAt: Date;
|
3711
3501
|
updatedAt: Date;
|
3712
3502
|
deletedAt: Date | null;
|
3713
|
-
|
3714
|
-
|
3715
|
-
|
3716
|
-
|
3717
|
-
|
3718
|
-
deletedAt: Date | null;
|
3719
|
-
fileName: string;
|
3720
|
-
fileKey: string;
|
3721
|
-
bucketName: string;
|
3722
|
-
fileSize: number;
|
3723
|
-
};
|
3503
|
+
fileName: string;
|
3504
|
+
fileKey: string;
|
3505
|
+
bucketName: string;
|
3506
|
+
fileSize: number;
|
3507
|
+
fileUrl: string | null;
|
3724
3508
|
}[];
|
3725
3509
|
}[];
|
3726
3510
|
contactId: string;
|
@@ -4074,17 +3858,11 @@ export declare const commentContract: {
|
|
4074
3858
|
createdAt: Date;
|
4075
3859
|
updatedAt: Date;
|
4076
3860
|
deletedAt: Date | null;
|
4077
|
-
|
4078
|
-
|
4079
|
-
|
4080
|
-
|
4081
|
-
|
4082
|
-
deletedAt: Date | null;
|
4083
|
-
fileName: string;
|
4084
|
-
fileKey: string;
|
4085
|
-
bucketName: string;
|
4086
|
-
fileSize: number;
|
4087
|
-
};
|
3861
|
+
fileName: string;
|
3862
|
+
fileKey: string;
|
3863
|
+
bucketName: string;
|
3864
|
+
fileSize: number;
|
3865
|
+
fileUrl: string | null;
|
4088
3866
|
}[];
|
4089
3867
|
}[];
|
4090
3868
|
contactId: string;
|
@@ -4241,17 +4019,11 @@ export declare const commentContract: {
|
|
4241
4019
|
createdAt: Date;
|
4242
4020
|
updatedAt: Date;
|
4243
4021
|
deletedAt: Date | null;
|
4244
|
-
|
4245
|
-
|
4246
|
-
|
4247
|
-
|
4248
|
-
|
4249
|
-
deletedAt: Date | null;
|
4250
|
-
fileName: string;
|
4251
|
-
fileKey: string;
|
4252
|
-
bucketName: string;
|
4253
|
-
fileSize: number;
|
4254
|
-
};
|
4022
|
+
fileName: string;
|
4023
|
+
fileKey: string;
|
4024
|
+
bucketName: string;
|
4025
|
+
fileSize: number;
|
4026
|
+
fileUrl: string | null;
|
4255
4027
|
}[];
|
4256
4028
|
}[];
|
4257
4029
|
contactId: string;
|
@@ -4411,17 +4183,11 @@ export declare const commentContract: {
|
|
4411
4183
|
createdAt: Date;
|
4412
4184
|
updatedAt: Date;
|
4413
4185
|
deletedAt: Date | null;
|
4414
|
-
|
4415
|
-
|
4416
|
-
|
4417
|
-
|
4418
|
-
|
4419
|
-
deletedAt: Date | null;
|
4420
|
-
fileName: string;
|
4421
|
-
fileKey: string;
|
4422
|
-
bucketName: string;
|
4423
|
-
fileSize: number;
|
4424
|
-
};
|
4186
|
+
fileName: string;
|
4187
|
+
fileKey: string;
|
4188
|
+
bucketName: string;
|
4189
|
+
fileSize: number;
|
4190
|
+
fileUrl: string | null;
|
4425
4191
|
}[];
|
4426
4192
|
}[];
|
4427
4193
|
contactId: string;
|
@@ -4581,17 +4347,11 @@ export declare const commentContract: {
|
|
4581
4347
|
createdAt: Date;
|
4582
4348
|
updatedAt: Date;
|
4583
4349
|
deletedAt: Date | null;
|
4584
|
-
|
4585
|
-
|
4586
|
-
|
4587
|
-
|
4588
|
-
|
4589
|
-
deletedAt: Date | null;
|
4590
|
-
fileName: string;
|
4591
|
-
fileKey: string;
|
4592
|
-
bucketName: string;
|
4593
|
-
fileSize: number;
|
4594
|
-
};
|
4350
|
+
fileName: string;
|
4351
|
+
fileKey: string;
|
4352
|
+
bucketName: string;
|
4353
|
+
fileSize: number;
|
4354
|
+
fileUrl: string | null;
|
4595
4355
|
}[];
|
4596
4356
|
}[];
|
4597
4357
|
contactId: string;
|