@kl1/contracts 1.0.70 → 1.0.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/dist/index.js +13 -19
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +13 -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 +1496 -1003
  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 +6029 -8827
  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
@@ -576,77 +576,34 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
576
576
  createdAt: z.ZodDate;
577
577
  updatedAt: z.ZodDate;
578
578
  deletedAt: z.ZodNullable<z.ZodDate>;
579
- customFieldId: z.ZodString;
580
- upload: z.ZodObject<{
581
- id: z.ZodString;
582
- createdAt: z.ZodDate;
583
- updatedAt: z.ZodDate;
584
- deletedAt: z.ZodNullable<z.ZodDate>;
585
- bucketName: z.ZodString;
586
- fileName: z.ZodString;
587
- fileSize: z.ZodNumber;
588
- fileKey: z.ZodString;
589
- fileUrl: z.ZodNullable<z.ZodString>;
590
- status: z.ZodOptional<z.ZodString>;
591
- }, "strip", z.ZodTypeAny, {
592
- id: string;
593
- createdAt: Date;
594
- updatedAt: Date;
595
- deletedAt: Date | null;
596
- fileName: string;
597
- fileKey: string;
598
- bucketName: string;
599
- fileSize: number;
600
- fileUrl: string | null;
601
- status?: string | undefined;
602
- }, {
603
- id: string;
604
- createdAt: Date;
605
- updatedAt: Date;
606
- deletedAt: Date | null;
607
- fileName: string;
608
- fileKey: string;
609
- bucketName: string;
610
- fileSize: number;
611
- fileUrl: string | null;
612
- status?: string | undefined;
613
- }>;
579
+ bucketName: z.ZodString;
580
+ fileName: z.ZodString;
581
+ fileSize: z.ZodNumber;
582
+ fileKey: z.ZodString;
583
+ fileUrl: z.ZodNullable<z.ZodString>;
584
+ status: z.ZodOptional<z.ZodString>;
614
585
  }, "strip", z.ZodTypeAny, {
615
586
  id: string;
616
587
  createdAt: Date;
617
588
  updatedAt: Date;
618
589
  deletedAt: Date | null;
619
- customFieldId: string;
620
- upload: {
621
- id: string;
622
- createdAt: Date;
623
- updatedAt: Date;
624
- deletedAt: Date | null;
625
- fileName: string;
626
- fileKey: string;
627
- bucketName: string;
628
- fileSize: number;
629
- fileUrl: string | null;
630
- status?: string | undefined;
631
- };
590
+ fileName: string;
591
+ fileKey: string;
592
+ bucketName: string;
593
+ fileSize: number;
594
+ fileUrl: string | null;
595
+ status?: string | undefined;
632
596
  }, {
633
597
  id: string;
634
598
  createdAt: Date;
635
599
  updatedAt: Date;
636
600
  deletedAt: Date | null;
637
- customFieldId: string;
638
- upload: {
639
- id: string;
640
- createdAt: Date;
641
- updatedAt: Date;
642
- deletedAt: Date | null;
643
- fileName: string;
644
- fileKey: string;
645
- bucketName: string;
646
- fileSize: number;
647
- fileUrl: string | null;
648
- status?: string | undefined;
649
- };
601
+ fileName: string;
602
+ fileKey: string;
603
+ bucketName: string;
604
+ fileSize: number;
605
+ fileUrl: string | null;
606
+ status?: string | undefined;
650
607
  }>, "many">;
651
608
  }, "strip", z.ZodTypeAny, {
652
609
  id: string;
@@ -676,19 +633,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
676
633
  createdAt: Date;
677
634
  updatedAt: Date;
678
635
  deletedAt: Date | null;
679
- customFieldId: string;
680
- upload: {
681
- id: string;
682
- createdAt: Date;
683
- updatedAt: Date;
684
- deletedAt: Date | null;
685
- fileName: string;
686
- fileKey: string;
687
- bucketName: string;
688
- fileSize: number;
689
- fileUrl: string | null;
690
- status?: string | undefined;
691
- };
636
+ fileName: string;
637
+ fileKey: string;
638
+ bucketName: string;
639
+ fileSize: number;
640
+ fileUrl: string | null;
641
+ status?: string | undefined;
692
642
  }[];
