@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.
Files changed (50) hide show
  1. package/dist/index.js +11 -17
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +11 -17
  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 +4719 -8395
  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 +198 -495
  41. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  42. package/dist/src/telephony-cdr/schema.d.ts +54 -139
  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 +138 -265
  49. package/dist/src/viber/index.d.ts.map +1 -1
  50. package/package.json +1 -1
@@ -366,77 +366,34 @@ export declare const telephonyCdrContract: {
366
366
  createdAt: z.ZodDate;
367
367
  updatedAt: z.ZodDate;
368
368
  deletedAt: z.ZodNullable<z.ZodDate>;
369
- customFieldId: z.ZodString;
370
- upload: z.ZodObject<{
371
- id: z.ZodString;
372
- createdAt: z.ZodDate;
373
- updatedAt: z.ZodDate;
374
- deletedAt: z.ZodNullable<z.ZodDate>;
375
- bucketName: z.ZodString;
376
- fileName: z.ZodString;
377
- fileSize: z.ZodNumber;
378
- fileKey: z.ZodString;
379
- fileUrl: z.ZodNullable<z.ZodString>;
380
- status: z.ZodOptional<z.ZodString>;
381
- }, "strip", z.ZodTypeAny, {
382
- id: string;
383
- createdAt: Date;
384
- updatedAt: Date;
385
- deletedAt: Date | null;
386
- fileName: string;
387
- fileKey: string;
388
- bucketName: string;
389
- fileSize: number;
390
- fileUrl: string | null;
391
- status?: string | undefined;
392
- }, {
393
- id: string;
394
- createdAt: Date;
395
- updatedAt: Date;
396
- deletedAt: Date | null;
397
- fileName: string;
398
- fileKey: string;
399
- bucketName: string;
400
- fileSize: number;
401
- fileUrl: string | null;
402
- status?: string | undefined;
403
- }>;
369
+ bucketName: z.ZodString;
370
+ fileName: z.ZodString;
371
+ fileSize: z.ZodNumber;
372
+ fileKey: z.ZodString;
373
+ fileUrl: z.ZodNullable<z.ZodString>;
374
+ status: z.ZodOptional<z.ZodString>;
404
375
  }, "strip", z.ZodTypeAny, {
405
376
  id: string;
406
377
  createdAt: Date;
407
378
  updatedAt: Date;
408
379
  deletedAt: Date | null;
409
- customFieldId: string;
410
- upload: {
411
- id: string;
412
- createdAt: Date;
413
- updatedAt: Date;
414
- deletedAt: Date | null;
415
- fileName: string;
416
- fileKey: string;
417
- bucketName: string;
418
- fileSize: number;
419
- fileUrl: string | null;
420
- status?: string | undefined;
421
- };
380
+ fileName: string;
381
+ fileKey: string;
382
+ bucketName: string;
383
+ fileSize: number;
384
+ fileUrl: string | null;
385
+ status?: string | undefined;
422
386
  }, {
423
387
  id: string;
424
388
  createdAt: Date;
425
389
  updatedAt: Date;
426
390
  deletedAt: Date | null;
427
- customFieldId: string;
428
- upload: {
429
- id: string;
430
- createdAt: Date;
431
- updatedAt: Date;
432
- deletedAt: Date | null;
433
- fileName: string;
434
- fileKey: string;
435
- bucketName: string;
436
- fileSize: number;
437
- fileUrl: string | null;
438
- status?: string | undefined;
439
- };
391
+ fileName: string;
392
+ fileKey: string;
393
+ bucketName: string;
394
+ fileSize: number;
395
+ fileUrl: string | null;
396
+ status?: string | undefined;
440
397
  }>, "many">;
