@kl1/contracts 1.0.70 → 1.0.71
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 +11 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -17
- 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 +614 -999
- 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 +4719 -8395
- 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
@@ -1412,77 +1412,34 @@ export declare const commentContract: {
|
|
1412
1412
|
createdAt: z.ZodDate;
|
1413
1413
|
updatedAt: z.ZodDate;
|
1414
1414
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
bucketName: z.ZodString;
|
1422
|
-
fileName: z.ZodString;
|
1423
|
-
fileSize: z.ZodNumber;
|
1424
|
-
fileKey: z.ZodString;
|
1425
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
1426
|
-
status: z.ZodOptional<z.ZodString>;
|
1427
|
-
}, "strip", z.ZodTypeAny, {
|
1428
|
-
id: string;
|
1429
|
-
createdAt: Date;
|
1430
|
-
updatedAt: Date;
|
1431
|
-
deletedAt: Date | null;
|
1432
|
-
fileName: string;
|
1433
|
-
fileKey: string;
|
1434
|
-
bucketName: string;
|
1435
|
-
fileSize: number;
|
1436
|
-
fileUrl: string | null;
|
1437
|
-
status?: string | undefined;
|
1438
|
-
}, {
|
1439
|
-
id: string;
|
1440
|
-
createdAt: Date;
|
1441
|
-
updatedAt: Date;
|
1442
|
-
deletedAt: Date | null;
|
1443
|
-
fileName: string;
|
1444
|
-
fileKey: string;
|
1445
|
-
bucketName: string;
|
1446
|
-
fileSize: number;
|
1447
|
-
fileUrl: string | null;
|
1448
|
-
status?: string | undefined;
|
1449
|
-
}>;
|
1415
|
+
bucketName: z.ZodString;
|
1416
|
+
fileName: z.ZodString;
|
1417
|
+
fileSize: z.ZodNumber;
|
1418
|
+
fileKey: z.ZodString;
|
1419
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
1420
|
+
status: z.ZodOptional<z.ZodString>;
|
1450
1421
|
}, "strip", z.ZodTypeAny, {
|
1451
1422
|
id: string;
|
1452
1423
|
createdAt: Date;
|
1453
1424
|
updatedAt: Date;
|
1454
1425
|
deletedAt: Date | null;
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1458
|
-
|
1459
|
-
|
1460
|
-
|
1461
|
-
fileName: string;
|
1462
|
-
fileKey: string;
|
1463
|
-
bucketName: string;
|
1464
|
-
fileSize: number;
|
1465
|
-
fileUrl: string | null;
|
1466
|
-
status?: string | undefined;
|
1467
|
-
};
|
1426
|
+
fileName: string;
|
1427
|
+
fileKey: string;
|
1428
|
+
bucketName: string;
|
1429
|
+
fileSize: number;
|
1430
|
+
fileUrl: string | null;
|
1431
|
+
status?: string | undefined;
|
1468
1432
|
}, {
|
1469
1433
|
id: string;
|
1470
1434
|
createdAt: Date;
|
1471
1435
|
updatedAt: Date;
|
1472
1436
|
deletedAt: Date | null;
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1478
|
-
|
1479
|
-
fileName: string;
|
1480
|
-
fileKey: string;
|
1481
|
-
bucketName: string;
|
1482
|
-
fileSize: number;
|
1483
|
-
fileUrl: string | null;
|
1484
|
-
status?: string | undefined;
|
1485
|
-
};
|
1437
|
+
fileName: string;
|
1438
|
+
fileKey: string;
|
1439
|
+
bucketName: string;
|
1440
|
+
fileSize: number;
|
1441
|
+
fileUrl: string | null;
|
1442
|
+
status?: string | undefined;
|
1486
1443
|
}>, "many">;
|
1487
1444
|
}, "strip", z.ZodTypeAny, {
|
1488
1445
|
id: string;
|
@@ -1512,19 +1469,12 @@ export declare const commentContract: {
|
|
1512
1469
|
createdAt: Date;
|
1513
1470
|
updatedAt: Date;
|
1514
1471
|
deletedAt: Date | null;
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
fileName: string;
|
1522
|
-
fileKey: string;
|
1523
|
-
bucketName: string;
|
1524
|
-
fileSize: number;
|
1525
|
-
fileUrl: string | null;
|
1526
|
-
status?: string | undefined;
|
1527
|
-
};
|
1472
|
+
fileName: string;
|
1473
|
+
fileKey: string;
|
1474
|
+
bucketName: string;
|
1475
|
+
fileSize: number;
|
1476
|
+
fileUrl: string | null;
|
1477
|
+
status?: string | undefined;
|
1528
1478
|
}[];
|
1529
1479
|
}, {
|
1530
1480
|
id: string;
|
@@ -1554,19 +1504,12 @@ export declare const commentContract: {
|
|
1554
1504
|
createdAt: Date;
|
1555
1505
|
updatedAt: Date;
|
1556
1506
|
deletedAt: Date | null;
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1560
|
-
|
1561
|
-
|
1562
|
-
|
1563
|
-
fileName: string;
|
1564
|
-
fileKey: string;
|
1565
|
-
bucketName: string;
|
1566
|
-
fileSize: number;
|
1567
|
-
fileUrl: string | null;
|
1568
|
-
status?: string | undefined;
|
1569
|
-
};
|
1507
|
+
fileName: string;
|
1508
|
+
fileKey: string;
|
1509
|
+
bucketName: string;
|
1510
|
+
fileSize: number;
|
1511
|
+
fileUrl: string | null;
|
1512
|
+
status?: string | undefined;
|
1570
1513
|
}[];
|
1571
1514
|
}>, "many">;
|
1572
1515
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1709,19 +1652,12 @@ export declare const commentContract: {
|
|
1709
1652
|
createdAt: Date;
|
1710
1653
|
updatedAt: Date;
|
1711
1654
|
deletedAt: Date | null;
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
fileName: string;
|
1719
|
-
fileKey: string;
|
1720
|
-
bucketName: string;
|
1721
|
-
fileSize: number;
|
1722
|
-
fileUrl: string | null;
|
1723
|
-
status?: string | undefined;
|
1724
|
-
};
|
1655
|
+
fileName: string;
|
1656
|
+
fileKey: string;
|
1657
|
+
bucketName: string;
|
1658
|
+
fileSize: number;
|
1659
|
+
fileUrl: string | null;
|
1660
|
+
status?: string | undefined;
|
1725
1661
|
}[];
|
1726
1662
|
}[];
|
1727
1663
|
company: {
|
@@ -1812,19 +1748,12 @@ export declare const commentContract: {
|
|
1812
1748
|
createdAt: Date;
|
1813
1749
|
updatedAt: Date;
|
1814
1750
|
deletedAt: Date | null;
|
1815
|
-
|
1816
|
-
|
1817
|
-
|
1818
|
-
|
1819
|
-
|
1820
|
-
|
1821
|
-
fileName: string;
|
1822
|
-
fileKey: string;
|
1823
|
-
bucketName: string;
|
1824
|
-
fileSize: number;
|
1825
|
-
fileUrl: string | null;
|
1826
|
-
status?: string | undefined;
|
1827
|
-
};
|
1751
|
+
fileName: string;
|
1752
|
+
fileKey: string;
|
1753
|
+
bucketName: string;
|
1754
|
+
fileSize: number;
|
1755
|
+
fileUrl: string | null;
|
1756
|
+
status?: string | undefined;
|
1828
1757
|
}[];
|
1829
1758
|
}[];
|
1830
1759
|
company: {
|
@@ -2337,19 +2266,12 @@ export declare const commentContract: {
|
|
2337
2266
|
createdAt: Date;
|
2338
2267
|
updatedAt: Date;
|
2339
2268
|
deletedAt: Date | null;
|
2340
|
-
|
2341
|
-
|
2342
|
-
|
2343
|
-
|
2344
|
-
|
2345
|
-
|
2346
|
-
fileName: string;
|
2347
|
-
fileKey: string;
|
2348
|
-
bucketName: string;
|
2349
|
-
fileSize: number;
|
2350
|
-
fileUrl: string | null;
|
2351
|
-
status?: string | undefined;
|
2352
|
-
};
|
2269
|
+
fileName: string;
|
2270
|
+
fileKey: string;
|
2271
|
+
bucketName: string;
|
2272
|
+
fileSize: number;
|
2273
|
+
fileUrl: string | null;
|
2274
|
+
status?: string | undefined;
|
2353
2275
|
}[];
|
2354
2276
|
}[];
|
2355
2277
|
company: {
|
@@ -2670,19 +2592,12 @@ export declare const commentContract: {
|
|
2670
2592
|
createdAt: Date;
|
2671
2593
|
updatedAt: Date;
|
2672
2594
|
deletedAt: Date | null;
|
2673
|
-
|
2674
|
-
|
2675
|
-
|
2676
|
-
|
2677
|
-
|
2678
|
-
|
2679
|
-
fileName: string;
|
2680
|
-
fileKey: string;
|
2681
|
-
bucketName: string;
|
2682
|
-
fileSize: number;
|
2683
|
-
fileUrl: string | null;
|
2684
|
-
status?: string | undefined;
|
2685
|
-
};
|
2595
|
+
fileName: string;
|
2596
|
+
fileKey: string;
|
2597
|
+
bucketName: string;
|
2598
|
+
fileSize: number;
|
2599
|
+
fileUrl: string | null;
|
2600
|
+
status?: string | undefined;
|
2686
2601
|
}[];
|
2687
2602
|
}[];
|
2688
2603
|
company: {
|
@@ -3213,19 +3128,12 @@ export declare const commentContract: {
|
|
3213
3128
|
createdAt: Date;
|
3214
3129
|
updatedAt: Date;
|
3215
3130
|
deletedAt: Date | null;
|
3216
|
-
|
3217
|
-
|
3218
|
-
|
3219
|
-
|
3220
|
-
|
3221
|
-
|
3222
|
-
fileName: string;
|
3223
|
-
fileKey: string;
|
3224
|
-
bucketName: string;
|
3225
|
-
fileSize: number;
|
3226
|
-
fileUrl: string | null;
|
3227
|
-
status?: string | undefined;
|
3228
|
-
};
|
3131
|
+
fileName: string;
|
3132
|
+
fileKey: string;
|
3133
|
+
bucketName: string;
|
3134
|
+
fileSize: number;
|
3135
|
+
fileUrl: string | null;
|
3136
|
+
status?: string | undefined;
|
3229
3137
|
}[];
|
3230
3138
|
}[];
|
3231
3139
|
company: {
|
@@ -3658,19 +3566,12 @@ export declare const commentContract: {
|
|
3658
3566
|
createdAt: Date;
|
3659
3567
|
updatedAt: Date;
|
3660
3568
|
deletedAt: Date | null;
|
3661
|
-
|
3662
|
-
|
3663
|
-
|
3664
|
-
|
3665
|
-
|
3666
|
-
|
3667
|
-
fileName: string;
|
3668
|
-
fileKey: string;
|
3669
|
-
bucketName: string;
|
3670
|
-
fileSize: number;
|
3671
|
-
fileUrl: string | null;
|
3672
|
-
status?: string | undefined;
|
3673
|
-
};
|
3569
|
+
fileName: string;
|
3570
|
+
fileKey: string;
|
3571
|
+
bucketName: string;
|
3572
|
+
fileSize: number;
|
3573
|
+
fileUrl: string | null;
|
3574
|
+
status?: string | undefined;
|
3674
3575
|
}[];
|
3675
3576
|
}[];
|
3676
3577
|
company: {
|
@@ -4106,19 +4007,12 @@ export declare const commentContract: {
|
|
4106
4007
|
createdAt: Date;
|
4107
4008
|
updatedAt: Date;
|
4108
4009
|
deletedAt: Date | null;
|
4109
|
-
|
4110
|
-
|
4111
|
-
|
4112
|
-
|
4113
|
-
|
4114
|
-
|
4115
|
-
fileName: string;
|
4116
|
-
fileKey: string;
|
4117
|
-
bucketName: string;
|
4118
|
-
fileSize: number;
|
4119
|
-
fileUrl: string | null;
|
4120
|
-
status?: string | undefined;
|
4121
|
-
};
|
4010
|
+
fileName: string;
|
4011
|
+
fileKey: string;
|
4012
|
+
bucketName: string;
|
4013
|
+
fileSize: number;
|
4014
|
+
fileUrl: string | null;
|
4015
|
+
status?: string | undefined;
|
4122
4016
|
}[];
|
4123
4017
|
}[];
|
4124
4018
|
company: {
|
@@ -4554,19 +4448,12 @@ export declare const commentContract: {
|
|
4554
4448
|
createdAt: Date;
|
4555
4449
|
updatedAt: Date;
|
4556
4450
|
deletedAt: Date | null;
|
4557
|
-
|
4558
|
-
|
4559
|
-
|
4560
|
-
|
4561
|
-
|
4562
|
-
|
4563
|
-
fileName: string;
|
4564
|
-
fileKey: string;
|
4565
|
-
bucketName: string;
|
4566
|
-
fileSize: number;
|
4567
|
-
fileUrl: string | null;
|
4568
|
-
status?: string | undefined;
|
4569
|
-
};
|
4451
|
+
fileName: string;
|
4452
|
+
fileKey: string;
|
4453
|
+
bucketName: string;
|
4454
|
+
fileSize: number;
|
4455
|
+
fileUrl: string | null;
|
4456
|
+
status?: string | undefined;
|
4570
4457
|
}[];
|
4571
4458
|
}[];
|
4572
4459
|
company: {
|
@@ -6338,77 +6225,34 @@ export declare const commentContract: {
|
|
6338
6225
|
createdAt: z.ZodDate;
|
6339
6226
|
updatedAt: z.ZodDate;
|
6340
6227
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
6341
|
-
|
6342
|
-
|
6343
|
-
|
6344
|
-
|
6345
|
-
|
6346
|
-
|
6347
|
-
bucketName: z.ZodString;
|
6348
|
-
fileName: z.ZodString;
|
6349
|
-
fileSize: z.ZodNumber;
|
6350
|
-
fileKey: z.ZodString;
|
6351
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
6352
|
-
status: z.ZodOptional<z.ZodString>;
|
6353
|
-
}, "strip", z.ZodTypeAny, {
|
6354
|
-
id: string;
|
6355
|
-
createdAt: Date;
|
6356
|
-
updatedAt: Date;
|
6357
|
-
deletedAt: Date | null;
|
6358
|
-
fileName: string;
|
6359
|
-
fileKey: string;
|
6360
|
-
bucketName: string;
|
6361
|
-
fileSize: number;
|
6362
|
-
fileUrl: string | null;
|
6363
|
-
status?: string | undefined;
|
6364
|
-
}, {
|
6365
|
-
id: string;
|
6366
|
-
createdAt: Date;
|
6367
|
-
updatedAt: Date;
|
6368
|
-
deletedAt: Date | null;
|
6369
|
-
fileName: string;
|
6370
|
-
fileKey: string;
|
6371
|
-
bucketName: string;
|
6372
|
-
fileSize: number;
|
6373
|
-
fileUrl: string | null;
|
6374
|
-
status?: string | undefined;
|
6375
|
-
}>;
|
6228
|
+
bucketName: z.ZodString;
|
6229
|
+
fileName: z.ZodString;
|
6230
|
+
fileSize: z.ZodNumber;
|
6231
|
+
fileKey: z.ZodString;
|
6232
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
6233
|
+
status: z.ZodOptional<z.ZodString>;
|
6376
6234
|
}, "strip", z.ZodTypeAny, {
|
6377
6235
|
id: string;
|
6378
6236
|
createdAt: Date;
|
6379
6237
|
updatedAt: Date;
|
6380
6238
|
deletedAt: Date | null;
|
6381
|
-
|
6382
|
-
|
6383
|
-
|
6384
|
-
|
6385
|
-
|
6386
|
-
|
6387
|
-
fileName: string;
|
6388
|
-
fileKey: string;
|
6389
|
-
bucketName: string;
|
6390
|
-
fileSize: number;
|
6391
|
-
fileUrl: string | null;
|
6392
|
-
status?: string | undefined;
|
6393
|
-
};
|
6239
|
+
fileName: string;
|
6240
|
+
fileKey: string;
|
6241
|
+
bucketName: string;
|
6242
|
+
fileSize: number;
|
6243
|
+
fileUrl: string | null;
|
6244
|
+
status?: string | undefined;
|
6394
6245
|
}, {
|
6395
6246
|
id: string;
|
6396
6247
|
createdAt: Date;
|
6397
6248
|
updatedAt: Date;
|
6398
6249
|
deletedAt: Date | null;
|
6399
|
-
|
6400
|
-
|
6401
|
-
|
6402
|
-
|
6403
|
-
|
6404
|
-
|
6405
|
-
fileName: string;
|
6406
|
-
fileKey: string;
|
6407
|
-
bucketName: string;
|
6408
|
-
fileSize: number;
|
6409
|
-
fileUrl: string | null;
|
6410
|
-
status?: string | undefined;
|
6411
|
-
};
|
6250
|
+
fileName: string;
|
6251
|
+
fileKey: string;
|
6252
|
+
bucketName: string;
|
6253
|
+
fileSize: number;
|
6254
|
+
fileUrl: string | null;
|
6255
|
+
status?: string | undefined;
|
6412
6256
|
}>, "many">;
|
6413
6257
|
}, "strip", z.ZodTypeAny, {
|
6414
6258
|
id: string;
|
@@ -6438,19 +6282,12 @@ export declare const commentContract: {
|
|
6438
6282
|
createdAt: Date;
|
6439
6283
|
updatedAt: Date;
|
6440
6284
|
deletedAt: Date | null;
|
6441
|
-
|
6442
|
-
|
6443
|
-
|
6444
|
-
|
6445
|
-
|
6446
|
-
|
6447
|
-
fileName: string;
|
6448
|
-
fileKey: string;
|
6449
|
-
bucketName: string;
|
6450
|
-
fileSize: number;
|
6451
|
-
fileUrl: string | null;
|
6452
|
-
status?: string | undefined;
|
6453
|
-
};
|
6285
|
+
fileName: string;
|
6286
|
+
fileKey: string;
|
6287
|
+
bucketName: string;
|
6288
|
+
fileSize: number;
|
6289
|
+
fileUrl: string | null;
|
6290
|
+
status?: string | undefined;
|
6454
6291
|
}[];
|
6455
6292
|
}, {
|
6456
6293
|
id: string;
|
@@ -6480,19 +6317,12 @@ export declare const commentContract: {
|
|
6480
6317
|
createdAt: Date;
|
6481
6318
|
updatedAt: Date;
|
6482
6319
|
deletedAt: Date | null;
|
6483
|
-
|
6484
|
-
|
6485
|
-
|
6486
|
-
|
6487
|
-
|
6488
|
-
|
6489
|
-
fileName: string;
|
6490
|
-
fileKey: string;
|
6491
|
-
bucketName: string;
|
6492
|
-
fileSize: number;
|
6493
|
-
fileUrl: string | null;
|
6494
|
-
status?: string | undefined;
|
6495
|
-
};
|
6320
|
+
fileName: string;
|
6321
|
+
fileKey: string;
|
6322
|
+
bucketName: string;
|
6323
|
+
fileSize: number;
|
6324
|
+
fileUrl: string | null;
|
6325
|
+
status?: string | undefined;
|
6496
6326
|
}[];
|
6497
6327
|
}>, "many">;
|
6498
6328
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -6635,19 +6465,12 @@ export declare const commentContract: {
|
|
6635
6465
|
createdAt: Date;
|
6636
6466
|
updatedAt: Date;
|
6637
6467
|
deletedAt: Date | null;
|
6638
|
-
|
6639
|
-
|
6640
|
-
|
6641
|
-
|
6642
|
-
|
6643
|
-
|
6644
|
-
fileName: string;
|
6645
|
-
fileKey: string;
|
6646
|
-
bucketName: string;
|
6647
|
-
fileSize: number;
|
6648
|
-
fileUrl: string | null;
|
6649
|
-
status?: string | undefined;
|
6650
|
-
};
|
6468
|
+
fileName: string;
|
6469
|
+
fileKey: string;
|
6470
|
+
bucketName: string;
|
6471
|
+
fileSize: number;
|
6472
|
+
fileUrl: string | null;
|
6473
|
+
status?: string | undefined;
|
6651
6474
|
}[];
|
6652
6475
|
}[];
|
6653
6476
|
company: {
|
@@ -6738,19 +6561,12 @@ export declare const commentContract: {
|
|
6738
6561
|
createdAt: Date;
|
6739
6562
|
updatedAt: Date;
|
6740
6563
|
deletedAt: Date | null;
|
6741
|
-
|
6742
|
-
|
6743
|
-
|
6744
|
-
|
6745
|
-
|
6746
|
-
|
6747
|
-
fileName: string;
|
6748
|
-
fileKey: string;
|
6749
|
-
bucketName: string;
|
6750
|
-
fileSize: number;
|
6751
|
-
fileUrl: string | null;
|
6752
|
-
status?: string | undefined;
|
6753
|
-
};
|
6564
|
+
fileName: string;
|
6565
|
+
fileKey: string;
|
6566
|
+
bucketName: string;
|
6567
|
+
fileSize: number;
|
6568
|
+
fileUrl: string | null;
|
6569
|
+
status?: string | undefined;
|
6754
6570
|
}[];
|
6755
6571
|
}[];
|
6756
6572
|
company: {
|
@@ -7263,19 +7079,12 @@ export declare const commentContract: {
|
|
7263
7079
|
createdAt: Date;
|
7264
7080
|
updatedAt: Date;
|
7265
7081
|
deletedAt: Date | null;
|
7266
|
-
|
7267
|
-
|
7268
|
-
|
7269
|
-
|
7270
|
-
|
7271
|
-
|
7272
|
-
fileName: string;
|
7273
|
-
fileKey: string;
|
7274
|
-
bucketName: string;
|
7275
|
-
fileSize: number;
|
7276
|
-
fileUrl: string | null;
|
7277
|
-
status?: string | undefined;
|
7278
|
-
};
|
7082
|
+
fileName: string;
|
7083
|
+
fileKey: string;
|
7084
|
+
bucketName: string;
|
7085
|
+
fileSize: number;
|
7086
|
+
fileUrl: string | null;
|
7087
|
+
status?: string | undefined;
|
7279
7088
|
}[];
|
7280
7089
|
}[];
|
7281
7090
|
company: {
|
@@ -7596,19 +7405,12 @@ export declare const commentContract: {
|
|
7596
7405
|
createdAt: Date;
|
7597
7406
|
updatedAt: Date;
|
7598
7407
|
deletedAt: Date | null;
|
7599
|
-
|
7600
|
-
|
7601
|
-
|
7602
|
-
|
7603
|
-
|
7604
|
-
|
7605
|
-
fileName: string;
|
7606
|
-
fileKey: string;
|
7607
|
-
bucketName: string;
|
7608
|
-
fileSize: number;
|
7609
|
-
fileUrl: string | null;
|
7610
|
-
status?: string | undefined;
|
7611
|
-
};
|
7408
|
+
fileName: string;
|
7409
|
+
fileKey: string;
|
7410
|
+
bucketName: string;
|
7411
|
+
fileSize: number;
|
7412
|
+
fileUrl: string | null;
|
7413
|
+
status?: string | undefined;
|
7612
7414
|
}[];
|
7613
7415
|
}[];
|
7614
7416
|
company: {
|
@@ -8139,19 +7941,12 @@ export declare const commentContract: {
|
|
8139
7941
|
createdAt: Date;
|
8140
7942
|
updatedAt: Date;
|
8141
7943
|
deletedAt: Date | null;
|
8142
|
-
|
8143
|
-
|
8144
|
-
|
8145
|
-
|
8146
|
-
|
8147
|
-
|
8148
|
-
fileName: string;
|
8149
|
-
fileKey: string;
|
8150
|
-
bucketName: string;
|
8151
|
-
fileSize: number;
|
8152
|
-
fileUrl: string | null;
|
8153
|
-
status?: string | undefined;
|
8154
|
-
};
|
7944
|
+
fileName: string;
|
7945
|
+
fileKey: string;
|
7946
|
+
bucketName: string;
|
7947
|
+
fileSize: number;
|
7948
|
+
fileUrl: string | null;
|
7949
|
+
status?: string | undefined;
|
8155
7950
|
}[];
|
8156
7951
|
}[];
|
8157
7952
|
company: {
|
@@ -8584,19 +8379,12 @@ export declare const commentContract: {
|
|
8584
8379
|
createdAt: Date;
|
8585
8380
|
updatedAt: Date;
|
8586
8381
|
deletedAt: Date | null;
|
8587
|
-
|
8588
|
-
|
8589
|
-
|
8590
|
-
|
8591
|
-
|
8592
|
-
|
8593
|
-
fileName: string;
|
8594
|
-
fileKey: string;
|
8595
|
-
bucketName: string;
|
8596
|
-
fileSize: number;
|
8597
|
-
fileUrl: string | null;
|
8598
|
-
status?: string | undefined;
|
8599
|
-
};
|
8382
|
+
fileName: string;
|
8383
|
+
fileKey: string;
|
8384
|
+
bucketName: string;
|
8385
|
+
fileSize: number;
|
8386
|
+
fileUrl: string | null;
|
8387
|
+
status?: string | undefined;
|
8600
8388
|
}[];
|
8601
8389
|
}[];
|
8602
8390
|
company: {
|
@@ -10379,77 +10167,34 @@ export declare const commentContract: {
|
|
10379
10167
|
createdAt: z.ZodDate;
|
10380
10168
|
updatedAt: z.ZodDate;
|
10381
10169
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
10382
|
-
|
10383
|
-
|
10384
|
-
|
10385
|
-
|
10386
|
-
|
10387
|
-
|
10388
|
-
bucketName: z.ZodString;
|
10389
|
-
fileName: z.ZodString;
|
10390
|
-
fileSize: z.ZodNumber;
|
10391
|
-
fileKey: z.ZodString;
|
10392
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
10393
|
-
status: z.ZodOptional<z.ZodString>;
|
10394
|
-
}, "strip", z.ZodTypeAny, {
|
10395
|
-
id: string;
|
10396
|
-
createdAt: Date;
|
10397
|
-
updatedAt: Date;
|
10398
|
-
deletedAt: Date | null;
|
10399
|
-
fileName: string;
|
10400
|
-
fileKey: string;
|
10401
|
-
bucketName: string;
|
10402
|
-
fileSize: number;
|
10403
|
-
fileUrl: string | null;
|
10404
|
-
status?: string | undefined;
|
10405
|
-
}, {
|
10406
|
-
id: string;
|
10407
|
-
createdAt: Date;
|
10408
|
-
updatedAt: Date;
|
10409
|
-
deletedAt: Date | null;
|
10410
|
-
fileName: string;
|
10411
|
-
fileKey: string;
|
10412
|
-
bucketName: string;
|
10413
|
-
fileSize: number;
|
10414
|
-
fileUrl: string | null;
|
10415
|
-
status?: string | undefined;
|
10416
|
-
}>;
|
10170
|
+
bucketName: z.ZodString;
|
10171
|
+
fileName: z.ZodString;
|
10172
|
+
fileSize: z.ZodNumber;
|
10173
|
+
fileKey: z.ZodString;
|
10174
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
10175
|
+
status: z.ZodOptional<z.ZodString>;
|
10417
10176
|
}, "strip", z.ZodTypeAny, {
|
10418
10177
|
id: string;
|
10419
10178
|
createdAt: Date;
|
10420
10179
|
updatedAt: Date;
|
10421
10180
|
deletedAt: Date | null;
|
10422
|
-
|
10423
|
-
|
10424
|
-
|
10425
|
-
|
10426
|
-
|
10427
|
-
|
10428
|
-
fileName: string;
|
10429
|
-
fileKey: string;
|
10430
|
-
bucketName: string;
|
10431
|
-
fileSize: number;
|
10432
|
-
fileUrl: string | null;
|
10433
|
-
status?: string | undefined;
|
10434
|
-
};
|
10181
|
+
fileName: string;
|
10182
|
+
fileKey: string;
|
10183
|
+
bucketName: string;
|
10184
|
+
fileSize: number;
|
10185
|
+
fileUrl: string | null;
|
10186
|
+
status?: string | undefined;
|
10435
10187
|
}, {
|
10436
10188
|
id: string;
|
10437
10189
|
createdAt: Date;
|
10438
10190
|
updatedAt: Date;
|
10439
10191
|
deletedAt: Date | null;
|
10440
|
-
|
10441
|
-
|
10442
|
-
|
10443
|
-
|
10444
|
-
|
10445
|
-
|
10446
|
-
fileName: string;
|
10447
|
-
fileKey: string;
|
10448
|
-
bucketName: string;
|
10449
|
-
fileSize: number;
|
10450
|
-
fileUrl: string | null;
|
10451
|
-
status?: string | undefined;
|
10452
|
-
};
|
10192
|
+
fileName: string;
|
10193
|
+
fileKey: string;
|
10194
|
+
bucketName: string;
|
10195
|
+
fileSize: number;
|
10196
|
+
fileUrl: string | null;
|
10197
|
+
status?: string | undefined;
|
10453
10198
|
}>, "many">;
|
10454
10199
|
}, "strip", z.ZodTypeAny, {
|
10455
10200
|
id: string;
|
@@ -10479,19 +10224,12 @@ export declare const commentContract: {
|
|
10479
10224
|
createdAt: Date;
|
10480
10225
|
updatedAt: Date;
|
10481
10226
|
deletedAt: Date | null;
|
10482
|
-
|
10483
|
-
|
10484
|
-
|
10485
|
-
|
10486
|
-
|
10487
|
-
|
10488
|
-
fileName: string;
|
10489
|
-
fileKey: string;
|
10490
|
-
bucketName: string;
|
10491
|
-
fileSize: number;
|
10492
|
-
fileUrl: string | null;
|
10493
|
-
status?: string | undefined;
|
10494
|
-
};
|
10227
|
+
fileName: string;
|
10228
|
+
fileKey: string;
|
10229
|
+
bucketName: string;
|
10230
|
+
fileSize: number;
|
10231
|
+
fileUrl: string | null;
|
10232
|
+
status?: string | undefined;
|
10495
10233
|
}[];
|
10496
10234
|
}, {
|
10497
10235
|
id: string;
|
@@ -10521,19 +10259,12 @@ export declare const commentContract: {
|
|
10521
10259
|
createdAt: Date;
|
10522
10260
|
updatedAt: Date;
|
10523
10261
|
deletedAt: Date | null;
|
10524
|
-
|
10525
|
-
|
10526
|
-
|
10527
|
-
|
10528
|
-
|
10529
|
-
|
10530
|
-
fileName: string;
|
10531
|
-
fileKey: string;
|
10532
|
-
bucketName: string;
|
10533
|
-
fileSize: number;
|
10534
|
-
fileUrl: string | null;
|
10535
|
-
status?: string | undefined;
|
10536
|
-
};
|
10262
|
+
fileName: string;
|
10263
|
+
fileKey: string;
|
10264
|
+
bucketName: string;
|
10265
|
+
fileSize: number;
|
10266
|
+
fileUrl: string | null;
|
10267
|
+
status?: string | undefined;
|
10537
10268
|
}[];
|
10538
10269
|
}>, "many">;
|
10539
10270
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -10676,19 +10407,12 @@ export declare const commentContract: {
|
|
10676
10407
|
createdAt: Date;
|
10677
10408
|
updatedAt: Date;
|
10678
10409
|
deletedAt: Date | null;
|
10679
|
-
|
10680
|
-
|
10681
|
-
|
10682
|
-
|
10683
|
-
|
10684
|
-
|
10685
|
-
fileName: string;
|
10686
|
-
fileKey: string;
|
10687
|
-
bucketName: string;
|
10688
|
-
fileSize: number;
|
10689
|
-
fileUrl: string | null;
|
10690
|
-
status?: string | undefined;
|
10691
|
-
};
|
10410
|
+
fileName: string;
|
10411
|
+
fileKey: string;
|
10412
|
+
bucketName: string;
|
10413
|
+
fileSize: number;
|
10414
|
+
fileUrl: string | null;
|
10415
|
+
status?: string | undefined;
|
10692
10416
|
}[];
|
10693
10417
|
}[];
|
10694
10418
|
company: {
|
@@ -10779,19 +10503,12 @@ export declare const commentContract: {
|
|
10779
10503
|
createdAt: Date;
|
10780
10504
|
updatedAt: Date;
|
10781
10505
|
deletedAt: Date | null;
|
10782
|
-
|
10783
|
-
|
10784
|
-
|
10785
|
-
|
10786
|
-
|
10787
|
-
|
10788
|
-
fileName: string;
|
10789
|
-
fileKey: string;
|
10790
|
-
bucketName: string;
|
10791
|
-
fileSize: number;
|
10792
|
-
fileUrl: string | null;
|
10793
|
-
status?: string | undefined;
|
10794
|
-
};
|
10506
|
+
fileName: string;
|
10507
|
+
fileKey: string;
|
10508
|
+
bucketName: string;
|
10509
|
+
fileSize: number;
|
10510
|
+
fileUrl: string | null;
|
10511
|
+
status?: string | undefined;
|
10795
10512
|
}[];
|
10796
10513
|
}[];
|
10797
10514
|
company: {
|
@@ -11304,19 +11021,12 @@ export declare const commentContract: {
|
|
11304
11021
|
createdAt: Date;
|
11305
11022
|
updatedAt: Date;
|
11306
11023
|
deletedAt: Date | null;
|
11307
|
-
|
11308
|
-
|
11309
|
-
|
11310
|
-
|
11311
|
-
|
11312
|
-
|
11313
|
-
fileName: string;
|
11314
|
-
fileKey: string;
|
11315
|
-
bucketName: string;
|
11316
|
-
fileSize: number;
|
11317
|
-
fileUrl: string | null;
|
11318
|
-
status?: string | undefined;
|
11319
|
-
};
|
11024
|
+
fileName: string;
|
11025
|
+
fileKey: string;
|
11026
|
+
bucketName: string;
|
11027
|
+
fileSize: number;
|
11028
|
+
fileUrl: string | null;
|
11029
|
+
status?: string | undefined;
|
11320
11030
|
}[];
|
11321
11031
|
}[];
|
11322
11032
|
company: {
|
@@ -11637,19 +11347,12 @@ export declare const commentContract: {
|
|
11637
11347
|
createdAt: Date;
|
11638
11348
|
updatedAt: Date;
|
11639
11349
|
deletedAt: Date | null;
|
11640
|
-
|
11641
|
-
|
11642
|
-
|
11643
|
-
|
11644
|
-
|
11645
|
-
|
11646
|
-
fileName: string;
|
11647
|
-
fileKey: string;
|
11648
|
-
bucketName: string;
|
11649
|
-
fileSize: number;
|
11650
|
-
fileUrl: string | null;
|
11651
|
-
status?: string | undefined;
|
11652
|
-
};
|
11350
|
+
fileName: string;
|
11351
|
+
fileKey: string;
|
11352
|
+
bucketName: string;
|
11353
|
+
fileSize: number;
|
11354
|
+
fileUrl: string | null;
|
11355
|
+
status?: string | undefined;
|
11653
11356
|
}[];
|
11654
11357
|
}[];
|
11655
11358
|
company: {
|
@@ -12180,19 +11883,12 @@ export declare const commentContract: {
|
|
12180
11883
|
createdAt: Date;
|
12181
11884
|
updatedAt: Date;
|
12182
11885
|
deletedAt: Date | null;
|
12183
|
-
|
12184
|
-
|
12185
|
-
|
12186
|
-
|
12187
|
-
|
12188
|
-
|
12189
|
-
fileName: string;
|
12190
|
-
fileKey: string;
|
12191
|
-
bucketName: string;
|
12192
|
-
fileSize: number;
|
12193
|
-
fileUrl: string | null;
|
12194
|
-
status?: string | undefined;
|
12195
|
-
};
|
11886
|
+
fileName: string;
|
11887
|
+
fileKey: string;
|
11888
|
+
bucketName: string;
|
11889
|
+
fileSize: number;
|
11890
|
+
fileUrl: string | null;
|
11891
|
+
status?: string | undefined;
|
12196
11892
|
}[];
|
12197
11893
|
}[];
|
12198
11894
|
company: {
|
@@ -12625,19 +12321,12 @@ export declare const commentContract: {
|
|
12625
12321
|
createdAt: Date;
|
12626
12322
|
updatedAt: Date;
|
12627
12323
|
deletedAt: Date | null;
|
12628
|
-
|
12629
|
-
|
12630
|
-
|
12631
|
-
|
12632
|
-
|
12633
|
-
|
12634
|
-
fileName: string;
|
12635
|
-
fileKey: string;
|
12636
|
-
bucketName: string;
|
12637
|
-
fileSize: number;
|
12638
|
-
fileUrl: string | null;
|
12639
|
-
status?: string | undefined;
|
12640
|
-
};
|
12324
|
+
fileName: string;
|
12325
|
+
fileKey: string;
|
12326
|
+
bucketName: string;
|
12327
|
+
fileSize: number;
|
12328
|
+
fileUrl: string | null;
|
12329
|
+
status?: string | undefined;
|
12641
12330
|
}[];
|
12642
12331
|
}[];
|
12643
12332
|
company: {
|
@@ -13073,19 +12762,12 @@ export declare const commentContract: {
|
|
13073
12762
|
createdAt: Date;
|
13074
12763
|
updatedAt: Date;
|
13075
12764
|
deletedAt: Date | null;
|
13076
|
-
|
13077
|
-
|
13078
|
-
|
13079
|
-
|
13080
|
-
|
13081
|
-
|
13082
|
-
fileName: string;
|
13083
|
-
fileKey: string;
|
13084
|
-
bucketName: string;
|
13085
|
-
fileSize: number;
|
13086
|
-
fileUrl: string | null;
|
13087
|
-
status?: string | undefined;
|
13088
|
-
};
|
12765
|
+
fileName: string;
|
12766
|
+
fileKey: string;
|
12767
|
+
bucketName: string;
|
12768
|
+
fileSize: number;
|
12769
|
+
fileUrl: string | null;
|
12770
|
+
status?: string | undefined;
|
13089
12771
|
}[];
|
13090
12772
|
}[];
|
13091
12773
|
company: {
|
@@ -13521,19 +13203,12 @@ export declare const commentContract: {
|
|
13521
13203
|
createdAt: Date;
|
13522
13204
|
updatedAt: Date;
|
13523
13205
|
deletedAt: Date | null;
|
13524
|
-
|
13525
|
-
|
13526
|
-
|
13527
|
-
|
13528
|
-
|
13529
|
-
|
13530
|
-
fileName: string;
|
13531
|
-
fileKey: string;
|
13532
|
-
bucketName: string;
|
13533
|
-
fileSize: number;
|
13534
|
-
fileUrl: string | null;
|
13535
|
-
status?: string | undefined;
|
13536
|
-
};
|
13206
|
+
fileName: string;
|
13207
|
+
fileKey: string;
|
13208
|
+
bucketName: string;
|
13209
|
+
fileSize: number;
|
13210
|
+
fileUrl: string | null;
|
13211
|
+
status?: string | undefined;
|
13537
13212
|
}[];
|
13538
13213
|
}[];
|
13539
13214
|
company: {
|