@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
@@ -1747,77 +1747,34 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
1747
1747
|
createdAt: z.ZodDate;
|
1748
1748
|
updatedAt: z.ZodDate;
|
1749
1749
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1753
|
-
|
1754
|
-
|
1755
|
-
|
1756
|
-
bucketName: z.ZodString;
|
1757
|
-
fileName: z.ZodString;
|
1758
|
-
fileSize: z.ZodNumber;
|
1759
|
-
fileKey: z.ZodString;
|
1760
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
1761
|
-
status: z.ZodOptional<z.ZodString>;
|
1762
|
-
}, "strip", z.ZodTypeAny, {
|
1763
|
-
id: string;
|
1764
|
-
createdAt: Date;
|
1765
|
-
updatedAt: Date;
|
1766
|
-
deletedAt: Date | null;
|
1767
|
-
fileName: string;
|
1768
|
-
fileKey: string;
|
1769
|
-
bucketName: string;
|
1770
|
-
fileSize: number;
|
1771
|
-
fileUrl: string | null;
|
1772
|
-
status?: string | undefined;
|
1773
|
-
}, {
|
1774
|
-
id: string;
|
1775
|
-
createdAt: Date;
|
1776
|
-
updatedAt: Date;
|
1777
|
-
deletedAt: Date | null;
|
1778
|
-
fileName: string;
|
1779
|
-
fileKey: string;
|
1780
|
-
bucketName: string;
|
1781
|
-
fileSize: number;
|
1782
|
-
fileUrl: string | null;
|
1783
|
-
status?: string | undefined;
|
1784
|
-
}>;
|
1750
|
+
bucketName: z.ZodString;
|
1751
|
+
fileName: z.ZodString;
|
1752
|
+
fileSize: z.ZodNumber;
|
1753
|
+
fileKey: z.ZodString;
|
1754
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
1755
|
+
status: z.ZodOptional<z.ZodString>;
|
1785
1756
|
}, "strip", z.ZodTypeAny, {
|
1786
1757
|
id: string;
|
1787
1758
|
createdAt: Date;
|
1788
1759
|
updatedAt: Date;
|
1789
1760
|
deletedAt: Date | null;
|
1790
|
-
|
1791
|
-
|
1792
|
-
|
1793
|
-
|
1794
|
-
|
1795
|
-
|
1796
|
-
fileName: string;
|
1797
|
-
fileKey: string;
|
1798
|
-
bucketName: string;
|
1799
|
-
fileSize: number;
|
1800
|
-
fileUrl: string | null;
|
1801
|
-
status?: string | undefined;
|
1802
|
-
};
|
1761
|
+
fileName: string;
|
1762
|
+
fileKey: string;
|
1763
|
+
bucketName: string;
|
1764
|
+
fileSize: number;
|
1765
|
+
fileUrl: string | null;
|
1766
|
+
status?: string | undefined;
|
1803
1767
|
}, {
|
1804
1768
|
id: string;
|
1805
1769
|
createdAt: Date;
|
1806
1770
|
updatedAt: Date;
|
1807
1771
|
deletedAt: Date | null;
|
1808
|
-
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
|
1814
|
-
fileName: string;
|
1815
|
-
fileKey: string;
|
1816
|
-
bucketName: string;
|
1817
|
-
fileSize: number;
|
1818
|
-
fileUrl: string | null;
|
1819
|
-
status?: string | undefined;
|
1820
|
-
};
|
1772
|
+
fileName: string;
|
1773
|
+
fileKey: string;
|
1774
|
+
bucketName: string;
|
1775
|
+
fileSize: number;
|
1776
|
+
fileUrl: string | null;
|
1777
|
+
status?: string | undefined;
|
1821
1778
|
}>, "many">;
|
1822
1779
|
}, "strip", z.ZodTypeAny, {
|
1823
1780
|
id: string;
|
@@ -1847,19 +1804,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
1847
1804
|
createdAt: Date;
|
1848
1805
|
updatedAt: Date;
|
1849
1806
|
deletedAt: Date | null;
|
1850
|
-
|
1851
|
-
|
1852
|
-
|
1853
|
-
|
1854
|
-
|
1855
|
-
|
1856
|
-
fileName: string;
|
1857
|
-
fileKey: string;
|
1858
|
-
bucketName: string;
|
1859
|
-
fileSize: number;
|
1860
|
-
fileUrl: string | null;
|
1861
|
-
status?: string | undefined;
|
1862
|
-
};
|
1807
|
+
fileName: string;
|
1808
|
+
fileKey: string;
|
1809
|
+
bucketName: string;
|
1810
|
+
fileSize: number;
|
1811
|
+
fileUrl: string | null;
|
1812
|
+
status?: string | undefined;
|
1863
1813
|
}[];
|
1864
1814
|
}, {
|
1865
1815
|
id: string;
|
@@ -1889,19 +1839,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
1889
1839
|
createdAt: Date;
|
1890
1840
|
updatedAt: Date;
|
1891
1841
|
deletedAt: Date | null;
|
1892
|
-
|
1893
|
-
|
1894
|
-
|
1895
|
-
|
1896
|
-
|
1897
|
-
|
1898
|
-
fileName: string;
|
1899
|
-
fileKey: string;
|
1900
|
-
bucketName: string;
|
1901
|
-
fileSize: number;
|
1902
|
-
fileUrl: string | null;
|
1903
|
-
status?: string | undefined;
|
1904
|
-
};
|
1842
|
+
fileName: string;
|
1843
|
+
fileKey: string;
|
1844
|
+
bucketName: string;
|
1845
|
+
fileSize: number;
|
1846
|
+
fileUrl: string | null;
|
1847
|
+
status?: string | undefined;
|
1905
1848
|
}[];
|
1906
1849
|
}>, "many">;
|
1907
1850
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -2044,19 +1987,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
2044
1987
|
createdAt: Date;
|
2045
1988
|
updatedAt: Date;
|
2046
1989
|
deletedAt: Date | null;
|
2047
|
-
|
2048
|
-
|
2049
|
-
|
2050
|
-
|
2051
|
-
|
2052
|
-
|
2053
|
-
fileName: string;
|
2054
|
-
fileKey: string;
|
2055
|
-
bucketName: string;
|
2056
|
-
fileSize: number;
|
2057
|
-
fileUrl: string | null;
|
2058
|
-
status?: string | undefined;
|
2059
|
-
};
|
1990
|
+
fileName: string;
|
1991
|
+
fileKey: string;
|
1992
|
+
bucketName: string;
|
1993
|
+
fileSize: number;
|
1994
|
+
fileUrl: string | null;
|
1995
|
+
status?: string | undefined;
|
2060
1996
|
}[];
|
2061
1997
|
}[];
|
2062
1998
|
company: {
|
@@ -2147,19 +2083,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
2147
2083
|
createdAt: Date;
|
2148
2084
|
updatedAt: Date;
|
2149
2085
|
deletedAt: Date | null;
|
2150
|
-
|
2151
|
-
|
2152
|
-
|
2153
|
-
|
2154
|
-
|
2155
|
-
|
2156
|
-
fileName: string;
|
2157
|
-
fileKey: string;
|
2158
|
-
bucketName: string;
|
2159
|
-
fileSize: number;
|
2160
|
-
fileUrl: string | null;
|
2161
|
-
status?: string | undefined;
|
2162
|
-
};
|
2086
|
+
fileName: string;
|
2087
|
+
fileKey: string;
|
2088
|
+
bucketName: string;
|
2089
|
+
fileSize: number;
|
2090
|
+
fileUrl: string | null;
|
2091
|
+
status?: string | undefined;
|
2163
2092
|
}[];
|
2164
2093
|
}[];
|
2165
2094
|
company: {
|
@@ -2263,19 +2192,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
2263
2192
|
createdAt: Date;
|
2264
2193
|
updatedAt: Date;
|
2265
2194
|
deletedAt: Date | null;
|
2266
|
-
|
2267
|
-
|
2268
|
-
|
2269
|
-
|
2270
|
-
|
2271
|
-
|
2272
|
-
fileName: string;
|
2273
|
-
fileKey: string;
|
2274
|
-
bucketName: string;
|
2275
|
-
fileSize: number;
|
2276
|
-
fileUrl: string | null;
|
2277
|
-
status?: string | undefined;
|
2278
|
-
};
|
2195
|
+
fileName: string;
|
2196
|
+
fileKey: string;
|
2197
|
+
bucketName: string;
|
2198
|
+
fileSize: number;
|
2199
|
+
fileUrl: string | null;
|
2200
|
+
status?: string | undefined;
|
2279
2201
|
}[];
|
2280
2202
|
}[];
|
2281
2203
|
company: {
|
@@ -2381,19 +2303,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
2381
2303
|
createdAt: Date;
|
2382
2304
|
updatedAt: Date;
|
2383
2305
|
deletedAt: Date | null;
|
2384
|
-
|
2385
|
-
|
2386
|
-
|
2387
|
-
|
2388
|
-
|
2389
|
-
|
2390
|
-
fileName: string;
|
2391
|
-
fileKey: string;
|
2392
|
-
bucketName: string;
|
2393
|
-
fileSize: number;
|
2394
|
-
fileUrl: string | null;
|
2395
|
-
status?: string | undefined;
|
2396
|
-
};
|
2306
|
+
fileName: string;
|
2307
|
+
fileKey: string;
|
2308
|
+
bucketName: string;
|
2309
|
+
fileSize: number;
|
2310
|
+
fileUrl: string | null;
|
2311
|
+
status?: string | undefined;
|
2397
2312
|
}[];
|
2398
2313
|
}[];
|
2399
2314
|
company: {
|
@@ -3477,19 +3392,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
3477
3392
|
createdAt: Date;
|
3478
3393
|
updatedAt: Date;
|
3479
3394
|
deletedAt: Date | null;
|
3480
|
-
|
3481
|
-
|
3482
|
-
|
3483
|
-
|
3484
|
-
|
3485
|
-
|
3486
|
-
fileName: string;
|
3487
|
-
fileKey: string;
|
3488
|
-
bucketName: string;
|
3489
|
-
fileSize: number;
|
3490
|
-
fileUrl: string | null;
|
3491
|
-
status?: string | undefined;
|
3492
|
-
};
|
3395
|
+
fileName: string;
|
3396
|
+
fileKey: string;
|
3397
|
+
bucketName: string;
|
3398
|
+
fileSize: number;
|
3399
|
+
fileUrl: string | null;
|
3400
|
+
status?: string | undefined;
|
3493
3401
|
}[];
|
3494
3402
|
}[];
|
3495
3403
|
company: {
|
@@ -3797,19 +3705,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
3797
3705
|
createdAt: Date;
|
3798
3706
|
updatedAt: Date;
|
3799
3707
|
deletedAt: Date | null;
|
3800
|
-
|
3801
|
-
|
3802
|
-
|
3803
|
-
|
3804
|
-
|
3805
|
-
|
3806
|
-
fileName: string;
|
3807
|
-
fileKey: string;
|
3808
|
-
bucketName: string;
|
3809
|
-
fileSize: number;
|
3810
|
-
fileUrl: string | null;
|
3811
|
-
status?: string | undefined;
|
3812
|
-
};
|
3708
|
+
fileName: string;
|
3709
|
+
fileKey: string;
|
3710
|
+
bucketName: string;
|
3711
|
+
fileSize: number;
|
3712
|
+
fileUrl: string | null;
|
3713
|
+
status?: string | undefined;
|
3813
3714
|
}[];
|
3814
3715
|
}[];
|
3815
3716
|
company: {
|
@@ -4713,18 +4614,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
4713
4614
|
};
|
4714
4615
|
};
|
4715
4616
|
platformId: string;
|
4716
|
-
upload: {
|
4717
|
-
id: string;
|
4718
|
-
createdAt: Date;
|
4719
|
-
updatedAt: Date;
|
4720
|
-
deletedAt: Date | null;
|
4721
|
-
fileName: string;
|
4722
|
-
fileKey: string;
|
4723
|
-
bucketName: string;
|
4724
|
-
fileSize: number;
|
4725
|
-
fileUrl: string | null;
|
4726
|
-
status?: string | undefined;
|
4727
|
-
};
|
4728
4617
|
assignee: {
|
4729
4618
|
id: string;
|
4730
4619
|
address: string | null;
|
@@ -4880,19 +4769,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
4880
4769
|
createdAt: Date;
|
4881
4770
|
updatedAt: Date;
|
4882
4771
|
deletedAt: Date | null;
|
4883
|
-
|
4884
|
-
|
4885
|
-
|
4886
|
-
|
4887
|
-
|
4888
|
-
|
4889
|
-
fileName: string;
|
4890
|
-
fileKey: string;
|
4891
|
-
bucketName: string;
|
4892
|
-
fileSize: number;
|
4893
|
-
fileUrl: string | null;
|
4894
|
-
status?: string | undefined;
|
4895
|
-
};
|
4772
|
+
fileName: string;
|
4773
|
+
fileKey: string;
|
4774
|
+
bucketName: string;
|
4775
|
+
fileSize: number;
|
4776
|
+
fileUrl: string | null;
|
4777
|
+
status?: string | undefined;
|
4896
4778
|
}[];
|
4897
4779
|
}[];
|
4898
4780
|
company: {
|
@@ -5096,6 +4978,18 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5096
4978
|
} | undefined;
|
5097
4979
|
} | undefined;
|
5098
4980
|
};
|
4981
|
+
upload: {
|
4982
|
+
id: string;
|
4983
|
+
createdAt: Date;
|
4984
|
+
updatedAt: Date;
|
4985
|
+
deletedAt: Date | null;
|
4986
|
+
fileName: string;
|
4987
|
+
fileKey: string;
|
4988
|
+
bucketName: string;
|
4989
|
+
fileSize: number;
|
4990
|
+
fileUrl: string | null;
|
4991
|
+
status?: string | undefined;
|
4992
|
+
};
|
5099
4993
|
sender: {
|
5100
4994
|
id: string;
|
5101
4995
|
address: string | null;
|
@@ -5196,18 +5090,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5196
5090
|
};
|
5197
5091
|
};
|
5198
5092
|
platformId: string;
|
5199
|
-
upload: {
|
5200
|
-
id: string;
|
5201
|
-
createdAt: Date;
|
5202
|
-
updatedAt: Date;
|
5203
|
-
deletedAt: Date | null;
|
5204
|
-
fileName: string;
|
5205
|
-
fileKey: string;
|
5206
|
-
bucketName: string;
|
5207
|
-
fileSize: number;
|
5208
|
-
fileUrl: string | null;
|
5209
|
-
status?: string | undefined;
|
5210
|
-
};
|
5211
5093
|
assignee: {
|
5212
5094
|
id: string;
|
5213
5095
|
address: string | null;
|
@@ -5363,19 +5245,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5363
5245
|
createdAt: Date;
|
5364
5246
|
updatedAt: Date;
|
5365
5247
|
deletedAt: Date | null;
|
5366
|
-
|
5367
|
-
|
5368
|
-
|
5369
|
-
|
5370
|
-
|
5371
|
-
|
5372
|
-
fileName: string;
|
5373
|
-
fileKey: string;
|
5374
|
-
bucketName: string;
|
5375
|
-
fileSize: number;
|
5376
|
-
fileUrl: string | null;
|
5377
|
-
status?: string | undefined;
|
5378
|
-
};
|
5248
|
+
fileName: string;
|
5249
|
+
fileKey: string;
|
5250
|
+
bucketName: string;
|
5251
|
+
fileSize: number;
|
5252
|
+
fileUrl: string | null;
|
5253
|
+
status?: string | undefined;
|
5379
5254
|
}[];
|
5380
5255
|
}[];
|
5381
5256
|
company: {
|
@@ -5579,6 +5454,18 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5579
5454
|
} | undefined;
|
5580
5455
|
} | undefined;
|
5581
5456
|
};
|
5457
|
+
upload: {
|
5458
|
+
id: string;
|
5459
|
+
createdAt: Date;
|
5460
|
+
updatedAt: Date;
|
5461
|
+
deletedAt: Date | null;
|
5462
|
+
fileName: string;
|
5463
|
+
fileKey: string;
|
5464
|
+
bucketName: string;
|
5465
|
+
fileSize: number;
|
5466
|
+
fileUrl: string | null;
|
5467
|
+
status?: string | undefined;
|
5468
|
+
};
|
5582
5469
|
sender: {
|
5583
5470
|
id: string;
|
5584
5471
|
address: string | null;
|
@@ -5681,18 +5568,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5681
5568
|
};
|
5682
5569
|
};
|
5683
5570
|
platformId: string;
|
5684
|
-
upload: {
|
5685
|
-
id: string;
|
5686
|
-
createdAt: Date;
|
5687
|
-
updatedAt: Date;
|
5688
|
-
deletedAt: Date | null;
|
5689
|
-
fileName: string;
|
5690
|
-
fileKey: string;
|
5691
|
-
bucketName: string;
|
5692
|
-
fileSize: number;
|
5693
|
-
fileUrl: string | null;
|
5694
|
-
status?: string | undefined;
|
5695
|
-
};
|
5696
5571
|
assignee: {
|
5697
5572
|
id: string;
|
5698
5573
|
address: string | null;
|
@@ -5848,19 +5723,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
5848
5723
|
createdAt: Date;
|
5849
5724
|
updatedAt: Date;
|
5850
5725
|
deletedAt: Date | null;
|
5851
|
-
|
5852
|
-
|
5853
|
-
|
5854
|
-
|
5855
|
-
|
5856
|
-
|
5857
|
-
fileName: string;
|
5858
|
-
fileKey: string;
|
5859
|
-
bucketName: string;
|
5860
|
-
fileSize: number;
|
5861
|
-
fileUrl: string | null;
|
5862
|
-
status?: string | undefined;
|
5863
|
-
};
|
5726
|
+
fileName: string;
|
5727
|
+
fileKey: string;
|
5728
|
+
bucketName: string;
|
5729
|
+
fileSize: number;
|
5730
|
+
fileUrl: string | null;
|
5731
|
+
status?: string | undefined;
|
5864
5732
|
}[];
|
5865
5733
|
}[];
|
5866
5734
|
company: {
|
@@ -6064,6 +5932,18 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6064
5932
|
} | undefined;
|
6065
5933
|
} | undefined;
|
6066
5934
|
};
|
5935
|
+
upload: {
|
5936
|
+
id: string;
|
5937
|
+
createdAt: Date;
|
5938
|
+
updatedAt: Date;
|
5939
|
+
deletedAt: Date | null;
|
5940
|
+
fileName: string;
|
5941
|
+
fileKey: string;
|
5942
|
+
bucketName: string;
|
5943
|
+
fileSize: number;
|
5944
|
+
fileUrl: string | null;
|
5945
|
+
status?: string | undefined;
|
5946
|
+
};
|
6067
5947
|
sender: {
|
6068
5948
|
id: string;
|
6069
5949
|
address: string | null;
|
@@ -6167,18 +6047,6 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6167
6047
|
};
|
6168
6048
|
};
|
6169
6049
|
platformId: string;
|
6170
|
-
upload: {
|
6171
|
-
id: string;
|
6172
|
-
createdAt: Date;
|
6173
|
-
updatedAt: Date;
|
6174
|
-
deletedAt: Date | null;
|
6175
|
-
fileName: string;
|
6176
|
-
fileKey: string;
|
6177
|
-
bucketName: string;
|
6178
|
-
fileSize: number;
|
6179
|
-
fileUrl: string | null;
|
6180
|
-
status?: string | undefined;
|
6181
|
-
};
|
6182
6050
|
assignee: {
|
6183
6051
|
id: string;
|
6184
6052
|
address: string | null;
|
@@ -6334,19 +6202,12 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6334
6202
|
createdAt: Date;
|
6335
6203
|
updatedAt: Date;
|
6336
6204
|
deletedAt: Date | null;
|
6337
|
-
|
6338
|
-
|
6339
|
-
|
6340
|
-
|
6341
|
-
|
6342
|
-
|
6343
|
-
fileName: string;
|
6344
|
-
fileKey: string;
|
6345
|
-
bucketName: string;
|
6346
|
-
fileSize: number;
|
6347
|
-
fileUrl: string | null;
|
6348
|
-
status?: string | undefined;
|
6349
|
-
};
|
6205
|
+
fileName: string;
|
6206
|
+
fileKey: string;
|
6207
|
+
bucketName: string;
|
6208
|
+
fileSize: number;
|
6209
|
+
fileUrl: string | null;
|
6210
|
+
status?: string | undefined;
|
6350
6211
|
}[];
|
6351
6212
|
}[];
|
6352
6213
|
company: {
|
@@ -6550,6 +6411,18 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
|
|
6550
6411
|
} | undefined;
|
6551
6412
|
} | undefined;
|
6552
6413
|
};
|
6414
|
+
upload: {
|
6415
|
+
id: string;
|
6416
|
+
createdAt: Date;
|
6417
|
+
updatedAt: Date;
|
6418
|
+
deletedAt: Date | null;
|
6419
|
+
fileName: string;
|
6420
|
+
fileKey: string;
|
6421
|
+
bucketName: string;
|
6422
|
+
fileSize: number;
|
6423
|
+
fileUrl: string | null;
|
6424
|
+
status?: string | undefined;
|
6425
|
+
};
|
6553
6426
|
sender: {
|
6554
6427
|
id: string;
|
6555
6428
|
address: string | null;
|
@@ -7088,77 +6961,34 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
7088
6961
|
createdAt: z.ZodDate;
|
7089
6962
|
updatedAt: z.ZodDate;
|
7090
6963
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
7091
|
-
|
7092
|
-
|
7093
|
-
|
7094
|
-
|
7095
|
-
|
7096
|
-
|
7097
|
-
bucketName: z.ZodString;
|
7098
|
-
fileName: z.ZodString;
|
7099
|
-
fileSize: z.ZodNumber;
|
7100
|
-
fileKey: z.ZodString;
|
7101
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
7102
|
-
status: z.ZodOptional<z.ZodString>;
|
7103
|
-
}, "strip", z.ZodTypeAny, {
|
7104
|
-
id: string;
|
7105
|
-
createdAt: Date;
|
7106
|
-
updatedAt: Date;
|
7107
|
-
deletedAt: Date | null;
|
7108
|
-
fileName: string;
|
7109
|
-
fileKey: string;
|
7110
|
-
bucketName: string;
|
7111
|
-
fileSize: number;
|
7112
|
-
fileUrl: string | null;
|
7113
|
-
status?: string | undefined;
|
7114
|
-
}, {
|
7115
|
-
id: string;
|
7116
|
-
createdAt: Date;
|
7117
|
-
updatedAt: Date;
|
7118
|
-
deletedAt: Date | null;
|
7119
|
-
fileName: string;
|
7120
|
-
fileKey: string;
|
7121
|
-
bucketName: string;
|
7122
|
-
fileSize: number;
|
7123
|
-
fileUrl: string | null;
|
7124
|
-
status?: string | undefined;
|
7125
|
-
}>;
|
6964
|
+
bucketName: z.ZodString;
|
6965
|
+
fileName: z.ZodString;
|
6966
|
+
fileSize: z.ZodNumber;
|
6967
|
+
fileKey: z.ZodString;
|
6968
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
6969
|
+
status: z.ZodOptional<z.ZodString>;
|
7126
6970
|
}, "strip", z.ZodTypeAny, {
|
7127
6971
|
id: string;
|
7128
6972
|
createdAt: Date;
|
7129
6973
|
updatedAt: Date;
|
7130
6974
|
deletedAt: Date | null;
|
7131
|
-
|
7132
|
-
|
7133
|
-
|
7134
|
-
|
7135
|
-
|
7136
|
-
|
7137
|
-
fileName: string;
|
7138
|
-
fileKey: string;
|
7139
|
-
bucketName: string;
|
7140
|
-
fileSize: number;
|
7141
|
-
fileUrl: string | null;
|
7142
|
-
status?: string | undefined;
|
7143
|
-
};
|
6975
|
+
fileName: string;
|
6976
|
+
fileKey: string;
|
6977
|
+
bucketName: string;
|
6978
|
+
fileSize: number;
|
6979
|
+
fileUrl: string | null;
|
6980
|
+
status?: string | undefined;
|
7144
6981
|
}, {
|
7145
6982
|
id: string;
|
7146
6983
|
createdAt: Date;
|
7147
6984
|
updatedAt: Date;
|
7148
6985
|
deletedAt: Date | null;
|
7149
|
-
|
7150
|
-
|
7151
|
-
|
7152
|
-
|
7153
|
-
|
7154
|
-
|
7155
|
-
fileName: string;
|
7156
|
-
fileKey: string;
|
7157
|
-
bucketName: string;
|
7158
|
-
fileSize: number;
|
7159
|
-
fileUrl: string | null;
|
7160
|
-
status?: string | undefined;
|
7161
|
-
};
|
6986
|
+
fileName: string;
|
6987
|
+
fileKey: string;
|
6988
|
+
bucketName: string;
|
6989
|
+
fileSize: number;
|
6990
|
+
fileUrl: string | null;
|
6991
|
+
status?: string | undefined;
|
7162
6992
|
}>, "many">;
|
7163
6993
|
}, "strip", z.ZodTypeAny, {
|
7164
6994
|
id: string;
|
@@ -7188,19 +7018,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
7188
7018
|
createdAt: Date;
|
7189
7019
|
updatedAt: Date;
|
7190
7020
|
deletedAt: Date | null;
|
7191
|
-
|
7192
|
-
|
7193
|
-
|
7194
|
-
|
7195
|
-
|
7196
|
-
|
7197
|
-
fileName: string;
|
7198
|
-
fileKey: string;
|
7199
|
-
bucketName: string;
|
7200
|
-
fileSize: number;
|
7201
|
-
fileUrl: string | null;
|
7202
|
-
status?: string | undefined;
|
7203
|
-
};
|
7021
|
+
fileName: string;
|
7022
|
+
fileKey: string;
|
7023
|
+
bucketName: string;
|
7024
|
+
fileSize: number;
|
7025
|
+
fileUrl: string | null;
|
7026
|
+
status?: string | undefined;
|
7204
7027
|
}[];
|
7205
7028
|
}, {
|
7206
7029
|
id: string;
|
@@ -7230,19 +7053,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
7230
7053
|
createdAt: Date;
|
7231
7054
|
updatedAt: Date;
|
7232
7055
|
deletedAt: Date | null;
|
7233
|
-
|
7234
|
-
|
7235
|
-
|
7236
|
-
|
7237
|
-
|
7238
|
-
|
7239
|
-
fileName: string;
|
7240
|
-
fileKey: string;
|
7241
|
-
bucketName: string;
|
7242
|
-
fileSize: number;
|
7243
|
-
fileUrl: string | null;
|
7244
|
-
status?: string | undefined;
|
7245
|
-
};
|
7056
|
+
fileName: string;
|
7057
|
+
fileKey: string;
|
7058
|
+
bucketName: string;
|
7059
|
+
fileSize: number;
|
7060
|
+
fileUrl: string | null;
|
7061
|
+
status?: string | undefined;
|
7246
7062
|
}[];
|
7247
7063
|
}>, "many">>;
|
7248
7064
|
contactEmails: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
@@ -7405,19 +7221,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
7405
7221
|
createdAt: Date;
|
7406
7222
|
updatedAt: Date;
|
7407
7223
|
deletedAt: Date | null;
|
7408
|
-
|
7409
|
-
|
7410
|
-
|
7411
|
-
|
7412
|
-
|
7413
|
-
|
7414
|
-
fileName: string;
|
7415
|
-
fileKey: string;
|
7416
|
-
bucketName: string;
|
7417
|
-
fileSize: number;
|
7418
|
-
fileUrl: string | null;
|
7419
|
-
status?: string | undefined;
|
7420
|
-
};
|
7224
|
+
fileName: string;
|
7225
|
+
fileKey: string;
|
7226
|
+
bucketName: string;
|
7227
|
+
fileSize: number;
|
7228
|
+
fileUrl: string | null;
|
7229
|
+
status?: string | undefined;
|
7421
7230
|
}[];
|
7422
7231
|
}[] | undefined;
|
7423
7232
|
contactEmails?: {
|
@@ -7508,19 +7317,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
7508
7317
|
createdAt: Date;
|
7509
7318
|
updatedAt: Date;
|
7510
7319
|
deletedAt: Date | null;
|
7511
|
-
|
7512
|
-
|
7513
|
-
|
7514
|
-
|
7515
|
-
|
7516
|
-
|
7517
|
-
fileName: string;
|
7518
|
-
fileKey: string;
|
7519
|
-
bucketName: string;
|
7520
|
-
fileSize: number;
|
7521
|
-
fileUrl: string | null;
|
7522
|
-
status?: string | undefined;
|
7523
|
-
};
|
7320
|
+
fileName: string;
|
7321
|
+
fileKey: string;
|
7322
|
+
bucketName: string;
|
7323
|
+
fileSize: number;
|
7324
|
+
fileUrl: string | null;
|
7325
|
+
status?: string | undefined;
|
7524
7326
|
}[];
|
7525
7327
|
}[] | undefined;
|
7526
7328
|
contactEmails?: {
|
@@ -7624,19 +7426,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
7624
7426
|
createdAt: Date;
|
7625
7427
|
updatedAt: Date;
|
7626
7428
|
deletedAt: Date | null;
|
7627
|
-
|
7628
|
-
|
7629
|
-
|
7630
|
-
|
7631
|
-
|
7632
|
-
|
7633
|
-
fileName: string;
|
7634
|
-
fileKey: string;
|
7635
|
-
bucketName: string;
|
7636
|
-
fileSize: number;
|
7637
|
-
fileUrl: string | null;
|
7638
|
-
status?: string | undefined;
|
7639
|
-
};
|
7429
|
+
fileName: string;
|
7430
|
+
fileKey: string;
|
7431
|
+
bucketName: string;
|
7432
|
+
fileSize: number;
|
7433
|
+
fileUrl: string | null;
|
7434
|
+
status?: string | undefined;
|
7640
7435
|
}[];
|
7641
7436
|
}[] | undefined;
|
7642
7437
|
contactEmails?: {
|
@@ -7742,19 +7537,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
7742
7537
|
createdAt: Date;
|
7743
7538
|
updatedAt: Date;
|
7744
7539
|
deletedAt: Date | null;
|
7745
|
-
|
7746
|
-
|
7747
|
-
|
7748
|
-
|
7749
|
-
|
7750
|
-
|
7751
|
-
fileName: string;
|
7752
|
-
fileKey: string;
|
7753
|
-
bucketName: string;
|
7754
|
-
fileSize: number;
|
7755
|
-
fileUrl: string | null;
|
7756
|
-
status?: string | undefined;
|
7757
|
-
};
|
7540
|
+
fileName: string;
|
7541
|
+
fileKey: string;
|
7542
|
+
bucketName: string;
|
7543
|
+
fileSize: number;
|
7544
|
+
fileUrl: string | null;
|
7545
|
+
status?: string | undefined;
|
7758
7546
|
}[];
|
7759
7547
|
}[] | undefined;
|
7760
7548
|
contactEmails?: {
|
@@ -8520,19 +8308,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
8520
8308
|
createdAt: Date;
|
8521
8309
|
updatedAt: Date;
|
8522
8310
|
deletedAt: Date | null;
|
8523
|
-
|
8524
|
-
|
8525
|
-
|
8526
|
-
|
8527
|
-
|
8528
|
-
|
8529
|
-
fileName: string;
|
8530
|
-
fileKey: string;
|
8531
|
-
bucketName: string;
|
8532
|
-
fileSize: number;
|
8533
|
-
fileUrl: string | null;
|
8534
|
-
status?: string | undefined;
|
8535
|
-
};
|
8311
|
+
fileName: string;
|
8312
|
+
fileKey: string;
|
8313
|
+
bucketName: string;
|
8314
|
+
fileSize: number;
|
8315
|
+
fileUrl: string | null;
|
8316
|
+
status?: string | undefined;
|
8536
8317
|
}[];
|
8537
8318
|
}[] | undefined;
|
8538
8319
|
contactEmails?: {
|
@@ -8798,19 +8579,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
8798
8579
|
createdAt: Date;
|
8799
8580
|
updatedAt: Date;
|
8800
8581
|
deletedAt: Date | null;
|
8801
|
-
|
8802
|
-
|
8803
|
-
|
8804
|
-
|
8805
|
-
|
8806
|
-
|
8807
|
-
fileName: string;
|
8808
|
-
fileKey: string;
|
8809
|
-
bucketName: string;
|
8810
|
-
fileSize: number;
|
8811
|
-
fileUrl: string | null;
|
8812
|
-
status?: string | undefined;
|
8813
|
-
};
|
8582
|
+
fileName: string;
|
8583
|
+
fileKey: string;
|
8584
|
+
bucketName: string;
|
8585
|
+
fileSize: number;
|
8586
|
+
fileUrl: string | null;
|
8587
|
+
status?: string | undefined;
|
8814
8588
|
}[];
|
8815
8589
|
}[] | undefined;
|
8816
8590
|
contactEmails?: {
|
@@ -9733,19 +9507,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
9733
9507
|
createdAt: Date;
|
9734
9508
|
updatedAt: Date;
|
9735
9509
|
deletedAt: Date | null;
|
9736
|
-
|
9737
|
-
|
9738
|
-
|
9739
|
-
|
9740
|
-
|
9741
|
-
|
9742
|
-
fileName: string;
|
9743
|
-
fileKey: string;
|
9744
|
-
bucketName: string;
|
9745
|
-
fileSize: number;
|
9746
|
-
fileUrl: string | null;
|
9747
|
-
status?: string | undefined;
|
9748
|
-
};
|
9510
|
+
fileName: string;
|
9511
|
+
fileKey: string;
|
9512
|
+
bucketName: string;
|
9513
|
+
fileSize: number;
|
9514
|
+
fileUrl: string | null;
|
9515
|
+
status?: string | undefined;
|
9749
9516
|
}[];
|
9750
9517
|
}[] | undefined;
|
9751
9518
|
contactEmails?: {
|
@@ -10173,19 +9940,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10173
9940
|
createdAt: Date;
|
10174
9941
|
updatedAt: Date;
|
10175
9942
|
deletedAt: Date | null;
|
10176
|
-
|
10177
|
-
|
10178
|
-
|
10179
|
-
|
10180
|
-
|
10181
|
-
|
10182
|
-
fileName: string;
|
10183
|
-
fileKey: string;
|
10184
|
-
bucketName: string;
|
10185
|
-
fileSize: number;
|
10186
|
-
fileUrl: string | null;
|
10187
|
-
status?: string | undefined;
|
10188
|
-
};
|
9943
|
+
fileName: string;
|
9944
|
+
fileKey: string;
|
9945
|
+
bucketName: string;
|
9946
|
+
fileSize: number;
|
9947
|
+
fileUrl: string | null;
|
9948
|
+
status?: string | undefined;
|
10189
9949
|
}[];
|
10190
9950
|
}[] | undefined;
|
10191
9951
|
contactEmails?: {
|
@@ -10615,19 +10375,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
10615
10375
|
createdAt: Date;
|
10616
10376
|
updatedAt: Date;
|
10617
10377
|
deletedAt: Date | null;
|
10618
|
-
|
10619
|
-
|
10620
|
-
|
10621
|
-
|
10622
|
-
|
10623
|
-
|
10624
|
-
fileName: string;
|
10625
|
-
fileKey: string;
|
10626
|
-
bucketName: string;
|
10627
|
-
fileSize: number;
|
10628
|
-
fileUrl: string | null;
|
10629
|
-
status?: string | undefined;
|
10630
|
-
};
|
10378
|
+
fileName: string;
|
10379
|
+
fileKey: string;
|
10380
|
+
bucketName: string;
|
10381
|
+
fileSize: number;
|
10382
|
+
fileUrl: string | null;
|
10383
|
+
status?: string | undefined;
|
10631
10384
|
}[];
|
10632
10385
|
}[] | undefined;
|
10633
10386
|
contactEmails?: {
|
@@ -11057,19 +10810,12 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
|
|
11057
10810
|
createdAt: Date;
|
11058
10811
|
updatedAt: Date;
|
11059
10812
|
deletedAt: Date | null;
|
11060
|
-
|
11061
|
-
|
11062
|
-
|
11063
|
-
|
11064
|
-
|
11065
|
-
|
11066
|
-
fileName: string;
|
11067
|
-
fileKey: string;
|
11068
|
-
bucketName: string;
|
11069
|
-
fileSize: number;
|
11070
|
-
fileUrl: string | null;
|
11071
|
-
status?: string | undefined;
|
11072
|
-
};
|
10813
|
+
fileName: string;
|
10814
|
+
fileKey: string;
|
10815
|
+
bucketName: string;
|
10816
|
+
fileSize: number;
|
10817
|
+
fileUrl: string | null;
|
10818
|
+
status?: string | undefined;
|
11073
10819
|
}[];
|
11074
10820
|
}[] | undefined;
|
11075
10821
|
contactEmails?: {
|