@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
@@ -566,77 +566,34 @@ export declare const contactContract: {
566
566
  createdAt: z.ZodDate;
567
567
  updatedAt: z.ZodDate;
568
568
  deletedAt: z.ZodNullable<z.ZodDate>;
569
- customFieldId: z.ZodString;
570
- upload: z.ZodObject<{
571
- id: z.ZodString;
572
- createdAt: z.ZodDate;
573
- updatedAt: z.ZodDate;
574
- deletedAt: z.ZodNullable<z.ZodDate>;
575
- bucketName: z.ZodString;
576
- fileName: z.ZodString;
577
- fileSize: z.ZodNumber;
578
- fileKey: z.ZodString;
579
- fileUrl: z.ZodNullable<z.ZodString>;
580
- status: z.ZodOptional<z.ZodString>;
581
- }, "strip", z.ZodTypeAny, {
582
- id: string;
583
- createdAt: Date;
584
- updatedAt: Date;
585
- deletedAt: Date | null;
586
- fileName: string;
587
- fileKey: string;
588
- bucketName: string;
589
- fileSize: number;
590
- fileUrl: string | null;
591
- status?: string | undefined;
592
- }, {
593
- id: string;
594
- createdAt: Date;
595
- updatedAt: Date;
596
- deletedAt: Date | null;
597
- fileName: string;
598
- fileKey: string;
599
- bucketName: string;
600
- fileSize: number;
601
- fileUrl: string | null;
602
- status?: string | undefined;
603
- }>;
569
+ bucketName: z.ZodString;
570
+ fileName: z.ZodString;
571
+ fileSize: z.ZodNumber;
572
+ fileKey: z.ZodString;
573
+ fileUrl: z.ZodNullable<z.ZodString>;
574
+ status: z.ZodOptional<z.ZodString>;
604
575
  }, "strip", z.ZodTypeAny, {
605
576
  id: string;
606
577
  createdAt: Date;
607
578
  updatedAt: Date;
608
579
  deletedAt: Date | null;
609
- customFieldId: string;
610
- upload: {
611
- id: string;
612
- createdAt: Date;
613
- updatedAt: Date;
614
- deletedAt: Date | null;
615
- fileName: string;
616
- fileKey: string;
617
- bucketName: string;
618
- fileSize: number;
619
- fileUrl: string | null;
620
- status?: string | undefined;
621
- };
580
+ fileName: string;
581
+ fileKey: string;
582
+ bucketName: string;
583
+ fileSize: number;
584
+ fileUrl: string | null;
585
+ status?: string | undefined;
622
586
  }, {
623
587
  id: string;
624
588
  createdAt: Date;
625
589
  updatedAt: Date;
626
590
  deletedAt: Date | null;
627
- customFieldId: string;
628
- upload: {
629
- id: string;
630
- createdAt: Date;
631
- updatedAt: Date;
632
- deletedAt: Date | null;
633
- fileName: string;
634
- fileKey: string;
635
- bucketName: string;
636
- fileSize: number;
637
- fileUrl: string | null;
638
- status?: string | undefined;
639
- };
591
+ fileName: string;
592
+ fileKey: string;
593
+ bucketName: string;
594
+ fileSize: number;
595
+ fileUrl: string | null;
596
+ status?: string | undefined;
640
597
  }>, "many">;
641
598
  }, "strip", z.ZodTypeAny, {
642
599
  id: string;
@@ -666,19 +623,12 @@ export declare const contactContract: {
666
623
  createdAt: Date;
667
624
  updatedAt: Date;
668
625
  deletedAt: Date | null;
669
- customFieldId: string;
670
- upload: {
671
- id: string;
672
- createdAt: Date;
673
- updatedAt: Date;
674
- deletedAt: Date | null;
675
- fileName: string;
676
- fileKey: string;
677
- bucketName: string;
678
- fileSize: number;
679
- fileUrl: string | null;
680
- status?: string | undefined;
681
- };
626
+ fileName: string;
627
+ fileKey: string;
628
+ bucketName: string;
629
+ fileSize: number;
630
+ fileUrl: string | null;
631
+ status?: string | undefined;
682
632
  }[];
683
633
  }, {
684
634
  id: string;
@@ -708,19 +658,12 @@ export declare const contactContract: {
708
658
  createdAt: Date;
709
659
  updatedAt: Date;
710
660
  deletedAt: Date | null;
711
- customFieldId: string;
712
- upload: {
713
- id: string;
714
- createdAt: Date;
715
- updatedAt: Date;
716
- deletedAt: Date | null;
717
- fileName: string;
718
- fileKey: string;
719
- bucketName: string;
720
- fileSize: number;
721
- fileUrl: string | null;
722
- status?: string | undefined;
723
- };
661
+ fileName: string;
662
+ fileKey: string;
663
+ bucketName: string;
664
+ fileSize: number;
665
+ fileUrl: string | null;
666
+ status?: string | undefined;
724
667
  }[];
725
668
  }>, "many">;
726
669
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -863,19 +806,12 @@ export declare const contactContract: {
863
806
  createdAt: Date;
864
807
  updatedAt: Date;
865
808
  deletedAt: Date | null;
866
- customFieldId: string;
867
- upload: {
868
- id: string;
869
- createdAt: Date;
870
- updatedAt: Date;
871
- deletedAt: Date | null;
872
- fileName: string;
873
- fileKey: string;
874
- bucketName: string;
875
- fileSize: number;
876
- fileUrl: string | null;
877
- status?: string | undefined;
878
- };
809
+ fileName: string;
810
+ fileKey: string;
811
+ bucketName: string;
812
+ fileSize: number;
813
+ fileUrl: string | null;
814
+ status?: string | undefined;
879
815
  }[];
880
816
  }[];
881
817
  company: {
@@ -966,19 +902,12 @@ export declare const contactContract: {
966
902
  createdAt: Date;
967
903
  updatedAt: Date;
968
904
  deletedAt: Date | null;
969
- customFieldId: string;
970
- upload: {
971
- id: string;
972
- createdAt: Date;
973
- updatedAt: Date;
974
- deletedAt: Date | null;
975
- fileName: string;
976
- fileKey: string;
977
- bucketName: string;
978
- fileSize: number;
979
- fileUrl: string | null;
980
- status?: string | undefined;
981
- };
905
+ fileName: string;
906
+ fileKey: string;
907
+ bucketName: string;
908
+ fileSize: number;
909
+ fileUrl: string | null;
910
+ status?: string | undefined;
982
911
  }[];
983
912
  }[];
984
913
  company: {
@@ -1071,19 +1000,12 @@ export declare const contactContract: {
1071
1000
  createdAt: Date;
1072
1001
  updatedAt: Date;
1073
1002
  deletedAt: Date | null;
1074
- customFieldId: string;
1075
- upload: {
1076
- id: string;
1077
- createdAt: Date;
1078
- updatedAt: Date;
1079
- deletedAt: Date | null;
1080
- fileName: string;
1081
- fileKey: string;
1082
- bucketName: string;
1083
- fileSize: number;
1084
- fileUrl: string | null;
1085
- status?: string | undefined;
1086
- };
1003
+ fileName: string;
1004
+ fileKey: string;
1005
+ bucketName: string;
1006
+ fileSize: number;
1007
+ fileUrl: string | null;
1008
+ status?: string | undefined;
1087
1009
  }[];
1088
1010
  }[];
1089
1011
  company: {
@@ -1181,19 +1103,12 @@ export declare const contactContract: {
1181
1103
  createdAt: Date;
1182
1104
  updatedAt: Date;
1183
1105
  deletedAt: Date | null;
1184
- customFieldId: string;
1185
- upload: {
1186
- id: string;
1187
- createdAt: Date;
1188
- updatedAt: Date;
1189
- deletedAt: Date | null;
1190
- fileName: string;
1191
- fileKey: string;
1192
- bucketName: string;
1193
- fileSize: number;
1194
- fileUrl: string | null;
1195
- status?: string | undefined;
1196
- };
1106
+ fileName: string;
1107
+ fileKey: string;
1108
+ bucketName: string;
1109
+ fileSize: number;
1110
+ fileUrl: string | null;
1111
+ status?: string | undefined;
1197
1112
  }[];
1198
1113
  }[];
