@botpress/webchat 1.2.0 → 1.3.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/dist/client/MessagingClient/client.d.ts +7 -4
- package/dist/client/PushpinClient/index.d.ts +4 -2
- package/dist/client/PushpinClient/inner-client/index.d.ts +2 -0
- package/dist/client/types.d.ts +4 -1
- package/dist/components/Avatar.d.ts +2 -3
- package/dist/components/Block.d.ts +3 -2
- package/dist/components/CloseWindow.d.ts +5 -0
- package/dist/components/Composer.d.ts +1 -1
- package/dist/components/renderers/Audio.d.ts +1 -1
- package/dist/components/renderers/Carousel.d.ts +1 -1
- package/dist/components/renderers/File.d.ts +1 -1
- package/dist/components/renderers/Image.d.ts +1 -1
- package/dist/components/renderers/Location.d.ts +1 -1
- package/dist/components/renderers/Video.d.ts +1 -1
- package/dist/contexts/WebchatContext.d.ts +3 -3
- package/dist/gen/client/api.d.ts +330 -12
- package/dist/gen/client/client.d.ts +5 -1
- package/dist/gen/client/errors.d.ts +9 -2
- package/dist/gen/models/index.d.ts +186 -23
- package/dist/gen/models/message.j.d.ts +107 -5
- package/dist/gen/models/message.t.d.ts +49 -0
- package/dist/gen/models/message.z.d.ts +79 -12
- package/dist/gen/models/user.j.d.ts +0 -3
- package/dist/gen/models/user.t.d.ts +0 -1
- package/dist/gen/models/user.z.d.ts +0 -3
- package/dist/gen/signals/index.d.ts +218 -23
- package/dist/gen/signals/messageCreatedSignal.j.d.ts +107 -5
- package/dist/gen/signals/messageCreatedSignal.t.d.ts +49 -0
- package/dist/gen/signals/messageCreatedSignal.z.d.ts +111 -18
- package/dist/get-client.d.ts +8 -0
- package/dist/hooks/useClient.d.ts +2 -2
- package/dist/hooks/useWebchatStore.d.ts +3 -0
- package/dist/index.d.ts +3 -4
- package/dist/index.js +33089 -40901
- package/dist/index.umd.cjs +96 -125
- package/dist/providers/WebchatProvider.d.ts +4 -3
- package/dist/schemas/configuration.d.ts +117 -0
- package/dist/schemas/index.d.ts +2 -0
- package/dist/schemas/init.d.ts +3844 -0
- package/dist/schemas/theme.d.ts +231 -232
- package/dist/types/block-type.d.ts +3 -6
- package/dist/types/configuration.d.ts +4 -16
- package/dist/types/index.d.ts +2 -0
- package/dist/types/init.d.ts +6 -0
- package/dist/types/theme.d.ts +7 -0
- package/dist/utils/index.d.ts +0 -2
- package/package.json +11 -37
- package/dist/App.d.ts +0 -11
- package/dist/components/dev-tools/DevTools.d.ts +0 -1
- package/dist/components/dev-tools/configuration.d.ts +0 -2
- package/dist/components/dev-tools/helpers.d.ts +0 -5
- package/dist/main.d.ts +0 -0
- package/dist/options.d.ts +0 -11
- package/dist/themes/base.d.ts +0 -3
- package/dist/themes/baseColors.d.ts +0 -736
- package/dist/themes/dawn.d.ts +0 -4
- package/dist/themes/eggplant.d.ts +0 -4
- package/dist/themes/index.d.ts +0 -3
- package/dist/themes/prism.d.ts +0 -4
- package/dist/themes/themeBuilder.d.ts +0 -27
- package/dist/twind.config.d.ts +0 -9
- package/dist/twind.d.ts +0 -16
- package/dist/utils/mergeThemes.d.ts +0 -2
- package/dist/utils/withBaseTheme.d.ts +0 -384
|
@@ -20,13 +20,16 @@ export declare const zod: {
|
|
|
20
20
|
createdAt: import("zod").ZodString;
|
|
21
21
|
payload: import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
22
22
|
audioUrl: import("zod").ZodString;
|
|
23
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
23
24
|
type: import("zod").ZodLiteral<"audio">;
|
|
24
25
|
}, "strip", import("zod").ZodTypeAny, {
|
|
25
26
|
type: "audio";
|
|
26
27
|
audioUrl: string;
|
|
28
|
+
className?: string | undefined;
|
|
27
29
|
}, {
|
|
28
30
|
type: "audio";
|
|
29
31
|
audioUrl: string;
|
|
32
|
+
className?: string | undefined;
|
|
30
33
|
}>, import("zod").ZodObject<{
|
|
31
34
|
title: import("zod").ZodString;
|
|
32
35
|
subtitle: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -45,9 +48,10 @@ export declare const zod: {
|
|
|
45
48
|
label: string;
|
|
46
49
|
}>, "many">;
|
|
47
50
|
type: import("zod").ZodLiteral<"card">;
|
|
51
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
48
52
|
}, "strip", import("zod").ZodTypeAny, {
|
|
49
|
-
type: "card";
|
|
50
53
|
title: string;
|
|
54
|
+
type: "card";
|
|
51
55
|
actions: {
|
|
52
56
|
value: string;
|
|
53
57
|
action: "url" | "postback" | "say";
|
|
@@ -55,9 +59,10 @@ export declare const zod: {
|
|
|
55
59
|
}[];
|
|
56
60
|
subtitle?: string | undefined;
|
|
57
61
|
imageUrl?: string | undefined;
|
|
62
|
+
className?: string | undefined;
|
|
58
63
|
}, {
|
|
59
|
-
type: "card";
|
|
60
64
|
title: string;
|
|
65
|
+
type: "card";
|
|
61
66
|
actions: {
|
|
62
67
|
value: string;
|
|
63
68
|
action: "url" | "postback" | "say";
|
|
@@ -65,6 +70,7 @@ export declare const zod: {
|
|
|
65
70
|
}[];
|
|
66
71
|
subtitle?: string | undefined;
|
|
67
72
|
imageUrl?: string | undefined;
|
|
73
|
+
className?: string | undefined;
|
|
68
74
|
}>, import("zod").ZodObject<{
|
|
69
75
|
items: import("zod").ZodArray<import("zod").ZodObject<{
|
|
70
76
|
title: import("zod").ZodString;
|
|
@@ -83,6 +89,7 @@ export declare const zod: {
|
|
|
83
89
|
action: "url" | "postback" | "say";
|
|
84
90
|
label: string;
|
|
85
91
|
}>, "many">;
|
|
92
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
86
93
|
}, "strip", import("zod").ZodTypeAny, {
|
|
87
94
|
title: string;
|
|
88
95
|
actions: {
|
|
@@ -92,6 +99,7 @@ export declare const zod: {
|
|
|
92
99
|
}[];
|
|
93
100
|
subtitle?: string | undefined;
|
|
94
101
|
imageUrl?: string | undefined;
|
|
102
|
+
className?: string | undefined;
|
|
95
103
|
}, {
|
|
96
104
|
title: string;
|
|
97
105
|
actions: {
|
|
@@ -101,7 +109,9 @@ export declare const zod: {
|
|
|
101
109
|
}[];
|
|
102
110
|
subtitle?: string | undefined;
|
|
103
111
|
imageUrl?: string | undefined;
|
|
112
|
+
className?: string | undefined;
|
|
104
113
|
}>, "many">;
|
|
114
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
105
115
|
type: import("zod").ZodLiteral<"carousel">;
|
|
106
116
|
}, "strip", import("zod").ZodTypeAny, {
|
|
107
117
|
type: "carousel";
|
|
@@ -114,7 +124,9 @@ export declare const zod: {
|
|
|
114
124
|
}[];
|
|
115
125
|
subtitle?: string | undefined;
|
|
116
126
|
imageUrl?: string | undefined;
|
|
127
|
+
className?: string | undefined;
|
|
117
128
|
}[];
|
|
129
|
+
className?: string | undefined;
|
|
118
130
|
}, {
|
|
119
131
|
type: "carousel";
|
|
120
132
|
items: {
|
|
@@ -126,7 +138,9 @@ export declare const zod: {
|
|
|
126
138
|
}[];
|
|
127
139
|
subtitle?: string | undefined;
|
|
128
140
|
imageUrl?: string | undefined;
|
|
141
|
+
className?: string | undefined;
|
|
129
142
|
}[];
|
|
143
|
+
className?: string | undefined;
|
|
130
144
|
}>, import("zod").ZodObject<{
|
|
131
145
|
text: import("zod").ZodString;
|
|
132
146
|
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -139,21 +153,27 @@ export declare const zod: {
|
|
|
139
153
|
value: string;
|
|
140
154
|
label: string;
|
|
141
155
|
}>, "many">;
|
|
156
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
142
157
|
type: import("zod").ZodLiteral<"choice">;
|
|
158
|
+
disableFreeText: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
143
159
|
}, "strip", import("zod").ZodTypeAny, {
|
|
144
|
-
type: "choice";
|
|
145
160
|
options: {
|
|
146
161
|
value: string;
|
|
147
162
|
label: string;
|
|
148
163
|
}[];
|
|
164
|
+
type: "choice";
|
|
149
165
|
text: string;
|
|
166
|
+
className?: string | undefined;
|
|
167
|
+
disableFreeText?: boolean | undefined;
|
|
150
168
|
}, {
|
|
151
|
-
type: "choice";
|
|
152
169
|
options: {
|
|
153
170
|
value: string;
|
|
154
171
|
label: string;
|
|
155
172
|
}[];
|
|
173
|
+
type: "choice";
|
|
156
174
|
text: string;
|
|
175
|
+
className?: string | undefined;
|
|
176
|
+
disableFreeText?: boolean | undefined;
|
|
157
177
|
}>, import("zod").ZodObject<{
|
|
158
178
|
text: import("zod").ZodString;
|
|
159
179
|
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -166,47 +186,57 @@ export declare const zod: {
|
|
|
166
186
|
value: string;
|
|
167
187
|
label: string;
|
|
168
188
|
}>, "many">;
|
|
189
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
169
190
|
type: import("zod").ZodLiteral<"dropdown">;
|
|
170
191
|
}, "strip", import("zod").ZodTypeAny, {
|
|
171
|
-
type: "dropdown";
|
|
172
192
|
options: {
|
|
173
193
|
value: string;
|
|
174
194
|
label: string;
|
|
175
195
|
}[];
|
|
196
|
+
type: "dropdown";
|
|
176
197
|
text: string;
|
|
198
|
+
className?: string | undefined;
|
|
177
199
|
}, {
|
|
178
|
-
type: "dropdown";
|
|
179
200
|
options: {
|
|
180
201
|
value: string;
|
|
181
202
|
label: string;
|
|
182
203
|
}[];
|
|
204
|
+
type: "dropdown";
|
|
183
205
|
text: string;
|
|
206
|
+
className?: string | undefined;
|
|
184
207
|
}>, import("zod").ZodObject<{
|
|
185
208
|
fileUrl: import("zod").ZodString;
|
|
186
209
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
210
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
187
211
|
type: import("zod").ZodLiteral<"file">;
|
|
188
212
|
}, "strip", import("zod").ZodTypeAny, {
|
|
189
213
|
type: "file";
|
|
190
214
|
fileUrl: string;
|
|
191
215
|
title?: string | undefined;
|
|
216
|
+
className?: string | undefined;
|
|
192
217
|
}, {
|
|
193
218
|
type: "file";
|
|
194
219
|
fileUrl: string;
|
|
195
220
|
title?: string | undefined;
|
|
221
|
+
className?: string | undefined;
|
|
196
222
|
}>, import("zod").ZodObject<{
|
|
197
223
|
imageUrl: import("zod").ZodString;
|
|
224
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
198
225
|
type: import("zod").ZodLiteral<"image">;
|
|
199
226
|
}, "strip", import("zod").ZodTypeAny, {
|
|
200
227
|
type: "image";
|
|
201
228
|
imageUrl: string;
|
|
229
|
+
className?: string | undefined;
|
|
202
230
|
}, {
|
|
203
231
|
type: "image";
|
|
204
232
|
imageUrl: string;
|
|
233
|
+
className?: string | undefined;
|
|
205
234
|
}>, import("zod").ZodObject<{
|
|
206
235
|
latitude: import("zod").ZodNumber;
|
|
207
236
|
longitude: import("zod").ZodNumber;
|
|
208
237
|
address: import("zod").ZodOptional<import("zod").ZodString>;
|
|
209
238
|
title: import("zod").ZodOptional<import("zod").ZodString>;
|
|
239
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
210
240
|
type: import("zod").ZodLiteral<"location">;
|
|
211
241
|
}, "strip", import("zod").ZodTypeAny, {
|
|
212
242
|
type: "location";
|
|
@@ -214,39 +244,50 @@ export declare const zod: {
|
|
|
214
244
|
longitude: number;
|
|
215
245
|
address?: string | undefined;
|
|
216
246
|
title?: string | undefined;
|
|
247
|
+
className?: string | undefined;
|
|
217
248
|
}, {
|
|
218
249
|
type: "location";
|
|
219
250
|
latitude: number;
|
|
220
251
|
longitude: number;
|
|
221
252
|
address?: string | undefined;
|
|
222
253
|
title?: string | undefined;
|
|
254
|
+
className?: string | undefined;
|
|
223
255
|
}>, import("zod").ZodObject<{
|
|
224
256
|
markdown: import("zod").ZodString;
|
|
257
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
225
258
|
type: import("zod").ZodLiteral<"markdown">;
|
|
226
259
|
}, "strip", import("zod").ZodTypeAny, {
|
|
227
260
|
type: "markdown";
|
|
228
261
|
markdown: string;
|
|
262
|
+
className?: string | undefined;
|
|
229
263
|
}, {
|
|
230
264
|
type: "markdown";
|
|
231
265
|
markdown: string;
|
|
266
|
+
className?: string | undefined;
|
|
232
267
|
}>, import("zod").ZodObject<{
|
|
233
268
|
text: import("zod").ZodString;
|
|
269
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
234
270
|
type: import("zod").ZodLiteral<"text">;
|
|
235
271
|
}, "strip", import("zod").ZodTypeAny, {
|
|
236
272
|
type: "text";
|
|
237
273
|
text: string;
|
|
274
|
+
className?: string | undefined;
|
|
238
275
|
}, {
|
|
239
276
|
type: "text";
|
|
240
277
|
text: string;
|
|
278
|
+
className?: string | undefined;
|
|
241
279
|
}>, import("zod").ZodObject<{
|
|
242
280
|
videoUrl: import("zod").ZodString;
|
|
281
|
+
className: import("zod").ZodOptional<import("zod").ZodString>;
|
|
243
282
|
type: import("zod").ZodLiteral<"video">;
|
|
244
283
|
}, "strip", import("zod").ZodTypeAny, {
|
|
245
284
|
type: "video";
|
|
246
285
|
videoUrl: string;
|
|
286
|
+
className?: string | undefined;
|
|
247
287
|
}, {
|
|
248
288
|
type: "video";
|
|
249
289
|
videoUrl: string;
|
|
290
|
+
className?: string | undefined;
|
|
250
291
|
}>]>;
|
|
251
292
|
userId: import("zod").ZodString;
|
|
252
293
|
conversationId: import("zod").ZodString;
|
|
@@ -254,9 +295,10 @@ export declare const zod: {
|
|
|
254
295
|
payload: {
|
|
255
296
|
type: "audio";
|
|
256
297
|
audioUrl: string;
|
|
298
|
+
className?: string | undefined;
|
|
257
299
|
} | {
|
|
258
|
-
type: "card";
|
|
259
300
|
title: string;
|
|
301
|
+
type: "card";
|
|
260
302
|
actions: {
|
|
261
303
|
value: string;
|
|
262
304
|
action: "url" | "postback" | "say";
|
|
@@ -264,6 +306,7 @@ export declare const zod: {
|
|
|
264
306
|
}[];
|
|
265
307
|
subtitle?: string | undefined;
|
|
266
308
|
imageUrl?: string | undefined;
|
|
309
|
+
className?: string | undefined;
|
|
267
310
|
} | {
|
|
268
311
|
type: "carousel";
|
|
269
312
|
items: {
|
|
@@ -275,43 +318,54 @@ export declare const zod: {
|
|
|
275
318
|
}[];
|
|
276
319
|
subtitle?: string | undefined;
|
|
277
320
|
imageUrl?: string | undefined;
|
|
321
|
+
className?: string | undefined;
|
|
278
322
|
}[];
|
|
323
|
+
className?: string | undefined;
|
|
279
324
|
} | {
|
|
280
|
-
type: "choice";
|
|
281
325
|
options: {
|
|
282
326
|
value: string;
|
|
283
327
|
label: string;
|
|
284
328
|
}[];
|
|
329
|
+
type: "choice";
|
|
285
330
|
text: string;
|
|
331
|
+
className?: string | undefined;
|
|
332
|
+
disableFreeText?: boolean | undefined;
|
|
286
333
|
} | {
|
|
287
|
-
type: "dropdown";
|
|
288
334
|
options: {
|
|
289
335
|
value: string;
|
|
290
336
|
label: string;
|
|
291
337
|
}[];
|
|
338
|
+
type: "dropdown";
|
|
292
339
|
text: string;
|
|
340
|
+
className?: string | undefined;
|
|
293
341
|
} | {
|
|
294
342
|
type: "file";
|
|
295
343
|
fileUrl: string;
|
|
296
344
|
title?: string | undefined;
|
|
345
|
+
className?: string | undefined;
|
|
297
346
|
} | {
|
|
298
347
|
type: "image";
|
|
299
348
|
imageUrl: string;
|
|
349
|
+
className?: string | undefined;
|
|
300
350
|
} | {
|
|
301
351
|
type: "location";
|
|
302
352
|
latitude: number;
|
|
303
353
|
longitude: number;
|
|
304
354
|
address?: string | undefined;
|
|
305
355
|
title?: string | undefined;
|
|
356
|
+
className?: string | undefined;
|
|
306
357
|
} | {
|
|
307
358
|
type: "markdown";
|
|
308
359
|
markdown: string;
|
|
360
|
+
className?: string | undefined;
|
|
309
361
|
} | {
|
|
310
362
|
type: "text";
|
|
311
363
|
text: string;
|
|
364
|
+
className?: string | undefined;
|
|
312
365
|
} | {
|
|
313
366
|
type: "video";
|
|
314
367
|
videoUrl: string;
|
|
368
|
+
className?: string | undefined;
|
|
315
369
|
};
|
|
316
370
|
id: string;
|
|
317
371
|
userId: string;
|
|
@@ -321,9 +375,10 @@ export declare const zod: {
|
|
|
321
375
|
payload: {
|
|
322
376
|
type: "audio";
|
|
323
377
|
audioUrl: string;
|
|
378
|
+
className?: string | undefined;
|
|
324
379
|
} | {
|
|
325
|
-
type: "card";
|
|
326
380
|
title: string;
|
|
381
|
+
type: "card";
|
|
327
382
|
actions: {
|
|
328
383
|
value: string;
|
|
329
384
|
action: "url" | "postback" | "say";
|
|
@@ -331,6 +386,7 @@ export declare const zod: {
|
|
|
331
386
|
}[];
|
|
332
387
|
subtitle?: string | undefined;
|
|
333
388
|
imageUrl?: string | undefined;
|
|
389
|
+
className?: string | undefined;
|
|
334
390
|
} | {
|
|
335
391
|
type: "carousel";
|
|
336
392
|
items: {
|
|
@@ -342,43 +398,54 @@ export declare const zod: {
|
|
|
342
398
|
}[];
|
|
343
399
|
subtitle?: string | undefined;
|
|
344
400
|
imageUrl?: string | undefined;
|
|
401
|
+
className?: string | undefined;
|
|
345
402
|
}[];
|
|
403
|
+
className?: string | undefined;
|
|
346
404
|
} | {
|
|
347
|
-
type: "choice";
|
|
348
405
|
options: {
|
|
349
406
|
value: string;
|
|
350
407
|
label: string;
|
|
351
408
|
}[];
|
|
409
|
+
type: "choice";
|
|
352
410
|
text: string;
|
|
411
|
+
className?: string | undefined;
|
|
412
|
+
disableFreeText?: boolean | undefined;
|
|
353
413
|
} | {
|
|
354
|
-
type: "dropdown";
|
|
355
414
|
options: {
|
|
356
415
|
value: string;
|
|
357
416
|
label: string;
|
|
358
417
|
}[];
|
|
418
|
+
type: "dropdown";
|
|
359
419
|
text: string;
|
|
420
|
+
className?: string | undefined;
|
|
360
421
|
} | {
|
|
361
422
|
type: "file";
|
|
362
423
|
fileUrl: string;
|
|
363
424
|
title?: string | undefined;
|
|
425
|
+
className?: string | undefined;
|
|
364
426
|
} | {
|
|
365
427
|
type: "image";
|
|
366
428
|
imageUrl: string;
|
|
429
|
+
className?: string | undefined;
|
|
367
430
|
} | {
|
|
368
431
|
type: "location";
|
|
369
432
|
latitude: number;
|
|
370
433
|
longitude: number;
|
|
371
434
|
address?: string | undefined;
|
|
372
435
|
title?: string | undefined;
|
|
436
|
+
className?: string | undefined;
|
|
373
437
|
} | {
|
|
374
438
|
type: "markdown";
|
|
375
439
|
markdown: string;
|
|
440
|
+
className?: string | undefined;
|
|
376
441
|
} | {
|
|
377
442
|
type: "text";
|
|
378
443
|
text: string;
|
|
444
|
+
className?: string | undefined;
|
|
379
445
|
} | {
|
|
380
446
|
type: "video";
|
|
381
447
|
videoUrl: string;
|
|
448
|
+
className?: string | undefined;
|
|
382
449
|
};
|
|
383
450
|
id: string;
|
|
384
451
|
userId: string;
|
|
@@ -388,7 +455,6 @@ export declare const zod: {
|
|
|
388
455
|
user: import("zod").ZodObject<{
|
|
389
456
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
390
457
|
pictureUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
391
|
-
profile: import("zod").ZodOptional<import("zod").ZodString>;
|
|
392
458
|
id: import("zod").ZodString;
|
|
393
459
|
createdAt: import("zod").ZodString;
|
|
394
460
|
updatedAt: import("zod").ZodString;
|
|
@@ -398,14 +464,12 @@ export declare const zod: {
|
|
|
398
464
|
updatedAt: string;
|
|
399
465
|
name?: string | undefined;
|
|
400
466
|
pictureUrl?: string | undefined;
|
|
401
|
-
profile?: string | undefined;
|
|
402
467
|
}, {
|
|
403
468
|
id: string;
|
|
404
469
|
createdAt: string;
|
|
405
470
|
updatedAt: string;
|
|
406
471
|
name?: string | undefined;
|
|
407
472
|
pictureUrl?: string | undefined;
|
|
408
|
-
profile?: string | undefined;
|
|
409
473
|
}>;
|
|
410
474
|
};
|
|
411
475
|
export declare const json: {
|
|
@@ -446,6 +510,10 @@ export declare const json: {
|
|
|
446
510
|
type: string;
|
|
447
511
|
minLength: number;
|
|
448
512
|
};
|
|
513
|
+
className: {
|
|
514
|
+
type: string;
|
|
515
|
+
description: string;
|
|
516
|
+
};
|
|
449
517
|
type: {
|
|
450
518
|
type: string;
|
|
451
519
|
const: string;
|
|
@@ -457,6 +525,7 @@ export declare const json: {
|
|
|
457
525
|
items?: undefined;
|
|
458
526
|
text?: undefined;
|
|
459
527
|
options?: undefined;
|
|
528
|
+
disableFreeText?: undefined;
|
|
460
529
|
fileUrl?: undefined;
|
|
461
530
|
latitude?: undefined;
|
|
462
531
|
longitude?: undefined;
|
|
@@ -475,11 +544,10 @@ export declare const json: {
|
|
|
475
544
|
};
|
|
476
545
|
subtitle: {
|
|
477
546
|
type: string;
|
|
478
|
-
minLength: number;
|
|
479
547
|
};
|
|
480
548
|
imageUrl: {
|
|
481
549
|
type: string;
|
|
482
|
-
minLength
|
|
550
|
+
minLength?: undefined;
|
|
483
551
|
};
|
|
484
552
|
actions: {
|
|
485
553
|
type: string;
|
|
@@ -507,10 +575,15 @@ export declare const json: {
|
|
|
507
575
|
type: string;
|
|
508
576
|
const: string;
|
|
509
577
|
};
|
|
578
|
+
className: {
|
|
579
|
+
type: string;
|
|
580
|
+
description: string;
|
|
581
|
+
};
|
|
510
582
|
audioUrl?: undefined;
|
|
511
583
|
items?: undefined;
|
|
512
584
|
text?: undefined;
|
|
513
585
|
options?: undefined;
|
|
586
|
+
disableFreeText?: undefined;
|
|
514
587
|
fileUrl?: undefined;
|
|
515
588
|
latitude?: undefined;
|
|
516
589
|
longitude?: undefined;
|
|
@@ -534,11 +607,9 @@ export declare const json: {
|
|
|
534
607
|
};
|
|
535
608
|
subtitle: {
|
|
536
609
|
type: string;
|
|
537
|
-
minLength: number;
|
|
538
610
|
};
|
|
539
611
|
imageUrl: {
|
|
540
612
|
type: string;
|
|
541
|
-
minLength: number;
|
|
542
613
|
};
|
|
543
614
|
actions: {
|
|
544
615
|
type: string;
|
|
@@ -562,11 +633,19 @@ export declare const json: {
|
|
|
562
633
|
additionalProperties: boolean;
|
|
563
634
|
};
|
|
564
635
|
};
|
|
636
|
+
className: {
|
|
637
|
+
type: string;
|
|
638
|
+
description: string;
|
|
639
|
+
};
|
|
565
640
|
};
|
|
566
641
|
required: string[];
|
|
567
642
|
additionalProperties: boolean;
|
|
568
643
|
};
|
|
569
644
|
};
|
|
645
|
+
className: {
|
|
646
|
+
type: string;
|
|
647
|
+
description: string;
|
|
648
|
+
};
|
|
570
649
|
type: {
|
|
571
650
|
type: string;
|
|
572
651
|
const: string;
|
|
@@ -578,6 +657,7 @@ export declare const json: {
|
|
|
578
657
|
actions?: undefined;
|
|
579
658
|
text?: undefined;
|
|
580
659
|
options?: undefined;
|
|
660
|
+
disableFreeText?: undefined;
|
|
581
661
|
fileUrl?: undefined;
|
|
582
662
|
latitude?: undefined;
|
|
583
663
|
longitude?: undefined;
|
|
@@ -592,7 +672,7 @@ export declare const json: {
|
|
|
592
672
|
properties: {
|
|
593
673
|
text: {
|
|
594
674
|
type: string;
|
|
595
|
-
minLength
|
|
675
|
+
minLength?: undefined;
|
|
596
676
|
};
|
|
597
677
|
options: {
|
|
598
678
|
type: string;
|
|
@@ -612,10 +692,17 @@ export declare const json: {
|
|
|
612
692
|
additionalProperties: boolean;
|
|
613
693
|
};
|
|
614
694
|
};
|
|
695
|
+
className: {
|
|
696
|
+
type: string;
|
|
697
|
+
description: string;
|
|
698
|
+
};
|
|
615
699
|
type: {
|
|
616
700
|
type: string;
|
|
617
701
|
const: string;
|
|
618
702
|
};
|
|
703
|
+
disableFreeText: {
|
|
704
|
+
type: string;
|
|
705
|
+
};
|
|
619
706
|
audioUrl?: undefined;
|
|
620
707
|
title?: undefined;
|
|
621
708
|
subtitle?: undefined;
|
|
@@ -631,6 +718,55 @@ export declare const json: {
|
|
|
631
718
|
};
|
|
632
719
|
required: string[];
|
|
633
720
|
additionalProperties: boolean;
|
|
721
|
+
} | {
|
|
722
|
+
type: string;
|
|
723
|
+
properties: {
|
|
724
|
+
text: {
|
|
725
|
+
type: string;
|
|
726
|
+
minLength?: undefined;
|
|
727
|
+
};
|
|
728
|
+
options: {
|
|
729
|
+
type: string;
|
|
730
|
+
items: {
|
|
731
|
+
type: string;
|
|
732
|
+
properties: {
|
|
733
|
+
label: {
|
|
734
|
+
type: string;
|
|
735
|
+
minLength: number;
|
|
736
|
+
};
|
|
737
|
+
value: {
|
|
738
|
+
type: string;
|
|
739
|
+
minLength: number;
|
|
740
|
+
};
|
|
741
|
+
};
|
|
742
|
+
required: string[];
|
|
743
|
+
additionalProperties: boolean;
|
|
744
|
+
};
|
|
745
|
+
};
|
|
746
|
+
className: {
|
|
747
|
+
type: string;
|
|
748
|
+
description: string;
|
|
749
|
+
};
|
|
750
|
+
type: {
|
|
751
|
+
type: string;
|
|
752
|
+
const: string;
|
|
753
|
+
};
|
|
754
|
+
audioUrl?: undefined;
|
|
755
|
+
title?: undefined;
|
|
756
|
+
subtitle?: undefined;
|
|
757
|
+
imageUrl?: undefined;
|
|
758
|
+
actions?: undefined;
|
|
759
|
+
items?: undefined;
|
|
760
|
+
disableFreeText?: undefined;
|
|
761
|
+
fileUrl?: undefined;
|
|
762
|
+
latitude?: undefined;
|
|
763
|
+
longitude?: undefined;
|
|
764
|
+
address?: undefined;
|
|
765
|
+
markdown?: undefined;
|
|
766
|
+
videoUrl?: undefined;
|
|
767
|
+
};
|
|
768
|
+
required: string[];
|
|
769
|
+
additionalProperties: boolean;
|
|
634
770
|
} | {
|
|
635
771
|
type: string;
|
|
636
772
|
properties: {
|
|
@@ -642,6 +778,10 @@ export declare const json: {
|
|
|
642
778
|
type: string;
|
|
643
779
|
minLength: number;
|
|
644
780
|
};
|
|
781
|
+
className: {
|
|
782
|
+
type: string;
|
|
783
|
+
description: string;
|
|
784
|
+
};
|
|
645
785
|
type: {
|
|
646
786
|
type: string;
|
|
647
787
|
const: string;
|
|
@@ -653,6 +793,7 @@ export declare const json: {
|
|
|
653
793
|
items?: undefined;
|
|
654
794
|
text?: undefined;
|
|
655
795
|
options?: undefined;
|
|
796
|
+
disableFreeText?: undefined;
|
|
656
797
|
latitude?: undefined;
|
|
657
798
|
longitude?: undefined;
|
|
658
799
|
address?: undefined;
|
|
@@ -668,6 +809,10 @@ export declare const json: {
|
|
|
668
809
|
type: string;
|
|
669
810
|
minLength: number;
|
|
670
811
|
};
|
|
812
|
+
className: {
|
|
813
|
+
type: string;
|
|
814
|
+
description: string;
|
|
815
|
+
};
|
|
671
816
|
type: {
|
|
672
817
|
type: string;
|
|
673
818
|
const: string;
|
|
@@ -679,6 +824,7 @@ export declare const json: {
|
|
|
679
824
|
items?: undefined;
|
|
680
825
|
text?: undefined;
|
|
681
826
|
options?: undefined;
|
|
827
|
+
disableFreeText?: undefined;
|
|
682
828
|
fileUrl?: undefined;
|
|
683
829
|
latitude?: undefined;
|
|
684
830
|
longitude?: undefined;
|
|
@@ -704,6 +850,10 @@ export declare const json: {
|
|
|
704
850
|
type: string;
|
|
705
851
|
minLength?: undefined;
|
|
706
852
|
};
|
|
853
|
+
className: {
|
|
854
|
+
type: string;
|
|
855
|
+
description: string;
|
|
856
|
+
};
|
|
707
857
|
type: {
|
|
708
858
|
type: string;
|
|
709
859
|
const: string;
|
|
@@ -715,6 +865,7 @@ export declare const json: {
|
|
|
715
865
|
items?: undefined;
|
|
716
866
|
text?: undefined;
|
|
717
867
|
options?: undefined;
|
|
868
|
+
disableFreeText?: undefined;
|
|
718
869
|
fileUrl?: undefined;
|
|
719
870
|
markdown?: undefined;
|
|
720
871
|
videoUrl?: undefined;
|
|
@@ -728,6 +879,10 @@ export declare const json: {
|
|
|
728
879
|
type: string;
|
|
729
880
|
minLength: number;
|
|
730
881
|
};
|
|
882
|
+
className: {
|
|
883
|
+
type: string;
|
|
884
|
+
description: string;
|
|
885
|
+
};
|
|
731
886
|
type: {
|
|
732
887
|
type: string;
|
|
733
888
|
const: string;
|
|
@@ -740,6 +895,7 @@ export declare const json: {
|
|
|
740
895
|
items?: undefined;
|
|
741
896
|
text?: undefined;
|
|
742
897
|
options?: undefined;
|
|
898
|
+
disableFreeText?: undefined;
|
|
743
899
|
fileUrl?: undefined;
|
|
744
900
|
latitude?: undefined;
|
|
745
901
|
longitude?: undefined;
|
|
@@ -755,6 +911,10 @@ export declare const json: {
|
|
|
755
911
|
type: string;
|
|
756
912
|
minLength: number;
|
|
757
913
|
};
|
|
914
|
+
className: {
|
|
915
|
+
type: string;
|
|
916
|
+
description: string;
|
|
917
|
+
};
|
|
758
918
|
type: {
|
|
759
919
|
type: string;
|
|
760
920
|
const: string;
|
|
@@ -766,6 +926,7 @@ export declare const json: {
|
|
|
766
926
|
actions?: undefined;
|
|
767
927
|
items?: undefined;
|
|
768
928
|
options?: undefined;
|
|
929
|
+
disableFreeText?: undefined;
|
|
769
930
|
fileUrl?: undefined;
|
|
770
931
|
latitude?: undefined;
|
|
771
932
|
longitude?: undefined;
|
|
@@ -782,6 +943,10 @@ export declare const json: {
|
|
|
782
943
|
type: string;
|
|
783
944
|
minLength: number;
|
|
784
945
|
};
|
|
946
|
+
className: {
|
|
947
|
+
type: string;
|
|
948
|
+
description: string;
|
|
949
|
+
};
|
|
785
950
|
type: {
|
|
786
951
|
type: string;
|
|
787
952
|
const: string;
|
|
@@ -794,6 +959,7 @@ export declare const json: {
|
|
|
794
959
|
items?: undefined;
|
|
795
960
|
text?: undefined;
|
|
796
961
|
options?: undefined;
|
|
962
|
+
disableFreeText?: undefined;
|
|
797
963
|
fileUrl?: undefined;
|
|
798
964
|
latitude?: undefined;
|
|
799
965
|
longitude?: undefined;
|
|
@@ -824,9 +990,6 @@ export declare const json: {
|
|
|
824
990
|
pictureUrl: {
|
|
825
991
|
type: string;
|
|
826
992
|
};
|
|
827
|
-
profile: {
|
|
828
|
-
type: string;
|
|
829
|
-
};
|
|
830
993
|
id: {
|
|
831
994
|
type: string;
|
|
832
995
|
};
|