@kl1/contracts 1.0.70 → 1.0.72
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 +13 -19
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -19
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +1110 -2579
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +222 -519
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +228 -482
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +222 -547
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +66 -165
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +1496 -1003
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +72 -200
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +317 -806
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +6029 -8827
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field-upload/schema.d.ts +2 -2
- package/dist/src/cx-log/index.d.ts +234 -573
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +198 -495
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +138 -265
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +138 -265
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1330 -1330
- package/dist/src/mail/message-contract.d.ts +56 -56
- package/dist/src/mail/room-contract.d.ts +1258 -1258
- package/dist/src/mail/schemas/message.schema.d.ts +33 -33
- package/dist/src/mail/schemas/room-validation.schema.d.ts +420 -420
- package/dist/src/mail/schemas/room.schema.d.ts +284 -284
- package/dist/src/messenger/index.d.ts +138 -265
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +198 -495
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +54 -139
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +338 -818
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +54 -139
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +138 -265
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/src/line/index.d.ts
CHANGED
@@ -1301,77 +1301,34 @@ export declare const lineContract: {
|
|
1301
1301
|
createdAt: z.ZodDate;
|
1302
1302
|
updatedAt: z.ZodDate;
|
1303
1303
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
bucketName: z.ZodString;
|
1311
|
-
fileName: z.ZodString;
|
1312
|
-
fileSize: z.ZodNumber;
|
1313
|
-
fileKey: z.ZodString;
|
1314
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
1315
|
-
status: z.ZodOptional<z.ZodString>;
|
1316
|
-
}, "strip", z.ZodTypeAny, {
|
1317
|
-
id: string;
|
1318
|
-
createdAt: Date;
|
1319
|
-
updatedAt: Date;
|
1320
|
-
deletedAt: Date | null;
|
1321
|
-
fileName: string;
|
1322
|
-
fileKey: string;
|
1323
|
-
bucketName: string;
|
1324
|
-
fileSize: number;
|
1325
|
-
fileUrl: string | null;
|
1326
|
-
status?: string | undefined;
|
1327
|
-
}, {
|
1328
|
-
id: string;
|
1329
|
-
createdAt: Date;
|
1330
|
-
updatedAt: Date;
|
1331
|
-
deletedAt: Date | null;
|
1332
|
-
fileName: string;
|
1333
|
-
fileKey: string;
|
1334
|
-
bucketName: string;
|
1335
|
-
fileSize: number;
|
1336
|
-
fileUrl: string | null;
|
1337
|
-
status?: string | undefined;
|
1338
|
-
}>;
|
1304
|
+
bucketName: z.ZodString;
|
1305
|
+
fileName: z.ZodString;
|
1306
|
+
fileSize: z.ZodNumber;
|
1307
|
+
fileKey: z.ZodString;
|
1308
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
1309
|
+
status: z.ZodOptional<z.ZodString>;
|
1339
1310
|
}, "strip", z.ZodTypeAny, {
|
1340
1311
|
id: string;
|
1341
1312
|
createdAt: Date;
|
1342
1313
|
updatedAt: Date;
|
1343
1314
|
deletedAt: Date | null;
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
fileName: string;
|
1351
|
-
fileKey: string;
|
1352
|
-
bucketName: string;
|
1353
|
-
fileSize: number;
|
1354
|
-
fileUrl: string | null;
|
1355
|
-
status?: string | undefined;
|
1356
|
-
};
|
1315
|
+
fileName: string;
|
1316
|
+
fileKey: string;
|
1317
|
+
bucketName: string;
|
1318
|
+
fileSize: number;
|
1319
|
+
fileUrl: string | null;
|
1320
|
+
status?: string | undefined;
|
1357
1321
|
}, {
|
1358
1322
|
id: string;
|
1359
1323
|
createdAt: Date;
|
1360
1324
|
updatedAt: Date;
|
1361
1325
|
deletedAt: Date | null;
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
fileName: string;
|
1369
|
-
fileKey: string;
|
1370
|
-
bucketName: string;
|
1371
|
-
fileSize: number;
|
1372
|
-
fileUrl: string | null;
|
1373
|
-
status?: string | undefined;
|
1374
|
-
};
|
1326
|
+
fileName: string;
|
1327
|
+
fileKey: string;
|
1328
|
+
bucketName: string;
|
1329
|
+
fileSize: number;
|
1330
|
+
fileUrl: string | null;
|
1331
|
+
status?: string | undefined;
|
1375
1332
|
}>, "many">;
|
1376
1333
|
}, "strip", z.ZodTypeAny, {
|
1377
1334
|
id: string;
|
@@ -1401,19 +1358,12 @@ export declare const lineContract: {
|
|
1401
1358
|
createdAt: Date;
|
1402
1359
|
updatedAt: Date;
|
1403
1360
|
deletedAt: Date | null;
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
fileName: string;
|
1411
|
-
fileKey: string;
|
1412
|
-
bucketName: string;
|
1413
|
-
fileSize: number;
|
1414
|
-
fileUrl: string | null;
|
1415
|
-
status?: string | undefined;
|
1416
|
-
};
|
1361
|
+
fileName: string;
|
1362
|
+
fileKey: string;
|
1363
|
+
bucketName: string;
|
1364
|
+
fileSize: number;
|
1365
|
+
fileUrl: string | null;
|
1366
|
+
status?: string | undefined;
|
1417
1367
|
}[];
|
1418
1368
|
}, {
|
1419
1369
|
id: string;
|
@@ -1443,19 +1393,12 @@ export declare const lineContract: {
|
|
1443
1393
|
createdAt: Date;
|
1444
1394
|
updatedAt: Date;
|
1445
1395
|
deletedAt: Date | null;
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1451
|
-
|
1452
|
-
fileName: string;
|
1453
|
-
fileKey: string;
|
1454
|
-
bucketName: string;
|
1455
|
-
fileSize: number;
|
1456
|
-
fileUrl: string | null;
|
1457
|
-
status?: string | undefined;
|
1458
|
-
};
|
1396
|
+
fileName: string;
|
1397
|
+
fileKey: string;
|
1398
|
+
bucketName: string;
|
1399
|
+
fileSize: number;
|
1400
|
+
fileUrl: string | null;
|
1401
|
+
status?: string | undefined;
|
1459
1402
|
}[];
|
1460
1403
|
}>, "many">;
|
1461
1404
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1598,19 +1541,12 @@ export declare const lineContract: {
|
|
1598
1541
|
createdAt: Date;
|
1599
1542
|
updatedAt: Date;
|
1600
1543
|
deletedAt: Date | null;
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1605
|
-
|
1606
|
-
|
1607
|
-
fileName: string;
|
1608
|
-
fileKey: string;
|
1609
|
-
bucketName: string;
|
1610
|
-
fileSize: number;
|
1611
|
-
fileUrl: string | null;
|
1612
|
-
status?: string | undefined;
|
1613
|
-
};
|
1544
|
+
fileName: string;
|
1545
|
+
fileKey: string;
|
1546
|
+
bucketName: string;
|
1547
|
+
fileSize: number;
|
1548
|
+
fileUrl: string | null;
|
1549
|
+
status?: string | undefined;
|
1614
1550
|
}[];
|
1615
1551
|
}[];
|
1616
1552
|
company: {
|
@@ -1701,19 +1637,12 @@ export declare const lineContract: {
|
|
1701
1637
|
createdAt: Date;
|
1702
1638
|
updatedAt: Date;
|
1703
1639
|
deletedAt: Date | null;
|
1704
|
-
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1709
|
-
|
1710
|
-
fileName: string;
|
1711
|
-
fileKey: string;
|
1712
|
-
bucketName: string;
|
1713
|
-
fileSize: number;
|
1714
|
-
fileUrl: string | null;
|
1715
|
-
status?: string | undefined;
|
1716
|
-
};
|
1640
|
+
fileName: string;
|
1641
|
+
fileKey: string;
|
1642
|
+
bucketName: string;
|
1643
|
+
fileSize: number;
|
1644
|
+
fileUrl: string | null;
|
1645
|
+
status?: string | undefined;
|
1717
1646
|
}[];
|
1718
1647
|
}[];
|
1719
1648
|
company: {
|
@@ -1817,19 +1746,12 @@ export declare const lineContract: {
|
|
1817
1746
|
createdAt: Date;
|
1818
1747
|
updatedAt: Date;
|
1819
1748
|
deletedAt: Date | null;
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1823
|
-
|
1824
|
-
|
1825
|
-
|
1826
|
-
fileName: string;
|
1827
|
-
fileKey: string;
|
1828
|
-
bucketName: string;
|
1829
|
-
fileSize: number;
|
1830
|
-
fileUrl: string | null;
|
1831
|
-
status?: string | undefined;
|
1832
|
-
};
|
1749
|
+
fileName: string;
|
1750
|
+
fileKey: string;
|
1751
|
+
bucketName: string;
|
1752
|
+
fileSize: number;
|
1753
|
+
fileUrl: string | null;
|
1754
|
+
status?: string | undefined;
|
1833
1755
|
}[];
|
1834
1756
|
}[];
|
1835
1757
|
company: {
|
@@ -1935,19 +1857,12 @@ export declare const lineContract: {
|
|
1935
1857
|
createdAt: Date;
|
1936
1858
|
updatedAt: Date;
|
1937
1859
|
deletedAt: Date | null;
|
1938
|
-
|
1939
|
-
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1944
|
-
fileName: string;
|
1945
|
-
fileKey: string;
|
1946
|
-
bucketName: string;
|
1947
|
-
fileSize: number;
|
1948
|
-
fileUrl: string | null;
|
1949
|
-
status?: string | undefined;
|
1950
|
-
};
|
1860
|
+
fileName: string;
|
1861
|
+
fileKey: string;
|
1862
|
+
bucketName: string;
|
1863
|
+
fileSize: number;
|
1864
|
+
fileUrl: string | null;
|
1865
|
+
status?: string | undefined;
|
1951
1866
|
}[];
|
1952
1867
|
}[];
|
1953
1868
|
company: {
|
@@ -3031,19 +2946,12 @@ export declare const lineContract: {
|
|
3031
2946
|
createdAt: Date;
|
3032
2947
|
updatedAt: Date;
|
3033
2948
|
deletedAt: Date | null;
|
3034
|
-
|
3035
|
-
|
3036
|
-
|
3037
|
-
|
3038
|
-
|
3039
|
-
|
3040
|
-
fileName: string;
|
3041
|
-
fileKey: string;
|
3042
|
-
bucketName: string;
|
3043
|
-
fileSize: number;
|
3044
|
-
fileUrl: string | null;
|
3045
|
-
status?: string | undefined;
|
3046
|
-
};
|
2949
|
+
fileName: string;
|
2950
|
+
fileKey: string;
|
2951
|
+
bucketName: string;
|
2952
|
+
fileSize: number;
|
2953
|
+
fileUrl: string | null;
|
2954
|
+
status?: string | undefined;
|
3047
2955
|
}[];
|
3048
2956
|
}[];
|
3049
2957
|
company: {
|
@@ -3351,19 +3259,12 @@ export declare const lineContract: {
|
|
3351
3259
|
createdAt: Date;
|
3352
3260
|
updatedAt: Date;
|
3353
3261
|
deletedAt: Date | null;
|
3354
|
-
|
3355
|
-
|
3356
|
-
|
3357
|
-
|
3358
|
-
|
3359
|
-
|
3360
|
-
fileName: string;
|
3361
|
-
fileKey: string;
|
3362
|
-
bucketName: string;
|
3363
|
-
fileSize: number;
|
3364
|
-
fileUrl: string | null;
|
3365
|
-
status?: string | undefined;
|
3366
|
-
};
|
3262
|
+
fileName: string;
|
3263
|
+
fileKey: string;
|
3264
|
+
bucketName: string;
|
3265
|
+
fileSize: number;
|
3266
|
+
fileUrl: string | null;
|
3267
|
+
status?: string | undefined;
|
3367
3268
|
}[];
|
3368
3269
|
}[];
|
3369
3270
|
company: {
|
@@ -4267,18 +4168,6 @@ export declare const lineContract: {
|
|
4267
4168
|
};
|
4268
4169
|
};
|
4269
4170
|
platformId: string;
|
4270
|
-
upload: {
|
4271
|
-
id: string;
|
4272
|
-
createdAt: Date;
|
4273
|
-
updatedAt: Date;
|
4274
|
-
deletedAt: Date | null;
|
4275
|
-
fileName: string;
|
4276
|
-
fileKey: string;
|
4277
|
-
bucketName: string;
|
4278
|
-
fileSize: number;
|
4279
|
-
fileUrl: string | null;
|
4280
|
-
status?: string | undefined;
|
4281
|
-
};
|
4282
4171
|
assignee: {
|
4283
4172
|
id: string;
|
4284
4173
|
address: string | null;
|
@@ -4434,19 +4323,12 @@ export declare const lineContract: {
|
|
4434
4323
|
createdAt: Date;
|
4435
4324
|
updatedAt: Date;
|
4436
4325
|
deletedAt: Date | null;
|
4437
|
-
|
4438
|
-
|
4439
|
-
|
4440
|
-
|
4441
|
-
|
4442
|
-
|
4443
|
-
fileName: string;
|
4444
|
-
fileKey: string;
|
4445
|
-
bucketName: string;
|
4446
|
-
fileSize: number;
|
4447
|
-
fileUrl: string | null;
|
4448
|
-
status?: string | undefined;
|
4449
|
-
};
|
4326
|
+
fileName: string;
|
4327
|
+
fileKey: string;
|
4328
|
+
bucketName: string;
|
4329
|
+
fileSize: number;
|
4330
|
+
fileUrl: string | null;
|
4331
|
+
status?: string | undefined;
|
4450
4332
|
}[];
|
4451
4333
|
}[];
|
4452
4334
|
company: {
|
@@ -4650,6 +4532,18 @@ export declare const lineContract: {
|
|
4650
4532
|
} | undefined;
|
4651
4533
|
} | undefined;
|
4652
4534
|
};
|
4535
|
+
upload: {
|
4536
|
+
id: string;
|
4537
|
+
createdAt: Date;
|
4538
|
+
updatedAt: Date;
|
4539
|
+
deletedAt: Date | null;
|
4540
|
+
fileName: string;
|
4541
|
+
fileKey: string;
|
4542
|
+
bucketName: string;
|
4543
|
+
fileSize: number;
|
4544
|
+
fileUrl: string | null;
|
4545
|
+
status?: string | undefined;
|
4546
|
+
};
|
4653
4547
|
sender: {
|
4654
4548
|
id: string;
|
4655
4549
|
address: string | null;
|
@@ -4750,18 +4644,6 @@ export declare const lineContract: {
|
|
4750
4644
|
};
|
4751
4645
|
};
|
4752
4646
|
platformId: string;
|
4753
|
-
upload: {
|
4754
|
-
id: string;
|
4755
|
-
createdAt: Date;
|
4756
|
-
updatedAt: Date;
|
4757
|
-
deletedAt: Date | null;
|
4758
|
-
fileName: string;
|
4759
|
-
fileKey: string;
|
4760
|
-
bucketName: string;
|
4761
|
-
fileSize: number;
|
4762
|
-
fileUrl: string | null;
|
4763
|
-
status?: string | undefined;
|
4764
|
-
};
|
4765
4647
|
assignee: {
|
4766
4648
|
id: string;
|
4767
4649
|
address: string | null;
|
@@ -4917,19 +4799,12 @@ export declare const lineContract: {
|
|
4917
4799
|
createdAt: Date;
|
4918
4800
|
updatedAt: Date;
|
4919
4801
|
deletedAt: Date | null;
|
4920
|
-
|
4921
|
-
|
4922
|
-
|
4923
|
-
|
4924
|
-
|
4925
|
-
|
4926
|
-
fileName: string;
|
4927
|
-
fileKey: string;
|
4928
|
-
bucketName: string;
|
4929
|
-
fileSize: number;
|
4930
|
-
fileUrl: string | null;
|
4931
|
-
status?: string | undefined;
|
4932
|
-
};
|
4802
|
+
fileName: string;
|
4803
|
+
fileKey: string;
|
4804
|
+
bucketName: string;
|
4805
|
+
fileSize: number;
|
4806
|
+
fileUrl: string | null;
|
4807
|
+
status?: string | undefined;
|
4933
4808
|
}[];
|
4934
4809
|
}[];
|
4935
4810
|
company: {
|
@@ -5133,6 +5008,18 @@ export declare const lineContract: {
|
|
5133
5008
|
} | undefined;
|
5134
5009
|
} | undefined;
|
5135
5010
|
};
|
5011
|
+
upload: {
|
5012
|
+
id: string;
|
5013
|
+
createdAt: Date;
|
5014
|
+
updatedAt: Date;
|
5015
|
+
deletedAt: Date | null;
|
5016
|
+
fileName: string;
|
5017
|
+
fileKey: string;
|
5018
|
+
bucketName: string;
|
5019
|
+
fileSize: number;
|
5020
|
+
fileUrl: string | null;
|
5021
|
+
status?: string | undefined;
|
5022
|
+
};
|
5136
5023
|
sender: {
|
5137
5024
|
id: string;
|
5138
5025
|
address: string | null;
|
@@ -5235,18 +5122,6 @@ export declare const lineContract: {
|
|
5235
5122
|
};
|
5236
5123
|
};
|
5237
5124
|
platformId: string;
|
5238
|
-
upload: {
|
5239
|
-
id: string;
|
5240
|
-
createdAt: Date;
|
5241
|
-
updatedAt: Date;
|
5242
|
-
deletedAt: Date | null;
|
5243
|
-
fileName: string;
|
5244
|
-
fileKey: string;
|
5245
|
-
bucketName: string;
|
5246
|
-
fileSize: number;
|
5247
|
-
fileUrl: string | null;
|
5248
|
-
status?: string | undefined;
|
5249
|
-
};
|
5250
5125
|
assignee: {
|
5251
5126
|
id: string;
|
5252
5127
|
address: string | null;
|
@@ -5402,19 +5277,12 @@ export declare const lineContract: {
|
|
5402
5277
|
createdAt: Date;
|
5403
5278
|
updatedAt: Date;
|
5404
5279
|
deletedAt: Date | null;
|
5405
|
-
|
5406
|
-
|
5407
|
-
|
5408
|
-
|
5409
|
-
|
5410
|
-
|
5411
|
-
fileName: string;
|
5412
|
-
fileKey: string;
|
5413
|
-
bucketName: string;
|
5414
|
-
fileSize: number;
|
5415
|
-
fileUrl: string | null;
|
5416
|
-
status?: string | undefined;
|
5417
|
-
};
|
5280
|
+
fileName: string;
|
5281
|
+
fileKey: string;
|
5282
|
+
bucketName: string;
|
5283
|
+
fileSize: number;
|
5284
|
+
fileUrl: string | null;
|
5285
|
+
status?: string | undefined;
|
5418
5286
|
}[];
|
5419
5287
|
}[];
|
5420
5288
|
company: {
|
@@ -5618,6 +5486,18 @@ export declare const lineContract: {
|
|
5618
5486
|
} | undefined;
|
5619
5487
|
} | undefined;
|
5620
5488
|
};
|
5489
|
+
upload: {
|
5490
|
+
id: string;
|
5491
|
+
createdAt: Date;
|
5492
|
+
updatedAt: Date;
|
5493
|
+
deletedAt: Date | null;
|
5494
|
+
fileName: string;
|
5495
|
+
fileKey: string;
|
5496
|
+
bucketName: string;
|
5497
|
+
fileSize: number;
|
5498
|
+
fileUrl: string | null;
|
5499
|
+
status?: string | undefined;
|
5500
|
+
};
|
5621
5501
|
sender: {
|
5622
5502
|
id: string;
|
5623
5503
|
address: string | null;
|
@@ -5721,18 +5601,6 @@ export declare const lineContract: {
|
|
5721
5601
|
};
|
5722
5602
|
};
|
5723
5603
|
platformId: string;
|
5724
|
-
upload: {
|
5725
|
-
id: string;
|
5726
|
-
createdAt: Date;
|
5727
|
-
updatedAt: Date;
|
5728
|
-
deletedAt: Date | null;
|
5729
|
-
fileName: string;
|
5730
|
-
fileKey: string;
|
5731
|
-
bucketName: string;
|
5732
|
-
fileSize: number;
|
5733
|
-
fileUrl: string | null;
|
5734
|
-
status?: string | undefined;
|
5735
|
-
};
|
5736
5604
|
assignee: {
|
5737
5605
|
id: string;
|
5738
5606
|
address: string | null;
|
@@ -5888,19 +5756,12 @@ export declare const lineContract: {
|
|
5888
5756
|
createdAt: Date;
|
5889
5757
|
updatedAt: Date;
|
5890
5758
|
deletedAt: Date | null;
|
5891
|
-
|
5892
|
-
|
5893
|
-
|
5894
|
-
|
5895
|
-
|
5896
|
-
|
5897
|
-
fileName: string;
|
5898
|
-
fileKey: string;
|
5899
|
-
bucketName: string;
|
5900
|
-
fileSize: number;
|
5901
|
-
fileUrl: string | null;
|
5902
|
-
status?: string | undefined;
|
5903
|
-
};
|
5759
|
+
fileName: string;
|
5760
|
+
fileKey: string;
|
5761
|
+
bucketName: string;
|
5762
|
+
fileSize: number;
|
5763
|
+
fileUrl: string | null;
|
5764
|
+
status?: string | undefined;
|
5904
5765
|
}[];
|
5905
5766
|
}[];
|
5906
5767
|
company: {
|
@@ -6104,6 +5965,18 @@ export declare const lineContract: {
|
|
6104
5965
|
} | undefined;
|
6105
5966
|
} | undefined;
|
6106
5967
|
};
|
5968
|
+
upload: {
|
5969
|
+
id: string;
|
5970
|
+
createdAt: Date;
|
5971
|
+
updatedAt: Date;
|
5972
|
+
deletedAt: Date | null;
|
5973
|
+
fileName: string;
|
5974
|
+
fileKey: string;
|
5975
|
+
bucketName: string;
|
5976
|
+
fileSize: number;
|
5977
|
+
fileUrl: string | null;
|
5978
|
+
status?: string | undefined;
|
5979
|
+
};
|
6107
5980
|
sender: {
|
6108
5981
|
id: string;
|
6109
5982
|
address: string | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAGrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE1E,eAAO,MAAM,YAAY
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/line/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,OAAO,EAAE,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAGrD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAE1E,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCvB,CAAA"}
|