693
643
  }, {
694
644
  id: string;
@@ -718,19 +668,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
718
668
  createdAt: Date;
719
669
  updatedAt: Date;
720
670
  deletedAt: Date | null;
721
- customFieldId: string;
722
- upload: {
723
- id: string;
724
- createdAt: Date;
725
- updatedAt: Date;
726
- deletedAt: Date | null;
727
- fileName: string;
728
- fileKey: string;
729
- bucketName: string;
730
- fileSize: number;
731
- fileUrl: string | null;
732
- status?: string | undefined;
733
- };
671
+ fileName: string;
672
+ fileKey: string;
673
+ bucketName: string;
674
+ fileSize: number;
675
+ fileUrl: string | null;
676
+ status?: string | undefined;
734
677
  }[];
735
678
  }>, "many">;
736
679
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -873,19 +816,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
873
816
  createdAt: Date;
874
817
  updatedAt: Date;
875
818
  deletedAt: Date | null;
876
- customFieldId: string;
877
- upload: {
878
- id: string;
879
- createdAt: Date;
880
- updatedAt: Date;
881
- deletedAt: Date | null;
882
- fileName: string;
883
- fileKey: string;
884
- bucketName: string;
885
- fileSize: number;
886
- fileUrl: string | null;
887
- status?: string | undefined;
888
- };
819
+ fileName: string;
820
+ fileKey: string;
821
+ bucketName: string;
822
+ fileSize: number;
823
+ fileUrl: string | null;
824
+ status?: string | undefined;
889
825
  }[];
890
826
  }[];
891
827
  company: {
@@ -976,19 +912,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
976
912
  createdAt: Date;
977
913
  updatedAt: Date;
978
914
  deletedAt: Date | null;
979
- customFieldId: string;
980
- upload: {
981
- id: string;
982
- createdAt: Date;
983
- updatedAt: Date;
984
- deletedAt: Date | null;
985
- fileName: string;
986
- fileKey: string;
987
- bucketName: string;
988
- fileSize: number;
989
- fileUrl: string | null;
990
- status?: string | undefined;
991
- };
915
+ fileName: string;
916
+ fileKey: string;
917
+ bucketName: string;
918
+ fileSize: number;
919
+ fileUrl: string | null;
920
+ status?: string | undefined;
992
921
  }[];
993
922
  }[];
994
923
  company: {
@@ -1092,19 +1021,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1092
1021
  createdAt: Date;
1093
1022
  updatedAt: Date;
1094
1023
  deletedAt: Date | null;
1095
- customFieldId: string;
1096
- upload: {
1097
- id: string;
1098
- createdAt: Date;
1099
- updatedAt: Date;
1100
- deletedAt: Date | null;
1101
- fileName: string;
1102
- fileKey: string;
1103
- bucketName: string;
1104
- fileSize: number;
1105
- fileUrl: string | null;
1106
- status?: string | undefined;
1107
- };
1024
+ fileName: string;
1025
+ fileKey: string;
1026
+ bucketName: string;
1027
+ fileSize: number;
1028
+ fileUrl: string | null;
1029
+ status?: string | undefined;
1108
1030
  }[];
1109
1031
  }[];
1110
1032
  company: {
@@ -1210,19 +1132,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1210
1132
  createdAt: Date;
1211
1133
  updatedAt: Date;
1212
1134
  deletedAt: Date | null;
1213
- customFieldId: string;
1214
- upload: {
1215
- id: string;
1216
- createdAt: Date;
1217
- updatedAt: Date;
1218
- deletedAt: Date | null;
1219
- fileName: string;
1220
- fileKey: string;
1221
- bucketName: string;
1222
- fileSize: number;
1223
- fileUrl: string | null;
1224
- status?: string | undefined;
1225
- };
1135
+ fileName: string;
1136
+ fileKey: string;
1137
+ bucketName: string;
1138
+ fileSize: number;
1139
+ fileUrl: string | null;
1140
+ status?: string | undefined;
1226
1141
  }[];
1227
1142
  }[];
1228
1143
  company: {
@@ -2159,19 +2074,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2159
2074
  createdAt: Date;
2160
2075
  updatedAt: Date;
2161
2076
  deletedAt: Date | null;
2162
- customFieldId: string;
2163
- upload: {
2164
- id: string;
2165
- createdAt: Date;
2166
- updatedAt: Date;
2167
- deletedAt: Date | null;
2168
- fileName: string;
2169
- fileKey: string;
2170
- bucketName: string;
2171
- fileSize: number;
2172
- fileUrl: string | null;
2173
- status?: string | undefined;
2174
- };
2077
+ fileName: string;
2078
+ fileKey: string;
2079
+ bucketName: string;
2080
+ fileSize: number;
2081
+ fileUrl: string | null;
2082
+ status?: string | undefined;
2175
2083
  }[];
