@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
package/dist/src/line/index.d.ts
CHANGED
@@ -1844,9 +1844,10 @@ export declare const lineContract: {
|
|
1844
1844
|
fileSize: z.ZodNumber;
|
1845
1845
|
fileKey: z.ZodString;
|
1846
1846
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1847
|
-
status: z.
|
1847
|
+
status: z.ZodNullable<z.ZodString>;
|
1848
1848
|
}, "strip", z.ZodTypeAny, {
|
1849
1849
|
id: string;
|
1850
|
+
status: string | null;
|
1850
1851
|
createdAt: Date;
|
1851
1852
|
updatedAt: Date;
|
1852
1853
|
deletedAt: Date | null;
|
@@ -1855,9 +1856,9 @@ export declare const lineContract: {
|
|
1855
1856
|
bucketName: string;
|
1856
1857
|
fileSize: number;
|
1857
1858
|
fileUrl: string | null;
|
1858
|
-
status?: string | undefined;
|
1859
1859
|
}, {
|
1860
1860
|
id: string;
|
1861
|
+
status: string | null;
|
1861
1862
|
createdAt: Date;
|
1862
1863
|
updatedAt: Date;
|
1863
1864
|
deletedAt: Date | null;
|
@@ -1866,7 +1867,6 @@ export declare const lineContract: {
|
|
1866
1867
|
bucketName: string;
|
1867
1868
|
fileSize: number;
|
1868
1869
|
fileUrl: string | null;
|
1869
|
-
status?: string | undefined;
|
1870
1870
|
}>, "many">;
|
1871
1871
|
}, "strip", z.ZodTypeAny, {
|
1872
1872
|
id: string;
|
@@ -1893,6 +1893,7 @@ export declare const lineContract: {
|
|
1893
1893
|
dateValue: Date | null;
|
1894
1894
|
uploads: {
|
1895
1895
|
id: string;
|
1896
|
+
status: string | null;
|
1896
1897
|
createdAt: Date;
|
1897
1898
|
updatedAt: Date;
|
1898
1899
|
deletedAt: Date | null;
|
@@ -1901,7 +1902,6 @@ export declare const lineContract: {
|
|
1901
1902
|
bucketName: string;
|
1902
1903
|
fileSize: number;
|
1903
1904
|
fileUrl: string | null;
|
1904
|
-
status?: string | undefined;
|
1905
1905
|
}[];
|
1906
1906
|
}, {
|
1907
1907
|
id: string;
|
@@ -1928,6 +1928,7 @@ export declare const lineContract: {
|
|
1928
1928
|
dateValue: Date | null;
|
1929
1929
|
uploads: {
|
1930
1930
|
id: string;
|
1931
|
+
status: string | null;
|
1931
1932
|
createdAt: Date;
|
1932
1933
|
updatedAt: Date;
|
1933
1934
|
deletedAt: Date | null;
|
@@ -1936,7 +1937,6 @@ export declare const lineContract: {
|
|
1936
1937
|
bucketName: string;
|
1937
1938
|
fileSize: number;
|
1938
1939
|
fileUrl: string | null;
|
1939
|
-
status?: string | undefined;
|
1940
1940
|
}[];
|
1941
1941
|
}>, "many">;
|
1942
1942
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -2076,6 +2076,7 @@ export declare const lineContract: {
|
|
2076
2076
|
dateValue: Date | null;
|
2077
2077
|
uploads: {
|
2078
2078
|
id: string;
|
2079
|
+
status: string | null;
|
2079
2080
|
createdAt: Date;
|
2080
2081
|
updatedAt: Date;
|
2081
2082
|
deletedAt: Date | null;
|
@@ -2084,7 +2085,6 @@ export declare const lineContract: {
|
|
2084
2085
|
bucketName: string;
|
2085
2086
|
fileSize: number;
|
2086
2087
|
fileUrl: string | null;
|
2087
|
-
status?: string | undefined;
|
2088
2088
|
}[];
|
2089
2089
|
}[];
|
2090
2090
|
company: {
|
@@ -2172,6 +2172,7 @@ export declare const lineContract: {
|
|
2172
2172
|
dateValue: Date | null;
|
2173
2173
|
uploads: {
|
2174
2174
|
id: string;
|
2175
|
+
status: string | null;
|
2175
2176
|
createdAt: Date;
|
2176
2177
|
updatedAt: Date;
|
2177
2178
|
deletedAt: Date | null;
|
@@ -2180,7 +2181,6 @@ export declare const lineContract: {
|
|
2180
2181
|
bucketName: string;
|
2181
2182
|
fileSize: number;
|
2182
2183
|
fileUrl: string | null;
|
2183
|
-
status?: string | undefined;
|
2184
2184
|
}[];
|
2185
2185
|
}[];
|
2186
2186
|
company: {
|
@@ -2281,6 +2281,7 @@ export declare const lineContract: {
|
|
2281
2281
|
dateValue: Date | null;
|
2282
2282
|
uploads: {
|
2283
2283
|
id: string;
|
2284
|
+
status: string | null;
|
2284
2285
|
createdAt: Date;
|
2285
2286
|
updatedAt: Date;
|
2286
2287
|
deletedAt: Date | null;
|
@@ -2289,7 +2290,6 @@ export declare const lineContract: {
|
|
2289
2290
|
bucketName: string;
|
2290
2291
|
fileSize: number;
|
2291
2292
|
fileUrl: string | null;
|
2292
|
-
status?: string | undefined;
|
2293
2293
|
}[];
|
2294
2294
|
}[];
|
2295
2295
|
company: {
|
@@ -2392,6 +2392,7 @@ export declare const lineContract: {
|
|
2392
2392
|
dateValue: Date | null;
|
2393
2393
|
uploads: {
|
2394
2394
|
id: string;
|
2395
|
+
status: string | null;
|
2395
2396
|
createdAt: Date;
|
2396
2397
|
updatedAt: Date;
|
2397
2398
|
deletedAt: Date | null;
|
@@ -2400,7 +2401,6 @@ export declare const lineContract: {
|
|
2400
2401
|
bucketName: string;
|
2401
2402
|
fileSize: number;
|
2402
2403
|
fileUrl: string | null;
|
2403
|
-
status?: string | undefined;
|
2404
2404
|
}[];
|
2405
2405
|
}[];
|
2406
2406
|
company: {
|
@@ -3843,6 +3843,7 @@ export declare const lineContract: {
|
|
3843
3843
|
dateValue: Date | null;
|
3844
3844
|
uploads: {
|
3845
3845
|
id: string;
|
3846
|
+
status: string | null;
|
3846
3847
|
createdAt: Date;
|
3847
3848
|
updatedAt: Date;
|
3848
3849
|
deletedAt: Date | null;
|
@@ -3851,7 +3852,6 @@ export declare const lineContract: {
|
|
3851
3852
|
bucketName: string;
|
3852
3853
|
fileSize: number;
|
3853
3854
|
fileUrl: string | null;
|
3854
|
-
status?: string | undefined;
|
3855
3855
|
}[];
|
3856
3856
|
}[];
|
3857
3857
|
company: {
|
@@ -4201,6 +4201,7 @@ export declare const lineContract: {
|
|
4201
4201
|
dateValue: Date | null;
|
4202
4202
|
uploads: {
|
4203
4203
|
id: string;
|
4204
|
+
status: string | null;
|
4204
4205
|
createdAt: Date;
|
4205
4206
|
updatedAt: Date;
|
4206
4207
|
deletedAt: Date | null;
|
@@ -4209,7 +4210,6 @@ export declare const lineContract: {
|
|
4209
4210
|
bucketName: string;
|
4210
4211
|
fileSize: number;
|
4211
4212
|
fileUrl: string | null;
|
4212
|
-
status?: string | undefined;
|
4213
4213
|
}[];
|
4214
4214
|
}[];
|
4215
4215
|
company: {
|
@@ -4403,9 +4403,10 @@ export declare const lineContract: {
|
|
4403
4403
|
fileSize: z.ZodNumber;
|
4404
4404
|
fileKey: z.ZodString;
|
4405
4405
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4406
|
-
status: z.
|
4406
|
+
status: z.ZodNullable<z.ZodString>;
|
4407
4407
|
}, "strip", z.ZodTypeAny, {
|
4408
4408
|
id: string;
|
4409
|
+
status: string | null;
|
4409
4410
|
createdAt: Date;
|
4410
4411
|
updatedAt: Date;
|
4411
4412
|
deletedAt: Date | null;
|
@@ -4414,9 +4415,9 @@ export declare const lineContract: {
|
|
4414
4415
|
bucketName: string;
|
4415
4416
|
fileSize: number;
|
4416
4417
|
fileUrl: string | null;
|
4417
|
-
status?: string | undefined;
|
4418
4418
|
}, {
|
4419
4419
|
id: string;
|
4420
|
+
status: string | null;
|
4420
4421
|
createdAt: Date;
|
4421
4422
|
updatedAt: Date;
|
4422
4423
|
deletedAt: Date | null;
|
@@ -4425,7 +4426,6 @@ export declare const lineContract: {
|
|
4425
4426
|
bucketName: string;
|
4426
4427
|
fileSize: number;
|
4427
4428
|
fileUrl: string | null;
|
4428
|
-
status?: string | undefined;
|
4429
4429
|
}>;
|
4430
4430
|
repliedMessage: z.ZodLazy<z.ZodObject<{
|
4431
4431
|
id: z.ZodString;
|
@@ -4455,9 +4455,10 @@ export declare const lineContract: {
|
|
4455
4455
|
fileSize: z.ZodNumber;
|
4456
4456
|
fileKey: z.ZodString;
|
4457
4457
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4458
|
-
status: z.
|
4458
|
+
status: z.ZodNullable<z.ZodString>;
|
4459
4459
|
}, "strip", z.ZodTypeAny, {
|
4460
4460
|
id: string;
|
4461
|
+
status: string | null;
|
4461
4462
|
createdAt: Date;
|
4462
4463
|
updatedAt: Date;
|
4463
4464
|
deletedAt: Date | null;
|
@@ -4466,9 +4467,9 @@ export declare const lineContract: {
|
|
4466
4467
|
bucketName: string;
|
4467
4468
|
fileSize: number;
|
4468
4469
|
fileUrl: string | null;
|
4469
|
-
status?: string | undefined;
|
4470
4470
|
}, {
|
4471
4471
|
id: string;
|
4472
|
+
status: string | null;
|
4472
4473
|
createdAt: Date;
|
4473
4474
|
updatedAt: Date;
|
4474
4475
|
deletedAt: Date | null;
|
@@ -4477,7 +4478,6 @@ export declare const lineContract: {
|
|
4477
4478
|
bucketName: string;
|
4478
4479
|
fileSize: number;
|
4479
4480
|
fileUrl: string | null;
|
4480
|
-
status?: string | undefined;
|
4481
4481
|
}>;
|
4482
4482
|
actor: z.ZodObject<{
|
4483
4483
|
id: z.ZodString;
|
@@ -5147,6 +5147,7 @@ export declare const lineContract: {
|
|
5147
5147
|
platformId: string;
|
5148
5148
|
upload: {
|
5149
5149
|
id: string;
|
5150
|
+
status: string | null;
|
5150
5151
|
createdAt: Date;
|
5151
5152
|
updatedAt: Date;
|
5152
5153
|
deletedAt: Date | null;
|
@@ -5155,7 +5156,6 @@ export declare const lineContract: {
|
|
5155
5156
|
bucketName: string;
|
5156
5157
|
fileSize: number;
|
5157
5158
|
fileUrl: string | null;
|
5158
|
-
status?: string | undefined;
|
5159
5159
|
};
|
5160
5160
|
assignee: {
|
5161
5161
|
id: string;
|
@@ -5309,6 +5309,7 @@ export declare const lineContract: {
|
|
5309
5309
|
platformId: string;
|
5310
5310
|
upload: {
|
5311
5311
|
id: string;
|
5312
|
+
status: string | null;
|
5312
5313
|
createdAt: Date;
|
5313
5314
|
updatedAt: Date;
|
5314
5315
|
deletedAt: Date | null;
|
@@ -5317,7 +5318,6 @@ export declare const lineContract: {
|
|
5317
5318
|
bucketName: string;
|
5318
5319
|
fileSize: number;
|
5319
5320
|
fileUrl: string | null;
|
5320
|
-
status?: string | undefined;
|
5321
5321
|
};
|
5322
5322
|
assignee: {
|
5323
5323
|
id: string;
|
@@ -6109,6 +6109,7 @@ export declare const lineContract: {
|
|
6109
6109
|
platformId: string;
|
6110
6110
|
upload: {
|
6111
6111
|
id: string;
|
6112
|
+
status: string | null;
|
6112
6113
|
createdAt: Date;
|
6113
6114
|
updatedAt: Date;
|
6114
6115
|
deletedAt: Date | null;
|
@@ -6117,7 +6118,6 @@ export declare const lineContract: {
|
|
6117
6118
|
bucketName: string;
|
6118
6119
|
fileSize: number;
|
6119
6120
|
fileUrl: string | null;
|
6120
|
-
status?: string | undefined;
|
6121
6121
|
};
|
6122
6122
|
assignee: {
|
6123
6123
|
id: string;
|
@@ -6330,6 +6330,7 @@ export declare const lineContract: {
|
|
6330
6330
|
dateValue: Date | null;
|
6331
6331
|
uploads: {
|
6332
6332
|
id: string;
|
6333
|
+
status: string | null;
|
6333
6334
|
createdAt: Date;
|
6334
6335
|
updatedAt: Date;
|
6335
6336
|
deletedAt: Date | null;
|
@@ -6338,7 +6339,6 @@ export declare const lineContract: {
|
|
6338
6339
|
bucketName: string;
|
6339
6340
|
fileSize: number;
|
6340
6341
|
fileUrl: string | null;
|
6341
|
-
status?: string | undefined;
|
6342
6342
|
}[];
|
6343
6343
|
}[];
|
6344
6344
|
company: {
|
@@ -6593,6 +6593,7 @@ export declare const lineContract: {
|
|
6593
6593
|
platformId: string;
|
6594
6594
|
upload: {
|
6595
6595
|
id: string;
|
6596
|
+
status: string | null;
|
6596
6597
|
createdAt: Date;
|
6597
6598
|
updatedAt: Date;
|
6598
6599
|
deletedAt: Date | null;
|
@@ -6601,7 +6602,6 @@ export declare const lineContract: {
|
|
6601
6602
|
bucketName: string;
|
6602
6603
|
fileSize: number;
|
6603
6604
|
fileUrl: string | null;
|
6604
|
-
status?: string | undefined;
|
6605
6605
|
};
|
6606
6606
|
assignee: {
|
6607
6607
|
id: string;
|
@@ -6802,6 +6802,7 @@ export declare const lineContract: {
|
|
6802
6802
|
platformId: string;
|
6803
6803
|
upload: {
|
6804
6804
|
id: string;
|
6805
|
+
status: string | null;
|
6805
6806
|
createdAt: Date;
|
6806
6807
|
updatedAt: Date;
|
6807
6808
|
deletedAt: Date | null;
|
@@ -6810,7 +6811,6 @@ export declare const lineContract: {
|
|
6810
6811
|
bucketName: string;
|
6811
6812
|
fileSize: number;
|
6812
6813
|
fileUrl: string | null;
|
6813
|
-
status?: string | undefined;
|
6814
6814
|
};
|
6815
6815
|
assignee: {
|
6816
6816
|
id: string;
|
@@ -7023,6 +7023,7 @@ export declare const lineContract: {
|
|
7023
7023
|
dateValue: Date | null;
|
7024
7024
|
uploads: {
|
7025
7025
|
id: string;
|
7026
|
+
status: string | null;
|
7026
7027
|
createdAt: Date;
|
7027
7028
|
updatedAt: Date;
|
7028
7029
|
deletedAt: Date | null;
|
@@ -7031,7 +7032,6 @@ export declare const lineContract: {
|
|
7031
7032
|
bucketName: string;
|
7032
7033
|
fileSize: number;
|
7033
7034
|
fileUrl: string | null;
|
7034
|
-
status?: string | undefined;
|
7035
7035
|
}[];
|
7036
7036
|
}[];
|
7037
7037
|
company: {
|
@@ -7286,6 +7286,7 @@ export declare const lineContract: {
|
|
7286
7286
|
platformId: string;
|
7287
7287
|
upload: {
|
7288
7288
|
id: string;
|
7289
|
+
status: string | null;
|
7289
7290
|
createdAt: Date;
|
7290
7291
|
updatedAt: Date;
|
7291
7292
|
deletedAt: Date | null;
|
@@ -7294,7 +7295,6 @@ export declare const lineContract: {
|
|
7294
7295
|
bucketName: string;
|
7295
7296
|
fileSize: number;
|
7296
7297
|
fileUrl: string | null;
|
7297
|
-
status?: string | undefined;
|
7298
7298
|
};
|
7299
7299
|
assignee: {
|
7300
7300
|
id: string;
|
@@ -7497,6 +7497,7 @@ export declare const lineContract: {
|
|
7497
7497
|
platformId: string;
|
7498
7498
|
upload: {
|
7499
7499
|
id: string;
|
7500
|
+
status: string | null;
|
7500
7501
|
createdAt: Date;
|
7501
7502
|
updatedAt: Date;
|
7502
7503
|
deletedAt: Date | null;
|
@@ -7505,7 +7506,6 @@ export declare const lineContract: {
|
|
7505
7506
|
bucketName: string;
|
7506
7507
|
fileSize: number;
|
7507
7508
|
fileUrl: string | null;
|
7508
|
-
status?: string | undefined;
|
7509
7509
|
};
|
7510
7510
|
assignee: {
|
7511
7511
|
id: string;
|
@@ -7718,6 +7718,7 @@ export declare const lineContract: {
|
|
7718
7718
|
dateValue: Date | null;
|
7719
7719
|
uploads: {
|
7720
7720
|
id: string;
|
7721
|
+
status: string | null;
|
7721
7722
|
createdAt: Date;
|
7722
7723
|
updatedAt: Date;
|
7723
7724
|
deletedAt: Date | null;
|
@@ -7726,7 +7727,6 @@ export declare const lineContract: {
|
|
7726
7727
|
bucketName: string;
|
7727
7728
|
fileSize: number;
|
7728
7729
|
fileUrl: string | null;
|
7729
|
-
status?: string | undefined;
|
7730
7730
|
}[];
|
7731
7731
|
}[];
|
7732
7732
|
company: {
|
@@ -7981,6 +7981,7 @@ export declare const lineContract: {
|
|
7981
7981
|
platformId: string;
|
7982
7982
|
upload: {
|
7983
7983
|
id: string;
|
7984
|
+
status: string | null;
|
7984
7985
|
createdAt: Date;
|
7985
7986
|
updatedAt: Date;
|
7986
7987
|
deletedAt: Date | null;
|
@@ -7989,7 +7990,6 @@ export declare const lineContract: {
|
|
7989
7990
|
bucketName: string;
|
7990
7991
|
fileSize: number;
|
7991
7992
|
fileUrl: string | null;
|
7992
|
-
status?: string | undefined;
|
7993
7993
|
};
|
7994
7994
|
assignee: {
|
7995
7995
|
id: string;
|
@@ -8193,6 +8193,7 @@ export declare const lineContract: {
|
|
8193
8193
|
platformId: string;
|
8194
8194
|
upload: {
|
8195
8195
|
id: string;
|
8196
|
+
status: string | null;
|
8196
8197
|
createdAt: Date;
|
8197
8198
|
updatedAt: Date;
|
8198
8199
|
deletedAt: Date | null;
|
@@ -8201,7 +8202,6 @@ export declare const lineContract: {
|
|
8201
8202
|
bucketName: string;
|
8202
8203
|
fileSize: number;
|
8203
8204
|
fileUrl: string | null;
|
8204
|
-
status?: string | undefined;
|
8205
8205
|
};
|
8206
8206
|
assignee: {
|
8207
8207
|
id: string;
|
@@ -8414,6 +8414,7 @@ export declare const lineContract: {
|
|
8414
8414
|
dateValue: Date | null;
|
8415
8415
|
uploads: {
|
8416
8416
|
id: string;
|
8417
|
+
status: string | null;
|
8417
8418
|
createdAt: Date;
|
8418
8419
|
updatedAt: Date;
|
8419
8420
|
deletedAt: Date | null;
|
@@ -8422,7 +8423,6 @@ export declare const lineContract: {
|
|
8422
8423
|
bucketName: string;
|
8423
8424
|
fileSize: number;
|
8424
8425
|
fileUrl: string | null;
|
8425
|
-
status?: string | undefined;
|
8426
8426
|
}[];
|
8427
8427
|
}[];
|
8428
8428
|
company: {
|
@@ -8677,6 +8677,7 @@ export declare const lineContract: {
|
|
8677
8677
|
platformId: string;
|
8678
8678
|
upload: {
|
8679
8679
|
id: string;
|
8680
|
+
status: string | null;
|
8680
8681
|
createdAt: Date;
|
8681
8682
|
updatedAt: Date;
|
8682
8683
|
deletedAt: Date | null;
|
@@ -8685,7 +8686,6 @@ export declare const lineContract: {
|
|
8685
8686
|
bucketName: string;
|
8686
8687
|
fileSize: number;
|
8687
8688
|
fileUrl: string | null;
|
8688
|
-
status?: string | undefined;
|
8689
8689
|
};
|
8690
8690
|
assignee: {
|
8691
8691
|
id: string;
|
@@ -10008,9 +10008,10 @@ export declare const mailContract: {
|
|
10008
10008
|
fileSize: import("zod").ZodNumber;
|
10009
10009
|
fileKey: import("zod").ZodString;
|
10010
10010
|
fileUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
10011
|
-
status: import("zod").
|
10011
|
+
status: import("zod").ZodNullable<import("zod").ZodString>;
|
10012
10012
|
}, "strip", import("zod").ZodTypeAny, {
|
10013
10013
|
id: string;
|
10014
|
+
status: string | null;
|
10014
10015
|
createdAt: Date;
|
10015
10016
|
updatedAt: Date;
|
10016
10017
|
deletedAt: Date | null;
|
@@ -10019,9 +10020,9 @@ export declare const mailContract: {
|
|
10019
10020
|
bucketName: string;
|
10020
10021
|
fileSize: number;
|
10021
10022
|
fileUrl: string | null;
|
10022
|
-
status?: string | undefined;
|
10023
10023
|
}, {
|
10024
10024
|
id: string;
|
10025
|
+
status: string | null;
|
10025
10026
|
createdAt: Date;
|
10026
10027
|
updatedAt: Date;
|
10027
10028
|
deletedAt: Date | null;
|
@@ -10030,7 +10031,6 @@ export declare const mailContract: {
|
|
10030
10031
|
bucketName: string;
|
10031
10032
|
fileSize: number;
|
10032
10033
|
fileUrl: string | null;
|
10033
|
-
status?: string | undefined;
|
10034
10034
|
}>;
|
10035
10035
|
}, "strip", import("zod").ZodTypeAny, {
|
10036
10036
|
fileName: string;
|
@@ -10038,6 +10038,7 @@ export declare const mailContract: {
|
|
10038
10038
|
uploadId: string;
|
10039
10039
|
upload: {
|
10040
10040
|
id: string;
|
10041
|
+
status: string | null;
|
10041
10042
|
createdAt: Date;
|
10042
10043
|
updatedAt: Date;
|
10043
10044
|
deletedAt: Date | null;
|
@@ -10046,7 +10047,6 @@ export declare const mailContract: {
|
|
10046
10047
|
bucketName: string;
|
10047
10048
|
fileSize: number;
|
10048
10049
|
fileUrl: string | null;
|
10049
|
-
status?: string | undefined;
|
10050
10050
|
};
|
10051
10051
|
roomId: string;
|
10052
10052
|
messageId: string;
|
@@ -10057,6 +10057,7 @@ export declare const mailContract: {
|
|
10057
10057
|
uploadId: string;
|
10058
10058
|
upload: {
|
10059
10059
|
id: string;
|
10060
|
+
status: string | null;
|
10060
10061
|
createdAt: Date;
|
10061
10062
|
updatedAt: Date;
|
10062
10063
|
deletedAt: Date | null;
|
@@ -10065,7 +10066,6 @@ export declare const mailContract: {
|
|
10065
10066
|
bucketName: string;
|
10066
10067
|
fileSize: number;
|
10067
10068
|
fileUrl: string | null;
|
10068
|
-
status?: string | undefined;
|
10069
10069
|
};
|
10070
10070
|
roomId: string;
|
10071
10071
|
messageId: string;
|
@@ -10078,6 +10078,7 @@ export declare const mailContract: {
|
|
10078
10078
|
uploadId: string;
|
10079
10079
|
upload: {
|
10080
10080
|
id: string;
|
10081
|
+
status: string | null;
|
10081
10082
|
createdAt: Date;
|
10082
10083
|
updatedAt: Date;
|
10083
10084
|
deletedAt: Date | null;
|
@@ -10086,7 +10087,6 @@ export declare const mailContract: {
|
|
10086
10087
|
bucketName: string;
|
10087
10088
|
fileSize: number;
|
10088
10089
|
fileUrl: string | null;
|
10089
|
-
status?: string | undefined;
|
10090
10090
|
};
|
10091
10091
|
roomId: string;
|
10092
10092
|
messageId: string;
|
@@ -10100,6 +10100,7 @@ export declare const mailContract: {
|
|
10100
10100
|
uploadId: string;
|
10101
10101
|
upload: {
|
10102
10102
|
id: string;
|
10103
|
+
status: string | null;
|
10103
10104
|
createdAt: Date;
|
10104
10105
|
updatedAt: Date;
|
10105
10106
|
deletedAt: Date | null;
|
@@ -10108,7 +10109,6 @@ export declare const mailContract: {
|
|
10108
10109
|
bucketName: string;
|
10109
10110
|
fileSize: number;
|
10110
10111
|
fileUrl: string | null;
|
10111
|
-
status?: string | undefined;
|
10112
10112
|
};
|
10113
10113
|
roomId: string;
|
10114
10114
|
messageId: string;
|
@@ -10008,9 +10008,10 @@ export declare const roomContract: {
|
|
10008
10008
|
fileSize: z.ZodNumber;
|
10009
10009
|
fileKey: z.ZodString;
|
10010
10010
|
fileUrl: z.ZodNullable<z.ZodString>;
|
10011
|
-
status: z.
|
10011
|
+
status: z.ZodNullable<z.ZodString>;
|
10012
10012
|
}, "strip", z.ZodTypeAny, {
|
10013
10013
|
id: string;
|
10014
|
+
status: string | null;
|
10014
10015
|
createdAt: Date;
|
10015
10016
|
updatedAt: Date;
|
10016
10017
|
deletedAt: Date | null;
|
@@ -10019,9 +10020,9 @@ export declare const roomContract: {
|
|
10019
10020
|
bucketName: string;
|
10020
10021
|
fileSize: number;
|
10021
10022
|
fileUrl: string | null;
|
10022
|
-
status?: string | undefined;
|
10023
10023
|
}, {
|
10024
10024
|
id: string;
|
10025
|
+
status: string | null;
|
10025
10026
|
createdAt: Date;
|
10026
10027
|
updatedAt: Date;
|
10027
10028
|
deletedAt: Date | null;
|
@@ -10030,7 +10031,6 @@ export declare const roomContract: {
|
|
10030
10031
|
bucketName: string;
|
10031
10032
|
fileSize: number;
|
10032
10033
|
fileUrl: string | null;
|
10033
|
-
status?: string | undefined;
|
10034
10034
|
}>;
|
10035
10035
|
}, "strip", z.ZodTypeAny, {
|
10036
10036
|
fileName: string;
|
@@ -10038,6 +10038,7 @@ export declare const roomContract: {
|
|
10038
10038
|
uploadId: string;
|
10039
10039
|
upload: {
|
10040
10040
|
id: string;
|
10041
|
+
status: string | null;
|
10041
10042
|
createdAt: Date;
|
10042
10043
|
updatedAt: Date;
|
10043
10044
|
deletedAt: Date | null;
|
@@ -10046,7 +10047,6 @@ export declare const roomContract: {
|
|
10046
10047
|
bucketName: string;
|
10047
10048
|
fileSize: number;
|
10048
10049
|
fileUrl: string | null;
|
10049
|
-
status?: string | undefined;
|
10050
10050
|
};
|
10051
10051
|
roomId: string;
|
10052
10052
|
messageId: string;
|
@@ -10057,6 +10057,7 @@ export declare const roomContract: {
|
|
10057
10057
|
uploadId: string;
|
10058
10058
|
upload: {
|
10059
10059
|
id: string;
|
10060
|
+
status: string | null;
|
10060
10061
|
createdAt: Date;
|
10061
10062
|
updatedAt: Date;
|
10062
10063
|
deletedAt: Date | null;
|
@@ -10065,7 +10066,6 @@ export declare const roomContract: {
|
|
10065
10066
|
bucketName: string;
|
10066
10067
|
fileSize: number;
|
10067
10068
|
fileUrl: string | null;
|
10068
|
-
status?: string | undefined;
|
10069
10069
|
};
|
10070
10070
|
roomId: string;
|
10071
10071
|
messageId: string;
|
@@ -10078,6 +10078,7 @@ export declare const roomContract: {
|
|
10078
10078
|
uploadId: string;
|
10079
10079
|
upload: {
|
10080
10080
|
id: string;
|
10081
|
+
status: string | null;
|
10081
10082
|
createdAt: Date;
|
10082
10083
|
updatedAt: Date;
|
10083
10084
|
deletedAt: Date | null;
|
@@ -10086,7 +10087,6 @@ export declare const roomContract: {
|
|
10086
10087
|
bucketName: string;
|
10087
10088
|
fileSize: number;
|
10088
10089
|
fileUrl: string | null;
|
10089
|
-
status?: string | undefined;
|
10090
10090
|
};
|
10091
10091
|
roomId: string;
|
10092
10092
|
messageId: string;
|
@@ -10100,6 +10100,7 @@ export declare const roomContract: {
|
|
10100
10100
|
uploadId: string;
|
10101
10101
|
upload: {
|
10102
10102
|
id: string;
|
10103
|
+
status: string | null;
|
10103
10104
|
createdAt: Date;
|
10104
10105
|
updatedAt: Date;
|
10105
10106
|
deletedAt: Date | null;
|
@@ -10108,7 +10109,6 @@ export declare const roomContract: {
|
|
10108
10109
|
bucketName: string;
|
10109
10110
|
fileSize: number;
|
10110
10111
|
fileUrl: string | null;
|
10111
|
-
status?: string | undefined;
|
10112
10112
|
};
|
10113
10113
|
roomId: string;
|
10114
10114
|
messageId: string;
|
@@ -8948,9 +8948,10 @@ export declare const AttachmentSchema: z.ZodObject<{
|
|
8948
8948
|
fileSize: z.ZodNumber;
|
8949
8949
|
fileKey: z.ZodString;
|
8950
8950
|
fileUrl: z.ZodNullable<z.ZodString>;
|
8951
|
-
status: z.
|
8951
|
+
status: z.ZodNullable<z.ZodString>;
|
8952
8952
|
}, "strip", z.ZodTypeAny, {
|
8953
8953
|
id: string;
|
8954
|
+
status: string | null;
|
8954
8955
|
createdAt: Date;
|
8955
8956
|
updatedAt: Date;
|
8956
8957
|
deletedAt: Date | null;
|
@@ -8959,9 +8960,9 @@ export declare const AttachmentSchema: z.ZodObject<{
|
|
8959
8960
|
bucketName: string;
|
8960
8961
|
fileSize: number;
|
8961
8962
|
fileUrl: string | null;
|
8962
|
-
status?: string | undefined;
|
8963
8963
|
}, {
|
8964
8964
|
id: string;
|
8965
|
+
status: string | null;
|
8965
8966
|
createdAt: Date;
|
8966
8967
|
updatedAt: Date;
|
8967
8968
|
deletedAt: Date | null;
|
@@ -8970,7 +8971,6 @@ export declare const AttachmentSchema: z.ZodObject<{
|
|
8970
8971
|
bucketName: string;
|
8971
8972
|
fileSize: number;
|
8972
8973
|
fileUrl: string | null;
|
8973
|
-
status?: string | undefined;
|
8974
8974
|
}>;
|
8975
8975
|
}, "strip", z.ZodTypeAny, {
|
8976
8976
|
fileName: string;
|
@@ -8978,6 +8978,7 @@ export declare const AttachmentSchema: z.ZodObject<{
|
|
8978
8978
|
uploadId: string;
|
8979
8979
|
upload: {
|
8980
8980
|
id: string;
|
8981
|
+
status: string | null;
|
8981
8982
|
createdAt: Date;
|
8982
8983
|
updatedAt: Date;
|
8983
8984
|
deletedAt: Date | null;
|
@@ -8986,7 +8987,6 @@ export declare const AttachmentSchema: z.ZodObject<{
|
|
8986
8987
|
bucketName: string;
|
8987
8988
|
fileSize: number;
|
8988
8989
|
fileUrl: string | null;
|
8989
|
-
status?: string | undefined;
|
8990
8990
|
};
|
8991
8991
|
roomId: string;
|
8992
8992
|
messageId: string;
|
@@ -8997,6 +8997,7 @@ export declare const AttachmentSchema: z.ZodObject<{
|
|
8997
8997
|
uploadId: string;
|
8998
8998
|
upload: {
|
8999
8999
|
id: string;
|
9000
|
+
status: string | null;
|
9000
9001
|
createdAt: Date;
|
9001
9002
|
updatedAt: Date;
|
9002
9003
|
deletedAt: Date | null;
|
@@ -9005,7 +9006,6 @@ export declare const AttachmentSchema: z.ZodObject<{
|
|
9005
9006
|
bucketName: string;
|
9006
9007
|
fileSize: number;
|
9007
9008
|
fileUrl: string | null;
|
9008
|
-
status?: string | undefined;
|
9009
9009
|
};
|
9010
9010
|
roomId: string;
|
9011
9011
|
messageId: string;
|