@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
@@ -539,77 +539,34 @@ export declare const cxLogContract: {
539
539
  createdAt: z.ZodDate;
540
540
  updatedAt: z.ZodDate;
541
541
  deletedAt: z.ZodNullable<z.ZodDate>;
542
- customFieldId: z.ZodString;
543
- upload: z.ZodObject<{
544
- id: z.ZodString;
545
- createdAt: z.ZodDate;
546
- updatedAt: z.ZodDate;
547
- deletedAt: z.ZodNullable<z.ZodDate>;
548
- bucketName: z.ZodString;
549
- fileName: z.ZodString;
550
- fileSize: z.ZodNumber;
551
- fileKey: z.ZodString;
552
- fileUrl: z.ZodNullable<z.ZodString>;
553
- status: z.ZodOptional<z.ZodString>;
554
- }, "strip", z.ZodTypeAny, {
555
- id: string;
556
- createdAt: Date;
557
- updatedAt: Date;
558
- deletedAt: Date | null;
559
- fileName: string;
560
- fileKey: string;
561
- bucketName: string;
562
- fileSize: number;
563
- fileUrl: string | null;
564
- status?: string | undefined;
565
- }, {
566
- id: string;
567
- createdAt: Date;
568
- updatedAt: Date;
569
- deletedAt: Date | null;
570
- fileName: string;
571
- fileKey: string;
572
- bucketName: string;
573
- fileSize: number;
574
- fileUrl: string | null;
575
- status?: string | undefined;
576
- }>;
542
+ bucketName: z.ZodString;
543
+ fileName: z.ZodString;
544
+ fileSize: z.ZodNumber;
545
+ fileKey: z.ZodString;
546
+ fileUrl: z.ZodNullable<z.ZodString>;
547
+ status: z.ZodOptional<z.ZodString>;
577
548
  }, "strip", z.ZodTypeAny, {
578
549
  id: string;
579
550
  createdAt: Date;
580
551
  updatedAt: Date;
581
552
  deletedAt: Date | null;
582
- customFieldId: string;
583
- upload: {
584
- id: string;
585
- createdAt: Date;
586
- updatedAt: Date;
587
- deletedAt: Date | null;
588
- fileName: string;
589
- fileKey: string;
590
- bucketName: string;
591
- fileSize: number;
592
- fileUrl: string | null;
593
- status?: string | undefined;
594
- };
553
+ fileName: string;
554
+ fileKey: string;
555
+ bucketName: string;
556
+ fileSize: number;
557
+ fileUrl: string | null;
558
+ status?: string | undefined;
595
559
  }, {
596
560
  id: string;
597
561
  createdAt: Date;
598
562
  updatedAt: Date;
599
563
  deletedAt: Date | null;
600
- customFieldId: string;
601
- upload: {
602
- id: string;
603
- createdAt: Date;
604
- updatedAt: Date;
605
- deletedAt: Date | null;
606
- fileName: string;
607
- fileKey: string;
608
- bucketName: string;
609
- fileSize: number;
610
- fileUrl: string | null;
611
- status?: string | undefined;
612
- };
564
+ fileName: string;
565
+ fileKey: string;
566
+ bucketName: string;
567
+ fileSize: number;
568
+ fileUrl: string | null;
569
+ status?: string | undefined;
613
570
  }>, "many">;
614
571
  }, "strip", z.ZodTypeAny, {
615
572
  id: string;
@@ -639,19 +596,12 @@ export declare const cxLogContract: {
639
596
  createdAt: Date;
640
597
  updatedAt: Date;
641
598
  deletedAt: Date | null;
642
- customFieldId: string;
643
- upload: {
644
- id: string;
645
- createdAt: Date;
646
- updatedAt: Date;
647
- deletedAt: Date | null;
648
- fileName: string;
649
- fileKey: string;
650
- bucketName: string;
651
- fileSize: number;
652
- fileUrl: string | null;
653
- status?: string | undefined;
654
- };
599
+ fileName: string;
600
+ fileKey: string;
601
+ bucketName: string;
602
+ fileSize: number;
603
+ fileUrl: string | null;
604
+ status?: string | undefined;
655
605
  }[];
656
606
  }, {
657
607
  id: string;
@@ -681,19 +631,12 @@ export declare const cxLogContract: {
681
631
  createdAt: Date;
682
632
  updatedAt: Date;
683
633
  deletedAt: Date | null;
684
- customFieldId: string;
685
- upload: {
686
- id: string;
687
- createdAt: Date;
688
- updatedAt: Date;
689
- deletedAt: Date | null;
690
- fileName: string;
691
- fileKey: string;
692
- bucketName: string;
693
- fileSize: number;
694
- fileUrl: string | null;
695
- status?: string | undefined;
696
- };
634
+ fileName: string;
635
+ fileKey: string;
636
+ bucketName: string;
637
+ fileSize: number;
638
+ fileUrl: string | null;
639
+ status?: string | undefined;
697
640
  }[];
698
641
  }>, "many">;