2176
2084
  }[];
2177
2085
  company: {
@@ -2444,19 +2352,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2444
2352
  createdAt: Date;
2445
2353
  updatedAt: Date;
2446
2354
  deletedAt: Date | null;
2447
- customFieldId: string;
2448
- upload: {
2449
- id: string;
2450
- createdAt: Date;
2451
- updatedAt: Date;
2452
- deletedAt: Date | null;
2453
- fileName: string;
2454
- fileKey: string;
2455
- bucketName: string;
2456
- fileSize: number;
2457
- fileUrl: string | null;
2458
- status?: string | undefined;
2459
- };
2355
+ fileName: string;
2356
+ fileKey: string;
2357
+ bucketName: string;
2358
+ fileSize: number;
2359
+ fileUrl: string | null;
2360
+ status?: string | undefined;
2460
2361
  }[];
2461
2362
  }[];
2462
2363
  company: {
@@ -2928,77 +2829,34 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2928
2829
  createdAt: z.ZodDate;
2929
2830
  updatedAt: z.ZodDate;
2930
2831
  deletedAt: z.ZodNullable<z.ZodDate>;
2931
- customFieldId: z.ZodString;
2932
- upload: z.ZodObject<{
2933
- id: z.ZodString;
2934
- createdAt: z.ZodDate;
2935
- updatedAt: z.ZodDate;
2936
- deletedAt: z.ZodNullable<z.ZodDate>;
2937
- bucketName: z.ZodString;
2938
- fileName: z.ZodString;
2939
- fileSize: z.ZodNumber;
2940
- fileKey: z.ZodString;
2941
- fileUrl: z.ZodNullable<z.ZodString>;
2942
- status: z.ZodOptional<z.ZodString>;
2943
- }, "strip", z.ZodTypeAny, {
2944
- id: string;
2945
- createdAt: Date;
2946
- updatedAt: Date;
2947
- deletedAt: Date | null;
2948
- fileName: string;
2949
- fileKey: string;
2950
- bucketName: string;
2951
- fileSize: number;
2952
- fileUrl: string | null;
2953
- status?: string | undefined;
2954
- }, {
2955
- id: string;
2956
- createdAt: Date;
2957
- updatedAt: Date;
2958
- deletedAt: Date | null;
2959
- fileName: string;
2960
- fileKey: string;
2961
- bucketName: string;
2962
- fileSize: number;
2963
- fileUrl: string | null;
2964
- status?: string | undefined;
2965
- }>;
2832
+ bucketName: z.ZodString;
2833
+ fileName: z.ZodString;
2834
+ fileSize: z.ZodNumber;
2835
+ fileKey: z.ZodString;
2836
+ fileUrl: z.ZodNullable<z.ZodString>;
2837
+ status: z.ZodOptional<z.ZodString>;
2966
2838
  }, "strip", z.ZodTypeAny, {
2967
2839
  id: string;
2968
2840
  createdAt: Date;
2969
2841
  updatedAt: Date;
2970
2842
  deletedAt: Date | null;
2971
- customFieldId: string;
2972
- upload: {
2973
- id: string;
2974
- createdAt: Date;
2975
- updatedAt: Date;
2976
- deletedAt: Date | null;
2977
- fileName: string;
2978
- fileKey: string;
2979
- bucketName: string;
2980
- fileSize: number;
2981
- fileUrl: string | null;
2982
- status?: string | undefined;
2983
- };
2843
+ fileName: string;
2844
+ fileKey: string;
2845
+ bucketName: string;
2846
+ fileSize: number;
2847
+ fileUrl: string | null;
2848
+ status?: string | undefined;
2984
2849
  }, {
2985
2850
  id: string;
2986
2851
  createdAt: Date;
2987
2852
  updatedAt: Date;
2988
2853
  deletedAt: Date | null;
2989
- customFieldId: string;
2990
- upload: {
2991
- id: string;
2992
- createdAt: Date;
2993
- updatedAt: Date;
2994
- deletedAt: Date | null;
2995
- fileName: string;
2996
- fileKey: string;
2997
- bucketName: string;
2998
- fileSize: number;
2999
- fileUrl: string | null;
3000
- status?: string | undefined;
3001
- };
2854
+ fileName: string;
2855
+ fileKey: string;
2856
+ bucketName: string;
2857
+ fileSize: number;
2858
+ fileUrl: string | null;
2859
+ status?: string | undefined;
3002
2860
  }>, "many">;