1199
1114
  company: {
@@ -1638,77 +1553,34 @@ export declare const contactContract: {
1638
1553
  createdAt: z.ZodDate;
1639
1554
  updatedAt: z.ZodDate;
1640
1555
  deletedAt: z.ZodNullable<z.ZodDate>;
1641
- customFieldId: z.ZodString;
1642
- upload: z.ZodObject<{
1643
- id: z.ZodString;
1644
- createdAt: z.ZodDate;
1645
- updatedAt: z.ZodDate;
1646
- deletedAt: z.ZodNullable<z.ZodDate>;
1647
- bucketName: z.ZodString;
1648
- fileName: z.ZodString;
1649
- fileSize: z.ZodNumber;
1650
- fileKey: z.ZodString;
1651
- fileUrl: z.ZodNullable<z.ZodString>;
1652
- status: z.ZodOptional<z.ZodString>;
1653
- }, "strip", z.ZodTypeAny, {
1654
- id: string;
1655
- createdAt: Date;
1656
- updatedAt: Date;
1657
- deletedAt: Date | null;
1658
- fileName: string;
1659
- fileKey: string;
1660
- bucketName: string;
1661
- fileSize: number;
1662
- fileUrl: string | null;
1663
- status?: string | undefined;
1664
- }, {
1665
- id: string;
1666
- createdAt: Date;
1667
- updatedAt: Date;
1668
- deletedAt: Date | null;
1669
- fileName: string;
1670
- fileKey: string;
1671
- bucketName: string;
1672
- fileSize: number;
1673
- fileUrl: string | null;
1674
- status?: string | undefined;
1675
- }>;
1556
+ bucketName: z.ZodString;
1557
+ fileName: z.ZodString;
1558
+ fileSize: z.ZodNumber;
1559
+ fileKey: z.ZodString;
1560
+ fileUrl: z.ZodNullable<z.ZodString>;
1561
+ status: z.ZodOptional<z.ZodString>;
1676
1562
  }, "strip", z.ZodTypeAny, {
1677
1563
  id: string;
1678
1564
  createdAt: Date;
1679
1565
  updatedAt: Date;
1680
1566
  deletedAt: Date | null;
1681
- customFieldId: string;
1682
- upload: {
1683
- id: string;
1684
- createdAt: Date;
1685
- updatedAt: Date;
1686
- deletedAt: Date | null;
1687
- fileName: string;
1688
- fileKey: string;
1689
- bucketName: string;
1690
- fileSize: number;
1691
- fileUrl: string | null;
1692
- status?: string | undefined;
1693
- };
1567
+ fileName: string;
1568
+ fileKey: string;
1569
+ bucketName: string;
1570
+ fileSize: number;
1571
+ fileUrl: string | null;
1572
+ status?: string | undefined;
1694
1573
  }, {
1695
1574
  id: string;
1696
1575
  createdAt: Date;
1697
1576
  updatedAt: Date;
1698
1577
  deletedAt: Date | null;
1699
- customFieldId: string;
1700
- upload: {
1701
- id: string;
1702
- createdAt: Date;
1703
- updatedAt: Date;
1704
- deletedAt: Date | null;
1705
- fileName: string;
1706
- fileKey: string;
1707
- bucketName: string;
1708
- fileSize: number;
1709
- fileUrl: string | null;
1710
- status?: string | undefined;
1711
- };
1578
+ fileName: string;
1579
+ fileKey: string;
1580
+ bucketName: string;
1581
+ fileSize: number;
1582
+ fileUrl: string | null;
1583
+ status?: string | undefined;
1712
1584
  }>, "many">;
1713
1585
  }, "strip", z.ZodTypeAny, {
1714
1586
  id: string;
@@ -1738,19 +1610,12 @@ export declare const contactContract: {
1738
1610
  createdAt: Date;
1739
1611
  updatedAt: Date;
1740
1612
  deletedAt: Date | null;
1741
- customFieldId: string;
1742
- upload: {
1743
- id: string;
1744
- createdAt: Date;
1745
- updatedAt: Date;
1746
- deletedAt: Date | null;
1747
- fileName: string;
1748
- fileKey: string;
1749
- bucketName: string;
1750
- fileSize: number;
1751
- fileUrl: string | null;
1752
- status?: string | undefined;
1753
- };
1613
+ fileName: string;
1614
+ fileKey: string;
1615
+ bucketName: string;
1616
+ fileSize: number;
1617
+ fileUrl: string | null;
1618
+ status?: string | undefined;
1754
1619
  }[];
1755
1620
  }, {
1756
1621
  id: string;
@@ -1780,19 +1645,12 @@ export declare const contactContract: {
1780
1645
  createdAt: Date;
1781
1646
  updatedAt: Date;
1782
1647
  deletedAt: Date | null;
1783
- customFieldId: string;
1784
- upload: {
1785
- id: string;
1786
- createdAt: Date;
1787
- updatedAt: Date;
1788
- deletedAt: Date | null;
1789
- fileName: string;
1790
- fileKey: string;
1791
- bucketName: string;
1792
- fileSize: number;
1793
- fileUrl: string | null;
1794
- status?: string | undefined;
1795
- };
1648
+ fileName: string;
1649
+ fileKey: string;
1650
+ bucketName: string;
1651
+ fileSize: number;
1652
+ fileUrl: string | null;
1653
+ status?: string | undefined;
1796
1654
  }[];
1797
1655
  }>, "many">;
1798
1656
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -1935,19 +1793,12 @@ export declare const contactContract: {
1935
1793
  createdAt: Date;
1936
1794
  updatedAt: Date;
1937
1795
  deletedAt: Date | null;
1938
- customFieldId: string;
1939
- upload: {
1940
- id: string;
1941
- createdAt: Date;
1942
- updatedAt: Date;
1943
- deletedAt: Date | null;
1944
- fileName: string;
1945
- fileKey: string;
1946
- bucketName: string;
1947
- fileSize: number;
1948
- fileUrl: string | null;
1949
- status?: string | undefined;
1950
- };
1796
+ fileName: string;
1797
+ fileKey: string;
1798
+ bucketName: string;
1799
+ fileSize: number;
1800
+ fileUrl: string | null;
1801
+ status?: string | undefined;
1951
1802
  }[];
1952
1803
  }[];
1953
1804
  company: {
@@ -2038,19 +1889,12 @@ export declare const contactContract: {
2038
1889
  createdAt: Date;
2039
1890
  updatedAt: Date;
2040
1891
  deletedAt: Date | null;
2041
- customFieldId: string;
2042
- upload: {
2043
- id: string;
2044
- createdAt: Date;
2045
- updatedAt: Date;
2046
- deletedAt: Date | null;
2047
- fileName: string;
2048
- fileKey: string;
2049
- bucketName: string;
2050
- fileSize: number;
2051
- fileUrl: string | null;
2052
- status?: string | undefined;
2053
- };
1892
+ fileName: string;
1893
+ fileKey: string;
1894
+ bucketName: string;
1895
+ fileSize: number;
1896
+ fileUrl: string | null;
1897
+ status?: string | undefined;
2054
1898
  }[];
2055
1899
  }[];
2056
1900
  company: {
@@ -2143,19 +1987,12 @@ export declare const contactContract: {
2143
1987
  createdAt: Date;
2144
1988
  updatedAt: Date;
2145
1989
  deletedAt: Date | null;
2146
- customFieldId: string;
2147
- upload: {
2148
- id: string;
2149
- createdAt: Date;
2150
- updatedAt: Date;
2151
- deletedAt: Date | null;
2152
- fileName: string;
2153
- fileKey: string;
2154
- bucketName: string;
2155
- fileSize: number;
2156
- fileUrl: string | null;
2157
- status?: string | undefined;
2158
- };
1990
+ fileName: string;
1991
+ fileKey: string;
1992
+ bucketName: string;
1993
+ fileSize: number;
1994
+ fileUrl: string | null;
1995
+ status?: string | undefined;
2159
1996
  }[];
2160
1997
  }[];
2161
1998
  company: {
@@ -2253,19 +2090,12 @@ export declare const contactContract: {
2253
2090
  createdAt: Date;
2254
2091
  updatedAt: Date;
2255
2092
  deletedAt: Date | null;
2256
- customFieldId: string;
2257
- upload: {
2258
- id: string;
2259
- createdAt: Date;
2260
- updatedAt: Date;
2261
- deletedAt: Date | null;
2262
- fileName: string;
2263
- fileKey: string;
2264
- bucketName: string;
2265
- fileSize: number;
2266
- fileUrl: string | null;
2267
- status?: string | undefined;
2268
- };
2093
+ fileName: string;
2094
+ fileKey: string;
2095
+ bucketName: string;
2096
+ fileSize: number;
2097
+ fileUrl: string | null;
2098
+ status?: string | undefined;
2269
2099
  }[];
2270
2100
  }[];