699
642
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -836,19 +779,12 @@ export declare const cxLogContract: {
836
779
  createdAt: Date;
837
780
  updatedAt: Date;
838
781
  deletedAt: Date | null;
839
- customFieldId: string;
840
- upload: {
841
- id: string;
842
- createdAt: Date;
843
- updatedAt: Date;
844
- deletedAt: Date | null;
845
- fileName: string;
846
- fileKey: string;
847
- bucketName: string;
848
- fileSize: number;
849
- fileUrl: string | null;
850
- status?: string | undefined;
851
- };
782
+ fileName: string;
783
+ fileKey: string;
784
+ bucketName: string;
785
+ fileSize: number;
786
+ fileUrl: string | null;
787
+ status?: string | undefined;
852
788
  }[];
853
789
  }[];
854
790
  company: {
@@ -939,19 +875,12 @@ export declare const cxLogContract: {
939
875
  createdAt: Date;
940
876
  updatedAt: Date;
941
877
  deletedAt: Date | null;
942
- customFieldId: string;
943
- upload: {
944
- id: string;
945
- createdAt: Date;
946
- updatedAt: Date;
947
- deletedAt: Date | null;
948
- fileName: string;
949
- fileKey: string;
950
- bucketName: string;
951
- fileSize: number;
952
- fileUrl: string | null;
953
- status?: string | undefined;
954
- };
878
+ fileName: string;
879
+ fileKey: string;
880
+ bucketName: string;
881
+ fileSize: number;
882
+ fileUrl: string | null;
883
+ status?: string | undefined;
955
884
  }[];
956
885
  }[];
957
886
  company: {
@@ -1055,19 +984,12 @@ export declare const cxLogContract: {
1055
984
  createdAt: Date;
1056
985
  updatedAt: Date;
1057
986
  deletedAt: Date | null;
1058
- customFieldId: string;
1059
- upload: {
1060
- id: string;
1061
- createdAt: Date;
1062
- updatedAt: Date;
1063
- deletedAt: Date | null;
1064
- fileName: string;
1065
- fileKey: string;
1066
- bucketName: string;
1067
- fileSize: number;
1068
- fileUrl: string | null;
1069
- status?: string | undefined;
1070
- };
987
+ fileName: string;
988
+ fileKey: string;
989
+ bucketName: string;
990
+ fileSize: number;
991
+ fileUrl: string | null;
992
+ status?: string | undefined;
1071
993
  }[];
1072
994
  }[];
1073
995
  company: {
@@ -1173,19 +1095,12 @@ export declare const cxLogContract: {
1173
1095
  createdAt: Date;
1174
1096
  updatedAt: Date;
1175
1097
  deletedAt: Date | null;
1176
- customFieldId: string;
1177
- upload: {
1178
- id: string;
1179
- createdAt: Date;
1180
- updatedAt: Date;
1181
- deletedAt: Date | null;
1182
- fileName: string;
1183
- fileKey: string;
1184
- bucketName: string;
1185
- fileSize: number;
1186
- fileUrl: string | null;
1187
- status?: string | undefined;
1188
- };
1098
+ fileName: string;
1099
+ fileKey: string;
1100
+ bucketName: string;
1101
+ fileSize: number;
1102
+ fileUrl: string | null;
1103
+ status?: string | undefined;
1189
1104
  }[];
1190
1105
  }[];
1191
1106
  company: {
@@ -2122,19 +2037,12 @@ export declare const cxLogContract: {
2122
2037
  createdAt: Date;
2123
2038
  updatedAt: Date;
2124
2039
  deletedAt: Date | null;
2125
- customFieldId: string;
2126
- upload: {
2127
- id: string;
2128
- createdAt: Date;
2129
- updatedAt: Date;
2130
- deletedAt: Date | null;
2131
- fileName: string;
2132
- fileKey: string;
2133
- bucketName: string;
2134
- fileSize: number;
2135
- fileUrl: string | null;
2136
- status?: string | undefined;
2137
- };
2040
+ fileName: string;
2041
+ fileKey: string;
2042
+ bucketName: string;
2043
+ fileSize: number;
2044
+ fileUrl: string | null;
2045
+ status?: string | undefined;
2138
2046
  }[];
2139
2047
  }[];