3003
2861
  }, "strip", z.ZodTypeAny, {
3004
2862
  id: string;
@@ -3028,19 +2886,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3028
2886
  createdAt: Date;
3029
2887
  updatedAt: Date;
3030
2888
  deletedAt: Date | null;
3031
- customFieldId: string;
3032
- upload: {
3033
- id: string;
3034
- createdAt: Date;
3035
- updatedAt: Date;
3036
- deletedAt: Date | null;
3037
- fileName: string;
3038
- fileKey: string;
3039
- bucketName: string;
3040
- fileSize: number;
3041
- fileUrl: string | null;
3042
- status?: string | undefined;
3043
- };
2889
+ fileName: string;
2890
+ fileKey: string;
2891
+ bucketName: string;
2892
+ fileSize: number;
2893
+ fileUrl: string | null;
2894
+ status?: string | undefined;
3044
2895
  }[];
3045
2896
  }, {
3046
2897
  id: string;
@@ -3070,19 +2921,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3070
2921
  createdAt: Date;
3071
2922
  updatedAt: Date;
3072
2923
  deletedAt: Date | null;
3073
- customFieldId: string;
3074
- upload: {
3075
- id: string;
3076
- createdAt: Date;
3077
- updatedAt: Date;
3078
- deletedAt: Date | null;
3079
- fileName: string;
3080
- fileKey: string;
3081
- bucketName: string;
3082
- fileSize: number;
3083
- fileUrl: string | null;
3084
- status?: string | undefined;
3085
- };
2924
+ fileName: string;
2925
+ fileKey: string;
2926
+ bucketName: string;
2927
+ fileSize: number;
2928
+ fileUrl: string | null;
2929
+ status?: string | undefined;
3086
2930
  }[];
3087
2931
  }>, "many">;
3088
2932
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -3225,19 +3069,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3225
3069
  createdAt: Date;
3226
3070
  updatedAt: Date;
3227
3071
  deletedAt: Date | null;
3228
- customFieldId: string;
3229
- upload: {
3230
- id: string;
3231
- createdAt: Date;
3232
- updatedAt: Date;
3233
- deletedAt: Date | null;
3234
- fileName: string;
3235
- fileKey: string;
3236
- bucketName: string;
3237
- fileSize: number;
3238
- fileUrl: string | null;
3239
- status?: string | undefined;
3240
- };
3072
+ fileName: string;
3073
+ fileKey: string;
3074
+ bucketName: string;
3075
+ fileSize: number;
3076
+ fileUrl: string | null;
3077
+ status?: string | undefined;
3241
3078
  }[];
3242
3079
  }[];
3243
3080
  company: {
@@ -3328,19 +3165,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3328
3165
  createdAt: Date;
3329
3166
  updatedAt: Date;
3330
3167
  deletedAt: Date | null;
3331
- customFieldId: string;
3332
- upload: {
3333
- id: string;
3334
- createdAt: Date;
3335
- updatedAt: Date;
3336
- deletedAt: Date | null;
3337
- fileName: string;
3338
- fileKey: string;
3339
- bucketName: string;
3340
- fileSize: number;
3341
- fileUrl: string | null;
3342
- status?: string | undefined;
3343
- };
3168
+ fileName: string;
3169
+ fileKey: string;
3170
+ bucketName: string;
3171
+ fileSize: number;
3172
+ fileUrl: string | null;
3173
+ status?: string | undefined;
3344
3174
  }[];
3345
3175
  }[];
3346
3176
  company: {
@@ -3858,19 +3688,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3858
3688
  createdAt: Date;
3859
3689
  updatedAt: Date;
3860
3690
  deletedAt: Date | null;
3861
- customFieldId: string;
3862
- upload: {
3863
- id: string;
3864
- createdAt: Date;
3865
- updatedAt: Date;
3866
- deletedAt: Date | null;
3867
- fileName: string;
3868
- fileKey: string;
3869
- bucketName: string;
3870
- fileSize: number;
3871
- fileUrl: string | null;
3872
- status?: string | undefined;
3873
- };
3691
+ fileName: string;
3692
+ fileKey: string;
3693
+ bucketName: string;
3694
+ fileSize: number;
3695
+ fileUrl: string | null;
3696
+ status?: string | undefined;
3874
3697
  }[];
