@voiceflow/dtos-interact 1.74.0 → 1.74.1-d14f09c8e8.6
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/main.d.ts +1 -0
- package/build/cjs/main.d.ts.map +1 -1
- package/build/cjs/main.js +1 -0
- package/build/cjs/main.js.map +1 -1
- package/build/cjs/request/any-request.dto.d.ts +135 -12
- package/build/cjs/request/any-request.dto.d.ts.map +1 -1
- package/build/cjs/request/any-request.dto.js +2 -0
- package/build/cjs/request/any-request.dto.js.map +1 -1
- package/build/cjs/request/file-request.dto.d.ts +145 -0
- package/build/cjs/request/file-request.dto.d.ts.map +1 -0
- package/build/cjs/request/file-request.dto.js +24 -0
- package/build/cjs/request/file-request.dto.js.map +1 -0
- package/build/cjs/request/live-agent-handoff-request.dto.d.ts +16 -16
- package/build/cjs/request/request-type.enum.d.ts +1 -0
- package/build/cjs/request/request-type.enum.d.ts.map +1 -1
- package/build/cjs/request/request-type.enum.js +1 -0
- package/build/cjs/request/request-type.enum.js.map +1 -1
- package/build/cjs/socket/socket-action-send.dto.d.ts +315 -28
- package/build/cjs/socket/socket-action-send.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-action-trace.dto.d.ts +16 -16
- package/build/cjs/socket/socket-message.dto.d.ts +1425 -277
- package/build/cjs/socket/socket-message.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-server-restart.dto.d.ts +315 -28
- package/build/cjs/socket/socket-server-restart.dto.d.ts.map +1 -1
- package/build/cjs/trace/any.dto.d.ts +8 -8
- package/build/cjs/trace/live-agent-handoff.dto.d.ts +8 -8
- package/build/esm/main.d.ts +1 -0
- package/build/esm/main.d.ts.map +1 -1
- package/build/esm/main.js +1 -0
- package/build/esm/main.js.map +1 -1
- package/build/esm/request/any-request.dto.d.ts +135 -12
- package/build/esm/request/any-request.dto.d.ts.map +1 -1
- package/build/esm/request/any-request.dto.js +2 -0
- package/build/esm/request/any-request.dto.js.map +1 -1
- package/build/esm/request/file-request.dto.d.ts +145 -0
- package/build/esm/request/file-request.dto.d.ts.map +1 -0
- package/build/esm/request/file-request.dto.js +20 -0
- package/build/esm/request/file-request.dto.js.map +1 -0
- package/build/esm/request/live-agent-handoff-request.dto.d.ts +16 -16
- package/build/esm/request/request-type.enum.d.ts +1 -0
- package/build/esm/request/request-type.enum.d.ts.map +1 -1
- package/build/esm/request/request-type.enum.js +1 -0
- package/build/esm/request/request-type.enum.js.map +1 -1
- package/build/esm/socket/socket-action-send.dto.d.ts +315 -28
- package/build/esm/socket/socket-action-send.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-action-trace.dto.d.ts +16 -16
- package/build/esm/socket/socket-message.dto.d.ts +1425 -277
- package/build/esm/socket/socket-message.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-server-restart.dto.d.ts +315 -28
- package/build/esm/socket/socket-server-restart.dto.d.ts.map +1 -1
- package/build/esm/trace/any.dto.d.ts +8 -8
- package/build/esm/trace/live-agent-handoff.dto.d.ts +8 -8
- package/package.json +2 -2
|
@@ -84,6 +84,129 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
84
84
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
85
85
|
time: z.ZodOptional<z.ZodNumber>;
|
|
86
86
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
87
|
+
} & {
|
|
88
|
+
type: z.ZodLiteral<"file">;
|
|
89
|
+
payload: z.ZodObject<{
|
|
90
|
+
text: z.ZodOptional<z.ZodString>;
|
|
91
|
+
files: z.ZodArray<z.ZodObject<{
|
|
92
|
+
url: z.ZodString;
|
|
93
|
+
mimeType: z.ZodString;
|
|
94
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
95
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
96
|
+
}, "strip", z.ZodTypeAny, {
|
|
97
|
+
url: string;
|
|
98
|
+
mimeType: string;
|
|
99
|
+
filename?: string | undefined;
|
|
100
|
+
size?: number | undefined;
|
|
101
|
+
}, {
|
|
102
|
+
url: string;
|
|
103
|
+
mimeType: string;
|
|
104
|
+
filename?: string | undefined;
|
|
105
|
+
size?: number | undefined;
|
|
106
|
+
}>, "many">;
|
|
107
|
+
}, "strip", z.ZodTypeAny, {
|
|
108
|
+
files: {
|
|
109
|
+
url: string;
|
|
110
|
+
mimeType: string;
|
|
111
|
+
filename?: string | undefined;
|
|
112
|
+
size?: number | undefined;
|
|
113
|
+
}[];
|
|
114
|
+
text?: string | undefined;
|
|
115
|
+
}, {
|
|
116
|
+
files: {
|
|
117
|
+
url: string;
|
|
118
|
+
mimeType: string;
|
|
119
|
+
filename?: string | undefined;
|
|
120
|
+
size?: number | undefined;
|
|
121
|
+
}[];
|
|
122
|
+
text?: string | undefined;
|
|
123
|
+
}>;
|
|
124
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
125
|
+
diagramID: z.ZodOptional<z.ZodString>;
|
|
126
|
+
time: z.ZodOptional<z.ZodNumber>;
|
|
127
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
128
|
+
} & {
|
|
129
|
+
type: z.ZodLiteral<"file">;
|
|
130
|
+
payload: z.ZodObject<{
|
|
131
|
+
text: z.ZodOptional<z.ZodString>;
|
|
132
|
+
files: z.ZodArray<z.ZodObject<{
|
|
133
|
+
url: z.ZodString;
|
|
134
|
+
mimeType: z.ZodString;
|
|
135
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
136
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
137
|
+
}, "strip", z.ZodTypeAny, {
|
|
138
|
+
url: string;
|
|
139
|
+
mimeType: string;
|
|
140
|
+
filename?: string | undefined;
|
|
141
|
+
size?: number | undefined;
|
|
142
|
+
}, {
|
|
143
|
+
url: string;
|
|
144
|
+
mimeType: string;
|
|
145
|
+
filename?: string | undefined;
|
|
146
|
+
size?: number | undefined;
|
|
147
|
+
}>, "many">;
|
|
148
|
+
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
files: {
|
|
150
|
+
url: string;
|
|
151
|
+
mimeType: string;
|
|
152
|
+
filename?: string | undefined;
|
|
153
|
+
size?: number | undefined;
|
|
154
|
+
}[];
|
|
155
|
+
text?: string | undefined;
|
|
156
|
+
}, {
|
|
157
|
+
files: {
|
|
158
|
+
url: string;
|
|
159
|
+
mimeType: string;
|
|
160
|
+
filename?: string | undefined;
|
|
161
|
+
size?: number | undefined;
|
|
162
|
+
}[];
|
|
163
|
+
text?: string | undefined;
|
|
164
|
+
}>;
|
|
165
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
166
|
+
diagramID: z.ZodOptional<z.ZodString>;
|
|
167
|
+
time: z.ZodOptional<z.ZodNumber>;
|
|
168
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
169
|
+
} & {
|
|
170
|
+
type: z.ZodLiteral<"file">;
|
|
171
|
+
payload: z.ZodObject<{
|
|
172
|
+
text: z.ZodOptional<z.ZodString>;
|
|
173
|
+
files: z.ZodArray<z.ZodObject<{
|
|
174
|
+
url: z.ZodString;
|
|
175
|
+
mimeType: z.ZodString;
|
|
176
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
177
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
178
|
+
}, "strip", z.ZodTypeAny, {
|
|
179
|
+
url: string;
|
|
180
|
+
mimeType: string;
|
|
181
|
+
filename?: string | undefined;
|
|
182
|
+
size?: number | undefined;
|
|
183
|
+
}, {
|
|
184
|
+
url: string;
|
|
185
|
+
mimeType: string;
|
|
186
|
+
filename?: string | undefined;
|
|
187
|
+
size?: number | undefined;
|
|
188
|
+
}>, "many">;
|
|
189
|
+
}, "strip", z.ZodTypeAny, {
|
|
190
|
+
files: {
|
|
191
|
+
url: string;
|
|
192
|
+
mimeType: string;
|
|
193
|
+
filename?: string | undefined;
|
|
194
|
+
size?: number | undefined;
|
|
195
|
+
}[];
|
|
196
|
+
text?: string | undefined;
|
|
197
|
+
}, {
|
|
198
|
+
files: {
|
|
199
|
+
url: string;
|
|
200
|
+
mimeType: string;
|
|
201
|
+
filename?: string | undefined;
|
|
202
|
+
size?: number | undefined;
|
|
203
|
+
}[];
|
|
204
|
+
text?: string | undefined;
|
|
205
|
+
}>;
|
|
206
|
+
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
207
|
+
diagramID: z.ZodOptional<z.ZodString>;
|
|
208
|
+
time: z.ZodOptional<z.ZodNumber>;
|
|
209
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
87
210
|
} & {
|
|
88
211
|
type: z.ZodLiteral<"action">;
|
|
89
212
|
payload: z.ZodOptional<z.ZodObject<{
|
|
@@ -750,15 +873,15 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
750
873
|
}, "strip", z.ZodTypeAny, {
|
|
751
874
|
type: string;
|
|
752
875
|
name: string;
|
|
753
|
-
id: string;
|
|
754
876
|
size: number;
|
|
877
|
+
id: string;
|
|
755
878
|
status?: "uploaded" | "failed" | undefined;
|
|
756
879
|
metadata?: Record<string, any> | undefined;
|
|
757
880
|
}, {
|
|
758
881
|
type: string;
|
|
759
882
|
name: string;
|
|
760
|
-
id: string;
|
|
761
883
|
size: number;
|
|
884
|
+
id: string;
|
|
762
885
|
status?: "uploaded" | "failed" | undefined;
|
|
763
886
|
metadata?: Record<string, any> | undefined;
|
|
764
887
|
}>, "many">;
|
|
@@ -767,8 +890,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
767
890
|
files: {
|
|
768
891
|
type: string;
|
|
769
892
|
name: string;
|
|
770
|
-
id: string;
|
|
771
893
|
size: number;
|
|
894
|
+
id: string;
|
|
772
895
|
status?: "uploaded" | "failed" | undefined;
|
|
773
896
|
metadata?: Record<string, any> | undefined;
|
|
774
897
|
}[];
|
|
@@ -777,8 +900,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
777
900
|
files: {
|
|
778
901
|
type: string;
|
|
779
902
|
name: string;
|
|
780
|
-
id: string;
|
|
781
903
|
size: number;
|
|
904
|
+
id: string;
|
|
782
905
|
status?: "uploaded" | "failed" | undefined;
|
|
783
906
|
metadata?: Record<string, any> | undefined;
|
|
784
907
|
}[];
|
|
@@ -822,15 +945,15 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
822
945
|
}, "strip", z.ZodTypeAny, {
|
|
823
946
|
type: string;
|
|
824
947
|
name: string;
|
|
825
|
-
id: string;
|
|
826
948
|
size: number;
|
|
949
|
+
id: string;
|
|
827
950
|
status?: "uploaded" | "failed" | undefined;
|
|
828
951
|
metadata?: Record<string, any> | undefined;
|
|
829
952
|
}, {
|
|
830
953
|
type: string;
|
|
831
954
|
name: string;
|
|
832
|
-
id: string;
|
|
833
955
|
size: number;
|
|
956
|
+
id: string;
|
|
834
957
|
status?: "uploaded" | "failed" | undefined;
|
|
835
958
|
metadata?: Record<string, any> | undefined;
|
|
836
959
|
}>, "many">;
|
|
@@ -839,8 +962,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
839
962
|
files: {
|
|
840
963
|
type: string;
|
|
841
964
|
name: string;
|
|
842
|
-
id: string;
|
|
843
965
|
size: number;
|
|
966
|
+
id: string;
|
|
844
967
|
status?: "uploaded" | "failed" | undefined;
|
|
845
968
|
metadata?: Record<string, any> | undefined;
|
|
846
969
|
}[];
|
|
@@ -849,8 +972,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
849
972
|
files: {
|
|
850
973
|
type: string;
|
|
851
974
|
name: string;
|
|
852
|
-
id: string;
|
|
853
975
|
size: number;
|
|
976
|
+
id: string;
|
|
854
977
|
status?: "uploaded" | "failed" | undefined;
|
|
855
978
|
metadata?: Record<string, any> | undefined;
|
|
856
979
|
}[];
|
|
@@ -894,15 +1017,15 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
894
1017
|
}, "strip", z.ZodTypeAny, {
|
|
895
1018
|
type: string;
|
|
896
1019
|
name: string;
|
|
897
|
-
id: string;
|
|
898
1020
|
size: number;
|
|
1021
|
+
id: string;
|
|
899
1022
|
status?: "uploaded" | "failed" | undefined;
|
|
900
1023
|
metadata?: Record<string, any> | undefined;
|
|
901
1024
|
}, {
|
|
902
1025
|
type: string;
|
|
903
1026
|
name: string;
|
|
904
|
-
id: string;
|
|
905
1027
|
size: number;
|
|
1028
|
+
id: string;
|
|
906
1029
|
status?: "uploaded" | "failed" | undefined;
|
|
907
1030
|
metadata?: Record<string, any> | undefined;
|
|
908
1031
|
}>, "many">;
|
|
@@ -911,8 +1034,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
911
1034
|
files: {
|
|
912
1035
|
type: string;
|
|
913
1036
|
name: string;
|
|
914
|
-
id: string;
|
|
915
1037
|
size: number;
|
|
1038
|
+
id: string;
|
|
916
1039
|
status?: "uploaded" | "failed" | undefined;
|
|
917
1040
|
metadata?: Record<string, any> | undefined;
|
|
918
1041
|
}[];
|
|
@@ -921,8 +1044,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
921
1044
|
files: {
|
|
922
1045
|
type: string;
|
|
923
1046
|
name: string;
|
|
924
|
-
id: string;
|
|
925
1047
|
size: number;
|
|
1048
|
+
id: string;
|
|
926
1049
|
status?: "uploaded" | "failed" | undefined;
|
|
927
1050
|
metadata?: Record<string, any> | undefined;
|
|
928
1051
|
}[];
|
|
@@ -1852,6 +1975,47 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1852
1975
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
1853
1976
|
time: z.ZodOptional<z.ZodNumber>;
|
|
1854
1977
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1978
|
+
} & {
|
|
1979
|
+
type: z.ZodLiteral<"file">;
|
|
1980
|
+
payload: z.ZodObject<{
|
|
1981
|
+
text: z.ZodOptional<z.ZodString>;
|
|
1982
|
+
files: z.ZodArray<z.ZodObject<{
|
|
1983
|
+
url: z.ZodString;
|
|
1984
|
+
mimeType: z.ZodString;
|
|
1985
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
1986
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1987
|
+
}, "strip", z.ZodTypeAny, {
|
|
1988
|
+
url: string;
|
|
1989
|
+
mimeType: string;
|
|
1990
|
+
filename?: string | undefined;
|
|
1991
|
+
size?: number | undefined;
|
|
1992
|
+
}, {
|
|
1993
|
+
url: string;
|
|
1994
|
+
mimeType: string;
|
|
1995
|
+
filename?: string | undefined;
|
|
1996
|
+
size?: number | undefined;
|
|
1997
|
+
}>, "many">;
|
|
1998
|
+
}, "strip", z.ZodTypeAny, {
|
|
1999
|
+
files: {
|
|
2000
|
+
url: string;
|
|
2001
|
+
mimeType: string;
|
|
2002
|
+
filename?: string | undefined;
|
|
2003
|
+
size?: number | undefined;
|
|
2004
|
+
}[];
|
|
2005
|
+
text?: string | undefined;
|
|
2006
|
+
}, {
|
|
2007
|
+
files: {
|
|
2008
|
+
url: string;
|
|
2009
|
+
mimeType: string;
|
|
2010
|
+
filename?: string | undefined;
|
|
2011
|
+
size?: number | undefined;
|
|
2012
|
+
}[];
|
|
2013
|
+
text?: string | undefined;
|
|
2014
|
+
}>;
|
|
2015
|
+
}, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
|
|
2016
|
+
diagramID: z.ZodOptional<z.ZodString>;
|
|
2017
|
+
time: z.ZodOptional<z.ZodNumber>;
|
|
2018
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1855
2019
|
} & {
|
|
1856
2020
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
1857
2021
|
payload: z.ZodOptional<z.ZodObject<{
|
|
@@ -2230,15 +2394,15 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2230
2394
|
}, "strip", z.ZodTypeAny, {
|
|
2231
2395
|
type: string;
|
|
2232
2396
|
name: string;
|
|
2233
|
-
id: string;
|
|
2234
2397
|
size: number;
|
|
2398
|
+
id: string;
|
|
2235
2399
|
status?: "uploaded" | "failed" | undefined;
|
|
2236
2400
|
metadata?: Record<string, any> | undefined;
|
|
2237
2401
|
}, {
|
|
2238
2402
|
type: string;
|
|
2239
2403
|
name: string;
|
|
2240
|
-
id: string;
|
|
2241
2404
|
size: number;
|
|
2405
|
+
id: string;
|
|
2242
2406
|
status?: "uploaded" | "failed" | undefined;
|
|
2243
2407
|
metadata?: Record<string, any> | undefined;
|
|
2244
2408
|
}>, "many">;
|
|
@@ -2247,8 +2411,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2247
2411
|
files: {
|
|
2248
2412
|
type: string;
|
|
2249
2413
|
name: string;
|
|
2250
|
-
id: string;
|
|
2251
2414
|
size: number;
|
|
2415
|
+
id: string;
|
|
2252
2416
|
status?: "uploaded" | "failed" | undefined;
|
|
2253
2417
|
metadata?: Record<string, any> | undefined;
|
|
2254
2418
|
}[];
|
|
@@ -2257,8 +2421,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2257
2421
|
files: {
|
|
2258
2422
|
type: string;
|
|
2259
2423
|
name: string;
|
|
2260
|
-
id: string;
|
|
2261
2424
|
size: number;
|
|
2425
|
+
id: string;
|
|
2262
2426
|
status?: "uploaded" | "failed" | undefined;
|
|
2263
2427
|
metadata?: Record<string, any> | undefined;
|
|
2264
2428
|
}[];
|
|
@@ -2405,6 +2569,47 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2405
2569
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
2406
2570
|
time: z.ZodOptional<z.ZodNumber>;
|
|
2407
2571
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2572
|
+
} & {
|
|
2573
|
+
type: z.ZodLiteral<"file">;
|
|
2574
|
+
payload: z.ZodObject<{
|
|
2575
|
+
text: z.ZodOptional<z.ZodString>;
|
|
2576
|
+
files: z.ZodArray<z.ZodObject<{
|
|
2577
|
+
url: z.ZodString;
|
|
2578
|
+
mimeType: z.ZodString;
|
|
2579
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
2580
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
2581
|
+
}, "strip", z.ZodTypeAny, {
|
|
2582
|
+
url: string;
|
|
2583
|
+
mimeType: string;
|
|
2584
|
+
filename?: string | undefined;
|
|
2585
|
+
size?: number | undefined;
|
|
2586
|
+
}, {
|
|
2587
|
+
url: string;
|
|
2588
|
+
mimeType: string;
|
|
2589
|
+
filename?: string | undefined;
|
|
2590
|
+
size?: number | undefined;
|
|
2591
|
+
}>, "many">;
|
|
2592
|
+
}, "strip", z.ZodTypeAny, {
|
|
2593
|
+
files: {
|
|
2594
|
+
url: string;
|
|
2595
|
+
mimeType: string;
|
|
2596
|
+
filename?: string | undefined;
|
|
2597
|
+
size?: number | undefined;
|
|
2598
|
+
}[];
|
|
2599
|
+
text?: string | undefined;
|
|
2600
|
+
}, {
|
|
2601
|
+
files: {
|
|
2602
|
+
url: string;
|
|
2603
|
+
mimeType: string;
|
|
2604
|
+
filename?: string | undefined;
|
|
2605
|
+
size?: number | undefined;
|
|
2606
|
+
}[];
|
|
2607
|
+
text?: string | undefined;
|
|
2608
|
+
}>;
|
|
2609
|
+
}, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
|
|
2610
|
+
diagramID: z.ZodOptional<z.ZodString>;
|
|
2611
|
+
time: z.ZodOptional<z.ZodNumber>;
|
|
2612
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2408
2613
|
} & {
|
|
2409
2614
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
2410
2615
|
payload: z.ZodOptional<z.ZodObject<{
|
|
@@ -2783,15 +2988,15 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2783
2988
|
}, "strip", z.ZodTypeAny, {
|
|
2784
2989
|
type: string;
|
|
2785
2990
|
name: string;
|
|
2786
|
-
id: string;
|
|
2787
2991
|
size: number;
|
|
2992
|
+
id: string;
|
|
2788
2993
|
status?: "uploaded" | "failed" | undefined;
|
|
2789
2994
|
metadata?: Record<string, any> | undefined;
|
|
2790
2995
|
}, {
|
|
2791
2996
|
type: string;
|
|
2792
2997
|
name: string;
|
|
2793
|
-
id: string;
|
|
2794
2998
|
size: number;
|
|
2999
|
+
id: string;
|
|
2795
3000
|
status?: "uploaded" | "failed" | undefined;
|
|
2796
3001
|
metadata?: Record<string, any> | undefined;
|
|
2797
3002
|
}>, "many">;
|
|
@@ -2800,8 +3005,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2800
3005
|
files: {
|
|
2801
3006
|
type: string;
|
|
2802
3007
|
name: string;
|
|
2803
|
-
id: string;
|
|
2804
3008
|
size: number;
|
|
3009
|
+
id: string;
|
|
2805
3010
|
status?: "uploaded" | "failed" | undefined;
|
|
2806
3011
|
metadata?: Record<string, any> | undefined;
|
|
2807
3012
|
}[];
|
|
@@ -2810,8 +3015,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2810
3015
|
files: {
|
|
2811
3016
|
type: string;
|
|
2812
3017
|
name: string;
|
|
2813
|
-
id: string;
|
|
2814
3018
|
size: number;
|
|
3019
|
+
id: string;
|
|
2815
3020
|
status?: "uploaded" | "failed" | undefined;
|
|
2816
3021
|
metadata?: Record<string, any> | undefined;
|
|
2817
3022
|
}[];
|
|
@@ -2961,6 +3166,47 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2961
3166
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
2962
3167
|
time: z.ZodOptional<z.ZodNumber>;
|
|
2963
3168
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3169
|
+
} & {
|
|
3170
|
+
type: z.ZodLiteral<"file">;
|
|
3171
|
+
payload: z.ZodObject<{
|
|
3172
|
+
text: z.ZodOptional<z.ZodString>;
|
|
3173
|
+
files: z.ZodArray<z.ZodObject<{
|
|
3174
|
+
url: z.ZodString;
|
|
3175
|
+
mimeType: z.ZodString;
|
|
3176
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
3177
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
3178
|
+
}, "strip", z.ZodTypeAny, {
|
|
3179
|
+
url: string;
|
|
3180
|
+
mimeType: string;
|
|
3181
|
+
filename?: string | undefined;
|
|
3182
|
+
size?: number | undefined;
|
|
3183
|
+
}, {
|
|
3184
|
+
url: string;
|
|
3185
|
+
mimeType: string;
|
|
3186
|
+
filename?: string | undefined;
|
|
3187
|
+
size?: number | undefined;
|
|
3188
|
+
}>, "many">;
|
|
3189
|
+
}, "strip", z.ZodTypeAny, {
|
|
3190
|
+
files: {
|
|
3191
|
+
url: string;
|
|
3192
|
+
mimeType: string;
|
|
3193
|
+
filename?: string | undefined;
|
|
3194
|
+
size?: number | undefined;
|
|
3195
|
+
}[];
|
|
3196
|
+
text?: string | undefined;
|
|
3197
|
+
}, {
|
|
3198
|
+
files: {
|
|
3199
|
+
url: string;
|
|
3200
|
+
mimeType: string;
|
|
3201
|
+
filename?: string | undefined;
|
|
3202
|
+
size?: number | undefined;
|
|
3203
|
+
}[];
|
|
3204
|
+
text?: string | undefined;
|
|
3205
|
+
}>;
|
|
3206
|
+
}, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
|
|
3207
|
+
diagramID: z.ZodOptional<z.ZodString>;
|
|
3208
|
+
time: z.ZodOptional<z.ZodNumber>;
|
|
3209
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2964
3210
|
} & {
|
|
2965
3211
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
2966
3212
|
payload: z.ZodOptional<z.ZodObject<{
|
|
@@ -3339,15 +3585,15 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3339
3585
|
}, "strip", z.ZodTypeAny, {
|
|
3340
3586
|
type: string;
|
|
3341
3587
|
name: string;
|
|
3342
|
-
id: string;
|
|
3343
3588
|
size: number;
|
|
3589
|
+
id: string;
|
|
3344
3590
|
status?: "uploaded" | "failed" | undefined;
|
|
3345
3591
|
metadata?: Record<string, any> | undefined;
|
|
3346
3592
|
}, {
|
|
3347
3593
|
type: string;
|
|
3348
3594
|
name: string;
|
|
3349
|
-
id: string;
|
|
3350
3595
|
size: number;
|
|
3596
|
+
id: string;
|
|
3351
3597
|
status?: "uploaded" | "failed" | undefined;
|
|
3352
3598
|
metadata?: Record<string, any> | undefined;
|
|
3353
3599
|
}>, "many">;
|
|
@@ -3356,8 +3602,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3356
3602
|
files: {
|
|
3357
3603
|
type: string;
|
|
3358
3604
|
name: string;
|
|
3359
|
-
id: string;
|
|
3360
3605
|
size: number;
|
|
3606
|
+
id: string;
|
|
3361
3607
|
status?: "uploaded" | "failed" | undefined;
|
|
3362
3608
|
metadata?: Record<string, any> | undefined;
|
|
3363
3609
|
}[];
|
|
@@ -3366,8 +3612,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3366
3612
|
files: {
|
|
3367
3613
|
type: string;
|
|
3368
3614
|
name: string;
|
|
3369
|
-
id: string;
|
|
3370
3615
|
size: number;
|
|
3616
|
+
id: string;
|
|
3371
3617
|
status?: "uploaded" | "failed" | undefined;
|
|
3372
3618
|
metadata?: Record<string, any> | undefined;
|
|
3373
3619
|
}[];
|
|
@@ -3517,6 +3763,47 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3517
3763
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
3518
3764
|
time: z.ZodOptional<z.ZodNumber>;
|
|
3519
3765
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3766
|
+
} & {
|
|
3767
|
+
type: z.ZodLiteral<"file">;
|
|
3768
|
+
payload: z.ZodObject<{
|
|
3769
|
+
text: z.ZodOptional<z.ZodString>;
|
|
3770
|
+
files: z.ZodArray<z.ZodObject<{
|
|
3771
|
+
url: z.ZodString;
|
|
3772
|
+
mimeType: z.ZodString;
|
|
3773
|
+
filename: z.ZodOptional<z.ZodString>;
|
|
3774
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
3775
|
+
}, "strip", z.ZodTypeAny, {
|
|
3776
|
+
url: string;
|
|
3777
|
+
mimeType: string;
|
|
3778
|
+
filename?: string | undefined;
|
|
3779
|
+
size?: number | undefined;
|
|
3780
|
+
}, {
|
|
3781
|
+
url: string;
|
|
3782
|
+
mimeType: string;
|
|
3783
|
+
filename?: string | undefined;
|
|
3784
|
+
size?: number | undefined;
|
|
3785
|
+
}>, "many">;
|
|
3786
|
+
}, "strip", z.ZodTypeAny, {
|
|
3787
|
+
files: {
|
|
3788
|
+
url: string;
|
|
3789
|
+
mimeType: string;
|
|
3790
|
+
filename?: string | undefined;
|
|
3791
|
+
size?: number | undefined;
|
|
3792
|
+
}[];
|
|
3793
|
+
text?: string | undefined;
|
|
3794
|
+
}, {
|
|
3795
|
+
files: {
|
|
3796
|
+
url: string;
|
|
3797
|
+
mimeType: string;
|
|
3798
|
+
filename?: string | undefined;
|
|
3799
|
+
size?: number | undefined;
|
|
3800
|
+
}[];
|
|
3801
|
+
text?: string | undefined;
|
|
3802
|
+
}>;
|
|
3803
|
+
}, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
|
|
3804
|
+
diagramID: z.ZodOptional<z.ZodString>;
|
|
3805
|
+
time: z.ZodOptional<z.ZodNumber>;
|
|
3806
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3520
3807
|
} & {
|
|
3521
3808
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
3522
3809
|
payload: z.ZodOptional<z.ZodObject<{
|
|
@@ -3895,15 +4182,15 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3895
4182
|
}, "strip", z.ZodTypeAny, {
|
|
3896
4183
|
type: string;
|
|
3897
4184
|
name: string;
|
|
3898
|
-
id: string;
|
|
3899
4185
|
size: number;
|
|
4186
|
+
id: string;
|
|
3900
4187
|
status?: "uploaded" | "failed" | undefined;
|
|
3901
4188
|
metadata?: Record<string, any> | undefined;
|
|
3902
4189
|
}, {
|
|
3903
4190
|
type: string;
|
|
3904
4191
|
name: string;
|
|
3905
|
-
id: string;
|
|
3906
4192
|
size: number;
|
|
4193
|
+
id: string;
|
|
3907
4194
|
status?: "uploaded" | "failed" | undefined;
|
|
3908
4195
|
metadata?: Record<string, any> | undefined;
|
|
3909
4196
|
}>, "many">;
|
|
@@ -3912,8 +4199,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3912
4199
|
files: {
|
|
3913
4200
|
type: string;
|
|
3914
4201
|
name: string;
|
|
3915
|
-
id: string;
|
|
3916
4202
|
size: number;
|
|
4203
|
+
id: string;
|
|
3917
4204
|
status?: "uploaded" | "failed" | undefined;
|
|
3918
4205
|
metadata?: Record<string, any> | undefined;
|
|
3919
4206
|
}[];
|
|
@@ -3922,8 +4209,8 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3922
4209
|
files: {
|
|
3923
4210
|
type: string;
|
|
3924
4211
|
name: string;
|
|
3925
|
-
id: string;
|
|
3926
4212
|
size: number;
|
|
4213
|
+
id: string;
|
|
3927
4214
|
status?: "uploaded" | "failed" | undefined;
|
|
3928
4215
|
metadata?: Record<string, any> | undefined;
|
|
3929
4216
|
}[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"socket-action-send.dto.d.ts","sourceRoot":"","sources":["../../../src/socket/socket-action-send.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"socket-action-send.dto.d.ts","sourceRoot":"","sources":["../../../src/socket/socket-action-send.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoB9B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|