441
398
  }, "strip", z.ZodTypeAny, {
442
399
  id: string;
@@ -466,19 +423,12 @@ export declare const telephonyCdrContract: {
466
423
  createdAt: Date;
467
424
  updatedAt: Date;
468
425
  deletedAt: Date | null;
469
- customFieldId: string;
470
- upload: {
471
- id: string;
472
- createdAt: Date;
473
- updatedAt: Date;
474
- deletedAt: Date | null;
475
- fileName: string;
476
- fileKey: string;
477
- bucketName: string;
478
- fileSize: number;
479
- fileUrl: string | null;
480
- status?: string | undefined;
481
- };
426
+ fileName: string;
427
+ fileKey: string;
428
+ bucketName: string;
429
+ fileSize: number;
430
+ fileUrl: string | null;
431
+ status?: string | undefined;
482
432
  }[];
483
433
  }, {
484
434
  id: string;
@@ -508,19 +458,12 @@ export declare const telephonyCdrContract: {
508
458
  createdAt: Date;
509
459
  updatedAt: Date;
510
460
  deletedAt: Date | null;
511
- customFieldId: string;
512
- upload: {
513
- id: string;
514
- createdAt: Date;
515
- updatedAt: Date;
516
- deletedAt: Date | null;
517
- fileName: string;
518
- fileKey: string;
519
- bucketName: string;
520
- fileSize: number;
521
- fileUrl: string | null;
522
- status?: string | undefined;
523
- };
461
+ fileName: string;
462
+ fileKey: string;
463
+ bucketName: string;
464
+ fileSize: number;
465
+ fileUrl: string | null;
466
+ status?: string | undefined;
524
467
  }[];
525
468
  }>, "many">;
526
469
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -663,19 +606,12 @@ export declare const telephonyCdrContract: {
663
606
  createdAt: Date;
664
607
  updatedAt: Date;
665
608
  deletedAt: Date | null;
666
- customFieldId: string;
667
- upload: {
668
- id: string;
669
- createdAt: Date;
670
- updatedAt: Date;
671
- deletedAt: Date | null;
672
- fileName: string;
673
- fileKey: string;
674
- bucketName: string;
675
- fileSize: number;
676
- fileUrl: string | null;
677
- status?: string | undefined;
678
- };
609
+ fileName: string;
610
+ fileKey: string;
611
+ bucketName: string;
612
+ fileSize: number;
613
+ fileUrl: string | null;
614
+ status?: string | undefined;
679
615
  }[];
680
616
  }[];
681
617
  company: {
@@ -766,19 +702,12 @@ export declare const telephonyCdrContract: {
766
702
  createdAt: Date;
767
703
  updatedAt: Date;
768
704
  deletedAt: Date | null;
769
- customFieldId: string;
770
- upload: {
771
- id: string;
772
- createdAt: Date;
773
- updatedAt: Date;
774
- deletedAt: Date | null;
775
- fileName: string;
776
- fileKey: string;
777
- bucketName: string;
778
- fileSize: number;
779
- fileUrl: string | null;
780
- status?: string | undefined;
781
- };
705
+ fileName: string;
706
+ fileKey: string;
707
+ bucketName: string;
708
+ fileSize: number;
709
+ fileUrl: string | null;
710
+ status?: string | undefined;
782
711
  }[];
783
712
  }[];
784
713
  company: {
@@ -1296,19 +1225,12 @@ export declare const telephonyCdrContract: {
1296
1225
  createdAt: Date;
1297
1226
  updatedAt: Date;
1298
1227
  deletedAt: Date | null;
1299
- customFieldId: string;
1300
- upload: {
1301
- id: string;
1302
- createdAt: Date;
1303
- updatedAt: Date;
1304
- deletedAt: Date | null;
1305
- fileName: string;
1306
- fileKey: string;
1307
- bucketName: string;
1308
- fileSize: number;
1309
- fileUrl: string | null;
1310
- status?: string | undefined;
1311
- };
1228
+ fileName: string;
1229
+ fileKey: string;
1230
+ bucketName: string;
1231
+ fileSize: number;
1232
+ fileUrl: string | null;
1233
+ status?: string | undefined;
1312
1234
  }[];
1313
1235
  }[];