2271
2101
  company: {
@@ -2803,77 +2633,34 @@ export declare const contactContract: {
2803
2633
  createdAt: z.ZodDate;
2804
2634
  updatedAt: z.ZodDate;
2805
2635
  deletedAt: z.ZodNullable<z.ZodDate>;
2806
- customFieldId: z.ZodString;
2807
- upload: z.ZodObject<{
2808
- id: z.ZodString;
2809
- createdAt: z.ZodDate;
2810
- updatedAt: z.ZodDate;
2811
- deletedAt: z.ZodNullable<z.ZodDate>;
2812
- bucketName: z.ZodString;
2813
- fileName: z.ZodString;
2814
- fileSize: z.ZodNumber;
2815
- fileKey: z.ZodString;
2816
- fileUrl: z.ZodNullable<z.ZodString>;
2817
- status: z.ZodOptional<z.ZodString>;
2818
- }, "strip", z.ZodTypeAny, {
2819
- id: string;
2820
- createdAt: Date;
2821
- updatedAt: Date;
2822
- deletedAt: Date | null;
2823
- fileName: string;
2824
- fileKey: string;
2825
- bucketName: string;
2826
- fileSize: number;
2827
- fileUrl: string | null;
2828
- status?: string | undefined;
2829
- }, {
2830
- id: string;
2831
- createdAt: Date;
2832
- updatedAt: Date;
2833
- deletedAt: Date | null;
2834
- fileName: string;
2835
- fileKey: string;
2836
- bucketName: string;
2837
- fileSize: number;
2838
- fileUrl: string | null;
2839
- status?: string | undefined;
2840
- }>;
2636
+ bucketName: z.ZodString;
2637
+ fileName: z.ZodString;
2638
+ fileSize: z.ZodNumber;
2639
+ fileKey: z.ZodString;
2640
+ fileUrl: z.ZodNullable<z.ZodString>;
2641
+ status: z.ZodOptional<z.ZodString>;
2841
2642
  }, "strip", z.ZodTypeAny, {
2842
2643
  id: string;
2843
2644
  createdAt: Date;
2844
2645
  updatedAt: Date;
2845
2646
  deletedAt: Date | null;
2846
- customFieldId: string;
2847
- upload: {
2848
- id: string;
2849
- createdAt: Date;
2850
- updatedAt: Date;
2851
- deletedAt: Date | null;
2852
- fileName: string;
2853
- fileKey: string;
2854
- bucketName: string;
2855
- fileSize: number;
2856
- fileUrl: string | null;
2857
- status?: string | undefined;
2858
- };
2647
+ fileName: string;
2648
+ fileKey: string;
2649
+ bucketName: string;
2650
+ fileSize: number;
2651
+ fileUrl: string | null;
2652
+ status?: string | undefined;
2859
2653
  }, {
2860
2654
  id: string;
2861
2655
  createdAt: Date;
2862
2656
  updatedAt: Date;
2863
2657
  deletedAt: Date | null;
2864
- customFieldId: string;
2865
- upload: {
2866
- id: string;
2867
- createdAt: Date;
2868
- updatedAt: Date;
2869
- deletedAt: Date | null;
2870
- fileName: string;
2871
- fileKey: string;
2872
- bucketName: string;
2873
- fileSize: number;
2874
- fileUrl: string | null;
2875
- status?: string | undefined;
2876
- };
2658
+ fileName: string;
2659
+ fileKey: string;
2660
+ bucketName: string;
2661
+ fileSize: number;
2662
+ fileUrl: string | null;
2663
+ status?: string | undefined;
2877
2664
  }>, "many">;
2878
2665
  }, "strip", z.ZodTypeAny, {
2879
2666
  id: string;
@@ -2903,19 +2690,12 @@ export declare const contactContract: {
2903
2690
  createdAt: Date;
2904
2691
  updatedAt: Date;
2905
2692
  deletedAt: Date | null;
2906
- customFieldId: string;
2907
- upload: {
2908
- id: string;
2909
- createdAt: Date;
2910
- updatedAt: Date;
2911
- deletedAt: Date | null;
2912
- fileName: string;
2913
- fileKey: string;
2914
- bucketName: string;
2915
- fileSize: number;
2916
- fileUrl: string | null;
2917
- status?: string | undefined;
2918
- };
2693
+ fileName: string;
2694
+ fileKey: string;
2695
+ bucketName: string;
2696
+ fileSize: number;
2697
+ fileUrl: string | null;
2698
+ status?: string | undefined;
2919
2699
  }[];
2920
2700
  }, {
2921
2701
  id: string;
@@ -2945,19 +2725,12 @@ export declare const contactContract: {
2945
2725
  createdAt: Date;
2946
2726
  updatedAt: Date;
2947
2727
  deletedAt: Date | null;
2948
- customFieldId: string;
2949
- upload: {
2950
- id: string;
2951
- createdAt: Date;
2952
- updatedAt: Date;
2953
- deletedAt: Date | null;
2954
- fileName: string;
2955
- fileKey: string;
2956
- bucketName: string;
2957
- fileSize: number;
2958
- fileUrl: string | null;
2959
- status?: string | undefined;
2960
- };
2728
+ fileName: string;
2729
+ fileKey: string;
2730
+ bucketName: string;
2731
+ fileSize: number;
2732
+ fileUrl: string | null;
2733
+ status?: string | undefined;
2961
2734
  }[];
2962
2735
  }>, "many">;
2963
2736
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -3100,19 +2873,12 @@ export declare const contactContract: {
3100
2873
  createdAt: Date;
3101
2874
  updatedAt: Date;
3102
2875
  deletedAt: Date | null;
3103
- customFieldId: string;
3104
- upload: {
3105
- id: string;
3106
- createdAt: Date;
3107
- updatedAt: Date;
3108
- deletedAt: Date | null;
3109
- fileName: string;
3110
- fileKey: string;
3111
- bucketName: string;
3112
- fileSize: number;
3113
- fileUrl: string | null;
3114
- status?: string | undefined;
3115
- };
2876
+ fileName: string;
2877
+ fileKey: string;
2878
+ bucketName: string;
2879
+ fileSize: number;
2880
+ fileUrl: string | null;
2881
+ status?: string | undefined;
3116
2882
  }[];
3117
2883
  }[];
3118
2884
  company: {
@@ -3203,19 +2969,12 @@ export declare const contactContract: {
3203
2969
  createdAt: Date;
3204
2970
  updatedAt: Date;
3205
2971
  deletedAt: Date | null;
3206
- customFieldId: string;
3207
- upload: {
3208
- id: string;
3209
- createdAt: Date;
3210
- updatedAt: Date;
3211
- deletedAt: Date | null;
3212
- fileName: string;
3213
- fileKey: string;
3214
- bucketName: string;
3215
- fileSize: number;
3216
- fileUrl: string | null;
3217
- status?: string | undefined;
3218
- };
2972
+ fileName: string;
2973
+ fileKey: string;
2974
+ bucketName: string;
2975
+ fileSize: number;
2976
+ fileUrl: string | null;
2977
+ status?: string | undefined;
3219
2978
  }[];
3220
2979
  }[];
3221
2980
  company: {
@@ -3308,19 +3067,12 @@ export declare const contactContract: {
3308
3067
  createdAt: Date;
3309
3068
  updatedAt: Date;
3310
3069
  deletedAt: Date | null;
3311
- customFieldId: string;
3312
- upload: {
3313
- id: string;
3314
- createdAt: Date;
3315
- updatedAt: Date;
3316
- deletedAt: Date | null;
3317
- fileName: string;
3318
- fileKey: string;
3319
- bucketName: string;
3320
- fileSize: number;
3321
- fileUrl: string | null;
3322
- status?: string | undefined;
3323
- };
3070
+ fileName: string;
3071
+ fileKey: string;
3072
+ bucketName: string;
3073
+ fileSize: number;
3074
+ fileUrl: string | null;
3075
+ status?: string | undefined;
3324
3076
  }[];
3325
3077
  }[];
3326
3078
  company: {
@@ -3414,19 +3166,12 @@ export declare const contactContract: {
3414
3166
  createdAt: Date;
3415
3167
  updatedAt: Date;
3416
3168
  deletedAt: Date | null;
3417
- customFieldId: string;
3418
- upload: {
3419
- id: string;
3420
- createdAt: Date;
3421
- updatedAt: Date;
3422
- deletedAt: Date | null;
3423
- fileName: string;
3424
- fileKey: string;
3425
- bucketName: string;
3426
- fileSize: number;
3427
- fileUrl: string | null;
3428
- status?: string | undefined;
3429
- };
3169
+ fileName: string;
3170
+ fileKey: string;
3171
+ bucketName: string;
3172
+ fileSize: number;
3173
+ fileUrl: string | null;
3174
+ status?: string | undefined;
3430
3175
  }[];
3431
3176
  }[];
