@kl1/contracts 1.0.69 → 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.
Files changed (50) hide show
  1. package/dist/index.js +18 -19
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +18 -19
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +1110 -2579
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +222 -519
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +228 -482
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/comment/index.d.ts +222 -547
  12. package/dist/src/comment/index.d.ts.map +1 -1
  13. package/dist/src/comment/schema.d.ts +66 -165
  14. package/dist/src/comment/schema.d.ts.map +1 -1
  15. package/dist/src/contact/index.d.ts +614 -999
  16. package/dist/src/contact/index.d.ts.map +1 -1
  17. package/dist/src/contact/schema.d.ts +72 -200
  18. package/dist/src/contact/schema.d.ts.map +1 -1
  19. package/dist/src/contact/validation.d.ts +317 -806
  20. package/dist/src/contact/validation.d.ts.map +1 -1
  21. package/dist/src/contract.d.ts +4727 -8439
  22. package/dist/src/contract.d.ts.map +1 -1
  23. package/dist/src/custom-field-upload/schema.d.ts +2 -2
  24. package/dist/src/cx-log/index.d.ts +234 -573
  25. package/dist/src/cx-log/index.d.ts.map +1 -1
  26. package/dist/src/cx-log/schema.d.ts +198 -495
  27. package/dist/src/cx-log/schema.d.ts.map +1 -1
  28. package/dist/src/instagram/index.d.ts +138 -265
  29. package/dist/src/instagram/index.d.ts.map +1 -1
  30. package/dist/src/line/index.d.ts +138 -265
  31. package/dist/src/line/index.d.ts.map +1 -1
  32. package/dist/src/mail/mail-contract.d.ts +1330 -1330
  33. package/dist/src/mail/message-contract.d.ts +56 -56
  34. package/dist/src/mail/room-contract.d.ts +1258 -1258
  35. package/dist/src/mail/schemas/message.schema.d.ts +33 -33
  36. package/dist/src/mail/schemas/room-validation.schema.d.ts +420 -420
  37. package/dist/src/mail/schemas/room.schema.d.ts +284 -284
  38. package/dist/src/messenger/index.d.ts +138 -265
  39. package/dist/src/messenger/index.d.ts.map +1 -1
  40. package/dist/src/telephony-cdr/index.d.ts +203 -500
  41. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  42. package/dist/src/telephony-cdr/schema.d.ts +60 -145
  43. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  44. package/dist/src/ticket/index.d.ts +338 -818
  45. package/dist/src/ticket/index.d.ts.map +1 -1
  46. package/dist/src/ticket/schema.d.ts +54 -139
  47. package/dist/src/ticket/schema.d.ts.map +1 -1
  48. package/dist/src/viber/index.d.ts +141 -304
  49. package/dist/src/viber/index.d.ts.map +1 -1
  50. 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