2140
2048
  company: {
@@ -2407,19 +2315,12 @@ export declare const cxLogContract: {
2407
2315
  createdAt: Date;
2408
2316
  updatedAt: Date;
2409
2317
  deletedAt: Date | null;
2410
- customFieldId: string;
2411
- upload: {
2412
- id: string;
2413
- createdAt: Date;
2414
- updatedAt: Date;
2415
- deletedAt: Date | null;
2416
- fileName: string;
2417
- fileKey: string;
2418
- bucketName: string;
2419
- fileSize: number;
2420
- fileUrl: string | null;
2421
- status?: string | undefined;
2422
- };
2318
+ fileName: string;
2319
+ fileKey: string;
2320
+ bucketName: string;
2321
+ fileSize: number;
2322
+ fileUrl: string | null;
2323
+ status?: string | undefined;
2423
2324
  }[];
2424
2325
  }[];
2425
2326
  company: {
@@ -2891,77 +2792,34 @@ export declare const cxLogContract: {
2891
2792
  createdAt: z.ZodDate;
2892
2793
  updatedAt: z.ZodDate;
2893
2794
  deletedAt: z.ZodNullable<z.ZodDate>;
2894
- customFieldId: z.ZodString;
2895
- upload: z.ZodObject<{
2896
- id: z.ZodString;
2897
- createdAt: z.ZodDate;
2898
- updatedAt: z.ZodDate;
2899
- deletedAt: z.ZodNullable<z.ZodDate>;
2900
- bucketName: z.ZodString;
2901
- fileName: z.ZodString;
2902
- fileSize: z.ZodNumber;
2903
- fileKey: z.ZodString;
2904
- fileUrl: z.ZodNullable<z.ZodString>;
2905
- status: z.ZodOptional<z.ZodString>;
2906
- }, "strip", z.ZodTypeAny, {
2907
- id: string;
2908
- createdAt: Date;
2909
- updatedAt: Date;
2910
- deletedAt: Date | null;
2911
- fileName: string;
2912
- fileKey: string;
2913
- bucketName: string;
2914
- fileSize: number;
2915
- fileUrl: string | null;
2916
- status?: string | undefined;
2917
- }, {
2918
- id: string;
2919
- createdAt: Date;
2920
- updatedAt: Date;
2921
- deletedAt: Date | null;
2922
- fileName: string;
2923
- fileKey: string;
2924
- bucketName: string;
2925
- fileSize: number;
2926
- fileUrl: string | null;
2927
- status?: string | undefined;
2928
- }>;
2795
+ bucketName: z.ZodString;
2796
+ fileName: z.ZodString;
2797
+ fileSize: z.ZodNumber;
2798
+ fileKey: z.ZodString;
2799
+ fileUrl: z.ZodNullable<z.ZodString>;
2800
+ status: z.ZodOptional<z.ZodString>;
2929
2801
  }, "strip", z.ZodTypeAny, {
2930
2802
  id: string;
2931
2803
  createdAt: Date;
2932
2804
  updatedAt: Date;
2933
2805
  deletedAt: Date | null;
2934
- customFieldId: string;
2935
- upload: {
2936
- id: string;
2937
- createdAt: Date;
2938
- updatedAt: Date;
2939
- deletedAt: Date | null;
2940
- fileName: string;
2941
- fileKey: string;
2942
- bucketName: string;
2943
- fileSize: number;
2944
- fileUrl: string | null;
2945
- status?: string | undefined;
2946
- };
2806
+ fileName: string;
2807
+ fileKey: string;
2808
+ bucketName: string;
2809
+ fileSize: number;
2810
+ fileUrl: string | null;
2811
+ status?: string | undefined;
2947
2812
  }, {
2948
2813
  id: string;
2949
2814
  createdAt: Date;
2950
2815
  updatedAt: Date;
2951
2816
  deletedAt: Date | null;
2952
- customFieldId: string;
2953
- upload: {
2954
- id: string;
2955
- createdAt: Date;
2956
- updatedAt: Date;
2957
- deletedAt: Date | null;
2958
- fileName: string;
2959
- fileKey: string;
2960
- bucketName: string;
2961
- fileSize: number;
2962
- fileUrl: string | null;
2963
- status?: string | undefined;
2964
- };
2817
+ fileName: string;
2818
+ fileKey: string;
2819
+ bucketName: string;
2820
+ fileSize: number;
2821
+ fileUrl: string | null;
2822
+ status?: string | undefined;
2965
2823
  }>, "many">;
2966
2824
  }, "strip", z.ZodTypeAny, {
2967
2825
  id: string;
@@ -2991,19 +2849,12 @@ export declare const cxLogContract: {
2991
2849
  createdAt: Date;
2992
2850
  updatedAt: Date;
2993
2851
  deletedAt: Date | null;
2994
- customFieldId: string;
2995
- upload: {
2996
- id: string;
2997
- createdAt: Date;
2998
- updatedAt: Date;
2999
- deletedAt: Date | null;
3000
- fileName: string;
3001
- fileKey: string;
3002
- bucketName: string;
3003
- fileSize: number;
3004
- fileUrl: string | null;
3005
- status?: string | undefined;
3006
- };
2852
+ fileName: string;
2853
+ fileKey: string;
2854
+ bucketName: string;
2855
+ fileSize: number;
2856
+ fileUrl: string | null;
2857
+ status?: string | undefined;
3007
2858
  }[];
3008
2859
  }, {
3009
2860
  id: string;
@@ -3033,19 +2884,12 @@ export declare const cxLogContract: {
3033
2884
  createdAt: Date;
3034
2885
  updatedAt: Date;
3035
2886
  deletedAt: Date | null;
3036
- customFieldId: string;
3037
- upload: {
3038
- id: string;
3039
- createdAt: Date;
3040
- updatedAt: Date;
3041
- deletedAt: Date | null;
3042
- fileName: string;
3043
- fileKey: string;
3044
- bucketName: string;
3045
- fileSize: number;
3046
- fileUrl: string | null;
3047
- status?: string | undefined;
3048
- };
2887
+ fileName: string;
2888
+ fileKey: string;
2889
+ bucketName: string;
2890
+ fileSize: number;
2891
+ fileUrl: string | null;
2892
+ status?: string | undefined;
3049
2893
  }[];
3050
2894
  }>, "many">;
