@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
|
@@ -1491,18 +1491,21 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1491
1491
|
name: z.ZodString;
|
|
1492
1492
|
size: z.ZodNumber;
|
|
1493
1493
|
type: z.ZodString;
|
|
1494
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1494
1495
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1495
1496
|
}, "strip", z.ZodTypeAny, {
|
|
1496
1497
|
type: string;
|
|
1497
1498
|
name: string;
|
|
1498
1499
|
id: string;
|
|
1499
1500
|
size: number;
|
|
1501
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1500
1502
|
metadata?: Record<string, any> | undefined;
|
|
1501
1503
|
}, {
|
|
1502
1504
|
type: string;
|
|
1503
1505
|
name: string;
|
|
1504
1506
|
id: string;
|
|
1505
1507
|
size: number;
|
|
1508
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1506
1509
|
metadata?: Record<string, any> | undefined;
|
|
1507
1510
|
}>, "many">;
|
|
1508
1511
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1512,6 +1515,7 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1512
1515
|
name: string;
|
|
1513
1516
|
id: string;
|
|
1514
1517
|
size: number;
|
|
1518
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1515
1519
|
metadata?: Record<string, any> | undefined;
|
|
1516
1520
|
}[];
|
|
1517
1521
|
}, {
|
|
@@ -1521,6 +1525,7 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1521
1525
|
name: string;
|
|
1522
1526
|
id: string;
|
|
1523
1527
|
size: number;
|
|
1528
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1524
1529
|
metadata?: Record<string, any> | undefined;
|
|
1525
1530
|
}[];
|
|
1526
1531
|
}>, z.ZodObject<{
|
|
@@ -1551,18 +1556,21 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1551
1556
|
name: z.ZodString;
|
|
1552
1557
|
size: z.ZodNumber;
|
|
1553
1558
|
type: z.ZodString;
|
|
1559
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1554
1560
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1555
1561
|
}, "strip", z.ZodTypeAny, {
|
|
1556
1562
|
type: string;
|
|
1557
1563
|
name: string;
|
|
1558
1564
|
id: string;
|
|
1559
1565
|
size: number;
|
|
1566
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1560
1567
|
metadata?: Record<string, any> | undefined;
|
|
1561
1568
|
}, {
|
|
1562
1569
|
type: string;
|
|
1563
1570
|
name: string;
|
|
1564
1571
|
id: string;
|
|
1565
1572
|
size: number;
|
|
1573
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1566
1574
|
metadata?: Record<string, any> | undefined;
|
|
1567
1575
|
}>, "many">;
|
|
1568
1576
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1572,6 +1580,7 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1572
1580
|
name: string;
|
|
1573
1581
|
id: string;
|
|
1574
1582
|
size: number;
|
|
1583
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1575
1584
|
metadata?: Record<string, any> | undefined;
|
|
1576
1585
|
}[];
|
|
1577
1586
|
}, {
|
|
@@ -1581,6 +1590,7 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1581
1590
|
name: string;
|
|
1582
1591
|
id: string;
|
|
1583
1592
|
size: number;
|
|
1593
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1584
1594
|
metadata?: Record<string, any> | undefined;
|
|
1585
1595
|
}[];
|
|
1586
1596
|
}>, z.ZodObject<{
|
|
@@ -1611,18 +1621,21 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1611
1621
|
name: z.ZodString;
|
|
1612
1622
|
size: z.ZodNumber;
|
|
1613
1623
|
type: z.ZodString;
|
|
1624
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1614
1625
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1615
1626
|
}, "strip", z.ZodTypeAny, {
|
|
1616
1627
|
type: string;
|
|
1617
1628
|
name: string;
|
|
1618
1629
|
id: string;
|
|
1619
1630
|
size: number;
|
|
1631
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1620
1632
|
metadata?: Record<string, any> | undefined;
|
|
1621
1633
|
}, {
|
|
1622
1634
|
type: string;
|
|
1623
1635
|
name: string;
|
|
1624
1636
|
id: string;
|
|
1625
1637
|
size: number;
|
|
1638
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1626
1639
|
metadata?: Record<string, any> | undefined;
|
|
1627
1640
|
}>, "many">;
|
|
1628
1641
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1632,6 +1645,7 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1632
1645
|
name: string;
|
|
1633
1646
|
id: string;
|
|
1634
1647
|
size: number;
|
|
1648
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1635
1649
|
metadata?: Record<string, any> | undefined;
|
|
1636
1650
|
}[];
|
|
1637
1651
|
}, {
|
|
@@ -1641,6 +1655,7 @@ export declare const AnyRequestDTO: z.ZodUnion<[z.ZodObject<{
|
|
|
1641
1655
|
name: string;
|
|
1642
1656
|
id: string;
|
|
1643
1657
|
size: number;
|
|
1658
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1644
1659
|
metadata?: Record<string, any> | undefined;
|
|
1645
1660
|
}[];
|
|
1646
1661
|
}>, z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"any-request.dto.d.ts","sourceRoot":"","sources":["../../../src/request/any-request.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAiBxB,eAAO,MAAM,aAAa
|
|
1
|
+
{"version":3,"file":"any-request.dto.d.ts","sourceRoot":"","sources":["../../../src/request/any-request.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAiBxB,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAexB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEvD,eAAO,MAAM,YAAY,UAAW,OAAO,KAAG,KAAK,IAAI,UAAoD,CAAC"}
|
|
@@ -25,18 +25,21 @@ export declare const LiveAgentHandoffFileUploadPayloadDTO: z.ZodObject<{
|
|
|
25
25
|
name: z.ZodString;
|
|
26
26
|
size: z.ZodNumber;
|
|
27
27
|
type: z.ZodString;
|
|
28
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
28
29
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
29
30
|
}, "strip", z.ZodTypeAny, {
|
|
30
31
|
type: string;
|
|
31
32
|
name: string;
|
|
32
33
|
id: string;
|
|
33
34
|
size: number;
|
|
35
|
+
status?: "uploaded" | "failed" | undefined;
|
|
34
36
|
metadata?: Record<string, any> | undefined;
|
|
35
37
|
}, {
|
|
36
38
|
type: string;
|
|
37
39
|
name: string;
|
|
38
40
|
id: string;
|
|
39
41
|
size: number;
|
|
42
|
+
status?: "uploaded" | "failed" | undefined;
|
|
40
43
|
metadata?: Record<string, any> | undefined;
|
|
41
44
|
}>, "many">;
|
|
42
45
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -46,6 +49,7 @@ export declare const LiveAgentHandoffFileUploadPayloadDTO: z.ZodObject<{
|
|
|
46
49
|
name: string;
|
|
47
50
|
id: string;
|
|
48
51
|
size: number;
|
|
52
|
+
status?: "uploaded" | "failed" | undefined;
|
|
49
53
|
metadata?: Record<string, any> | undefined;
|
|
50
54
|
}[];
|
|
51
55
|
}, {
|
|
@@ -55,6 +59,7 @@ export declare const LiveAgentHandoffFileUploadPayloadDTO: z.ZodObject<{
|
|
|
55
59
|
name: string;
|
|
56
60
|
id: string;
|
|
57
61
|
size: number;
|
|
62
|
+
status?: "uploaded" | "failed" | undefined;
|
|
58
63
|
metadata?: Record<string, any> | undefined;
|
|
59
64
|
}[];
|
|
60
65
|
}>;
|
|
@@ -88,18 +93,21 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
88
93
|
name: z.ZodString;
|
|
89
94
|
size: z.ZodNumber;
|
|
90
95
|
type: z.ZodString;
|
|
96
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
91
97
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
92
98
|
}, "strip", z.ZodTypeAny, {
|
|
93
99
|
type: string;
|
|
94
100
|
name: string;
|
|
95
101
|
id: string;
|
|
96
102
|
size: number;
|
|
103
|
+
status?: "uploaded" | "failed" | undefined;
|
|
97
104
|
metadata?: Record<string, any> | undefined;
|
|
98
105
|
}, {
|
|
99
106
|
type: string;
|
|
100
107
|
name: string;
|
|
101
108
|
id: string;
|
|
102
109
|
size: number;
|
|
110
|
+
status?: "uploaded" | "failed" | undefined;
|
|
103
111
|
metadata?: Record<string, any> | undefined;
|
|
104
112
|
}>, "many">;
|
|
105
113
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -109,6 +117,7 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
109
117
|
name: string;
|
|
110
118
|
id: string;
|
|
111
119
|
size: number;
|
|
120
|
+
status?: "uploaded" | "failed" | undefined;
|
|
112
121
|
metadata?: Record<string, any> | undefined;
|
|
113
122
|
}[];
|
|
114
123
|
}, {
|
|
@@ -118,6 +127,7 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
118
127
|
name: string;
|
|
119
128
|
id: string;
|
|
120
129
|
size: number;
|
|
130
|
+
status?: "uploaded" | "failed" | undefined;
|
|
121
131
|
metadata?: Record<string, any> | undefined;
|
|
122
132
|
}[];
|
|
123
133
|
}>, z.ZodObject<{
|
|
@@ -148,18 +158,21 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
148
158
|
name: z.ZodString;
|
|
149
159
|
size: z.ZodNumber;
|
|
150
160
|
type: z.ZodString;
|
|
161
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
151
162
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
152
163
|
}, "strip", z.ZodTypeAny, {
|
|
153
164
|
type: string;
|
|
154
165
|
name: string;
|
|
155
166
|
id: string;
|
|
156
167
|
size: number;
|
|
168
|
+
status?: "uploaded" | "failed" | undefined;
|
|
157
169
|
metadata?: Record<string, any> | undefined;
|
|
158
170
|
}, {
|
|
159
171
|
type: string;
|
|
160
172
|
name: string;
|
|
161
173
|
id: string;
|
|
162
174
|
size: number;
|
|
175
|
+
status?: "uploaded" | "failed" | undefined;
|
|
163
176
|
metadata?: Record<string, any> | undefined;
|
|
164
177
|
}>, "many">;
|
|
165
178
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -169,6 +182,7 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
169
182
|
name: string;
|
|
170
183
|
id: string;
|
|
171
184
|
size: number;
|
|
185
|
+
status?: "uploaded" | "failed" | undefined;
|
|
172
186
|
metadata?: Record<string, any> | undefined;
|
|
173
187
|
}[];
|
|
174
188
|
}, {
|
|
@@ -178,6 +192,7 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
178
192
|
name: string;
|
|
179
193
|
id: string;
|
|
180
194
|
size: number;
|
|
195
|
+
status?: "uploaded" | "failed" | undefined;
|
|
181
196
|
metadata?: Record<string, any> | undefined;
|
|
182
197
|
}[];
|
|
183
198
|
}>, z.ZodObject<{
|
|
@@ -208,18 +223,21 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
208
223
|
name: z.ZodString;
|
|
209
224
|
size: z.ZodNumber;
|
|
210
225
|
type: z.ZodString;
|
|
226
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
211
227
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
212
228
|
}, "strip", z.ZodTypeAny, {
|
|
213
229
|
type: string;
|
|
214
230
|
name: string;
|
|
215
231
|
id: string;
|
|
216
232
|
size: number;
|
|
233
|
+
status?: "uploaded" | "failed" | undefined;
|
|
217
234
|
metadata?: Record<string, any> | undefined;
|
|
218
235
|
}, {
|
|
219
236
|
type: string;
|
|
220
237
|
name: string;
|
|
221
238
|
id: string;
|
|
222
239
|
size: number;
|
|
240
|
+
status?: "uploaded" | "failed" | undefined;
|
|
223
241
|
metadata?: Record<string, any> | undefined;
|
|
224
242
|
}>, "many">;
|
|
225
243
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -229,6 +247,7 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
229
247
|
name: string;
|
|
230
248
|
id: string;
|
|
231
249
|
size: number;
|
|
250
|
+
status?: "uploaded" | "failed" | undefined;
|
|
232
251
|
metadata?: Record<string, any> | undefined;
|
|
233
252
|
}[];
|
|
234
253
|
}, {
|
|
@@ -238,6 +257,7 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
238
257
|
name: string;
|
|
239
258
|
id: string;
|
|
240
259
|
size: number;
|
|
260
|
+
status?: "uploaded" | "failed" | undefined;
|
|
241
261
|
metadata?: Record<string, any> | undefined;
|
|
242
262
|
}[];
|
|
243
263
|
}>, z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"live-agent-handoff-request.dto.d.ts","sourceRoot":"","sources":["../../../src/request/live-agent-handoff-request.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAK9C,MAAM,MAAM,2BAA2B,GAAG,IAAI,CAAC,OAAO,2BAA2B,CAAC,CAAC;AACnF,eAAO,MAAM,2BAA2B;;;;CAI9B,CAAC;AAEX,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAC/F,eAAO,MAAM,iCAAiC;;;;;;;;;EAKnC,CAAC;AAEZ,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAC;AACrG,eAAO,MAAM,oCAAoC
|
|
1
|
+
{"version":3,"file":"live-agent-handoff-request.dto.d.ts","sourceRoot":"","sources":["../../../src/request/live-agent-handoff-request.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAK9C,MAAM,MAAM,2BAA2B,GAAG,IAAI,CAAC,OAAO,2BAA2B,CAAC,CAAC;AACnF,eAAO,MAAM,2BAA2B;;;;CAI9B,CAAC;AAEX,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAC;AAC/F,eAAO,MAAM,iCAAiC;;;;;;;;;EAKnC,CAAC;AAEZ,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oCAAoC,CAAC,CAAC;AACrG,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBtC,CAAC;AAEZ,MAAM,MAAM,2CAA2C,GAAG,CAAC,CAAC,KAAK,CAC/D,OAAO,8CAA8C,CACtD,CAAC;AACF,eAAO,MAAM,8CAA8C;;;;;;EAIhD,CAAC;AAEZ,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AACjF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAOvB,CAAC;AAEjB,eAAO,MAAM,yBAAyB,UAAW,OAAO,KAAG,KAAK,IAAI,uBACf,CAAC"}
|
|
@@ -24,6 +24,7 @@ exports.LiveAgentHandoffFileUploadPayloadDTO = zod_1.z
|
|
|
24
24
|
name: zod_1.z.string(),
|
|
25
25
|
size: zod_1.z.number(),
|
|
26
26
|
type: zod_1.z.string(),
|
|
27
|
+
status: zod_1.z.enum(['uploaded', 'failed']).optional(),
|
|
27
28
|
metadata: zod_1.z.record(zod_1.z.any()).optional(),
|
|
28
29
|
}))
|
|
29
30
|
.min(1),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"live-agent-handoff-request.dto.js","sourceRoot":"","sources":["../../../src/request/live-agent-handoff-request.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAIxB,2DAAkD;AAClD,2CAA6C;AAGhC,QAAA,2BAA2B,GAAG;IACzC,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,qBAAqB,EAAE,uBAAuB;CACtC,CAAC;AAGE,QAAA,iCAAiC,GAAG,OAAC;KAC/C,MAAM,CAAC;IACN,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,mCAA2B,CAAC,OAAO,CAAC;IACpD,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;CACpB,CAAC;KACD,MAAM,EAAE,CAAC;AAGC,QAAA,oCAAoC,GAAG,OAAC;KAClD,MAAM,CAAC;IACN,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,mCAA2B,CAAC,WAAW,CAAC;IACxD,KAAK,EAAE,OAAC;SACL,KAAK,CACJ,OAAC,CAAC,MAAM,CAAC;QACP,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;QACrB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;KACvC,CAAC,CACH;SACA,GAAG,CAAC,CAAC,CAAC;CACV,CAAC;KACD,MAAM,EAAE,CAAC;AAKC,QAAA,8CAA8C,GAAG,OAAC;KAC5D,MAAM,CAAC;IACN,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,mCAA2B,CAAC,qBAAqB,CAAC;CACnE,CAAC;KACD,MAAM,EAAE,CAAC;AAGC,QAAA,0BAA0B,GAAG,0BAAc,CAAC,MAAM,CAAC;IAC9D,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,+BAAW,CAAC,kBAAkB,CAAC;IAC/C,OAAO,EAAE,OAAC,CAAC,kBAAkB,CAAC,MAAM,EAAE;QACpC,yCAAiC;QACjC,4CAAoC;QACpC,sDAA8C;KAC/C,CAAC;CACH,CAAC,CAAC,WAAW,EAAE,CAAC;AAEV,MAAM,yBAAyB,GAAG,CAAC,KAAc,EAAoC,EAAE,CAC5F,kCAA0B,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC;AADzC,QAAA,yBAAyB,6BACgB"}
|
|
1
|
+
{"version":3,"file":"live-agent-handoff-request.dto.js","sourceRoot":"","sources":["../../../src/request/live-agent-handoff-request.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAIxB,2DAAkD;AAClD,2CAA6C;AAGhC,QAAA,2BAA2B,GAAG;IACzC,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,qBAAqB,EAAE,uBAAuB;CACtC,CAAC;AAGE,QAAA,iCAAiC,GAAG,OAAC;KAC/C,MAAM,CAAC;IACN,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,mCAA2B,CAAC,OAAO,CAAC;IACpD,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;CACpB,CAAC;KACD,MAAM,EAAE,CAAC;AAGC,QAAA,oCAAoC,GAAG,OAAC;KAClD,MAAM,CAAC;IACN,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,mCAA2B,CAAC,WAAW,CAAC;IACxD,KAAK,EAAE,OAAC;SACL,KAAK,CACJ,OAAC,CAAC,MAAM,CAAC;QACP,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;QACrB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;QAChB,MAAM,EAAE,OAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAC,QAAQ,EAAE;QACjD,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,OAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;KACvC,CAAC,CACH;SACA,GAAG,CAAC,CAAC,CAAC;CACV,CAAC;KACD,MAAM,EAAE,CAAC;AAKC,QAAA,8CAA8C,GAAG,OAAC;KAC5D,MAAM,CAAC;IACN,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,mCAA2B,CAAC,qBAAqB,CAAC;CACnE,CAAC;KACD,MAAM,EAAE,CAAC;AAGC,QAAA,0BAA0B,GAAG,0BAAc,CAAC,MAAM,CAAC;IAC9D,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,+BAAW,CAAC,kBAAkB,CAAC;IAC/C,OAAO,EAAE,OAAC,CAAC,kBAAkB,CAAC,MAAM,EAAE;QACpC,yCAAiC;QACjC,4CAAoC;QACpC,sDAA8C;KAC/C,CAAC;CACH,CAAC,CAAC,WAAW,EAAE,CAAC;AAEV,MAAM,yBAAyB,GAAG,CAAC,KAAc,EAAoC,EAAE,CAC5F,kCAA0B,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC;AADzC,QAAA,yBAAyB,6BACgB"}
|
|
@@ -1494,18 +1494,21 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1494
1494
|
name: z.ZodString;
|
|
1495
1495
|
size: z.ZodNumber;
|
|
1496
1496
|
type: z.ZodString;
|
|
1497
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1497
1498
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1498
1499
|
}, "strip", z.ZodTypeAny, {
|
|
1499
1500
|
type: string;
|
|
1500
1501
|
name: string;
|
|
1501
1502
|
id: string;
|
|
1502
1503
|
size: number;
|
|
1504
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1503
1505
|
metadata?: Record<string, any> | undefined;
|
|
1504
1506
|
}, {
|
|
1505
1507
|
type: string;
|
|
1506
1508
|
name: string;
|
|
1507
1509
|
id: string;
|
|
1508
1510
|
size: number;
|
|
1511
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1509
1512
|
metadata?: Record<string, any> | undefined;
|
|
1510
1513
|
}>, "many">;
|
|
1511
1514
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1515,6 +1518,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1515
1518
|
name: string;
|
|
1516
1519
|
id: string;
|
|
1517
1520
|
size: number;
|
|
1521
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1518
1522
|
metadata?: Record<string, any> | undefined;
|
|
1519
1523
|
}[];
|
|
1520
1524
|
}, {
|
|
@@ -1524,6 +1528,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1524
1528
|
name: string;
|
|
1525
1529
|
id: string;
|
|
1526
1530
|
size: number;
|
|
1531
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1527
1532
|
metadata?: Record<string, any> | undefined;
|
|
1528
1533
|
}[];
|
|
1529
1534
|
}>, z.ZodObject<{
|
|
@@ -1554,18 +1559,21 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1554
1559
|
name: z.ZodString;
|
|
1555
1560
|
size: z.ZodNumber;
|
|
1556
1561
|
type: z.ZodString;
|
|
1562
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1557
1563
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1558
1564
|
}, "strip", z.ZodTypeAny, {
|
|
1559
1565
|
type: string;
|
|
1560
1566
|
name: string;
|
|
1561
1567
|
id: string;
|
|
1562
1568
|
size: number;
|
|
1569
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1563
1570
|
metadata?: Record<string, any> | undefined;
|
|
1564
1571
|
}, {
|
|
1565
1572
|
type: string;
|
|
1566
1573
|
name: string;
|
|
1567
1574
|
id: string;
|
|
1568
1575
|
size: number;
|
|
1576
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1569
1577
|
metadata?: Record<string, any> | undefined;
|
|
1570
1578
|
}>, "many">;
|
|
1571
1579
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1575,6 +1583,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1575
1583
|
name: string;
|
|
1576
1584
|
id: string;
|
|
1577
1585
|
size: number;
|
|
1586
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1578
1587
|
metadata?: Record<string, any> | undefined;
|
|
1579
1588
|
}[];
|
|
1580
1589
|
}, {
|
|
@@ -1584,6 +1593,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1584
1593
|
name: string;
|
|
1585
1594
|
id: string;
|
|
1586
1595
|
size: number;
|
|
1596
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1587
1597
|
metadata?: Record<string, any> | undefined;
|
|
1588
1598
|
}[];
|
|
1589
1599
|
}>, z.ZodObject<{
|
|
@@ -1614,18 +1624,21 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1614
1624
|
name: z.ZodString;
|
|
1615
1625
|
size: z.ZodNumber;
|
|
1616
1626
|
type: z.ZodString;
|
|
1627
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
1617
1628
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1618
1629
|
}, "strip", z.ZodTypeAny, {
|
|
1619
1630
|
type: string;
|
|
1620
1631
|
name: string;
|
|
1621
1632
|
id: string;
|
|
1622
1633
|
size: number;
|
|
1634
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1623
1635
|
metadata?: Record<string, any> | undefined;
|
|
1624
1636
|
}, {
|
|
1625
1637
|
type: string;
|
|
1626
1638
|
name: string;
|
|
1627
1639
|
id: string;
|
|
1628
1640
|
size: number;
|
|
1641
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1629
1642
|
metadata?: Record<string, any> | undefined;
|
|
1630
1643
|
}>, "many">;
|
|
1631
1644
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -1635,6 +1648,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1635
1648
|
name: string;
|
|
1636
1649
|
id: string;
|
|
1637
1650
|
size: number;
|
|
1651
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1638
1652
|
metadata?: Record<string, any> | undefined;
|
|
1639
1653
|
}[];
|
|
1640
1654
|
}, {
|
|
@@ -1644,6 +1658,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
1644
1658
|
name: string;
|
|
1645
1659
|
id: string;
|
|
1646
1660
|
size: number;
|
|
1661
|
+
status?: "uploaded" | "failed" | undefined;
|
|
1647
1662
|
metadata?: Record<string, any> | undefined;
|
|
1648
1663
|
}[];
|
|
1649
1664
|
}>, z.ZodObject<{
|
|
@@ -2121,18 +2136,21 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2121
2136
|
name: z.ZodString;
|
|
2122
2137
|
size: z.ZodNumber;
|
|
2123
2138
|
type: z.ZodString;
|
|
2139
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
2124
2140
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2125
2141
|
}, "strip", z.ZodTypeAny, {
|
|
2126
2142
|
type: string;
|
|
2127
2143
|
name: string;
|
|
2128
2144
|
id: string;
|
|
2129
2145
|
size: number;
|
|
2146
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2130
2147
|
metadata?: Record<string, any> | undefined;
|
|
2131
2148
|
}, {
|
|
2132
2149
|
type: string;
|
|
2133
2150
|
name: string;
|
|
2134
2151
|
id: string;
|
|
2135
2152
|
size: number;
|
|
2153
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2136
2154
|
metadata?: Record<string, any> | undefined;
|
|
2137
2155
|
}>, "many">;
|
|
2138
2156
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -2142,6 +2160,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2142
2160
|
name: string;
|
|
2143
2161
|
id: string;
|
|
2144
2162
|
size: number;
|
|
2163
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2145
2164
|
metadata?: Record<string, any> | undefined;
|
|
2146
2165
|
}[];
|
|
2147
2166
|
}, {
|
|
@@ -2151,6 +2170,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2151
2170
|
name: string;
|
|
2152
2171
|
id: string;
|
|
2153
2172
|
size: number;
|
|
2173
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2154
2174
|
metadata?: Record<string, any> | undefined;
|
|
2155
2175
|
}[];
|
|
2156
2176
|
}>, z.ZodObject<{
|
|
@@ -2643,18 +2663,21 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2643
2663
|
name: z.ZodString;
|
|
2644
2664
|
size: z.ZodNumber;
|
|
2645
2665
|
type: z.ZodString;
|
|
2666
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
2646
2667
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2647
2668
|
}, "strip", z.ZodTypeAny, {
|
|
2648
2669
|
type: string;
|
|
2649
2670
|
name: string;
|
|
2650
2671
|
id: string;
|
|
2651
2672
|
size: number;
|
|
2673
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2652
2674
|
metadata?: Record<string, any> | undefined;
|
|
2653
2675
|
}, {
|
|
2654
2676
|
type: string;
|
|
2655
2677
|
name: string;
|
|
2656
2678
|
id: string;
|
|
2657
2679
|
size: number;
|
|
2680
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2658
2681
|
metadata?: Record<string, any> | undefined;
|
|
2659
2682
|
}>, "many">;
|
|
2660
2683
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -2664,6 +2687,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2664
2687
|
name: string;
|
|
2665
2688
|
id: string;
|
|
2666
2689
|
size: number;
|
|
2690
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2667
2691
|
metadata?: Record<string, any> | undefined;
|
|
2668
2692
|
}[];
|
|
2669
2693
|
}, {
|
|
@@ -2673,6 +2697,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2673
2697
|
name: string;
|
|
2674
2698
|
id: string;
|
|
2675
2699
|
size: number;
|
|
2700
|
+
status?: "uploaded" | "failed" | undefined;
|
|
2676
2701
|
metadata?: Record<string, any> | undefined;
|
|
2677
2702
|
}[];
|
|
2678
2703
|
}>, z.ZodObject<{
|
|
@@ -3168,18 +3193,21 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3168
3193
|
name: z.ZodString;
|
|
3169
3194
|
size: z.ZodNumber;
|
|
3170
3195
|
type: z.ZodString;
|
|
3196
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
3171
3197
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3172
3198
|
}, "strip", z.ZodTypeAny, {
|
|
3173
3199
|
type: string;
|
|
3174
3200
|
name: string;
|
|
3175
3201
|
id: string;
|
|
3176
3202
|
size: number;
|
|
3203
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3177
3204
|
metadata?: Record<string, any> | undefined;
|
|
3178
3205
|
}, {
|
|
3179
3206
|
type: string;
|
|
3180
3207
|
name: string;
|
|
3181
3208
|
id: string;
|
|
3182
3209
|
size: number;
|
|
3210
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3183
3211
|
metadata?: Record<string, any> | undefined;
|
|
3184
3212
|
}>, "many">;
|
|
3185
3213
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3189,6 +3217,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3189
3217
|
name: string;
|
|
3190
3218
|
id: string;
|
|
3191
3219
|
size: number;
|
|
3220
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3192
3221
|
metadata?: Record<string, any> | undefined;
|
|
3193
3222
|
}[];
|
|
3194
3223
|
}, {
|
|
@@ -3198,6 +3227,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3198
3227
|
name: string;
|
|
3199
3228
|
id: string;
|
|
3200
3229
|
size: number;
|
|
3230
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3201
3231
|
metadata?: Record<string, any> | undefined;
|
|
3202
3232
|
}[];
|
|
3203
3233
|
}>, z.ZodObject<{
|
|
@@ -3693,18 +3723,21 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3693
3723
|
name: z.ZodString;
|
|
3694
3724
|
size: z.ZodNumber;
|
|
3695
3725
|
type: z.ZodString;
|
|
3726
|
+
status: z.ZodOptional<z.ZodEnum<["uploaded", "failed"]>>;
|
|
3696
3727
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3697
3728
|
}, "strip", z.ZodTypeAny, {
|
|
3698
3729
|
type: string;
|
|
3699
3730
|
name: string;
|
|
3700
3731
|
id: string;
|
|
3701
3732
|
size: number;
|
|
3733
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3702
3734
|
metadata?: Record<string, any> | undefined;
|
|
3703
3735
|
}, {
|
|
3704
3736
|
type: string;
|
|
3705
3737
|
name: string;
|
|
3706
3738
|
id: string;
|
|
3707
3739
|
size: number;
|
|
3740
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3708
3741
|
metadata?: Record<string, any> | undefined;
|
|
3709
3742
|
}>, "many">;
|
|
3710
3743
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -3714,6 +3747,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3714
3747
|
name: string;
|
|
3715
3748
|
id: string;
|
|
3716
3749
|
size: number;
|
|
3750
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3717
3751
|
metadata?: Record<string, any> | undefined;
|
|
3718
3752
|
}[];
|
|
3719
3753
|
}, {
|
|
@@ -3723,6 +3757,7 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3723
3757
|
name: string;
|
|
3724
3758
|
id: string;
|
|
3725
3759
|
size: number;
|
|
3760
|
+
status?: "uploaded" | "failed" | undefined;
|
|
3726
3761
|
metadata?: Record<string, any> | undefined;
|
|
3727
3762
|
}[];
|
|
3728
3763
|
}>, z.ZodObject<{
|
|
@@ -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"}
|