@voiceflow/dtos-interact 1.50.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-action-trace.dto.d.ts +42 -0
- package/build/cjs/socket/socket-action-trace.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-message.dto.d.ts +224 -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/cjs/trace/any.dto.d.ts +26 -0
- package/build/cjs/trace/any.dto.d.ts.map +1 -1
- package/build/cjs/trace/completion.dto.d.ts +26 -0
- package/build/cjs/trace/completion.dto.d.ts.map +1 -1
- package/build/cjs/trace/completion.dto.js +6 -0
- package/build/cjs/trace/completion.dto.js.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-action-trace.dto.d.ts +42 -0
- package/build/esm/socket/socket-action-trace.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-message.dto.d.ts +224 -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/build/esm/trace/any.dto.d.ts +26 -0
- package/build/esm/trace/any.dto.d.ts.map +1 -1
- package/build/esm/trace/completion.dto.d.ts +26 -0
- package/build/esm/trace/completion.dto.d.ts.map +1 -1
- package/build/esm/trace/completion.dto.js +6 -0
- package/build/esm/trace/completion.dto.js.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<{
|
|
@@ -5254,6 +5289,16 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5254
5289
|
payload: z.ZodUnion<[z.ZodObject<{
|
|
5255
5290
|
state: z.ZodLiteral<"start">;
|
|
5256
5291
|
ai: z.ZodOptional<z.ZodBoolean>;
|
|
5292
|
+
sourceUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5293
|
+
url: z.ZodString;
|
|
5294
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5295
|
+
}, "strip", z.ZodTypeAny, {
|
|
5296
|
+
url: string;
|
|
5297
|
+
name?: string | undefined;
|
|
5298
|
+
}, {
|
|
5299
|
+
url: string;
|
|
5300
|
+
name?: string | undefined;
|
|
5301
|
+
}>, "many">>;
|
|
5257
5302
|
delay: z.ZodOptional<z.ZodNumber>;
|
|
5258
5303
|
messageID: z.ZodString;
|
|
5259
5304
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5261,11 +5306,19 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5261
5306
|
state: "start";
|
|
5262
5307
|
ai?: boolean | undefined;
|
|
5263
5308
|
delay?: number | undefined;
|
|
5309
|
+
sourceUrls?: {
|
|
5310
|
+
url: string;
|
|
5311
|
+
name?: string | undefined;
|
|
5312
|
+
}[] | undefined;
|
|
5264
5313
|
}, {
|
|
5265
5314
|
messageID: string;
|
|
5266
5315
|
state: "start";
|
|
5267
5316
|
ai?: boolean | undefined;
|
|
5268
5317
|
delay?: number | undefined;
|
|
5318
|
+
sourceUrls?: {
|
|
5319
|
+
url: string;
|
|
5320
|
+
name?: string | undefined;
|
|
5321
|
+
}[] | undefined;
|
|
5269
5322
|
}>, z.ZodObject<{
|
|
5270
5323
|
state: z.ZodLiteral<"content">;
|
|
5271
5324
|
content: z.ZodString;
|
|
@@ -5289,6 +5342,10 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5289
5342
|
state: "start";
|
|
5290
5343
|
ai?: boolean | undefined;
|
|
5291
5344
|
delay?: number | undefined;
|
|
5345
|
+
sourceUrls?: {
|
|
5346
|
+
url: string;
|
|
5347
|
+
name?: string | undefined;
|
|
5348
|
+
}[] | undefined;
|
|
5292
5349
|
} | {
|
|
5293
5350
|
content: string;
|
|
5294
5351
|
state: "content";
|
|
@@ -5313,6 +5370,10 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5313
5370
|
state: "start";
|
|
5314
5371
|
ai?: boolean | undefined;
|
|
5315
5372
|
delay?: number | undefined;
|
|
5373
|
+
sourceUrls?: {
|
|
5374
|
+
url: string;
|
|
5375
|
+
name?: string | undefined;
|
|
5376
|
+
}[] | undefined;
|
|
5316
5377
|
} | {
|
|
5317
5378
|
content: string;
|
|
5318
5379
|
state: "content";
|
|
@@ -7877,6 +7938,10 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
7877
7938
|
state: "start";
|
|
7878
7939
|
ai?: boolean | undefined;
|
|
7879
7940
|
delay?: number | undefined;
|
|
7941
|
+
sourceUrls?: {
|
|
7942
|
+
url: string;
|
|
7943
|
+
name?: string | undefined;
|
|
7944
|
+
}[] | undefined;
|
|
7880
7945
|
} | {
|
|
7881
7946
|
content: string;
|
|
7882
7947
|
state: "content";
|
|
@@ -8507,6 +8572,10 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
8507
8572
|
state: "start";
|
|
8508
8573
|
ai?: boolean | undefined;
|
|
8509
8574
|
delay?: number | undefined;
|
|
8575
|
+
sourceUrls?: {
|
|
8576
|
+
url: string;
|
|
8577
|
+
name?: string | undefined;
|
|
8578
|
+
}[] | undefined;
|
|
8510
8579
|
} | {
|
|
8511
8580
|
content: string;
|
|
8512
8581
|
state: "content";
|
|
@@ -9140,6 +9209,10 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
9140
9209
|
state: "start";
|
|
9141
9210
|
ai?: boolean | undefined;
|
|
9142
9211
|
delay?: number | undefined;
|
|
9212
|
+
sourceUrls?: {
|
|
9213
|
+
url: string;
|
|
9214
|
+
name?: string | undefined;
|
|
9215
|
+
}[] | undefined;
|
|
9143
9216
|
} | {
|
|
9144
9217
|
content: string;
|
|
9145
9218
|
state: "content";
|
|
@@ -9773,6 +9846,10 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
9773
9846
|
state: "start";
|
|
9774
9847
|
ai?: boolean | undefined;
|
|
9775
9848
|
delay?: number | undefined;
|
|
9849
|
+
sourceUrls?: {
|
|
9850
|
+
url: string;
|
|
9851
|
+
name?: string | undefined;
|
|
9852
|
+
}[] | undefined;
|
|
9776
9853
|
} | {
|
|
9777
9854
|
content: string;
|
|
9778
9855
|
state: "content";
|
|
@@ -11742,18 +11819,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11742
11819
|
name: z.ZodString;
|
|
11743
11820
|
size: z.ZodNumber;
|
|
11744
11821
|
type: z.ZodString;
|
|
11822
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
11745
11823
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11746
11824
|
}, "strip", z.ZodTypeAny, {
|
|
11747
11825
|
type: string;
|
|
11748
11826
|
name: string;
|
|
11749
11827
|
id: string;
|
|
11750
11828
|
size: number;
|
|
11829
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11751
11830
|
metadata?: Record<string, any> | undefined;
|
|
11752
11831
|
}, {
|
|
11753
11832
|
type: string;
|
|
11754
11833
|
name: string;
|
|
11755
11834
|
id: string;
|
|
11756
11835
|
size: number;
|
|
11836
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11757
11837
|
metadata?: Record<string, any> | undefined;
|
|
11758
11838
|
}>, "many">;
|
|
11759
11839
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11763,6 +11843,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11763
11843
|
name: string;
|
|
11764
11844
|
id: string;
|
|
11765
11845
|
size: number;
|
|
11846
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11766
11847
|
metadata?: Record<string, any> | undefined;
|
|
11767
11848
|
}[];
|
|
11768
11849
|
}, {
|
|
@@ -11772,6 +11853,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11772
11853
|
name: string;
|
|
11773
11854
|
id: string;
|
|
11774
11855
|
size: number;
|
|
11856
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11775
11857
|
metadata?: Record<string, any> | undefined;
|
|
11776
11858
|
}[];
|
|
11777
11859
|
}>, z.ZodObject<{
|
|
@@ -11802,18 +11884,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11802
11884
|
name: z.ZodString;
|
|
11803
11885
|
size: z.ZodNumber;
|
|
11804
11886
|
type: z.ZodString;
|
|
11887
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
11805
11888
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11806
11889
|
}, "strip", z.ZodTypeAny, {
|
|
11807
11890
|
type: string;
|
|
11808
11891
|
name: string;
|
|
11809
11892
|
id: string;
|
|
11810
11893
|
size: number;
|
|
11894
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11811
11895
|
metadata?: Record<string, any> | undefined;
|
|
11812
11896
|
}, {
|
|
11813
11897
|
type: string;
|
|
11814
11898
|
name: string;
|
|
11815
11899
|
id: string;
|
|
11816
11900
|
size: number;
|
|
11901
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11817
11902
|
metadata?: Record<string, any> | undefined;
|
|
11818
11903
|
}>, "many">;
|
|
11819
11904
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11823,6 +11908,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11823
11908
|
name: string;
|
|
11824
11909
|
id: string;
|
|
11825
11910
|
size: number;
|
|
11911
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11826
11912
|
metadata?: Record<string, any> | undefined;
|
|
11827
11913
|
}[];
|
|
11828
11914
|
}, {
|
|
@@ -11832,6 +11918,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11832
11918
|
name: string;
|
|
11833
11919
|
id: string;
|
|
11834
11920
|
size: number;
|
|
11921
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11835
11922
|
metadata?: Record<string, any> | undefined;
|
|
11836
11923
|
}[];
|
|
11837
11924
|
}>, z.ZodObject<{
|
|
@@ -11862,18 +11949,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11862
11949
|
name: z.ZodString;
|
|
11863
11950
|
size: z.ZodNumber;
|
|
11864
11951
|
type: z.ZodString;
|
|
11952
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
11865
11953
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
11866
11954
|
}, "strip", z.ZodTypeAny, {
|
|
11867
11955
|
type: string;
|
|
11868
11956
|
name: string;
|
|
11869
11957
|
id: string;
|
|
11870
11958
|
size: number;
|
|
11959
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11871
11960
|
metadata?: Record<string, any> | undefined;
|
|
11872
11961
|
}, {
|
|
11873
11962
|
type: string;
|
|
11874
11963
|
name: string;
|
|
11875
11964
|
id: string;
|
|
11876
11965
|
size: number;
|
|
11966
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11877
11967
|
metadata?: Record<string, any> | undefined;
|
|
11878
11968
|
}>, "many">;
|
|
11879
11969
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11883,6 +11973,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11883
11973
|
name: string;
|
|
11884
11974
|
id: string;
|
|
11885
11975
|
size: number;
|
|
11976
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11886
11977
|
metadata?: Record<string, any> | undefined;
|
|
11887
11978
|
}[];
|
|
11888
11979
|
}, {
|
|
@@ -11892,6 +11983,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11892
11983
|
name: string;
|
|
11893
11984
|
id: string;
|
|
11894
11985
|
size: number;
|
|
11986
|
+
status?: "uploaded" | "failed" | undefined;
|
|
11895
11987
|
metadata?: Record<string, any> | undefined;
|
|
11896
11988
|
}[];
|
|
11897
11989
|
}>, z.ZodObject<{
|
|
@@ -12352,18 +12444,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12352
12444
|
name: z.ZodString;
|
|
12353
12445
|
size: z.ZodNumber;
|
|
12354
12446
|
type: z.ZodString;
|
|
12447
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
12355
12448
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12356
12449
|
}, "strip", z.ZodTypeAny, {
|
|
12357
12450
|
type: string;
|
|
12358
12451
|
name: string;
|
|
12359
12452
|
id: string;
|
|
12360
12453
|
size: number;
|
|
12454
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12361
12455
|
metadata?: Record<string, any> | undefined;
|
|
12362
12456
|
}, {
|
|
12363
12457
|
type: string;
|
|
12364
12458
|
name: string;
|
|
12365
12459
|
id: string;
|
|
12366
12460
|
size: number;
|
|
12461
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12367
12462
|
metadata?: Record<string, any> | undefined;
|
|
12368
12463
|
}>, "many">;
|
|
12369
12464
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -12373,6 +12468,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12373
12468
|
name: string;
|
|
12374
12469
|
id: string;
|
|
12375
12470
|
size: number;
|
|
12471
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12376
12472
|
metadata?: Record<string, any> | undefined;
|
|
12377
12473
|
}[];
|
|
12378
12474
|
}, {
|
|
@@ -12382,6 +12478,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12382
12478
|
name: string;
|
|
12383
12479
|
id: string;
|
|
12384
12480
|
size: number;
|
|
12481
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12385
12482
|
metadata?: Record<string, any> | undefined;
|
|
12386
12483
|
}[];
|
|
12387
12484
|
}>, z.ZodObject<{
|
|
@@ -12865,18 +12962,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12865
12962
|
name: z.ZodString;
|
|
12866
12963
|
size: z.ZodNumber;
|
|
12867
12964
|
type: z.ZodString;
|
|
12965
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
12868
12966
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12869
12967
|
}, "strip", z.ZodTypeAny, {
|
|
12870
12968
|
type: string;
|
|
12871
12969
|
name: string;
|
|
12872
12970
|
id: string;
|
|
12873
12971
|
size: number;
|
|
12972
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12874
12973
|
metadata?: Record<string, any> | undefined;
|
|
12875
12974
|
}, {
|
|
12876
12975
|
type: string;
|
|
12877
12976
|
name: string;
|
|
12878
12977
|
id: string;
|
|
12879
12978
|
size: number;
|
|
12979
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12880
12980
|
metadata?: Record<string, any> | undefined;
|
|
12881
12981
|
}>, "many">;
|
|
12882
12982
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -12886,6 +12986,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12886
12986
|
name: string;
|
|
12887
12987
|
id: string;
|
|
12888
12988
|
size: number;
|
|
12989
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12889
12990
|
metadata?: Record<string, any> | undefined;
|
|
12890
12991
|
}[];
|
|
12891
12992
|
}, {
|
|
@@ -12895,6 +12996,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12895
12996
|
name: string;
|
|
12896
12997
|
id: string;
|
|
12897
12998
|
size: number;
|
|
12999
|
+
status?: "uploaded" | "failed" | undefined;
|
|
12898
13000
|
metadata?: Record<string, any> | undefined;
|
|
12899
13001
|
}[];
|
|
12900
13002
|
}>, z.ZodObject<{
|
|
@@ -13381,18 +13483,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13381
13483
|
name: z.ZodString;
|
|
13382
13484
|
size: z.ZodNumber;
|
|
13383
13485
|
type: z.ZodString;
|
|
13486
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
13384
13487
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13385
13488
|
}, "strip", z.ZodTypeAny, {
|
|
13386
13489
|
type: string;
|
|
13387
13490
|
name: string;
|
|
13388
13491
|
id: string;
|
|
13389
13492
|
size: number;
|
|
13493
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13390
13494
|
metadata?: Record<string, any> | undefined;
|
|
13391
13495
|
}, {
|
|
13392
13496
|
type: string;
|
|
13393
13497
|
name: string;
|
|
13394
13498
|
id: string;
|
|
13395
13499
|
size: number;
|
|
13500
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13396
13501
|
metadata?: Record<string, any> | undefined;
|
|
13397
13502
|
}>, "many">;
|
|
13398
13503
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -13402,6 +13507,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13402
13507
|
name: string;
|
|
13403
13508
|
id: string;
|
|
13404
13509
|
size: number;
|
|
13510
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13405
13511
|
metadata?: Record<string, any> | undefined;
|
|
13406
13512
|
}[];
|
|
13407
13513
|
}, {
|
|
@@ -13411,6 +13517,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13411
13517
|
name: string;
|
|
13412
13518
|
id: string;
|
|
13413
13519
|
size: number;
|
|
13520
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13414
13521
|
metadata?: Record<string, any> | undefined;
|
|
13415
13522
|
}[];
|
|
13416
13523
|
}>, z.ZodObject<{
|
|
@@ -13897,18 +14004,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13897
14004
|
name: z.ZodString;
|
|
13898
14005
|
size: z.ZodNumber;
|
|
13899
14006
|
type: z.ZodString;
|
|
14007
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
13900
14008
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
13901
14009
|
}, "strip", z.ZodTypeAny, {
|
|
13902
14010
|
type: string;
|
|
13903
14011
|
name: string;
|
|
13904
14012
|
id: string;
|
|
13905
14013
|
size: number;
|
|
14014
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13906
14015
|
metadata?: Record<string, any> | undefined;
|
|
13907
14016
|
}, {
|
|
13908
14017
|
type: string;
|
|
13909
14018
|
name: string;
|
|
13910
14019
|
id: string;
|
|
13911
14020
|
size: number;
|
|
14021
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13912
14022
|
metadata?: Record<string, any> | undefined;
|
|
13913
14023
|
}>, "many">;
|
|
13914
14024
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -13918,6 +14028,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13918
14028
|
name: string;
|
|
13919
14029
|
id: string;
|
|
13920
14030
|
size: number;
|
|
14031
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13921
14032
|
metadata?: Record<string, any> | undefined;
|
|
13922
14033
|
}[];
|
|
13923
14034
|
}, {
|
|
@@ -13927,6 +14038,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13927
14038
|
name: string;
|
|
13928
14039
|
id: string;
|
|
13929
14040
|
size: number;
|
|
14041
|
+
status?: "uploaded" | "failed" | undefined;
|
|
13930
14042
|
metadata?: Record<string, any> | undefined;
|
|
13931
14043
|
}[];
|
|
13932
14044
|
}>, z.ZodObject<{
|
|
@@ -15663,18 +15775,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15663
15775
|
name: z.ZodString;
|
|
15664
15776
|
size: z.ZodNumber;
|
|
15665
15777
|
type: z.ZodString;
|
|
15778
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
15666
15779
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15667
15780
|
}, "strip", z.ZodTypeAny, {
|
|
15668
15781
|
type: string;
|
|
15669
15782
|
name: string;
|
|
15670
15783
|
id: string;
|
|
15671
15784
|
size: number;
|
|
15785
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15672
15786
|
metadata?: Record<string, any> | undefined;
|
|
15673
15787
|
}, {
|
|
15674
15788
|
type: string;
|
|
15675
15789
|
name: string;
|
|
15676
15790
|
id: string;
|
|
15677
15791
|
size: number;
|
|
15792
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15678
15793
|
metadata?: Record<string, any> | undefined;
|
|
15679
15794
|
}>, "many">;
|
|
15680
15795
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -15684,6 +15799,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15684
15799
|
name: string;
|
|
15685
15800
|
id: string;
|
|
15686
15801
|
size: number;
|
|
15802
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15687
15803
|
metadata?: Record<string, any> | undefined;
|
|
15688
15804
|
}[];
|
|
15689
15805
|
}, {
|
|
@@ -15693,6 +15809,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15693
15809
|
name: string;
|
|
15694
15810
|
id: string;
|
|
15695
15811
|
size: number;
|
|
15812
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15696
15813
|
metadata?: Record<string, any> | undefined;
|
|
15697
15814
|
}[];
|
|
15698
15815
|
}>, z.ZodObject<{
|
|
@@ -15723,18 +15840,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15723
15840
|
name: z.ZodString;
|
|
15724
15841
|
size: z.ZodNumber;
|
|
15725
15842
|
type: z.ZodString;
|
|
15843
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
15726
15844
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15727
15845
|
}, "strip", z.ZodTypeAny, {
|
|
15728
15846
|
type: string;
|
|
15729
15847
|
name: string;
|
|
15730
15848
|
id: string;
|
|
15731
15849
|
size: number;
|
|
15850
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15732
15851
|
metadata?: Record<string, any> | undefined;
|
|
15733
15852
|
}, {
|
|
15734
15853
|
type: string;
|
|
15735
15854
|
name: string;
|
|
15736
15855
|
id: string;
|
|
15737
15856
|
size: number;
|
|
15857
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15738
15858
|
metadata?: Record<string, any> | undefined;
|
|
15739
15859
|
}>, "many">;
|
|
15740
15860
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -15744,6 +15864,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15744
15864
|
name: string;
|
|
15745
15865
|
id: string;
|
|
15746
15866
|
size: number;
|
|
15867
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15747
15868
|
metadata?: Record<string, any> | undefined;
|
|
15748
15869
|
}[];
|
|
15749
15870
|
}, {
|
|
@@ -15753,6 +15874,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15753
15874
|
name: string;
|
|
15754
15875
|
id: string;
|
|
15755
15876
|
size: number;
|
|
15877
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15756
15878
|
metadata?: Record<string, any> | undefined;
|
|
15757
15879
|
}[];
|
|
15758
15880
|
}>, z.ZodObject<{
|
|
@@ -15783,18 +15905,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15783
15905
|
name: z.ZodString;
|
|
15784
15906
|
size: z.ZodNumber;
|
|
15785
15907
|
type: z.ZodString;
|
|
15908
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
15786
15909
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
15787
15910
|
}, "strip", z.ZodTypeAny, {
|
|
15788
15911
|
type: string;
|
|
15789
15912
|
name: string;
|
|
15790
15913
|
id: string;
|
|
15791
15914
|
size: number;
|
|
15915
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15792
15916
|
metadata?: Record<string, any> | undefined;
|
|
15793
15917
|
}, {
|
|
15794
15918
|
type: string;
|
|
15795
15919
|
name: string;
|
|
15796
15920
|
id: string;
|
|
15797
15921
|
size: number;
|
|
15922
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15798
15923
|
metadata?: Record<string, any> | undefined;
|
|
15799
15924
|
}>, "many">;
|
|
15800
15925
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -15804,6 +15929,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15804
15929
|
name: string;
|
|
15805
15930
|
id: string;
|
|
15806
15931
|
size: number;
|
|
15932
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15807
15933
|
metadata?: Record<string, any> | undefined;
|
|
15808
15934
|
}[];
|
|
15809
15935
|
}, {
|
|
@@ -15813,6 +15939,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
15813
15939
|
name: string;
|
|
15814
15940
|
id: string;
|
|
15815
15941
|
size: number;
|
|
15942
|
+
status?: "uploaded" | "failed" | undefined;
|
|
15816
15943
|
metadata?: Record<string, any> | undefined;
|
|
15817
15944
|
}[];
|
|
15818
15945
|
}>, z.ZodObject<{
|
|
@@ -16290,18 +16417,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16290
16417
|
name: z.ZodString;
|
|
16291
16418
|
size: z.ZodNumber;
|
|
16292
16419
|
type: z.ZodString;
|
|
16420
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
16293
16421
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16294
16422
|
}, "strip", z.ZodTypeAny, {
|
|
16295
16423
|
type: string;
|
|
16296
16424
|
name: string;
|
|
16297
16425
|
id: string;
|
|
16298
16426
|
size: number;
|
|
16427
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16299
16428
|
metadata?: Record<string, any> | undefined;
|
|
16300
16429
|
}, {
|
|
16301
16430
|
type: string;
|
|
16302
16431
|
name: string;
|
|
16303
16432
|
id: string;
|
|
16304
16433
|
size: number;
|
|
16434
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16305
16435
|
metadata?: Record<string, any> | undefined;
|
|
16306
16436
|
}>, "many">;
|
|
16307
16437
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -16311,6 +16441,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16311
16441
|
name: string;
|
|
16312
16442
|
id: string;
|
|
16313
16443
|
size: number;
|
|
16444
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16314
16445
|
metadata?: Record<string, any> | undefined;
|
|
16315
16446
|
}[];
|
|
16316
16447
|
}, {
|
|
@@ -16320,6 +16451,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16320
16451
|
name: string;
|
|
16321
16452
|
id: string;
|
|
16322
16453
|
size: number;
|
|
16454
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16323
16455
|
metadata?: Record<string, any> | undefined;
|
|
16324
16456
|
}[];
|
|
16325
16457
|
}>, z.ZodObject<{
|
|
@@ -16812,18 +16944,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16812
16944
|
name: z.ZodString;
|
|
16813
16945
|
size: z.ZodNumber;
|
|
16814
16946
|
type: z.ZodString;
|
|
16947
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
16815
16948
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
16816
16949
|
}, "strip", z.ZodTypeAny, {
|
|
16817
16950
|
type: string;
|
|
16818
16951
|
name: string;
|
|
16819
16952
|
id: string;
|
|
16820
16953
|
size: number;
|
|
16954
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16821
16955
|
metadata?: Record<string, any> | undefined;
|
|
16822
16956
|
}, {
|
|
16823
16957
|
type: string;
|
|
16824
16958
|
name: string;
|
|
16825
16959
|
id: string;
|
|
16826
16960
|
size: number;
|
|
16961
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16827
16962
|
metadata?: Record<string, any> | undefined;
|
|
16828
16963
|
}>, "many">;
|
|
16829
16964
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -16833,6 +16968,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16833
16968
|
name: string;
|
|
16834
16969
|
id: string;
|
|
16835
16970
|
size: number;
|
|
16971
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16836
16972
|
metadata?: Record<string, any> | undefined;
|
|
16837
16973
|
}[];
|
|
16838
16974
|
}, {
|
|
@@ -16842,6 +16978,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
16842
16978
|
name: string;
|
|
16843
16979
|
id: string;
|
|
16844
16980
|
size: number;
|
|
16981
|
+
status?: "uploaded" | "failed" | undefined;
|
|
16845
16982
|
metadata?: Record<string, any> | undefined;
|
|
16846
16983
|
}[];
|
|
16847
16984
|
}>, z.ZodObject<{
|
|
@@ -17337,18 +17474,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17337
17474
|
name: z.ZodString;
|
|
17338
17475
|
size: z.ZodNumber;
|
|
17339
17476
|
type: z.ZodString;
|
|
17477
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
17340
17478
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17341
17479
|
}, "strip", z.ZodTypeAny, {
|
|
17342
17480
|
type: string;
|
|
17343
17481
|
name: string;
|
|
17344
17482
|
id: string;
|
|
17345
17483
|
size: number;
|
|
17484
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17346
17485
|
metadata?: Record<string, any> | undefined;
|
|
17347
17486
|
}, {
|
|
17348
17487
|
type: string;
|
|
17349
17488
|
name: string;
|
|
17350
17489
|
id: string;
|
|
17351
17490
|
size: number;
|
|
17491
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17352
17492
|
metadata?: Record<string, any> | undefined;
|
|
17353
17493
|
}>, "many">;
|
|
17354
17494
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -17358,6 +17498,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17358
17498
|
name: string;
|
|
17359
17499
|
id: string;
|
|
17360
17500
|
size: number;
|
|
17501
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17361
17502
|
metadata?: Record<string, any> | undefined;
|
|
17362
17503
|
}[];
|
|
17363
17504
|
}, {
|
|
@@ -17367,6 +17508,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17367
17508
|
name: string;
|
|
17368
17509
|
id: string;
|
|
17369
17510
|
size: number;
|
|
17511
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17370
17512
|
metadata?: Record<string, any> | undefined;
|
|
17371
17513
|
}[];
|
|
17372
17514
|
}>, z.ZodObject<{
|
|
@@ -17862,18 +18004,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17862
18004
|
name: z.ZodString;
|
|
17863
18005
|
size: z.ZodNumber;
|
|
17864
18006
|
type: z.ZodString;
|
|
18007
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
17865
18008
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
17866
18009
|
}, "strip", z.ZodTypeAny, {
|
|
17867
18010
|
type: string;
|
|
17868
18011
|
name: string;
|
|
17869
18012
|
id: string;
|
|
17870
18013
|
size: number;
|
|
18014
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17871
18015
|
metadata?: Record<string, any> | undefined;
|
|
17872
18016
|
}, {
|
|
17873
18017
|
type: string;
|
|
17874
18018
|
name: string;
|
|
17875
18019
|
id: string;
|
|
17876
18020
|
size: number;
|
|
18021
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17877
18022
|
metadata?: Record<string, any> | undefined;
|
|
17878
18023
|
}>, "many">;
|
|
17879
18024
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -17883,6 +18028,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17883
18028
|
name: string;
|
|
17884
18029
|
id: string;
|
|
17885
18030
|
size: number;
|
|
18031
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17886
18032
|
metadata?: Record<string, any> | undefined;
|
|
17887
18033
|
}[];
|
|
17888
18034
|
}, {
|
|
@@ -17892,6 +18038,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
17892
18038
|
name: string;
|
|
17893
18039
|
id: string;
|
|
17894
18040
|
size: number;
|
|
18041
|
+
status?: "uploaded" | "failed" | undefined;
|
|
17895
18042
|
metadata?: Record<string, any> | undefined;
|
|
17896
18043
|
}[];
|
|
17897
18044
|
}>, z.ZodObject<{
|
|
@@ -19235,6 +19382,16 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19235
19382
|
payload: z.ZodUnion<[z.ZodObject<{
|
|
19236
19383
|
state: z.ZodLiteral<"start">;
|
|
19237
19384
|
ai: z.ZodOptional<z.ZodBoolean>;
|
|
19385
|
+
sourceUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
19386
|
+
url: z.ZodString;
|
|
19387
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19388
|
+
}, "strip", z.ZodTypeAny, {
|
|
19389
|
+
url: string;
|
|
19390
|
+
name?: string | undefined;
|
|
19391
|
+
}, {
|
|
19392
|
+
url: string;
|
|
19393
|
+
name?: string | undefined;
|
|
19394
|
+
}>, "many">>;
|
|
19238
19395
|
delay: z.ZodOptional<z.ZodNumber>;
|
|
19239
19396
|
messageID: z.ZodString;
|
|
19240
19397
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19242,11 +19399,19 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19242
19399
|
state: "start";
|
|
19243
19400
|
ai?: boolean | undefined;
|
|
19244
19401
|
delay?: number | undefined;
|
|
19402
|
+
sourceUrls?: {
|
|
19403
|
+
url: string;
|
|
19404
|
+
name?: string | undefined;
|
|
19405
|
+
}[] | undefined;
|
|
19245
19406
|
}, {
|
|
19246
19407
|
messageID: string;
|
|
19247
19408
|
state: "start";
|
|
19248
19409
|
ai?: boolean | undefined;
|
|
19249
19410
|
delay?: number | undefined;
|
|
19411
|
+
sourceUrls?: {
|
|
19412
|
+
url: string;
|
|
19413
|
+
name?: string | undefined;
|
|
19414
|
+
}[] | undefined;
|
|
19250
19415
|
}>, z.ZodObject<{
|
|
19251
19416
|
state: z.ZodLiteral<"content">;
|
|
19252
19417
|
content: z.ZodString;
|
|
@@ -19270,6 +19435,10 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19270
19435
|
state: "start";
|
|
19271
19436
|
ai?: boolean | undefined;
|
|
19272
19437
|
delay?: number | undefined;
|
|
19438
|
+
sourceUrls?: {
|
|
19439
|
+
url: string;
|
|
19440
|
+
name?: string | undefined;
|
|
19441
|
+
}[] | undefined;
|
|
19273
19442
|
} | {
|
|
19274
19443
|
content: string;
|
|
19275
19444
|
state: "content";
|
|
@@ -19294,6 +19463,10 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19294
19463
|
state: "start";
|
|
19295
19464
|
ai?: boolean | undefined;
|
|
19296
19465
|
delay?: number | undefined;
|
|
19466
|
+
sourceUrls?: {
|
|
19467
|
+
url: string;
|
|
19468
|
+
name?: string | undefined;
|
|
19469
|
+
}[] | undefined;
|
|
19297
19470
|
} | {
|
|
19298
19471
|
content: string;
|
|
19299
19472
|
state: "content";
|
|
@@ -21858,6 +22031,10 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
21858
22031
|
state: "start";
|
|
21859
22032
|
ai?: boolean | undefined;
|
|
21860
22033
|
delay?: number | undefined;
|
|
22034
|
+
sourceUrls?: {
|
|
22035
|
+
url: string;
|
|
22036
|
+
name?: string | undefined;
|
|
22037
|
+
}[] | undefined;
|
|
21861
22038
|
} | {
|
|
21862
22039
|
content: string;
|
|
21863
22040
|
state: "content";
|
|
@@ -22488,6 +22665,10 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
22488
22665
|
state: "start";
|
|
22489
22666
|
ai?: boolean | undefined;
|
|
22490
22667
|
delay?: number | undefined;
|
|
22668
|
+
sourceUrls?: {
|
|
22669
|
+
url: string;
|
|
22670
|
+
name?: string | undefined;
|
|
22671
|
+
}[] | undefined;
|
|
22491
22672
|
} | {
|
|
22492
22673
|
content: string;
|
|
22493
22674
|
state: "content";
|
|
@@ -23121,6 +23302,10 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
23121
23302
|
state: "start";
|
|
23122
23303
|
ai?: boolean | undefined;
|
|
23123
23304
|
delay?: number | undefined;
|
|
23305
|
+
sourceUrls?: {
|
|
23306
|
+
url: string;
|
|
23307
|
+
name?: string | undefined;
|
|
23308
|
+
}[] | undefined;
|
|
23124
23309
|
} | {
|
|
23125
23310
|
content: string;
|
|
23126
23311
|
state: "content";
|
|
@@ -23754,6 +23939,10 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
23754
23939
|
state: "start";
|
|
23755
23940
|
ai?: boolean | undefined;
|
|
23756
23941
|
delay?: number | undefined;
|
|
23942
|
+
sourceUrls?: {
|
|
23943
|
+
url: string;
|
|
23944
|
+
name?: string | undefined;
|
|
23945
|
+
}[] | undefined;
|
|
23757
23946
|
} | {
|
|
23758
23947
|
content: string;
|
|
23759
23948
|
state: "content";
|
|
@@ -25723,18 +25912,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25723
25912
|
name: z.ZodString;
|
|
25724
25913
|
size: z.ZodNumber;
|
|
25725
25914
|
type: z.ZodString;
|
|
25915
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
25726
25916
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25727
25917
|
}, "strip", z.ZodTypeAny, {
|
|
25728
25918
|
type: string;
|
|
25729
25919
|
name: string;
|
|
25730
25920
|
id: string;
|
|
25731
25921
|
size: number;
|
|
25922
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25732
25923
|
metadata?: Record<string, any> | undefined;
|
|
25733
25924
|
}, {
|
|
25734
25925
|
type: string;
|
|
25735
25926
|
name: string;
|
|
25736
25927
|
id: string;
|
|
25737
25928
|
size: number;
|
|
25929
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25738
25930
|
metadata?: Record<string, any> | undefined;
|
|
25739
25931
|
}>, "many">;
|
|
25740
25932
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -25744,6 +25936,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25744
25936
|
name: string;
|
|
25745
25937
|
id: string;
|
|
25746
25938
|
size: number;
|
|
25939
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25747
25940
|
metadata?: Record<string, any> | undefined;
|
|
25748
25941
|
}[];
|
|
25749
25942
|
}, {
|
|
@@ -25753,6 +25946,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25753
25946
|
name: string;
|
|
25754
25947
|
id: string;
|
|
25755
25948
|
size: number;
|
|
25949
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25756
25950
|
metadata?: Record<string, any> | undefined;
|
|
25757
25951
|
}[];
|
|
25758
25952
|
}>, z.ZodObject<{
|
|
@@ -25783,18 +25977,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25783
25977
|
name: z.ZodString;
|
|
25784
25978
|
size: z.ZodNumber;
|
|
25785
25979
|
type: z.ZodString;
|
|
25980
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
25786
25981
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25787
25982
|
}, "strip", z.ZodTypeAny, {
|
|
25788
25983
|
type: string;
|
|
25789
25984
|
name: string;
|
|
25790
25985
|
id: string;
|
|
25791
25986
|
size: number;
|
|
25987
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25792
25988
|
metadata?: Record<string, any> | undefined;
|
|
25793
25989
|
}, {
|
|
25794
25990
|
type: string;
|
|
25795
25991
|
name: string;
|
|
25796
25992
|
id: string;
|
|
25797
25993
|
size: number;
|
|
25994
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25798
25995
|
metadata?: Record<string, any> | undefined;
|
|
25799
25996
|
}>, "many">;
|
|
25800
25997
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -25804,6 +26001,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25804
26001
|
name: string;
|
|
25805
26002
|
id: string;
|
|
25806
26003
|
size: number;
|
|
26004
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25807
26005
|
metadata?: Record<string, any> | undefined;
|
|
25808
26006
|
}[];
|
|
25809
26007
|
}, {
|
|
@@ -25813,6 +26011,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25813
26011
|
name: string;
|
|
25814
26012
|
id: string;
|
|
25815
26013
|
size: number;
|
|
26014
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25816
26015
|
metadata?: Record<string, any> | undefined;
|
|
25817
26016
|
}[];
|
|
25818
26017
|
}>, z.ZodObject<{
|
|
@@ -25843,18 +26042,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25843
26042
|
name: z.ZodString;
|
|
25844
26043
|
size: z.ZodNumber;
|
|
25845
26044
|
type: z.ZodString;
|
|
26045
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
25846
26046
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25847
26047
|
}, "strip", z.ZodTypeAny, {
|
|
25848
26048
|
type: string;
|
|
25849
26049
|
name: string;
|
|
25850
26050
|
id: string;
|
|
25851
26051
|
size: number;
|
|
26052
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25852
26053
|
metadata?: Record<string, any> | undefined;
|
|
25853
26054
|
}, {
|
|
25854
26055
|
type: string;
|
|
25855
26056
|
name: string;
|
|
25856
26057
|
id: string;
|
|
25857
26058
|
size: number;
|
|
26059
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25858
26060
|
metadata?: Record<string, any> | undefined;
|
|
25859
26061
|
}>, "many">;
|
|
25860
26062
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -25864,6 +26066,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25864
26066
|
name: string;
|
|
25865
26067
|
id: string;
|
|
25866
26068
|
size: number;
|
|
26069
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25867
26070
|
metadata?: Record<string, any> | undefined;
|
|
25868
26071
|
}[];
|
|
25869
26072
|
}, {
|
|
@@ -25873,6 +26076,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25873
26076
|
name: string;
|
|
25874
26077
|
id: string;
|
|
25875
26078
|
size: number;
|
|
26079
|
+
status?: "uploaded" | "failed" | undefined;
|
|
25876
26080
|
metadata?: Record<string, any> | undefined;
|
|
25877
26081
|
}[];
|
|
25878
26082
|
}>, z.ZodObject<{
|
|
@@ -26333,18 +26537,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26333
26537
|
name: z.ZodString;
|
|
26334
26538
|
size: z.ZodNumber;
|
|
26335
26539
|
type: z.ZodString;
|
|
26540
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
26336
26541
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26337
26542
|
}, "strip", z.ZodTypeAny, {
|
|
26338
26543
|
type: string;
|
|
26339
26544
|
name: string;
|
|
26340
26545
|
id: string;
|
|
26341
26546
|
size: number;
|
|
26547
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26342
26548
|
metadata?: Record<string, any> | undefined;
|
|
26343
26549
|
}, {
|
|
26344
26550
|
type: string;
|
|
26345
26551
|
name: string;
|
|
26346
26552
|
id: string;
|
|
26347
26553
|
size: number;
|
|
26554
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26348
26555
|
metadata?: Record<string, any> | undefined;
|
|
26349
26556
|
}>, "many">;
|
|
26350
26557
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -26354,6 +26561,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26354
26561
|
name: string;
|
|
26355
26562
|
id: string;
|
|
26356
26563
|
size: number;
|
|
26564
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26357
26565
|
metadata?: Record<string, any> | undefined;
|
|
26358
26566
|
}[];
|
|
26359
26567
|
}, {
|
|
@@ -26363,6 +26571,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26363
26571
|
name: string;
|
|
26364
26572
|
id: string;
|
|
26365
26573
|
size: number;
|
|
26574
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26366
26575
|
metadata?: Record<string, any> | undefined;
|
|
26367
26576
|
}[];
|
|
26368
26577
|
}>, z.ZodObject<{
|
|
@@ -26846,18 +27055,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26846
27055
|
name: z.ZodString;
|
|
26847
27056
|
size: z.ZodNumber;
|
|
26848
27057
|
type: z.ZodString;
|
|
27058
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
26849
27059
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26850
27060
|
}, "strip", z.ZodTypeAny, {
|
|
26851
27061
|
type: string;
|
|
26852
27062
|
name: string;
|
|
26853
27063
|
id: string;
|
|
26854
27064
|
size: number;
|
|
27065
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26855
27066
|
metadata?: Record<string, any> | undefined;
|
|
26856
27067
|
}, {
|
|
26857
27068
|
type: string;
|
|
26858
27069
|
name: string;
|
|
26859
27070
|
id: string;
|
|
26860
27071
|
size: number;
|
|
27072
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26861
27073
|
metadata?: Record<string, any> | undefined;
|
|
26862
27074
|
}>, "many">;
|
|
26863
27075
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -26867,6 +27079,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26867
27079
|
name: string;
|
|
26868
27080
|
id: string;
|
|
26869
27081
|
size: number;
|
|
27082
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26870
27083
|
metadata?: Record<string, any> | undefined;
|
|
26871
27084
|
}[];
|
|
26872
27085
|
}, {
|
|
@@ -26876,6 +27089,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
26876
27089
|
name: string;
|
|
26877
27090
|
id: string;
|
|
26878
27091
|
size: number;
|
|
27092
|
+
status?: "uploaded" | "failed" | undefined;
|
|
26879
27093
|
metadata?: Record<string, any> | undefined;
|
|
26880
27094
|
}[];
|
|
26881
27095
|
}>, z.ZodObject<{
|
|
@@ -27362,18 +27576,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27362
27576
|
name: z.ZodString;
|
|
27363
27577
|
size: z.ZodNumber;
|
|
27364
27578
|
type: z.ZodString;
|
|
27579
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
27365
27580
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
27366
27581
|
}, "strip", z.ZodTypeAny, {
|
|
27367
27582
|
type: string;
|
|
27368
27583
|
name: string;
|
|
27369
27584
|
id: string;
|
|
27370
27585
|
size: number;
|
|
27586
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27371
27587
|
metadata?: Record<string, any> | undefined;
|
|
27372
27588
|
}, {
|
|
27373
27589
|
type: string;
|
|
27374
27590
|
name: string;
|
|
27375
27591
|
id: string;
|
|
27376
27592
|
size: number;
|
|
27593
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27377
27594
|
metadata?: Record<string, any> | undefined;
|
|
27378
27595
|
}>, "many">;
|
|
27379
27596
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -27383,6 +27600,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27383
27600
|
name: string;
|
|
27384
27601
|
id: string;
|
|
27385
27602
|
size: number;
|
|
27603
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27386
27604
|
metadata?: Record<string, any> | undefined;
|
|
27387
27605
|
}[];
|
|
27388
27606
|
}, {
|
|
@@ -27392,6 +27610,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27392
27610
|
name: string;
|
|
27393
27611
|
id: string;
|
|
27394
27612
|
size: number;
|
|
27613
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27395
27614
|
metadata?: Record<string, any> | undefined;
|
|
27396
27615
|
}[];
|
|
27397
27616
|
}>, z.ZodObject<{
|
|
@@ -27878,18 +28097,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27878
28097
|
name: z.ZodString;
|
|
27879
28098
|
size: z.ZodNumber;
|
|
27880
28099
|
type: z.ZodString;
|
|
28100
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
27881
28101
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
27882
28102
|
}, "strip", z.ZodTypeAny, {
|
|
27883
28103
|
type: string;
|
|
27884
28104
|
name: string;
|
|
27885
28105
|
id: string;
|
|
27886
28106
|
size: number;
|
|
28107
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27887
28108
|
metadata?: Record<string, any> | undefined;
|
|
27888
28109
|
}, {
|
|
27889
28110
|
type: string;
|
|
27890
28111
|
name: string;
|
|
27891
28112
|
id: string;
|
|
27892
28113
|
size: number;
|
|
28114
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27893
28115
|
metadata?: Record<string, any> | undefined;
|
|
27894
28116
|
}>, "many">;
|
|
27895
28117
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -27899,6 +28121,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27899
28121
|
name: string;
|
|
27900
28122
|
id: string;
|
|
27901
28123
|
size: number;
|
|
28124
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27902
28125
|
metadata?: Record<string, any> | undefined;
|
|
27903
28126
|
}[];
|
|
27904
28127
|
}, {
|
|
@@ -27908,6 +28131,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
27908
28131
|
name: string;
|
|
27909
28132
|
id: string;
|
|
27910
28133
|
size: number;
|
|
28134
|
+
status?: "uploaded" | "failed" | undefined;
|
|
27911
28135
|
metadata?: Record<string, any> | undefined;
|
|
27912
28136
|
}[];
|
|
27913
28137
|
}>, z.ZodObject<{
|