3051
2895
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -3188,19 +3032,12 @@ export declare const cxLogContract: {
3188
3032
  createdAt: Date;
3189
3033
  updatedAt: Date;
3190
3034
  deletedAt: Date | null;
3191
- customFieldId: string;
3192
- upload: {
3193
- id: string;
3194
- createdAt: Date;
3195
- updatedAt: Date;
3196
- deletedAt: Date | null;
3197
- fileName: string;
3198
- fileKey: string;
3199
- bucketName: string;
3200
- fileSize: number;
3201
- fileUrl: string | null;
3202
- status?: string | undefined;
3203
- };
3035
+ fileName: string;
3036
+ fileKey: string;
3037
+ bucketName: string;
3038
+ fileSize: number;
3039
+ fileUrl: string | null;
3040
+ status?: string | undefined;
3204
3041
  }[];
3205
3042
  }[];
3206
3043
  company: {
@@ -3291,19 +3128,12 @@ export declare const cxLogContract: {
3291
3128
  createdAt: Date;
3292
3129
  updatedAt: Date;
3293
3130
  deletedAt: Date | null;
3294
- customFieldId: string;
3295
- upload: {
3296
- id: string;
3297
- createdAt: Date;
3298
- updatedAt: Date;
3299
- deletedAt: Date | null;
3300
- fileName: string;
3301
- fileKey: string;
3302
- bucketName: string;
3303
- fileSize: number;
3304
- fileUrl: string | null;
3305
- status?: string | undefined;
3306
- };
3131
+ fileName: string;
3132
+ fileKey: string;
3133
+ bucketName: string;
3134
+ fileSize: number;
3135
+ fileUrl: string | null;
3136
+ status?: string | undefined;
3307
3137
  }[];
3308
3138
  }[];
3309
3139
  company: {
@@ -3821,19 +3651,12 @@ export declare const cxLogContract: {
3821
3651
  createdAt: Date;
3822
3652
  updatedAt: Date;
3823
3653
  deletedAt: Date | null;
3824
- customFieldId: string;
3825
- upload: {
3826
- id: string;
3827
- createdAt: Date;
3828
- updatedAt: Date;
3829
- deletedAt: Date | null;
3830
- fileName: string;
3831
- fileKey: string;
3832
- bucketName: string;
3833
- fileSize: number;
3834
- fileUrl: string | null;
3835
- status?: string | undefined;
3836
- };
3654
+ fileName: string;
3655
+ fileKey: string;
3656
+ bucketName: string;
3657
+ fileSize: number;
3658
+ fileUrl: string | null;
3659
+ status?: string | undefined;
3837
3660
  }[];
3838
3661
  }[];
