@voiceflow/dtos-interact 1.51.0 → 1.52.0
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/build/cjs/request/any-request.dto.d.ts +15 -0
- package/build/cjs/request/any-request.dto.d.ts.map +1 -1
- package/build/cjs/request/live-agent-handoff-request.dto.d.ts +20 -0
- package/build/cjs/request/live-agent-handoff-request.dto.d.ts.map +1 -1
- package/build/cjs/request/live-agent-handoff-request.dto.js +1 -0
- package/build/cjs/request/live-agent-handoff-request.dto.js.map +1 -1
- package/build/cjs/socket/socket-action-send.dto.d.ts +35 -0
- package/build/cjs/socket/socket-action-send.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-message.dto.d.ts +140 -0
- package/build/cjs/socket/socket-message.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-server-restart.dto.d.ts +35 -0
- package/build/cjs/socket/socket-server-restart.dto.d.ts.map +1 -1
- package/build/esm/request/any-request.dto.d.ts +15 -0
- package/build/esm/request/any-request.dto.d.ts.map +1 -1
- package/build/esm/request/live-agent-handoff-request.dto.d.ts +20 -0
- package/build/esm/request/live-agent-handoff-request.dto.d.ts.map +1 -1
- package/build/esm/request/live-agent-handoff-request.dto.js +1 -0
- package/build/esm/request/live-agent-handoff-request.dto.js.map +1 -1
- package/build/esm/socket/socket-action-send.dto.d.ts +35 -0
- package/build/esm/socket/socket-action-send.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-message.dto.d.ts +140 -0
- package/build/esm/socket/socket-message.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-server-restart.dto.d.ts +35 -0
- package/build/esm/socket/socket-server-restart.dto.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1675,18 +1675,21 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1675
1675
|
name: z.ZodString;
|
|
1676
1676
|
size: z.ZodNumber;
|
|
1677
1677
|
type: z.ZodString;
|
|
1678
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1678
1679
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1679
1680
|
}, "strip", z.ZodTypeAny, {
|
|
1680
1681
|
type: string;
|
|
1681
1682
|
name: string;
|
|
1682
1683
|
id: string;
|
|
1683
1684
|
size: number;
|
|
1685
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1684
1686
|
metadata?: Record<string, any> | undefined;
|
|
1685
1687
|
}, {
|
|
1686
1688
|
type: string;
|
|
1687
1689
|
name: string;
|
|
1688
1690
|
id: string;
|
|
1689
1691
|
size: number;
|
|
1692
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1690
1693
|
metadata?: Record<string, any> | undefined;
|
|
1691
1694
|
}>, "many">;
|
|
1692
1695
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1696,6 +1699,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1696
1699
|
name: string;
|
|
1697
1700
|
id: string;
|
|
1698
1701
|
size: number;
|
|
1702
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1699
1703
|
metadata?: Record<string, any> | undefined;
|
|
1700
1704
|
}[];
|
|
1701
1705
|
}, {
|
|
@@ -1705,6 +1709,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1705
1709
|
name: string;
|
|
1706
1710
|
id: string;
|
|
1707
1711
|
size: number;
|
|
1712
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1708
1713
|
metadata?: Record<string, any> | undefined;
|
|
1709
1714
|
}[];
|
|
1710
1715
|
}>, z.ZodObject<{
|
|
@@ -1735,18 +1740,21 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1735
1740
|
name: z.ZodString;
|
|
1736
1741
|
size: z.ZodNumber;
|
|
1737
1742
|
type: z.ZodString;
|
|
1743
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1738
1744
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1739
1745
|
}, "strip", z.ZodTypeAny, {
|
|
1740
1746
|
type: string;
|
|
1741
1747
|
name: string;
|
|
1742
1748
|
id: string;
|
|
1743
1749
|
size: number;
|
|
1750
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1744
1751
|
metadata?: Record<string, any> | undefined;
|
|
1745
1752
|
}, {
|
|
1746
1753
|
type: string;
|
|
1747
1754
|
name: string;
|
|
1748
1755
|
id: string;
|
|
1749
1756
|
size: number;
|
|
1757
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1750
1758
|
metadata?: Record<string, any> | undefined;
|
|
1751
1759
|
}>, "many">;
|
|
1752
1760
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1756,6 +1764,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1756
1764
|
name: string;
|
|
1757
1765
|
id: string;
|
|
1758
1766
|
size: number;
|
|
1767
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1759
1768
|
metadata?: Record<string, any> | undefined;
|
|
1760
1769
|
}[];
|
|
1761
1770
|
}, {
|
|
@@ -1765,6 +1774,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1765
1774
|
name: string;
|
|
1766
1775
|
id: string;
|
|
1767
1776
|
size: number;
|
|
1777
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1768
1778
|
metadata?: Record<string, any> | undefined;
|
|
1769
1779
|
}[];
|
|
1770
1780
|
}>, z.ZodObject<{
|
|
@@ -1795,18 +1805,21 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1795
1805
|
name: z.ZodString;
|
|
1796
1806
|
size: z.ZodNumber;
|
|
1797
1807
|
type: z.ZodString;
|
|
1808
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1798
1809
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1799
1810
|
}, "strip", z.ZodTypeAny, {
|
|
1800
1811
|
type: string;
|
|
1801
1812
|
name: string;
|
|
1802
1813
|
id: string;
|
|
1803
1814
|
size: number;
|
|
1815
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1804
1816
|
metadata?: Record<string, any> | undefined;
|
|
1805
1817
|
}, {
|
|
1806
1818
|
type: string;
|
|
1807
1819
|
name: string;
|
|
1808
1820
|
id: string;
|
|
1809
1821
|
size: number;
|
|
1822
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1810
1823
|
metadata?: Record<string, any> | undefined;
|
|
1811
1824
|
}>, "many">;
|
|
1812
1825
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1816,6 +1829,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1816
1829
|
name: string;
|
|
1817
1830
|
id: string;
|
|
1818
1831
|
size: number;
|
|
1832
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1819
1833
|
metadata?: Record<string, any> | undefined;
|
|
1820
1834
|
}[];
|
|
1821
1835
|
}, {
|
|
@@ -1825,6 +1839,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
1825
1839
|
name: string;
|
|
1826
1840
|
id: string;
|
|
1827
1841
|
size: number;
|
|
1842
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1828
1843
|
metadata?: Record<string, any> | undefined;
|
|
1829
1844
|
}[];
|
|
1830
1845
|
}>, z.ZodObject<{
|
|
@@ -2302,18 +2317,21 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
2302
2317
|
name: z.ZodString;
|
|
2303
2318
|
size: z.ZodNumber;
|
|
2304
2319
|
type: z.ZodString;
|
|
2320
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
2305
2321
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2306
2322
|
}, "strip", z.ZodTypeAny, {
|
|
2307
2323
|
type: string;
|
|
2308
2324
|
name: string;
|
|
2309
2325
|
id: string;
|
|
2310
2326
|
size: number;
|
|
2327
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2311
2328
|
metadata?: Record<string, any> | undefined;
|
|
2312
2329
|
}, {
|
|
2313
2330
|
type: string;
|
|
2314
2331
|
name: string;
|
|
2315
2332
|
id: string;
|
|
2316
2333
|
size: number;
|
|
2334
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2317
2335
|
metadata?: Record<string, any> | undefined;
|
|
2318
2336
|
}>, "many">;
|
|
2319
2337
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -2323,6 +2341,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
2323
2341
|
name: string;
|
|
2324
2342
|
id: string;
|
|
2325
2343
|
size: number;
|
|
2344
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2326
2345
|
metadata?: Record<string, any> | undefined;
|
|
2327
2346
|
}[];
|
|
2328
2347
|
}, {
|
|
@@ -2332,6 +2351,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
2332
2351
|
name: string;
|
|
2333
2352
|
id: string;
|
|
2334
2353
|
size: number;
|
|
2354
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2335
2355
|
metadata?: Record<string, any> | undefined;
|
|
2336
2356
|
}[];
|
|
2337
2357
|
}>, z.ZodObject<{
|
|
@@ -2824,18 +2844,21 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
2824
2844
|
name: z.ZodString;
|
|
2825
2845
|
size: z.ZodNumber;
|
|
2826
2846
|
type: z.ZodString;
|
|
2847
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
2827
2848
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2828
2849
|
}, "strip", z.ZodTypeAny, {
|
|
2829
2850
|
type: string;
|
|
2830
2851
|
name: string;
|
|
2831
2852
|
id: string;
|
|
2832
2853
|
size: number;
|
|
2854
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2833
2855
|
metadata?: Record<string, any> | undefined;
|
|
2834
2856
|
}, {
|
|
2835
2857
|
type: string;
|
|
2836
2858
|
name: string;
|
|
2837
2859
|
id: string;
|
|
2838
2860
|
size: number;
|
|
2861
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2839
2862
|
metadata?: Record<string, any> | undefined;
|
|
2840
2863
|
}>, "many">;
|
|
2841
2864
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -2845,6 +2868,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
2845
2868
|
name: string;
|
|
2846
2869
|
id: string;
|
|
2847
2870
|
size: number;
|
|
2871
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2848
2872
|
metadata?: Record<string, any> | undefined;
|
|
2849
2873
|
}[];
|
|
2850
2874
|
}, {
|
|
@@ -2854,6 +2878,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
2854
2878
|
name: string;
|
|
2855
2879
|
id: string;
|
|
2856
2880
|
size: number;
|
|
2881
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2857
2882
|
metadata?: Record<string, any> | undefined;
|
|
2858
2883
|
}[];
|
|
2859
2884
|
}>, z.ZodObject<{
|
|
@@ -3349,18 +3374,21 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
3349
3374
|
name: z.ZodString;
|
|
3350
3375
|
size: z.ZodNumber;
|
|
3351
3376
|
type: z.ZodString;
|
|
3377
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
3352
3378
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3353
3379
|
}, "strip", z.ZodTypeAny, {
|
|
3354
3380
|
type: string;
|
|
3355
3381
|
name: string;
|
|
3356
3382
|
id: string;
|
|
3357
3383
|
size: number;
|
|
3384
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3358
3385
|
metadata?: Record<string, any> | undefined;
|
|
3359
3386
|
}, {
|
|
3360
3387
|
type: string;
|
|
3361
3388
|
name: string;
|
|
3362
3389
|
id: string;
|
|
3363
3390
|
size: number;
|
|
3391
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3364
3392
|
metadata?: Record<string, any> | undefined;
|
|
3365
3393
|
}>, "many">;
|
|
3366
3394
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3370,6 +3398,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
3370
3398
|
name: string;
|
|
3371
3399
|
id: string;
|
|
3372
3400
|
size: number;
|
|
3401
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3373
3402
|
metadata?: Record<string, any> | undefined;
|
|
3374
3403
|
}[];
|
|
3375
3404
|
}, {
|
|
@@ -3379,6 +3408,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
3379
3408
|
name: string;
|
|
3380
3409
|
id: string;
|
|
3381
3410
|
size: number;
|
|
3411
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3382
3412
|
metadata?: Record<string, any> | undefined;
|
|
3383
3413
|
}[];
|
|
3384
3414
|
}>, z.ZodObject<{
|
|
@@ -3874,18 +3904,21 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
3874
3904
|
name: z.ZodString;
|
|
3875
3905
|
size: z.ZodNumber;
|
|
3876
3906
|
type: z.ZodString;
|
|
3907
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
3877
3908
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3878
3909
|
}, "strip", z.ZodTypeAny, {
|
|
3879
3910
|
type: string;
|
|
3880
3911
|
name: string;
|
|
3881
3912
|
id: string;
|
|
3882
3913
|
size: number;
|
|
3914
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3883
3915
|
metadata?: Record<string, any> | undefined;
|
|
3884
3916
|
}, {
|
|
3885
3917
|
type: string;
|
|
3886
3918
|
name: string;
|
|
3887
3919
|
id: string;
|
|
3888
3920
|
size: number;
|
|
3921
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3889
3922
|
metadata?: Record<string, any> | undefined;
|
|
3890
3923
|
}>, "many">;
|
|
3891
3924
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3895,6 +3928,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
3895
3928
|
name: string;
|
|
3896
3929
|
id: string;
|
|
3897
3930
|
size: number;
|
|
3931
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3898
3932
|
metadata?: Record<string, any> | undefined;
|
|
3899
3933
|
}[];
|
|
3900
3934
|
}, {
|
|
@@ -3904,6 +3938,7 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
3904
3938
|
name: string;
|
|
3905
3939
|
id: string;
|
|
3906
3940
|
size: number;
|
|
3941
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3907
3942
|
metadata?: Record<string, any> | undefined;
|
|
3908
3943
|
}[];
|
|
3909
3944
|
}>, z.ZodObject<{
|
|
@@ -11784,18 +11819,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11784
11819
|
name: z.ZodString;
|
|
11785
11820
|
size: z.ZodNumber;
|
|
11786
11821
|
type: z.ZodString;
|
|
11822
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
11787
11823
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11788
11824
|
}, "strip", z.ZodTypeAny, {
|
|
11789
11825
|
type: string;
|
|
11790
11826
|
name: string;
|
|
11791
11827
|
id: string;
|
|
11792
11828
|
size: number;
|
|
11829
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11793
11830
|
metadata?: Record<string, any> | undefined;
|
|
11794
11831
|
}, {
|
|
11795
11832
|
type: string;
|
|
11796
11833
|
name: string;
|
|
11797
11834
|
id: string;
|
|
11798
11835
|
size: number;
|
|
11836
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11799
11837
|
metadata?: Record<string, any> | undefined;
|
|
11800
11838
|
}>, "many">;
|
|
11801
11839
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11805,6 +11843,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11805
11843
|
name: string;
|
|
11806
11844
|
id: string;
|
|
11807
11845
|
size: number;
|
|
11846
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11808
11847
|
metadata?: Record<string, any> | undefined;
|
|
11809
11848
|
}[];
|
|
11810
11849
|
}, {
|
|
@@ -11814,6 +11853,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11814
11853
|
name: string;
|
|
11815
11854
|
id: string;
|
|
11816
11855
|
size: number;
|
|
11856
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11817
11857
|
metadata?: Record<string, any> | undefined;
|
|
11818
11858
|
}[];
|
|
11819
11859
|
}>, z.ZodObject<{
|
|
@@ -11844,18 +11884,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11844
11884
|
name: z.ZodString;
|
|
11845
11885
|
size: z.ZodNumber;
|
|
11846
11886
|
type: z.ZodString;
|
|
11887
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
11847
11888
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11848
11889
|
}, "strip", z.ZodTypeAny, {
|
|
11849
11890
|
type: string;
|
|
11850
11891
|
name: string;
|
|
11851
11892
|
id: string;
|
|
11852
11893
|
size: number;
|
|
11894
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11853
11895
|
metadata?: Record<string, any> | undefined;
|
|
11854
11896
|
}, {
|
|
11855
11897
|
type: string;
|
|
11856
11898
|
name: string;
|
|
11857
11899
|
id: string;
|
|
11858
11900
|
size: number;
|
|
11901
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11859
11902
|
metadata?: Record<string, any> | undefined;
|
|
11860
11903
|
}>, "many">;
|
|
11861
11904
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11865,6 +11908,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11865
11908
|
name: string;
|
|
11866
11909
|
id: string;
|
|
11867
11910
|
size: number;
|
|
11911
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11868
11912
|
metadata?: Record<string, any> | undefined;
|
|
11869
11913
|
}[];
|
|
11870
11914
|
}, {
|
|
@@ -11874,6 +11918,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11874
11918
|
name: string;
|
|
11875
11919
|
id: string;
|
|
11876
11920
|
size: number;
|
|
11921
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11877
11922
|
metadata?: Record<string, any> | undefined;
|
|
11878
11923
|
}[];
|
|
11879
11924
|
}>, z.ZodObject<{
|
|
@@ -11904,18 +11949,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11904
11949
|
name: z.ZodString;
|
|
11905
11950
|
size: z.ZodNumber;
|
|
11906
11951
|
type: z.ZodString;
|
|
11952
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
11907
11953
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11908
11954
|
}, "strip", z.ZodTypeAny, {
|
|
11909
11955
|
type: string;
|
|
11910
11956
|
name: string;
|
|
11911
11957
|
id: string;
|
|
11912
11958
|
size: number;
|
|
11959
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11913
11960
|
metadata?: Record<string, any> | undefined;
|
|
11914
11961
|
}, {
|
|
11915
11962
|
type: string;
|
|
11916
11963
|
name: string;
|
|
11917
11964
|
id: string;
|
|
11918
11965
|
size: number;
|
|
11966
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11919
11967
|
metadata?: Record<string, any> | undefined;
|
|
11920
11968
|
}>, "many">;
|
|
11921
11969
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11925,6 +11973,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11925
11973
|
name: string;
|
|
11926
11974
|
id: string;
|
|
11927
11975
|
size: number;
|
|
11976
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11928
11977
|
metadata?: Record<string, any> | undefined;
|
|
11929
11978
|
}[];
|
|
11930
11979
|
}, {
|
|
@@ -11934,6 +11983,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11934
11983
|
name: string;
|
|
11935
11984
|
id: string;
|
|
11936
11985
|
size: number;
|
|
11986
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11937
11987
|
metadata?: Record<string, any> | undefined;
|
|
11938
11988
|
}[];
|
|
11939
11989
|
}>, z.ZodObject<{
|
|
@@ -12394,18 +12444,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12394
12444
|
name: z.ZodString;
|
|
12395
12445
|
size: z.ZodNumber;
|
|
12396
12446
|
type: z.ZodString;
|
|
12447
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
12397
12448
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12398
12449
|
}, "strip", z.ZodTypeAny, {
|
|
12399
12450
|
type: string;
|
|
12400
12451
|
name: string;
|
|
12401
12452
|
id: string;
|
|
12402
12453
|
size: number;
|
|
12454
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12403
12455
|
metadata?: Record<string, any> | undefined;
|
|
12404
12456
|
}, {
|
|
12405
12457
|
type: string;
|
|
12406
12458
|
name: string;
|
|
12407
12459
|
id: string;
|
|
12408
12460
|
size: number;
|
|
12461
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12409
12462
|
metadata?: Record<string, any> | undefined;
|
|
12410
12463
|
}>, "many">;
|
|
12411
12464
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -12415,6 +12468,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12415
12468
|
name: string;
|
|
12416
12469
|
id: string;
|
|
12417
12470
|
size: number;
|
|
12471
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12418
12472
|
metadata?: Record<string, any> | undefined;
|
|
12419
12473
|
}[];
|
|
12420
12474
|
}, {
|
|
@@ -12424,6 +12478,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12424
12478
|
name: string;
|
|
12425
12479
|
id: string;
|
|
12426
12480
|
size: number;
|
|
12481
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12427
12482
|
metadata?: Record<string, any> | undefined;
|
|
12428
12483
|
}[];
|
|
12429
12484
|
}>, z.ZodObject<{
|
|
@@ -12907,18 +12962,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12907
12962
|
name: z.ZodString;
|
|
12908
12963
|
size: z.ZodNumber;
|
|
12909
12964
|
type: z.ZodString;
|
|
12965
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
12910
12966
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12911
12967
|
}, "strip", z.ZodTypeAny, {
|
|
12912
12968
|
type: string;
|
|
12913
12969
|
name: string;
|
|
12914
12970
|
id: string;
|
|
12915
12971
|
size: number;
|
|
12972
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12916
12973
|
metadata?: Record<string, any> | undefined;
|
|
12917
12974
|
}, {
|
|
12918
12975
|
type: string;
|
|
12919
12976
|
name: string;
|
|
12920
12977
|
id: string;
|
|
12921
12978
|
size: number;
|
|
12979
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12922
12980
|
metadata?: Record<string, any> | undefined;
|
|
12923
12981
|
}>, "many">;
|
|
12924
12982
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -12928,6 +12986,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12928
12986
|
name: string;
|
|
12929
12987
|
id: string;
|
|
12930
12988
|
size: number;
|
|
12989
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12931
12990
|
metadata?: Record<string, any> | undefined;
|
|
12932
12991
|
}[];
|
|
12933
12992
|
}, {
|
|
@@ -12937,6 +12996,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12937
12996
|
name: string;
|
|
12938
12997
|
id: string;
|
|
12939
12998
|
size: number;
|
|
12999
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12940
13000
|
metadata?: Record<string, any> | undefined;
|
|
12941
13001
|
}[];
|
|
12942
13002
|
}>, z.ZodObject<{
|
|
@@ -13423,18 +13483,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13423
13483
|
name: z.ZodString;
|
|
13424
13484
|
size: z.ZodNumber;
|
|
13425
13485
|
type: z.ZodString;
|
|
13486
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
13426
13487
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13427
13488
|
}, "strip", z.ZodTypeAny, {
|
|
13428
13489
|
type: string;
|
|
13429
13490
|
name: string;
|
|
13430
13491
|
id: string;
|
|
13431
13492
|
size: number;
|
|
13493
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13432
13494
|
metadata?: Record<string, any> | undefined;
|
|
13433
13495
|
}, {
|
|
13434
13496
|
type: string;
|
|
13435
13497
|
name: string;
|
|
13436
13498
|
id: string;
|
|
13437
13499
|
size: number;
|
|
13500
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13438
13501
|
metadata?: Record<string, any> | undefined;
|
|
13439
13502
|
}>, "many">;
|
|
13440
13503
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -13444,6 +13507,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13444
13507
|
name: string;
|
|
13445
13508
|
id: string;
|
|
13446
13509
|
size: number;
|
|
13510
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13447
13511
|
metadata?: Record<string, any> | undefined;
|
|
13448
13512
|
}[];
|
|
13449
13513
|
}, {
|
|
@@ -13453,6 +13517,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13453
13517
|
name: string;
|
|
13454
13518
|
id: string;
|
|
13455
13519
|
size: number;
|
|
13520
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13456
13521
|
metadata?: Record<string, any> | undefined;
|
|
13457
13522
|
}[];
|
|
13458
13523
|
}>, z.ZodObject<{
|
|
@@ -13939,18 +14004,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13939
14004
|
name: z.ZodString;
|
|
13940
14005
|
size: z.ZodNumber;
|
|
13941
14006
|
type: z.ZodString;
|
|
14007
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
13942
14008
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13943
14009
|
}, "strip", z.ZodTypeAny, {
|
|
13944
14010
|
type: string;
|
|
13945
14011
|
name: string;
|
|
13946
14012
|
id: string;
|
|
13947
14013
|
size: number;
|
|
14014
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13948
14015
|
metadata?: Record<string, any> | undefined;
|
|
13949
14016
|
}, {
|
|
13950
14017
|
type: string;
|
|
13951
14018
|
name: string;
|
|
13952
14019
|
id: string;
|
|
13953
14020
|
size: number;
|
|
14021
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13954
14022
|
metadata?: Record<string, any> | undefined;
|
|
13955
14023
|
}>, "many">;
|
|
13956
14024
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -13960,6 +14028,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13960
14028
|
name: string;
|
|
13961
14029
|
id: string;
|
|
13962
14030
|
size: number;
|
|
14031
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13963
14032
|
metadata?: Record<string, any> | undefined;
|
|
13964
14033
|
}[];
|
|
13965
14034
|
}, {
|
|
@@ -13969,6 +14038,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13969
14038
|
name: string;
|
|
13970
14039
|
id: string;
|
|
13971
14040
|
size: number;
|
|
14041
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13972
14042
|
metadata?: Record<string, any> | undefined;
|
|
13973
14043
|
}[];
|
|
13974
14044
|
}>, z.ZodObject<{
|
|
@@ -15705,18 +15775,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15705
15775
|
name: z.ZodString;
|
|
15706
15776
|
size: z.ZodNumber;
|
|
15707
15777
|
type: z.ZodString;
|
|
15778
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
15708
15779
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15709
15780
|
}, "strip", z.ZodTypeAny, {
|
|
15710
15781
|
type: string;
|
|
15711
15782
|
name: string;
|
|
15712
15783
|
id: string;
|
|
15713
15784
|
size: number;
|
|
15785
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15714
15786
|
metadata?: Record<string, any> | undefined;
|
|
15715
15787
|
}, {
|
|
15716
15788
|
type: string;
|
|
15717
15789
|
name: string;
|
|
15718
15790
|
id: string;
|
|
15719
15791
|
size: number;
|
|
15792
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15720
15793
|
metadata?: Record<string, any> | undefined;
|
|
15721
15794
|
}>, "many">;
|
|
15722
15795
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -15726,6 +15799,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15726
15799
|
name: string;
|
|
15727
15800
|
id: string;
|
|
15728
15801
|
size: number;
|
|
15802
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15729
15803
|
metadata?: Record<string, any> | undefined;
|
|
15730
15804
|
}[];
|
|
15731
15805
|
}, {
|
|
@@ -15735,6 +15809,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15735
15809
|
name: string;
|
|
15736
15810
|
id: string;
|
|
15737
15811
|
size: number;
|
|
15812
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15738
15813
|
metadata?: Record<string, any> | undefined;
|
|
15739
15814
|
}[];
|
|
15740
15815
|
}>, z.ZodObject<{
|
|
@@ -15765,18 +15840,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15765
15840
|
name: z.ZodString;
|
|
15766
15841
|
size: z.ZodNumber;
|
|
15767
15842
|
type: z.ZodString;
|
|
15843
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
15768
15844
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15769
15845
|
}, "strip", z.ZodTypeAny, {
|
|
15770
15846
|
type: string;
|
|
15771
15847
|
name: string;
|
|
15772
15848
|
id: string;
|
|
15773
15849
|
size: number;
|
|
15850
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15774
15851
|
metadata?: Record<string, any> | undefined;
|
|
15775
15852
|
}, {
|
|
15776
15853
|
type: string;
|
|
15777
15854
|
name: string;
|
|
15778
15855
|
id: string;
|
|
15779
15856
|
size: number;
|
|
15857
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15780
15858
|
metadata?: Record<string, any> | undefined;
|
|
15781
15859
|
}>, "many">;
|
|
15782
15860
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -15786,6 +15864,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15786
15864
|
name: string;
|
|
15787
15865
|
id: string;
|
|
15788
15866
|
size: number;
|
|
15867
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15789
15868
|
metadata?: Record<string, any> | undefined;
|
|
15790
15869
|
}[];
|
|
15791
15870
|
}, {
|
|
@@ -15795,6 +15874,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15795
15874
|
name: string;
|
|
15796
15875
|
id: string;
|
|
15797
15876
|
size: number;
|
|
15877
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15798
15878
|
metadata?: Record<string, any> | undefined;
|
|
15799
15879
|
}[];
|
|
15800
15880
|
}>, z.ZodObject<{
|
|
@@ -15825,18 +15905,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15825
15905
|
name: z.ZodString;
|
|
15826
15906
|
size: z.ZodNumber;
|
|
15827
15907
|
type: z.ZodString;
|
|
15908
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
15828
15909
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15829
15910
|
}, "strip", z.ZodTypeAny, {
|
|
15830
15911
|
type: string;
|
|
15831
15912
|
name: string;
|
|
15832
15913
|
id: string;
|
|
15833
15914
|
size: number;
|
|
15915
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15834
15916
|
metadata?: Record<string, any> | undefined;
|
|
15835
15917
|
}, {
|
|
15836
15918
|
type: string;
|
|
15837
15919
|
name: string;
|
|
15838
15920
|
id: string;
|
|
15839
15921
|
size: number;
|
|
15922
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15840
15923
|
metadata?: Record<string, any> | undefined;
|
|
15841
15924
|
}>, "many">;
|
|
15842
15925
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -15846,6 +15929,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15846
15929
|
name: string;
|
|
15847
15930
|
id: string;
|
|
15848
15931
|
size: number;
|
|
15932
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15849
15933
|
metadata?: Record<string, any> | undefined;
|
|
15850
15934
|
}[];
|
|
15851
15935
|
}, {
|
|
@@ -15855,6 +15939,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15855
15939
|
name: string;
|
|
15856
15940
|
id: string;
|
|
15857
15941
|
size: number;
|
|
15942
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15858
15943
|
metadata?: Record<string, any> | undefined;
|
|
15859
15944
|
}[];
|
|
15860
15945
|
}>, z.ZodObject<{
|
|
@@ -16332,18 +16417,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16332
16417
|
name: z.ZodString;
|
|
16333
16418
|
size: z.ZodNumber;
|
|
16334
16419
|
type: z.ZodString;
|
|
16420
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
16335
16421
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16336
16422
|
}, "strip", z.ZodTypeAny, {
|
|
16337
16423
|
type: string;
|
|
16338
16424
|
name: string;
|
|
16339
16425
|
id: string;
|
|
16340
16426
|
size: number;
|
|
16427
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16341
16428
|
metadata?: Record<string, any> | undefined;
|
|
16342
16429
|
}, {
|
|
16343
16430
|
type: string;
|
|
16344
16431
|
name: string;
|
|
16345
16432
|
id: string;
|
|
16346
16433
|
size: number;
|
|
16434
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16347
16435
|
metadata?: Record<string, any> | undefined;
|
|
16348
16436
|
}>, "many">;
|
|
16349
16437
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -16353,6 +16441,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16353
16441
|
name: string;
|
|
16354
16442
|
id: string;
|
|
16355
16443
|
size: number;
|
|
16444
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16356
16445
|
metadata?: Record<string, any> | undefined;
|
|
16357
16446
|
}[];
|
|
16358
16447
|
}, {
|
|
@@ -16362,6 +16451,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16362
16451
|
name: string;
|
|
16363
16452
|
id: string;
|
|
16364
16453
|
size: number;
|
|
16454
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16365
16455
|
metadata?: Record<string, any> | undefined;
|
|
16366
16456
|
}[];
|
|
16367
16457
|
}>, z.ZodObject<{
|
|
@@ -16854,18 +16944,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16854
16944
|
name: z.ZodString;
|
|
16855
16945
|
size: z.ZodNumber;
|
|
16856
16946
|
type: z.ZodString;
|
|
16947
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
16857
16948
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16858
16949
|
}, "strip", z.ZodTypeAny, {
|
|
16859
16950
|
type: string;
|
|
16860
16951
|
name: string;
|
|
16861
16952
|
id: string;
|
|
16862
16953
|
size: number;
|
|
16954
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16863
16955
|
metadata?: Record<string, any> | undefined;
|
|
16864
16956
|
}, {
|
|
16865
16957
|
type: string;
|
|
16866
16958
|
name: string;
|
|
16867
16959
|
id: string;
|
|
16868
16960
|
size: number;
|
|
16961
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16869
16962
|
metadata?: Record<string, any> | undefined;
|
|
16870
16963
|
}>, "many">;
|
|
16871
16964
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -16875,6 +16968,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16875
16968
|
name: string;
|
|
16876
16969
|
id: string;
|
|
16877
16970
|
size: number;
|
|
16971
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16878
16972
|
metadata?: Record<string, any> | undefined;
|
|
16879
16973
|
}[];
|
|
16880
16974
|
}, {
|
|
@@ -16884,6 +16978,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16884
16978
|
name: string;
|
|
16885
16979
|
id: string;
|
|
16886
16980
|
size: number;
|
|
16981
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16887
16982
|
metadata?: Record<string, any> | undefined;
|
|
16888
16983
|
}[];
|
|
16889
16984
|
}>, z.ZodObject<{
|
|
@@ -17379,18 +17474,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17379
17474
|
name: z.ZodString;
|
|
17380
17475
|
size: z.ZodNumber;
|
|
17381
17476
|
type: z.ZodString;
|
|
17477
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
17382
17478
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17383
17479
|
}, "strip", z.ZodTypeAny, {
|
|
17384
17480
|
type: string;
|
|
17385
17481
|
name: string;
|
|
17386
17482
|
id: string;
|
|
17387
17483
|
size: number;
|
|
17484
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17388
17485
|
metadata?: Record<string, any> | undefined;
|
|
17389
17486
|
}, {
|
|
17390
17487
|
type: string;
|
|
17391
17488
|
name: string;
|
|
17392
17489
|
id: string;
|
|
17393
17490
|
size: number;
|
|
17491
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17394
17492
|
metadata?: Record<string, any> | undefined;
|
|
17395
17493
|
}>, "many">;
|
|
17396
17494
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -17400,6 +17498,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17400
17498
|
name: string;
|
|
17401
17499
|
id: string;
|
|
17402
17500
|
size: number;
|
|
17501
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17403
17502
|
metadata?: Record<string, any> | undefined;
|
|
17404
17503
|
}[];
|
|
17405
17504
|
}, {
|
|
@@ -17409,6 +17508,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17409
17508
|
name: string;
|
|
17410
17509
|
id: string;
|
|
17411
17510
|
size: number;
|
|
17511
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17412
17512
|
metadata?: Record<string, any> | undefined;
|
|
17413
17513
|
}[];
|
|
17414
17514
|
}>, z.ZodObject<{
|
|
@@ -17904,18 +18004,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17904
18004
|
name: z.ZodString;
|
|
17905
18005
|
size: z.ZodNumber;
|
|
17906
18006
|
type: z.ZodString;
|
|
18007
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
17907
18008
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17908
18009
|
}, "strip", z.ZodTypeAny, {
|
|
17909
18010
|
type: string;
|
|
17910
18011
|
name: string;
|
|
17911
18012
|
id: string;
|
|
17912
18013
|
size: number;
|
|
18014
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17913
18015
|
metadata?: Record<string, any> | undefined;
|
|
17914
18016
|
}, {
|
|
17915
18017
|
type: string;
|
|
17916
18018
|
name: string;
|
|
17917
18019
|
id: string;
|
|
17918
18020
|
size: number;
|
|
18021
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17919
18022
|
metadata?: Record<string, any> | undefined;
|
|
17920
18023
|
}>, "many">;
|
|
17921
18024
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -17925,6 +18028,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17925
18028
|
name: string;
|
|
17926
18029
|
id: string;
|
|
17927
18030
|
size: number;
|
|
18031
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17928
18032
|
metadata?: Record<string, any> | undefined;
|
|
17929
18033
|
}[];
|
|
17930
18034
|
}, {
|
|
@@ -17934,6 +18038,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17934
18038
|
name: string;
|
|
17935
18039
|
id: string;
|
|
17936
18040
|
size: number;
|
|
18041
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17937
18042
|
metadata?: Record<string, any> | undefined;
|
|
17938
18043
|
}[];
|
|
17939
18044
|
}>, z.ZodObject<{
|
|
@@ -25807,18 +25912,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25807
25912
|
name: z.ZodString;
|
|
25808
25913
|
size: z.ZodNumber;
|
|
25809
25914
|
type: z.ZodString;
|
|
25915
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
25810
25916
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25811
25917
|
}, "strip", z.ZodTypeAny, {
|
|
25812
25918
|
type: string;
|
|
25813
25919
|
name: string;
|
|
25814
25920
|
id: string;
|
|
25815
25921
|
size: number;
|
|
25922
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25816
25923
|
metadata?: Record<string, any> | undefined;
|
|
25817
25924
|
}, {
|
|
25818
25925
|
type: string;
|
|
25819
25926
|
name: string;
|
|
25820
25927
|
id: string;
|
|
25821
25928
|
size: number;
|
|
25929
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25822
25930
|
metadata?: Record<string, any> | undefined;
|
|
25823
25931
|
}>, "many">;
|
|
25824
25932
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -25828,6 +25936,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25828
25936
|
name: string;
|
|
25829
25937
|
id: string;
|
|
25830
25938
|
size: number;
|
|
25939
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25831
25940
|
metadata?: Record<string, any> | undefined;
|
|
25832
25941
|
}[];
|
|
25833
25942
|
}, {
|
|
@@ -25837,6 +25946,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25837
25946
|
name: string;
|
|
25838
25947
|
id: string;
|
|
25839
25948
|
size: number;
|
|
25949
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25840
25950
|
metadata?: Record<string, any> | undefined;
|
|
25841
25951
|
}[];
|
|
25842
25952
|
}>, z.ZodObject<{
|
|
@@ -25867,18 +25977,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25867
25977
|
name: z.ZodString;
|
|
25868
25978
|
size: z.ZodNumber;
|
|
25869
25979
|
type: z.ZodString;
|
|
25980
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
25870
25981
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25871
25982
|
}, "strip", z.ZodTypeAny, {
|
|
25872
25983
|
type: string;
|
|
25873
25984
|
name: string;
|
|
25874
25985
|
id: string;
|
|
25875
25986
|
size: number;
|
|
25987
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25876
25988
|
metadata?: Record<string, any> | undefined;
|
|
25877
25989
|
}, {
|
|
25878
25990
|
type: string;
|
|
25879
25991
|
name: string;
|
|
25880
25992
|
id: string;
|
|
25881
25993
|
size: number;
|
|
25994
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25882
25995
|
metadata?: Record<string, any> | undefined;
|
|
25883
25996
|
}>, "many">;
|
|
25884
25997
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -25888,6 +26001,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25888
26001
|
name: string;
|
|
25889
26002
|
id: string;
|
|
25890
26003
|
size: number;
|
|
26004
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25891
26005
|
metadata?: Record<string, any> | undefined;
|
|
25892
26006
|
}[];
|
|
25893
26007
|
}, {
|
|
@@ -25897,6 +26011,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25897
26011
|
name: string;
|
|
25898
26012
|
id: string;
|
|
25899
26013
|
size: number;
|
|
26014
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25900
26015
|
metadata?: Record<string, any> | undefined;
|
|
25901
26016
|
}[];
|
|
25902
26017
|
}>, z.ZodObject<{
|
|
@@ -25927,18 +26042,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25927
26042
|
name: z.ZodString;
|
|
25928
26043
|
size: z.ZodNumber;
|
|
25929
26044
|
type: z.ZodString;
|
|
26045
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
25930
26046
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25931
26047
|
}, "strip", z.ZodTypeAny, {
|
|
25932
26048
|
type: string;
|
|
25933
26049
|
name: string;
|
|
25934
26050
|
id: string;
|
|
25935
26051
|
size: number;
|
|
26052
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25936
26053
|
metadata?: Record<string, any> | undefined;
|
|
25937
26054
|
}, {
|
|
25938
26055
|
type: string;
|
|
25939
26056
|
name: string;
|
|
25940
26057
|
id: string;
|
|
25941
26058
|
size: number;
|
|
26059
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25942
26060
|
metadata?: Record<string, any> | undefined;
|
|
25943
26061
|
}>, "many">;
|
|
25944
26062
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -25948,6 +26066,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25948
26066
|
name: string;
|
|
25949
26067
|
id: string;
|
|
25950
26068
|
size: number;
|
|
26069
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25951
26070
|
metadata?: Record<string, any> | undefined;
|
|
25952
26071
|
}[];
|
|
25953
26072
|
}, {
|
|
@@ -25957,6 +26076,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25957
26076
|
name: string;
|
|
25958
26077
|
id: string;
|
|
25959
26078
|
size: number;
|
|
26079
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25960
26080
|
metadata?: Record<string, any> | undefined;
|
|
25961
26081
|
}[];
|
|
25962
26082
|
}>, z.ZodObject<{
|
|
@@ -26417,18 +26537,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26417
26537
|
name: z.ZodString;
|
|
26418
26538
|
size: z.ZodNumber;
|
|
26419
26539
|
type: z.ZodString;
|
|
26540
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
26420
26541
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26421
26542
|
}, "strip", z.ZodTypeAny, {
|
|
26422
26543
|
type: string;
|
|
26423
26544
|
name: string;
|
|
26424
26545
|
id: string;
|
|
26425
26546
|
size: number;
|
|
26547
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26426
26548
|
metadata?: Record<string, any> | undefined;
|
|
26427
26549
|
}, {
|
|
26428
26550
|
type: string;
|
|
26429
26551
|
name: string;
|
|
26430
26552
|
id: string;
|
|
26431
26553
|
size: number;
|
|
26554
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26432
26555
|
metadata?: Record<string, any> | undefined;
|
|
26433
26556
|
}>, "many">;
|
|
26434
26557
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -26438,6 +26561,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26438
26561
|
name: string;
|
|
26439
26562
|
id: string;
|
|
26440
26563
|
size: number;
|
|
26564
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26441
26565
|
metadata?: Record<string, any> | undefined;
|
|
26442
26566
|
}[];
|
|
26443
26567
|
}, {
|
|
@@ -26447,6 +26571,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26447
26571
|
name: string;
|
|
26448
26572
|
id: string;
|
|
26449
26573
|
size: number;
|
|
26574
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26450
26575
|
metadata?: Record<string, any> | undefined;
|
|
26451
26576
|
}[];
|
|
26452
26577
|
}>, z.ZodObject<{
|
|
@@ -26930,18 +27055,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26930
27055
|
name: z.ZodString;
|
|
26931
27056
|
size: z.ZodNumber;
|
|
26932
27057
|
type: z.ZodString;
|
|
27058
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
26933
27059
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26934
27060
|
}, "strip", z.ZodTypeAny, {
|
|
26935
27061
|
type: string;
|
|
26936
27062
|
name: string;
|
|
26937
27063
|
id: string;
|
|
26938
27064
|
size: number;
|
|
27065
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26939
27066
|
metadata?: Record<string, any> | undefined;
|
|
26940
27067
|
}, {
|
|
26941
27068
|
type: string;
|
|
26942
27069
|
name: string;
|
|
26943
27070
|
id: string;
|
|
26944
27071
|
size: number;
|
|
27072
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26945
27073
|
metadata?: Record<string, any> | undefined;
|
|
26946
27074
|
}>, "many">;
|
|
26947
27075
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -26951,6 +27079,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26951
27079
|
name: string;
|
|
26952
27080
|
id: string;
|
|
26953
27081
|
size: number;
|
|
27082
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26954
27083
|
metadata?: Record<string, any> | undefined;
|
|
26955
27084
|
}[];
|
|
26956
27085
|
}, {
|
|
@@ -26960,6 +27089,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26960
27089
|
name: string;
|
|
26961
27090
|
id: string;
|
|
26962
27091
|
size: number;
|
|
27092
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26963
27093
|
metadata?: Record<string, any> | undefined;
|
|
26964
27094
|
}[];
|
|
26965
27095
|
}>, z.ZodObject<{
|
|
@@ -27446,18 +27576,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27446
27576
|
name: z.ZodString;
|
|
27447
27577
|
size: z.ZodNumber;
|
|
27448
27578
|
type: z.ZodString;
|
|
27579
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
27449
27580
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
27450
27581
|
}, "strip", z.ZodTypeAny, {
|
|
27451
27582
|
type: string;
|
|
27452
27583
|
name: string;
|
|
27453
27584
|
id: string;
|
|
27454
27585
|
size: number;
|
|
27586
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27455
27587
|
metadata?: Record<string, any> | undefined;
|
|
27456
27588
|
}, {
|
|
27457
27589
|
type: string;
|
|
27458
27590
|
name: string;
|
|
27459
27591
|
id: string;
|
|
27460
27592
|
size: number;
|
|
27593
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27461
27594
|
metadata?: Record<string, any> | undefined;
|
|
27462
27595
|
}>, "many">;
|
|
27463
27596
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -27467,6 +27600,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27467
27600
|
name: string;
|
|
27468
27601
|
id: string;
|
|
27469
27602
|
size: number;
|
|
27603
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27470
27604
|
metadata?: Record<string, any> | undefined;
|
|
27471
27605
|
}[];
|
|
27472
27606
|
}, {
|
|
@@ -27476,6 +27610,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27476
27610
|
name: string;
|
|
27477
27611
|
id: string;
|
|
27478
27612
|
size: number;
|
|
27613
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27479
27614
|
metadata?: Record<string, any> | undefined;
|
|
27480
27615
|
}[];
|
|
27481
27616
|
}>, z.ZodObject<{
|
|
@@ -27962,18 +28097,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27962
28097
|
name: z.ZodString;
|
|
27963
28098
|
size: z.ZodNumber;
|
|
27964
28099
|
type: z.ZodString;
|
|
28100
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
27965
28101
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
27966
28102
|
}, "strip", z.ZodTypeAny, {
|
|
27967
28103
|
type: string;
|
|
27968
28104
|
name: string;
|
|
27969
28105
|
id: string;
|
|
27970
28106
|
size: number;
|
|
28107
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27971
28108
|
metadata?: Record<string, any> | undefined;
|
|
27972
28109
|
}, {
|
|
27973
28110
|
type: string;
|
|
27974
28111
|
name: string;
|
|
27975
28112
|
id: string;
|
|
27976
28113
|
size: number;
|
|
28114
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27977
28115
|
metadata?: Record<string, any> | undefined;
|
|
27978
28116
|
}>, "many">;
|
|
27979
28117
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -27983,6 +28121,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27983
28121
|
name: string;
|
|
27984
28122
|
id: string;
|
|
27985
28123
|
size: number;
|
|
28124
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27986
28125
|
metadata?: Record<string, any> | undefined;
|
|
27987
28126
|
}[];
|
|
27988
28127
|
}, {
|
|
@@ -27992,6 +28131,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27992
28131
|
name: string;
|
|
27993
28132
|
id: string;
|
|
27994
28133
|
size: number;
|
|
28134
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27995
28135
|
metadata?: Record<string, any> | undefined;
|
|
27996
28136
|
}[];
|
|
27997
28137
|
}>, z.ZodObject<{
|