@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.
- package/dist/index.js +11 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -17
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +1110 -2579
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +222 -519
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +228 -482
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +222 -547
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +66 -165
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +614 -999
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +72 -200
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +317 -806
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +4719 -8395
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field-upload/schema.d.ts +2 -2
- package/dist/src/cx-log/index.d.ts +234 -573
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +198 -495
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +138 -265
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +138 -265
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1330 -1330
- package/dist/src/mail/message-contract.d.ts +56 -56
- package/dist/src/mail/room-contract.d.ts +1258 -1258
- package/dist/src/mail/schemas/message.schema.d.ts +33 -33
- package/dist/src/mail/schemas/room-validation.schema.d.ts +420 -420
- package/dist/src/mail/schemas/room.schema.d.ts +284 -284
- package/dist/src/messenger/index.d.ts +138 -265
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +198 -495
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +54 -139
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +338 -818
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +54 -139
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +138 -265
- package/dist/src/viber/index.d.ts.map +1 -1
- 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
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
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
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
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
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
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
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
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
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
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
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
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
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
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
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
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
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
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
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
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
|
-
|
1682
|
-
|
1683
|
-
|
1684
|
-
|
1685
|
-
|
1686
|
-
|
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
|
-
|
1700
|
-
|
1701
|
-
|
1702
|
-
|
1703
|
-
|
1704
|
-
|
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
|
-
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
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
|
-
|
1784
|
-
|
1785
|
-
|
1786
|
-
|
1787
|
-
|
1788
|
-
|
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
|
-
|
1939
|
-
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
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
|
-
|
2042
|
-
|
2043
|
-
|
2044
|
-
|
2045
|
-
|
2046
|
-
|
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
|
-
|
2147
|
-
|
2148
|
-
|
2149
|
-
|
2150
|
-
|
2151
|
-
|
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
|
-
|
2257
|
-
|
2258
|
-
|
2259
|
-
|
2260
|
-
|
2261
|
-
|
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
|
-
|
2807
|
-
|
2808
|
-
|
2809
|
-
|
2810
|
-
|
2811
|
-
|
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
|
-
|
2847
|
-
|
2848
|
-
|
2849
|
-
|
2850
|
-
|
2851
|
-
|
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
|
-
|
2865
|
-
|
2866
|
-
|
2867
|
-
|
2868
|
-
|
2869
|
-
|
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
|
-
|
2907
|
-
|
2908
|
-
|
2909
|
-
|
2910
|
-
|
2911
|
-
|
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
|
-
|
2949
|
-
|
2950
|
-
|
2951
|
-
|
2952
|
-
|
2953
|
-
|
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
|
-
|
3104
|
-
|
3105
|
-
|
3106
|
-
|
3107
|
-
|
3108
|
-
|
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
|
-
|
3207
|
-
|
3208
|
-
|
3209
|
-
|
3210
|
-
|
3211
|
-
|
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
|
-
|
3312
|
-
|
3313
|
-
|
3314
|
-
|
3315
|
-
|
3316
|
-
|
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
|
-
|
3418
|
-
|
3419
|
-
|
3420
|
-
|
3421
|
-
|
3422
|
-
|
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
|
-
|
3953
|
-
|
3954
|
-
|
3955
|
-
|
3956
|
-
|
3957
|
-
|
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
|
-
|
3993
|
-
|
3994
|
-
|
3995
|
-
|
3996
|
-
|
3997
|
-
|
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
|
-
|
4011
|
-
|
4012
|
-
|
4013
|
-
|
4014
|
-
|
4015
|
-
|
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
|
-
|
4053
|
-
|
4054
|
-
|
4055
|
-
|
4056
|
-
|
4057
|
-
|
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
|
-
|
4095
|
-
|
4096
|
-
|
4097
|
-
|
4098
|
-
|
4099
|
-
|
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
|
-
|
4250
|
-
|
4251
|
-
|
4252
|
-
|
4253
|
-
|
4254
|
-
|
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
|
-
|
4353
|
-
|
4354
|
-
|
4355
|
-
|
4356
|
-
|
4357
|
-
|
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
|
-
|
4458
|
-
|
4459
|
-
|
4460
|
-
|
4461
|
-
|
4462
|
-
|
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
|
-
|
4564
|
-
|
4565
|
-
|
4566
|
-
|
4567
|
-
|
4568
|
-
|
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
|
-
|
5010
|
-
|
5011
|
-
|
5012
|
-
|
5013
|
-
|
5014
|
-
|
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
|
-
|
5050
|
-
|
5051
|
-
|
5052
|
-
|
5053
|
-
|
5054
|
-
|
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
|
-
|
5068
|
-
|
5069
|
-
|
5070
|
-
|
5071
|
-
|
5072
|
-
|
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
|
-
|
5110
|
-
|
5111
|
-
|
5112
|
-
|
5113
|
-
|
5114
|
-
|
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
|
-
|
5152
|
-
|
5153
|
-
|
5154
|
-
|
5155
|
-
|
5156
|
-
|
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
|
-
|
5307
|
-
|
5308
|
-
|
5309
|
-
|
5310
|
-
|
5311
|
-
|
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
|
-
|
5410
|
-
|
5411
|
-
|
5412
|
-
|
5413
|
-
|
5414
|
-
|
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
|
-
|
5515
|
-
|
5516
|
-
|
5517
|
-
|
5518
|
-
|
5519
|
-
|
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
|
-
|
5621
|
-
|
5622
|
-
|
5623
|
-
|
5624
|
-
|
5625
|
-
|
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
|
-
|
6129
|
-
|
6130
|
-
|
6131
|
-
|
6132
|
-
|
6133
|
-
|
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
|
-
|
6169
|
-
|
6170
|
-
|
6171
|
-
|
6172
|
-
|
6173
|
-
|
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
|
-
|
6187
|
-
|
6188
|
-
|
6189
|
-
|
6190
|
-
|
6191
|
-
|
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
|
-
|
6229
|
-
|
6230
|
-
|
6231
|
-
|
6232
|
-
|
6233
|
-
|
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
|
-
|
6271
|
-
|
6272
|
-
|
6273
|
-
|
6274
|
-
|
6275
|
-
|
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
|
-
|
6426
|
-
|
6427
|
-
|
6428
|
-
|
6429
|
-
|
6430
|
-
|
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
|
-
|
6529
|
-
|
6530
|
-
|
6531
|
-
|
6532
|
-
|
6533
|
-
|
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
|
-
|
6634
|
-
|
6635
|
-
|
6636
|
-
|
6637
|
-
|
6638
|
-
|
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
|
-
|
6740
|
-
|
6741
|
-
|
6742
|
-
|
6743
|
-
|
6744
|
-
|
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
|
-
|
6557
|
+
createContactAttachmentRecords: {
|
7068
6558
|
body: z.ZodObject<{
|
6559
|
+
contactId: z.ZodString;
|
7069
6560
|
attributeId: z.ZodString;
|
7070
|
-
|
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
|
-
|
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
|
-
}[]
|
6589
|
+
}[];
|
7094
6590
|
}, {
|
7095
6591
|
attributeId: string;
|
7096
|
-
|
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
|
-
}[]
|
6599
|
+
}[];
|
7102
6600
|
}>;
|
7103
|
-
summary: "
|
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
|
-
|
7125
|
-
|
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
|
-
|
7132
|
-
|
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
|
-
|
7143
|
-
|
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
|
-
|
7156
|
-
|
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
|
-
|
7170
|
-
|
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
|
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
|
-
|
7552
|
-
|
7553
|
-
|
7554
|
-
|
7555
|
-
|
7556
|
-
|
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
|
-
|
7592
|
-
|
7593
|
-
|
7594
|
-
|
7595
|
-
|
7596
|
-
|
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
|
-
|
7610
|
-
|
7611
|
-
|
7612
|
-
|
7613
|
-
|
7614
|
-
|
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
|
-
|
7652
|
-
|
7653
|
-
|
7654
|
-
|
7655
|
-
|
7656
|
-
|
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
|
-
|
7694
|
-
|
7695
|
-
|
7696
|
-
|
7697
|
-
|
7698
|
-
|
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
|
-
|
7849
|
-
|
7850
|
-
|
7851
|
-
|
7852
|
-
|
7853
|
-
|
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
|
-
|
7952
|
-
|
7953
|
-
|
7954
|
-
|
7955
|
-
|
7956
|
-
|
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
|
-
|
8057
|
-
|
8058
|
-
|
8059
|
-
|
8060
|
-
|
8061
|
-
|
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
|
-
|
8163
|
-
|
8164
|
-
|
8165
|
-
|
8166
|
-
|
8167
|
-
|
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: {
|