3875
3698
  }[];
3876
3699
  company: {
@@ -4065,19 +3888,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4065
3888
  createdAt: Date;
4066
3889
  updatedAt: Date;
4067
3890
  deletedAt: Date | null;
4068
- customFieldId: string;
4069
- upload: {
4070
- id: string;
4071
- createdAt: Date;
4072
- updatedAt: Date;
4073
- deletedAt: Date | null;
4074
- fileName: string;
4075
- fileKey: string;
4076
- bucketName: string;
4077
- fileSize: number;
4078
- fileUrl: string | null;
4079
- status?: string | undefined;
4080
- };
3891
+ fileName: string;
3892
+ fileKey: string;
3893
+ bucketName: string;
3894
+ fileSize: number;
3895
+ fileUrl: string | null;
3896
+ status?: string | undefined;
4081
3897
  }[];
4082
3898
  }[];
4083
3899
  company: {
@@ -4510,77 +4326,34 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4510
4326
  createdAt: z.ZodDate;
4511
4327
  updatedAt: z.ZodDate;
4512
4328
  deletedAt: z.ZodNullable<z.ZodDate>;
4513
- customFieldId: z.ZodString;
4514
- upload: z.ZodObject<{
4515
- id: z.ZodString;
4516
- createdAt: z.ZodDate;
4517
- updatedAt: z.ZodDate;
4518
- deletedAt: z.ZodNullable<z.ZodDate>;
4519
- bucketName: z.ZodString;
4520
- fileName: z.ZodString;
4521
- fileSize: z.ZodNumber;
4522
- fileKey: z.ZodString;
4523
- fileUrl: z.ZodNullable<z.ZodString>;
4524
- status: z.ZodOptional<z.ZodString>;
4525
- }, "strip", z.ZodTypeAny, {
4526
- id: string;
4527
- createdAt: Date;
4528
- updatedAt: Date;
4529
- deletedAt: Date | null;
4530
- fileName: string;
4531
- fileKey: string;
4532
- bucketName: string;
4533
- fileSize: number;
4534
- fileUrl: string | null;
4535
- status?: string | undefined;
4536
- }, {
4537
- id: string;
4538
- createdAt: Date;
4539
- updatedAt: Date;
4540
- deletedAt: Date | null;
4541
- fileName: string;
4542
- fileKey: string;
4543
- bucketName: string;
4544
- fileSize: number;
4545
- fileUrl: string | null;
4546
- status?: string | undefined;
4547
- }>;
4329
+ bucketName: z.ZodString;
4330
+ fileName: z.ZodString;
4331
+ fileSize: z.ZodNumber;
4332
+ fileKey: z.ZodString;
4333
+ fileUrl: z.ZodNullable<z.ZodString>;
4334
+ status: z.ZodOptional<z.ZodString>;
4548
4335
  }, "strip", z.ZodTypeAny, {
4549
4336
  id: string;
4550
4337
  createdAt: Date;
4551
4338
  updatedAt: Date;
4552
4339
  deletedAt: Date | null;
4553
- customFieldId: string;
4554
- upload: {
4555
- id: string;
4556
- createdAt: Date;
4557
- updatedAt: Date;
4558
- deletedAt: Date | null;
4559
- fileName: string;
4560
- fileKey: string;
4561
- bucketName: string;
4562
- fileSize: number;
4563
- fileUrl: string | null;
4564
- status?: string | undefined;
4565
- };
4340
+ fileName: string;
4341
+ fileKey: string;
4342
+ bucketName: string;
4343
+ fileSize: number;
4344
+ fileUrl: string | null;
4345
+ status?: string | undefined;
4566
4346
  }, {
4567
4347
  id: string;
4568
4348
  createdAt: Date;
4569
4349
  updatedAt: Date;
4570
4350
  deletedAt: Date | null;
4571
- customFieldId: string;
4572
- upload: {
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
+ fileName: string;
4352
+ fileKey: string;
4353
+ bucketName: string;
4354
+ fileSize: number;
4355
+ fileUrl: string | null;
4356
+ status?: string | undefined;
4584
4357
  }>, "many">;
4585
4358
  }, "strip", z.ZodTypeAny, {
4586
4359
  id: string;
@@ -4610,19 +4383,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4610
4383
  createdAt: Date;
4611
4384
  updatedAt: Date;
4612
4385
  deletedAt: Date | null;
4613
- customFieldId: string;
4614
- upload: {
4615
- id: string;
4616
- createdAt: Date;
4617
- updatedAt: Date;
4618
- deletedAt: Date | null;
4619
- fileName: string;
4620
- fileKey: string;
4621
- bucketName: string;
4622
- fileSize: number;
4623
- fileUrl: string | null;
4624
- status?: string | undefined;
4625
- };
4386
+ fileName: string;
4387
+ fileKey: string;
4388
+ bucketName: string;
4389
+ fileSize: number;
4390
+ fileUrl: string | null;
4391
+ status?: string | undefined;
4626
4392
  }[];