3432
3177
  company: {
@@ -3949,77 +3694,34 @@ export declare const contactContract: {
3949
3694
  createdAt: z.ZodDate;
3950
3695
  updatedAt: z.ZodDate;
3951
3696
  deletedAt: z.ZodNullable<z.ZodDate>;
3952
- customFieldId: z.ZodString;
3953
- upload: z.ZodObject<{
3954
- id: z.ZodString;
3955
- createdAt: z.ZodDate;
3956
- updatedAt: z.ZodDate;
3957
- deletedAt: z.ZodNullable<z.ZodDate>;
3958
- bucketName: z.ZodString;
3959
- fileName: z.ZodString;
3960
- fileSize: z.ZodNumber;
3961
- fileKey: z.ZodString;
3962
- fileUrl: z.ZodNullable<z.ZodString>;
3963
- status: z.ZodOptional<z.ZodString>;
3964
- }, "strip", z.ZodTypeAny, {
3965
- id: string;
3966
- createdAt: Date;
3967
- updatedAt: Date;
3968
- deletedAt: Date | null;
3969
- fileName: string;
3970
- fileKey: string;
3971
- bucketName: string;
3972
- fileSize: number;
3973
- fileUrl: string | null;
3974
- status?: string | undefined;
3975
- }, {
3976
- id: string;
3977
- createdAt: Date;
3978
- updatedAt: Date;
3979
- deletedAt: Date | null;
3980
- fileName: string;
3981
- fileKey: string;
3982
- bucketName: string;
3983
- fileSize: number;
3984
- fileUrl: string | null;
3985
- status?: string | undefined;
3986
- }>;
3697
+ bucketName: z.ZodString;
3698
+ fileName: z.ZodString;
3699
+ fileSize: z.ZodNumber;
3700
+ fileKey: z.ZodString;
3701
+ fileUrl: z.ZodNullable<z.ZodString>;
3702
+ status: z.ZodOptional<z.ZodString>;
3987
3703
  }, "strip", z.ZodTypeAny, {
3988
3704
  id: string;
3989
3705
  createdAt: Date;
3990
3706
  updatedAt: Date;
3991
3707
  deletedAt: Date | null;
3992
- customFieldId: string;
3993
- upload: {
3994
- id: string;
3995
- createdAt: Date;
3996
- updatedAt: Date;
3997
- deletedAt: Date | null;
3998
- fileName: string;
3999
- fileKey: string;
4000
- bucketName: string;
4001
- fileSize: number;
4002
- fileUrl: string | null;
4003
- status?: string | undefined;
4004
- };
3708
+ fileName: string;
3709
+ fileKey: string;
3710
+ bucketName: string;
3711
+ fileSize: number;
3712
+ fileUrl: string | null;
3713
+ status?: string | undefined;
4005
3714
  }, {
4006
3715
  id: string;
4007
3716
  createdAt: Date;
4008
3717
  updatedAt: Date;
4009
3718
  deletedAt: Date | null;
4010
- customFieldId: string;
4011
- upload: {
4012
- id: string;
4013
- createdAt: Date;
4014
- updatedAt: Date;
4015
- deletedAt: Date | null;
4016
- fileName: string;
4017
- fileKey: string;
4018
- bucketName: string;
4019
- fileSize: number;
4020
- fileUrl: string | null;
4021
- status?: string | undefined;
4022
- };
3719
+ fileName: string;
3720
+ fileKey: string;
3721
+ bucketName: string;
3722
+ fileSize: number;
3723
+ fileUrl: string | null;
3724
+ status?: string | undefined;
4023
3725
  }>, "many">;
4024
3726
  }, "strip", z.ZodTypeAny, {
4025
3727
  id: string;
@@ -4049,19 +3751,12 @@ export declare const contactContract: {
4049
3751
  createdAt: Date;
4050
3752
  updatedAt: Date;
4051
3753
  deletedAt: Date | null;
4052
- customFieldId: string;
4053
- upload: {
4054
- id: string;
4055
- createdAt: Date;
4056
- updatedAt: Date;
4057
- deletedAt: Date | null;
4058
- fileName: string;
4059
- fileKey: string;
4060
- bucketName: string;
4061
- fileSize: number;
4062
- fileUrl: string | null;
4063
- status?: string | undefined;
4064
- };
3754
+ fileName: string;
3755
+ fileKey: string;
3756
+ bucketName: string;
3757
+ fileSize: number;
3758
+ fileUrl: string | null;
3759
+ status?: string | undefined;
4065
3760
  }[];
4066
3761
  }, {
4067
3762
  id: string;
@@ -4091,19 +3786,12 @@ export declare const contactContract: {
4091
3786
  createdAt: Date;
4092
3787
  updatedAt: Date;
4093
3788
  deletedAt: Date | null;
4094
- customFieldId: string;
4095
- upload: {
4096
- id: string;
4097
- createdAt: Date;
4098
- updatedAt: Date;
4099
- deletedAt: Date | null;
4100
- fileName: string;
4101
- fileKey: string;
4102
- bucketName: string;
4103
- fileSize: number;
4104
- fileUrl: string | null;
4105
- status?: string | undefined;
4106
- };
3789
+ fileName: string;
3790
+ fileKey: string;
3791
+ bucketName: string;
3792
+ fileSize: number;
3793
+ fileUrl: string | null;
3794
+ status?: string | undefined;
4107
3795
  }[];
4108
3796
  }>, "many">;
4109
3797
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -4246,19 +3934,12 @@ export declare const contactContract: {
4246
3934
  createdAt: Date;
4247
3935
  updatedAt: Date;
4248
3936
  deletedAt: Date | null;
4249
- customFieldId: string;
4250
- upload: {
4251
- id: string;
4252
- createdAt: Date;
4253
- updatedAt: Date;
4254
- deletedAt: Date | null;
4255
- fileName: string;
4256
- fileKey: string;
4257
- bucketName: string;
4258
- fileSize: number;
4259
- fileUrl: string | null;
4260
- status?: string | undefined;
4261
- };
3937
+ fileName: string;
3938
+ fileKey: string;
3939
+ bucketName: string;
3940
+ fileSize: number;
3941
+ fileUrl: string | null;
3942
+ status?: string | undefined;
4262
3943
  }[];
4263
3944
  }[];
4264
3945
  company: {
@@ -4349,19 +4030,12 @@ export declare const contactContract: {
4349
4030
  createdAt: Date;
4350
4031
  updatedAt: Date;
4351
4032
  deletedAt: Date | null;
4352
- customFieldId: string;
4353
- upload: {
4354
- id: string;
4355
- createdAt: Date;
4356
- updatedAt: Date;
4357
- deletedAt: Date | null;
4358
- fileName: string;
4359
- fileKey: string;
4360
- bucketName: string;
4361
- fileSize: number;
4362
- fileUrl: string | null;
4363
- status?: string | undefined;
4364
- };
4033
+ fileName: string;
4034
+ fileKey: string;
4035
+ bucketName: string;
4036
+ fileSize: number;
4037
+ fileUrl: string | null;
4038
+ status?: string | undefined;
4365
4039
  }[];
4366
4040
  }[];
4367
4041
  company: {
@@ -4454,19 +4128,12 @@ export declare const contactContract: {
4454
4128
  createdAt: Date;
4455
4129
  updatedAt: Date;
4456
4130
  deletedAt: Date | null;
4457
- customFieldId: string;
4458
- upload: {
4459
- id: string;
4460
- createdAt: Date;
4461
- updatedAt: Date;
4462
- deletedAt: Date | null;
4463
- fileName: string;
4464
- fileKey: string;
4465
- bucketName: string;
4466
- fileSize: number;
4467
- fileUrl: string | null;
4468
- status?: string | undefined;
4469
- };
4131
+ fileName: string;
4132
+ fileKey: string;
4133
+ bucketName: string;
4134
+ fileSize: number;
4135
+ fileUrl: string | null;
4136
+ status?: string | undefined;
4470
4137
  }[];
4471
4138
  }[];
4472
4139
  company: {
@@ -4560,19 +4227,12 @@ export declare const contactContract: {
4560
4227
  createdAt: Date;
4561
4228
  updatedAt: Date;
4562
4229
  deletedAt: Date | null;
4563
- customFieldId: string;
4564
- upload: {
4565
- id: string;
4566
- createdAt: Date;
4567
- updatedAt: Date;
4568
- deletedAt: Date | null;
4569
- fileName: string;
4570
- fileKey: string;
4571
- bucketName: string;
4572
- fileSize: number;
4573
- fileUrl: string | null;
4574
- status?: string | undefined;
4575
- };
4230
+ fileName: string;
4231
+ fileKey: string;
4232
+ bucketName: string;
4233
+ fileSize: number;
4234
+ fileUrl: string | null;
4235
+ status?: string | undefined;
4576
4236
  }[];
4577
4237
  }[];