1314
1236
  company: {
@@ -1503,19 +1425,12 @@ export declare const telephonyCdrContract: {
1503
1425
  createdAt: Date;
1504
1426
  updatedAt: Date;
1505
1427
  deletedAt: Date | null;
1506
- customFieldId: string;
1507
- upload: {
1508
- id: string;
1509
- createdAt: Date;
1510
- updatedAt: Date;
1511
- deletedAt: Date | null;
1512
- fileName: string;
1513
- fileKey: string;
1514
- bucketName: string;
1515
- fileSize: number;
1516
- fileUrl: string | null;
1517
- status?: string | undefined;
1518
- };
1428
+ fileName: string;
1429
+ fileKey: string;
1430
+ bucketName: string;
1431
+ fileSize: number;
1432
+ fileUrl: string | null;
1433
+ status?: string | undefined;
1519
1434
  }[];
1520
1435
  }[];
1521
1436
  company: {
@@ -1716,19 +1631,12 @@ export declare const telephonyCdrContract: {
1716
1631
  createdAt: Date;
1717
1632
  updatedAt: Date;
1718
1633
  deletedAt: Date | null;
1719
- customFieldId: string;
1720
- upload: {
1721
- id: string;
1722
- createdAt: Date;
1723
- updatedAt: Date;
1724
- deletedAt: Date | null;
1725
- fileName: string;
1726
- fileKey: string;
1727
- bucketName: string;
1728
- fileSize: number;
1729
- fileUrl: string | null;
1730
- status?: string | undefined;
1731
- };
1634
+ fileName: string;
1635
+ fileKey: string;
1636
+ bucketName: string;
1637
+ fileSize: number;
1638
+ fileUrl: string | null;
1639
+ status?: string | undefined;
1732
1640
  }[];
1733
1641
  }[];
1734
1642
  company: {
@@ -1929,19 +1837,12 @@ export declare const telephonyCdrContract: {
1929
1837
  createdAt: Date;
1930
1838
  updatedAt: Date;
1931
1839
  deletedAt: Date | null;
1932
- customFieldId: string;
1933
- upload: {
1934
- id: string;
1935
- createdAt: Date;
1936
- updatedAt: Date;
1937
- deletedAt: Date | null;
1938
- fileName: string;
1939
- fileKey: string;
1940
- bucketName: string;
1941
- fileSize: number;
1942
- fileUrl: string | null;
1943
- status?: string | undefined;
1944
- };
1840
+ fileName: string;
1841
+ fileKey: string;
1842
+ bucketName: string;
1843
+ fileSize: number;
1844
+ fileUrl: string | null;
1845
+ status?: string | undefined;
1945
1846
  }[];
1946
1847
  }[];