3839
3662
  company: {
@@ -4028,19 +3851,12 @@ export declare const cxLogContract: {
4028
3851
  createdAt: Date;
4029
3852
  updatedAt: Date;
4030
3853
  deletedAt: Date | null;
4031
- customFieldId: string;
4032
- upload: {
4033
- id: string;
4034
- createdAt: Date;
4035
- updatedAt: Date;
4036
- deletedAt: Date | null;
4037
- fileName: string;
4038
- fileKey: string;
4039
- bucketName: string;
4040
- fileSize: number;
4041
- fileUrl: string | null;
4042
- status?: string | undefined;
4043
- };
3854
+ fileName: string;
3855
+ fileKey: string;
3856
+ bucketName: string;
3857
+ fileSize: number;
3858
+ fileUrl: string | null;
3859
+ status?: string | undefined;
4044
3860
  }[];
4045
3861
  }[];
4046
3862
  company: {
@@ -4473,77 +4289,34 @@ export declare const cxLogContract: {
4473
4289
  createdAt: z.ZodDate;
4474
4290
  updatedAt: z.ZodDate;
4475
4291
  deletedAt: z.ZodNullable<z.ZodDate>;
4476
- customFieldId: z.ZodString;
4477
- upload: z.ZodObject<{
4478
- id: z.ZodString;
4479
- createdAt: z.ZodDate;
4480
- updatedAt: z.ZodDate;
4481
- deletedAt: z.ZodNullable<z.ZodDate>;
4482
- bucketName: z.ZodString;
4483
- fileName: z.ZodString;
4484
- fileSize: z.ZodNumber;
4485
- fileKey: z.ZodString;
4486
- fileUrl: z.ZodNullable<z.ZodString>;
4487
- status: z.ZodOptional<z.ZodString>;
4488
- }, "strip", z.ZodTypeAny, {
4489
- id: string;
4490
- createdAt: Date;
4491
- updatedAt: Date;
4492
- deletedAt: Date | null;
4493
- fileName: string;
4494
- fileKey: string;
4495
- bucketName: string;
4496
- fileSize: number;
4497
- fileUrl: string | null;
4498
- status?: string | undefined;
4499
- }, {
4500
- id: string;
4501
- createdAt: Date;
4502
- updatedAt: Date;
4503
- deletedAt: Date | null;
4504
- fileName: string;
4505
- fileKey: string;
4506
- bucketName: string;
4507
- fileSize: number;
4508
- fileUrl: string | null;
4509
- status?: string | undefined;
4510
- }>;
4292
+ bucketName: z.ZodString;
4293
+ fileName: z.ZodString;
4294
+ fileSize: z.ZodNumber;
4295
+ fileKey: z.ZodString;
4296
+ fileUrl: z.ZodNullable<z.ZodString>;
4297
+ status: z.ZodOptional<z.ZodString>;
4511
4298
  }, "strip", z.ZodTypeAny, {
4512
4299
  id: string;
4513
4300
  createdAt: Date;
4514
4301
  updatedAt: Date;
4515
4302
  deletedAt: Date | null;
4516
- customFieldId: string;
4517
- upload: {
4518
- id: string;
4519
- createdAt: Date;
4520
- updatedAt: Date;
4521
- deletedAt: Date | null;
4522
- fileName: string;
4523
- fileKey: string;
4524
- bucketName: string;
4525
- fileSize: number;
4526
- fileUrl: string | null;
4527
- status?: string | undefined;
4528
- };
4303
+ fileName: string;
4304
+ fileKey: string;
4305
+ bucketName: string;
4306
+ fileSize: number;
4307
+ fileUrl: string | null;
4308
+ status?: string | undefined;
4529
4309
  }, {
4530
4310
  id: string;
4531
4311
  createdAt: Date;
4532
4312
  updatedAt: Date;
4533
4313
  deletedAt: Date | null;
4534
- customFieldId: string;
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
- };
4314
+ fileName: string;
4315
+ fileKey: string;
4316
+ bucketName: string;
4317
+ fileSize: number;
4318
+ fileUrl: string | null;
4319
+ status?: string | undefined;
4547
4320
  }>, "many">;
