@voiceflow/dtos-interact 1.66.0 → 1.68.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/socket/socket-action-trace.dto.d.ts +38 -0
- package/build/cjs/socket/socket-action-trace.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-client-start.dto.d.ts +21 -0
- package/build/cjs/socket/socket-client-start.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-client-start.dto.js +3 -0
- package/build/cjs/socket/socket-client-start.dto.js.map +1 -1
- package/build/cjs/socket/socket-message.dto.d.ts +118 -0
- package/build/cjs/socket/socket-message.dto.d.ts.map +1 -1
- package/build/cjs/trace/any.dto.d.ts +22 -0
- package/build/cjs/trace/any.dto.d.ts.map +1 -1
- package/build/cjs/trace/card.dto.d.ts +8 -0
- package/build/cjs/trace/card.dto.d.ts.map +1 -1
- package/build/cjs/trace/card.dto.js +1 -0
- package/build/cjs/trace/card.dto.js.map +1 -1
- package/build/cjs/trace/carousel.dto.d.ts +15 -0
- package/build/cjs/trace/carousel.dto.d.ts.map +1 -1
- package/build/cjs/trace/carousel.dto.js +1 -0
- package/build/cjs/trace/carousel.dto.js.map +1 -1
- package/build/cjs/trace/choice.dto.d.ts +5 -0
- package/build/cjs/trace/choice.dto.d.ts.map +1 -1
- package/build/cjs/trace/choice.dto.js +1 -0
- package/build/cjs/trace/choice.dto.js.map +1 -1
- package/build/esm/socket/socket-action-trace.dto.d.ts +38 -0
- package/build/esm/socket/socket-action-trace.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-client-start.dto.d.ts +21 -0
- package/build/esm/socket/socket-client-start.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-client-start.dto.js +3 -0
- package/build/esm/socket/socket-client-start.dto.js.map +1 -1
- package/build/esm/socket/socket-message.dto.d.ts +118 -0
- package/build/esm/socket/socket-message.dto.d.ts.map +1 -1
- package/build/esm/trace/any.dto.d.ts +22 -0
- package/build/esm/trace/any.dto.d.ts.map +1 -1
- package/build/esm/trace/card.dto.d.ts +8 -0
- package/build/esm/trace/card.dto.d.ts.map +1 -1
- package/build/esm/trace/card.dto.js +1 -0
- package/build/esm/trace/card.dto.js.map +1 -1
- package/build/esm/trace/carousel.dto.d.ts +15 -0
- package/build/esm/trace/carousel.dto.d.ts.map +1 -1
- package/build/esm/trace/carousel.dto.js +1 -0
- package/build/esm/trace/carousel.dto.js.map +1 -1
- package/build/esm/trace/choice.dto.d.ts +5 -0
- package/build/esm/trace/choice.dto.d.ts.map +1 -1
- package/build/esm/trace/choice.dto.js +1 -0
- package/build/esm/trace/choice.dto.js.map +1 -1
- package/package.json +2 -2
|
@@ -30,6 +30,9 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
30
30
|
readonly CHAT: "chat";
|
|
31
31
|
readonly API: "api";
|
|
32
32
|
}>>;
|
|
33
|
+
os: z.ZodOptional<z.ZodString>;
|
|
34
|
+
device: z.ZodOptional<z.ZodString>;
|
|
35
|
+
browser: z.ZodOptional<z.ZodString>;
|
|
33
36
|
userTimezone: z.ZodOptional<z.ZodString>;
|
|
34
37
|
guidedNavigation: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
35
38
|
recording: z.ZodOptional<z.ZodObject<{
|
|
@@ -45,9 +48,12 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
45
48
|
audioEvents: boolean;
|
|
46
49
|
guidedNavigation: boolean;
|
|
47
50
|
completionEvents: boolean;
|
|
51
|
+
device?: string | undefined;
|
|
48
52
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
49
53
|
platform?: string | undefined;
|
|
50
54
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
55
|
+
os?: string | undefined;
|
|
56
|
+
browser?: string | undefined;
|
|
51
57
|
userTimezone?: string | undefined;
|
|
52
58
|
recording?: {
|
|
53
59
|
url?: string | null | undefined;
|
|
@@ -57,10 +63,13 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
57
63
|
}, {
|
|
58
64
|
audioEvents?: boolean | undefined;
|
|
59
65
|
guidedNavigation?: boolean | undefined;
|
|
66
|
+
device?: string | undefined;
|
|
60
67
|
completionEvents?: boolean | undefined;
|
|
61
68
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
62
69
|
platform?: string | undefined;
|
|
63
70
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
71
|
+
os?: string | undefined;
|
|
72
|
+
browser?: string | undefined;
|
|
64
73
|
userTimezone?: string | undefined;
|
|
65
74
|
recording?: {
|
|
66
75
|
url?: string | null | undefined;
|
|
@@ -74,9 +83,12 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
74
83
|
audioEvents: boolean;
|
|
75
84
|
guidedNavigation: boolean;
|
|
76
85
|
completionEvents: boolean;
|
|
86
|
+
device?: string | undefined;
|
|
77
87
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
78
88
|
platform?: string | undefined;
|
|
79
89
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
90
|
+
os?: string | undefined;
|
|
91
|
+
browser?: string | undefined;
|
|
80
92
|
userTimezone?: string | undefined;
|
|
81
93
|
recording?: {
|
|
82
94
|
url?: string | null | undefined;
|
|
@@ -99,10 +111,13 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
99
111
|
config?: {
|
|
100
112
|
audioEvents?: boolean | undefined;
|
|
101
113
|
guidedNavigation?: boolean | undefined;
|
|
114
|
+
device?: string | undefined;
|
|
102
115
|
completionEvents?: boolean | undefined;
|
|
103
116
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
104
117
|
platform?: string | undefined;
|
|
105
118
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
119
|
+
os?: string | undefined;
|
|
120
|
+
browser?: string | undefined;
|
|
106
121
|
userTimezone?: string | undefined;
|
|
107
122
|
recording?: {
|
|
108
123
|
url?: string | null | undefined;
|
|
@@ -129,9 +144,12 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
129
144
|
audioEvents: boolean;
|
|
130
145
|
guidedNavigation: boolean;
|
|
131
146
|
completionEvents: boolean;
|
|
147
|
+
device?: string | undefined;
|
|
132
148
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
133
149
|
platform?: string | undefined;
|
|
134
150
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
151
|
+
os?: string | undefined;
|
|
152
|
+
browser?: string | undefined;
|
|
135
153
|
userTimezone?: string | undefined;
|
|
136
154
|
recording?: {
|
|
137
155
|
url?: string | null | undefined;
|
|
@@ -157,10 +175,13 @@ export declare const SocketClientMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
157
175
|
config?: {
|
|
158
176
|
audioEvents?: boolean | undefined;
|
|
159
177
|
guidedNavigation?: boolean | undefined;
|
|
178
|
+
device?: string | undefined;
|
|
160
179
|
completionEvents?: boolean | undefined;
|
|
161
180
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
162
181
|
platform?: string | undefined;
|
|
163
182
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
183
|
+
os?: string | undefined;
|
|
184
|
+
browser?: string | undefined;
|
|
164
185
|
userTimezone?: string | undefined;
|
|
165
186
|
recording?: {
|
|
166
187
|
url?: string | null | undefined;
|
|
@@ -5070,6 +5091,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5070
5091
|
} | undefined;
|
|
5071
5092
|
}>, "many">;
|
|
5072
5093
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
5094
|
+
messageID: z.ZodOptional<z.ZodString>;
|
|
5073
5095
|
description: z.ZodObject<{
|
|
5074
5096
|
text: z.ZodString;
|
|
5075
5097
|
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">>;
|
|
@@ -5097,6 +5119,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5097
5119
|
text: string;
|
|
5098
5120
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
5099
5121
|
};
|
|
5122
|
+
messageID?: string | undefined;
|
|
5100
5123
|
ref?: {
|
|
5101
5124
|
type: "node";
|
|
5102
5125
|
diagramID: string;
|
|
@@ -5160,6 +5183,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5160
5183
|
text: string;
|
|
5161
5184
|
slate?: any[] | undefined;
|
|
5162
5185
|
};
|
|
5186
|
+
messageID?: string | undefined;
|
|
5163
5187
|
ref?: {
|
|
5164
5188
|
type: "node";
|
|
5165
5189
|
diagramID: string;
|
|
@@ -5226,6 +5250,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5226
5250
|
text: string;
|
|
5227
5251
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
5228
5252
|
};
|
|
5253
|
+
messageID?: string | undefined;
|
|
5229
5254
|
ref?: {
|
|
5230
5255
|
type: "node";
|
|
5231
5256
|
diagramID: string;
|
|
@@ -5306,6 +5331,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5306
5331
|
text: string;
|
|
5307
5332
|
slate?: any[] | undefined;
|
|
5308
5333
|
};
|
|
5334
|
+
messageID?: string | undefined;
|
|
5309
5335
|
ref?: {
|
|
5310
5336
|
type: "node";
|
|
5311
5337
|
diagramID: string;
|
|
@@ -5730,6 +5756,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5730
5756
|
} | undefined;
|
|
5731
5757
|
}>, "many">;
|
|
5732
5758
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
5759
|
+
messageID: z.ZodOptional<z.ZodString>;
|
|
5733
5760
|
description: z.ZodObject<{
|
|
5734
5761
|
text: z.ZodString;
|
|
5735
5762
|
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">>;
|
|
@@ -5760,6 +5787,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5760
5787
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
5761
5788
|
};
|
|
5762
5789
|
id?: string | undefined;
|
|
5790
|
+
messageID?: string | undefined;
|
|
5763
5791
|
ref?: {
|
|
5764
5792
|
type: "node";
|
|
5765
5793
|
diagramID: string;
|
|
@@ -5824,6 +5852,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5824
5852
|
slate?: any[] | undefined;
|
|
5825
5853
|
};
|
|
5826
5854
|
id?: string | undefined;
|
|
5855
|
+
messageID?: string | undefined;
|
|
5827
5856
|
ref?: {
|
|
5828
5857
|
type: "node";
|
|
5829
5858
|
diagramID: string;
|
|
@@ -5875,6 +5904,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5875
5904
|
readonly LIST: "List";
|
|
5876
5905
|
readonly CAROUSEL: "Carousel";
|
|
5877
5906
|
}>;
|
|
5907
|
+
messageID: z.ZodOptional<z.ZodString>;
|
|
5878
5908
|
}, "strip", z.ZodTypeAny, {
|
|
5879
5909
|
cards: {
|
|
5880
5910
|
title: string;
|
|
@@ -5894,6 +5924,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5894
5924
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
5895
5925
|
};
|
|
5896
5926
|
id?: string | undefined;
|
|
5927
|
+
messageID?: string | undefined;
|
|
5897
5928
|
ref?: {
|
|
5898
5929
|
type: "node";
|
|
5899
5930
|
diagramID: string;
|
|
@@ -5942,6 +5973,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
5942
5973
|
} | undefined;
|
|
5943
5974
|
}[];
|
|
5944
5975
|
layout: "List" | "Carousel";
|
|
5976
|
+
messageID?: string | undefined;
|
|
5945
5977
|
ref?: {
|
|
5946
5978
|
type: "node";
|
|
5947
5979
|
diagramID: string;
|
|
@@ -6007,6 +6039,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6007
6039
|
slate?: any[] | undefined;
|
|
6008
6040
|
};
|
|
6009
6041
|
id?: string | undefined;
|
|
6042
|
+
messageID?: string | undefined;
|
|
6010
6043
|
ref?: {
|
|
6011
6044
|
type: "node";
|
|
6012
6045
|
diagramID: string;
|
|
@@ -6055,6 +6088,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6055
6088
|
} | undefined;
|
|
6056
6089
|
}[];
|
|
6057
6090
|
layout: "List" | "Carousel";
|
|
6091
|
+
messageID?: string | undefined;
|
|
6058
6092
|
ref?: {
|
|
6059
6093
|
type: "node";
|
|
6060
6094
|
diagramID: string;
|
|
@@ -6123,6 +6157,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6123
6157
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
6124
6158
|
};
|
|
6125
6159
|
id?: string | undefined;
|
|
6160
|
+
messageID?: string | undefined;
|
|
6126
6161
|
ref?: {
|
|
6127
6162
|
type: "node";
|
|
6128
6163
|
diagramID: string;
|
|
@@ -6171,6 +6206,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6171
6206
|
} | undefined;
|
|
6172
6207
|
}[];
|
|
6173
6208
|
layout: "List" | "Carousel";
|
|
6209
|
+
messageID?: string | undefined;
|
|
6174
6210
|
ref?: {
|
|
6175
6211
|
type: "node";
|
|
6176
6212
|
diagramID: string;
|
|
@@ -6253,6 +6289,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6253
6289
|
slate?: any[] | undefined;
|
|
6254
6290
|
};
|
|
6255
6291
|
id?: string | undefined;
|
|
6292
|
+
messageID?: string | undefined;
|
|
6256
6293
|
ref?: {
|
|
6257
6294
|
type: "node";
|
|
6258
6295
|
diagramID: string;
|
|
@@ -6301,6 +6338,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6301
6338
|
} | undefined;
|
|
6302
6339
|
}[];
|
|
6303
6340
|
layout: "List" | "Carousel";
|
|
6341
|
+
messageID?: string | undefined;
|
|
6304
6342
|
ref?: {
|
|
6305
6343
|
type: "node";
|
|
6306
6344
|
diagramID: string;
|
|
@@ -6683,6 +6721,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6683
6721
|
metadata?: Record<string, unknown> | undefined;
|
|
6684
6722
|
} | undefined;
|
|
6685
6723
|
}>, "many">;
|
|
6724
|
+
messageID: z.ZodOptional<z.ZodString>;
|
|
6686
6725
|
}, "strip", z.ZodTypeAny, {
|
|
6687
6726
|
buttons: {
|
|
6688
6727
|
name: string;
|
|
@@ -6694,6 +6733,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6694
6733
|
metadata?: Record<string, unknown> | undefined;
|
|
6695
6734
|
} | undefined;
|
|
6696
6735
|
}[];
|
|
6736
|
+
messageID?: string | undefined;
|
|
6697
6737
|
ref?: {
|
|
6698
6738
|
type: "node";
|
|
6699
6739
|
diagramID: string;
|
|
@@ -6751,6 +6791,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6751
6791
|
metadata?: Record<string, unknown> | undefined;
|
|
6752
6792
|
} | undefined;
|
|
6753
6793
|
}[];
|
|
6794
|
+
messageID?: string | undefined;
|
|
6754
6795
|
ref?: {
|
|
6755
6796
|
type: "node";
|
|
6756
6797
|
diagramID: string;
|
|
@@ -6811,6 +6852,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6811
6852
|
metadata?: Record<string, unknown> | undefined;
|
|
6812
6853
|
} | undefined;
|
|
6813
6854
|
}[];
|
|
6855
|
+
messageID?: string | undefined;
|
|
6814
6856
|
ref?: {
|
|
6815
6857
|
type: "node";
|
|
6816
6858
|
diagramID: string;
|
|
@@ -6885,6 +6927,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6885
6927
|
metadata?: Record<string, unknown> | undefined;
|
|
6886
6928
|
} | undefined;
|
|
6887
6929
|
}[];
|
|
6930
|
+
messageID?: string | undefined;
|
|
6888
6931
|
ref?: {
|
|
6889
6932
|
type: "node";
|
|
6890
6933
|
diagramID: string;
|
|
@@ -10969,6 +11012,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
10969
11012
|
text: string;
|
|
10970
11013
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
10971
11014
|
};
|
|
11015
|
+
messageID?: string | undefined;
|
|
10972
11016
|
ref?: {
|
|
10973
11017
|
type: "node";
|
|
10974
11018
|
diagramID: string;
|
|
@@ -11051,6 +11095,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11051
11095
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
11052
11096
|
};
|
|
11053
11097
|
id?: string | undefined;
|
|
11098
|
+
messageID?: string | undefined;
|
|
11054
11099
|
ref?: {
|
|
11055
11100
|
type: "node";
|
|
11056
11101
|
diagramID: string;
|
|
@@ -11099,6 +11144,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11099
11144
|
} | undefined;
|
|
11100
11145
|
}[];
|
|
11101
11146
|
layout: "List" | "Carousel";
|
|
11147
|
+
messageID?: string | undefined;
|
|
11102
11148
|
ref?: {
|
|
11103
11149
|
type: "node";
|
|
11104
11150
|
diagramID: string;
|
|
@@ -11193,6 +11239,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
11193
11239
|
metadata?: Record<string, unknown> | undefined;
|
|
11194
11240
|
} | undefined;
|
|
11195
11241
|
}[];
|
|
11242
|
+
messageID?: string | undefined;
|
|
11196
11243
|
ref?: {
|
|
11197
11244
|
type: "node";
|
|
11198
11245
|
diagramID: string;
|
|
@@ -12029,6 +12076,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12029
12076
|
text: string;
|
|
12030
12077
|
slate?: any[] | undefined;
|
|
12031
12078
|
};
|
|
12079
|
+
messageID?: string | undefined;
|
|
12032
12080
|
ref?: {
|
|
12033
12081
|
type: "node";
|
|
12034
12082
|
diagramID: string;
|
|
@@ -12111,6 +12159,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12111
12159
|
slate?: any[] | undefined;
|
|
12112
12160
|
};
|
|
12113
12161
|
id?: string | undefined;
|
|
12162
|
+
messageID?: string | undefined;
|
|
12114
12163
|
ref?: {
|
|
12115
12164
|
type: "node";
|
|
12116
12165
|
diagramID: string;
|
|
@@ -12159,6 +12208,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12159
12208
|
} | undefined;
|
|
12160
12209
|
}[];
|
|
12161
12210
|
layout: "List" | "Carousel";
|
|
12211
|
+
messageID?: string | undefined;
|
|
12162
12212
|
ref?: {
|
|
12163
12213
|
type: "node";
|
|
12164
12214
|
diagramID: string;
|
|
@@ -12253,6 +12303,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
12253
12303
|
metadata?: Record<string, unknown> | undefined;
|
|
12254
12304
|
} | undefined;
|
|
12255
12305
|
}[];
|
|
12306
|
+
messageID?: string | undefined;
|
|
12256
12307
|
ref?: {
|
|
12257
12308
|
type: "node";
|
|
12258
12309
|
diagramID: string;
|
|
@@ -13092,6 +13143,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13092
13143
|
text: string;
|
|
13093
13144
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
13094
13145
|
};
|
|
13146
|
+
messageID?: string | undefined;
|
|
13095
13147
|
ref?: {
|
|
13096
13148
|
type: "node";
|
|
13097
13149
|
diagramID: string;
|
|
@@ -13174,6 +13226,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13174
13226
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
13175
13227
|
};
|
|
13176
13228
|
id?: string | undefined;
|
|
13229
|
+
messageID?: string | undefined;
|
|
13177
13230
|
ref?: {
|
|
13178
13231
|
type: "node";
|
|
13179
13232
|
diagramID: string;
|
|
@@ -13222,6 +13275,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13222
13275
|
} | undefined;
|
|
13223
13276
|
}[];
|
|
13224
13277
|
layout: "List" | "Carousel";
|
|
13278
|
+
messageID?: string | undefined;
|
|
13225
13279
|
ref?: {
|
|
13226
13280
|
type: "node";
|
|
13227
13281
|
diagramID: string;
|
|
@@ -13316,6 +13370,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
13316
13370
|
metadata?: Record<string, unknown> | undefined;
|
|
13317
13371
|
} | undefined;
|
|
13318
13372
|
}[];
|
|
13373
|
+
messageID?: string | undefined;
|
|
13319
13374
|
ref?: {
|
|
13320
13375
|
type: "node";
|
|
13321
13376
|
diagramID: string;
|
|
@@ -14155,6 +14210,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
14155
14210
|
text: string;
|
|
14156
14211
|
slate?: any[] | undefined;
|
|
14157
14212
|
};
|
|
14213
|
+
messageID?: string | undefined;
|
|
14158
14214
|
ref?: {
|
|
14159
14215
|
type: "node";
|
|
14160
14216
|
diagramID: string;
|
|
@@ -14237,6 +14293,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
14237
14293
|
slate?: any[] | undefined;
|
|
14238
14294
|
};
|
|
14239
14295
|
id?: string | undefined;
|
|
14296
|
+
messageID?: string | undefined;
|
|
14240
14297
|
ref?: {
|
|
14241
14298
|
type: "node";
|
|
14242
14299
|
diagramID: string;
|
|
@@ -14285,6 +14342,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
14285
14342
|
} | undefined;
|
|
14286
14343
|
}[];
|
|
14287
14344
|
layout: "List" | "Carousel";
|
|
14345
|
+
messageID?: string | undefined;
|
|
14288
14346
|
ref?: {
|
|
14289
14347
|
type: "node";
|
|
14290
14348
|
diagramID: string;
|
|
@@ -14379,6 +14437,7 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
14379
14437
|
metadata?: Record<string, unknown> | undefined;
|
|
14380
14438
|
} | undefined;
|
|
14381
14439
|
}[];
|
|
14440
|
+
messageID?: string | undefined;
|
|
14382
14441
|
ref?: {
|
|
14383
14442
|
type: "node";
|
|
14384
14443
|
diagramID: string;
|
|
@@ -19062,6 +19121,9 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19062
19121
|
readonly CHAT: "chat";
|
|
19063
19122
|
readonly API: "api";
|
|
19064
19123
|
}>>;
|
|
19124
|
+
os: z.ZodOptional<z.ZodString>;
|
|
19125
|
+
device: z.ZodOptional<z.ZodString>;
|
|
19126
|
+
browser: z.ZodOptional<z.ZodString>;
|
|
19065
19127
|
userTimezone: z.ZodOptional<z.ZodString>;
|
|
19066
19128
|
guidedNavigation: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
19067
19129
|
recording: z.ZodOptional<z.ZodObject<{
|
|
@@ -19077,9 +19139,12 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19077
19139
|
audioEvents: boolean;
|
|
19078
19140
|
guidedNavigation: boolean;
|
|
19079
19141
|
completionEvents: boolean;
|
|
19142
|
+
device?: string | undefined;
|
|
19080
19143
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
19081
19144
|
platform?: string | undefined;
|
|
19082
19145
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
19146
|
+
os?: string | undefined;
|
|
19147
|
+
browser?: string | undefined;
|
|
19083
19148
|
userTimezone?: string | undefined;
|
|
19084
19149
|
recording?: {
|
|
19085
19150
|
url?: string | null | undefined;
|
|
@@ -19089,10 +19154,13 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19089
19154
|
}, {
|
|
19090
19155
|
audioEvents?: boolean | undefined;
|
|
19091
19156
|
guidedNavigation?: boolean | undefined;
|
|
19157
|
+
device?: string | undefined;
|
|
19092
19158
|
completionEvents?: boolean | undefined;
|
|
19093
19159
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
19094
19160
|
platform?: string | undefined;
|
|
19095
19161
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
19162
|
+
os?: string | undefined;
|
|
19163
|
+
browser?: string | undefined;
|
|
19096
19164
|
userTimezone?: string | undefined;
|
|
19097
19165
|
recording?: {
|
|
19098
19166
|
url?: string | null | undefined;
|
|
@@ -19106,9 +19174,12 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19106
19174
|
audioEvents: boolean;
|
|
19107
19175
|
guidedNavigation: boolean;
|
|
19108
19176
|
completionEvents: boolean;
|
|
19177
|
+
device?: string | undefined;
|
|
19109
19178
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
19110
19179
|
platform?: string | undefined;
|
|
19111
19180
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
19181
|
+
os?: string | undefined;
|
|
19182
|
+
browser?: string | undefined;
|
|
19112
19183
|
userTimezone?: string | undefined;
|
|
19113
19184
|
recording?: {
|
|
19114
19185
|
url?: string | null | undefined;
|
|
@@ -19131,10 +19202,13 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19131
19202
|
config?: {
|
|
19132
19203
|
audioEvents?: boolean | undefined;
|
|
19133
19204
|
guidedNavigation?: boolean | undefined;
|
|
19205
|
+
device?: string | undefined;
|
|
19134
19206
|
completionEvents?: boolean | undefined;
|
|
19135
19207
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
19136
19208
|
platform?: string | undefined;
|
|
19137
19209
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
19210
|
+
os?: string | undefined;
|
|
19211
|
+
browser?: string | undefined;
|
|
19138
19212
|
userTimezone?: string | undefined;
|
|
19139
19213
|
recording?: {
|
|
19140
19214
|
url?: string | null | undefined;
|
|
@@ -19161,9 +19235,12 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19161
19235
|
audioEvents: boolean;
|
|
19162
19236
|
guidedNavigation: boolean;
|
|
19163
19237
|
completionEvents: boolean;
|
|
19238
|
+
device?: string | undefined;
|
|
19164
19239
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
19165
19240
|
platform?: string | undefined;
|
|
19166
19241
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
19242
|
+
os?: string | undefined;
|
|
19243
|
+
browser?: string | undefined;
|
|
19167
19244
|
userTimezone?: string | undefined;
|
|
19168
19245
|
recording?: {
|
|
19169
19246
|
url?: string | null | undefined;
|
|
@@ -19189,10 +19266,13 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
19189
19266
|
config?: {
|
|
19190
19267
|
audioEvents?: boolean | undefined;
|
|
19191
19268
|
guidedNavigation?: boolean | undefined;
|
|
19269
|
+
device?: string | undefined;
|
|
19192
19270
|
completionEvents?: boolean | undefined;
|
|
19193
19271
|
audioEncoding?: "audio/mp3" | "audio/x-mulaw" | "audio/pcm" | undefined;
|
|
19194
19272
|
platform?: string | undefined;
|
|
19195
19273
|
modality?: "voice" | "chat" | "api" | undefined;
|
|
19274
|
+
os?: string | undefined;
|
|
19275
|
+
browser?: string | undefined;
|
|
19196
19276
|
userTimezone?: string | undefined;
|
|
19197
19277
|
recording?: {
|
|
19198
19278
|
url?: string | null | undefined;
|
|
@@ -24095,6 +24175,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24095
24175
|
} | undefined;
|
|
24096
24176
|
}>, "many">;
|
|
24097
24177
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
24178
|
+
messageID: z.ZodOptional<z.ZodString>;
|
|
24098
24179
|
description: z.ZodObject<{
|
|
24099
24180
|
text: z.ZodString;
|
|
24100
24181
|
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">>;
|
|
@@ -24122,6 +24203,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24122
24203
|
text: string;
|
|
24123
24204
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
24124
24205
|
};
|
|
24206
|
+
messageID?: string | undefined;
|
|
24125
24207
|
ref?: {
|
|
24126
24208
|
type: "node";
|
|
24127
24209
|
diagramID: string;
|
|
@@ -24185,6 +24267,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24185
24267
|
text: string;
|
|
24186
24268
|
slate?: any[] | undefined;
|
|
24187
24269
|
};
|
|
24270
|
+
messageID?: string | undefined;
|
|
24188
24271
|
ref?: {
|
|
24189
24272
|
type: "node";
|
|
24190
24273
|
diagramID: string;
|
|
@@ -24251,6 +24334,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24251
24334
|
text: string;
|
|
24252
24335
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
24253
24336
|
};
|
|
24337
|
+
messageID?: string | undefined;
|
|
24254
24338
|
ref?: {
|
|
24255
24339
|
type: "node";
|
|
24256
24340
|
diagramID: string;
|
|
@@ -24331,6 +24415,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24331
24415
|
text: string;
|
|
24332
24416
|
slate?: any[] | undefined;
|
|
24333
24417
|
};
|
|
24418
|
+
messageID?: string | undefined;
|
|
24334
24419
|
ref?: {
|
|
24335
24420
|
type: "node";
|
|
24336
24421
|
diagramID: string;
|
|
@@ -24755,6 +24840,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24755
24840
|
} | undefined;
|
|
24756
24841
|
}>, "many">;
|
|
24757
24842
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
24843
|
+
messageID: z.ZodOptional<z.ZodString>;
|
|
24758
24844
|
description: z.ZodObject<{
|
|
24759
24845
|
text: z.ZodString;
|
|
24760
24846
|
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">>;
|
|
@@ -24785,6 +24871,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24785
24871
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
24786
24872
|
};
|
|
24787
24873
|
id?: string | undefined;
|
|
24874
|
+
messageID?: string | undefined;
|
|
24788
24875
|
ref?: {
|
|
24789
24876
|
type: "node";
|
|
24790
24877
|
diagramID: string;
|
|
@@ -24849,6 +24936,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24849
24936
|
slate?: any[] | undefined;
|
|
24850
24937
|
};
|
|
24851
24938
|
id?: string | undefined;
|
|
24939
|
+
messageID?: string | undefined;
|
|
24852
24940
|
ref?: {
|
|
24853
24941
|
type: "node";
|
|
24854
24942
|
diagramID: string;
|
|
@@ -24900,6 +24988,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24900
24988
|
readonly LIST: "List";
|
|
24901
24989
|
readonly CAROUSEL: "Carousel";
|
|
24902
24990
|
}>;
|
|
24991
|
+
messageID: z.ZodOptional<z.ZodString>;
|
|
24903
24992
|
}, "strip", z.ZodTypeAny, {
|
|
24904
24993
|
cards: {
|
|
24905
24994
|
title: string;
|
|
@@ -24919,6 +25008,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24919
25008
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
24920
25009
|
};
|
|
24921
25010
|
id?: string | undefined;
|
|
25011
|
+
messageID?: string | undefined;
|
|
24922
25012
|
ref?: {
|
|
24923
25013
|
type: "node";
|
|
24924
25014
|
diagramID: string;
|
|
@@ -24967,6 +25057,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24967
25057
|
} | undefined;
|
|
24968
25058
|
}[];
|
|
24969
25059
|
layout: "List" | "Carousel";
|
|
25060
|
+
messageID?: string | undefined;
|
|
24970
25061
|
ref?: {
|
|
24971
25062
|
type: "node";
|
|
24972
25063
|
diagramID: string;
|
|
@@ -25032,6 +25123,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25032
25123
|
slate?: any[] | undefined;
|
|
25033
25124
|
};
|
|
25034
25125
|
id?: string | undefined;
|
|
25126
|
+
messageID?: string | undefined;
|
|
25035
25127
|
ref?: {
|
|
25036
25128
|
type: "node";
|
|
25037
25129
|
diagramID: string;
|
|
@@ -25080,6 +25172,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25080
25172
|
} | undefined;
|
|
25081
25173
|
}[];
|
|
25082
25174
|
layout: "List" | "Carousel";
|
|
25175
|
+
messageID?: string | undefined;
|
|
25083
25176
|
ref?: {
|
|
25084
25177
|
type: "node";
|
|
25085
25178
|
diagramID: string;
|
|
@@ -25148,6 +25241,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25148
25241
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
25149
25242
|
};
|
|
25150
25243
|
id?: string | undefined;
|
|
25244
|
+
messageID?: string | undefined;
|
|
25151
25245
|
ref?: {
|
|
25152
25246
|
type: "node";
|
|
25153
25247
|
diagramID: string;
|
|
@@ -25196,6 +25290,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25196
25290
|
} | undefined;
|
|
25197
25291
|
}[];
|
|
25198
25292
|
layout: "List" | "Carousel";
|
|
25293
|
+
messageID?: string | undefined;
|
|
25199
25294
|
ref?: {
|
|
25200
25295
|
type: "node";
|
|
25201
25296
|
diagramID: string;
|
|
@@ -25278,6 +25373,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25278
25373
|
slate?: any[] | undefined;
|
|
25279
25374
|
};
|
|
25280
25375
|
id?: string | undefined;
|
|
25376
|
+
messageID?: string | undefined;
|
|
25281
25377
|
ref?: {
|
|
25282
25378
|
type: "node";
|
|
25283
25379
|
diagramID: string;
|
|
@@ -25326,6 +25422,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25326
25422
|
} | undefined;
|
|
25327
25423
|
}[];
|
|
25328
25424
|
layout: "List" | "Carousel";
|
|
25425
|
+
messageID?: string | undefined;
|
|
25329
25426
|
ref?: {
|
|
25330
25427
|
type: "node";
|
|
25331
25428
|
diagramID: string;
|
|
@@ -25708,6 +25805,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25708
25805
|
metadata?: Record<string, unknown> | undefined;
|
|
25709
25806
|
} | undefined;
|
|
25710
25807
|
}>, "many">;
|
|
25808
|
+
messageID: z.ZodOptional<z.ZodString>;
|
|
25711
25809
|
}, "strip", z.ZodTypeAny, {
|
|
25712
25810
|
buttons: {
|
|
25713
25811
|
name: string;
|
|
@@ -25719,6 +25817,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25719
25817
|
metadata?: Record<string, unknown> | undefined;
|
|
25720
25818
|
} | undefined;
|
|
25721
25819
|
}[];
|
|
25820
|
+
messageID?: string | undefined;
|
|
25722
25821
|
ref?: {
|
|
25723
25822
|
type: "node";
|
|
25724
25823
|
diagramID: string;
|
|
@@ -25776,6 +25875,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25776
25875
|
metadata?: Record<string, unknown> | undefined;
|
|
25777
25876
|
} | undefined;
|
|
25778
25877
|
}[];
|
|
25878
|
+
messageID?: string | undefined;
|
|
25779
25879
|
ref?: {
|
|
25780
25880
|
type: "node";
|
|
25781
25881
|
diagramID: string;
|
|
@@ -25836,6 +25936,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25836
25936
|
metadata?: Record<string, unknown> | undefined;
|
|
25837
25937
|
} | undefined;
|
|
25838
25938
|
}[];
|
|
25939
|
+
messageID?: string | undefined;
|
|
25839
25940
|
ref?: {
|
|
25840
25941
|
type: "node";
|
|
25841
25942
|
diagramID: string;
|
|
@@ -25910,6 +26011,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
25910
26011
|
metadata?: Record<string, unknown> | undefined;
|
|
25911
26012
|
} | undefined;
|
|
25912
26013
|
}[];
|
|
26014
|
+
messageID?: string | undefined;
|
|
25913
26015
|
ref?: {
|
|
25914
26016
|
type: "node";
|
|
25915
26017
|
diagramID: string;
|
|
@@ -29994,6 +30096,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
29994
30096
|
text: string;
|
|
29995
30097
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
29996
30098
|
};
|
|
30099
|
+
messageID?: string | undefined;
|
|
29997
30100
|
ref?: {
|
|
29998
30101
|
type: "node";
|
|
29999
30102
|
diagramID: string;
|
|
@@ -30076,6 +30179,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
30076
30179
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
30077
30180
|
};
|
|
30078
30181
|
id?: string | undefined;
|
|
30182
|
+
messageID?: string | undefined;
|
|
30079
30183
|
ref?: {
|
|
30080
30184
|
type: "node";
|
|
30081
30185
|
diagramID: string;
|
|
@@ -30124,6 +30228,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
30124
30228
|
} | undefined;
|
|
30125
30229
|
}[];
|
|
30126
30230
|
layout: "List" | "Carousel";
|
|
30231
|
+
messageID?: string | undefined;
|
|
30127
30232
|
ref?: {
|
|
30128
30233
|
type: "node";
|
|
30129
30234
|
diagramID: string;
|
|
@@ -30218,6 +30323,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
30218
30323
|
metadata?: Record<string, unknown> | undefined;
|
|
30219
30324
|
} | undefined;
|
|
30220
30325
|
}[];
|
|
30326
|
+
messageID?: string | undefined;
|
|
30221
30327
|
ref?: {
|
|
30222
30328
|
type: "node";
|
|
30223
30329
|
diagramID: string;
|
|
@@ -31054,6 +31160,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
31054
31160
|
text: string;
|
|
31055
31161
|
slate?: any[] | undefined;
|
|
31056
31162
|
};
|
|
31163
|
+
messageID?: string | undefined;
|
|
31057
31164
|
ref?: {
|
|
31058
31165
|
type: "node";
|
|
31059
31166
|
diagramID: string;
|
|
@@ -31136,6 +31243,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
31136
31243
|
slate?: any[] | undefined;
|
|
31137
31244
|
};
|
|
31138
31245
|
id?: string | undefined;
|
|
31246
|
+
messageID?: string | undefined;
|
|
31139
31247
|
ref?: {
|
|
31140
31248
|
type: "node";
|
|
31141
31249
|
diagramID: string;
|
|
@@ -31184,6 +31292,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
31184
31292
|
} | undefined;
|
|
31185
31293
|
}[];
|
|
31186
31294
|
layout: "List" | "Carousel";
|
|
31295
|
+
messageID?: string | undefined;
|
|
31187
31296
|
ref?: {
|
|
31188
31297
|
type: "node";
|
|
31189
31298
|
diagramID: string;
|
|
@@ -31278,6 +31387,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
31278
31387
|
metadata?: Record<string, unknown> | undefined;
|
|
31279
31388
|
} | undefined;
|
|
31280
31389
|
}[];
|
|
31390
|
+
messageID?: string | undefined;
|
|
31281
31391
|
ref?: {
|
|
31282
31392
|
type: "node";
|
|
31283
31393
|
diagramID: string;
|
|
@@ -32117,6 +32227,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
32117
32227
|
text: string;
|
|
32118
32228
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
32119
32229
|
};
|
|
32230
|
+
messageID?: string | undefined;
|
|
32120
32231
|
ref?: {
|
|
32121
32232
|
type: "node";
|
|
32122
32233
|
diagramID: string;
|
|
@@ -32199,6 +32310,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
32199
32310
|
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
32200
32311
|
};
|
|
32201
32312
|
id?: string | undefined;
|
|
32313
|
+
messageID?: string | undefined;
|
|
32202
32314
|
ref?: {
|
|
32203
32315
|
type: "node";
|
|
32204
32316
|
diagramID: string;
|
|
@@ -32247,6 +32359,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
32247
32359
|
} | undefined;
|
|
32248
32360
|
}[];
|
|
32249
32361
|
layout: "List" | "Carousel";
|
|
32362
|
+
messageID?: string | undefined;
|
|
32250
32363
|
ref?: {
|
|
32251
32364
|
type: "node";
|
|
32252
32365
|
diagramID: string;
|
|
@@ -32341,6 +32454,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
32341
32454
|
metadata?: Record<string, unknown> | undefined;
|
|
32342
32455
|
} | undefined;
|
|
32343
32456
|
}[];
|
|
32457
|
+
messageID?: string | undefined;
|
|
32344
32458
|
ref?: {
|
|
32345
32459
|
type: "node";
|
|
32346
32460
|
diagramID: string;
|
|
@@ -33180,6 +33294,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
33180
33294
|
text: string;
|
|
33181
33295
|
slate?: any[] | undefined;
|
|
33182
33296
|
};
|
|
33297
|
+
messageID?: string | undefined;
|
|
33183
33298
|
ref?: {
|
|
33184
33299
|
type: "node";
|
|
33185
33300
|
diagramID: string;
|
|
@@ -33262,6 +33377,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
33262
33377
|
slate?: any[] | undefined;
|
|
33263
33378
|
};
|
|
33264
33379
|
id?: string | undefined;
|
|
33380
|
+
messageID?: string | undefined;
|
|
33265
33381
|
ref?: {
|
|
33266
33382
|
type: "node";
|
|
33267
33383
|
diagramID: string;
|
|
@@ -33310,6 +33426,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
33310
33426
|
} | undefined;
|
|
33311
33427
|
}[];
|
|
33312
33428
|
layout: "List" | "Carousel";
|
|
33429
|
+
messageID?: string | undefined;
|
|
33313
33430
|
ref?: {
|
|
33314
33431
|
type: "node";
|
|
33315
33432
|
diagramID: string;
|
|
@@ -33404,6 +33521,7 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
33404
33521
|
metadata?: Record<string, unknown> | undefined;
|
|
33405
33522
|
} | undefined;
|
|
33406
33523
|
}[];
|
|
33524
|
+
messageID?: string | undefined;
|
|
33407
33525
|
ref?: {
|
|
33408
33526
|
type: "node";
|
|
33409
33527
|
diagramID: string;
|