@voiceflow/dtos-interact 1.63.0 → 1.64.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 +18 -0
- package/build/cjs/request/any-request.dto.d.ts.map +1 -1
- package/build/cjs/request/live-agent-handoff-request.dto.d.ts +27 -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 +8 -1
- package/build/cjs/request/live-agent-handoff-request.dto.js.map +1 -1
- package/build/cjs/socket/socket-action-send.dto.d.ts +42 -0
- package/build/cjs/socket/socket-action-send.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-action-trace.dto.d.ts +137 -9
- package/build/cjs/socket/socket-action-trace.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-message.dto.d.ts +442 -18
- package/build/cjs/socket/socket-message.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-server-restart.dto.d.ts +42 -0
- package/build/cjs/socket/socket-server-restart.dto.d.ts.map +1 -1
- package/build/cjs/trace/any.dto.d.ts +81 -5
- package/build/cjs/trace/any.dto.d.ts.map +1 -1
- package/build/cjs/trace/live-agent-handoff.dto.d.ts +81 -5
- package/build/cjs/trace/live-agent-handoff.dto.d.ts.map +1 -1
- package/build/cjs/trace/live-agent-handoff.dto.js +9 -2
- package/build/cjs/trace/live-agent-handoff.dto.js.map +1 -1
- package/build/esm/request/any-request.dto.d.ts +18 -0
- package/build/esm/request/any-request.dto.d.ts.map +1 -1
- package/build/esm/request/live-agent-handoff-request.dto.d.ts +27 -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 +7 -0
- package/build/esm/request/live-agent-handoff-request.dto.js.map +1 -1
- package/build/esm/socket/socket-action-send.dto.d.ts +42 -0
- package/build/esm/socket/socket-action-send.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-action-trace.dto.d.ts +137 -9
- package/build/esm/socket/socket-action-trace.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-message.dto.d.ts +442 -18
- package/build/esm/socket/socket-message.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-server-restart.dto.d.ts +42 -0
- package/build/esm/socket/socket-server-restart.dto.d.ts.map +1 -1
- package/build/esm/trace/any.dto.d.ts +81 -5
- package/build/esm/trace/any.dto.d.ts.map +1 -1
- package/build/esm/trace/live-agent-handoff.dto.d.ts +81 -5
- package/build/esm/trace/live-agent-handoff.dto.d.ts.map +1 -1
- package/build/esm/trace/live-agent-handoff.dto.js +9 -2
- package/build/esm/trace/live-agent-handoff.dto.js.map +1 -1
- package/package.json +2 -2
|
@@ -5,6 +5,7 @@ export declare const LiveAgentHandoffRequestType: {
|
|
|
5
5
|
readonly MESSAGE: "message";
|
|
6
6
|
readonly FILE_UPLOAD: "file_upload";
|
|
7
7
|
readonly CONTINUE_CONVERSATION: "continue_conversation";
|
|
8
|
+
readonly RETURN_TO_VOICEFLOW: "return_to_voiceflow";
|
|
8
9
|
};
|
|
9
10
|
export type LiveAgentHandoffMessagePayload = z.infer<typeof LiveAgentHandoffMessagePayloadDTO>;
|
|
10
11
|
export declare const LiveAgentHandoffMessagePayloadDTO: z.ZodObject<{
|
|
@@ -71,6 +72,14 @@ export declare const LiveAgentHandoffContinueConversationPayloadDTO: z.ZodObject
|
|
|
71
72
|
}, {
|
|
72
73
|
type: "continue_conversation";
|
|
73
74
|
}>;
|
|
75
|
+
export type LiveAgentHandoffReturnToVoiceflowPayload = z.infer<typeof LiveAgentHandoffReturnToVoiceflowPayloadDTO>;
|
|
76
|
+
export declare const LiveAgentHandoffReturnToVoiceflowPayloadDTO: z.ZodObject<{
|
|
77
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
78
|
+
}, "strict", z.ZodTypeAny, {
|
|
79
|
+
type: "return_to_voiceflow";
|
|
80
|
+
}, {
|
|
81
|
+
type: "return_to_voiceflow";
|
|
82
|
+
}>;
|
|
74
83
|
export type LiveAgentHandoffRequest = z.infer<typeof LiveAgentHandoffRequestDTO>;
|
|
75
84
|
export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
76
85
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -137,6 +146,12 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
137
146
|
type: "continue_conversation";
|
|
138
147
|
}, {
|
|
139
148
|
type: "continue_conversation";
|
|
149
|
+
}>, z.ZodObject<{
|
|
150
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
151
|
+
}, "strict", z.ZodTypeAny, {
|
|
152
|
+
type: "return_to_voiceflow";
|
|
153
|
+
}, {
|
|
154
|
+
type: "return_to_voiceflow";
|
|
140
155
|
}>]>;
|
|
141
156
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
142
157
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -203,6 +218,12 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
203
218
|
type: "continue_conversation";
|
|
204
219
|
}, {
|
|
205
220
|
type: "continue_conversation";
|
|
221
|
+
}>, z.ZodObject<{
|
|
222
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
223
|
+
}, "strict", z.ZodTypeAny, {
|
|
224
|
+
type: "return_to_voiceflow";
|
|
225
|
+
}, {
|
|
226
|
+
type: "return_to_voiceflow";
|
|
206
227
|
}>]>;
|
|
207
228
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
208
229
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -269,6 +290,12 @@ export declare const LiveAgentHandoffRequestDTO: z.ZodObject<{
|
|
|
269
290
|
type: "continue_conversation";
|
|
270
291
|
}, {
|
|
271
292
|
type: "continue_conversation";
|
|
293
|
+
}>, z.ZodObject<{
|
|
294
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
295
|
+
}, "strict", z.ZodTypeAny, {
|
|
296
|
+
type: "return_to_voiceflow";
|
|
297
|
+
}, {
|
|
298
|
+
type: "return_to_voiceflow";
|
|
272
299
|
}>]>;
|
|
273
300
|
}, z.ZodTypeAny, "passthrough">>;
|
|
274
301
|
export declare const isLiveAgentHandoffRequest: (value: unknown) => value is LiveAgentHandoffRequest;
|
|
@@ -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
|
|
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;;;;;CAK9B,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,wCAAwC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2CAA2C,CAAC,CAAC;AACnH,eAAO,MAAM,2CAA2C;;;;;;EAI7C,CAAC;AAEZ,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AACjF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAUqB,CAAC;AAE7D,eAAO,MAAM,yBAAyB,UAAW,OAAO,KAAG,KAAK,IAAI,uBACf,CAAC"}
|
|
@@ -5,6 +5,7 @@ export const LiveAgentHandoffRequestType = {
|
|
|
5
5
|
MESSAGE: 'message',
|
|
6
6
|
FILE_UPLOAD: 'file_upload',
|
|
7
7
|
CONTINUE_CONVERSATION: 'continue_conversation',
|
|
8
|
+
RETURN_TO_VOICEFLOW: 'return_to_voiceflow',
|
|
8
9
|
};
|
|
9
10
|
export const LiveAgentHandoffMessagePayloadDTO = z
|
|
10
11
|
.object({
|
|
@@ -32,12 +33,18 @@ export const LiveAgentHandoffContinueConversationPayloadDTO = z
|
|
|
32
33
|
type: z.literal(LiveAgentHandoffRequestType.CONTINUE_CONVERSATION),
|
|
33
34
|
})
|
|
34
35
|
.strict();
|
|
36
|
+
export const LiveAgentHandoffReturnToVoiceflowPayloadDTO = z
|
|
37
|
+
.object({
|
|
38
|
+
type: z.literal(LiveAgentHandoffRequestType.RETURN_TO_VOICEFLOW),
|
|
39
|
+
})
|
|
40
|
+
.strict();
|
|
35
41
|
export const LiveAgentHandoffRequestDTO = BaseRequestDTO.extend({
|
|
36
42
|
type: z.literal(RequestType.LIVE_AGENT_HANDOFF),
|
|
37
43
|
payload: z.discriminatedUnion('type', [
|
|
38
44
|
LiveAgentHandoffMessagePayloadDTO,
|
|
39
45
|
LiveAgentHandoffFileUploadPayloadDTO,
|
|
40
46
|
LiveAgentHandoffContinueConversationPayloadDTO,
|
|
47
|
+
LiveAgentHandoffReturnToVoiceflowPayloadDTO,
|
|
41
48
|
]),
|
|
42
49
|
})
|
|
43
50
|
.passthrough()
|
|
@@ -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,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAG7C,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,qBAAqB,EAAE,uBAAuB;
|
|
1
|
+
{"version":3,"file":"live-agent-handoff-request.dto.js","sourceRoot":"","sources":["../../../src/request/live-agent-handoff-request.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,OAAO,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAG7C,MAAM,CAAC,MAAM,2BAA2B,GAAG;IACzC,OAAO,EAAE,SAAS;IAClB,WAAW,EAAE,aAAa;IAC1B,qBAAqB,EAAE,uBAAuB;IAC9C,mBAAmB,EAAE,qBAAqB;CAClC,CAAC;AAGX,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC;KAC/C,MAAM,CAAC;IACN,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC,OAAO,CAAC;IACpD,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;CACpB,CAAC;KACD,MAAM,EAAE,CAAC;AAGZ,MAAM,CAAC,MAAM,oCAAoC,GAAG,CAAC;KAClD,MAAM,CAAC;IACN,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC,WAAW,CAAC;IACxD,KAAK,EAAE,CAAC;SACL,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;QACP,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;QACrB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC,CAAC,QAAQ,EAAE;QACjD,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,CAAC,QAAQ,EAAE;KACvC,CAAC,CACH;SACA,GAAG,CAAC,CAAC,CAAC;CACV,CAAC;KACD,MAAM,EAAE,CAAC;AAKZ,MAAM,CAAC,MAAM,8CAA8C,GAAG,CAAC;KAC5D,MAAM,CAAC;IACN,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC,qBAAqB,CAAC;CACnE,CAAC;KACD,MAAM,EAAE,CAAC;AAGZ,MAAM,CAAC,MAAM,2CAA2C,GAAG,CAAC;KACzD,MAAM,CAAC;IACN,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,2BAA2B,CAAC,mBAAmB,CAAC;CACjE,CAAC;KACD,MAAM,EAAE,CAAC;AAGZ,MAAM,CAAC,MAAM,0BAA0B,GAAG,cAAc,CAAC,MAAM,CAAC;IAC9D,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC,kBAAkB,CAAC;IAC/C,OAAO,EAAE,CAAC,CAAC,kBAAkB,CAAC,MAAM,EAAE;QACpC,iCAAiC;QACjC,oCAAoC;QACpC,8CAA8C;QAC9C,2CAA2C;KAC5C,CAAC;CACH,CAAC;KACC,WAAW,EAAE;KACb,QAAQ,CAAC,+CAA+C,CAAC,CAAC;AAE7D,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,KAAc,EAAoC,EAAE,CAC5F,0BAA0B,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC"}
|
|
@@ -788,6 +788,12 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
788
788
|
type: "continue_conversation";
|
|
789
789
|
}, {
|
|
790
790
|
type: "continue_conversation";
|
|
791
|
+
}>, z.ZodObject<{
|
|
792
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
793
|
+
}, "strict", z.ZodTypeAny, {
|
|
794
|
+
type: "return_to_voiceflow";
|
|
795
|
+
}, {
|
|
796
|
+
type: "return_to_voiceflow";
|
|
791
797
|
}>]>;
|
|
792
798
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
793
799
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -854,6 +860,12 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
854
860
|
type: "continue_conversation";
|
|
855
861
|
}, {
|
|
856
862
|
type: "continue_conversation";
|
|
863
|
+
}>, z.ZodObject<{
|
|
864
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
865
|
+
}, "strict", z.ZodTypeAny, {
|
|
866
|
+
type: "return_to_voiceflow";
|
|
867
|
+
}, {
|
|
868
|
+
type: "return_to_voiceflow";
|
|
857
869
|
}>]>;
|
|
858
870
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
859
871
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -920,6 +932,12 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
920
932
|
type: "continue_conversation";
|
|
921
933
|
}, {
|
|
922
934
|
type: "continue_conversation";
|
|
935
|
+
}>, z.ZodObject<{
|
|
936
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
937
|
+
}, "strict", z.ZodTypeAny, {
|
|
938
|
+
type: "return_to_voiceflow";
|
|
939
|
+
}, {
|
|
940
|
+
type: "return_to_voiceflow";
|
|
923
941
|
}>]>;
|
|
924
942
|
}, z.ZodTypeAny, "passthrough">>, z.ZodObject<{
|
|
925
943
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -2250,6 +2268,12 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2250
2268
|
type: "continue_conversation";
|
|
2251
2269
|
}, {
|
|
2252
2270
|
type: "continue_conversation";
|
|
2271
|
+
}>, z.ZodObject<{
|
|
2272
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
2273
|
+
}, "strict", z.ZodTypeAny, {
|
|
2274
|
+
type: "return_to_voiceflow";
|
|
2275
|
+
}, {
|
|
2276
|
+
type: "return_to_voiceflow";
|
|
2253
2277
|
}>]>;
|
|
2254
2278
|
}, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
|
|
2255
2279
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -2797,6 +2821,12 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
2797
2821
|
type: "continue_conversation";
|
|
2798
2822
|
}, {
|
|
2799
2823
|
type: "continue_conversation";
|
|
2824
|
+
}>, z.ZodObject<{
|
|
2825
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
2826
|
+
}, "strict", z.ZodTypeAny, {
|
|
2827
|
+
type: "return_to_voiceflow";
|
|
2828
|
+
}, {
|
|
2829
|
+
type: "return_to_voiceflow";
|
|
2800
2830
|
}>]>;
|
|
2801
2831
|
}, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
|
|
2802
2832
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -3347,6 +3377,12 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3347
3377
|
type: "continue_conversation";
|
|
3348
3378
|
}, {
|
|
3349
3379
|
type: "continue_conversation";
|
|
3380
|
+
}>, z.ZodObject<{
|
|
3381
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
3382
|
+
}, "strict", z.ZodTypeAny, {
|
|
3383
|
+
type: "return_to_voiceflow";
|
|
3384
|
+
}, {
|
|
3385
|
+
type: "return_to_voiceflow";
|
|
3350
3386
|
}>]>;
|
|
3351
3387
|
}, z.ZodTypeAny, "passthrough"> | z.objectOutputType<{
|
|
3352
3388
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -3897,6 +3933,12 @@ export declare const SocketActionSendDTO: z.ZodObject<{
|
|
|
3897
3933
|
type: "continue_conversation";
|
|
3898
3934
|
}, {
|
|
3899
3935
|
type: "continue_conversation";
|
|
3936
|
+
}>, z.ZodObject<{
|
|
3937
|
+
type: z.ZodLiteral<"return_to_voiceflow">;
|
|
3938
|
+
}, "strict", z.ZodTypeAny, {
|
|
3939
|
+
type: "return_to_voiceflow";
|
|
3940
|
+
}, {
|
|
3941
|
+
type: "return_to_voiceflow";
|
|
3900
3942
|
}>]>;
|
|
3901
3943
|
}, z.ZodTypeAny, "passthrough"> | z.objectInputType<{
|
|
3902
3944
|
diagramID: z.ZodOptional<z.ZodString>;
|
|
@@ -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"}
|
|
@@ -4657,6 +4657,56 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
4657
4657
|
name: string;
|
|
4658
4658
|
imageUrl?: string | undefined;
|
|
4659
4659
|
}>>;
|
|
4660
|
+
} & {
|
|
4661
|
+
event: z.ZodLiteral<"chat_started">;
|
|
4662
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
4663
|
+
returnToAI: z.ZodOptional<z.ZodBoolean>;
|
|
4664
|
+
}, "strip", z.ZodTypeAny, {
|
|
4665
|
+
returnToAI?: boolean | undefined;
|
|
4666
|
+
}, {
|
|
4667
|
+
returnToAI?: boolean | undefined;
|
|
4668
|
+
}>>;
|
|
4669
|
+
}, "strip", z.ZodTypeAny, {
|
|
4670
|
+
message: string;
|
|
4671
|
+
event: "chat_started";
|
|
4672
|
+
conversationID: string;
|
|
4673
|
+
config?: {
|
|
4674
|
+
returnToAI?: boolean | undefined;
|
|
4675
|
+
} | undefined;
|
|
4676
|
+
agent?: {
|
|
4677
|
+
name: string;
|
|
4678
|
+
imageUrl?: string | undefined;
|
|
4679
|
+
} | undefined;
|
|
4680
|
+
translationKey?: string | undefined;
|
|
4681
|
+
translationParams?: Record<string, string> | undefined;
|
|
4682
|
+
}, {
|
|
4683
|
+
message: string;
|
|
4684
|
+
event: "chat_started";
|
|
4685
|
+
conversationID: string;
|
|
4686
|
+
config?: {
|
|
4687
|
+
returnToAI?: boolean | undefined;
|
|
4688
|
+
} | undefined;
|
|
4689
|
+
agent?: {
|
|
4690
|
+
name: string;
|
|
4691
|
+
imageUrl?: string | undefined;
|
|
4692
|
+
} | undefined;
|
|
4693
|
+
translationKey?: string | undefined;
|
|
4694
|
+
translationParams?: Record<string, string> | undefined;
|
|
4695
|
+
}>, z.ZodObject<{
|
|
4696
|
+
conversationID: z.ZodString;
|
|
4697
|
+
message: z.ZodString;
|
|
4698
|
+
translationKey: z.ZodOptional<z.ZodString>;
|
|
4699
|
+
translationParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4700
|
+
agent: z.ZodOptional<z.ZodObject<{
|
|
4701
|
+
name: z.ZodString;
|
|
4702
|
+
imageUrl: z.ZodOptional<z.ZodString>;
|
|
4703
|
+
}, "strip", z.ZodTypeAny, {
|
|
4704
|
+
name: string;
|
|
4705
|
+
imageUrl?: string | undefined;
|
|
4706
|
+
}, {
|
|
4707
|
+
name: string;
|
|
4708
|
+
imageUrl?: string | undefined;
|
|
4709
|
+
}>>;
|
|
4660
4710
|
} & {
|
|
4661
4711
|
event: z.ZodUnion<[z.ZodLiteral<"chat_ended">, z.ZodLiteral<"chat_dismissed">]>;
|
|
4662
4712
|
downloadMessage: z.ZodOptional<z.ZodString>;
|
|
@@ -4704,10 +4754,10 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
4704
4754
|
imageUrl?: string | undefined;
|
|
4705
4755
|
}>>;
|
|
4706
4756
|
} & {
|
|
4707
|
-
event: z.ZodUnion<[z.ZodLiteral<"
|
|
4757
|
+
event: z.ZodUnion<[z.ZodLiteral<"participant_joined">, z.ZodLiteral<"message_received">, z.ZodLiteral<"event">]>;
|
|
4708
4758
|
}, "strip", z.ZodTypeAny, {
|
|
4709
4759
|
message: string;
|
|
4710
|
-
event: "event" | "
|
|
4760
|
+
event: "event" | "participant_joined" | "message_received";
|
|
4711
4761
|
conversationID: string;
|
|
4712
4762
|
agent?: {
|
|
4713
4763
|
name: string;
|
|
@@ -4717,7 +4767,7 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
4717
4767
|
translationParams?: Record<string, string> | undefined;
|
|
4718
4768
|
}, {
|
|
4719
4769
|
message: string;
|
|
4720
|
-
event: "event" | "
|
|
4770
|
+
event: "event" | "participant_joined" | "message_received";
|
|
4721
4771
|
conversationID: string;
|
|
4722
4772
|
agent?: {
|
|
4723
4773
|
name: string;
|
|
@@ -4743,7 +4793,20 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
4743
4793
|
newConversationMessage?: string | undefined;
|
|
4744
4794
|
} | {
|
|
4745
4795
|
message: string;
|
|
4746
|
-
event: "
|
|
4796
|
+
event: "chat_started";
|
|
4797
|
+
conversationID: string;
|
|
4798
|
+
config?: {
|
|
4799
|
+
returnToAI?: boolean | undefined;
|
|
4800
|
+
} | undefined;
|
|
4801
|
+
agent?: {
|
|
4802
|
+
name: string;
|
|
4803
|
+
imageUrl?: string | undefined;
|
|
4804
|
+
} | undefined;
|
|
4805
|
+
translationKey?: string | undefined;
|
|
4806
|
+
translationParams?: Record<string, string> | undefined;
|
|
4807
|
+
} | {
|
|
4808
|
+
message: string;
|
|
4809
|
+
event: "event" | "participant_joined" | "message_received";
|
|
4747
4810
|
conversationID: string;
|
|
4748
4811
|
agent?: {
|
|
4749
4812
|
name: string;
|
|
@@ -4783,7 +4846,20 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
4783
4846
|
newConversationMessage?: string | undefined;
|
|
4784
4847
|
} | {
|
|
4785
4848
|
message: string;
|
|
4786
|
-
event: "
|
|
4849
|
+
event: "chat_started";
|
|
4850
|
+
conversationID: string;
|
|
4851
|
+
config?: {
|
|
4852
|
+
returnToAI?: boolean | undefined;
|
|
4853
|
+
} | undefined;
|
|
4854
|
+
agent?: {
|
|
4855
|
+
name: string;
|
|
4856
|
+
imageUrl?: string | undefined;
|
|
4857
|
+
} | undefined;
|
|
4858
|
+
translationKey?: string | undefined;
|
|
4859
|
+
translationParams?: Record<string, string> | undefined;
|
|
4860
|
+
} | {
|
|
4861
|
+
message: string;
|
|
4862
|
+
event: "event" | "participant_joined" | "message_received";
|
|
4787
4863
|
conversationID: string;
|
|
4788
4864
|
agent?: {
|
|
4789
4865
|
name: string;
|
|
@@ -5353,7 +5429,20 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
5353
5429
|
newConversationMessage?: string | undefined;
|
|
5354
5430
|
} | {
|
|
5355
5431
|
message: string;
|
|
5356
|
-
event: "
|
|
5432
|
+
event: "chat_started";
|
|
5433
|
+
conversationID: string;
|
|
5434
|
+
config?: {
|
|
5435
|
+
returnToAI?: boolean | undefined;
|
|
5436
|
+
} | undefined;
|
|
5437
|
+
agent?: {
|
|
5438
|
+
name: string;
|
|
5439
|
+
imageUrl?: string | undefined;
|
|
5440
|
+
} | undefined;
|
|
5441
|
+
translationKey?: string | undefined;
|
|
5442
|
+
translationParams?: Record<string, string> | undefined;
|
|
5443
|
+
} | {
|
|
5444
|
+
message: string;
|
|
5445
|
+
event: "event" | "participant_joined" | "message_received";
|
|
5357
5446
|
conversationID: string;
|
|
5358
5447
|
agent?: {
|
|
5359
5448
|
name: string;
|
|
@@ -6188,7 +6277,20 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
6188
6277
|
newConversationMessage?: string | undefined;
|
|
6189
6278
|
} | {
|
|
6190
6279
|
message: string;
|
|
6191
|
-
event: "
|
|
6280
|
+
event: "chat_started";
|
|
6281
|
+
conversationID: string;
|
|
6282
|
+
config?: {
|
|
6283
|
+
returnToAI?: boolean | undefined;
|
|
6284
|
+
} | undefined;
|
|
6285
|
+
agent?: {
|
|
6286
|
+
name: string;
|
|
6287
|
+
imageUrl?: string | undefined;
|
|
6288
|
+
} | undefined;
|
|
6289
|
+
translationKey?: string | undefined;
|
|
6290
|
+
translationParams?: Record<string, string> | undefined;
|
|
6291
|
+
} | {
|
|
6292
|
+
message: string;
|
|
6293
|
+
event: "event" | "participant_joined" | "message_received";
|
|
6192
6294
|
conversationID: string;
|
|
6193
6295
|
agent?: {
|
|
6194
6296
|
name: string;
|
|
@@ -7026,7 +7128,20 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
7026
7128
|
newConversationMessage?: string | undefined;
|
|
7027
7129
|
} | {
|
|
7028
7130
|
message: string;
|
|
7029
|
-
event: "
|
|
7131
|
+
event: "chat_started";
|
|
7132
|
+
conversationID: string;
|
|
7133
|
+
config?: {
|
|
7134
|
+
returnToAI?: boolean | undefined;
|
|
7135
|
+
} | undefined;
|
|
7136
|
+
agent?: {
|
|
7137
|
+
name: string;
|
|
7138
|
+
imageUrl?: string | undefined;
|
|
7139
|
+
} | undefined;
|
|
7140
|
+
translationKey?: string | undefined;
|
|
7141
|
+
translationParams?: Record<string, string> | undefined;
|
|
7142
|
+
} | {
|
|
7143
|
+
message: string;
|
|
7144
|
+
event: "event" | "participant_joined" | "message_received";
|
|
7030
7145
|
conversationID: string;
|
|
7031
7146
|
agent?: {
|
|
7032
7147
|
name: string;
|
|
@@ -7864,7 +7979,20 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
7864
7979
|
newConversationMessage?: string | undefined;
|
|
7865
7980
|
} | {
|
|
7866
7981
|
message: string;
|
|
7867
|
-
event: "
|
|
7982
|
+
event: "chat_started";
|
|
7983
|
+
conversationID: string;
|
|
7984
|
+
config?: {
|
|
7985
|
+
returnToAI?: boolean | undefined;
|
|
7986
|
+
} | undefined;
|
|
7987
|
+
agent?: {
|
|
7988
|
+
name: string;
|
|
7989
|
+
imageUrl?: string | undefined;
|
|
7990
|
+
} | undefined;
|
|
7991
|
+
translationKey?: string | undefined;
|
|
7992
|
+
translationParams?: Record<string, string> | undefined;
|
|
7993
|
+
} | {
|
|
7994
|
+
message: string;
|
|
7995
|
+
event: "event" | "participant_joined" | "message_received";
|
|
7868
7996
|
conversationID: string;
|
|
7869
7997
|
agent?: {
|
|
7870
7998
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"socket-action-trace.dto.d.ts","sourceRoot":"","sources":["../../../src/socket/socket-action-trace.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"socket-action-trace.dto.d.ts","sourceRoot":"","sources":["../../../src/socket/socket-action-trace.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO/B,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC"}
|