4548
4321
  }, "strip", z.ZodTypeAny, {
4549
4322
  id: string;
@@ -4573,19 +4346,12 @@ export declare const cxLogContract: {
4573
4346
  createdAt: Date;
4574
4347
  updatedAt: Date;
4575
4348
  deletedAt: Date | null;
4576
- customFieldId: string;
4577
- upload: {
4578
- id: string;
4579
- createdAt: Date;
4580
- updatedAt: Date;
4581
- deletedAt: Date | null;
4582
- fileName: string;
4583
- fileKey: string;
4584
- bucketName: string;
4585
- fileSize: number;
4586
- fileUrl: string | null;
4587
- status?: string | undefined;
4588
- };
4349
+ fileName: string;
4350
+ fileKey: string;
4351
+ bucketName: string;
4352
+ fileSize: number;
4353
+ fileUrl: string | null;
4354
+ status?: string | undefined;
4589
4355
  }[];
4590
4356
  }, {
4591
4357
  id: string;
@@ -4615,19 +4381,12 @@ export declare const cxLogContract: {
4615
4381
  createdAt: Date;
4616
4382
  updatedAt: Date;
4617
4383
  deletedAt: Date | null;
4618
- customFieldId: string;
4619
- upload: {
4620
- id: string;
4621
- createdAt: Date;
4622
- updatedAt: Date;
4623
- deletedAt: Date | null;
4624
- fileName: string;
4625
- fileKey: string;
4626
- bucketName: string;
4627
- fileSize: number;
4628
- fileUrl: string | null;
4629
- status?: string | undefined;
4630
- };
4384
+ fileName: string;
4385
+ fileKey: string;
4386
+ bucketName: string;
4387
+ fileSize: number;
4388
+ fileUrl: string | null;
4389
+ status?: string | undefined;
4631
4390
  }[];
4632
4391
  }>, "many">;
4633
4392
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -4770,19 +4529,12 @@ export declare const cxLogContract: {
4770
4529
  createdAt: Date;
4771
4530
  updatedAt: Date;
4772
4531
  deletedAt: Date | null;
4773
- customFieldId: string;
4774
- upload: {
4775
- id: string;
4776
- createdAt: Date;
4777
- updatedAt: Date;
4778
- deletedAt: Date | null;
4779
- fileName: string;
4780
- fileKey: string;
4781
- bucketName: string;
4782
- fileSize: number;
4783
- fileUrl: string | null;
4784
- status?: string | undefined;
4785
- };
4532
+ fileName: string;
4533
+ fileKey: string;
4534
+ bucketName: string;
4535
+ fileSize: number;
4536
+ fileUrl: string | null;
4537
+ status?: string | undefined;
4786
4538
  }[];
4787
4539
  }[];
4788
4540
  company: {
@@ -4873,19 +4625,12 @@ export declare const cxLogContract: {
4873
4625
  createdAt: Date;
4874
4626
  updatedAt: Date;
4875
4627
  deletedAt: Date | null;
4876
- customFieldId: string;
4877
- upload: {
4878
- id: string;
4879
- createdAt: Date;
4880
- updatedAt: Date;
4881
- deletedAt: Date | null;
4882
- fileName: string;
4883
- fileKey: string;
4884
- bucketName: string;
4885
- fileSize: number;
4886
- fileUrl: string | null;
4887
- status?: string | undefined;
4888
- };
4628
+ fileName: string;
4629
+ fileKey: string;
4630
+ bucketName: string;
4631
+ fileSize: number;
4632
+ fileUrl: string | null;
4633
+ status?: string | undefined;
4889
4634
  }[];
4890
4635
  }[];
4891
4636
  company: {
@@ -5191,19 +4936,12 @@ export declare const cxLogContract: {
5191
4936
  createdAt: Date;
5192
4937
  updatedAt: Date;
5193
4938
  deletedAt: Date | null;
5194
- customFieldId: string;
5195
- upload: {
5196
- id: string;
5197
- createdAt: Date;
5198
- updatedAt: Date;
5199
- deletedAt: Date | null;
5200
- fileName: string;
5201
- fileKey: string;
5202
- bucketName: string;
5203
- fileSize: number;
5204
- fileUrl: string | null;
5205
- status?: string | undefined;
5206
- };
4939
+ fileName: string;
4940
+ fileKey: string;
4941
+ bucketName: string;
4942
+ fileSize: number;
4943
+ fileUrl: string | null;
4944
+ status?: string | undefined;
5207
4945
  }[];
5208
4946
  }[];
5209
4947
  company: {
@@ -5386,19 +5124,12 @@ export declare const cxLogContract: {
5386
5124
  createdAt: Date;
5387
5125
  updatedAt: Date;
5388
5126
  deletedAt: Date | null;
5389
- customFieldId: string;
5390
- upload: {
5391
- id: string;
5392
- createdAt: Date;
5393
- updatedAt: Date;
5394
- deletedAt: Date | null;
5395
- fileName: string;
5396
- fileKey: string;
5397
- bucketName: string;
5398
- fileSize: number;
5399
- fileUrl: string | null;
5400
- status?: string | undefined;
5401
- };
5127
+ fileName: string;
5128
+ fileKey: string;
5129
+ bucketName: string;
5130
+ fileSize: number;
5131
+ fileUrl: string | null;
5132
+ status?: string | undefined;
5402
5133
  }[];
5403
5134
  }[];