1947
1848
  company: {
@@ -2447,77 +2348,34 @@ export declare const telephonyCdrContract: {
2447
2348
  createdAt: z.ZodDate;
2448
2349
  updatedAt: z.ZodDate;
2449
2350
  deletedAt: z.ZodNullable<z.ZodDate>;
2450
- customFieldId: z.ZodString;
2451
- upload: z.ZodObject<{
2452
- id: z.ZodString;
2453
- createdAt: z.ZodDate;
2454
- updatedAt: z.ZodDate;
2455
- deletedAt: z.ZodNullable<z.ZodDate>;
2456
- bucketName: z.ZodString;
2457
- fileName: z.ZodString;
2458
- fileSize: z.ZodNumber;
2459
- fileKey: z.ZodString;
2460
- fileUrl: z.ZodNullable<z.ZodString>;
2461
- status: z.ZodOptional<z.ZodString>;
2462
- }, "strip", z.ZodTypeAny, {
2463
- id: string;
2464
- createdAt: Date;
2465
- updatedAt: Date;
2466
- deletedAt: Date | null;
2467
- fileName: string;
2468
- fileKey: string;
2469
- bucketName: string;
2470
- fileSize: number;
2471
- fileUrl: string | null;
2472
- status?: string | undefined;
2473
- }, {
2474
- id: string;
2475
- createdAt: Date;
2476
- updatedAt: Date;
2477
- deletedAt: Date | null;
2478
- fileName: string;
2479
- fileKey: string;
2480
- bucketName: string;
2481
- fileSize: number;
2482
- fileUrl: string | null;
2483
- status?: string | undefined;
2484
- }>;
2351
+ bucketName: z.ZodString;
2352
+ fileName: z.ZodString;
2353
+ fileSize: z.ZodNumber;
2354
+ fileKey: z.ZodString;
2355
+ fileUrl: z.ZodNullable<z.ZodString>;
2356
+ status: z.ZodOptional<z.ZodString>;
2485
2357
  }, "strip", z.ZodTypeAny, {
2486
2358
  id: string;
2487
2359
  createdAt: Date;
2488
2360
  updatedAt: Date;
2489
2361
  deletedAt: Date | null;
2490
- customFieldId: string;
2491
- upload: {
2492
- id: string;
2493
- createdAt: Date;
2494
- updatedAt: Date;
2495
- deletedAt: Date | null;
2496
- fileName: string;
2497
- fileKey: string;
2498
- bucketName: string;
2499
- fileSize: number;
2500
- fileUrl: string | null;
2501
- status?: string | undefined;
2502
- };
2362
+ fileName: string;
2363
+ fileKey: string;
2364
+ bucketName: string;
2365
+ fileSize: number;
2366
+ fileUrl: string | null;
2367
+ status?: string | undefined;
2503
2368
  }, {
2504
2369
  id: string;
2505
2370
  createdAt: Date;
2506
2371
  updatedAt: Date;
2507
2372
  deletedAt: Date | null;
2508
- customFieldId: string;
2509
- upload: {
2510
- id: string;
2511
- createdAt: Date;
2512
- updatedAt: Date;
2513
- deletedAt: Date | null;
2514
- fileName: string;
2515
- fileKey: string;
2516
- bucketName: string;
2517
- fileSize: number;
2518
- fileUrl: string | null;
2519
- status?: string | undefined;
2520
- };
2373
+ fileName: string;
2374
+ fileKey: string;
2375
+ bucketName: string;
2376
+ fileSize: number;
2377
+ fileUrl: string | null;
2378
+ status?: string | undefined;
2521
2379
  }>, "many">;
2522
2380
  }, "strip", z.ZodTypeAny, {
2523
2381
  id: string;
@@ -2547,19 +2405,12 @@ export declare const telephonyCdrContract: {
2547
2405
  createdAt: Date;
2548
2406
  updatedAt: Date;
2549
2407
  deletedAt: Date | null;
2550
- customFieldId: string;
2551
- upload: {
2552
- id: string;
2553
- createdAt: Date;
2554
- updatedAt: Date;
2555
- deletedAt: Date | null;
2556
- fileName: string;
2557
- fileKey: string;
2558
- bucketName: string;
2559
- fileSize: number;
2560
- fileUrl: string | null;
2561
- status?: string | undefined;
2562
- };
2408
+ fileName: string;
2409
+ fileKey: string;
2410
+ bucketName: string;
2411
+ fileSize: number;
2412
+ fileUrl: string | null;
2413
+ status?: string | undefined;
2563
2414
  }[];
2564
2415
  }, {
2565
2416
  id: string;
@@ -2589,19 +2440,12 @@ export declare const telephonyCdrContract: {
2589
2440
  createdAt: Date;
2590
2441
  updatedAt: Date;
2591
2442
  deletedAt: Date | null;
2592
- customFieldId: string;
2593
- upload: {
2594
- id: string;
2595
- createdAt: Date;
2596
- updatedAt: Date;
2597
- deletedAt: Date | null;
2598
- fileName: string;
2599
- fileKey: string;
2600
- bucketName: string;
2601
- fileSize: number;
2602
- fileUrl: string | null;
2603
- status?: string | undefined;
2604
- };
2443
+ fileName: string;
2444
+ fileKey: string;
2445
+ bucketName: string;
2446
+ fileSize: number;
2447
+ fileUrl: string | null;
2448
+ status?: string | undefined;
2605
2449
  }[];
2606
2450
  }>, "many">;
