@kl1/contracts 1.1.40-uat → 1.1.41-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2201 -2205
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2200 -2204
- package/dist/index.mjs.map +1 -1
- package/dist/src/botpress/index.d.ts +538 -0
- package/dist/src/botpress/index.d.ts.map +1 -0
- package/dist/src/botpress/schema.d.ts +81 -0
- package/dist/src/botpress/schema.d.ts.map +1 -0
- package/dist/src/botpress/validation.d.ts +220 -0
- package/dist/src/botpress/validation.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +34445 -34443
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +50 -50
- package/dist/src/chat/validation.d.ts +46 -46
- package/dist/src/comment/index.d.ts +68 -68
- package/dist/src/comment/schema.d.ts +20 -20
- package/dist/src/contact/index.d.ts +79 -79
- package/dist/src/contact/schema.d.ts +12 -12
- package/dist/src/contact/validation.d.ts +49 -49
- package/dist/src/contract.d.ts +681 -56736
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/contract2.d.ts +2 -0
- package/dist/src/contract2.d.ts.map +1 -0
- package/dist/src/cx-log/index.d.ts +48 -54
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +40 -40
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +31 -31
- package/dist/src/line/index.d.ts +31 -31
- package/dist/src/mail/mail-contract.d.ts +7 -7
- package/dist/src/mail/room-contract.d.ts +7 -7
- package/dist/src/mail/schemas/room.schema.d.ts +5 -5
- package/dist/src/messenger/index.d.ts +31 -31
- package/dist/src/messenger/validation.d.ts +11 -11
- package/dist/src/public-api/index.d.ts +59 -59
- package/dist/src/public-api/schema.d.ts +12 -12
- package/dist/src/public-api/validation.d.ts +19 -19
- package/dist/src/snippet/index.d.ts +105 -105
- package/dist/src/snippet/schema.d.ts +40 -40
- package/dist/src/telephony-cdr/index.d.ts +54 -54
- package/dist/src/telephony-cdr/schema.d.ts +14 -14
- package/dist/src/ticket/index.d.ts +111 -111
- package/dist/src/ticket/schema.d.ts +21 -21
- package/dist/src/upload/schema.d.ts +3 -3
- package/dist/src/viber/index.d.ts +31 -31
- package/dist/src/webchat/index.d.ts +32 -34
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +26 -26
- package/package.json +1 -1
@@ -908,9 +908,10 @@ export declare const commentContract: {
|
|
908
908
|
fileSize: z.ZodNumber;
|
909
909
|
fileKey: z.ZodString;
|
910
910
|
fileUrl: z.ZodNullable<z.ZodString>;
|
911
|
-
status: z.
|
911
|
+
status: z.ZodNullable<z.ZodString>;
|
912
912
|
}, "strip", z.ZodTypeAny, {
|
913
913
|
id: string;
|
914
|
+
status: string | null;
|
914
915
|
createdAt: Date;
|
915
916
|
updatedAt: Date;
|
916
917
|
deletedAt: Date | null;
|
@@ -919,9 +920,9 @@ export declare const commentContract: {
|
|
919
920
|
bucketName: string;
|
920
921
|
fileSize: number;
|
921
922
|
fileUrl: string | null;
|
922
|
-
status?: string | undefined;
|
923
923
|
}, {
|
924
924
|
id: string;
|
925
|
+
status: string | null;
|
925
926
|
createdAt: Date;
|
926
927
|
updatedAt: Date;
|
927
928
|
deletedAt: Date | null;
|
@@ -930,7 +931,6 @@ export declare const commentContract: {
|
|
930
931
|
bucketName: string;
|
931
932
|
fileSize: number;
|
932
933
|
fileUrl: string | null;
|
933
|
-
status?: string | undefined;
|
934
934
|
}>, "many">;
|
935
935
|
}, "strip", z.ZodTypeAny, {
|
936
936
|
id: string;
|
@@ -957,6 +957,7 @@ export declare const commentContract: {
|
|
957
957
|
dateValue: Date | null;
|
958
958
|
uploads: {
|
959
959
|
id: string;
|
960
|
+
status: string | null;
|
960
961
|
createdAt: Date;
|
961
962
|
updatedAt: Date;
|
962
963
|
deletedAt: Date | null;
|
@@ -965,7 +966,6 @@ export declare const commentContract: {
|
|
965
966
|
bucketName: string;
|
966
967
|
fileSize: number;
|
967
968
|
fileUrl: string | null;
|
968
|
-
status?: string | undefined;
|
969
969
|
}[];
|
970
970
|
}, {
|
971
971
|
id: string;
|
@@ -992,6 +992,7 @@ export declare const commentContract: {
|
|
992
992
|
dateValue: Date | null;
|
993
993
|
uploads: {
|
994
994
|
id: string;
|
995
|
+
status: string | null;
|
995
996
|
createdAt: Date;
|
996
997
|
updatedAt: Date;
|
997
998
|
deletedAt: Date | null;
|
@@ -1000,7 +1001,6 @@ export declare const commentContract: {
|
|
1000
1001
|
bucketName: string;
|
1001
1002
|
fileSize: number;
|
1002
1003
|
fileUrl: string | null;
|
1003
|
-
status?: string | undefined;
|
1004
1004
|
}[];
|
1005
1005
|
}>, "many">;
|
1006
1006
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -1417,9 +1417,10 @@ export declare const commentContract: {
|
|
1417
1417
|
fileSize: z.ZodNumber;
|
1418
1418
|
fileKey: z.ZodString;
|
1419
1419
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1420
|
-
status: z.
|
1420
|
+
status: z.ZodNullable<z.ZodString>;
|
1421
1421
|
}, "strip", z.ZodTypeAny, {
|
1422
1422
|
id: string;
|
1423
|
+
status: string | null;
|
1423
1424
|
createdAt: Date;
|
1424
1425
|
updatedAt: Date;
|
1425
1426
|
deletedAt: Date | null;
|
@@ -1428,9 +1429,9 @@ export declare const commentContract: {
|
|
1428
1429
|
bucketName: string;
|
1429
1430
|
fileSize: number;
|
1430
1431
|
fileUrl: string | null;
|
1431
|
-
status?: string | undefined;
|
1432
1432
|
}, {
|
1433
1433
|
id: string;
|
1434
|
+
status: string | null;
|
1434
1435
|
createdAt: Date;
|
1435
1436
|
updatedAt: Date;
|
1436
1437
|
deletedAt: Date | null;
|
@@ -1439,7 +1440,6 @@ export declare const commentContract: {
|
|
1439
1440
|
bucketName: string;
|
1440
1441
|
fileSize: number;
|
1441
1442
|
fileUrl: string | null;
|
1442
|
-
status?: string | undefined;
|
1443
1443
|
}>, "many">;
|
1444
1444
|
}, "strip", z.ZodTypeAny, {
|
1445
1445
|
id: string;
|
@@ -1466,6 +1466,7 @@ export declare const commentContract: {
|
|
1466
1466
|
dateValue: Date | null;
|
1467
1467
|
uploads: {
|
1468
1468
|
id: string;
|
1469
|
+
status: string | null;
|
1469
1470
|
createdAt: Date;
|
1470
1471
|
updatedAt: Date;
|
1471
1472
|
deletedAt: Date | null;
|
@@ -1474,7 +1475,6 @@ export declare const commentContract: {
|
|
1474
1475
|
bucketName: string;
|
1475
1476
|
fileSize: number;
|
1476
1477
|
fileUrl: string | null;
|
1477
|
-
status?: string | undefined;
|
1478
1478
|
}[];
|
1479
1479
|
}, {
|
1480
1480
|
id: string;
|
@@ -1501,6 +1501,7 @@ export declare const commentContract: {
|
|
1501
1501
|
dateValue: Date | null;
|
1502
1502
|
uploads: {
|
1503
1503
|
id: string;
|
1504
|
+
status: string | null;
|
1504
1505
|
createdAt: Date;
|
1505
1506
|
updatedAt: Date;
|
1506
1507
|
deletedAt: Date | null;
|
@@ -1509,7 +1510,6 @@ export declare const commentContract: {
|
|
1509
1510
|
bucketName: string;
|
1510
1511
|
fileSize: number;
|
1511
1512
|
fileUrl: string | null;
|
1512
|
-
status?: string | undefined;
|
1513
1513
|
}[];
|
1514
1514
|
}>, "many">;
|
1515
1515
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1649,6 +1649,7 @@ export declare const commentContract: {
|
|
1649
1649
|
dateValue: Date | null;
|
1650
1650
|
uploads: {
|
1651
1651
|
id: string;
|
1652
|
+
status: string | null;
|
1652
1653
|
createdAt: Date;
|
1653
1654
|
updatedAt: Date;
|
1654
1655
|
deletedAt: Date | null;
|
@@ -1657,7 +1658,6 @@ export declare const commentContract: {
|
|
1657
1658
|
bucketName: string;
|
1658
1659
|
fileSize: number;
|
1659
1660
|
fileUrl: string | null;
|
1660
|
-
status?: string | undefined;
|
1661
1661
|
}[];
|
1662
1662
|
}[];
|
1663
1663
|
company: {
|
@@ -1745,6 +1745,7 @@ export declare const commentContract: {
|
|
1745
1745
|
dateValue: Date | null;
|
1746
1746
|
uploads: {
|
1747
1747
|
id: string;
|
1748
|
+
status: string | null;
|
1748
1749
|
createdAt: Date;
|
1749
1750
|
updatedAt: Date;
|
1750
1751
|
deletedAt: Date | null;
|
@@ -1753,7 +1754,6 @@ export declare const commentContract: {
|
|
1753
1754
|
bucketName: string;
|
1754
1755
|
fileSize: number;
|
1755
1756
|
fileUrl: string | null;
|
1756
|
-
status?: string | undefined;
|
1757
1757
|
}[];
|
1758
1758
|
}[];
|
1759
1759
|
company: {
|
@@ -2227,6 +2227,7 @@ export declare const commentContract: {
|
|
2227
2227
|
dateValue: Date | null;
|
2228
2228
|
uploads: {
|
2229
2229
|
id: string;
|
2230
|
+
status: string | null;
|
2230
2231
|
createdAt: Date;
|
2231
2232
|
updatedAt: Date;
|
2232
2233
|
deletedAt: Date | null;
|
@@ -2235,7 +2236,6 @@ export declare const commentContract: {
|
|
2235
2236
|
bucketName: string;
|
2236
2237
|
fileSize: number;
|
2237
2238
|
fileUrl: string | null;
|
2238
|
-
status?: string | undefined;
|
2239
2239
|
}[];
|
2240
2240
|
}[];
|
2241
2241
|
company: {
|
@@ -2316,6 +2316,7 @@ export declare const commentContract: {
|
|
2316
2316
|
dateValue: Date | null;
|
2317
2317
|
uploads: {
|
2318
2318
|
id: string;
|
2319
|
+
status: string | null;
|
2319
2320
|
createdAt: Date;
|
2320
2321
|
updatedAt: Date;
|
2321
2322
|
deletedAt: Date | null;
|
@@ -2324,7 +2325,6 @@ export declare const commentContract: {
|
|
2324
2325
|
bucketName: string;
|
2325
2326
|
fileSize: number;
|
2326
2327
|
fileUrl: string | null;
|
2327
|
-
status?: string | undefined;
|
2328
2328
|
}[];
|
2329
2329
|
}[];
|
2330
2330
|
tags: {
|
@@ -2553,6 +2553,7 @@ export declare const commentContract: {
|
|
2553
2553
|
dateValue: Date | null;
|
2554
2554
|
uploads: {
|
2555
2555
|
id: string;
|
2556
|
+
status: string | null;
|
2556
2557
|
createdAt: Date;
|
2557
2558
|
updatedAt: Date;
|
2558
2559
|
deletedAt: Date | null;
|
@@ -2561,7 +2562,6 @@ export declare const commentContract: {
|
|
2561
2562
|
bucketName: string;
|
2562
2563
|
fileSize: number;
|
2563
2564
|
fileUrl: string | null;
|
2564
|
-
status?: string | undefined;
|
2565
2565
|
}[];
|
2566
2566
|
}[];
|
2567
2567
|
company: {
|
@@ -2642,6 +2642,7 @@ export declare const commentContract: {
|
|
2642
2642
|
dateValue: Date | null;
|
2643
2643
|
uploads: {
|
2644
2644
|
id: string;
|
2645
|
+
status: string | null;
|
2645
2646
|
createdAt: Date;
|
2646
2647
|
updatedAt: Date;
|
2647
2648
|
deletedAt: Date | null;
|
@@ -2650,7 +2651,6 @@ export declare const commentContract: {
|
|
2650
2651
|
bucketName: string;
|
2651
2652
|
fileSize: number;
|
2652
2653
|
fileUrl: string | null;
|
2653
|
-
status?: string | undefined;
|
2654
2654
|
}[];
|
2655
2655
|
}[];
|
2656
2656
|
tags: {
|
@@ -3089,6 +3089,7 @@ export declare const commentContract: {
|
|
3089
3089
|
dateValue: Date | null;
|
3090
3090
|
uploads: {
|
3091
3091
|
id: string;
|
3092
|
+
status: string | null;
|
3092
3093
|
createdAt: Date;
|
3093
3094
|
updatedAt: Date;
|
3094
3095
|
deletedAt: Date | null;
|
@@ -3097,7 +3098,6 @@ export declare const commentContract: {
|
|
3097
3098
|
bucketName: string;
|
3098
3099
|
fileSize: number;
|
3099
3100
|
fileUrl: string | null;
|
3100
|
-
status?: string | undefined;
|
3101
3101
|
}[];
|
3102
3102
|
}[];
|
3103
3103
|
company: {
|
@@ -3178,6 +3178,7 @@ export declare const commentContract: {
|
|
3178
3178
|
dateValue: Date | null;
|
3179
3179
|
uploads: {
|
3180
3180
|
id: string;
|
3181
|
+
status: string | null;
|
3181
3182
|
createdAt: Date;
|
3182
3183
|
updatedAt: Date;
|
3183
3184
|
deletedAt: Date | null;
|
@@ -3186,7 +3187,6 @@ export declare const commentContract: {
|
|
3186
3187
|
bucketName: string;
|
3187
3188
|
fileSize: number;
|
3188
3189
|
fileUrl: string | null;
|
3189
|
-
status?: string | undefined;
|
3190
3190
|
}[];
|
3191
3191
|
}[];
|
3192
3192
|
tags: {
|
@@ -3527,6 +3527,7 @@ export declare const commentContract: {
|
|
3527
3527
|
dateValue: Date | null;
|
3528
3528
|
uploads: {
|
3529
3529
|
id: string;
|
3530
|
+
status: string | null;
|
3530
3531
|
createdAt: Date;
|
3531
3532
|
updatedAt: Date;
|
3532
3533
|
deletedAt: Date | null;
|
@@ -3535,7 +3536,6 @@ export declare const commentContract: {
|
|
3535
3536
|
bucketName: string;
|
3536
3537
|
fileSize: number;
|
3537
3538
|
fileUrl: string | null;
|
3538
|
-
status?: string | undefined;
|
3539
3539
|
}[];
|
3540
3540
|
}[];
|
3541
3541
|
company: {
|
@@ -3616,6 +3616,7 @@ export declare const commentContract: {
|
|
3616
3616
|
dateValue: Date | null;
|
3617
3617
|
uploads: {
|
3618
3618
|
id: string;
|
3619
|
+
status: string | null;
|
3619
3620
|
createdAt: Date;
|
3620
3621
|
updatedAt: Date;
|
3621
3622
|
deletedAt: Date | null;
|
@@ -3624,7 +3625,6 @@ export declare const commentContract: {
|
|
3624
3625
|
bucketName: string;
|
3625
3626
|
fileSize: number;
|
3626
3627
|
fileUrl: string | null;
|
3627
|
-
status?: string | undefined;
|
3628
3628
|
}[];
|
3629
3629
|
}[];
|
3630
3630
|
tags: {
|
@@ -3968,6 +3968,7 @@ export declare const commentContract: {
|
|
3968
3968
|
dateValue: Date | null;
|
3969
3969
|
uploads: {
|
3970
3970
|
id: string;
|
3971
|
+
status: string | null;
|
3971
3972
|
createdAt: Date;
|
3972
3973
|
updatedAt: Date;
|
3973
3974
|
deletedAt: Date | null;
|
@@ -3976,7 +3977,6 @@ export declare const commentContract: {
|
|
3976
3977
|
bucketName: string;
|
3977
3978
|
fileSize: number;
|
3978
3979
|
fileUrl: string | null;
|
3979
|
-
status?: string | undefined;
|
3980
3980
|
}[];
|
3981
3981
|
}[];
|
3982
3982
|
company: {
|
@@ -4057,6 +4057,7 @@ export declare const commentContract: {
|
|
4057
4057
|
dateValue: Date | null;
|
4058
4058
|
uploads: {
|
4059
4059
|
id: string;
|
4060
|
+
status: string | null;
|
4060
4061
|
createdAt: Date;
|
4061
4062
|
updatedAt: Date;
|
4062
4063
|
deletedAt: Date | null;
|
@@ -4065,7 +4066,6 @@ export declare const commentContract: {
|
|
4065
4066
|
bucketName: string;
|
4066
4067
|
fileSize: number;
|
4067
4068
|
fileUrl: string | null;
|
4068
|
-
status?: string | undefined;
|
4069
4069
|
}[];
|
4070
4070
|
}[];
|
4071
4071
|
tags: {
|
@@ -4409,6 +4409,7 @@ export declare const commentContract: {
|
|
4409
4409
|
dateValue: Date | null;
|
4410
4410
|
uploads: {
|
4411
4411
|
id: string;
|
4412
|
+
status: string | null;
|
4412
4413
|
createdAt: Date;
|
4413
4414
|
updatedAt: Date;
|
4414
4415
|
deletedAt: Date | null;
|
@@ -4417,7 +4418,6 @@ export declare const commentContract: {
|
|
4417
4418
|
bucketName: string;
|
4418
4419
|
fileSize: number;
|
4419
4420
|
fileUrl: string | null;
|
4420
|
-
status?: string | undefined;
|
4421
4421
|
}[];
|
4422
4422
|
}[];
|
4423
4423
|
company: {
|
@@ -4498,6 +4498,7 @@ export declare const commentContract: {
|
|
4498
4498
|
dateValue: Date | null;
|
4499
4499
|
uploads: {
|
4500
4500
|
id: string;
|
4501
|
+
status: string | null;
|
4501
4502
|
createdAt: Date;
|
4502
4503
|
updatedAt: Date;
|
4503
4504
|
deletedAt: Date | null;
|
@@ -4506,7 +4507,6 @@ export declare const commentContract: {
|
|
4506
4507
|
bucketName: string;
|
4507
4508
|
fileSize: number;
|
4508
4509
|
fileUrl: string | null;
|
4509
|
-
status?: string | undefined;
|
4510
4510
|
}[];
|
4511
4511
|
}[];
|
4512
4512
|
tags: {
|
@@ -5721,9 +5721,10 @@ export declare const commentContract: {
|
|
5721
5721
|
fileSize: z.ZodNumber;
|
5722
5722
|
fileKey: z.ZodString;
|
5723
5723
|
fileUrl: z.ZodNullable<z.ZodString>;
|
5724
|
-
status: z.
|
5724
|
+
status: z.ZodNullable<z.ZodString>;
|
5725
5725
|
}, "strip", z.ZodTypeAny, {
|
5726
5726
|
id: string;
|
5727
|
+
status: string | null;
|
5727
5728
|
createdAt: Date;
|
5728
5729
|
updatedAt: Date;
|
5729
5730
|
deletedAt: Date | null;
|
@@ -5732,9 +5733,9 @@ export declare const commentContract: {
|
|
5732
5733
|
bucketName: string;
|
5733
5734
|
fileSize: number;
|
5734
5735
|
fileUrl: string | null;
|
5735
|
-
status?: string | undefined;
|
5736
5736
|
}, {
|
5737
5737
|
id: string;
|
5738
|
+
status: string | null;
|
5738
5739
|
createdAt: Date;
|
5739
5740
|
updatedAt: Date;
|
5740
5741
|
deletedAt: Date | null;
|
@@ -5743,7 +5744,6 @@ export declare const commentContract: {
|
|
5743
5744
|
bucketName: string;
|
5744
5745
|
fileSize: number;
|
5745
5746
|
fileUrl: string | null;
|
5746
|
-
status?: string | undefined;
|
5747
5747
|
}>, "many">;
|
5748
5748
|
}, "strip", z.ZodTypeAny, {
|
5749
5749
|
id: string;
|
@@ -5770,6 +5770,7 @@ export declare const commentContract: {
|
|
5770
5770
|
dateValue: Date | null;
|
5771
5771
|
uploads: {
|
5772
5772
|
id: string;
|
5773
|
+
status: string | null;
|
5773
5774
|
createdAt: Date;
|
5774
5775
|
updatedAt: Date;
|
5775
5776
|
deletedAt: Date | null;
|
@@ -5778,7 +5779,6 @@ export declare const commentContract: {
|
|
5778
5779
|
bucketName: string;
|
5779
5780
|
fileSize: number;
|
5780
5781
|
fileUrl: string | null;
|
5781
|
-
status?: string | undefined;
|
5782
5782
|
}[];
|
5783
5783
|
}, {
|
5784
5784
|
id: string;
|
@@ -5805,6 +5805,7 @@ export declare const commentContract: {
|
|
5805
5805
|
dateValue: Date | null;
|
5806
5806
|
uploads: {
|
5807
5807
|
id: string;
|
5808
|
+
status: string | null;
|
5808
5809
|
createdAt: Date;
|
5809
5810
|
updatedAt: Date;
|
5810
5811
|
deletedAt: Date | null;
|
@@ -5813,7 +5814,6 @@ export declare const commentContract: {
|
|
5813
5814
|
bucketName: string;
|
5814
5815
|
fileSize: number;
|
5815
5816
|
fileUrl: string | null;
|
5816
|
-
status?: string | undefined;
|
5817
5817
|
}[];
|
5818
5818
|
}>, "many">;
|
5819
5819
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -6230,9 +6230,10 @@ export declare const commentContract: {
|
|
6230
6230
|
fileSize: z.ZodNumber;
|
6231
6231
|
fileKey: z.ZodString;
|
6232
6232
|
fileUrl: z.ZodNullable<z.ZodString>;
|
6233
|
-
status: z.
|
6233
|
+
status: z.ZodNullable<z.ZodString>;
|
6234
6234
|
}, "strip", z.ZodTypeAny, {
|
6235
6235
|
id: string;
|
6236
|
+
status: string | null;
|
6236
6237
|
createdAt: Date;
|
6237
6238
|
updatedAt: Date;
|
6238
6239
|
deletedAt: Date | null;
|
@@ -6241,9 +6242,9 @@ export declare const commentContract: {
|
|
6241
6242
|
bucketName: string;
|
6242
6243
|
fileSize: number;
|
6243
6244
|
fileUrl: string | null;
|
6244
|
-
status?: string | undefined;
|
6245
6245
|
}, {
|
6246
6246
|
id: string;
|
6247
|
+
status: string | null;
|
6247
6248
|
createdAt: Date;
|
6248
6249
|
updatedAt: Date;
|
6249
6250
|
deletedAt: Date | null;
|
@@ -6252,7 +6253,6 @@ export declare const commentContract: {
|
|
6252
6253
|
bucketName: string;
|
6253
6254
|
fileSize: number;
|
6254
6255
|
fileUrl: string | null;
|
6255
|
-
status?: string | undefined;
|
6256
6256
|
}>, "many">;
|
6257
6257
|
}, "strip", z.ZodTypeAny, {
|
6258
6258
|
id: string;
|
@@ -6279,6 +6279,7 @@ export declare const commentContract: {
|
|
6279
6279
|
dateValue: Date | null;
|
6280
6280
|
uploads: {
|
6281
6281
|
id: string;
|
6282
|
+
status: string | null;
|
6282
6283
|
createdAt: Date;
|
6283
6284
|
updatedAt: Date;
|
6284
6285
|
deletedAt: Date | null;
|
@@ -6287,7 +6288,6 @@ export declare const commentContract: {
|
|
6287
6288
|
bucketName: string;
|
6288
6289
|
fileSize: number;
|
6289
6290
|
fileUrl: string | null;
|
6290
|
-
status?: string | undefined;
|
6291
6291
|
}[];
|
6292
6292
|
}, {
|
6293
6293
|
id: string;
|
@@ -6314,6 +6314,7 @@ export declare const commentContract: {
|
|
6314
6314
|
dateValue: Date | null;
|
6315
6315
|
uploads: {
|
6316
6316
|
id: string;
|
6317
|
+
status: string | null;
|
6317
6318
|
createdAt: Date;
|
6318
6319
|
updatedAt: Date;
|
6319
6320
|
deletedAt: Date | null;
|
@@ -6322,7 +6323,6 @@ export declare const commentContract: {
|
|
6322
6323
|
bucketName: string;
|
6323
6324
|
fileSize: number;
|
6324
6325
|
fileUrl: string | null;
|
6325
|
-
status?: string | undefined;
|
6326
6326
|
}[];
|
6327
6327
|
}>, "many">;
|
6328
6328
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -6462,6 +6462,7 @@ export declare const commentContract: {
|
|
6462
6462
|
dateValue: Date | null;
|
6463
6463
|
uploads: {
|
6464
6464
|
id: string;
|
6465
|
+
status: string | null;
|
6465
6466
|
createdAt: Date;
|
6466
6467
|
updatedAt: Date;
|
6467
6468
|
deletedAt: Date | null;
|
@@ -6470,7 +6471,6 @@ export declare const commentContract: {
|
|
6470
6471
|
bucketName: string;
|
6471
6472
|
fileSize: number;
|
6472
6473
|
fileUrl: string | null;
|
6473
|
-
status?: string | undefined;
|
6474
6474
|
}[];
|
6475
6475
|
}[];
|
6476
6476
|
company: {
|
@@ -6558,6 +6558,7 @@ export declare const commentContract: {
|
|
6558
6558
|
dateValue: Date | null;
|
6559
6559
|
uploads: {
|
6560
6560
|
id: string;
|
6561
|
+
status: string | null;
|
6561
6562
|
createdAt: Date;
|
6562
6563
|
updatedAt: Date;
|
6563
6564
|
deletedAt: Date | null;
|
@@ -6566,7 +6567,6 @@ export declare const commentContract: {
|
|
6566
6567
|
bucketName: string;
|
6567
6568
|
fileSize: number;
|
6568
6569
|
fileUrl: string | null;
|
6569
|
-
status?: string | undefined;
|
6570
6570
|
}[];
|
6571
6571
|
}[];
|
6572
6572
|
company: {
|
@@ -7040,6 +7040,7 @@ export declare const commentContract: {
|
|
7040
7040
|
dateValue: Date | null;
|
7041
7041
|
uploads: {
|
7042
7042
|
id: string;
|
7043
|
+
status: string | null;
|
7043
7044
|
createdAt: Date;
|
7044
7045
|
updatedAt: Date;
|
7045
7046
|
deletedAt: Date | null;
|
@@ -7048,7 +7049,6 @@ export declare const commentContract: {
|
|
7048
7049
|
bucketName: string;
|
7049
7050
|
fileSize: number;
|
7050
7051
|
fileUrl: string | null;
|
7051
|
-
status?: string | undefined;
|
7052
7052
|
}[];
|
7053
7053
|
}[];
|
7054
7054
|
company: {
|
@@ -7129,6 +7129,7 @@ export declare const commentContract: {
|
|
7129
7129
|
dateValue: Date | null;
|
7130
7130
|
uploads: {
|
7131
7131
|
id: string;
|
7132
|
+
status: string | null;
|
7132
7133
|
createdAt: Date;
|
7133
7134
|
updatedAt: Date;
|
7134
7135
|
deletedAt: Date | null;
|
@@ -7137,7 +7138,6 @@ export declare const commentContract: {
|
|
7137
7138
|
bucketName: string;
|
7138
7139
|
fileSize: number;
|
7139
7140
|
fileUrl: string | null;
|
7140
|
-
status?: string | undefined;
|
7141
7141
|
}[];
|
7142
7142
|
}[];
|
7143
7143
|
tags: {
|
@@ -7366,6 +7366,7 @@ export declare const commentContract: {
|
|
7366
7366
|
dateValue: Date | null;
|
7367
7367
|
uploads: {
|
7368
7368
|
id: string;
|
7369
|
+
status: string | null;
|
7369
7370
|
createdAt: Date;
|
7370
7371
|
updatedAt: Date;
|
7371
7372
|
deletedAt: Date | null;
|
@@ -7374,7 +7375,6 @@ export declare const commentContract: {
|
|
7374
7375
|
bucketName: string;
|
7375
7376
|
fileSize: number;
|
7376
7377
|
fileUrl: string | null;
|
7377
|
-
status?: string | undefined;
|
7378
7378
|
}[];
|
7379
7379
|
}[];
|
7380
7380
|
company: {
|
@@ -7455,6 +7455,7 @@ export declare const commentContract: {
|
|
7455
7455
|
dateValue: Date | null;
|
7456
7456
|
uploads: {
|
7457
7457
|
id: string;
|
7458
|
+
status: string | null;
|
7458
7459
|
createdAt: Date;
|
7459
7460
|
updatedAt: Date;
|
7460
7461
|
deletedAt: Date | null;
|
@@ -7463,7 +7464,6 @@ export declare const commentContract: {
|
|
7463
7464
|
bucketName: string;
|
7464
7465
|
fileSize: number;
|
7465
7466
|
fileUrl: string | null;
|
7466
|
-
status?: string | undefined;
|
7467
7467
|
}[];
|
7468
7468
|
}[];
|
7469
7469
|
tags: {
|
@@ -7902,6 +7902,7 @@ export declare const commentContract: {
|
|
7902
7902
|
dateValue: Date | null;
|
7903
7903
|
uploads: {
|
7904
7904
|
id: string;
|
7905
|
+
status: string | null;
|
7905
7906
|
createdAt: Date;
|
7906
7907
|
updatedAt: Date;
|
7907
7908
|
deletedAt: Date | null;
|
@@ -7910,7 +7911,6 @@ export declare const commentContract: {
|
|
7910
7911
|
bucketName: string;
|
7911
7912
|
fileSize: number;
|
7912
7913
|
fileUrl: string | null;
|
7913
|
-
status?: string | undefined;
|
7914
7914
|
}[];
|
7915
7915
|
}[];
|
7916
7916
|
company: {
|
@@ -7991,6 +7991,7 @@ export declare const commentContract: {
|
|
7991
7991
|
dateValue: Date | null;
|
7992
7992
|
uploads: {
|
7993
7993
|
id: string;
|
7994
|
+
status: string | null;
|
7994
7995
|
createdAt: Date;
|
7995
7996
|
updatedAt: Date;
|
7996
7997
|
deletedAt: Date | null;
|
@@ -7999,7 +8000,6 @@ export declare const commentContract: {
|
|
7999
8000
|
bucketName: string;
|
8000
8001
|
fileSize: number;
|
8001
8002
|
fileUrl: string | null;
|
8002
|
-
status?: string | undefined;
|
8003
8003
|
}[];
|
8004
8004
|
}[];
|
8005
8005
|
tags: {
|
@@ -8340,6 +8340,7 @@ export declare const commentContract: {
|
|
8340
8340
|
dateValue: Date | null;
|
8341
8341
|
uploads: {
|
8342
8342
|
id: string;
|
8343
|
+
status: string | null;
|
8343
8344
|
createdAt: Date;
|
8344
8345
|
updatedAt: Date;
|
8345
8346
|
deletedAt: Date | null;
|
@@ -8348,7 +8349,6 @@ export declare const commentContract: {
|
|
8348
8349
|
bucketName: string;
|
8349
8350
|
fileSize: number;
|
8350
8351
|
fileUrl: string | null;
|
8351
|
-
status?: string | undefined;
|
8352
8352
|
}[];
|
8353
8353
|
}[];
|
8354
8354
|
company: {
|
@@ -8429,6 +8429,7 @@ export declare const commentContract: {
|
|
8429
8429
|
dateValue: Date | null;
|
8430
8430
|
uploads: {
|
8431
8431
|
id: string;
|
8432
|
+
status: string | null;
|
8432
8433
|
createdAt: Date;
|
8433
8434
|
updatedAt: Date;
|
8434
8435
|
deletedAt: Date | null;
|
@@ -8437,7 +8438,6 @@ export declare const commentContract: {
|
|
8437
8438
|
bucketName: string;
|
8438
8439
|
fileSize: number;
|
8439
8440
|
fileUrl: string | null;
|
8440
|
-
status?: string | undefined;
|
8441
8441
|
}[];
|
8442
8442
|
}[];
|
8443
8443
|
tags: {
|
@@ -9663,9 +9663,10 @@ export declare const commentContract: {
|
|
9663
9663
|
fileSize: z.ZodNumber;
|
9664
9664
|
fileKey: z.ZodString;
|
9665
9665
|
fileUrl: z.ZodNullable<z.ZodString>;
|
9666
|
-
status: z.
|
9666
|
+
status: z.ZodNullable<z.ZodString>;
|
9667
9667
|
}, "strip", z.ZodTypeAny, {
|
9668
9668
|
id: string;
|
9669
|
+
status: string | null;
|
9669
9670
|
createdAt: Date;
|
9670
9671
|
updatedAt: Date;
|
9671
9672
|
deletedAt: Date | null;
|
@@ -9674,9 +9675,9 @@ export declare const commentContract: {
|
|
9674
9675
|
bucketName: string;
|
9675
9676
|
fileSize: number;
|
9676
9677
|
fileUrl: string | null;
|
9677
|
-
status?: string | undefined;
|
9678
9678
|
}, {
|
9679
9679
|
id: string;
|
9680
|
+
status: string | null;
|
9680
9681
|
createdAt: Date;
|
9681
9682
|
updatedAt: Date;
|
9682
9683
|
deletedAt: Date | null;
|
@@ -9685,7 +9686,6 @@ export declare const commentContract: {
|
|
9685
9686
|
bucketName: string;
|
9686
9687
|
fileSize: number;
|
9687
9688
|
fileUrl: string | null;
|
9688
|
-
status?: string | undefined;
|
9689
9689
|
}>, "many">;
|
9690
9690
|
}, "strip", z.ZodTypeAny, {
|
9691
9691
|
id: string;
|
@@ -9712,6 +9712,7 @@ export declare const commentContract: {
|
|
9712
9712
|
dateValue: Date | null;
|
9713
9713
|
uploads: {
|
9714
9714
|
id: string;
|
9715
|
+
status: string | null;
|
9715
9716
|
createdAt: Date;
|
9716
9717
|
updatedAt: Date;
|
9717
9718
|
deletedAt: Date | null;
|
@@ -9720,7 +9721,6 @@ export declare const commentContract: {
|
|
9720
9721
|
bucketName: string;
|
9721
9722
|
fileSize: number;
|
9722
9723
|
fileUrl: string | null;
|
9723
|
-
status?: string | undefined;
|
9724
9724
|
}[];
|
9725
9725
|
}, {
|
9726
9726
|
id: string;
|
@@ -9747,6 +9747,7 @@ export declare const commentContract: {
|
|
9747
9747
|
dateValue: Date | null;
|
9748
9748
|
uploads: {
|
9749
9749
|
id: string;
|
9750
|
+
status: string | null;
|
9750
9751
|
createdAt: Date;
|
9751
9752
|
updatedAt: Date;
|
9752
9753
|
deletedAt: Date | null;
|
@@ -9755,7 +9756,6 @@ export declare const commentContract: {
|
|
9755
9756
|
bucketName: string;
|
9756
9757
|
fileSize: number;
|
9757
9758
|
fileUrl: string | null;
|
9758
|
-
status?: string | undefined;
|
9759
9759
|
}[];
|
9760
9760
|
}>, "many">;
|
9761
9761
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -10172,9 +10172,10 @@ export declare const commentContract: {
|
|
10172
10172
|
fileSize: z.ZodNumber;
|
10173
10173
|
fileKey: z.ZodString;
|
10174
10174
|
fileUrl: z.ZodNullable<z.ZodString>;
|
10175
|
-
status: z.
|
10175
|
+
status: z.ZodNullable<z.ZodString>;
|
10176
10176
|
}, "strip", z.ZodTypeAny, {
|
10177
10177
|
id: string;
|
10178
|
+
status: string | null;
|
10178
10179
|
createdAt: Date;
|
10179
10180
|
updatedAt: Date;
|
10180
10181
|
deletedAt: Date | null;
|
@@ -10183,9 +10184,9 @@ export declare const commentContract: {
|
|
10183
10184
|
bucketName: string;
|
10184
10185
|
fileSize: number;
|
10185
10186
|
fileUrl: string | null;
|
10186
|
-
status?: string | undefined;
|
10187
10187
|
}, {
|
10188
10188
|
id: string;
|
10189
|
+
status: string | null;
|
10189
10190
|
createdAt: Date;
|
10190
10191
|
updatedAt: Date;
|
10191
10192
|
deletedAt: Date | null;
|
@@ -10194,7 +10195,6 @@ export declare const commentContract: {
|
|
10194
10195
|
bucketName: string;
|
10195
10196
|
fileSize: number;
|
10196
10197
|
fileUrl: string | null;
|
10197
|
-
status?: string | undefined;
|
10198
10198
|
}>, "many">;
|
10199
10199
|
}, "strip", z.ZodTypeAny, {
|
10200
10200
|
id: string;
|
@@ -10221,6 +10221,7 @@ export declare const commentContract: {
|
|
10221
10221
|
dateValue: Date | null;
|
10222
10222
|
uploads: {
|
10223
10223
|
id: string;
|
10224
|
+
status: string | null;
|
10224
10225
|
createdAt: Date;
|
10225
10226
|
updatedAt: Date;
|
10226
10227
|
deletedAt: Date | null;
|
@@ -10229,7 +10230,6 @@ export declare const commentContract: {
|
|
10229
10230
|
bucketName: string;
|
10230
10231
|
fileSize: number;
|
10231
10232
|
fileUrl: string | null;
|
10232
|
-
status?: string | undefined;
|
10233
10233
|
}[];
|
10234
10234
|
}, {
|
10235
10235
|
id: string;
|
@@ -10256,6 +10256,7 @@ export declare const commentContract: {
|
|
10256
10256
|
dateValue: Date | null;
|
10257
10257
|
uploads: {
|
10258
10258
|
id: string;
|
10259
|
+
status: string | null;
|
10259
10260
|
createdAt: Date;
|
10260
10261
|
updatedAt: Date;
|
10261
10262
|
deletedAt: Date | null;
|
@@ -10264,7 +10265,6 @@ export declare const commentContract: {
|
|
10264
10265
|
bucketName: string;
|
10265
10266
|
fileSize: number;
|
10266
10267
|
fileUrl: string | null;
|
10267
|
-
status?: string | undefined;
|
10268
10268
|
}[];
|
10269
10269
|
}>, "many">;
|
10270
10270
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -10404,6 +10404,7 @@ export declare const commentContract: {
|
|
10404
10404
|
dateValue: Date | null;
|
10405
10405
|
uploads: {
|
10406
10406
|
id: string;
|
10407
|
+
status: string | null;
|
10407
10408
|
createdAt: Date;
|
10408
10409
|
updatedAt: Date;
|
10409
10410
|
deletedAt: Date | null;
|
@@ -10412,7 +10413,6 @@ export declare const commentContract: {
|
|
10412
10413
|
bucketName: string;
|
10413
10414
|
fileSize: number;
|
10414
10415
|
fileUrl: string | null;
|
10415
|
-
status?: string | undefined;
|
10416
10416
|
}[];
|
10417
10417
|
}[];
|
10418
10418
|
company: {
|
@@ -10500,6 +10500,7 @@ export declare const commentContract: {
|
|
10500
10500
|
dateValue: Date | null;
|
10501
10501
|
uploads: {
|
10502
10502
|
id: string;
|
10503
|
+
status: string | null;
|
10503
10504
|
createdAt: Date;
|
10504
10505
|
updatedAt: Date;
|
10505
10506
|
deletedAt: Date | null;
|
@@ -10508,7 +10509,6 @@ export declare const commentContract: {
|
|
10508
10509
|
bucketName: string;
|
10509
10510
|
fileSize: number;
|
10510
10511
|
fileUrl: string | null;
|
10511
|
-
status?: string | undefined;
|
10512
10512
|
}[];
|
10513
10513
|
}[];
|
10514
10514
|
company: {
|
@@ -10982,6 +10982,7 @@ export declare const commentContract: {
|
|
10982
10982
|
dateValue: Date | null;
|
10983
10983
|
uploads: {
|
10984
10984
|
id: string;
|
10985
|
+
status: string | null;
|
10985
10986
|
createdAt: Date;
|
10986
10987
|
updatedAt: Date;
|
10987
10988
|
deletedAt: Date | null;
|
@@ -10990,7 +10991,6 @@ export declare const commentContract: {
|
|
10990
10991
|
bucketName: string;
|
10991
10992
|
fileSize: number;
|
10992
10993
|
fileUrl: string | null;
|
10993
|
-
status?: string | undefined;
|
10994
10994
|
}[];
|
10995
10995
|
}[];
|
10996
10996
|
company: {
|
@@ -11071,6 +11071,7 @@ export declare const commentContract: {
|
|
11071
11071
|
dateValue: Date | null;
|
11072
11072
|
uploads: {
|
11073
11073
|
id: string;
|
11074
|
+
status: string | null;
|
11074
11075
|
createdAt: Date;
|
11075
11076
|
updatedAt: Date;
|
11076
11077
|
deletedAt: Date | null;
|
@@ -11079,7 +11080,6 @@ export declare const commentContract: {
|
|
11079
11080
|
bucketName: string;
|
11080
11081
|
fileSize: number;
|
11081
11082
|
fileUrl: string | null;
|
11082
|
-
status?: string | undefined;
|
11083
11083
|
}[];
|
11084
11084
|
}[];
|
11085
11085
|
tags: {
|
@@ -11308,6 +11308,7 @@ export declare const commentContract: {
|
|
11308
11308
|
dateValue: Date | null;
|
11309
11309
|
uploads: {
|
11310
11310
|
id: string;
|
11311
|
+
status: string | null;
|
11311
11312
|
createdAt: Date;
|
11312
11313
|
updatedAt: Date;
|
11313
11314
|
deletedAt: Date | null;
|
@@ -11316,7 +11317,6 @@ export declare const commentContract: {
|
|
11316
11317
|
bucketName: string;
|
11317
11318
|
fileSize: number;
|
11318
11319
|
fileUrl: string | null;
|
11319
|
-
status?: string | undefined;
|
11320
11320
|
}[];
|
11321
11321
|
}[];
|
11322
11322
|
company: {
|
@@ -11397,6 +11397,7 @@ export declare const commentContract: {
|
|
11397
11397
|
dateValue: Date | null;
|
11398
11398
|
uploads: {
|
11399
11399
|
id: string;
|
11400
|
+
status: string | null;
|
11400
11401
|
createdAt: Date;
|
11401
11402
|
updatedAt: Date;
|
11402
11403
|
deletedAt: Date | null;
|
@@ -11405,7 +11406,6 @@ export declare const commentContract: {
|
|
11405
11406
|
bucketName: string;
|
11406
11407
|
fileSize: number;
|
11407
11408
|
fileUrl: string | null;
|
11408
|
-
status?: string | undefined;
|
11409
11409
|
}[];
|
11410
11410
|
}[];
|
11411
11411
|
tags: {
|
@@ -11844,6 +11844,7 @@ export declare const commentContract: {
|
|
11844
11844
|
dateValue: Date | null;
|
11845
11845
|
uploads: {
|
11846
11846
|
id: string;
|
11847
|
+
status: string | null;
|
11847
11848
|
createdAt: Date;
|
11848
11849
|
updatedAt: Date;
|
11849
11850
|
deletedAt: Date | null;
|
@@ -11852,7 +11853,6 @@ export declare const commentContract: {
|
|
11852
11853
|
bucketName: string;
|
11853
11854
|
fileSize: number;
|
11854
11855
|
fileUrl: string | null;
|
11855
|
-
status?: string | undefined;
|
11856
11856
|
}[];
|
11857
11857
|
}[];
|
11858
11858
|
company: {
|
@@ -11933,6 +11933,7 @@ export declare const commentContract: {
|
|
11933
11933
|
dateValue: Date | null;
|
11934
11934
|
uploads: {
|
11935
11935
|
id: string;
|
11936
|
+
status: string | null;
|
11936
11937
|
createdAt: Date;
|
11937
11938
|
updatedAt: Date;
|
11938
11939
|
deletedAt: Date | null;
|
@@ -11941,7 +11942,6 @@ export declare const commentContract: {
|
|
11941
11942
|
bucketName: string;
|
11942
11943
|
fileSize: number;
|
11943
11944
|
fileUrl: string | null;
|
11944
|
-
status?: string | undefined;
|
11945
11945
|
}[];
|
11946
11946
|
}[];
|
11947
11947
|
tags: {
|
@@ -12282,6 +12282,7 @@ export declare const commentContract: {
|
|
12282
12282
|
dateValue: Date | null;
|
12283
12283
|
uploads: {
|
12284
12284
|
id: string;
|
12285
|
+
status: string | null;
|
12285
12286
|
createdAt: Date;
|
12286
12287
|
updatedAt: Date;
|
12287
12288
|
deletedAt: Date | null;
|
@@ -12290,7 +12291,6 @@ export declare const commentContract: {
|
|
12290
12291
|
bucketName: string;
|
12291
12292
|
fileSize: number;
|
12292
12293
|
fileUrl: string | null;
|
12293
|
-
status?: string | undefined;
|
12294
12294
|
}[];
|
12295
12295
|
}[];
|
12296
12296
|
company: {
|
@@ -12371,6 +12371,7 @@ export declare const commentContract: {
|
|
12371
12371
|
dateValue: Date | null;
|
12372
12372
|
uploads: {
|
12373
12373
|
id: string;
|
12374
|
+
status: string | null;
|
12374
12375
|
createdAt: Date;
|
12375
12376
|
updatedAt: Date;
|
12376
12377
|
deletedAt: Date | null;
|
@@ -12379,7 +12380,6 @@ export declare const commentContract: {
|
|
12379
12380
|
bucketName: string;
|
12380
12381
|
fileSize: number;
|
12381
12382
|
fileUrl: string | null;
|
12382
|
-
status?: string | undefined;
|
12383
12383
|
}[];
|
12384
12384
|
}[];
|
12385
12385
|
tags: {
|
@@ -12723,6 +12723,7 @@ export declare const commentContract: {
|
|
12723
12723
|
dateValue: Date | null;
|
12724
12724
|
uploads: {
|
12725
12725
|
id: string;
|
12726
|
+
status: string | null;
|
12726
12727
|
createdAt: Date;
|
12727
12728
|
updatedAt: Date;
|
12728
12729
|
deletedAt: Date | null;
|
@@ -12731,7 +12732,6 @@ export declare const commentContract: {
|
|
12731
12732
|
bucketName: string;
|
12732
12733
|
fileSize: number;
|
12733
12734
|
fileUrl: string | null;
|
12734
|
-
status?: string | undefined;
|
12735
12735
|
}[];
|
12736
12736
|
}[];
|
12737
12737
|
company: {
|
@@ -12812,6 +12812,7 @@ export declare const commentContract: {
|
|
12812
12812
|
dateValue: Date | null;
|
12813
12813
|
uploads: {
|
12814
12814
|
id: string;
|
12815
|
+
status: string | null;
|
12815
12816
|
createdAt: Date;
|
12816
12817
|
updatedAt: Date;
|
12817
12818
|
deletedAt: Date | null;
|
@@ -12820,7 +12821,6 @@ export declare const commentContract: {
|
|
12820
12821
|
bucketName: string;
|
12821
12822
|
fileSize: number;
|
12822
12823
|
fileUrl: string | null;
|
12823
|
-
status?: string | undefined;
|
12824
12824
|
}[];
|
12825
12825
|
}[];
|
12826
12826
|
tags: {
|
@@ -13164,6 +13164,7 @@ export declare const commentContract: {
|
|
13164
13164
|
dateValue: Date | null;
|
13165
13165
|
uploads: {
|
13166
13166
|
id: string;
|
13167
|
+
status: string | null;
|
13167
13168
|
createdAt: Date;
|
13168
13169
|
updatedAt: Date;
|
13169
13170
|
deletedAt: Date | null;
|
@@ -13172,7 +13173,6 @@ export declare const commentContract: {
|
|
13172
13173
|
bucketName: string;
|
13173
13174
|
fileSize: number;
|
13174
13175
|
fileUrl: string | null;
|
13175
|
-
status?: string | undefined;
|
13176
13176
|
}[];
|
13177
13177
|
}[];
|
13178
13178
|
company: {
|
@@ -13253,6 +13253,7 @@ export declare const commentContract: {
|
|
13253
13253
|
dateValue: Date | null;
|
13254
13254
|
uploads: {
|
13255
13255
|
id: string;
|
13256
|
+
status: string | null;
|
13256
13257
|
createdAt: Date;
|
13257
13258
|
updatedAt: Date;
|
13258
13259
|
deletedAt: Date | null;
|
@@ -13261,7 +13262,6 @@ export declare const commentContract: {
|
|
13261
13262
|
bucketName: string;
|
13262
13263
|
fileSize: number;
|
13263
13264
|
fileUrl: string | null;
|
13264
|
-
status?: string | undefined;
|
13265
13265
|
}[];
|
13266
13266
|
}[];
|
13267
13267
|
tags: {
|