5404
5135
  company: {
@@ -5639,19 +5370,12 @@ export declare const cxLogContract: {
5639
5370
  createdAt: Date;
5640
5371
  updatedAt: Date;
5641
5372
  deletedAt: Date | null;
5642
- customFieldId: string;
5643
- upload: {
5644
- id: string;
5645
- createdAt: Date;
5646
- updatedAt: Date;
5647
- deletedAt: Date | null;
5648
- fileName: string;
5649
- fileKey: string;
5650
- bucketName: string;
5651
- fileSize: number;
5652
- fileUrl: string | null;
5653
- status?: string | undefined;
5654
- };
5373
+ fileName: string;
5374
+ fileKey: string;
5375
+ bucketName: string;
5376
+ fileSize: number;
5377
+ fileUrl: string | null;
5378
+ status?: string | undefined;
5655
5379
  }[];
5656
5380
  }[];
5657
5381
  company: {
@@ -5880,19 +5604,12 @@ export declare const cxLogContract: {
5880
5604
  createdAt: Date;
5881
5605
  updatedAt: Date;
5882
5606
  deletedAt: Date | null;
5883
- customFieldId: string;
5884
- upload: {
5885
- id: string;
5886
- createdAt: Date;
5887
- updatedAt: Date;
5888
- deletedAt: Date | null;
5889
- fileName: string;
5890
- fileKey: string;
5891
- bucketName: string;
5892
- fileSize: number;
5893
- fileUrl: string | null;
5894
- status?: string | undefined;
5895
- };
5607
+ fileName: string;
5608
+ fileKey: string;
5609
+ bucketName: string;
5610
+ fileSize: number;
5611
+ fileUrl: string | null;
5612
+ status?: string | undefined;
5896
5613
  }[];
5897
5614
  }[];
5898
5615
  company: {
@@ -6075,19 +5792,12 @@ export declare const cxLogContract: {
6075
5792
  createdAt: Date;
6076
5793
  updatedAt: Date;
6077
5794
  deletedAt: Date | null;
6078
- customFieldId: string;
6079
- upload: {
6080
- id: string;
6081
- createdAt: Date;
6082
- updatedAt: Date;
6083
- deletedAt: Date | null;
6084
- fileName: string;
6085
- fileKey: string;
6086
- bucketName: string;
6087
- fileSize: number;
6088
- fileUrl: string | null;
6089
- status?: string | undefined;
6090
- };
5795
+ fileName: string;
5796
+ fileKey: string;
5797
+ bucketName: string;
5798
+ fileSize: number;
5799
+ fileUrl: string | null;
5800
+ status?: string | undefined;
6091
5801
  }[];
6092
5802
  }[];
6093
5803
  company: {
@@ -6328,19 +6038,12 @@ export declare const cxLogContract: {
6328
6038
  createdAt: Date;
6329
6039
  updatedAt: Date;
6330
6040
  deletedAt: Date | null;
6331
- customFieldId: string;
6332
- upload: {
6333
- id: string;
6334
- createdAt: Date;
6335
- updatedAt: Date;
6336
- deletedAt: Date | null;
6337
- fileName: string;
6338
- fileKey: string;
6339
- bucketName: string;
6340
- fileSize: number;
6341
- fileUrl: string | null;
6342
- status?: string | undefined;
6343
- };
6041
+ fileName: string;
6042
+ fileKey: string;
6043
+ bucketName: string;
6044
+ fileSize: number;
6045
+ fileUrl: string | null;
6046
+ status?: string | undefined;
6344
6047
  }[];
6345
6048
  }[];
6346
6049
  company: {
@@ -6575,19 +6278,12 @@ export declare const cxLogContract: {
6575
6278
  createdAt: Date;
6576
6279
  updatedAt: Date;
6577
6280
  deletedAt: Date | null;
6578
- customFieldId: string;
6579
- upload: {
6580
- id: string;
6581
- createdAt: Date;
6582
- updatedAt: Date;
6583
- deletedAt: Date | null;
6584
- fileName: string;
6585
- fileKey: string;
6586
- bucketName: string;
6587
- fileSize: number;
6588
- fileUrl: string | null;
6589
- status?: string | undefined;
6590
- };
6281
+ fileName: string;
6282
+ fileKey: string;
6283
+ bucketName: string;
6284
+ fileSize: number;
6285
+ fileUrl: string | null;
6286
+ status?: string | undefined;
6591
6287
  }[];
6592
6288
  }[];