2607
2451
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -2744,19 +2588,12 @@ export declare const telephonyCdrContract: {
2744
2588
  createdAt: Date;
2745
2589
  updatedAt: Date;
2746
2590
  deletedAt: Date | null;
2747
- customFieldId: string;
2748
- upload: {
2749
- id: string;
2750
- createdAt: Date;
2751
- updatedAt: Date;
2752
- deletedAt: Date | null;
2753
- fileName: string;
2754
- fileKey: string;
2755
- bucketName: string;
2756
- fileSize: number;
2757
- fileUrl: string | null;
2758
- status?: string | undefined;
2759
- };
2591
+ fileName: string;
2592
+ fileKey: string;
2593
+ bucketName: string;
2594
+ fileSize: number;
2595
+ fileUrl: string | null;
2596
+ status?: string | undefined;
2760
2597
  }[];
2761
2598
  }[];
2762
2599
  company: {
@@ -2847,19 +2684,12 @@ export declare const telephonyCdrContract: {
2847
2684
  createdAt: Date;
2848
2685
  updatedAt: Date;
2849
2686
  deletedAt: Date | null;
2850
- customFieldId: string;
2851
- upload: {
2852
- id: string;
2853
- createdAt: Date;
2854
- updatedAt: Date;
2855
- deletedAt: Date | null;
2856
- fileName: string;
2857
- fileKey: string;
2858
- bucketName: string;
2859
- fileSize: number;
2860
- fileUrl: string | null;
2861
- status?: string | undefined;
2862
- };
2687
+ fileName: string;
2688
+ fileKey: string;
2689
+ bucketName: string;
2690
+ fileSize: number;
2691
+ fileUrl: string | null;
2692
+ status?: string | undefined;
2863
2693
  }[];
2864
2694
  }[];
2865
2695
  company: {
@@ -3377,19 +3207,12 @@ export declare const telephonyCdrContract: {
3377
3207
  createdAt: Date;
3378
3208
  updatedAt: Date;
3379
3209
  deletedAt: Date | null;
3380
- customFieldId: string;
3381
- upload: {
3382
- id: string;
3383
- createdAt: Date;
3384
- updatedAt: Date;
3385
- deletedAt: Date | null;
3386
- fileName: string;
3387
- fileKey: string;
3388
- bucketName: string;
3389
- fileSize: number;
3390
- fileUrl: string | null;
3391
- status?: string | undefined;
3392
- };
3210
+ fileName: string;
3211
+ fileKey: string;
3212
+ bucketName: string;
3213
+ fileSize: number;
3214
+ fileUrl: string | null;
3215
+ status?: string | undefined;
3393
3216
  }[];
3394
3217
  }[];
3395
3218
  company: {
@@ -3584,19 +3407,12 @@ export declare const telephonyCdrContract: {
3584
3407
  createdAt: Date;
3585
3408
  updatedAt: Date;
3586
3409
  deletedAt: Date | null;
3587
- customFieldId: string;
3588
- upload: {
3589
- id: string;
3590
- createdAt: Date;
3591
- updatedAt: Date;
3592
- deletedAt: Date | null;
3593
- fileName: string;
3594
- fileKey: string;
3595
- bucketName: string;
3596
- fileSize: number;
3597
- fileUrl: string | null;
3598
- status?: string | undefined;
3599
- };
3410
+ fileName: string;
3411
+ fileKey: string;
3412
+ bucketName: string;
3413
+ fileSize: number;
3414
+ fileUrl: string | null;
3415
+ status?: string | undefined;
3600
3416
  }[];
3601
3417
  }[];
3602
3418
  company: {
@@ -3797,19 +3613,12 @@ export declare const telephonyCdrContract: {
3797
3613
  createdAt: Date;
3798
3614
  updatedAt: Date;
3799
3615
  deletedAt: Date | null;
3800
- customFieldId: string;
3801
- upload: {
3802
- id: string;
3803
- createdAt: Date;
3804
- updatedAt: Date;
3805
- deletedAt: Date | null;
3806
- fileName: string;
3807
- fileKey: string;
3808
- bucketName: string;
3809
- fileSize: number;
3810
- fileUrl: string | null;
3811
- status?: string | undefined;
3812
- };
3616
+ fileName: string;
3617
+ fileKey: string;
3618
+ bucketName: string;
3619
+ fileSize: number;
3620
+ fileUrl: string | null;
3621
+ status?: string | undefined;
3813
3622
  }[];
3814
3623
  }[];
