@kl1/contracts 1.1.39-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 +2215 -2197
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2214 -2196
- 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/business-calendar/index.d.ts +21 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -1
- package/dist/src/business-calendar/schema.d.ts +8 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -1
- 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 +1238 -57196
- 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 +106 -49
- 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/call-report.schema.d.ts +36 -10
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- 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 +36 -26
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +3 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +3 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -2106,9 +2106,10 @@ export declare const viberContract: {
|
|
2106
2106
|
fileSize: z.ZodNumber;
|
2107
2107
|
fileKey: z.ZodString;
|
2108
2108
|
fileUrl: z.ZodNullable<z.ZodString>;
|
2109
|
-
status: z.
|
2109
|
+
status: z.ZodNullable<z.ZodString>;
|
2110
2110
|
}, "strip", z.ZodTypeAny, {
|
2111
2111
|
id: string;
|
2112
|
+
status: string | null;
|
2112
2113
|
createdAt: Date;
|
2113
2114
|
updatedAt: Date;
|
2114
2115
|
deletedAt: Date | null;
|
@@ -2117,9 +2118,9 @@ export declare const viberContract: {
|
|
2117
2118
|
bucketName: string;
|
2118
2119
|
fileSize: number;
|
2119
2120
|
fileUrl: string | null;
|
2120
|
-
status?: string | undefined;
|
2121
2121
|
}, {
|
2122
2122
|
id: string;
|
2123
|
+
status: string | null;
|
2123
2124
|
createdAt: Date;
|
2124
2125
|
updatedAt: Date;
|
2125
2126
|
deletedAt: Date | null;
|
@@ -2128,7 +2129,6 @@ export declare const viberContract: {
|
|
2128
2129
|
bucketName: string;
|
2129
2130
|
fileSize: number;
|
2130
2131
|
fileUrl: string | null;
|
2131
|
-
status?: string | undefined;
|
2132
2132
|
}>, "many">;
|
2133
2133
|
}, "strip", z.ZodTypeAny, {
|
2134
2134
|
id: string;
|
@@ -2155,6 +2155,7 @@ export declare const viberContract: {
|
|
2155
2155
|
dateValue: Date | null;
|
2156
2156
|
uploads: {
|
2157
2157
|
id: string;
|
2158
|
+
status: string | null;
|
2158
2159
|
createdAt: Date;
|
2159
2160
|
updatedAt: Date;
|
2160
2161
|
deletedAt: Date | null;
|
@@ -2163,7 +2164,6 @@ export declare const viberContract: {
|
|
2163
2164
|
bucketName: string;
|
2164
2165
|
fileSize: number;
|
2165
2166
|
fileUrl: string | null;
|
2166
|
-
status?: string | undefined;
|
2167
2167
|
}[];
|
2168
2168
|
}, {
|
2169
2169
|
id: string;
|
@@ -2190,6 +2190,7 @@ export declare const viberContract: {
|
|
2190
2190
|
dateValue: Date | null;
|
2191
2191
|
uploads: {
|
2192
2192
|
id: string;
|
2193
|
+
status: string | null;
|
2193
2194
|
createdAt: Date;
|
2194
2195
|
updatedAt: Date;
|
2195
2196
|
deletedAt: Date | null;
|
@@ -2198,7 +2199,6 @@ export declare const viberContract: {
|
|
2198
2199
|
bucketName: string;
|
2199
2200
|
fileSize: number;
|
2200
2201
|
fileUrl: string | null;
|
2201
|
-
status?: string | undefined;
|
2202
2202
|
}[];
|
2203
2203
|
}>, "many">;
|
2204
2204
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -2338,6 +2338,7 @@ export declare const viberContract: {
|
|
2338
2338
|
dateValue: Date | null;
|
2339
2339
|
uploads: {
|
2340
2340
|
id: string;
|
2341
|
+
status: string | null;
|
2341
2342
|
createdAt: Date;
|
2342
2343
|
updatedAt: Date;
|
2343
2344
|
deletedAt: Date | null;
|
@@ -2346,7 +2347,6 @@ export declare const viberContract: {
|
|
2346
2347
|
bucketName: string;
|
2347
2348
|
fileSize: number;
|
2348
2349
|
fileUrl: string | null;
|
2349
|
-
status?: string | undefined;
|
2350
2350
|
}[];
|
2351
2351
|
}[];
|
2352
2352
|
company: {
|
@@ -2434,6 +2434,7 @@ export declare const viberContract: {
|
|
2434
2434
|
dateValue: Date | null;
|
2435
2435
|
uploads: {
|
2436
2436
|
id: string;
|
2437
|
+
status: string | null;
|
2437
2438
|
createdAt: Date;
|
2438
2439
|
updatedAt: Date;
|
2439
2440
|
deletedAt: Date | null;
|
@@ -2442,7 +2443,6 @@ export declare const viberContract: {
|
|
2442
2443
|
bucketName: string;
|
2443
2444
|
fileSize: number;
|
2444
2445
|
fileUrl: string | null;
|
2445
|
-
status?: string | undefined;
|
2446
2446
|
}[];
|
2447
2447
|
}[];
|
2448
2448
|
company: {
|
@@ -2543,6 +2543,7 @@ export declare const viberContract: {
|
|
2543
2543
|
dateValue: Date | null;
|
2544
2544
|
uploads: {
|
2545
2545
|
id: string;
|
2546
|
+
status: string | null;
|
2546
2547
|
createdAt: Date;
|
2547
2548
|
updatedAt: Date;
|
2548
2549
|
deletedAt: Date | null;
|
@@ -2551,7 +2552,6 @@ export declare const viberContract: {
|
|
2551
2552
|
bucketName: string;
|
2552
2553
|
fileSize: number;
|
2553
2554
|
fileUrl: string | null;
|
2554
|
-
status?: string | undefined;
|
2555
2555
|
}[];
|
2556
2556
|
}[];
|
2557
2557
|
company: {
|
@@ -2654,6 +2654,7 @@ export declare const viberContract: {
|
|
2654
2654
|
dateValue: Date | null;
|
2655
2655
|
uploads: {
|
2656
2656
|
id: string;
|
2657
|
+
status: string | null;
|
2657
2658
|
createdAt: Date;
|
2658
2659
|
updatedAt: Date;
|
2659
2660
|
deletedAt: Date | null;
|
@@ -2662,7 +2663,6 @@ export declare const viberContract: {
|
|
2662
2663
|
bucketName: string;
|
2663
2664
|
fileSize: number;
|
2664
2665
|
fileUrl: string | null;
|
2665
|
-
status?: string | undefined;
|
2666
2666
|
}[];
|
2667
2667
|
}[];
|
2668
2668
|
company: {
|
@@ -4105,6 +4105,7 @@ export declare const viberContract: {
|
|
4105
4105
|
dateValue: Date | null;
|
4106
4106
|
uploads: {
|
4107
4107
|
id: string;
|
4108
|
+
status: string | null;
|
4108
4109
|
createdAt: Date;
|
4109
4110
|
updatedAt: Date;
|
4110
4111
|
deletedAt: Date | null;
|
@@ -4113,7 +4114,6 @@ export declare const viberContract: {
|
|
4113
4114
|
bucketName: string;
|
4114
4115
|
fileSize: number;
|
4115
4116
|
fileUrl: string | null;
|
4116
|
-
status?: string | undefined;
|
4117
4117
|
}[];
|
4118
4118
|
}[];
|
4119
4119
|
company: {
|
@@ -4463,6 +4463,7 @@ export declare const viberContract: {
|
|
4463
4463
|
dateValue: Date | null;
|
4464
4464
|
uploads: {
|
4465
4465
|
id: string;
|
4466
|
+
status: string | null;
|
4466
4467
|
createdAt: Date;
|
4467
4468
|
updatedAt: Date;
|
4468
4469
|
deletedAt: Date | null;
|
@@ -4471,7 +4472,6 @@ export declare const viberContract: {
|
|
4471
4472
|
bucketName: string;
|
4472
4473
|
fileSize: number;
|
4473
4474
|
fileUrl: string | null;
|
4474
|
-
status?: string | undefined;
|
4475
4475
|
}[];
|
4476
4476
|
}[];
|
4477
4477
|
company: {
|
@@ -4665,9 +4665,10 @@ export declare const viberContract: {
|
|
4665
4665
|
fileSize: z.ZodNumber;
|
4666
4666
|
fileKey: z.ZodString;
|
4667
4667
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4668
|
-
status: z.
|
4668
|
+
status: z.ZodNullable<z.ZodString>;
|
4669
4669
|
}, "strip", z.ZodTypeAny, {
|
4670
4670
|
id: string;
|
4671
|
+
status: string | null;
|
4671
4672
|
createdAt: Date;
|
4672
4673
|
updatedAt: Date;
|
4673
4674
|
deletedAt: Date | null;
|
@@ -4676,9 +4677,9 @@ export declare const viberContract: {
|
|
4676
4677
|
bucketName: string;
|
4677
4678
|
fileSize: number;
|
4678
4679
|
fileUrl: string | null;
|
4679
|
-
status?: string | undefined;
|
4680
4680
|
}, {
|
4681
4681
|
id: string;
|
4682
|
+
status: string | null;
|
4682
4683
|
createdAt: Date;
|
4683
4684
|
updatedAt: Date;
|
4684
4685
|
deletedAt: Date | null;
|
@@ -4687,7 +4688,6 @@ export declare const viberContract: {
|
|
4687
4688
|
bucketName: string;
|
4688
4689
|
fileSize: number;
|
4689
4690
|
fileUrl: string | null;
|
4690
|
-
status?: string | undefined;
|
4691
4691
|
}>;
|
4692
4692
|
repliedMessage: z.ZodLazy<z.ZodObject<{
|
4693
4693
|
id: z.ZodString;
|
@@ -4717,9 +4717,10 @@ export declare const viberContract: {
|
|
4717
4717
|
fileSize: z.ZodNumber;
|
4718
4718
|
fileKey: z.ZodString;
|
4719
4719
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4720
|
-
status: z.
|
4720
|
+
status: z.ZodNullable<z.ZodString>;
|
4721
4721
|
}, "strip", z.ZodTypeAny, {
|
4722
4722
|
id: string;
|
4723
|
+
status: string | null;
|
4723
4724
|
createdAt: Date;
|
4724
4725
|
updatedAt: Date;
|
4725
4726
|
deletedAt: Date | null;
|
@@ -4728,9 +4729,9 @@ export declare const viberContract: {
|
|
4728
4729
|
bucketName: string;
|
4729
4730
|
fileSize: number;
|
4730
4731
|
fileUrl: string | null;
|
4731
|
-
status?: string | undefined;
|
4732
4732
|
}, {
|
4733
4733
|
id: string;
|
4734
|
+
status: string | null;
|
4734
4735
|
createdAt: Date;
|
4735
4736
|
updatedAt: Date;
|
4736
4737
|
deletedAt: Date | null;
|
@@ -4739,7 +4740,6 @@ export declare const viberContract: {
|
|
4739
4740
|
bucketName: string;
|
4740
4741
|
fileSize: number;
|
4741
4742
|
fileUrl: string | null;
|
4742
|
-
status?: string | undefined;
|
4743
4743
|
}>;
|
4744
4744
|
actor: z.ZodObject<{
|
4745
4745
|
id: z.ZodString;
|
@@ -5409,6 +5409,7 @@ export declare const viberContract: {
|
|
5409
5409
|
platformId: string;
|
5410
5410
|
upload: {
|
5411
5411
|
id: string;
|
5412
|
+
status: string | null;
|
5412
5413
|
createdAt: Date;
|
5413
5414
|
updatedAt: Date;
|
5414
5415
|
deletedAt: Date | null;
|
@@ -5417,7 +5418,6 @@ export declare const viberContract: {
|
|
5417
5418
|
bucketName: string;
|
5418
5419
|
fileSize: number;
|
5419
5420
|
fileUrl: string | null;
|
5420
|
-
status?: string | undefined;
|
5421
5421
|
};
|
5422
5422
|
assignee: {
|
5423
5423
|
id: string;
|
@@ -5571,6 +5571,7 @@ export declare const viberContract: {
|
|
5571
5571
|
platformId: string;
|
5572
5572
|
upload: {
|
5573
5573
|
id: string;
|
5574
|
+
status: string | null;
|
5574
5575
|
createdAt: Date;
|
5575
5576
|
updatedAt: Date;
|
5576
5577
|
deletedAt: Date | null;
|
@@ -5579,7 +5580,6 @@ export declare const viberContract: {
|
|
5579
5580
|
bucketName: string;
|
5580
5581
|
fileSize: number;
|
5581
5582
|
fileUrl: string | null;
|
5582
|
-
status?: string | undefined;
|
5583
5583
|
};
|
5584
5584
|
assignee: {
|
5585
5585
|
id: string;
|
@@ -6371,6 +6371,7 @@ export declare const viberContract: {
|
|
6371
6371
|
platformId: string;
|
6372
6372
|
upload: {
|
6373
6373
|
id: string;
|
6374
|
+
status: string | null;
|
6374
6375
|
createdAt: Date;
|
6375
6376
|
updatedAt: Date;
|
6376
6377
|
deletedAt: Date | null;
|
@@ -6379,7 +6380,6 @@ export declare const viberContract: {
|
|
6379
6380
|
bucketName: string;
|
6380
6381
|
fileSize: number;
|
6381
6382
|
fileUrl: string | null;
|
6382
|
-
status?: string | undefined;
|
6383
6383
|
};
|
6384
6384
|
assignee: {
|
6385
6385
|
id: string;
|
@@ -6592,6 +6592,7 @@ export declare const viberContract: {
|
|
6592
6592
|
dateValue: Date | null;
|
6593
6593
|
uploads: {
|
6594
6594
|
id: string;
|
6595
|
+
status: string | null;
|
6595
6596
|
createdAt: Date;
|
6596
6597
|
updatedAt: Date;
|
6597
6598
|
deletedAt: Date | null;
|
@@ -6600,7 +6601,6 @@ export declare const viberContract: {
|
|
6600
6601
|
bucketName: string;
|
6601
6602
|
fileSize: number;
|
6602
6603
|
fileUrl: string | null;
|
6603
|
-
status?: string | undefined;
|
6604
6604
|
}[];
|
6605
6605
|
}[];
|
6606
6606
|
company: {
|
@@ -6855,6 +6855,7 @@ export declare const viberContract: {
|
|
6855
6855
|
platformId: string;
|
6856
6856
|
upload: {
|
6857
6857
|
id: string;
|
6858
|
+
status: string | null;
|
6858
6859
|
createdAt: Date;
|
6859
6860
|
updatedAt: Date;
|
6860
6861
|
deletedAt: Date | null;
|
@@ -6863,7 +6864,6 @@ export declare const viberContract: {
|
|
6863
6864
|
bucketName: string;
|
6864
6865
|
fileSize: number;
|
6865
6866
|
fileUrl: string | null;
|
6866
|
-
status?: string | undefined;
|
6867
6867
|
};
|
6868
6868
|
assignee: {
|
6869
6869
|
id: string;
|
@@ -7064,6 +7064,7 @@ export declare const viberContract: {
|
|
7064
7064
|
platformId: string;
|
7065
7065
|
upload: {
|
7066
7066
|
id: string;
|
7067
|
+
status: string | null;
|
7067
7068
|
createdAt: Date;
|
7068
7069
|
updatedAt: Date;
|
7069
7070
|
deletedAt: Date | null;
|
@@ -7072,7 +7073,6 @@ export declare const viberContract: {
|
|
7072
7073
|
bucketName: string;
|
7073
7074
|
fileSize: number;
|
7074
7075
|
fileUrl: string | null;
|
7075
|
-
status?: string | undefined;
|
7076
7076
|
};
|
7077
7077
|
assignee: {
|
7078
7078
|
id: string;
|
@@ -7285,6 +7285,7 @@ export declare const viberContract: {
|
|
7285
7285
|
dateValue: Date | null;
|
7286
7286
|
uploads: {
|
7287
7287
|
id: string;
|
7288
|
+
status: string | null;
|
7288
7289
|
createdAt: Date;
|
7289
7290
|
updatedAt: Date;
|
7290
7291
|
deletedAt: Date | null;
|
@@ -7293,7 +7294,6 @@ export declare const viberContract: {
|
|
7293
7294
|
bucketName: string;
|
7294
7295
|
fileSize: number;
|
7295
7296
|
fileUrl: string | null;
|
7296
|
-
status?: string | undefined;
|
7297
7297
|
}[];
|
7298
7298
|
}[];
|
7299
7299
|
company: {
|
@@ -7548,6 +7548,7 @@ export declare const viberContract: {
|
|
7548
7548
|
platformId: string;
|
7549
7549
|
upload: {
|
7550
7550
|
id: string;
|
7551
|
+
status: string | null;
|
7551
7552
|
createdAt: Date;
|
7552
7553
|
updatedAt: Date;
|
7553
7554
|
deletedAt: Date | null;
|
@@ -7556,7 +7557,6 @@ export declare const viberContract: {
|
|
7556
7557
|
bucketName: string;
|
7557
7558
|
fileSize: number;
|
7558
7559
|
fileUrl: string | null;
|
7559
|
-
status?: string | undefined;
|
7560
7560
|
};
|
7561
7561
|
assignee: {
|
7562
7562
|
id: string;
|
@@ -7759,6 +7759,7 @@ export declare const viberContract: {
|
|
7759
7759
|
platformId: string;
|
7760
7760
|
upload: {
|
7761
7761
|
id: string;
|
7762
|
+
status: string | null;
|
7762
7763
|
createdAt: Date;
|
7763
7764
|
updatedAt: Date;
|
7764
7765
|
deletedAt: Date | null;
|
@@ -7767,7 +7768,6 @@ export declare const viberContract: {
|
|
7767
7768
|
bucketName: string;
|
7768
7769
|
fileSize: number;
|
7769
7770
|
fileUrl: string | null;
|
7770
|
-
status?: string | undefined;
|
7771
7771
|
};
|
7772
7772
|
assignee: {
|
7773
7773
|
id: string;
|
@@ -7980,6 +7980,7 @@ export declare const viberContract: {
|
|
7980
7980
|
dateValue: Date | null;
|
7981
7981
|
uploads: {
|
7982
7982
|
id: string;
|
7983
|
+
status: string | null;
|
7983
7984
|
createdAt: Date;
|
7984
7985
|
updatedAt: Date;
|
7985
7986
|
deletedAt: Date | null;
|
@@ -7988,7 +7989,6 @@ export declare const viberContract: {
|
|
7988
7989
|
bucketName: string;
|
7989
7990
|
fileSize: number;
|
7990
7991
|
fileUrl: string | null;
|
7991
|
-
status?: string | undefined;
|
7992
7992
|
}[];
|
7993
7993
|
}[];
|
7994
7994
|
company: {
|
@@ -8243,6 +8243,7 @@ export declare const viberContract: {
|
|
8243
8243
|
platformId: string;
|
8244
8244
|
upload: {
|
8245
8245
|
id: string;
|
8246
|
+
status: string | null;
|
8246
8247
|
createdAt: Date;
|
8247
8248
|
updatedAt: Date;
|
8248
8249
|
deletedAt: Date | null;
|
@@ -8251,7 +8252,6 @@ export declare const viberContract: {
|
|
8251
8252
|
bucketName: string;
|
8252
8253
|
fileSize: number;
|
8253
8254
|
fileUrl: string | null;
|
8254
|
-
status?: string | undefined;
|
8255
8255
|
};
|
8256
8256
|
assignee: {
|
8257
8257
|
id: string;
|
@@ -8455,6 +8455,7 @@ export declare const viberContract: {
|
|
8455
8455
|
platformId: string;
|
8456
8456
|
upload: {
|
8457
8457
|
id: string;
|
8458
|
+
status: string | null;
|
8458
8459
|
createdAt: Date;
|
8459
8460
|
updatedAt: Date;
|
8460
8461
|
deletedAt: Date | null;
|
@@ -8463,7 +8464,6 @@ export declare const viberContract: {
|
|
8463
8464
|
bucketName: string;
|
8464
8465
|
fileSize: number;
|
8465
8466
|
fileUrl: string | null;
|
8466
|
-
status?: string | undefined;
|
8467
8467
|
};
|
8468
8468
|
assignee: {
|
8469
8469
|
id: string;
|
@@ -8676,6 +8676,7 @@ export declare const viberContract: {
|
|
8676
8676
|
dateValue: Date | null;
|
8677
8677
|
uploads: {
|
8678
8678
|
id: string;
|
8679
|
+
status: string | null;
|
8679
8680
|
createdAt: Date;
|
8680
8681
|
updatedAt: Date;
|
8681
8682
|
deletedAt: Date | null;
|
@@ -8684,7 +8685,6 @@ export declare const viberContract: {
|
|
8684
8685
|
bucketName: string;
|
8685
8686
|
fileSize: number;
|
8686
8687
|
fileUrl: string | null;
|
8687
|
-
status?: string | undefined;
|
8688
8688
|
}[];
|
8689
8689
|
}[];
|
8690
8690
|
company: {
|
@@ -8939,6 +8939,7 @@ export declare const viberContract: {
|
|
8939
8939
|
platformId: string;
|
8940
8940
|
upload: {
|
8941
8941
|
id: string;
|
8942
|
+
status: string | null;
|
8942
8943
|
createdAt: Date;
|
8943
8944
|
updatedAt: Date;
|
8944
8945
|
deletedAt: Date | null;
|
@@ -8947,7 +8948,6 @@ export declare const viberContract: {
|
|
8947
8948
|
bucketName: string;
|
8948
8949
|
fileSize: number;
|
8949
8950
|
fileUrl: string | null;
|
8950
|
-
status?: string | undefined;
|
8951
8951
|
};
|
8952
8952
|
assignee: {
|
8953
8953
|
id: string;
|