6593
6289
  company: {
@@ -6770,19 +6466,12 @@ export declare const cxLogContract: {
6770
6466
  createdAt: Date;
6771
6467
  updatedAt: Date;
6772
6468
  deletedAt: Date | null;
6773
- customFieldId: string;
6774
- upload: {
6775
- id: string;
6776
- createdAt: Date;
6777
- updatedAt: Date;
6778
- deletedAt: Date | null;
6779
- fileName: string;
6780
- fileKey: string;
6781
- bucketName: string;
6782
- fileSize: number;
6783
- fileUrl: string | null;
6784
- status?: string | undefined;
6785
- };
6469
+ fileName: string;
6470
+ fileKey: string;
6471
+ bucketName: string;
6472
+ fileSize: number;
6473
+ fileUrl: string | null;
6474
+ status?: string | undefined;
6786
6475
  }[];
6787
6476
  }[];
6788
6477
  company: {
@@ -7023,19 +6712,12 @@ export declare const cxLogContract: {
7023
6712
  createdAt: Date;
7024
6713
  updatedAt: Date;
7025
6714
  deletedAt: Date | null;
7026
- customFieldId: string;
7027
- upload: {
7028
- id: string;
7029
- createdAt: Date;
7030
- updatedAt: Date;
7031
- deletedAt: Date | null;
7032
- fileName: string;
7033
- fileKey: string;
7034
- bucketName: string;
7035
- fileSize: number;
7036
- fileUrl: string | null;
7037
- status?: string | undefined;
7038
- };
6715
+ fileName: string;
6716
+ fileKey: string;
6717
+ bucketName: string;
6718
+ fileSize: number;
6719
+ fileUrl: string | null;
6720
+ status?: string | undefined;
7039
6721
  }[];
7040
6722
  }[];
7041
6723
  company: {
@@ -7270,19 +6952,12 @@ export declare const cxLogContract: {
7270
6952
  createdAt: Date;
7271
6953
  updatedAt: Date;
7272
6954
  deletedAt: Date | null;
7273
- customFieldId: string;
7274
- upload: {
7275
- id: string;
7276
- createdAt: Date;
7277
- updatedAt: Date;
7278
- deletedAt: Date | null;
7279
- fileName: string;
7280
- fileKey: string;
7281
- bucketName: string;
7282
- fileSize: number;
7283
- fileUrl: string | null;
7284
- status?: string | undefined;
7285
- };
6955
+ fileName: string;
6956
+ fileKey: string;
6957
+ bucketName: string;
6958
+ fileSize: number;
6959
+ fileUrl: string | null;
6960
+ status?: string | undefined;
7286
6961
  }[];
7287
6962
  }[];
7288
6963
  company: {
@@ -7465,19 +7140,12 @@ export declare const cxLogContract: {
7465
7140
  createdAt: Date;
7466
7141
  updatedAt: Date;
7467
7142
  deletedAt: Date | null;
7468
- customFieldId: string;
7469
- upload: {
7470
- id: string;
7471
- createdAt: Date;
7472
- updatedAt: Date;
7473
- deletedAt: Date | null;
7474
- fileName: string;
7475
- fileKey: string;
7476
- bucketName: string;
7477
- fileSize: number;
7478
- fileUrl: string | null;
7479
- status?: string | undefined;
7480
- };
7143
+ fileName: string;
7144
+ fileKey: string;
7145
+ bucketName: string;
7146
+ fileSize: number;
7147
+ fileUrl: string | null;
7148
+ status?: string | undefined;
7481
7149
  }[];
7482
7150
  }[];
7483
7151
  company: {
@@ -7718,19 +7386,12 @@ export declare const cxLogContract: {
7718
7386
  createdAt: Date;
7719
7387
  updatedAt: Date;
7720
7388
  deletedAt: Date | null;
7721
- customFieldId: string;
7722
- upload: {
7723
- id: string;
7724
- createdAt: Date;
7725
- updatedAt: Date;
7726
- deletedAt: Date | null;
7727
- fileName: string;
7728
- fileKey: string;
7729
- bucketName: string;
7730
- fileSize: number;
7731
- fileUrl: string | null;
7732
- status?: string | undefined;
7733
- };
7389
+ fileName: string;
7390
+ fileKey: string;
7391
+ bucketName: string;
7392
+ fileSize: number;
7393
+ fileUrl: string | null;
7394
+ status?: string | undefined;
7734
7395
  }[];
7735
7396
  }[];
7736
7397
  company: {