3815
3624
  company: {
@@ -4010,19 +3819,12 @@ export declare const telephonyCdrContract: {
4010
3819
  createdAt: Date;
4011
3820
  updatedAt: Date;
4012
3821
  deletedAt: Date | null;
4013
- customFieldId: string;
4014
- upload: {
4015
- id: string;
4016
- createdAt: Date;
4017
- updatedAt: Date;
4018
- deletedAt: Date | null;
4019
- fileName: string;
4020
- fileKey: string;
4021
- bucketName: string;
4022
- fileSize: number;
4023
- fileUrl: string | null;
4024
- status?: string | undefined;
4025
- };
3822
+ fileName: string;
3823
+ fileKey: string;
3824
+ bucketName: string;
3825
+ fileSize: number;
3826
+ fileUrl: string | null;
3827
+ status?: string | undefined;
4026
3828
  }[];
4027
3829
  }[];
4028
3830
  company: {
@@ -4546,77 +4348,34 @@ export declare const telephonyCdrContract: {
4546
4348
  createdAt: z.ZodDate;
4547
4349
  updatedAt: z.ZodDate;
4548
4350
  deletedAt: z.ZodNullable<z.ZodDate>;
4549
- customFieldId: z.ZodString;
4550
- upload: z.ZodObject<{
4551
- id: z.ZodString;
4552
- createdAt: z.ZodDate;
4553
- updatedAt: z.ZodDate;
4554
- deletedAt: z.ZodNullable<z.ZodDate>;
4555
- bucketName: z.ZodString;
4556
- fileName: z.ZodString;
4557
- fileSize: z.ZodNumber;
4558
- fileKey: z.ZodString;
4559
- fileUrl: z.ZodNullable<z.ZodString>;
4560
- status: z.ZodOptional<z.ZodString>;
4561
- }, "strip", z.ZodTypeAny, {
4562
- id: string;
4563
- createdAt: Date;
4564
- updatedAt: Date;
4565
- deletedAt: Date | null;
4566
- fileName: string;
4567
- fileKey: string;
4568
- bucketName: string;
4569
- fileSize: number;
4570
- fileUrl: string | null;
4571
- status?: string | undefined;
4572
- }, {
4573
- id: string;
4574
- createdAt: Date;
4575
- updatedAt: Date;
4576
- deletedAt: Date | null;
4577
- fileName: string;
4578
- fileKey: string;
4579
- bucketName: string;
4580
- fileSize: number;
4581
- fileUrl: string | null;
4582
- status?: string | undefined;
4583
- }>;
4351
+ bucketName: z.ZodString;
4352
+ fileName: z.ZodString;
4353
+ fileSize: z.ZodNumber;
4354
+ fileKey: z.ZodString;
4355
+ fileUrl: z.ZodNullable<z.ZodString>;
4356
+ status: z.ZodOptional<z.ZodString>;
4584
4357
  }, "strip", z.ZodTypeAny, {
4585
4358
  id: string;
4586
4359
  createdAt: Date;
4587
4360
  updatedAt: Date;
4588
4361
  deletedAt: Date | null;
4589
- customFieldId: string;
4590
- upload: {
4591
- id: string;
4592
- createdAt: Date;
4593
- updatedAt: Date;
4594
- deletedAt: Date | null;
4595
- fileName: string;
4596
- fileKey: string;
4597
- bucketName: string;
4598
- fileSize: number;
4599
- fileUrl: string | null;
4600
- status?: string | undefined;
4601
- };
4362
+ fileName: string;
4363
+ fileKey: string;
4364
+ bucketName: string;
4365
+ fileSize: number;
4366
+ fileUrl: string | null;
4367
+ status?: string | undefined;
4602
4368
  }, {
4603
4369
  id: string;
4604
4370
  createdAt: Date;
4605
4371
  updatedAt: Date;
4606
4372
  deletedAt: Date | null;
4607
- customFieldId: string;
4608
- upload: {
4609
- id: string;
4610
- createdAt: Date;
4611
- updatedAt: Date;
4612
- deletedAt: Date | null;
4613
- fileName: string;
4614
- fileKey: string;
4615
- bucketName: string;
4616
- fileSize: number;
4617
- fileUrl: string | null;
4618
- status?: string | undefined;
4619
- };
4373
+ fileName: string;
4374
+ fileKey: string;
4375
+ bucketName: string;
4376
+ fileSize: number;
4377
+ fileUrl: string | null;
4378
+ status?: string | undefined;
4620
4379
  }>, "many">;
4621
4380
  }, "strip", z.ZodTypeAny, {
4622
4381
  id: string;
@@ -4646,19 +4405,12 @@ export declare const telephonyCdrContract: {
4646
4405
  createdAt: Date;
4647
4406
  updatedAt: Date;
4648
4407
  deletedAt: Date | null;
4649
- customFieldId: string;
4650
- upload: {
4651
- id: string;
4652
- createdAt: Date;
4653
- updatedAt: Date;
4654
- deletedAt: Date | null;
4655
- fileName: string;
4656
- fileKey: string;
4657
- bucketName: string;
4658
- fileSize: number;
4659
- fileUrl: string | null;
4660
- status?: string | undefined;
4661
- };
4408
+ fileName: string;
4409
+ fileKey: string;
4410
+ bucketName: string;
4411
+ fileSize: number;
4412
+ fileUrl: string | null;
4413
+ status?: string | undefined;
4662
4414
  }[];
4663
4415
  }, {
4664
4416
  id: string;
@@ -4688,19 +4440,12 @@ export declare const telephonyCdrContract: {
4688
4440
  createdAt: Date;
4689
4441
  updatedAt: Date;
4690
4442
  deletedAt: Date | null;
4691
- customFieldId: string;
4692
- upload: {
4693
- id: string;
4694
- createdAt: Date;
4695
- updatedAt: Date;
4696
- deletedAt: Date | null;
4697
- fileName: string;
4698
- fileKey: string;
4699
- bucketName: string;
4700
- fileSize: number;
4701
- fileUrl: string | null;
4702
- status?: string | undefined;
4703
- };
4443
+ fileName: string;
4444
+ fileKey: string;
4445
+ bucketName: string;
4446
+ fileSize: number;
4447
+ fileUrl: string | null;
4448
+ status?: string | undefined;
4704
4449
  }[];
4705
4450
  }>, "many">;