4627
4393
  }, {
4628
4394
  id: string;
@@ -4652,19 +4418,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4652
4418
  createdAt: Date;
4653
4419
  updatedAt: Date;
4654
4420
  deletedAt: Date | null;
4655
- customFieldId: string;
4656
- upload: {
4657
- id: string;
4658
- createdAt: Date;
4659
- updatedAt: Date;
4660
- deletedAt: Date | null;
4661
- fileName: string;
4662
- fileKey: string;
4663
- bucketName: string;
4664
- fileSize: number;
4665
- fileUrl: string | null;
4666
- status?: string | undefined;
4667
- };
4421
+ fileName: string;
4422
+ fileKey: string;
4423
+ bucketName: string;
4424
+ fileSize: number;
4425
+ fileUrl: string | null;
4426
+ status?: string | undefined;
4668
4427
  }[];
4669
4428
  }>, "many">;
4670
4429
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -4807,19 +4566,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4807
4566
  createdAt: Date;
4808
4567
  updatedAt: Date;
4809
4568
  deletedAt: Date | null;
4810
- customFieldId: string;
4811
- upload: {
4812
- id: string;
4813
- createdAt: Date;
4814
- updatedAt: Date;
4815
- deletedAt: Date | null;
4816
- fileName: string;
4817
- fileKey: string;
4818
- bucketName: string;
4819
- fileSize: number;
4820
- fileUrl: string | null;
4821
- status?: string | undefined;
4822
- };
4569
+ fileName: string;
4570
+ fileKey: string;
4571
+ bucketName: string;
4572
+ fileSize: number;
4573
+ fileUrl: string | null;
4574
+ status?: string | undefined;
4823
4575
  }[];
4824
4576
  }[];
4825
4577
  company: {
@@ -4910,19 +4662,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4910
4662
  createdAt: Date;
4911
4663
  updatedAt: Date;
4912
4664
  deletedAt: Date | null;
4913
- customFieldId: string;
4914
- upload: {
4915
- id: string;
4916
- createdAt: Date;
4917
- updatedAt: Date;
4918
- deletedAt: Date | null;
4919
- fileName: string;
4920
- fileKey: string;
4921
- bucketName: string;
4922
- fileSize: number;
4923
- fileUrl: string | null;
4924
- status?: string | undefined;
4925
- };
4665
+ fileName: string;
4666
+ fileKey: string;
4667
+ bucketName: string;
4668
+ fileSize: number;
4669
+ fileUrl: string | null;
4670
+ status?: string | undefined;
4926
4671
  }[];
4927
4672
  }[];
4928
4673
  company: {
@@ -5228,19 +4973,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
5228
4973
  createdAt: Date;
5229
4974
  updatedAt: Date;
5230
4975
  deletedAt: Date | null;
5231
- customFieldId: string;
5232
- upload: {
5233
- id: string;
5234
- createdAt: Date;
5235
- updatedAt: Date;
5236
- deletedAt: Date | null;
5237
- fileName: string;
5238
- fileKey: string;
5239
- bucketName: string;
5240
- fileSize: number;
5241
- fileUrl: string | null;
5242
- status?: string | undefined;
5243
- };
4976
+ fileName: string;
4977
+ fileKey: string;
4978
+ bucketName: string;
4979
+ fileSize: number;
4980
+ fileUrl: string | null;
4981
+ status?: string | undefined;
5244
4982
  }[];