4578
4238
  company: {
@@ -5006,77 +4666,34 @@ export declare const contactContract: {
5006
4666
  createdAt: z.ZodDate;
5007
4667
  updatedAt: z.ZodDate;
5008
4668
  deletedAt: z.ZodNullable<z.ZodDate>;
5009
- customFieldId: z.ZodString;
5010
- upload: z.ZodObject<{
5011
- id: z.ZodString;
5012
- createdAt: z.ZodDate;
5013
- updatedAt: z.ZodDate;
5014
- deletedAt: z.ZodNullable<z.ZodDate>;
5015
- bucketName: z.ZodString;
5016
- fileName: z.ZodString;
5017
- fileSize: z.ZodNumber;
5018
- fileKey: z.ZodString;
5019
- fileUrl: z.ZodNullable<z.ZodString>;
5020
- status: z.ZodOptional<z.ZodString>;
5021
- }, "strip", z.ZodTypeAny, {
5022
- id: string;
5023
- createdAt: Date;
5024
- updatedAt: Date;
5025
- deletedAt: Date | null;
5026
- fileName: string;
5027
- fileKey: string;
5028
- bucketName: string;
5029
- fileSize: number;
5030
- fileUrl: string | null;
5031
- status?: string | undefined;
5032
- }, {
5033
- id: string;
5034
- createdAt: Date;
5035
- updatedAt: Date;
5036
- deletedAt: Date | null;
5037
- fileName: string;
5038
- fileKey: string;
5039
- bucketName: string;
5040
- fileSize: number;
5041
- fileUrl: string | null;
5042
- status?: string | undefined;
5043
- }>;
4669
+ bucketName: z.ZodString;
4670
+ fileName: z.ZodString;
4671
+ fileSize: z.ZodNumber;
4672
+ fileKey: z.ZodString;
4673
+ fileUrl: z.ZodNullable<z.ZodString>;
4674
+ status: z.ZodOptional<z.ZodString>;
5044
4675
  }, "strip", z.ZodTypeAny, {
5045
4676
  id: string;
5046
4677
  createdAt: Date;
5047
4678
  updatedAt: Date;
5048
4679
  deletedAt: Date | null;
5049
- customFieldId: string;
5050
- upload: {
5051
- id: string;
5052
- createdAt: Date;
5053
- updatedAt: Date;
5054
- deletedAt: Date | null;
5055
- fileName: string;
5056
- fileKey: string;
5057
- bucketName: string;
5058
- fileSize: number;
5059
- fileUrl: string | null;
5060
- status?: string | undefined;
5061
- };
4680
+ fileName: string;
4681
+ fileKey: string;
4682
+ bucketName: string;
4683
+ fileSize: number;
4684
+ fileUrl: string | null;
4685
+ status?: string | undefined;
5062
4686
  }, {
5063
4687
  id: string;
5064
4688
  createdAt: Date;
5065
4689
  updatedAt: Date;
5066
4690
  deletedAt: Date | null;
5067
- customFieldId: string;
5068
- upload: {
5069
- id: string;
5070
- createdAt: Date;
5071
- updatedAt: Date;
5072
- deletedAt: Date | null;
5073
- fileName: string;
5074
- fileKey: string;
5075
- bucketName: string;
5076
- fileSize: number;
5077
- fileUrl: string | null;
5078
- status?: string | undefined;
5079
- };
4691
+ fileName: string;
4692
+ fileKey: string;
4693
+ bucketName: string;
4694
+ fileSize: number;
4695
+ fileUrl: string | null;
4696
+ status?: string | undefined;
5080
4697
  }>, "many">;
5081
4698
  }, "strip", z.ZodTypeAny, {
5082
4699
  id: string;
@@ -5106,19 +4723,12 @@ export declare const contactContract: {
5106
4723
  createdAt: Date;
5107
4724
  updatedAt: Date;
5108
4725
  deletedAt: Date | null;
5109
- customFieldId: string;
5110
- upload: {
5111
- id: string;
5112
- createdAt: Date;
5113
- updatedAt: Date;
5114
- deletedAt: Date | null;
5115
- fileName: string;
5116
- fileKey: string;
5117
- bucketName: string;
5118
- fileSize: number;
5119
- fileUrl: string | null;
5120
- status?: string | undefined;
5121
- };
4726
+ fileName: string;
4727
+ fileKey: string;
4728
+ bucketName: string;
4729
+ fileSize: number;
4730
+ fileUrl: string | null;
4731
+ status?: string | undefined;
5122
4732
  }[];
5123
4733
  }, {
5124
4734
  id: string;
@@ -5148,19 +4758,12 @@ export declare const contactContract: {
5148
4758
  createdAt: Date;
5149
4759
  updatedAt: Date;
5150
4760
  deletedAt: Date | null;
5151
- customFieldId: string;
5152
- upload: {
5153
- id: string;
5154
- createdAt: Date;
5155
- updatedAt: Date;
5156
- deletedAt: Date | null;
5157
- fileName: string;
5158
- fileKey: string;
5159
- bucketName: string;
5160
- fileSize: number;
5161
- fileUrl: string | null;
5162
- status?: string | undefined;
5163
- };
4761
+ fileName: string;
4762
+ fileKey: string;
4763
+ bucketName: string;
4764
+ fileSize: number;
4765
+ fileUrl: string | null;
4766
+ status?: string | undefined;
5164
4767
  }[];
5165
4768
  }>, "many">;
5166
4769
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -5303,19 +4906,12 @@ export declare const contactContract: {
5303
4906
  createdAt: Date;
5304
4907
  updatedAt: Date;
5305
4908
  deletedAt: Date | null;
5306
- customFieldId: string;
5307
- upload: {
5308
- id: string;
5309
- createdAt: Date;
5310
- updatedAt: Date;
5311
- deletedAt: Date | null;
5312
- fileName: string;
5313
- fileKey: string;
5314
- bucketName: string;
5315
- fileSize: number;
5316
- fileUrl: string | null;
5317
- status?: string | undefined;
5318
- };
4909
+ fileName: string;
4910
+ fileKey: string;
4911
+ bucketName: string;
4912
+ fileSize: number;
4913
+ fileUrl: string | null;
4914
+ status?: string | undefined;
5319
4915
  }[];
5320
4916
  }[];
5321
4917
  company: {
@@ -5406,19 +5002,12 @@ export declare const contactContract: {
5406
5002
  createdAt: Date;
5407
5003
  updatedAt: Date;
5408
5004
  deletedAt: Date | null;
5409
- customFieldId: string;
5410
- upload: {
5411
- id: string;
5412
- createdAt: Date;
5413
- updatedAt: Date;
5414
- deletedAt: Date | null;
5415
- fileName: string;
5416
- fileKey: string;
5417
- bucketName: string;
5418
- fileSize: number;
5419
- fileUrl: string | null;
5420
- status?: string | undefined;
5421
- };
5005
+ fileName: string;
5006
+ fileKey: string;
5007
+ bucketName: string;
5008
+ fileSize: number;
5009
+ fileUrl: string | null;
5010
+ status?: string | undefined;
5422
5011
  }[];
5423
5012
  }[];
5424
5013
  company: {
@@ -5511,19 +5100,12 @@ export declare const contactContract: {
5511
5100
  createdAt: Date;
5512
5101
  updatedAt: Date;
5513
5102
  deletedAt: Date | null;
5514
- customFieldId: string;
5515
- upload: {
5516
- id: string;
5517
- createdAt: Date;
5518
- updatedAt: Date;
5519
- deletedAt: Date | null;
5520
- fileName: string;
5521
- fileKey: string;
5522
- bucketName: string;
5523
- fileSize: number;
5524
- fileUrl: string | null;
5525
- status?: string | undefined;
5526
- };
5103
+ fileName: string;
5104
+ fileKey: string;
5105
+ bucketName: string;
5106
+ fileSize: number;
5107
+ fileUrl: string | null;
5108
+ status?: string | undefined;
5527
5109
  }[];
5528
5110
  }[];
5529
5111
  company: {
@@ -5617,19 +5199,12 @@ export declare const contactContract: {
5617
5199
  createdAt: Date;
5618
5200
  updatedAt: Date;
5619
5201
  deletedAt: Date | null;
5620
- customFieldId: string;
5621
- upload: {
5622
- id: string;
5623
- createdAt: Date;
5624
- updatedAt: Date;
5625
- deletedAt: Date | null;
5626
- fileName: string;
5627
- fileKey: string;
5628
- bucketName: string;
5629
- fileSize: number;
5630
- fileUrl: string | null;
5631
- status?: string | undefined;
5632
- };
5202
+ fileName: string;
5203
+ fileKey: string;
5204
+ bucketName: string;
5205
+ fileSize: number;
5206
+ fileUrl: string | null;
5207
+ status?: string | undefined;
5633
5208
  }[];
5634
5209
  }[];
5635
5210
  company: {
@@ -6125,77 +5700,34 @@ export declare const contactContract: {
6125
5700
  createdAt: z.ZodDate;
6126
5701
  updatedAt: z.ZodDate;
6127
5702
  deletedAt: z.ZodNullable<z.ZodDate>;
6128
- customFieldId: z.ZodString;
6129
- upload: z.ZodObject<{
6130
- id: z.ZodString;
6131
- createdAt: z.ZodDate;
6132
- updatedAt: z.ZodDate;
6133
- deletedAt: z.ZodNullable<z.ZodDate>;
6134
- bucketName: z.ZodString;
6135
- fileName: z.ZodString;
6136
- fileSize: z.ZodNumber;
6137
- fileKey: z.ZodString;
6138
- fileUrl: z.ZodNullable<z.ZodString>;
6139
- status: z.ZodOptional<z.ZodString>;
6140
- }, "strip", z.ZodTypeAny, {
6141
- id: string;
6142
- createdAt: Date;
6143
- updatedAt: Date;
6144
- deletedAt: Date | null;
6145
- fileName: string;
6146
- fileKey: string;
6147
- bucketName: string;
6148
- fileSize: number;
6149
- fileUrl: string | null;
6150
- status?: string | undefined;
6151
- }, {
6152
- id: string;
6153
- createdAt: Date;
6154
- updatedAt: Date;
6155
- deletedAt: Date | null;
6156
- fileName: string;
6157
- fileKey: string;
6158
- bucketName: string;
6159
- fileSize: number;
6160
- fileUrl: string | null;
6161
- status?: string | undefined;
6162
- }>;
5703
+ bucketName: z.ZodString;
5704
+ fileName: z.ZodString;
5705
+ fileSize: z.ZodNumber;
5706
+ fileKey: z.ZodString;
5707
+ fileUrl: z.ZodNullable<z.ZodString>;
5708
+ status: z.ZodOptional<z.ZodString>;
6163
5709
  }, "strip", z.ZodTypeAny, {
6164
5710
  id: string;
6165
5711
  createdAt: Date;
6166
5712
  updatedAt: Date;
6167
5713
  deletedAt: Date | null;
6168
- customFieldId: string;
6169
- upload: {
6170
- id: string;
6171
- createdAt: Date;
6172
- updatedAt: Date;
6173
- deletedAt: Date | null;
6174
- fileName: string;
6175
- fileKey: string;
6176
- bucketName: string;
6177
- fileSize: number;
6178
- fileUrl: string | null;
6179
- status?: string | undefined;
6180
- };
5714
+ fileName: string;
5715
+ fileKey: string;
5716
+ bucketName: string;
5717
+ fileSize: number;
5718
+ fileUrl: string | null;
5719
+ status?: string | undefined;
6181
5720
  }, {
6182
5721
  id: string;
6183
5722
  createdAt: Date;
6184
5723
  updatedAt: Date;
6185
5724
  deletedAt: Date | null;
6186
- customFieldId: string;
6187
- upload: {
6188
- id: string;
6189
- createdAt: Date;
6190
- updatedAt: Date;
6191
- deletedAt: Date | null;
6192
- fileName: string;
6193
- fileKey: string;
6194
- bucketName: string;
6195
- fileSize: number;
6196
- fileUrl: string | null;
6197
- status?: string | undefined;
6198
- };
5725
+ fileName: string;
5726
+ fileKey: string;
5727
+ bucketName: string;
5728
+ fileSize: number;
5729
+ fileUrl: string | null;
5730
+ status?: string | undefined;
6199
5731
  }>, "many">;
6200
5732
  }, "strip", z.ZodTypeAny, {
6201
5733
  id: string;
@@ -6225,19 +5757,12 @@ export declare const contactContract: {
6225
5757
  createdAt: Date;
6226
5758
  updatedAt: Date;
6227
5759
  deletedAt: Date | null;
6228
- customFieldId: string;
6229
- upload: {
6230
- id: string;
6231
- createdAt: Date;
6232
- updatedAt: Date;
6233
- deletedAt: Date | null;
6234
- fileName: string;
6235
- fileKey: string;
6236
- bucketName: string;
6237
- fileSize: number;
6238
- fileUrl: string | null;
6239
- status?: string | undefined;
6240
- };
5760
+ fileName: string;
5761
+ fileKey: string;
5762
+ bucketName: string;
5763
+ fileSize: number;
5764
+ fileUrl: string | null;
5765
+ status?: string | undefined;
6241
5766
  }[];
6242
5767
  }, {
6243
5768
  id: string;
@@ -6267,19 +5792,12 @@ export declare const contactContract: {
6267
5792
  createdAt: Date;
6268
5793
  updatedAt: Date;
6269
5794
  deletedAt: Date | null;
6270
- customFieldId: string;
6271
- upload: {
6272
- id: string;
6273
- createdAt: Date;
6274
- updatedAt: Date;
6275
- deletedAt: Date | null;
6276
- fileName: string;
6277
- fileKey: string;
6278
- bucketName: string;
6279
- fileSize: number;
6280
- fileUrl: string | null;
6281
- status?: string | undefined;
6282
- };
5795
+ fileName: string;
5796
+ fileKey: string;
5797
+ bucketName: string;
5798
+ fileSize: number;
5799
+ fileUrl: string | null;
5800
+ status?: string | undefined;
6283
5801
  }[];
6284
5802
  }>, "many">;
