@marketrix.ai/widget 3.8.459 → 3.8.461
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/src/components/base/Button.d.ts +1 -1
- package/dist/src/components/base/IconButton.d.ts +1 -5
- package/dist/src/components/base/Text.d.ts +3 -4
- package/dist/src/components/base/layoutProps.d.ts +1 -0
- package/dist/src/components/blocks/ChatInput.d.ts +1 -2
- package/dist/src/context/ChatContext.d.ts +1 -4
- package/dist/src/context/WidgetProviders.d.ts +3 -2
- package/dist/src/context/sseReducer.d.ts +0 -1
- package/dist/src/design-system/semantic-tokens.d.ts +0 -1
- package/dist/src/hooks/useWidget.d.ts +1 -4
- package/dist/src/sdk/contract.d.ts +0 -30
- package/dist/src/sdk/contracts/application.d.ts +0 -40
- package/dist/src/sdk/contracts/entities.d.ts +0 -31
- package/dist/src/sdk/contracts/widget.d.ts +0 -152
- package/dist/src/sdk/index.d.ts +0 -30
- package/dist/src/services/StorageService.d.ts +0 -1
- package/dist/src/services/StreamClient.d.ts +7 -0
- package/dist/src/types/index.d.ts +0 -1
- package/dist/src/utils/bootstrap.d.ts +4 -1
- package/dist/src/utils/chat.d.ts +1 -1
- package/dist/src/utils/color.d.ts +0 -6
- package/dist/widget.mjs +49 -49
- package/dist/widget.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { WidgetSettingsDataSchema } from './entities';
|
|
3
2
|
export declare const ApplicationWithWidgetsSchema: z.ZodObject<{
|
|
4
3
|
id: z.ZodOptional<z.ZodNumber>;
|
|
5
4
|
created_at: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
@@ -26,8 +25,6 @@ export declare const ApplicationWithWidgetsSchema: z.ZodObject<{
|
|
|
26
25
|
widget_enabled: z.ZodBoolean;
|
|
27
26
|
widget_appearance: z.ZodEnum<{
|
|
28
27
|
default: "default";
|
|
29
|
-
compact: "compact";
|
|
30
|
-
full: "full";
|
|
31
28
|
hidden: "hidden";
|
|
32
29
|
}>;
|
|
33
30
|
widget_position: z.ZodEnum<{
|
|
@@ -36,11 +33,6 @@ export declare const ApplicationWithWidgetsSchema: z.ZodObject<{
|
|
|
36
33
|
top_left: "top_left";
|
|
37
34
|
top_right: "top_right";
|
|
38
35
|
}>;
|
|
39
|
-
widget_device: z.ZodEnum<{
|
|
40
|
-
desktop: "desktop";
|
|
41
|
-
mobile: "mobile";
|
|
42
|
-
desktop_mobile: "desktop_mobile";
|
|
43
|
-
}>;
|
|
44
36
|
widget_header: z.ZodString;
|
|
45
37
|
widget_body: z.ZodString;
|
|
46
38
|
widget_greeting: z.ZodString;
|
|
@@ -49,7 +41,6 @@ export declare const ApplicationWithWidgetsSchema: z.ZodObject<{
|
|
|
49
41
|
widget_feature_tell: z.ZodBoolean;
|
|
50
42
|
widget_feature_show: z.ZodBoolean;
|
|
51
43
|
widget_feature_do: z.ZodBoolean;
|
|
52
|
-
widget_feature_human: z.ZodBoolean;
|
|
53
44
|
widget_background_color: z.ZodString;
|
|
54
45
|
widget_text_color: z.ZodString;
|
|
55
46
|
widget_border_color: z.ZodString;
|
|
@@ -59,10 +50,8 @@ export declare const ApplicationWithWidgetsSchema: z.ZodObject<{
|
|
|
59
50
|
widget_font_size: z.ZodString;
|
|
60
51
|
widget_width: z.ZodString;
|
|
61
52
|
widget_height: z.ZodString;
|
|
62
|
-
widget_shadow: z.ZodString;
|
|
63
53
|
widget_animation_duration: z.ZodString;
|
|
64
54
|
widget_fade_duration: z.ZodString;
|
|
65
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
66
55
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
67
56
|
chip_mode: z.ZodEnum<{
|
|
68
57
|
tell: "tell";
|
|
@@ -103,8 +92,6 @@ export declare const WidgetCreateSchema: z.ZodObject<{
|
|
|
103
92
|
widget_enabled: z.ZodBoolean;
|
|
104
93
|
widget_appearance: z.ZodEnum<{
|
|
105
94
|
default: "default";
|
|
106
|
-
compact: "compact";
|
|
107
|
-
full: "full";
|
|
108
95
|
hidden: "hidden";
|
|
109
96
|
}>;
|
|
110
97
|
widget_position: z.ZodEnum<{
|
|
@@ -113,11 +100,6 @@ export declare const WidgetCreateSchema: z.ZodObject<{
|
|
|
113
100
|
top_left: "top_left";
|
|
114
101
|
top_right: "top_right";
|
|
115
102
|
}>;
|
|
116
|
-
widget_device: z.ZodEnum<{
|
|
117
|
-
desktop: "desktop";
|
|
118
|
-
mobile: "mobile";
|
|
119
|
-
desktop_mobile: "desktop_mobile";
|
|
120
|
-
}>;
|
|
121
103
|
widget_header: z.ZodString;
|
|
122
104
|
widget_body: z.ZodString;
|
|
123
105
|
widget_greeting: z.ZodString;
|
|
@@ -126,7 +108,6 @@ export declare const WidgetCreateSchema: z.ZodObject<{
|
|
|
126
108
|
widget_feature_tell: z.ZodBoolean;
|
|
127
109
|
widget_feature_show: z.ZodBoolean;
|
|
128
110
|
widget_feature_do: z.ZodBoolean;
|
|
129
|
-
widget_feature_human: z.ZodBoolean;
|
|
130
111
|
widget_background_color: z.ZodString;
|
|
131
112
|
widget_text_color: z.ZodString;
|
|
132
113
|
widget_border_color: z.ZodString;
|
|
@@ -136,10 +117,8 @@ export declare const WidgetCreateSchema: z.ZodObject<{
|
|
|
136
117
|
widget_font_size: z.ZodString;
|
|
137
118
|
widget_width: z.ZodString;
|
|
138
119
|
widget_height: z.ZodString;
|
|
139
|
-
widget_shadow: z.ZodString;
|
|
140
120
|
widget_animation_duration: z.ZodString;
|
|
141
121
|
widget_fade_duration: z.ZodString;
|
|
142
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
143
122
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
144
123
|
chip_mode: z.ZodEnum<{
|
|
145
124
|
tell: "tell";
|
|
@@ -163,8 +142,6 @@ export declare const WidgetUpdateSchema: z.ZodObject<{
|
|
|
163
142
|
widget_enabled: z.ZodBoolean;
|
|
164
143
|
widget_appearance: z.ZodEnum<{
|
|
165
144
|
default: "default";
|
|
166
|
-
compact: "compact";
|
|
167
|
-
full: "full";
|
|
168
145
|
hidden: "hidden";
|
|
169
146
|
}>;
|
|
170
147
|
widget_position: z.ZodEnum<{
|
|
@@ -173,11 +150,6 @@ export declare const WidgetUpdateSchema: z.ZodObject<{
|
|
|
173
150
|
top_left: "top_left";
|
|
174
151
|
top_right: "top_right";
|
|
175
152
|
}>;
|
|
176
|
-
widget_device: z.ZodEnum<{
|
|
177
|
-
desktop: "desktop";
|
|
178
|
-
mobile: "mobile";
|
|
179
|
-
desktop_mobile: "desktop_mobile";
|
|
180
|
-
}>;
|
|
181
153
|
widget_header: z.ZodString;
|
|
182
154
|
widget_body: z.ZodString;
|
|
183
155
|
widget_greeting: z.ZodString;
|
|
@@ -186,7 +158,6 @@ export declare const WidgetUpdateSchema: z.ZodObject<{
|
|
|
186
158
|
widget_feature_tell: z.ZodBoolean;
|
|
187
159
|
widget_feature_show: z.ZodBoolean;
|
|
188
160
|
widget_feature_do: z.ZodBoolean;
|
|
189
|
-
widget_feature_human: z.ZodBoolean;
|
|
190
161
|
widget_background_color: z.ZodString;
|
|
191
162
|
widget_text_color: z.ZodString;
|
|
192
163
|
widget_border_color: z.ZodString;
|
|
@@ -196,10 +167,8 @@ export declare const WidgetUpdateSchema: z.ZodObject<{
|
|
|
196
167
|
widget_font_size: z.ZodString;
|
|
197
168
|
widget_width: z.ZodString;
|
|
198
169
|
widget_height: z.ZodString;
|
|
199
|
-
widget_shadow: z.ZodString;
|
|
200
170
|
widget_animation_duration: z.ZodString;
|
|
201
171
|
widget_fade_duration: z.ZodString;
|
|
202
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
203
172
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
204
173
|
chip_mode: z.ZodEnum<{
|
|
205
174
|
tell: "tell";
|
|
@@ -219,7 +188,6 @@ export declare const WidgetUpdateSchema: z.ZodObject<{
|
|
|
219
188
|
snippet: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
220
189
|
}, z.core.$strip>;
|
|
221
190
|
export type WidgetUpdateData = z.infer<typeof WidgetUpdateSchema>;
|
|
222
|
-
export type WidgetSettingsKey = keyof z.infer<typeof WidgetSettingsDataSchema>;
|
|
223
191
|
/** Server → Widget events. */
|
|
224
192
|
export declare const WidgetEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
225
193
|
type: z.ZodLiteral<"registered">;
|
|
@@ -323,8 +291,6 @@ export declare const widgetCreate: import("@orpc/contract").ContractProcedureBui
|
|
|
323
291
|
widget_enabled: z.ZodBoolean;
|
|
324
292
|
widget_appearance: z.ZodEnum<{
|
|
325
293
|
default: "default";
|
|
326
|
-
compact: "compact";
|
|
327
|
-
full: "full";
|
|
328
294
|
hidden: "hidden";
|
|
329
295
|
}>;
|
|
330
296
|
widget_position: z.ZodEnum<{
|
|
@@ -333,11 +299,6 @@ export declare const widgetCreate: import("@orpc/contract").ContractProcedureBui
|
|
|
333
299
|
top_left: "top_left";
|
|
334
300
|
top_right: "top_right";
|
|
335
301
|
}>;
|
|
336
|
-
widget_device: z.ZodEnum<{
|
|
337
|
-
desktop: "desktop";
|
|
338
|
-
mobile: "mobile";
|
|
339
|
-
desktop_mobile: "desktop_mobile";
|
|
340
|
-
}>;
|
|
341
302
|
widget_header: z.ZodString;
|
|
342
303
|
widget_body: z.ZodString;
|
|
343
304
|
widget_greeting: z.ZodString;
|
|
@@ -346,7 +307,6 @@ export declare const widgetCreate: import("@orpc/contract").ContractProcedureBui
|
|
|
346
307
|
widget_feature_tell: z.ZodBoolean;
|
|
347
308
|
widget_feature_show: z.ZodBoolean;
|
|
348
309
|
widget_feature_do: z.ZodBoolean;
|
|
349
|
-
widget_feature_human: z.ZodBoolean;
|
|
350
310
|
widget_background_color: z.ZodString;
|
|
351
311
|
widget_text_color: z.ZodString;
|
|
352
312
|
widget_border_color: z.ZodString;
|
|
@@ -356,10 +316,8 @@ export declare const widgetCreate: import("@orpc/contract").ContractProcedureBui
|
|
|
356
316
|
widget_font_size: z.ZodString;
|
|
357
317
|
widget_width: z.ZodString;
|
|
358
318
|
widget_height: z.ZodString;
|
|
359
|
-
widget_shadow: z.ZodString;
|
|
360
319
|
widget_animation_duration: z.ZodString;
|
|
361
320
|
widget_fade_duration: z.ZodString;
|
|
362
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
363
321
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
364
322
|
chip_mode: z.ZodEnum<{
|
|
365
323
|
tell: "tell";
|
|
@@ -381,8 +339,6 @@ export declare const widgetCreate: import("@orpc/contract").ContractProcedureBui
|
|
|
381
339
|
widget_enabled: z.ZodBoolean;
|
|
382
340
|
widget_appearance: z.ZodEnum<{
|
|
383
341
|
default: "default";
|
|
384
|
-
compact: "compact";
|
|
385
|
-
full: "full";
|
|
386
342
|
hidden: "hidden";
|
|
387
343
|
}>;
|
|
388
344
|
widget_position: z.ZodEnum<{
|
|
@@ -391,11 +347,6 @@ export declare const widgetCreate: import("@orpc/contract").ContractProcedureBui
|
|
|
391
347
|
top_left: "top_left";
|
|
392
348
|
top_right: "top_right";
|
|
393
349
|
}>;
|
|
394
|
-
widget_device: z.ZodEnum<{
|
|
395
|
-
desktop: "desktop";
|
|
396
|
-
mobile: "mobile";
|
|
397
|
-
desktop_mobile: "desktop_mobile";
|
|
398
|
-
}>;
|
|
399
350
|
widget_header: z.ZodString;
|
|
400
351
|
widget_body: z.ZodString;
|
|
401
352
|
widget_greeting: z.ZodString;
|
|
@@ -404,7 +355,6 @@ export declare const widgetCreate: import("@orpc/contract").ContractProcedureBui
|
|
|
404
355
|
widget_feature_tell: z.ZodBoolean;
|
|
405
356
|
widget_feature_show: z.ZodBoolean;
|
|
406
357
|
widget_feature_do: z.ZodBoolean;
|
|
407
|
-
widget_feature_human: z.ZodBoolean;
|
|
408
358
|
widget_background_color: z.ZodString;
|
|
409
359
|
widget_text_color: z.ZodString;
|
|
410
360
|
widget_border_color: z.ZodString;
|
|
@@ -414,10 +364,8 @@ export declare const widgetCreate: import("@orpc/contract").ContractProcedureBui
|
|
|
414
364
|
widget_font_size: z.ZodString;
|
|
415
365
|
widget_width: z.ZodString;
|
|
416
366
|
widget_height: z.ZodString;
|
|
417
|
-
widget_shadow: z.ZodString;
|
|
418
367
|
widget_animation_duration: z.ZodString;
|
|
419
368
|
widget_fade_duration: z.ZodString;
|
|
420
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
421
369
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
422
370
|
chip_mode: z.ZodEnum<{
|
|
423
371
|
tell: "tell";
|
|
@@ -458,8 +406,6 @@ export declare const widgetSearch: import("@orpc/contract").ContractProcedureBui
|
|
|
458
406
|
widget_enabled: z.ZodBoolean;
|
|
459
407
|
widget_appearance: z.ZodEnum<{
|
|
460
408
|
default: "default";
|
|
461
|
-
compact: "compact";
|
|
462
|
-
full: "full";
|
|
463
409
|
hidden: "hidden";
|
|
464
410
|
}>;
|
|
465
411
|
widget_position: z.ZodEnum<{
|
|
@@ -468,11 +414,6 @@ export declare const widgetSearch: import("@orpc/contract").ContractProcedureBui
|
|
|
468
414
|
top_left: "top_left";
|
|
469
415
|
top_right: "top_right";
|
|
470
416
|
}>;
|
|
471
|
-
widget_device: z.ZodEnum<{
|
|
472
|
-
desktop: "desktop";
|
|
473
|
-
mobile: "mobile";
|
|
474
|
-
desktop_mobile: "desktop_mobile";
|
|
475
|
-
}>;
|
|
476
417
|
widget_header: z.ZodString;
|
|
477
418
|
widget_body: z.ZodString;
|
|
478
419
|
widget_greeting: z.ZodString;
|
|
@@ -481,7 +422,6 @@ export declare const widgetSearch: import("@orpc/contract").ContractProcedureBui
|
|
|
481
422
|
widget_feature_tell: z.ZodBoolean;
|
|
482
423
|
widget_feature_show: z.ZodBoolean;
|
|
483
424
|
widget_feature_do: z.ZodBoolean;
|
|
484
|
-
widget_feature_human: z.ZodBoolean;
|
|
485
425
|
widget_background_color: z.ZodString;
|
|
486
426
|
widget_text_color: z.ZodString;
|
|
487
427
|
widget_border_color: z.ZodString;
|
|
@@ -491,10 +431,8 @@ export declare const widgetSearch: import("@orpc/contract").ContractProcedureBui
|
|
|
491
431
|
widget_font_size: z.ZodString;
|
|
492
432
|
widget_width: z.ZodString;
|
|
493
433
|
widget_height: z.ZodString;
|
|
494
|
-
widget_shadow: z.ZodString;
|
|
495
434
|
widget_animation_duration: z.ZodString;
|
|
496
435
|
widget_fade_duration: z.ZodString;
|
|
497
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
498
436
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
499
437
|
chip_mode: z.ZodEnum<{
|
|
500
438
|
tell: "tell";
|
|
@@ -525,8 +463,6 @@ export declare const widgetDefaultGet: import("@orpc/contract").ContractProcedur
|
|
|
525
463
|
widget_enabled: z.ZodBoolean;
|
|
526
464
|
widget_appearance: z.ZodEnum<{
|
|
527
465
|
default: "default";
|
|
528
|
-
compact: "compact";
|
|
529
|
-
full: "full";
|
|
530
466
|
hidden: "hidden";
|
|
531
467
|
}>;
|
|
532
468
|
widget_position: z.ZodEnum<{
|
|
@@ -535,11 +471,6 @@ export declare const widgetDefaultGet: import("@orpc/contract").ContractProcedur
|
|
|
535
471
|
top_left: "top_left";
|
|
536
472
|
top_right: "top_right";
|
|
537
473
|
}>;
|
|
538
|
-
widget_device: z.ZodEnum<{
|
|
539
|
-
desktop: "desktop";
|
|
540
|
-
mobile: "mobile";
|
|
541
|
-
desktop_mobile: "desktop_mobile";
|
|
542
|
-
}>;
|
|
543
474
|
widget_header: z.ZodString;
|
|
544
475
|
widget_body: z.ZodString;
|
|
545
476
|
widget_greeting: z.ZodString;
|
|
@@ -548,7 +479,6 @@ export declare const widgetDefaultGet: import("@orpc/contract").ContractProcedur
|
|
|
548
479
|
widget_feature_tell: z.ZodBoolean;
|
|
549
480
|
widget_feature_show: z.ZodBoolean;
|
|
550
481
|
widget_feature_do: z.ZodBoolean;
|
|
551
|
-
widget_feature_human: z.ZodBoolean;
|
|
552
482
|
widget_background_color: z.ZodString;
|
|
553
483
|
widget_text_color: z.ZodString;
|
|
554
484
|
widget_border_color: z.ZodString;
|
|
@@ -558,10 +488,8 @@ export declare const widgetDefaultGet: import("@orpc/contract").ContractProcedur
|
|
|
558
488
|
widget_font_size: z.ZodString;
|
|
559
489
|
widget_width: z.ZodString;
|
|
560
490
|
widget_height: z.ZodString;
|
|
561
|
-
widget_shadow: z.ZodString;
|
|
562
491
|
widget_animation_duration: z.ZodString;
|
|
563
492
|
widget_fade_duration: z.ZodString;
|
|
564
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
565
493
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
566
494
|
chip_mode: z.ZodEnum<{
|
|
567
495
|
tell: "tell";
|
|
@@ -583,8 +511,6 @@ export declare const widgetUpdate: import("@orpc/contract").ContractProcedureBui
|
|
|
583
511
|
widget_enabled: z.ZodBoolean;
|
|
584
512
|
widget_appearance: z.ZodEnum<{
|
|
585
513
|
default: "default";
|
|
586
|
-
compact: "compact";
|
|
587
|
-
full: "full";
|
|
588
514
|
hidden: "hidden";
|
|
589
515
|
}>;
|
|
590
516
|
widget_position: z.ZodEnum<{
|
|
@@ -593,11 +519,6 @@ export declare const widgetUpdate: import("@orpc/contract").ContractProcedureBui
|
|
|
593
519
|
top_left: "top_left";
|
|
594
520
|
top_right: "top_right";
|
|
595
521
|
}>;
|
|
596
|
-
widget_device: z.ZodEnum<{
|
|
597
|
-
desktop: "desktop";
|
|
598
|
-
mobile: "mobile";
|
|
599
|
-
desktop_mobile: "desktop_mobile";
|
|
600
|
-
}>;
|
|
601
522
|
widget_header: z.ZodString;
|
|
602
523
|
widget_body: z.ZodString;
|
|
603
524
|
widget_greeting: z.ZodString;
|
|
@@ -606,7 +527,6 @@ export declare const widgetUpdate: import("@orpc/contract").ContractProcedureBui
|
|
|
606
527
|
widget_feature_tell: z.ZodBoolean;
|
|
607
528
|
widget_feature_show: z.ZodBoolean;
|
|
608
529
|
widget_feature_do: z.ZodBoolean;
|
|
609
|
-
widget_feature_human: z.ZodBoolean;
|
|
610
530
|
widget_background_color: z.ZodString;
|
|
611
531
|
widget_text_color: z.ZodString;
|
|
612
532
|
widget_border_color: z.ZodString;
|
|
@@ -616,10 +536,8 @@ export declare const widgetUpdate: import("@orpc/contract").ContractProcedureBui
|
|
|
616
536
|
widget_font_size: z.ZodString;
|
|
617
537
|
widget_width: z.ZodString;
|
|
618
538
|
widget_height: z.ZodString;
|
|
619
|
-
widget_shadow: z.ZodString;
|
|
620
539
|
widget_animation_duration: z.ZodString;
|
|
621
540
|
widget_fade_duration: z.ZodString;
|
|
622
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
623
541
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
624
542
|
chip_mode: z.ZodEnum<{
|
|
625
543
|
tell: "tell";
|
|
@@ -650,8 +568,6 @@ export declare const widgetUpdate: import("@orpc/contract").ContractProcedureBui
|
|
|
650
568
|
widget_enabled: z.ZodBoolean;
|
|
651
569
|
widget_appearance: z.ZodEnum<{
|
|
652
570
|
default: "default";
|
|
653
|
-
compact: "compact";
|
|
654
|
-
full: "full";
|
|
655
571
|
hidden: "hidden";
|
|
656
572
|
}>;
|
|
657
573
|
widget_position: z.ZodEnum<{
|
|
@@ -660,11 +576,6 @@ export declare const widgetUpdate: import("@orpc/contract").ContractProcedureBui
|
|
|
660
576
|
top_left: "top_left";
|
|
661
577
|
top_right: "top_right";
|
|
662
578
|
}>;
|
|
663
|
-
widget_device: z.ZodEnum<{
|
|
664
|
-
desktop: "desktop";
|
|
665
|
-
mobile: "mobile";
|
|
666
|
-
desktop_mobile: "desktop_mobile";
|
|
667
|
-
}>;
|
|
668
579
|
widget_header: z.ZodString;
|
|
669
580
|
widget_body: z.ZodString;
|
|
670
581
|
widget_greeting: z.ZodString;
|
|
@@ -673,7 +584,6 @@ export declare const widgetUpdate: import("@orpc/contract").ContractProcedureBui
|
|
|
673
584
|
widget_feature_tell: z.ZodBoolean;
|
|
674
585
|
widget_feature_show: z.ZodBoolean;
|
|
675
586
|
widget_feature_do: z.ZodBoolean;
|
|
676
|
-
widget_feature_human: z.ZodBoolean;
|
|
677
587
|
widget_background_color: z.ZodString;
|
|
678
588
|
widget_text_color: z.ZodString;
|
|
679
589
|
widget_border_color: z.ZodString;
|
|
@@ -683,10 +593,8 @@ export declare const widgetUpdate: import("@orpc/contract").ContractProcedureBui
|
|
|
683
593
|
widget_font_size: z.ZodString;
|
|
684
594
|
widget_width: z.ZodString;
|
|
685
595
|
widget_height: z.ZodString;
|
|
686
|
-
widget_shadow: z.ZodString;
|
|
687
596
|
widget_animation_duration: z.ZodString;
|
|
688
597
|
widget_fade_duration: z.ZodString;
|
|
689
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
690
598
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
691
599
|
chip_mode: z.ZodEnum<{
|
|
692
600
|
tell: "tell";
|
|
@@ -843,8 +751,6 @@ export declare const widgetRoutes: {
|
|
|
843
751
|
widget_enabled: z.ZodBoolean;
|
|
844
752
|
widget_appearance: z.ZodEnum<{
|
|
845
753
|
default: "default";
|
|
846
|
-
compact: "compact";
|
|
847
|
-
full: "full";
|
|
848
754
|
hidden: "hidden";
|
|
849
755
|
}>;
|
|
850
756
|
widget_position: z.ZodEnum<{
|
|
@@ -853,11 +759,6 @@ export declare const widgetRoutes: {
|
|
|
853
759
|
top_left: "top_left";
|
|
854
760
|
top_right: "top_right";
|
|
855
761
|
}>;
|
|
856
|
-
widget_device: z.ZodEnum<{
|
|
857
|
-
desktop: "desktop";
|
|
858
|
-
mobile: "mobile";
|
|
859
|
-
desktop_mobile: "desktop_mobile";
|
|
860
|
-
}>;
|
|
861
762
|
widget_header: z.ZodString;
|
|
862
763
|
widget_body: z.ZodString;
|
|
863
764
|
widget_greeting: z.ZodString;
|
|
@@ -866,7 +767,6 @@ export declare const widgetRoutes: {
|
|
|
866
767
|
widget_feature_tell: z.ZodBoolean;
|
|
867
768
|
widget_feature_show: z.ZodBoolean;
|
|
868
769
|
widget_feature_do: z.ZodBoolean;
|
|
869
|
-
widget_feature_human: z.ZodBoolean;
|
|
870
770
|
widget_background_color: z.ZodString;
|
|
871
771
|
widget_text_color: z.ZodString;
|
|
872
772
|
widget_border_color: z.ZodString;
|
|
@@ -876,10 +776,8 @@ export declare const widgetRoutes: {
|
|
|
876
776
|
widget_font_size: z.ZodString;
|
|
877
777
|
widget_width: z.ZodString;
|
|
878
778
|
widget_height: z.ZodString;
|
|
879
|
-
widget_shadow: z.ZodString;
|
|
880
779
|
widget_animation_duration: z.ZodString;
|
|
881
780
|
widget_fade_duration: z.ZodString;
|
|
882
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
883
781
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
884
782
|
chip_mode: z.ZodEnum<{
|
|
885
783
|
tell: "tell";
|
|
@@ -901,8 +799,6 @@ export declare const widgetRoutes: {
|
|
|
901
799
|
widget_enabled: z.ZodBoolean;
|
|
902
800
|
widget_appearance: z.ZodEnum<{
|
|
903
801
|
default: "default";
|
|
904
|
-
compact: "compact";
|
|
905
|
-
full: "full";
|
|
906
802
|
hidden: "hidden";
|
|
907
803
|
}>;
|
|
908
804
|
widget_position: z.ZodEnum<{
|
|
@@ -911,11 +807,6 @@ export declare const widgetRoutes: {
|
|
|
911
807
|
top_left: "top_left";
|
|
912
808
|
top_right: "top_right";
|
|
913
809
|
}>;
|
|
914
|
-
widget_device: z.ZodEnum<{
|
|
915
|
-
desktop: "desktop";
|
|
916
|
-
mobile: "mobile";
|
|
917
|
-
desktop_mobile: "desktop_mobile";
|
|
918
|
-
}>;
|
|
919
810
|
widget_header: z.ZodString;
|
|
920
811
|
widget_body: z.ZodString;
|
|
921
812
|
widget_greeting: z.ZodString;
|
|
@@ -924,7 +815,6 @@ export declare const widgetRoutes: {
|
|
|
924
815
|
widget_feature_tell: z.ZodBoolean;
|
|
925
816
|
widget_feature_show: z.ZodBoolean;
|
|
926
817
|
widget_feature_do: z.ZodBoolean;
|
|
927
|
-
widget_feature_human: z.ZodBoolean;
|
|
928
818
|
widget_background_color: z.ZodString;
|
|
929
819
|
widget_text_color: z.ZodString;
|
|
930
820
|
widget_border_color: z.ZodString;
|
|
@@ -934,10 +824,8 @@ export declare const widgetRoutes: {
|
|
|
934
824
|
widget_font_size: z.ZodString;
|
|
935
825
|
widget_width: z.ZodString;
|
|
936
826
|
widget_height: z.ZodString;
|
|
937
|
-
widget_shadow: z.ZodString;
|
|
938
827
|
widget_animation_duration: z.ZodString;
|
|
939
828
|
widget_fade_duration: z.ZodString;
|
|
940
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
941
829
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
942
830
|
chip_mode: z.ZodEnum<{
|
|
943
831
|
tell: "tell";
|
|
@@ -978,8 +866,6 @@ export declare const widgetRoutes: {
|
|
|
978
866
|
widget_enabled: z.ZodBoolean;
|
|
979
867
|
widget_appearance: z.ZodEnum<{
|
|
980
868
|
default: "default";
|
|
981
|
-
compact: "compact";
|
|
982
|
-
full: "full";
|
|
983
869
|
hidden: "hidden";
|
|
984
870
|
}>;
|
|
985
871
|
widget_position: z.ZodEnum<{
|
|
@@ -988,11 +874,6 @@ export declare const widgetRoutes: {
|
|
|
988
874
|
top_left: "top_left";
|
|
989
875
|
top_right: "top_right";
|
|
990
876
|
}>;
|
|
991
|
-
widget_device: z.ZodEnum<{
|
|
992
|
-
desktop: "desktop";
|
|
993
|
-
mobile: "mobile";
|
|
994
|
-
desktop_mobile: "desktop_mobile";
|
|
995
|
-
}>;
|
|
996
877
|
widget_header: z.ZodString;
|
|
997
878
|
widget_body: z.ZodString;
|
|
998
879
|
widget_greeting: z.ZodString;
|
|
@@ -1001,7 +882,6 @@ export declare const widgetRoutes: {
|
|
|
1001
882
|
widget_feature_tell: z.ZodBoolean;
|
|
1002
883
|
widget_feature_show: z.ZodBoolean;
|
|
1003
884
|
widget_feature_do: z.ZodBoolean;
|
|
1004
|
-
widget_feature_human: z.ZodBoolean;
|
|
1005
885
|
widget_background_color: z.ZodString;
|
|
1006
886
|
widget_text_color: z.ZodString;
|
|
1007
887
|
widget_border_color: z.ZodString;
|
|
@@ -1011,10 +891,8 @@ export declare const widgetRoutes: {
|
|
|
1011
891
|
widget_font_size: z.ZodString;
|
|
1012
892
|
widget_width: z.ZodString;
|
|
1013
893
|
widget_height: z.ZodString;
|
|
1014
|
-
widget_shadow: z.ZodString;
|
|
1015
894
|
widget_animation_duration: z.ZodString;
|
|
1016
895
|
widget_fade_duration: z.ZodString;
|
|
1017
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
1018
896
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
1019
897
|
chip_mode: z.ZodEnum<{
|
|
1020
898
|
tell: "tell";
|
|
@@ -1045,8 +923,6 @@ export declare const widgetRoutes: {
|
|
|
1045
923
|
widget_enabled: z.ZodBoolean;
|
|
1046
924
|
widget_appearance: z.ZodEnum<{
|
|
1047
925
|
default: "default";
|
|
1048
|
-
compact: "compact";
|
|
1049
|
-
full: "full";
|
|
1050
926
|
hidden: "hidden";
|
|
1051
927
|
}>;
|
|
1052
928
|
widget_position: z.ZodEnum<{
|
|
@@ -1055,11 +931,6 @@ export declare const widgetRoutes: {
|
|
|
1055
931
|
top_left: "top_left";
|
|
1056
932
|
top_right: "top_right";
|
|
1057
933
|
}>;
|
|
1058
|
-
widget_device: z.ZodEnum<{
|
|
1059
|
-
desktop: "desktop";
|
|
1060
|
-
mobile: "mobile";
|
|
1061
|
-
desktop_mobile: "desktop_mobile";
|
|
1062
|
-
}>;
|
|
1063
934
|
widget_header: z.ZodString;
|
|
1064
935
|
widget_body: z.ZodString;
|
|
1065
936
|
widget_greeting: z.ZodString;
|
|
@@ -1068,7 +939,6 @@ export declare const widgetRoutes: {
|
|
|
1068
939
|
widget_feature_tell: z.ZodBoolean;
|
|
1069
940
|
widget_feature_show: z.ZodBoolean;
|
|
1070
941
|
widget_feature_do: z.ZodBoolean;
|
|
1071
|
-
widget_feature_human: z.ZodBoolean;
|
|
1072
942
|
widget_background_color: z.ZodString;
|
|
1073
943
|
widget_text_color: z.ZodString;
|
|
1074
944
|
widget_border_color: z.ZodString;
|
|
@@ -1078,10 +948,8 @@ export declare const widgetRoutes: {
|
|
|
1078
948
|
widget_font_size: z.ZodString;
|
|
1079
949
|
widget_width: z.ZodString;
|
|
1080
950
|
widget_height: z.ZodString;
|
|
1081
|
-
widget_shadow: z.ZodString;
|
|
1082
951
|
widget_animation_duration: z.ZodString;
|
|
1083
952
|
widget_fade_duration: z.ZodString;
|
|
1084
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
1085
953
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
1086
954
|
chip_mode: z.ZodEnum<{
|
|
1087
955
|
tell: "tell";
|
|
@@ -1103,8 +971,6 @@ export declare const widgetRoutes: {
|
|
|
1103
971
|
widget_enabled: z.ZodBoolean;
|
|
1104
972
|
widget_appearance: z.ZodEnum<{
|
|
1105
973
|
default: "default";
|
|
1106
|
-
compact: "compact";
|
|
1107
|
-
full: "full";
|
|
1108
974
|
hidden: "hidden";
|
|
1109
975
|
}>;
|
|
1110
976
|
widget_position: z.ZodEnum<{
|
|
@@ -1113,11 +979,6 @@ export declare const widgetRoutes: {
|
|
|
1113
979
|
top_left: "top_left";
|
|
1114
980
|
top_right: "top_right";
|
|
1115
981
|
}>;
|
|
1116
|
-
widget_device: z.ZodEnum<{
|
|
1117
|
-
desktop: "desktop";
|
|
1118
|
-
mobile: "mobile";
|
|
1119
|
-
desktop_mobile: "desktop_mobile";
|
|
1120
|
-
}>;
|
|
1121
982
|
widget_header: z.ZodString;
|
|
1122
983
|
widget_body: z.ZodString;
|
|
1123
984
|
widget_greeting: z.ZodString;
|
|
@@ -1126,7 +987,6 @@ export declare const widgetRoutes: {
|
|
|
1126
987
|
widget_feature_tell: z.ZodBoolean;
|
|
1127
988
|
widget_feature_show: z.ZodBoolean;
|
|
1128
989
|
widget_feature_do: z.ZodBoolean;
|
|
1129
|
-
widget_feature_human: z.ZodBoolean;
|
|
1130
990
|
widget_background_color: z.ZodString;
|
|
1131
991
|
widget_text_color: z.ZodString;
|
|
1132
992
|
widget_border_color: z.ZodString;
|
|
@@ -1136,10 +996,8 @@ export declare const widgetRoutes: {
|
|
|
1136
996
|
widget_font_size: z.ZodString;
|
|
1137
997
|
widget_width: z.ZodString;
|
|
1138
998
|
widget_height: z.ZodString;
|
|
1139
|
-
widget_shadow: z.ZodString;
|
|
1140
999
|
widget_animation_duration: z.ZodString;
|
|
1141
1000
|
widget_fade_duration: z.ZodString;
|
|
1142
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
1143
1001
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
1144
1002
|
chip_mode: z.ZodEnum<{
|
|
1145
1003
|
tell: "tell";
|
|
@@ -1170,8 +1028,6 @@ export declare const widgetRoutes: {
|
|
|
1170
1028
|
widget_enabled: z.ZodBoolean;
|
|
1171
1029
|
widget_appearance: z.ZodEnum<{
|
|
1172
1030
|
default: "default";
|
|
1173
|
-
compact: "compact";
|
|
1174
|
-
full: "full";
|
|
1175
1031
|
hidden: "hidden";
|
|
1176
1032
|
}>;
|
|
1177
1033
|
widget_position: z.ZodEnum<{
|
|
@@ -1180,11 +1036,6 @@ export declare const widgetRoutes: {
|
|
|
1180
1036
|
top_left: "top_left";
|
|
1181
1037
|
top_right: "top_right";
|
|
1182
1038
|
}>;
|
|
1183
|
-
widget_device: z.ZodEnum<{
|
|
1184
|
-
desktop: "desktop";
|
|
1185
|
-
mobile: "mobile";
|
|
1186
|
-
desktop_mobile: "desktop_mobile";
|
|
1187
|
-
}>;
|
|
1188
1039
|
widget_header: z.ZodString;
|
|
1189
1040
|
widget_body: z.ZodString;
|
|
1190
1041
|
widget_greeting: z.ZodString;
|
|
@@ -1193,7 +1044,6 @@ export declare const widgetRoutes: {
|
|
|
1193
1044
|
widget_feature_tell: z.ZodBoolean;
|
|
1194
1045
|
widget_feature_show: z.ZodBoolean;
|
|
1195
1046
|
widget_feature_do: z.ZodBoolean;
|
|
1196
|
-
widget_feature_human: z.ZodBoolean;
|
|
1197
1047
|
widget_background_color: z.ZodString;
|
|
1198
1048
|
widget_text_color: z.ZodString;
|
|
1199
1049
|
widget_border_color: z.ZodString;
|
|
@@ -1203,10 +1053,8 @@ export declare const widgetRoutes: {
|
|
|
1203
1053
|
widget_font_size: z.ZodString;
|
|
1204
1054
|
widget_width: z.ZodString;
|
|
1205
1055
|
widget_height: z.ZodString;
|
|
1206
|
-
widget_shadow: z.ZodString;
|
|
1207
1056
|
widget_animation_duration: z.ZodString;
|
|
1208
1057
|
widget_fade_duration: z.ZodString;
|
|
1209
|
-
widget_bounce_effect: z.ZodBoolean;
|
|
1210
1058
|
widget_chips: z.ZodArray<z.ZodObject<{
|
|
1211
1059
|
chip_mode: z.ZodEnum<{
|
|
1212
1060
|
tell: "tell";
|