4706
4451
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -4843,19 +4588,12 @@ export declare const telephonyCdrContract: {
4843
4588
  createdAt: Date;
4844
4589
  updatedAt: Date;
4845
4590
  deletedAt: Date | null;
4846
- customFieldId: string;
4847
- upload: {
4848
- id: string;
4849
- createdAt: Date;
4850
- updatedAt: Date;
4851
- deletedAt: Date | null;
4852
- fileName: string;
4853
- fileKey: string;
4854
- bucketName: string;
4855
- fileSize: number;
4856
- fileUrl: string | null;
4857
- status?: string | undefined;
4858
- };
4591
+ fileName: string;
4592
+ fileKey: string;
4593
+ bucketName: string;
4594
+ fileSize: number;
4595
+ fileUrl: string | null;
4596
+ status?: string | undefined;
4859
4597
  }[];
4860
4598
  }[];
4861
4599
  company: {
@@ -4946,19 +4684,12 @@ export declare const telephonyCdrContract: {
4946
4684
  createdAt: Date;
4947
4685
  updatedAt: Date;
4948
4686
  deletedAt: Date | null;
4949
- customFieldId: string;
4950
- upload: {
4951
- id: string;
4952
- createdAt: Date;
4953
- updatedAt: Date;
4954
- deletedAt: Date | null;
4955
- fileName: string;
4956
- fileKey: string;
4957
- bucketName: string;
4958
- fileSize: number;
4959
- fileUrl: string | null;
4960
- status?: string | undefined;
4961
- };
4687
+ fileName: string;
4688
+ fileKey: string;
4689
+ bucketName: string;
4690
+ fileSize: number;
4691
+ fileUrl: string | null;
4692
+ status?: string | undefined;
4962
4693
  }[];
4963
4694
  }[];