6285
5803
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -6422,19 +5940,12 @@ export declare const contactContract: {
6422
5940
  createdAt: Date;
6423
5941
  updatedAt: Date;
6424
5942
  deletedAt: Date | null;
6425
- customFieldId: string;
6426
- upload: {
6427
- id: string;
6428
- createdAt: Date;
6429
- updatedAt: Date;
6430
- deletedAt: Date | null;
6431
- fileName: string;
6432
- fileKey: string;
6433
- bucketName: string;
6434
- fileSize: number;
6435
- fileUrl: string | null;
6436
- status?: string | undefined;
6437
- };
5943
+ fileName: string;
5944
+ fileKey: string;
5945
+ bucketName: string;
5946
+ fileSize: number;
5947
+ fileUrl: string | null;
5948
+ status?: string | undefined;
6438
5949
  }[];
6439
5950
  }[];
6440
5951
  company: {
@@ -6525,19 +6036,12 @@ export declare const contactContract: {
6525
6036
  createdAt: Date;
6526
6037
  updatedAt: Date;
6527
6038
  deletedAt: Date | null;
6528
- customFieldId: string;
6529
- upload: {
6530
- id: string;
6531
- createdAt: Date;
6532
- updatedAt: Date;
6533
- deletedAt: Date | null;
6534
- fileName: string;
6535
- fileKey: string;
6536
- bucketName: string;
6537
- fileSize: number;
6538
- fileUrl: string | null;
6539
- status?: string | undefined;
6540
- };
6039
+ fileName: string;
6040
+ fileKey: string;
6041
+ bucketName: string;
6042
+ fileSize: number;
6043
+ fileUrl: string | null;
6044
+ status?: string | undefined;
6541
6045
  }[];
6542
6046
  }[];
6543
6047
  company: {
@@ -6630,19 +6134,12 @@ export declare const contactContract: {
6630
6134
  createdAt: Date;
6631
6135
  updatedAt: Date;
6632
6136
  deletedAt: Date | null;
6633
- customFieldId: string;
6634
- upload: {
6635
- id: string;
6636
- createdAt: Date;
6637
- updatedAt: Date;
6638
- deletedAt: Date | null;
6639
- fileName: string;
6640
- fileKey: string;
6641
- bucketName: string;
6642
- fileSize: number;
6643
- fileUrl: string | null;
6644
- status?: string | undefined;
6645
- };
6137
+ fileName: string;
6138
+ fileKey: string;
6139
+ bucketName: string;
6140
+ fileSize: number;
6141
+ fileUrl: string | null;
6142
+ status?: string | undefined;
6646
6143
  }[];
6647
6144
  }[];
6648
6145
  company: {
@@ -6736,19 +6233,12 @@ export declare const contactContract: {
6736
6233
  createdAt: Date;
6737
6234
  updatedAt: Date;
6738
6235
  deletedAt: Date | null;
6739
- customFieldId: string;
6740
- upload: {
6741
- id: string;
6742
- createdAt: Date;
6743
- updatedAt: Date;
6744
- deletedAt: Date | null;
6745
- fileName: string;
6746
- fileKey: string;
6747
- bucketName: string;
6748
- fileSize: number;
6749
- fileUrl: string | null;
6750
- status?: string | undefined;
6751
- };
6236
+ fileName: string;
6237
+ fileKey: string;
6238
+ bucketName: string;
6239
+ fileSize: number;
6240
+ fileUrl: string | null;
6241
+ status?: string | undefined;
6752
6242
  }[];
6753
6243
  }[];
6754
6244
  company: {
@@ -7064,51 +6554,52 @@ export declare const contactContract: {
7064
6554
  'x-client-timezone'?: string | undefined;
7065
6555
  }>>>;
7066
6556
  };