5245
4983
  }[];
5246
4984
  company: {
@@ -5423,19 +5161,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
5423
5161
  createdAt: Date;
5424
5162
  updatedAt: Date;
5425
5163
  deletedAt: Date | null;
5426
- customFieldId: string;
5427
- upload: {
5428
- id: string;
5429
- createdAt: Date;
5430
- updatedAt: Date;
5431
- deletedAt: Date | null;
5432
- fileName: string;
5433
- fileKey: string;
5434
- bucketName: string;
5435
- fileSize: number;
5436
- fileUrl: string | null;
5437
- status?: string | undefined;
5438
- };
5164
+ fileName: string;
5165
+ fileKey: string;
5166
+ bucketName: string;
5167
+ fileSize: number;
5168
+ fileUrl: string | null;
5169
+ status?: string | undefined;
5439
5170
  }[];
5440
5171
  }[];
5441
5172
  company: {
@@ -5676,19 +5407,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
5676
5407
  createdAt: Date;
5677
5408
  updatedAt: Date;
5678
5409
  deletedAt: Date | null;
5679
- customFieldId: string;
5680
- upload: {
5681
- id: string;
5682
- createdAt: Date;
5683
- updatedAt: Date;
5684
- deletedAt: Date | null;
5685
- fileName: string;
5686
- fileKey: string;
5687
- bucketName: string;
5688
- fileSize: number;
5689
- fileUrl: string | null;
5690
- status?: string | undefined;
5691
- };
5410
+ fileName: string;
5411
+ fileKey: string;
5412
+ bucketName: string;
5413
+ fileSize: number;
5414
+ fileUrl: string | null;
5415
+ status?: string | undefined;
5692
5416
  }[];
5693
5417
  }[];
5694
5418
  company: {
@@ -5917,19 +5641,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
5917
5641
  createdAt: Date;
5918
5642
  updatedAt: Date;
5919
5643
  deletedAt: Date | null;
5920
- customFieldId: string;
5921
- upload: {
5922
- id: string;
5923
- createdAt: Date;
5924
- updatedAt: Date;
5925
- deletedAt: Date | null;
5926
- fileName: string;
5927
- fileKey: string;
5928
- bucketName: string;
5929
- fileSize: number;
5930
- fileUrl: string | null;
5931
- status?: string | undefined;
5932
- };
5644
+ fileName: string;
5645
+ fileKey: string;
5646
+ bucketName: string;
5647
+ fileSize: number;
5648
+ fileUrl: string | null;
5649
+ status?: string | undefined;
5933
5650
  }[];
5934
5651
  }[];
5935
5652
  company: {
@@ -6112,19 +5829,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
6112
5829
  createdAt: Date;
6113
5830
  updatedAt: Date;
6114
5831
  deletedAt: Date | null;
6115
- customFieldId: string;
6116
- upload: {
6117
- id: string;
6118
- createdAt: Date;
6119
- updatedAt: Date;
6120
- deletedAt: Date | null;
6121
- fileName: string;
6122
- fileKey: string;
6123
- bucketName: string;
6124
- fileSize: number;
6125
- fileUrl: string | null;
6126
- status?: string | undefined;
6127
- };
5832
+ fileName: string;
5833
+ fileKey: string;
5834
+ bucketName: string;
5835
+ fileSize: number;
5836
+ fileUrl: string | null;
5837
+ status?: string | undefined;
6128
5838
  }[];
6129
5839
  }[];
6130
5840
  company: {
@@ -6365,19 +6075,12 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
6365
6075
  createdAt: Date;
6366
6076
  updatedAt: Date;
6367
6077
  deletedAt: Date | null;
6368
- customFieldId: string;
6369
- upload: {
6370
- id: string;
6371
- createdAt: Date;
6372
- updatedAt: Date;
6373
- deletedAt: Date | null;
6374
- fileName: string;
6375
- fileKey: string;
6376
- bucketName: string;
6377
- fileSize: number;
6378
- fileUrl: string | null;
6379
- status?: string | undefined;
6380
- };
6078
+ fileName: string;
6079
+ fileKey: string;
6080
+ bucketName: string;
6081
+ fileSize: number;
6082
+ fileUrl: string | null;
6083
+ status?: string | undefined;
6381
6084
  }[];
6382
6085
  }[];
6383
6086
  company: {