4964
4695
  company: {
@@ -5476,19 +5207,12 @@ export declare const telephonyCdrContract: {
5476
5207
  createdAt: Date;
5477
5208
  updatedAt: Date;
5478
5209
  deletedAt: Date | null;
5479
- customFieldId: string;
5480
- upload: {
5481
- id: string;
5482
- createdAt: Date;
5483
- updatedAt: Date;
5484
- deletedAt: Date | null;
5485
- fileName: string;
5486
- fileKey: string;
5487
- bucketName: string;
5488
- fileSize: number;
5489
- fileUrl: string | null;
5490
- status?: string | undefined;
5491
- };
5210
+ fileName: string;
5211
+ fileKey: string;
5212
+ bucketName: string;
5213
+ fileSize: number;
5214
+ fileUrl: string | null;
5215
+ status?: string | undefined;
5492
5216
  }[];
5493
5217
  }[];
5494
5218
  company: {
@@ -5683,19 +5407,12 @@ export declare const telephonyCdrContract: {
5683
5407
  createdAt: Date;
5684
5408
  updatedAt: Date;
5685
5409
  deletedAt: Date | null;
5686
- customFieldId: string;
5687
- upload: {
5688
- id: string;
5689
- createdAt: Date;
5690
- updatedAt: Date;
5691
- deletedAt: Date | null;
5692
- fileName: string;
5693
- fileKey: string;
5694
- bucketName: string;
5695
- fileSize: number;
5696
- fileUrl: string | null;
5697
- status?: string | undefined;
5698
- };
5410
+ fileName: string;
5411
+ fileKey: string;
5412
+ bucketName: string;
5413
+ fileSize: number;
5414
+ fileUrl: string | null;
5415
+ status?: string | undefined;
5699
5416
  }[];
5700
5417
  }[];
5701
5418
  company: {
@@ -5896,19 +5613,12 @@ export declare const telephonyCdrContract: {
5896
5613
  createdAt: Date;
5897
5614
  updatedAt: Date;
5898
5615
  deletedAt: Date | null;
5899
- customFieldId: string;
5900
- upload: {
5901
- id: string;
5902
- createdAt: Date;
5903
- updatedAt: Date;
5904
- deletedAt: Date | null;
5905
- fileName: string;
5906
- fileKey: string;
5907
- bucketName: string;
5908
- fileSize: number;
5909
- fileUrl: string | null;
5910
- status?: string | undefined;
5911
- };
5616
+ fileName: string;
5617
+ fileKey: string;
5618
+ bucketName: string;
5619
+ fileSize: number;
5620
+ fileUrl: string | null;
5621
+ status?: string | undefined;
5912
5622
  }[];
5913
5623
  }[];
5914
5624
  company: {
@@ -6109,19 +5819,12 @@ export declare const telephonyCdrContract: {
6109
5819
  createdAt: Date;
6110
5820
  updatedAt: Date;
6111
5821
  deletedAt: Date | null;
6112
- customFieldId: string;
6113
- upload: {
6114
- id: string;
6115
- createdAt: Date;
6116
- updatedAt: Date;
6117
- deletedAt: Date | null;
6118
- fileName: string;
6119
- fileKey: string;
6120
- bucketName: string;
6121
- fileSize: number;
6122
- fileUrl: string | null;
6123
- status?: string | undefined;
6124
- };
5822
+ fileName: string;
5823
+ fileKey: string;
5824
+ bucketName: string;
5825
+ fileSize: number;
5826
+ fileUrl: string | null;
5827
+ status?: string | undefined;
6125
5828
  }[];
6126
5829
  }[];
6127
5830
  company: {