- customFieldId: z.ZodString;
1416
- upload: z.ZodObject<{
1417
- id: z.ZodString;
1418
- createdAt: z.ZodDate;
1419
- updatedAt: z.ZodDate;
1420
- deletedAt: z.ZodNullable<z.ZodDate>;
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
- customFieldId: string;
1456
- upload: {
1457
- id: string;
1458
- createdAt: Date;
1459
- updatedAt: Date;
1460
- deletedAt: Date | null;
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
- customFieldId: string;
1474
- upload: {
1475
- id: string;
1476
- createdAt: Date;
1477
- updatedAt: Date;
1478
- deletedAt: Date | null;
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
- customFieldId: string;
1516
- upload: {
1517
- id: string;
1518
- createdAt: Date;
1519
- updatedAt: Date;
1520
- deletedAt: Date | null;
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
- customFieldId: string;
1558
- upload: {
1559
- id: string;
1560
- createdAt: Date;
1561
- updatedAt: Date;
1562
- deletedAt: Date | null;
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
- customFieldId: string;
1713
- upload: {
1714
- id: string;
1715
- createdAt: Date;
1716
- updatedAt: Date;
1717
- deletedAt: Date | null;
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
- customFieldId: string;
1816
- upload: {
1817
- id: string;
1818
- createdAt: Date;
1819
- updatedAt: Date;
1820
- deletedAt: Date | null;
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
- customFieldId: string;
2341
- upload: {
2342
- id: string;
2343
- createdAt: Date;
2344
- updatedAt: Date;
2345
- deletedAt: Date | null;
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
- customFieldId: string;
2674
- upload: {
2675
- id: string;
2676
- createdAt: Date;
2677
- updatedAt: Date;
2678
- deletedAt: Date | null;
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
- customFieldId: string;
3217
- upload: {
3218
- id: string;
3219
- createdAt: Date;
3220
- updatedAt: Date;
3221
- deletedAt: Date | null;
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
- customFieldId: string;
3662
- upload: {
3663
- id: string;
3664
- createdAt: Date;
3665
- updatedAt: Date;
3666
- deletedAt: Date | null;
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
- customFieldId: string;
4110
- upload: {
4111
- id: string;
4112
- createdAt: Date;
4113
- updatedAt: Date;
4114
- deletedAt: Date | null;
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
- customFieldId: string;
4558
- upload: {
4559
- id: string;
4560
- createdAt: Date;
4561
- updatedAt: Date;
4562
- deletedAt: Date | null;
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
- customFieldId: z.ZodString;
6342
- upload: z.ZodObject<{
6343
- id: z.ZodString;
6344
- createdAt: z.ZodDate;
6345
- updatedAt: z.ZodDate;
6346
- deletedAt: z.ZodNullable<z.ZodDate>;
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
- customFieldId: string;
6382
- upload: {
6383
- id: string;
6384
- createdAt: Date;
6385
- updatedAt: Date;
6386
- deletedAt: Date | null;
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
- customFieldId: string;
6400
- upload: {
6401
- id: string;
6402
- createdAt: Date;
6403
- updatedAt: Date;
6404
- deletedAt: Date | null;
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
- customFieldId: string;
6442
- upload: {
6443
- id: string;
6444
- createdAt: Date;
6445
- updatedAt: Date;
6446
- deletedAt: Date | null;
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
- customFieldId: string;
6484
- upload: {
6485
- id: string;
6486
- createdAt: Date;
6487
- updatedAt: Date;
6488
- deletedAt: Date | null;
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
- customFieldId: string;
6639
- upload: {
6640
- id: string;
6641
- createdAt: Date;
6642
- updatedAt: Date;
6643
- deletedAt: Date | null;
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
- customFieldId: string;
6742
- upload: {
6743
- id: string;
6744
- createdAt: Date;
6745
- updatedAt: Date;
6746
- deletedAt: Date | null;
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
- customFieldId: string;
7267
- upload: {
7268
- id: string;
7269
- createdAt: Date;
7270
- updatedAt: Date;
7271
- deletedAt: Date | null;
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
- customFieldId: string;
7600
- upload: {
7601
- id: string;
7602
- createdAt: Date;
7603
- updatedAt: Date;
7604
- deletedAt: Date | null;
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
- customFieldId: string;
8143
- upload: {
8144
- id: string;
8145
- createdAt: Date;
8146
- updatedAt: Date;
8147
- deletedAt: Date | null;
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
- customFieldId: string;
8588
- upload: {
8589
- id: string;
8590
- createdAt: Date;
8591
- updatedAt: Date;
8592
- deletedAt: Date | null;
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
- customFieldId: z.ZodString;
10383
- upload: z.ZodObject<{
10384
- id: z.ZodString;
10385
- createdAt: z.ZodDate;
10386
- updatedAt: z.ZodDate;
10387
- deletedAt: z.ZodNullable<z.ZodDate>;
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
- customFieldId: string;
10423
- upload: {
10424
- id: string;
10425
- createdAt: Date;
10426
- updatedAt: Date;
10427
- deletedAt: Date | null;
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
- customFieldId: string;
10441
- upload: {
10442
- id: string;
10443
- createdAt: Date;
10444
- updatedAt: Date;
10445
- deletedAt: Date | null;
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
- customFieldId: string;
10483
- upload: {
10484
- id: string;
10485
- createdAt: Date;
10486
- updatedAt: Date;
10487
- deletedAt: Date | null;
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
- customFieldId: string;
10525
- upload: {
10526
- id: string;
10527
- createdAt: Date;
10528
- updatedAt: Date;
10529
- deletedAt: Date | null;
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
- customFieldId: string;
10680
- upload: {
10681
- id: string;
10682
- createdAt: Date;
10683
- updatedAt: Date;
10684
- deletedAt: Date | null;
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
- customFieldId: string;
10783
- upload: {
10784
- id: string;
10785
- createdAt: Date;
10786
- updatedAt: Date;
10787
- deletedAt: Date | null;
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
- customFieldId: string;
11308
- upload: {
11309
- id: string;
11310
- createdAt: Date;
11311
- updatedAt: Date;
11312
- deletedAt: Date | null;
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
- customFieldId: string;
11641
- upload: {
11642
- id: string;
11643
- createdAt: Date;
11644
- updatedAt: Date;
11645
- deletedAt: Date | null;
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
- customFieldId: string;
12184
- upload: {
12185
- id: string;
12186
- createdAt: Date;
12187
- updatedAt: Date;
12188
- deletedAt: Date | null;
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
- customFieldId: string;
12629
- upload: {
12630
- id: string;
12631
- createdAt: Date;
12632
- updatedAt: Date;
12633
- deletedAt: Date | null;
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
- customFieldId: string;
13077
- upload: {
13078
- id: string;
13079
- createdAt: Date;
13080
- updatedAt: Date;
13081
- deletedAt: Date | null;
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
- customFieldId: string;
13525
- upload: {
13526
- id: string;
13527
- createdAt: Date;
13528
- updatedAt: Date;
13529
- deletedAt: Date | null;
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: {