7067
- addAttachments: {
6557
+ createContactAttachmentRecords: {
7068
6558
  body: z.ZodObject<{
6559
+ contactId: z.ZodString;
7069
6560
  attributeId: z.ZodString;
7070
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
6561
+ contactAttachmentRecords: z.ZodArray<z.ZodObject<{
7071
6562
  bucketName: z.ZodString;
7072
6563
  fileKey: z.ZodString;
7073
6564
  fileName: z.ZodString;
7074
6565
  fileSize: z.ZodNumber;
6566
+ url: z.ZodString;
7075
6567
  }, "strip", z.ZodTypeAny, {
6568
+ url: string;
7076
6569
  fileName: string;
7077
6570
  fileKey: string;
7078
6571
  bucketName: string;
7079
6572
  fileSize: number;
7080
6573
  }, {
6574
+ url: string;
7081
6575
  fileName: string;
7082
6576
  fileKey: string;
7083
6577
  bucketName: string;
7084
6578
  fileSize: number;
7085
- }>, "many">>;
6579
+ }>, "many">;
7086
6580
  }, "strip", z.ZodTypeAny, {
7087
6581
  attributeId: string;
7088
- attachments?: {
6582
+ contactId: string;
6583
+ contactAttachmentRecords: {
6584
+ url: string;
7089
6585
  fileName: string;
7090
6586
  fileKey: string;
7091
6587
  bucketName: string;
7092
6588
  fileSize: number;
7093
- }[] | undefined;
6589
+ }[];
7094
6590
  }, {
7095
6591
  attributeId: string;
7096
- attachments?: {
6592
+ contactId: string;
6593
+ contactAttachmentRecords: {
6594
+ url: string;
7097
6595
  fileName: string;
7098
6596
  fileKey: string;
7099
6597
  bucketName: string;
7100
6598
  fileSize: number;
7101
- }[] | undefined;
6599
+ }[];
7102
6600
  }>;
7103
- summary: " attachment information from pre-uploaded files in AWS S3 to contacts.";
6601
+ summary: "Create a new contact attachment";
7104
6602
  method: "POST";
7105
- pathParams: z.ZodObject<{
7106
- id: z.ZodString;
7107
- }, "strip", z.ZodTypeAny, {
7108
- id: string;
7109
- }, {
7110
- id: string;
7111
- }>;
7112
6603
  responses: {
7113
6604
  201: z.ZodObject<{
7114
6605
  requestId: z.ZodString;
@@ -7121,30 +6612,191 @@ export declare const contactContract: {
7121
6612
  booleanValue: z.ZodNullable<z.ZodBoolean>;
7122
6613
  numberValue: z.ZodNullable<z.ZodNumber>;
7123
6614
  dateValue: z.ZodNullable<z.ZodDate>;
7124
- entityId: z.ZodString;
7125
- attributeId: z.ZodString;
6615
+ attribute: z.ZodObject<Omit<{
6616
+ id: z.ZodString;
6617
+ createdAt: z.ZodDate;
6618
+ updatedAt: z.ZodDate;
6619
+ deletedAt: z.ZodNullable<z.ZodDate>;
6620
+ systemName: z.ZodString;
6621
+ displayName: z.ZodString;
6622
+ type: z.ZodUnion<[z.ZodLiteral<"text">, z.ZodLiteral<"textarea">, z.ZodLiteral<"date">, z.ZodLiteral<"select">, z.ZodLiteral<"link">, z.ZodLiteral<"attachment">]>;
6623
+ position: z.ZodNumber;
6624
+ isDefault: z.ZodBoolean;
6625
+ isArchived: z.ZodBoolean;
6626
+ isRequired: z.ZodBoolean;
6627
+ isUnique: z.ZodBoolean;
6628
+ options: z.ZodArray<z.ZodObject<{
6629
+ position: z.ZodNumber;
6630
+ value: z.ZodString;
6631
+ label: z.ZodString;
6632
+ isDefault: z.ZodBoolean;
6633
+ id: z.ZodString;
6634
+ }, "strip", z.ZodTypeAny, {
6635
+ id: string;
6636
+ position: number;
6637
+ value: string;
6638
+ label: string;
6639
+ isDefault: boolean;
6640
+ }, {
6641
+ id: string;
6642
+ position: number;
6643
+ value: string;
6644
+ label: string;
6645
+ isDefault: boolean;
6646
+ }>, "many">;
6647
+ group: z.ZodObject<{
6648
+ id: z.ZodString;
6649
+ createdAt: z.ZodDate;
6650
+ updatedAt: z.ZodDate;
6651
+ deletedAt: z.ZodNullable<z.ZodDate>;
6652
+ systemName: z.ZodString;
6653
+ displayName: z.ZodString;
6654
+ }, "strip", z.ZodTypeAny, {
6655
+ id: string;
6656
+ createdAt: Date;
6657
+ updatedAt: Date;
6658
+ deletedAt: Date | null;
6659
+ systemName: string;
6660
+ displayName: string;
6661
+ }, {
6662
+ id: string;
6663
+ createdAt: Date;
6664
+ updatedAt: Date;
6665
+ deletedAt: Date | null;
6666
+ systemName: string;
6667
+ displayName: string;
6668
+ }>;
6669
+ }, "options" | "group">, "strip", z.ZodTypeAny, {
6670
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
6671
+ id: string;
6672
+ position: number;
6673
+ createdAt: Date;
6674
+ updatedAt: Date;
6675
+ deletedAt: Date | null;
6676
+ systemName: string;
6677
+ displayName: string;
6678
+ isDefault: boolean;
6679
+ isArchived: boolean;
6680
+ isRequired: boolean;
6681
+ isUnique: boolean;
6682
+ }, {
6683
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
6684
+ id: string;
6685
+ position: number;
6686
+ createdAt: Date;
6687
+ updatedAt: Date;
6688
+ deletedAt: Date | null;
6689
+ systemName: string;
6690
+ displayName: string;
6691
+ isDefault: boolean;
6692
+ isArchived: boolean;
6693
+ isRequired: boolean;
6694
+ isUnique: boolean;
6695
+ }>;
6696
+ uploads: z.ZodArray<z.ZodObject<{
6697
+ id: z.ZodString;
6698
+ createdAt: z.ZodDate;
6699
+ updatedAt: z.ZodDate;
6700
+ deletedAt: z.ZodNullable<z.ZodDate>;
6701
+ bucketName: z.ZodString;
6702
+ fileName: z.ZodString;
6703
+ fileSize: z.ZodNumber;
6704
+ fileKey: z.ZodString;
6705
+ fileUrl: z.ZodNullable<z.ZodString>;
6706
+ status: z.ZodOptional<z.ZodString>;
6707
+ }, "strip", z.ZodTypeAny, {
6708
+ id: string;
6709
+ createdAt: Date;
6710
+ updatedAt: Date;
6711
+ deletedAt: Date | null;
6712
+ fileName: string;
6713
+ fileKey: string;
6714
+ bucketName: string;
6715
+ fileSize: number;
6716
+ fileUrl: string | null;
6717
+ status?: string | undefined;
6718
+ }, {
6719
+ id: string;
6720
+ createdAt: Date;
6721
+ updatedAt: Date;
6722
+ deletedAt: Date | null;
6723
+ fileName: string;
6724
+ fileKey: string;
6725
+ bucketName: string;
6726
+ fileSize: number;
6727
+ fileUrl: string | null;
6728
+ status?: string | undefined;
6729
+ }>, "many">;
7126
6730
  }, "strip", z.ZodTypeAny, {
7127
6731
  id: string;
7128
6732
  createdAt: Date;
7129
6733
  updatedAt: Date;
7130
6734
  deletedAt: Date | null;
7131
- entityId: string;
7132
- attributeId: string;
6735
+ attribute: {
6736
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
6737
+ id: string;
6738
+ position: number;
6739
+ createdAt: Date;
6740
+ updatedAt: Date;
6741
+ deletedAt: Date | null;
6742
+ systemName: string;
6743
+ displayName: string;
6744
+ isDefault: boolean;
6745
+ isArchived: boolean;
6746
+ isRequired: boolean;
6747
+ isUnique: boolean;
6748
+ };
7133
6749
  textValue: string | null;
7134
6750
  booleanValue: boolean | null;
7135
6751
  numberValue: number | null;
7136
6752
  dateValue: Date | null;
6753
+ uploads: {
6754
+ id: string;
6755
+ createdAt: Date;
6756
+ updatedAt: Date;
6757
+ deletedAt: Date | null;
6758
+ fileName: string;
6759
+ fileKey: string;
6760
+ bucketName: string;
6761
+ fileSize: number;
6762
+ fileUrl: string | null;
6763
+ status?: string | undefined;
6764
+ }[];
7137
6765
  }, {
7138
6766
  id: string;
7139
6767
  createdAt: Date;
7140
6768
  updatedAt: Date;
7141
6769
  deletedAt: Date | null;
7142
- entityId: string;
7143
- attributeId: string;
6770
+ attribute: {
6771
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
6772
+ id: string;
6773
+ position: number;
6774
+ createdAt: Date;
6775
+ updatedAt: Date;
6776
+ deletedAt: Date | null;
6777
+ systemName: string;
6778
+ displayName: string;
6779
+ isDefault: boolean;
6780
+ isArchived: boolean;
6781
+ isRequired: boolean;
6782
+ isUnique: boolean;
6783
+ };
7144
6784
  textValue: string | null;
7145
6785
  booleanValue: boolean | null;
7146
6786
  numberValue: number | null;
7147
6787
  dateValue: Date | null;
6788
+ uploads: {
6789
+ id: string;
6790
+ createdAt: Date;
6791
+ updatedAt: Date;
6792
+ deletedAt: Date | null;
6793
+ fileName: string;
6794
+ fileKey: string;
6795
+ bucketName: string;
6796
+ fileSize: number;
6797
+ fileUrl: string | null;
6798
+ status?: string | undefined;
6799
+ }[];
7148
6800
  }>;
7149
6801
  }, "strip", z.ZodTypeAny, {
7150
6802
  message: {
@@ -7152,12 +6804,36 @@ export declare const contactContract: {
7152
6804
  createdAt: Date;
7153
6805
  updatedAt: Date;
7154
6806
  deletedAt: Date | null;
7155
- entityId: string;
7156
- attributeId: string;
6807
+ attribute: {
6808
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
6809
+ id: string;
6810
+ position: number;
6811
+ createdAt: Date;
6812
+ updatedAt: Date;
6813
+ deletedAt: Date | null;
6814
+ systemName: string;
6815
+ displayName: string;
6816
+ isDefault: boolean;
6817
+ isArchived: boolean;
6818
+ isRequired: boolean;
6819
+ isUnique: boolean;
6820
+ };
7157
6821
  textValue: string | null;
7158
6822
  booleanValue: boolean | null;
7159
6823
  numberValue: number | null;
7160
6824
  dateValue: Date | null;
6825
+ uploads: {
6826
+ id: string;
6827
+ createdAt: Date;
6828
+ updatedAt: Date;
6829
+ deletedAt: Date | null;
6830
+ fileName: string;
6831
+ fileKey: string;
6832
+ bucketName: string;
6833
+ fileSize: number;
6834
+ fileUrl: string | null;
6835
+ status?: string | undefined;
6836
+ }[];
7161
6837
  };
7162
6838
  requestId: string;
7163
6839
  }, {
@@ -7166,12 +6842,36 @@ export declare const contactContract: {
7166
6842
  createdAt: Date;
7167
6843
  updatedAt: Date;
7168
6844
  deletedAt: Date | null;
7169
- entityId: string;
7170
- attributeId: string;
6845
+ attribute: {
6846
+ type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
6847
+ id: string;
6848
+ position: number;
6849
+ createdAt: Date;
6850
+ updatedAt: Date;
6851
+ deletedAt: Date | null;
6852
+ systemName: string;
6853
+ displayName: string;
6854
+ isDefault: boolean;
6855
+ isArchived: boolean;
6856
+ isRequired: boolean;
6857
+ isUnique: boolean;
6858
+ };
7171
6859
  textValue: string | null;
7172
6860
  booleanValue: boolean | null;
7173
6861
  numberValue: number | null;
7174
6862
  dateValue: Date | null;
6863
+ uploads: {
6864
+ id: string;
6865
+ createdAt: Date;
6866
+ updatedAt: Date;
6867
+ deletedAt: Date | null;
6868
+ fileName: string;
6869
+ fileKey: string;
6870
+ bucketName: string;
6871
+ fileSize: number;
6872
+ fileUrl: string | null;
6873
+ status?: string | undefined;
6874
+ }[];
7175
6875
  };
7176
6876
  requestId: string;
7177
6877
  }>;
@@ -7227,7 +6927,7 @@ export declare const contactContract: {
7227
6927
  error?: any;
7228
6928
  }>;
7229
6929
  };
7230
- path: "contact/:id/attachments";
6930
+ path: "contact/attachments";
7231
6931
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
7232
6932
  'x-tenant': z.ZodString;
7233
6933
  authorization: z.ZodString;
@@ -7548,77 +7248,34 @@ export declare const contactContract: {
7548
7248
  createdAt: z.ZodDate;
7549
7249
  updatedAt: z.ZodDate;
7550
7250
  deletedAt: z.ZodNullable<z.ZodDate>;
7551
- customFieldId: z.ZodString;
7552
- upload: z.ZodObject<{
7553
- id: z.ZodString;
7554
- createdAt: z.ZodDate;
7555
- updatedAt: z.ZodDate;
7556
- deletedAt: z.ZodNullable<z.ZodDate>;
7557
- bucketName: z.ZodString;
7558
- fileName: z.ZodString;
7559
- fileSize: z.ZodNumber;
7560
- fileKey: z.ZodString;
7561
- fileUrl: z.ZodNullable<z.ZodString>;
7562
- status: z.ZodOptional<z.ZodString>;
7563
- }, "strip", z.ZodTypeAny, {
7564
- id: string;
7565
- createdAt: Date;
7566
- updatedAt: Date;
7567
- deletedAt: Date | null;
7568
- fileName: string;
7569
- fileKey: string;
7570
- bucketName: string;
7571
- fileSize: number;
7572
- fileUrl: string | null;
7573
- status?: string | undefined;
7574
- }, {
7575
- id: string;
7576
- createdAt: Date;
7577
- updatedAt: Date;
7578
- deletedAt: Date | null;
7579
- fileName: string;
7580
- fileKey: string;
7581
- bucketName: string;
7582
- fileSize: number;
7583
- fileUrl: string | null;
7584
- status?: string | undefined;
7585
- }>;
7251
+ bucketName: z.ZodString;
7252
+ fileName: z.ZodString;
7253
+ fileSize: z.ZodNumber;
7254
+ fileKey: z.ZodString;
7255
+ fileUrl: z.ZodNullable<z.ZodString>;
7256
+ status: z.ZodOptional<z.ZodString>;
7586
7257
  }, "strip", z.ZodTypeAny, {
7587
7258
  id: string;
7588
7259
  createdAt: Date;
7589
7260
  updatedAt: Date;
7590
7261
  deletedAt: Date | null;
7591
- customFieldId: string;
7592
- upload: {
7593
- id: string;
7594
- createdAt: Date;
7595
- updatedAt: Date;
7596
- deletedAt: Date | null;
7597
- fileName: string;
7598
- fileKey: string;
7599
- bucketName: string;
7600
- fileSize: number;
7601
- fileUrl: string | null;
7602
- status?: string | undefined;
7603
- };
7262
+ fileName: string;
7263
+ fileKey: string;
7264
+ bucketName: string;
7265
+ fileSize: number;
7266
+ fileUrl: string | null;
7267
+ status?: string | undefined;
7604
7268
  }, {
7605
7269
  id: string;
7606
7270
  createdAt: Date;
7607
7271
  updatedAt: Date;
7608
7272
  deletedAt: Date | null;
7609
- customFieldId: string;
7610
- upload: {
7611
- id: string;
7612
- createdAt: Date;
7613
- updatedAt: Date;
7614
- deletedAt: Date | null;
7615
- fileName: string;
7616
- fileKey: string;
7617
- bucketName: string;
7618
- fileSize: number;
7619
- fileUrl: string | null;
7620
- status?: string | undefined;
7621
- };
7273
+ fileName: string;
7274
+ fileKey: string;
7275
+ bucketName: string;
7276
+ fileSize: number;
7277
+ fileUrl: string | null;
7278
+ status?: string | undefined;
7622
7279
  }>, "many">;
7623
7280
  }, "strip", z.ZodTypeAny, {
7624
7281
  id: string;
@@ -7648,19 +7305,12 @@ export declare const contactContract: {
7648
7305
  createdAt: Date;
7649
7306
  updatedAt: Date;
7650
7307
  deletedAt: Date | null;
7651
- customFieldId: string;
7652
- upload: {
7653
- id: string;
7654
- createdAt: Date;
7655
- updatedAt: Date;
7656
- deletedAt: Date | null;
7657
- fileName: string;
7658
- fileKey: string;
7659
- bucketName: string;
7660
- fileSize: number;
7661
- fileUrl: string | null;
7662
- status?: string | undefined;
7663
- };
7308
+ fileName: string;
7309
+ fileKey: string;
7310
+ bucketName: string;
7311
+ fileSize: number;
7312
+ fileUrl: string | null;
7313
+ status?: string | undefined;
7664
7314
  }[];
7665
7315
  }, {
7666
7316
  id: string;
@@ -7690,19 +7340,12 @@ export declare const contactContract: {
7690
7340
  createdAt: Date;
7691
7341
  updatedAt: Date;
7692
7342
  deletedAt: Date | null;
7693
- customFieldId: string;
7694
- upload: {
7695
- id: string;
7696
- createdAt: Date;
7697
- updatedAt: Date;
7698
- deletedAt: Date | null;
7699
- fileName: string;
7700
- fileKey: string;
7701
- bucketName: string;
7702
- fileSize: number;
7703
- fileUrl: string | null;
7704
- status?: string | undefined;
7705
- };
7343
+ fileName: string;
7344
+ fileKey: string;
7345
+ bucketName: string;
7346
+ fileSize: number;
7347
+ fileUrl: string | null;
7348
+ status?: string | undefined;
7706
7349
  }[];
7707
7350
  }>, "many">;
7708
7351
  contactEmails: z.ZodArray<z.ZodObject<{
@@ -7845,19 +7488,12 @@ export declare const contactContract: {
7845
7488
  createdAt: Date;
7846
7489
  updatedAt: Date;
7847
7490
  deletedAt: Date | null;
7848
- customFieldId: string;
7849
- upload: {
7850
- id: string;
7851
- createdAt: Date;
7852
- updatedAt: Date;
7853
- deletedAt: Date | null;
7854
- fileName: string;
7855
- fileKey: string;
7856
- bucketName: string;
7857
- fileSize: number;
7858
- fileUrl: string | null;
7859
- status?: string | undefined;
7860
- };
7491
+ fileName: string;
7492
+ fileKey: string;
7493
+ bucketName: string;
7494
+ fileSize: number;
7495
+ fileUrl: string | null;
7496
+ status?: string | undefined;
7861
7497
  }[];
7862
7498
  }[];
7863
7499
  company: {
@@ -7948,19 +7584,12 @@ export declare const contactContract: {
7948
7584
  createdAt: Date;
7949
7585
  updatedAt: Date;
7950
7586
  deletedAt: Date | null;
7951
- customFieldId: string;
7952
- upload: {
7953
- id: string;
7954
- createdAt: Date;
7955
- updatedAt: Date;
7956
- deletedAt: Date | null;
7957
- fileName: string;
7958
- fileKey: string;
7959
- bucketName: string;
7960
- fileSize: number;
7961
- fileUrl: string | null;
7962
- status?: string | undefined;
7963
- };
7587
+ fileName: string;
7588
+ fileKey: string;
7589
+ bucketName: string;
7590
+ fileSize: number;
7591
+ fileUrl: string | null;
7592
+ status?: string | undefined;
7964
7593
  }[];
7965
7594
  }[];
7966
7595
  company: {
@@ -8053,19 +7682,12 @@ export declare const contactContract: {
8053
7682
  createdAt: Date;
8054
7683
  updatedAt: Date;
8055
7684
  deletedAt: Date | null;
8056
- customFieldId: string;
8057
- upload: {
8058
- id: string;
8059
- createdAt: Date;
8060
- updatedAt: Date;
8061
- deletedAt: Date | null;
8062
- fileName: string;
8063
- fileKey: string;
8064
- bucketName: string;
8065
- fileSize: number;
8066
- fileUrl: string | null;
8067
- status?: string | undefined;
8068
- };
7685
+ fileName: string;
7686
+ fileKey: string;
7687
+ bucketName: string;
7688
+ fileSize: number;
7689
+ fileUrl: string | null;
7690
+ status?: string | undefined;
8069
7691
  }[];
8070
7692
  }[];
8071
7693
  company: {
@@ -8159,19 +7781,12 @@ export declare const contactContract: {
8159
7781
  createdAt: Date;
8160
7782
  updatedAt: Date;
8161
7783
  deletedAt: Date | null;
8162
- customFieldId: string;
8163
- upload: {
8164
- id: string;
8165
- createdAt: Date;
8166
- updatedAt: Date;
8167
- deletedAt: Date | null;
8168
- fileName: string;
8169
- fileKey: string;
8170
- bucketName: string;
8171
- fileSize: number;
8172
- fileUrl: string | null;
8173
- status?: string | undefined;
8174
- };
7784
+ fileName: string;
7785
+ fileKey: string;
7786
+ bucketName: string;
7787
+ fileSize: number;
7788
+ fileUrl: string | null;
7789
+ status?: string | undefined;
8175
7790
  }[];
8176
7791
  }[];
8177
7792
  company: {