@syntrologie/adapt-faq 2.17.0 → 2.19.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/chunk-5WRI5ZAA.js +31 -0
- package/dist/chunk-5WRI5ZAA.js.map +7 -0
- package/dist/chunk-S6WIENQP.js +578 -0
- package/dist/chunk-S6WIENQP.js.map +7 -0
- package/dist/editor.d.ts +8 -2
- package/dist/editor.d.ts.map +1 -1
- package/dist/editor.js +4695 -59
- package/dist/editor.js.map +4 -4
- package/dist/runtime.js +6 -404
- package/dist/runtime.js.map +3 -3
- package/dist/schema.d.ts +316 -316
- package/dist/schema.d.ts.map +1 -1
- package/dist/schema.js +2 -0
- package/dist/schema.js.map +1 -1
- package/dist/types.d.ts +19 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/schema.d.ts
CHANGED
|
@@ -40,15 +40,15 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
40
40
|
id: string;
|
|
41
41
|
src: string;
|
|
42
42
|
width?: number | undefined;
|
|
43
|
-
alt?: string | undefined;
|
|
44
43
|
height?: number | undefined;
|
|
44
|
+
alt?: string | undefined;
|
|
45
45
|
}, {
|
|
46
46
|
type: "image" | "video";
|
|
47
47
|
id: string;
|
|
48
48
|
src: string;
|
|
49
49
|
width?: number | undefined;
|
|
50
|
-
alt?: string | undefined;
|
|
51
50
|
height?: number | undefined;
|
|
51
|
+
alt?: string | undefined;
|
|
52
52
|
}>, "many">>;
|
|
53
53
|
}, "strip", z.ZodTypeAny, {
|
|
54
54
|
type: "markdown";
|
|
@@ -58,8 +58,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
58
58
|
id: string;
|
|
59
59
|
src: string;
|
|
60
60
|
width?: number | undefined;
|
|
61
|
-
alt?: string | undefined;
|
|
62
61
|
height?: number | undefined;
|
|
62
|
+
alt?: string | undefined;
|
|
63
63
|
}[] | undefined;
|
|
64
64
|
}, {
|
|
65
65
|
type: "markdown";
|
|
@@ -69,8 +69,8 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
69
69
|
id: string;
|
|
70
70
|
src: string;
|
|
71
71
|
width?: number | undefined;
|
|
72
|
-
alt?: string | undefined;
|
|
73
72
|
height?: number | undefined;
|
|
73
|
+
alt?: string | undefined;
|
|
74
74
|
}[] | undefined;
|
|
75
75
|
}>]>;
|
|
76
76
|
/** Optional category for grouping */
|
|
@@ -96,6 +96,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
96
96
|
}>>;
|
|
97
97
|
}, "strip", z.ZodTypeAny, {
|
|
98
98
|
question: string;
|
|
99
|
+
id: string;
|
|
99
100
|
answer: string | {
|
|
100
101
|
type: "rich";
|
|
101
102
|
html: string;
|
|
@@ -107,11 +108,10 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
107
108
|
id: string;
|
|
108
109
|
src: string;
|
|
109
110
|
width?: number | undefined;
|
|
110
|
-
alt?: string | undefined;
|
|
111
111
|
height?: number | undefined;
|
|
112
|
+
alt?: string | undefined;
|
|
112
113
|
}[] | undefined;
|
|
113
114
|
};
|
|
114
|
-
id: string;
|
|
115
115
|
priority?: number | undefined;
|
|
116
116
|
category?: string | undefined;
|
|
117
117
|
answerStrategy?: {
|
|
@@ -122,6 +122,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
122
122
|
} | undefined;
|
|
123
123
|
}, {
|
|
124
124
|
question: string;
|
|
125
|
+
id: string;
|
|
125
126
|
answer: string | {
|
|
126
127
|
type: "rich";
|
|
127
128
|
html: string;
|
|
@@ -133,11 +134,10 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
133
134
|
id: string;
|
|
134
135
|
src: string;
|
|
135
136
|
width?: number | undefined;
|
|
136
|
-
alt?: string | undefined;
|
|
137
137
|
height?: number | undefined;
|
|
138
|
+
alt?: string | undefined;
|
|
138
139
|
}[] | undefined;
|
|
139
140
|
};
|
|
140
|
-
id: string;
|
|
141
141
|
priority?: number | undefined;
|
|
142
142
|
category?: string | undefined;
|
|
143
143
|
answerStrategy?: {
|
|
@@ -653,6 +653,7 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
653
653
|
}, "strip", z.ZodTypeAny, {
|
|
654
654
|
config: {
|
|
655
655
|
question: string;
|
|
656
|
+
id: string;
|
|
656
657
|
answer: string | {
|
|
657
658
|
type: "rich";
|
|
658
659
|
html: string;
|
|
@@ -664,11 +665,10 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
664
665
|
id: string;
|
|
665
666
|
src: string;
|
|
666
667
|
width?: number | undefined;
|
|
667
|
-
alt?: string | undefined;
|
|
668
668
|
height?: number | undefined;
|
|
669
|
+
alt?: string | undefined;
|
|
669
670
|
}[] | undefined;
|
|
670
671
|
};
|
|
671
|
-
id: string;
|
|
672
672
|
priority?: number | undefined;
|
|
673
673
|
category?: string | undefined;
|
|
674
674
|
answerStrategy?: {
|
|
@@ -680,7 +680,6 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
680
680
|
};
|
|
681
681
|
kind: "faq:question";
|
|
682
682
|
title?: string | undefined;
|
|
683
|
-
validation?: string[] | undefined;
|
|
684
683
|
triggerWhen?: {
|
|
685
684
|
type: "rules";
|
|
686
685
|
rules: {
|
|
@@ -762,15 +761,17 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
762
761
|
method?: "GET" | "POST" | undefined;
|
|
763
762
|
timeoutMs?: number | undefined;
|
|
764
763
|
} | null | undefined;
|
|
764
|
+
description?: string | undefined;
|
|
765
|
+
validation?: string[] | undefined;
|
|
765
766
|
notify?: {
|
|
766
767
|
title?: string | undefined;
|
|
767
768
|
body?: string | undefined;
|
|
768
769
|
icon?: string | undefined;
|
|
769
770
|
} | null | undefined;
|
|
770
|
-
description?: string | undefined;
|
|
771
771
|
}, {
|
|
772
772
|
config: {
|
|
773
773
|
question: string;
|
|
774
|
+
id: string;
|
|
774
775
|
answer: string | {
|
|
775
776
|
type: "rich";
|
|
776
777
|
html: string;
|
|
@@ -782,11 +783,10 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
782
783
|
id: string;
|
|
783
784
|
src: string;
|
|
784
785
|
width?: number | undefined;
|
|
785
|
-
alt?: string | undefined;
|
|
786
786
|
height?: number | undefined;
|
|
787
|
+
alt?: string | undefined;
|
|
787
788
|
}[] | undefined;
|
|
788
789
|
};
|
|
789
|
-
id: string;
|
|
790
790
|
priority?: number | undefined;
|
|
791
791
|
category?: string | undefined;
|
|
792
792
|
answerStrategy?: {
|
|
@@ -798,7 +798,6 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
798
798
|
};
|
|
799
799
|
kind: "faq:question";
|
|
800
800
|
title?: string | undefined;
|
|
801
|
-
validation?: string[] | undefined;
|
|
802
801
|
triggerWhen?: {
|
|
803
802
|
type: "rules";
|
|
804
803
|
rules: {
|
|
@@ -880,15 +879,17 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
880
879
|
method?: "GET" | "POST" | undefined;
|
|
881
880
|
timeoutMs?: number | undefined;
|
|
882
881
|
} | null | undefined;
|
|
882
|
+
description?: string | undefined;
|
|
883
|
+
validation?: string[] | undefined;
|
|
883
884
|
notify?: {
|
|
884
885
|
title?: string | undefined;
|
|
885
886
|
body?: string | undefined;
|
|
886
887
|
icon?: string | undefined;
|
|
887
888
|
} | null | undefined;
|
|
888
|
-
description?: string | undefined;
|
|
889
889
|
}>, {
|
|
890
890
|
config: {
|
|
891
891
|
question: string;
|
|
892
|
+
id: string;
|
|
892
893
|
answer: string | {
|
|
893
894
|
type: "rich";
|
|
894
895
|
html: string;
|
|
@@ -900,11 +901,10 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
900
901
|
id: string;
|
|
901
902
|
src: string;
|
|
902
903
|
width?: number | undefined;
|
|
903
|
-
alt?: string | undefined;
|
|
904
904
|
height?: number | undefined;
|
|
905
|
+
alt?: string | undefined;
|
|
905
906
|
}[] | undefined;
|
|
906
907
|
};
|
|
907
|
-
id: string;
|
|
908
908
|
priority?: number | undefined;
|
|
909
909
|
category?: string | undefined;
|
|
910
910
|
answerStrategy?: {
|
|
@@ -916,7 +916,6 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
916
916
|
};
|
|
917
917
|
kind: "faq:question";
|
|
918
918
|
title?: string | undefined;
|
|
919
|
-
validation?: string[] | undefined;
|
|
920
919
|
triggerWhen?: {
|
|
921
920
|
type: "rules";
|
|
922
921
|
rules: {
|
|
@@ -998,15 +997,17 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
998
997
|
method?: "GET" | "POST" | undefined;
|
|
999
998
|
timeoutMs?: number | undefined;
|
|
1000
999
|
} | null | undefined;
|
|
1000
|
+
description?: string | undefined;
|
|
1001
|
+
validation?: string[] | undefined;
|
|
1001
1002
|
notify?: {
|
|
1002
1003
|
title?: string | undefined;
|
|
1003
1004
|
body?: string | undefined;
|
|
1004
1005
|
icon?: string | undefined;
|
|
1005
1006
|
} | null | undefined;
|
|
1006
|
-
description?: string | undefined;
|
|
1007
1007
|
}, {
|
|
1008
1008
|
config: {
|
|
1009
1009
|
question: string;
|
|
1010
|
+
id: string;
|
|
1010
1011
|
answer: string | {
|
|
1011
1012
|
type: "rich";
|
|
1012
1013
|
html: string;
|
|
@@ -1018,11 +1019,10 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1018
1019
|
id: string;
|
|
1019
1020
|
src: string;
|
|
1020
1021
|
width?: number | undefined;
|
|
1021
|
-
alt?: string | undefined;
|
|
1022
1022
|
height?: number | undefined;
|
|
1023
|
+
alt?: string | undefined;
|
|
1023
1024
|
}[] | undefined;
|
|
1024
1025
|
};
|
|
1025
|
-
id: string;
|
|
1026
1026
|
priority?: number | undefined;
|
|
1027
1027
|
category?: string | undefined;
|
|
1028
1028
|
answerStrategy?: {
|
|
@@ -1034,7 +1034,6 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1034
1034
|
};
|
|
1035
1035
|
kind: "faq:question";
|
|
1036
1036
|
title?: string | undefined;
|
|
1037
|
-
validation?: string[] | undefined;
|
|
1038
1037
|
triggerWhen?: {
|
|
1039
1038
|
type: "rules";
|
|
1040
1039
|
rules: {
|
|
@@ -1116,12 +1115,13 @@ export declare const FAQQuestionSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1116
1115
|
method?: "GET" | "POST" | undefined;
|
|
1117
1116
|
timeoutMs?: number | undefined;
|
|
1118
1117
|
} | null | undefined;
|
|
1118
|
+
description?: string | undefined;
|
|
1119
|
+
validation?: string[] | undefined;
|
|
1119
1120
|
notify?: {
|
|
1120
1121
|
title?: string | undefined;
|
|
1121
1122
|
body?: string | undefined;
|
|
1122
1123
|
icon?: string | undefined;
|
|
1123
1124
|
} | null | undefined;
|
|
1124
|
-
description?: string | undefined;
|
|
1125
1125
|
}>;
|
|
1126
1126
|
export type FAQQuestionSchemaType = z.infer<typeof FAQQuestionSchema>;
|
|
1127
1127
|
/**
|
|
@@ -1169,15 +1169,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1169
1169
|
id: string;
|
|
1170
1170
|
src: string;
|
|
1171
1171
|
width?: number | undefined;
|
|
1172
|
-
alt?: string | undefined;
|
|
1173
1172
|
height?: number | undefined;
|
|
1173
|
+
alt?: string | undefined;
|
|
1174
1174
|
}, {
|
|
1175
1175
|
type: "image" | "video";
|
|
1176
1176
|
id: string;
|
|
1177
1177
|
src: string;
|
|
1178
1178
|
width?: number | undefined;
|
|
1179
|
-
alt?: string | undefined;
|
|
1180
1179
|
height?: number | undefined;
|
|
1180
|
+
alt?: string | undefined;
|
|
1181
1181
|
}>, "many">>;
|
|
1182
1182
|
}, "strip", z.ZodTypeAny, {
|
|
1183
1183
|
type: "markdown";
|
|
@@ -1187,8 +1187,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1187
1187
|
id: string;
|
|
1188
1188
|
src: string;
|
|
1189
1189
|
width?: number | undefined;
|
|
1190
|
-
alt?: string | undefined;
|
|
1191
1190
|
height?: number | undefined;
|
|
1191
|
+
alt?: string | undefined;
|
|
1192
1192
|
}[] | undefined;
|
|
1193
1193
|
}, {
|
|
1194
1194
|
type: "markdown";
|
|
@@ -1198,8 +1198,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1198
1198
|
id: string;
|
|
1199
1199
|
src: string;
|
|
1200
1200
|
width?: number | undefined;
|
|
1201
|
-
alt?: string | undefined;
|
|
1202
1201
|
height?: number | undefined;
|
|
1202
|
+
alt?: string | undefined;
|
|
1203
1203
|
}[] | undefined;
|
|
1204
1204
|
}>]>;
|
|
1205
1205
|
/** Optional category for grouping */
|
|
@@ -1225,6 +1225,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1225
1225
|
}>>;
|
|
1226
1226
|
}, "strip", z.ZodTypeAny, {
|
|
1227
1227
|
question: string;
|
|
1228
|
+
id: string;
|
|
1228
1229
|
answer: string | {
|
|
1229
1230
|
type: "rich";
|
|
1230
1231
|
html: string;
|
|
@@ -1236,11 +1237,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1236
1237
|
id: string;
|
|
1237
1238
|
src: string;
|
|
1238
1239
|
width?: number | undefined;
|
|
1239
|
-
alt?: string | undefined;
|
|
1240
1240
|
height?: number | undefined;
|
|
1241
|
+
alt?: string | undefined;
|
|
1241
1242
|
}[] | undefined;
|
|
1242
1243
|
};
|
|
1243
|
-
id: string;
|
|
1244
1244
|
priority?: number | undefined;
|
|
1245
1245
|
category?: string | undefined;
|
|
1246
1246
|
answerStrategy?: {
|
|
@@ -1251,6 +1251,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1251
1251
|
} | undefined;
|
|
1252
1252
|
}, {
|
|
1253
1253
|
question: string;
|
|
1254
|
+
id: string;
|
|
1254
1255
|
answer: string | {
|
|
1255
1256
|
type: "rich";
|
|
1256
1257
|
html: string;
|
|
@@ -1262,11 +1263,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1262
1263
|
id: string;
|
|
1263
1264
|
src: string;
|
|
1264
1265
|
width?: number | undefined;
|
|
1265
|
-
alt?: string | undefined;
|
|
1266
1266
|
height?: number | undefined;
|
|
1267
|
+
alt?: string | undefined;
|
|
1267
1268
|
}[] | undefined;
|
|
1268
1269
|
};
|
|
1269
|
-
id: string;
|
|
1270
1270
|
priority?: number | undefined;
|
|
1271
1271
|
category?: string | undefined;
|
|
1272
1272
|
answerStrategy?: {
|
|
@@ -1782,6 +1782,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1782
1782
|
}, "strip", z.ZodTypeAny, {
|
|
1783
1783
|
config: {
|
|
1784
1784
|
question: string;
|
|
1785
|
+
id: string;
|
|
1785
1786
|
answer: string | {
|
|
1786
1787
|
type: "rich";
|
|
1787
1788
|
html: string;
|
|
@@ -1793,11 +1794,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1793
1794
|
id: string;
|
|
1794
1795
|
src: string;
|
|
1795
1796
|
width?: number | undefined;
|
|
1796
|
-
alt?: string | undefined;
|
|
1797
1797
|
height?: number | undefined;
|
|
1798
|
+
alt?: string | undefined;
|
|
1798
1799
|
}[] | undefined;
|
|
1799
1800
|
};
|
|
1800
|
-
id: string;
|
|
1801
1801
|
priority?: number | undefined;
|
|
1802
1802
|
category?: string | undefined;
|
|
1803
1803
|
answerStrategy?: {
|
|
@@ -1809,7 +1809,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1809
1809
|
};
|
|
1810
1810
|
kind: "faq:question";
|
|
1811
1811
|
title?: string | undefined;
|
|
1812
|
-
validation?: string[] | undefined;
|
|
1813
1812
|
triggerWhen?: {
|
|
1814
1813
|
type: "rules";
|
|
1815
1814
|
rules: {
|
|
@@ -1891,15 +1890,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1891
1890
|
method?: "GET" | "POST" | undefined;
|
|
1892
1891
|
timeoutMs?: number | undefined;
|
|
1893
1892
|
} | null | undefined;
|
|
1893
|
+
description?: string | undefined;
|
|
1894
|
+
validation?: string[] | undefined;
|
|
1894
1895
|
notify?: {
|
|
1895
1896
|
title?: string | undefined;
|
|
1896
1897
|
body?: string | undefined;
|
|
1897
1898
|
icon?: string | undefined;
|
|
1898
1899
|
} | null | undefined;
|
|
1899
|
-
description?: string | undefined;
|
|
1900
1900
|
}, {
|
|
1901
1901
|
config: {
|
|
1902
1902
|
question: string;
|
|
1903
|
+
id: string;
|
|
1903
1904
|
answer: string | {
|
|
1904
1905
|
type: "rich";
|
|
1905
1906
|
html: string;
|
|
@@ -1911,11 +1912,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1911
1912
|
id: string;
|
|
1912
1913
|
src: string;
|
|
1913
1914
|
width?: number | undefined;
|
|
1914
|
-
alt?: string | undefined;
|
|
1915
1915
|
height?: number | undefined;
|
|
1916
|
+
alt?: string | undefined;
|
|
1916
1917
|
}[] | undefined;
|
|
1917
1918
|
};
|
|
1918
|
-
id: string;
|
|
1919
1919
|
priority?: number | undefined;
|
|
1920
1920
|
category?: string | undefined;
|
|
1921
1921
|
answerStrategy?: {
|
|
@@ -1927,7 +1927,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
1927
1927
|
};
|
|
1928
1928
|
kind: "faq:question";
|
|
1929
1929
|
title?: string | undefined;
|
|
1930
|
-
validation?: string[] | undefined;
|
|
1931
1930
|
triggerWhen?: {
|
|
1932
1931
|
type: "rules";
|
|
1933
1932
|
rules: {
|
|
@@ -2009,15 +2008,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2009
2008
|
method?: "GET" | "POST" | undefined;
|
|
2010
2009
|
timeoutMs?: number | undefined;
|
|
2011
2010
|
} | null | undefined;
|
|
2011
|
+
description?: string | undefined;
|
|
2012
|
+
validation?: string[] | undefined;
|
|
2012
2013
|
notify?: {
|
|
2013
2014
|
title?: string | undefined;
|
|
2014
2015
|
body?: string | undefined;
|
|
2015
2016
|
icon?: string | undefined;
|
|
2016
2017
|
} | null | undefined;
|
|
2017
|
-
description?: string | undefined;
|
|
2018
2018
|
}>, {
|
|
2019
2019
|
config: {
|
|
2020
2020
|
question: string;
|
|
2021
|
+
id: string;
|
|
2021
2022
|
answer: string | {
|
|
2022
2023
|
type: "rich";
|
|
2023
2024
|
html: string;
|
|
@@ -2029,11 +2030,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2029
2030
|
id: string;
|
|
2030
2031
|
src: string;
|
|
2031
2032
|
width?: number | undefined;
|
|
2032
|
-
alt?: string | undefined;
|
|
2033
2033
|
height?: number | undefined;
|
|
2034
|
+
alt?: string | undefined;
|
|
2034
2035
|
}[] | undefined;
|
|
2035
2036
|
};
|
|
2036
|
-
id: string;
|
|
2037
2037
|
priority?: number | undefined;
|
|
2038
2038
|
category?: string | undefined;
|
|
2039
2039
|
answerStrategy?: {
|
|
@@ -2045,7 +2045,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2045
2045
|
};
|
|
2046
2046
|
kind: "faq:question";
|
|
2047
2047
|
title?: string | undefined;
|
|
2048
|
-
validation?: string[] | undefined;
|
|
2049
2048
|
triggerWhen?: {
|
|
2050
2049
|
type: "rules";
|
|
2051
2050
|
rules: {
|
|
@@ -2127,15 +2126,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2127
2126
|
method?: "GET" | "POST" | undefined;
|
|
2128
2127
|
timeoutMs?: number | undefined;
|
|
2129
2128
|
} | null | undefined;
|
|
2129
|
+
description?: string | undefined;
|
|
2130
|
+
validation?: string[] | undefined;
|
|
2130
2131
|
notify?: {
|
|
2131
2132
|
title?: string | undefined;
|
|
2132
2133
|
body?: string | undefined;
|
|
2133
2134
|
icon?: string | undefined;
|
|
2134
2135
|
} | null | undefined;
|
|
2135
|
-
description?: string | undefined;
|
|
2136
2136
|
}, {
|
|
2137
2137
|
config: {
|
|
2138
2138
|
question: string;
|
|
2139
|
+
id: string;
|
|
2139
2140
|
answer: string | {
|
|
2140
2141
|
type: "rich";
|
|
2141
2142
|
html: string;
|
|
@@ -2147,11 +2148,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2147
2148
|
id: string;
|
|
2148
2149
|
src: string;
|
|
2149
2150
|
width?: number | undefined;
|
|
2150
|
-
alt?: string | undefined;
|
|
2151
2151
|
height?: number | undefined;
|
|
2152
|
+
alt?: string | undefined;
|
|
2152
2153
|
}[] | undefined;
|
|
2153
2154
|
};
|
|
2154
|
-
id: string;
|
|
2155
2155
|
priority?: number | undefined;
|
|
2156
2156
|
category?: string | undefined;
|
|
2157
2157
|
answerStrategy?: {
|
|
@@ -2163,7 +2163,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2163
2163
|
};
|
|
2164
2164
|
kind: "faq:question";
|
|
2165
2165
|
title?: string | undefined;
|
|
2166
|
-
validation?: string[] | undefined;
|
|
2167
2166
|
triggerWhen?: {
|
|
2168
2167
|
type: "rules";
|
|
2169
2168
|
rules: {
|
|
@@ -2245,12 +2244,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2245
2244
|
method?: "GET" | "POST" | undefined;
|
|
2246
2245
|
timeoutMs?: number | undefined;
|
|
2247
2246
|
} | null | undefined;
|
|
2247
|
+
description?: string | undefined;
|
|
2248
|
+
validation?: string[] | undefined;
|
|
2248
2249
|
notify?: {
|
|
2249
2250
|
title?: string | undefined;
|
|
2250
2251
|
body?: string | undefined;
|
|
2251
2252
|
icon?: string | undefined;
|
|
2252
2253
|
} | null | undefined;
|
|
2253
|
-
description?: string | undefined;
|
|
2254
2254
|
}>, "many">>;
|
|
2255
2255
|
/** Feedback widget configuration */
|
|
2256
2256
|
feedback: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
@@ -2793,15 +2793,15 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2793
2793
|
id: string;
|
|
2794
2794
|
src: string;
|
|
2795
2795
|
width?: number | undefined;
|
|
2796
|
-
alt?: string | undefined;
|
|
2797
2796
|
height?: number | undefined;
|
|
2797
|
+
alt?: string | undefined;
|
|
2798
2798
|
}, {
|
|
2799
2799
|
type: "image" | "video";
|
|
2800
2800
|
id: string;
|
|
2801
2801
|
src: string;
|
|
2802
2802
|
width?: number | undefined;
|
|
2803
|
-
alt?: string | undefined;
|
|
2804
2803
|
height?: number | undefined;
|
|
2804
|
+
alt?: string | undefined;
|
|
2805
2805
|
}>, "many">>;
|
|
2806
2806
|
}, "strip", z.ZodTypeAny, {
|
|
2807
2807
|
type: "markdown";
|
|
@@ -2811,8 +2811,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2811
2811
|
id: string;
|
|
2812
2812
|
src: string;
|
|
2813
2813
|
width?: number | undefined;
|
|
2814
|
-
alt?: string | undefined;
|
|
2815
2814
|
height?: number | undefined;
|
|
2815
|
+
alt?: string | undefined;
|
|
2816
2816
|
}[] | undefined;
|
|
2817
2817
|
}, {
|
|
2818
2818
|
type: "markdown";
|
|
@@ -2822,8 +2822,8 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2822
2822
|
id: string;
|
|
2823
2823
|
src: string;
|
|
2824
2824
|
width?: number | undefined;
|
|
2825
|
-
alt?: string | undefined;
|
|
2826
2825
|
height?: number | undefined;
|
|
2826
|
+
alt?: string | undefined;
|
|
2827
2827
|
}[] | undefined;
|
|
2828
2828
|
}>]>;
|
|
2829
2829
|
/** Optional category for grouping */
|
|
@@ -2849,6 +2849,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2849
2849
|
}>>;
|
|
2850
2850
|
}, "strip", z.ZodTypeAny, {
|
|
2851
2851
|
question: string;
|
|
2852
|
+
id: string;
|
|
2852
2853
|
answer: string | {
|
|
2853
2854
|
type: "rich";
|
|
2854
2855
|
html: string;
|
|
@@ -2860,11 +2861,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2860
2861
|
id: string;
|
|
2861
2862
|
src: string;
|
|
2862
2863
|
width?: number | undefined;
|
|
2863
|
-
alt?: string | undefined;
|
|
2864
2864
|
height?: number | undefined;
|
|
2865
|
+
alt?: string | undefined;
|
|
2865
2866
|
}[] | undefined;
|
|
2866
2867
|
};
|
|
2867
|
-
id: string;
|
|
2868
2868
|
priority?: number | undefined;
|
|
2869
2869
|
category?: string | undefined;
|
|
2870
2870
|
answerStrategy?: {
|
|
@@ -2875,6 +2875,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2875
2875
|
} | undefined;
|
|
2876
2876
|
}, {
|
|
2877
2877
|
question: string;
|
|
2878
|
+
id: string;
|
|
2878
2879
|
answer: string | {
|
|
2879
2880
|
type: "rich";
|
|
2880
2881
|
html: string;
|
|
@@ -2886,11 +2887,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
2886
2887
|
id: string;
|
|
2887
2888
|
src: string;
|
|
2888
2889
|
width?: number | undefined;
|
|
2889
|
-
alt?: string | undefined;
|
|
2890
2890
|
height?: number | undefined;
|
|
2891
|
+
alt?: string | undefined;
|
|
2891
2892
|
}[] | undefined;
|
|
2892
2893
|
};
|
|
2893
|
-
id: string;
|
|
2894
2894
|
priority?: number | undefined;
|
|
2895
2895
|
category?: string | undefined;
|
|
2896
2896
|
answerStrategy?: {
|
|
@@ -3406,6 +3406,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3406
3406
|
}, "strip", z.ZodTypeAny, {
|
|
3407
3407
|
config: {
|
|
3408
3408
|
question: string;
|
|
3409
|
+
id: string;
|
|
3409
3410
|
answer: string | {
|
|
3410
3411
|
type: "rich";
|
|
3411
3412
|
html: string;
|
|
@@ -3417,11 +3418,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3417
3418
|
id: string;
|
|
3418
3419
|
src: string;
|
|
3419
3420
|
width?: number | undefined;
|
|
3420
|
-
alt?: string | undefined;
|
|
3421
3421
|
height?: number | undefined;
|
|
3422
|
+
alt?: string | undefined;
|
|
3422
3423
|
}[] | undefined;
|
|
3423
3424
|
};
|
|
3424
|
-
id: string;
|
|
3425
3425
|
priority?: number | undefined;
|
|
3426
3426
|
category?: string | undefined;
|
|
3427
3427
|
answerStrategy?: {
|
|
@@ -3433,7 +3433,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3433
3433
|
};
|
|
3434
3434
|
kind: "faq:question";
|
|
3435
3435
|
title?: string | undefined;
|
|
3436
|
-
validation?: string[] | undefined;
|
|
3437
3436
|
triggerWhen?: {
|
|
3438
3437
|
type: "rules";
|
|
3439
3438
|
rules: {
|
|
@@ -3515,15 +3514,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3515
3514
|
method?: "GET" | "POST" | undefined;
|
|
3516
3515
|
timeoutMs?: number | undefined;
|
|
3517
3516
|
} | null | undefined;
|
|
3517
|
+
description?: string | undefined;
|
|
3518
|
+
validation?: string[] | undefined;
|
|
3518
3519
|
notify?: {
|
|
3519
3520
|
title?: string | undefined;
|
|
3520
3521
|
body?: string | undefined;
|
|
3521
3522
|
icon?: string | undefined;
|
|
3522
3523
|
} | null | undefined;
|
|
3523
|
-
description?: string | undefined;
|
|
3524
3524
|
}, {
|
|
3525
3525
|
config: {
|
|
3526
3526
|
question: string;
|
|
3527
|
+
id: string;
|
|
3527
3528
|
answer: string | {
|
|
3528
3529
|
type: "rich";
|
|
3529
3530
|
html: string;
|
|
@@ -3535,11 +3536,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3535
3536
|
id: string;
|
|
3536
3537
|
src: string;
|
|
3537
3538
|
width?: number | undefined;
|
|
3538
|
-
alt?: string | undefined;
|
|
3539
3539
|
height?: number | undefined;
|
|
3540
|
+
alt?: string | undefined;
|
|
3540
3541
|
}[] | undefined;
|
|
3541
3542
|
};
|
|
3542
|
-
id: string;
|
|
3543
3543
|
priority?: number | undefined;
|
|
3544
3544
|
category?: string | undefined;
|
|
3545
3545
|
answerStrategy?: {
|
|
@@ -3551,7 +3551,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3551
3551
|
};
|
|
3552
3552
|
kind: "faq:question";
|
|
3553
3553
|
title?: string | undefined;
|
|
3554
|
-
validation?: string[] | undefined;
|
|
3555
3554
|
triggerWhen?: {
|
|
3556
3555
|
type: "rules";
|
|
3557
3556
|
rules: {
|
|
@@ -3633,15 +3632,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3633
3632
|
method?: "GET" | "POST" | undefined;
|
|
3634
3633
|
timeoutMs?: number | undefined;
|
|
3635
3634
|
} | null | undefined;
|
|
3635
|
+
description?: string | undefined;
|
|
3636
|
+
validation?: string[] | undefined;
|
|
3636
3637
|
notify?: {
|
|
3637
3638
|
title?: string | undefined;
|
|
3638
3639
|
body?: string | undefined;
|
|
3639
3640
|
icon?: string | undefined;
|
|
3640
3641
|
} | null | undefined;
|
|
3641
|
-
description?: string | undefined;
|
|
3642
3642
|
}>, {
|
|
3643
3643
|
config: {
|
|
3644
3644
|
question: string;
|
|
3645
|
+
id: string;
|
|
3645
3646
|
answer: string | {
|
|
3646
3647
|
type: "rich";
|
|
3647
3648
|
html: string;
|
|
@@ -3653,11 +3654,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3653
3654
|
id: string;
|
|
3654
3655
|
src: string;
|
|
3655
3656
|
width?: number | undefined;
|
|
3656
|
-
alt?: string | undefined;
|
|
3657
3657
|
height?: number | undefined;
|
|
3658
|
+
alt?: string | undefined;
|
|
3658
3659
|
}[] | undefined;
|
|
3659
3660
|
};
|
|
3660
|
-
id: string;
|
|
3661
3661
|
priority?: number | undefined;
|
|
3662
3662
|
category?: string | undefined;
|
|
3663
3663
|
answerStrategy?: {
|
|
@@ -3669,7 +3669,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3669
3669
|
};
|
|
3670
3670
|
kind: "faq:question";
|
|
3671
3671
|
title?: string | undefined;
|
|
3672
|
-
validation?: string[] | undefined;
|
|
3673
3672
|
triggerWhen?: {
|
|
3674
3673
|
type: "rules";
|
|
3675
3674
|
rules: {
|
|
@@ -3751,15 +3750,17 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3751
3750
|
method?: "GET" | "POST" | undefined;
|
|
3752
3751
|
timeoutMs?: number | undefined;
|
|
3753
3752
|
} | null | undefined;
|
|
3753
|
+
description?: string | undefined;
|
|
3754
|
+
validation?: string[] | undefined;
|
|
3754
3755
|
notify?: {
|
|
3755
3756
|
title?: string | undefined;
|
|
3756
3757
|
body?: string | undefined;
|
|
3757
3758
|
icon?: string | undefined;
|
|
3758
3759
|
} | null | undefined;
|
|
3759
|
-
description?: string | undefined;
|
|
3760
3760
|
}, {
|
|
3761
3761
|
config: {
|
|
3762
3762
|
question: string;
|
|
3763
|
+
id: string;
|
|
3763
3764
|
answer: string | {
|
|
3764
3765
|
type: "rich";
|
|
3765
3766
|
html: string;
|
|
@@ -3771,11 +3772,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3771
3772
|
id: string;
|
|
3772
3773
|
src: string;
|
|
3773
3774
|
width?: number | undefined;
|
|
3774
|
-
alt?: string | undefined;
|
|
3775
3775
|
height?: number | undefined;
|
|
3776
|
+
alt?: string | undefined;
|
|
3776
3777
|
}[] | undefined;
|
|
3777
3778
|
};
|
|
3778
|
-
id: string;
|
|
3779
3779
|
priority?: number | undefined;
|
|
3780
3780
|
category?: string | undefined;
|
|
3781
3781
|
answerStrategy?: {
|
|
@@ -3787,7 +3787,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3787
3787
|
};
|
|
3788
3788
|
kind: "faq:question";
|
|
3789
3789
|
title?: string | undefined;
|
|
3790
|
-
validation?: string[] | undefined;
|
|
3791
3790
|
triggerWhen?: {
|
|
3792
3791
|
type: "rules";
|
|
3793
3792
|
rules: {
|
|
@@ -3869,12 +3868,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3869
3868
|
method?: "GET" | "POST" | undefined;
|
|
3870
3869
|
timeoutMs?: number | undefined;
|
|
3871
3870
|
} | null | undefined;
|
|
3871
|
+
description?: string | undefined;
|
|
3872
|
+
validation?: string[] | undefined;
|
|
3872
3873
|
notify?: {
|
|
3873
3874
|
title?: string | undefined;
|
|
3874
3875
|
body?: string | undefined;
|
|
3875
3876
|
icon?: string | undefined;
|
|
3876
3877
|
} | null | undefined;
|
|
3877
|
-
description?: string | undefined;
|
|
3878
3878
|
}>>, "many">;
|
|
3879
3879
|
position: z.ZodOptional<z.ZodEnum<["prepend", "append"]>>;
|
|
3880
3880
|
once: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3882,6 +3882,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3882
3882
|
items: {
|
|
3883
3883
|
config: {
|
|
3884
3884
|
question: string;
|
|
3885
|
+
id: string;
|
|
3885
3886
|
answer: string | {
|
|
3886
3887
|
type: "rich";
|
|
3887
3888
|
html: string;
|
|
@@ -3893,11 +3894,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3893
3894
|
id: string;
|
|
3894
3895
|
src: string;
|
|
3895
3896
|
width?: number | undefined;
|
|
3896
|
-
alt?: string | undefined;
|
|
3897
3897
|
height?: number | undefined;
|
|
3898
|
+
alt?: string | undefined;
|
|
3898
3899
|
}[] | undefined;
|
|
3899
3900
|
};
|
|
3900
|
-
id: string;
|
|
3901
3901
|
priority?: number | undefined;
|
|
3902
3902
|
category?: string | undefined;
|
|
3903
3903
|
answerStrategy?: {
|
|
@@ -3909,7 +3909,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3909
3909
|
};
|
|
3910
3910
|
kind: "faq:question";
|
|
3911
3911
|
title?: string | undefined;
|
|
3912
|
-
validation?: string[] | undefined;
|
|
3913
3912
|
triggerWhen?: {
|
|
3914
3913
|
type: "rules";
|
|
3915
3914
|
rules: {
|
|
@@ -3991,12 +3990,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
3991
3990
|
method?: "GET" | "POST" | undefined;
|
|
3992
3991
|
timeoutMs?: number | undefined;
|
|
3993
3992
|
} | null | undefined;
|
|
3993
|
+
description?: string | undefined;
|
|
3994
|
+
validation?: string[] | undefined;
|
|
3994
3995
|
notify?: {
|
|
3995
3996
|
title?: string | undefined;
|
|
3996
3997
|
body?: string | undefined;
|
|
3997
3998
|
icon?: string | undefined;
|
|
3998
3999
|
} | null | undefined;
|
|
3999
|
-
description?: string | undefined;
|
|
4000
4000
|
}[];
|
|
4001
4001
|
trigger: {
|
|
4002
4002
|
type: "rules";
|
|
@@ -4085,6 +4085,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4085
4085
|
items: {
|
|
4086
4086
|
config: {
|
|
4087
4087
|
question: string;
|
|
4088
|
+
id: string;
|
|
4088
4089
|
answer: string | {
|
|
4089
4090
|
type: "rich";
|
|
4090
4091
|
html: string;
|
|
@@ -4096,11 +4097,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4096
4097
|
id: string;
|
|
4097
4098
|
src: string;
|
|
4098
4099
|
width?: number | undefined;
|
|
4099
|
-
alt?: string | undefined;
|
|
4100
4100
|
height?: number | undefined;
|
|
4101
|
+
alt?: string | undefined;
|
|
4101
4102
|
}[] | undefined;
|
|
4102
4103
|
};
|
|
4103
|
-
id: string;
|
|
4104
4104
|
priority?: number | undefined;
|
|
4105
4105
|
category?: string | undefined;
|
|
4106
4106
|
answerStrategy?: {
|
|
@@ -4112,7 +4112,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4112
4112
|
};
|
|
4113
4113
|
kind: "faq:question";
|
|
4114
4114
|
title?: string | undefined;
|
|
4115
|
-
validation?: string[] | undefined;
|
|
4116
4115
|
triggerWhen?: {
|
|
4117
4116
|
type: "rules";
|
|
4118
4117
|
rules: {
|
|
@@ -4194,12 +4193,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4194
4193
|
method?: "GET" | "POST" | undefined;
|
|
4195
4194
|
timeoutMs?: number | undefined;
|
|
4196
4195
|
} | null | undefined;
|
|
4196
|
+
description?: string | undefined;
|
|
4197
|
+
validation?: string[] | undefined;
|
|
4197
4198
|
notify?: {
|
|
4198
4199
|
title?: string | undefined;
|
|
4199
4200
|
body?: string | undefined;
|
|
4200
4201
|
icon?: string | undefined;
|
|
4201
4202
|
} | null | undefined;
|
|
4202
|
-
description?: string | undefined;
|
|
4203
4203
|
}[];
|
|
4204
4204
|
trigger: {
|
|
4205
4205
|
type: "rules";
|
|
@@ -4292,6 +4292,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4292
4292
|
actions: {
|
|
4293
4293
|
config: {
|
|
4294
4294
|
question: string;
|
|
4295
|
+
id: string;
|
|
4295
4296
|
answer: string | {
|
|
4296
4297
|
type: "rich";
|
|
4297
4298
|
html: string;
|
|
@@ -4303,11 +4304,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4303
4304
|
id: string;
|
|
4304
4305
|
src: string;
|
|
4305
4306
|
width?: number | undefined;
|
|
4306
|
-
alt?: string | undefined;
|
|
4307
4307
|
height?: number | undefined;
|
|
4308
|
+
alt?: string | undefined;
|
|
4308
4309
|
}[] | undefined;
|
|
4309
4310
|
};
|
|
4310
|
-
id: string;
|
|
4311
4311
|
priority?: number | undefined;
|
|
4312
4312
|
category?: string | undefined;
|
|
4313
4313
|
answerStrategy?: {
|
|
@@ -4319,7 +4319,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4319
4319
|
};
|
|
4320
4320
|
kind: "faq:question";
|
|
4321
4321
|
title?: string | undefined;
|
|
4322
|
-
validation?: string[] | undefined;
|
|
4323
4322
|
triggerWhen?: {
|
|
4324
4323
|
type: "rules";
|
|
4325
4324
|
rules: {
|
|
@@ -4401,12 +4400,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4401
4400
|
method?: "GET" | "POST" | undefined;
|
|
4402
4401
|
timeoutMs?: number | undefined;
|
|
4403
4402
|
} | null | undefined;
|
|
4403
|
+
description?: string | undefined;
|
|
4404
|
+
validation?: string[] | undefined;
|
|
4404
4405
|
notify?: {
|
|
4405
4406
|
title?: string | undefined;
|
|
4406
4407
|
body?: string | undefined;
|
|
4407
4408
|
icon?: string | undefined;
|
|
4408
4409
|
} | null | undefined;
|
|
4409
|
-
description?: string | undefined;
|
|
4410
4410
|
}[];
|
|
4411
4411
|
title?: string | undefined;
|
|
4412
4412
|
feedback?: boolean | {
|
|
@@ -4421,6 +4421,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4421
4421
|
items: {
|
|
4422
4422
|
config: {
|
|
4423
4423
|
question: string;
|
|
4424
|
+
id: string;
|
|
4424
4425
|
answer: string | {
|
|
4425
4426
|
type: "rich";
|
|
4426
4427
|
html: string;
|
|
@@ -4432,11 +4433,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4432
4433
|
id: string;
|
|
4433
4434
|
src: string;
|
|
4434
4435
|
width?: number | undefined;
|
|
4435
|
-
alt?: string | undefined;
|
|
4436
4436
|
height?: number | undefined;
|
|
4437
|
+
alt?: string | undefined;
|
|
4437
4438
|
}[] | undefined;
|
|
4438
4439
|
};
|
|
4439
|
-
id: string;
|
|
4440
4440
|
priority?: number | undefined;
|
|
4441
4441
|
category?: string | undefined;
|
|
4442
4442
|
answerStrategy?: {
|
|
@@ -4448,7 +4448,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4448
4448
|
};
|
|
4449
4449
|
kind: "faq:question";
|
|
4450
4450
|
title?: string | undefined;
|
|
4451
|
-
validation?: string[] | undefined;
|
|
4452
4451
|
triggerWhen?: {
|
|
4453
4452
|
type: "rules";
|
|
4454
4453
|
rules: {
|
|
@@ -4530,12 +4529,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4530
4529
|
method?: "GET" | "POST" | undefined;
|
|
4531
4530
|
timeoutMs?: number | undefined;
|
|
4532
4531
|
} | null | undefined;
|
|
4532
|
+
description?: string | undefined;
|
|
4533
|
+
validation?: string[] | undefined;
|
|
4533
4534
|
notify?: {
|
|
4534
4535
|
title?: string | undefined;
|
|
4535
4536
|
body?: string | undefined;
|
|
4536
4537
|
icon?: string | undefined;
|
|
4537
4538
|
} | null | undefined;
|
|
4538
|
-
description?: string | undefined;
|
|
4539
4539
|
}[];
|
|
4540
4540
|
trigger: {
|
|
4541
4541
|
type: "rules";
|
|
@@ -4629,6 +4629,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4629
4629
|
actions?: {
|
|
4630
4630
|
config: {
|
|
4631
4631
|
question: string;
|
|
4632
|
+
id: string;
|
|
4632
4633
|
answer: string | {
|
|
4633
4634
|
type: "rich";
|
|
4634
4635
|
html: string;
|
|
@@ -4640,11 +4641,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4640
4641
|
id: string;
|
|
4641
4642
|
src: string;
|
|
4642
4643
|
width?: number | undefined;
|
|
4643
|
-
alt?: string | undefined;
|
|
4644
4644
|
height?: number | undefined;
|
|
4645
|
+
alt?: string | undefined;
|
|
4645
4646
|
}[] | undefined;
|
|
4646
4647
|
};
|
|
4647
|
-
id: string;
|
|
4648
4648
|
priority?: number | undefined;
|
|
4649
4649
|
category?: string | undefined;
|
|
4650
4650
|
answerStrategy?: {
|
|
@@ -4656,7 +4656,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4656
4656
|
};
|
|
4657
4657
|
kind: "faq:question";
|
|
4658
4658
|
title?: string | undefined;
|
|
4659
|
-
validation?: string[] | undefined;
|
|
4660
4659
|
triggerWhen?: {
|
|
4661
4660
|
type: "rules";
|
|
4662
4661
|
rules: {
|
|
@@ -4738,12 +4737,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4738
4737
|
method?: "GET" | "POST" | undefined;
|
|
4739
4738
|
timeoutMs?: number | undefined;
|
|
4740
4739
|
} | null | undefined;
|
|
4740
|
+
description?: string | undefined;
|
|
4741
|
+
validation?: string[] | undefined;
|
|
4741
4742
|
notify?: {
|
|
4742
4743
|
title?: string | undefined;
|
|
4743
4744
|
body?: string | undefined;
|
|
4744
4745
|
icon?: string | undefined;
|
|
4745
4746
|
} | null | undefined;
|
|
4746
|
-
description?: string | undefined;
|
|
4747
4747
|
}[] | undefined;
|
|
4748
4748
|
feedback?: boolean | {
|
|
4749
4749
|
style: "thumbs" | "rating";
|
|
@@ -4757,6 +4757,7 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4757
4757
|
items: {
|
|
4758
4758
|
config: {
|
|
4759
4759
|
question: string;
|
|
4760
|
+
id: string;
|
|
4760
4761
|
answer: string | {
|
|
4761
4762
|
type: "rich";
|
|
4762
4763
|
html: string;
|
|
@@ -4768,11 +4769,10 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4768
4769
|
id: string;
|
|
4769
4770
|
src: string;
|
|
4770
4771
|
width?: number | undefined;
|
|
4771
|
-
alt?: string | undefined;
|
|
4772
4772
|
height?: number | undefined;
|
|
4773
|
+
alt?: string | undefined;
|
|
4773
4774
|
}[] | undefined;
|
|
4774
4775
|
};
|
|
4775
|
-
id: string;
|
|
4776
4776
|
priority?: number | undefined;
|
|
4777
4777
|
category?: string | undefined;
|
|
4778
4778
|
answerStrategy?: {
|
|
@@ -4784,7 +4784,6 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4784
4784
|
};
|
|
4785
4785
|
kind: "faq:question";
|
|
4786
4786
|
title?: string | undefined;
|
|
4787
|
-
validation?: string[] | undefined;
|
|
4788
4787
|
triggerWhen?: {
|
|
4789
4788
|
type: "rules";
|
|
4790
4789
|
rules: {
|
|
@@ -4866,12 +4865,13 @@ export declare const configSchema: z.ZodObject<{
|
|
|
4866
4865
|
method?: "GET" | "POST" | undefined;
|
|
4867
4866
|
timeoutMs?: number | undefined;
|
|
4868
4867
|
} | null | undefined;
|
|
4868
|
+
description?: string | undefined;
|
|
4869
|
+
validation?: string[] | undefined;
|
|
4869
4870
|
notify?: {
|
|
4870
4871
|
title?: string | undefined;
|
|
4871
4872
|
body?: string | undefined;
|
|
4872
4873
|
icon?: string | undefined;
|
|
4873
4874
|
} | null | undefined;
|
|
4874
|
-
description?: string | undefined;
|
|
4875
4875
|
}[];
|
|
4876
4876
|
trigger: {
|
|
4877
4877
|
type: "rules";
|
|
@@ -4977,8 +4977,8 @@ export declare const ScrollToFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4977
4977
|
itemId?: string | undefined;
|
|
4978
4978
|
title?: string | undefined;
|
|
4979
4979
|
behavior?: "auto" | "smooth" | "instant" | undefined;
|
|
4980
|
-
validation?: string[] | undefined;
|
|
4981
4980
|
description?: string | undefined;
|
|
4981
|
+
validation?: string[] | undefined;
|
|
4982
4982
|
itemQuestion?: string | undefined;
|
|
4983
4983
|
expand?: boolean | undefined;
|
|
4984
4984
|
}, {
|
|
@@ -4986,8 +4986,8 @@ export declare const ScrollToFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4986
4986
|
itemId?: string | undefined;
|
|
4987
4987
|
title?: string | undefined;
|
|
4988
4988
|
behavior?: "auto" | "smooth" | "instant" | undefined;
|
|
4989
|
-
validation?: string[] | undefined;
|
|
4990
4989
|
description?: string | undefined;
|
|
4990
|
+
validation?: string[] | undefined;
|
|
4991
4991
|
itemQuestion?: string | undefined;
|
|
4992
4992
|
expand?: boolean | undefined;
|
|
4993
4993
|
}>, {
|
|
@@ -4995,8 +4995,8 @@ export declare const ScrollToFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4995
4995
|
itemId?: string | undefined;
|
|
4996
4996
|
title?: string | undefined;
|
|
4997
4997
|
behavior?: "auto" | "smooth" | "instant" | undefined;
|
|
4998
|
-
validation?: string[] | undefined;
|
|
4999
4998
|
description?: string | undefined;
|
|
4999
|
+
validation?: string[] | undefined;
|
|
5000
5000
|
itemQuestion?: string | undefined;
|
|
5001
5001
|
expand?: boolean | undefined;
|
|
5002
5002
|
}, {
|
|
@@ -5004,8 +5004,8 @@ export declare const ScrollToFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5004
5004
|
itemId?: string | undefined;
|
|
5005
5005
|
title?: string | undefined;
|
|
5006
5006
|
behavior?: "auto" | "smooth" | "instant" | undefined;
|
|
5007
|
-
validation?: string[] | undefined;
|
|
5008
5007
|
description?: string | undefined;
|
|
5008
|
+
validation?: string[] | undefined;
|
|
5009
5009
|
itemQuestion?: string | undefined;
|
|
5010
5010
|
expand?: boolean | undefined;
|
|
5011
5011
|
}>;
|
|
@@ -5022,37 +5022,37 @@ export declare const ToggleFaqItemSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5022
5022
|
description: z.ZodOptional<z.ZodString>;
|
|
5023
5023
|
validation: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5024
5024
|
}, "strip", z.ZodTypeAny, {
|
|
5025
|
-
kind: "faq:toggle_item";
|
|
5026
5025
|
state: "open" | "closed" | "toggle";
|
|
5026
|
+
kind: "faq:toggle_item";
|
|
5027
5027
|
itemId?: string | undefined;
|
|
5028
5028
|
title?: string | undefined;
|
|
5029
|
-
validation?: string[] | undefined;
|
|
5030
5029
|
description?: string | undefined;
|
|
5030
|
+
validation?: string[] | undefined;
|
|
5031
5031
|
itemQuestion?: string | undefined;
|
|
5032
5032
|
}, {
|
|
5033
5033
|
kind: "faq:toggle_item";
|
|
5034
5034
|
itemId?: string | undefined;
|
|
5035
5035
|
title?: string | undefined;
|
|
5036
|
-
|
|
5036
|
+
state?: "open" | "closed" | "toggle" | undefined;
|
|
5037
5037
|
description?: string | undefined;
|
|
5038
|
+
validation?: string[] | undefined;
|
|
5038
5039
|
itemQuestion?: string | undefined;
|
|
5039
|
-
state?: "open" | "closed" | "toggle" | undefined;
|
|
5040
5040
|
}>, {
|
|
5041
|
-
kind: "faq:toggle_item";
|
|
5042
5041
|
state: "open" | "closed" | "toggle";
|
|
5042
|
+
kind: "faq:toggle_item";
|
|
5043
5043
|
itemId?: string | undefined;
|
|
5044
5044
|
title?: string | undefined;
|
|
5045
|
-
validation?: string[] | undefined;
|
|
5046
5045
|
description?: string | undefined;
|
|
5046
|
+
validation?: string[] | undefined;
|
|
5047
5047
|
itemQuestion?: string | undefined;
|
|
5048
5048
|
}, {
|
|
5049
5049
|
kind: "faq:toggle_item";
|
|
5050
5050
|
itemId?: string | undefined;
|
|
5051
5051
|
title?: string | undefined;
|
|
5052
|
-
|
|
5052
|
+
state?: "open" | "closed" | "toggle" | undefined;
|
|
5053
5053
|
description?: string | undefined;
|
|
5054
|
+
validation?: string[] | undefined;
|
|
5054
5055
|
itemQuestion?: string | undefined;
|
|
5055
|
-
state?: "open" | "closed" | "toggle" | undefined;
|
|
5056
5056
|
}>;
|
|
5057
5057
|
/**
|
|
5058
5058
|
* Schema for updating FAQ items (add, remove, reorder, replace).
|
|
@@ -5097,15 +5097,15 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5097
5097
|
id: string;
|
|
5098
5098
|
src: string;
|
|
5099
5099
|
width?: number | undefined;
|
|
5100
|
-
alt?: string | undefined;
|
|
5101
5100
|
height?: number | undefined;
|
|
5101
|
+
alt?: string | undefined;
|
|
5102
5102
|
}, {
|
|
5103
5103
|
type: "image" | "video";
|
|
5104
5104
|
id: string;
|
|
5105
5105
|
src: string;
|
|
5106
5106
|
width?: number | undefined;
|
|
5107
|
-
alt?: string | undefined;
|
|
5108
5107
|
height?: number | undefined;
|
|
5108
|
+
alt?: string | undefined;
|
|
5109
5109
|
}>, "many">>;
|
|
5110
5110
|
}, "strip", z.ZodTypeAny, {
|
|
5111
5111
|
type: "markdown";
|
|
@@ -5115,8 +5115,8 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5115
5115
|
id: string;
|
|
5116
5116
|
src: string;
|
|
5117
5117
|
width?: number | undefined;
|
|
5118
|
-
alt?: string | undefined;
|
|
5119
5118
|
height?: number | undefined;
|
|
5119
|
+
alt?: string | undefined;
|
|
5120
5120
|
}[] | undefined;
|
|
5121
5121
|
}, {
|
|
5122
5122
|
type: "markdown";
|
|
@@ -5126,8 +5126,8 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5126
5126
|
id: string;
|
|
5127
5127
|
src: string;
|
|
5128
5128
|
width?: number | undefined;
|
|
5129
|
-
alt?: string | undefined;
|
|
5130
5129
|
height?: number | undefined;
|
|
5130
|
+
alt?: string | undefined;
|
|
5131
5131
|
}[] | undefined;
|
|
5132
5132
|
}>]>;
|
|
5133
5133
|
/** Optional category for grouping */
|
|
@@ -5153,6 +5153,7 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5153
5153
|
}>>;
|
|
5154
5154
|
}, "strip", z.ZodTypeAny, {
|
|
5155
5155
|
question: string;
|
|
5156
|
+
id: string;
|
|
5156
5157
|
answer: string | {
|
|
5157
5158
|
type: "rich";
|
|
5158
5159
|
html: string;
|
|
@@ -5164,11 +5165,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5164
5165
|
id: string;
|
|
5165
5166
|
src: string;
|
|
5166
5167
|
width?: number | undefined;
|
|
5167
|
-
alt?: string | undefined;
|
|
5168
5168
|
height?: number | undefined;
|
|
5169
|
+
alt?: string | undefined;
|
|
5169
5170
|
}[] | undefined;
|
|
5170
5171
|
};
|
|
5171
|
-
id: string;
|
|
5172
5172
|
priority?: number | undefined;
|
|
5173
5173
|
category?: string | undefined;
|
|
5174
5174
|
answerStrategy?: {
|
|
@@ -5179,6 +5179,7 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5179
5179
|
} | undefined;
|
|
5180
5180
|
}, {
|
|
5181
5181
|
question: string;
|
|
5182
|
+
id: string;
|
|
5182
5183
|
answer: string | {
|
|
5183
5184
|
type: "rich";
|
|
5184
5185
|
html: string;
|
|
@@ -5190,11 +5191,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5190
5191
|
id: string;
|
|
5191
5192
|
src: string;
|
|
5192
5193
|
width?: number | undefined;
|
|
5193
|
-
alt?: string | undefined;
|
|
5194
5194
|
height?: number | undefined;
|
|
5195
|
+
alt?: string | undefined;
|
|
5195
5196
|
}[] | undefined;
|
|
5196
5197
|
};
|
|
5197
|
-
id: string;
|
|
5198
5198
|
priority?: number | undefined;
|
|
5199
5199
|
category?: string | undefined;
|
|
5200
5200
|
answerStrategy?: {
|
|
@@ -5710,6 +5710,7 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5710
5710
|
}, "strip", z.ZodTypeAny, {
|
|
5711
5711
|
config: {
|
|
5712
5712
|
question: string;
|
|
5713
|
+
id: string;
|
|
5713
5714
|
answer: string | {
|
|
5714
5715
|
type: "rich";
|
|
5715
5716
|
html: string;
|
|
@@ -5721,11 +5722,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5721
5722
|
id: string;
|
|
5722
5723
|
src: string;
|
|
5723
5724
|
width?: number | undefined;
|
|
5724
|
-
alt?: string | undefined;
|
|
5725
5725
|
height?: number | undefined;
|
|
5726
|
+
alt?: string | undefined;
|
|
5726
5727
|
}[] | undefined;
|
|
5727
5728
|
};
|
|
5728
|
-
id: string;
|
|
5729
5729
|
priority?: number | undefined;
|
|
5730
5730
|
category?: string | undefined;
|
|
5731
5731
|
answerStrategy?: {
|
|
@@ -5737,7 +5737,6 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5737
5737
|
};
|
|
5738
5738
|
kind: "faq:question";
|
|
5739
5739
|
title?: string | undefined;
|
|
5740
|
-
validation?: string[] | undefined;
|
|
5741
5740
|
triggerWhen?: {
|
|
5742
5741
|
type: "rules";
|
|
5743
5742
|
rules: {
|
|
@@ -5819,15 +5818,17 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5819
5818
|
method?: "GET" | "POST" | undefined;
|
|
5820
5819
|
timeoutMs?: number | undefined;
|
|
5821
5820
|
} | null | undefined;
|
|
5821
|
+
description?: string | undefined;
|
|
5822
|
+
validation?: string[] | undefined;
|
|
5822
5823
|
notify?: {
|
|
5823
5824
|
title?: string | undefined;
|
|
5824
5825
|
body?: string | undefined;
|
|
5825
5826
|
icon?: string | undefined;
|
|
5826
5827
|
} | null | undefined;
|
|
5827
|
-
description?: string | undefined;
|
|
5828
5828
|
}, {
|
|
5829
5829
|
config: {
|
|
5830
5830
|
question: string;
|
|
5831
|
+
id: string;
|
|
5831
5832
|
answer: string | {
|
|
5832
5833
|
type: "rich";
|
|
5833
5834
|
html: string;
|
|
@@ -5839,11 +5840,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5839
5840
|
id: string;
|
|
5840
5841
|
src: string;
|
|
5841
5842
|
width?: number | undefined;
|
|
5842
|
-
alt?: string | undefined;
|
|
5843
5843
|
height?: number | undefined;
|
|
5844
|
+
alt?: string | undefined;
|
|
5844
5845
|
}[] | undefined;
|
|
5845
5846
|
};
|
|
5846
|
-
id: string;
|
|
5847
5847
|
priority?: number | undefined;
|
|
5848
5848
|
category?: string | undefined;
|
|
5849
5849
|
answerStrategy?: {
|
|
@@ -5855,7 +5855,6 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5855
5855
|
};
|
|
5856
5856
|
kind: "faq:question";
|
|
5857
5857
|
title?: string | undefined;
|
|
5858
|
-
validation?: string[] | undefined;
|
|
5859
5858
|
triggerWhen?: {
|
|
5860
5859
|
type: "rules";
|
|
5861
5860
|
rules: {
|
|
@@ -5937,15 +5936,17 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5937
5936
|
method?: "GET" | "POST" | undefined;
|
|
5938
5937
|
timeoutMs?: number | undefined;
|
|
5939
5938
|
} | null | undefined;
|
|
5939
|
+
description?: string | undefined;
|
|
5940
|
+
validation?: string[] | undefined;
|
|
5940
5941
|
notify?: {
|
|
5941
5942
|
title?: string | undefined;
|
|
5942
5943
|
body?: string | undefined;
|
|
5943
5944
|
icon?: string | undefined;
|
|
5944
5945
|
} | null | undefined;
|
|
5945
|
-
description?: string | undefined;
|
|
5946
5946
|
}>, {
|
|
5947
5947
|
config: {
|
|
5948
5948
|
question: string;
|
|
5949
|
+
id: string;
|
|
5949
5950
|
answer: string | {
|
|
5950
5951
|
type: "rich";
|
|
5951
5952
|
html: string;
|
|
@@ -5957,11 +5958,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5957
5958
|
id: string;
|
|
5958
5959
|
src: string;
|
|
5959
5960
|
width?: number | undefined;
|
|
5960
|
-
alt?: string | undefined;
|
|
5961
5961
|
height?: number | undefined;
|
|
5962
|
+
alt?: string | undefined;
|
|
5962
5963
|
}[] | undefined;
|
|
5963
5964
|
};
|
|
5964
|
-
id: string;
|
|
5965
5965
|
priority?: number | undefined;
|
|
5966
5966
|
category?: string | undefined;
|
|
5967
5967
|
answerStrategy?: {
|
|
@@ -5973,7 +5973,6 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5973
5973
|
};
|
|
5974
5974
|
kind: "faq:question";
|
|
5975
5975
|
title?: string | undefined;
|
|
5976
|
-
validation?: string[] | undefined;
|
|
5977
5976
|
triggerWhen?: {
|
|
5978
5977
|
type: "rules";
|
|
5979
5978
|
rules: {
|
|
@@ -6055,15 +6054,17 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6055
6054
|
method?: "GET" | "POST" | undefined;
|
|
6056
6055
|
timeoutMs?: number | undefined;
|
|
6057
6056
|
} | null | undefined;
|
|
6057
|
+
description?: string | undefined;
|
|
6058
|
+
validation?: string[] | undefined;
|
|
6058
6059
|
notify?: {
|
|
6059
6060
|
title?: string | undefined;
|
|
6060
6061
|
body?: string | undefined;
|
|
6061
6062
|
icon?: string | undefined;
|
|
6062
6063
|
} | null | undefined;
|
|
6063
|
-
description?: string | undefined;
|
|
6064
6064
|
}, {
|
|
6065
6065
|
config: {
|
|
6066
6066
|
question: string;
|
|
6067
|
+
id: string;
|
|
6067
6068
|
answer: string | {
|
|
6068
6069
|
type: "rich";
|
|
6069
6070
|
html: string;
|
|
@@ -6075,11 +6076,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6075
6076
|
id: string;
|
|
6076
6077
|
src: string;
|
|
6077
6078
|
width?: number | undefined;
|
|
6078
|
-
alt?: string | undefined;
|
|
6079
6079
|
height?: number | undefined;
|
|
6080
|
+
alt?: string | undefined;
|
|
6080
6081
|
}[] | undefined;
|
|
6081
6082
|
};
|
|
6082
|
-
id: string;
|
|
6083
6083
|
priority?: number | undefined;
|
|
6084
6084
|
category?: string | undefined;
|
|
6085
6085
|
answerStrategy?: {
|
|
@@ -6091,7 +6091,6 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6091
6091
|
};
|
|
6092
6092
|
kind: "faq:question";
|
|
6093
6093
|
title?: string | undefined;
|
|
6094
|
-
validation?: string[] | undefined;
|
|
6095
6094
|
triggerWhen?: {
|
|
6096
6095
|
type: "rules";
|
|
6097
6096
|
rules: {
|
|
@@ -6173,12 +6172,13 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6173
6172
|
method?: "GET" | "POST" | undefined;
|
|
6174
6173
|
timeoutMs?: number | undefined;
|
|
6175
6174
|
} | null | undefined;
|
|
6175
|
+
description?: string | undefined;
|
|
6176
|
+
validation?: string[] | undefined;
|
|
6176
6177
|
notify?: {
|
|
6177
6178
|
title?: string | undefined;
|
|
6178
6179
|
body?: string | undefined;
|
|
6179
6180
|
icon?: string | undefined;
|
|
6180
6181
|
} | null | undefined;
|
|
6181
|
-
description?: string | undefined;
|
|
6182
6182
|
}>, "many">>;
|
|
6183
6183
|
itemId: z.ZodOptional<z.ZodString>;
|
|
6184
6184
|
order: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -6202,6 +6202,7 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6202
6202
|
items?: {
|
|
6203
6203
|
config: {
|
|
6204
6204
|
question: string;
|
|
6205
|
+
id: string;
|
|
6205
6206
|
answer: string | {
|
|
6206
6207
|
type: "rich";
|
|
6207
6208
|
html: string;
|
|
@@ -6213,11 +6214,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6213
6214
|
id: string;
|
|
6214
6215
|
src: string;
|
|
6215
6216
|
width?: number | undefined;
|
|
6216
|
-
alt?: string | undefined;
|
|
6217
6217
|
height?: number | undefined;
|
|
6218
|
+
alt?: string | undefined;
|
|
6218
6219
|
}[] | undefined;
|
|
6219
6220
|
};
|
|
6220
|
-
id: string;
|
|
6221
6221
|
priority?: number | undefined;
|
|
6222
6222
|
category?: string | undefined;
|
|
6223
6223
|
answerStrategy?: {
|
|
@@ -6229,7 +6229,6 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6229
6229
|
};
|
|
6230
6230
|
kind: "faq:question";
|
|
6231
6231
|
title?: string | undefined;
|
|
6232
|
-
validation?: string[] | undefined;
|
|
6233
6232
|
triggerWhen?: {
|
|
6234
6233
|
type: "rules";
|
|
6235
6234
|
rules: {
|
|
@@ -6311,29 +6310,31 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6311
6310
|
method?: "GET" | "POST" | undefined;
|
|
6312
6311
|
timeoutMs?: number | undefined;
|
|
6313
6312
|
} | null | undefined;
|
|
6313
|
+
description?: string | undefined;
|
|
6314
|
+
validation?: string[] | undefined;
|
|
6314
6315
|
notify?: {
|
|
6315
6316
|
title?: string | undefined;
|
|
6316
6317
|
body?: string | undefined;
|
|
6317
6318
|
icon?: string | undefined;
|
|
6318
6319
|
} | null | undefined;
|
|
6319
|
-
description?: string | undefined;
|
|
6320
6320
|
}[] | undefined;
|
|
6321
6321
|
itemId?: string | undefined;
|
|
6322
6322
|
title?: string | undefined;
|
|
6323
|
-
validation?: string[] | undefined;
|
|
6324
|
-
description?: string | undefined;
|
|
6325
6323
|
position?: "prepend" | "append" | "before" | "after" | undefined;
|
|
6326
|
-
order?: string[] | undefined;
|
|
6327
6324
|
anchorId?: {
|
|
6328
6325
|
selector: string;
|
|
6329
6326
|
route: string | string[];
|
|
6330
6327
|
} | undefined;
|
|
6328
|
+
order?: string[] | undefined;
|
|
6329
|
+
description?: string | undefined;
|
|
6330
|
+
validation?: string[] | undefined;
|
|
6331
6331
|
}, {
|
|
6332
6332
|
operation: "add" | "remove" | "reorder" | "replace";
|
|
6333
6333
|
kind: "faq:update";
|
|
6334
6334
|
items?: {
|
|
6335
6335
|
config: {
|
|
6336
6336
|
question: string;
|
|
6337
|
+
id: string;
|
|
6337
6338
|
answer: string | {
|
|
6338
6339
|
type: "rich";
|
|
6339
6340
|
html: string;
|
|
@@ -6345,11 +6346,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6345
6346
|
id: string;
|
|
6346
6347
|
src: string;
|
|
6347
6348
|
width?: number | undefined;
|
|
6348
|
-
alt?: string | undefined;
|
|
6349
6349
|
height?: number | undefined;
|
|
6350
|
+
alt?: string | undefined;
|
|
6350
6351
|
}[] | undefined;
|
|
6351
6352
|
};
|
|
6352
|
-
id: string;
|
|
6353
6353
|
priority?: number | undefined;
|
|
6354
6354
|
category?: string | undefined;
|
|
6355
6355
|
answerStrategy?: {
|
|
@@ -6361,7 +6361,6 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6361
6361
|
};
|
|
6362
6362
|
kind: "faq:question";
|
|
6363
6363
|
title?: string | undefined;
|
|
6364
|
-
validation?: string[] | undefined;
|
|
6365
6364
|
triggerWhen?: {
|
|
6366
6365
|
type: "rules";
|
|
6367
6366
|
rules: {
|
|
@@ -6443,29 +6442,31 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6443
6442
|
method?: "GET" | "POST" | undefined;
|
|
6444
6443
|
timeoutMs?: number | undefined;
|
|
6445
6444
|
} | null | undefined;
|
|
6445
|
+
description?: string | undefined;
|
|
6446
|
+
validation?: string[] | undefined;
|
|
6446
6447
|
notify?: {
|
|
6447
6448
|
title?: string | undefined;
|
|
6448
6449
|
body?: string | undefined;
|
|
6449
6450
|
icon?: string | undefined;
|
|
6450
6451
|
} | null | undefined;
|
|
6451
|
-
description?: string | undefined;
|
|
6452
6452
|
}[] | undefined;
|
|
6453
6453
|
itemId?: string | undefined;
|
|
6454
6454
|
title?: string | undefined;
|
|
6455
|
-
validation?: string[] | undefined;
|
|
6456
|
-
description?: string | undefined;
|
|
6457
6455
|
position?: "prepend" | "append" | "before" | "after" | undefined;
|
|
6458
|
-
order?: string[] | undefined;
|
|
6459
6456
|
anchorId?: {
|
|
6460
6457
|
selector: string;
|
|
6461
6458
|
route: string | string[];
|
|
6462
6459
|
} | undefined;
|
|
6460
|
+
order?: string[] | undefined;
|
|
6461
|
+
description?: string | undefined;
|
|
6462
|
+
validation?: string[] | undefined;
|
|
6463
6463
|
}>, {
|
|
6464
6464
|
operation: "add" | "remove" | "reorder" | "replace";
|
|
6465
6465
|
kind: "faq:update";
|
|
6466
6466
|
items?: {
|
|
6467
6467
|
config: {
|
|
6468
6468
|
question: string;
|
|
6469
|
+
id: string;
|
|
6469
6470
|
answer: string | {
|
|
6470
6471
|
type: "rich";
|
|
6471
6472
|
html: string;
|
|
@@ -6477,11 +6478,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6477
6478
|
id: string;
|
|
6478
6479
|
src: string;
|
|
6479
6480
|
width?: number | undefined;
|
|
6480
|
-
alt?: string | undefined;
|
|
6481
6481
|
height?: number | undefined;
|
|
6482
|
+
alt?: string | undefined;
|
|
6482
6483
|
}[] | undefined;
|
|
6483
6484
|
};
|
|
6484
|
-
id: string;
|
|
6485
6485
|
priority?: number | undefined;
|
|
6486
6486
|
category?: string | undefined;
|
|
6487
6487
|
answerStrategy?: {
|
|
@@ -6493,7 +6493,6 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6493
6493
|
};
|
|
6494
6494
|
kind: "faq:question";
|
|
6495
6495
|
title?: string | undefined;
|
|
6496
|
-
validation?: string[] | undefined;
|
|
6497
6496
|
triggerWhen?: {
|
|
6498
6497
|
type: "rules";
|
|
6499
6498
|
rules: {
|
|
@@ -6575,29 +6574,31 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6575
6574
|
method?: "GET" | "POST" | undefined;
|
|
6576
6575
|
timeoutMs?: number | undefined;
|
|
6577
6576
|
} | null | undefined;
|
|
6577
|
+
description?: string | undefined;
|
|
6578
|
+
validation?: string[] | undefined;
|
|
6578
6579
|
notify?: {
|
|
6579
6580
|
title?: string | undefined;
|
|
6580
6581
|
body?: string | undefined;
|
|
6581
6582
|
icon?: string | undefined;
|
|
6582
6583
|
} | null | undefined;
|
|
6583
|
-
description?: string | undefined;
|
|
6584
6584
|
}[] | undefined;
|
|
6585
6585
|
itemId?: string | undefined;
|
|
6586
6586
|
title?: string | undefined;
|
|
6587
|
-
validation?: string[] | undefined;
|
|
6588
|
-
description?: string | undefined;
|
|
6589
6587
|
position?: "prepend" | "append" | "before" | "after" | undefined;
|
|
6590
|
-
order?: string[] | undefined;
|
|
6591
6588
|
anchorId?: {
|
|
6592
6589
|
selector: string;
|
|
6593
6590
|
route: string | string[];
|
|
6594
6591
|
} | undefined;
|
|
6592
|
+
order?: string[] | undefined;
|
|
6593
|
+
description?: string | undefined;
|
|
6594
|
+
validation?: string[] | undefined;
|
|
6595
6595
|
}, {
|
|
6596
6596
|
operation: "add" | "remove" | "reorder" | "replace";
|
|
6597
6597
|
kind: "faq:update";
|
|
6598
6598
|
items?: {
|
|
6599
6599
|
config: {
|
|
6600
6600
|
question: string;
|
|
6601
|
+
id: string;
|
|
6601
6602
|
answer: string | {
|
|
6602
6603
|
type: "rich";
|
|
6603
6604
|
html: string;
|
|
@@ -6609,11 +6610,10 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6609
6610
|
id: string;
|
|
6610
6611
|
src: string;
|
|
6611
6612
|
width?: number | undefined;
|
|
6612
|
-
alt?: string | undefined;
|
|
6613
6613
|
height?: number | undefined;
|
|
6614
|
+
alt?: string | undefined;
|
|
6614
6615
|
}[] | undefined;
|
|
6615
6616
|
};
|
|
6616
|
-
id: string;
|
|
6617
6617
|
priority?: number | undefined;
|
|
6618
6618
|
category?: string | undefined;
|
|
6619
6619
|
answerStrategy?: {
|
|
@@ -6625,7 +6625,6 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6625
6625
|
};
|
|
6626
6626
|
kind: "faq:question";
|
|
6627
6627
|
title?: string | undefined;
|
|
6628
|
-
validation?: string[] | undefined;
|
|
6629
6628
|
triggerWhen?: {
|
|
6630
6629
|
type: "rules";
|
|
6631
6630
|
rules: {
|
|
@@ -6707,23 +6706,24 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6707
6706
|
method?: "GET" | "POST" | undefined;
|
|
6708
6707
|
timeoutMs?: number | undefined;
|
|
6709
6708
|
} | null | undefined;
|
|
6709
|
+
description?: string | undefined;
|
|
6710
|
+
validation?: string[] | undefined;
|
|
6710
6711
|
notify?: {
|
|
6711
6712
|
title?: string | undefined;
|
|
6712
6713
|
body?: string | undefined;
|
|
6713
6714
|
icon?: string | undefined;
|
|
6714
6715
|
} | null | undefined;
|
|
6715
|
-
description?: string | undefined;
|
|
6716
6716
|
}[] | undefined;
|
|
6717
6717
|
itemId?: string | undefined;
|
|
6718
6718
|
title?: string | undefined;
|
|
6719
|
-
validation?: string[] | undefined;
|
|
6720
|
-
description?: string | undefined;
|
|
6721
6719
|
position?: "prepend" | "append" | "before" | "after" | undefined;
|
|
6722
|
-
order?: string[] | undefined;
|
|
6723
6720
|
anchorId?: {
|
|
6724
6721
|
selector: string;
|
|
6725
6722
|
route: string | string[];
|
|
6726
6723
|
} | undefined;
|
|
6724
|
+
order?: string[] | undefined;
|
|
6725
|
+
description?: string | undefined;
|
|
6726
|
+
validation?: string[] | undefined;
|
|
6727
6727
|
}>;
|
|
6728
6728
|
/**
|
|
6729
6729
|
* Validate a FAQ question action.
|
|
@@ -6731,6 +6731,7 @@ export declare const UpdateFaqSchema: z.ZodEffects<z.ZodObject<{
|
|
|
6731
6731
|
export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnType<{
|
|
6732
6732
|
config: {
|
|
6733
6733
|
question: string;
|
|
6734
|
+
id: string;
|
|
6734
6735
|
answer: string | {
|
|
6735
6736
|
type: "rich";
|
|
6736
6737
|
html: string;
|
|
@@ -6742,11 +6743,10 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
|
|
|
6742
6743
|
id: string;
|
|
6743
6744
|
src: string;
|
|
6744
6745
|
width?: number | undefined;
|
|
6745
|
-
alt?: string | undefined;
|
|
6746
6746
|
height?: number | undefined;
|
|
6747
|
+
alt?: string | undefined;
|
|
6747
6748
|
}[] | undefined;
|
|
6748
6749
|
};
|
|
6749
|
-
id: string;
|
|
6750
6750
|
priority?: number | undefined;
|
|
6751
6751
|
category?: string | undefined;
|
|
6752
6752
|
answerStrategy?: {
|
|
@@ -6758,7 +6758,6 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
|
|
|
6758
6758
|
};
|
|
6759
6759
|
kind: "faq:question";
|
|
6760
6760
|
title?: string | undefined;
|
|
6761
|
-
validation?: string[] | undefined;
|
|
6762
6761
|
triggerWhen?: {
|
|
6763
6762
|
type: "rules";
|
|
6764
6763
|
rules: {
|
|
@@ -6840,15 +6839,17 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
|
|
|
6840
6839
|
method?: "GET" | "POST" | undefined;
|
|
6841
6840
|
timeoutMs?: number | undefined;
|
|
6842
6841
|
} | null | undefined;
|
|
6842
|
+
description?: string | undefined;
|
|
6843
|
+
validation?: string[] | undefined;
|
|
6843
6844
|
notify?: {
|
|
6844
6845
|
title?: string | undefined;
|
|
6845
6846
|
body?: string | undefined;
|
|
6846
6847
|
icon?: string | undefined;
|
|
6847
6848
|
} | null | undefined;
|
|
6848
|
-
description?: string | undefined;
|
|
6849
6849
|
}, {
|
|
6850
6850
|
config: {
|
|
6851
6851
|
question: string;
|
|
6852
|
+
id: string;
|
|
6852
6853
|
answer: string | {
|
|
6853
6854
|
type: "rich";
|
|
6854
6855
|
html: string;
|
|
@@ -6860,11 +6861,10 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
|
|
|
6860
6861
|
id: string;
|
|
6861
6862
|
src: string;
|
|
6862
6863
|
width?: number | undefined;
|
|
6863
|
-
alt?: string | undefined;
|
|
6864
6864
|
height?: number | undefined;
|
|
6865
|
+
alt?: string | undefined;
|
|
6865
6866
|
}[] | undefined;
|
|
6866
6867
|
};
|
|
6867
|
-
id: string;
|
|
6868
6868
|
priority?: number | undefined;
|
|
6869
6869
|
category?: string | undefined;
|
|
6870
6870
|
answerStrategy?: {
|
|
@@ -6876,7 +6876,6 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
|
|
|
6876
6876
|
};
|
|
6877
6877
|
kind: "faq:question";
|
|
6878
6878
|
title?: string | undefined;
|
|
6879
|
-
validation?: string[] | undefined;
|
|
6880
6879
|
triggerWhen?: {
|
|
6881
6880
|
type: "rules";
|
|
6882
6881
|
rules: {
|
|
@@ -6958,12 +6957,13 @@ export declare function validateFAQQuestion(data: unknown): z.SafeParseReturnTyp
|
|
|
6958
6957
|
method?: "GET" | "POST" | undefined;
|
|
6959
6958
|
timeoutMs?: number | undefined;
|
|
6960
6959
|
} | null | undefined;
|
|
6960
|
+
description?: string | undefined;
|
|
6961
|
+
validation?: string[] | undefined;
|
|
6961
6962
|
notify?: {
|
|
6962
6963
|
title?: string | undefined;
|
|
6963
6964
|
body?: string | undefined;
|
|
6964
6965
|
icon?: string | undefined;
|
|
6965
6966
|
} | null | undefined;
|
|
6966
|
-
description?: string | undefined;
|
|
6967
6967
|
}>;
|
|
6968
6968
|
/**
|
|
6969
6969
|
* Validate the full FAQ config.
|
|
@@ -6976,6 +6976,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
6976
6976
|
actions?: {
|
|
6977
6977
|
config: {
|
|
6978
6978
|
question: string;
|
|
6979
|
+
id: string;
|
|
6979
6980
|
answer: string | {
|
|
6980
6981
|
type: "rich";
|
|
6981
6982
|
html: string;
|
|
@@ -6987,11 +6988,10 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
6987
6988
|
id: string;
|
|
6988
6989
|
src: string;
|
|
6989
6990
|
width?: number | undefined;
|
|
6990
|
-
alt?: string | undefined;
|
|
6991
6991
|
height?: number | undefined;
|
|
6992
|
+
alt?: string | undefined;
|
|
6992
6993
|
}[] | undefined;
|
|
6993
6994
|
};
|
|
6994
|
-
id: string;
|
|
6995
6995
|
priority?: number | undefined;
|
|
6996
6996
|
category?: string | undefined;
|
|
6997
6997
|
answerStrategy?: {
|
|
@@ -7003,7 +7003,6 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7003
7003
|
};
|
|
7004
7004
|
kind: "faq:question";
|
|
7005
7005
|
title?: string | undefined;
|
|
7006
|
-
validation?: string[] | undefined;
|
|
7007
7006
|
triggerWhen?: {
|
|
7008
7007
|
type: "rules";
|
|
7009
7008
|
rules: {
|
|
@@ -7085,12 +7084,13 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7085
7084
|
method?: "GET" | "POST" | undefined;
|
|
7086
7085
|
timeoutMs?: number | undefined;
|
|
7087
7086
|
} | null | undefined;
|
|
7087
|
+
description?: string | undefined;
|
|
7088
|
+
validation?: string[] | undefined;
|
|
7088
7089
|
notify?: {
|
|
7089
7090
|
title?: string | undefined;
|
|
7090
7091
|
body?: string | undefined;
|
|
7091
7092
|
icon?: string | undefined;
|
|
7092
7093
|
} | null | undefined;
|
|
7093
|
-
description?: string | undefined;
|
|
7094
7094
|
}[] | undefined;
|
|
7095
7095
|
feedback?: boolean | {
|
|
7096
7096
|
style: "thumbs" | "rating";
|
|
@@ -7104,6 +7104,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7104
7104
|
items: {
|
|
7105
7105
|
config: {
|
|
7106
7106
|
question: string;
|
|
7107
|
+
id: string;
|
|
7107
7108
|
answer: string | {
|
|
7108
7109
|
type: "rich";
|
|
7109
7110
|
html: string;
|
|
@@ -7115,11 +7116,10 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7115
7116
|
id: string;
|
|
7116
7117
|
src: string;
|
|
7117
7118
|
width?: number | undefined;
|
|
7118
|
-
alt?: string | undefined;
|
|
7119
7119
|
height?: number | undefined;
|
|
7120
|
+
alt?: string | undefined;
|
|
7120
7121
|
}[] | undefined;
|
|
7121
7122
|
};
|
|
7122
|
-
id: string;
|
|
7123
7123
|
priority?: number | undefined;
|
|
7124
7124
|
category?: string | undefined;
|
|
7125
7125
|
answerStrategy?: {
|
|
@@ -7131,7 +7131,6 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7131
7131
|
};
|
|
7132
7132
|
kind: "faq:question";
|
|
7133
7133
|
title?: string | undefined;
|
|
7134
|
-
validation?: string[] | undefined;
|
|
7135
7134
|
triggerWhen?: {
|
|
7136
7135
|
type: "rules";
|
|
7137
7136
|
rules: {
|
|
@@ -7213,12 +7212,13 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7213
7212
|
method?: "GET" | "POST" | undefined;
|
|
7214
7213
|
timeoutMs?: number | undefined;
|
|
7215
7214
|
} | null | undefined;
|
|
7215
|
+
description?: string | undefined;
|
|
7216
|
+
validation?: string[] | undefined;
|
|
7216
7217
|
notify?: {
|
|
7217
7218
|
title?: string | undefined;
|
|
7218
7219
|
body?: string | undefined;
|
|
7219
7220
|
icon?: string | undefined;
|
|
7220
7221
|
} | null | undefined;
|
|
7221
|
-
description?: string | undefined;
|
|
7222
7222
|
}[];
|
|
7223
7223
|
trigger: {
|
|
7224
7224
|
type: "rules";
|
|
@@ -7311,6 +7311,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7311
7311
|
actions: {
|
|
7312
7312
|
config: {
|
|
7313
7313
|
question: string;
|
|
7314
|
+
id: string;
|
|
7314
7315
|
answer: string | {
|
|
7315
7316
|
type: "rich";
|
|
7316
7317
|
html: string;
|
|
@@ -7322,11 +7323,10 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7322
7323
|
id: string;
|
|
7323
7324
|
src: string;
|
|
7324
7325
|
width?: number | undefined;
|
|
7325
|
-
alt?: string | undefined;
|
|
7326
7326
|
height?: number | undefined;
|
|
7327
|
+
alt?: string | undefined;
|
|
7327
7328
|
}[] | undefined;
|
|
7328
7329
|
};
|
|
7329
|
-
id: string;
|
|
7330
7330
|
priority?: number | undefined;
|
|
7331
7331
|
category?: string | undefined;
|
|
7332
7332
|
answerStrategy?: {
|
|
@@ -7338,7 +7338,6 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7338
7338
|
};
|
|
7339
7339
|
kind: "faq:question";
|
|
7340
7340
|
title?: string | undefined;
|
|
7341
|
-
validation?: string[] | undefined;
|
|
7342
7341
|
triggerWhen?: {
|
|
7343
7342
|
type: "rules";
|
|
7344
7343
|
rules: {
|
|
@@ -7420,12 +7419,13 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7420
7419
|
method?: "GET" | "POST" | undefined;
|
|
7421
7420
|
timeoutMs?: number | undefined;
|
|
7422
7421
|
} | null | undefined;
|
|
7422
|
+
description?: string | undefined;
|
|
7423
|
+
validation?: string[] | undefined;
|
|
7423
7424
|
notify?: {
|
|
7424
7425
|
title?: string | undefined;
|
|
7425
7426
|
body?: string | undefined;
|
|
7426
7427
|
icon?: string | undefined;
|
|
7427
7428
|
} | null | undefined;
|
|
7428
|
-
description?: string | undefined;
|
|
7429
7429
|
}[];
|
|
7430
7430
|
title?: string | undefined;
|
|
7431
7431
|
feedback?: boolean | {
|
|
@@ -7440,6 +7440,7 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7440
7440
|
items: {
|
|
7441
7441
|
config: {
|
|
7442
7442
|
question: string;
|
|
7443
|
+
id: string;
|
|
7443
7444
|
answer: string | {
|
|
7444
7445
|
type: "rich";
|
|
7445
7446
|
html: string;
|
|
@@ -7451,11 +7452,10 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7451
7452
|
id: string;
|
|
7452
7453
|
src: string;
|
|
7453
7454
|
width?: number | undefined;
|
|
7454
|
-
alt?: string | undefined;
|
|
7455
7455
|
height?: number | undefined;
|
|
7456
|
+
alt?: string | undefined;
|
|
7456
7457
|
}[] | undefined;
|
|
7457
7458
|
};
|
|
7458
|
-
id: string;
|
|
7459
7459
|
priority?: number | undefined;
|
|
7460
7460
|
category?: string | undefined;
|
|
7461
7461
|
answerStrategy?: {
|
|
@@ -7467,7 +7467,6 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7467
7467
|
};
|
|
7468
7468
|
kind: "faq:question";
|
|
7469
7469
|
title?: string | undefined;
|
|
7470
|
-
validation?: string[] | undefined;
|
|
7471
7470
|
triggerWhen?: {
|
|
7472
7471
|
type: "rules";
|
|
7473
7472
|
rules: {
|
|
@@ -7549,12 +7548,13 @@ export declare function validateFAQConfig(data: unknown): z.SafeParseReturnType<
|
|
|
7549
7548
|
method?: "GET" | "POST" | undefined;
|
|
7550
7549
|
timeoutMs?: number | undefined;
|
|
7551
7550
|
} | null | undefined;
|
|
7551
|
+
description?: string | undefined;
|
|
7552
|
+
validation?: string[] | undefined;
|
|
7552
7553
|
notify?: {
|
|
7553
7554
|
title?: string | undefined;
|
|
7554
7555
|
body?: string | undefined;
|
|
7555
7556
|
icon?: string | undefined;
|
|
7556
7557
|
} | null | undefined;
|
|
7557
|
-
description?: string | undefined;
|
|
7558
7558
|
}[];
|
|
7559
7559
|
trigger: {
|
|
7560
7560
|
type: "rules";
|
|
@@ -7683,15 +7683,15 @@ export declare const actionStepSchemas: ({
|
|
|
7683
7683
|
id: string;
|
|
7684
7684
|
src: string;
|
|
7685
7685
|
width?: number | undefined;
|
|
7686
|
-
alt?: string | undefined;
|
|
7687
7686
|
height?: number | undefined;
|
|
7687
|
+
alt?: string | undefined;
|
|
7688
7688
|
}, {
|
|
7689
7689
|
type: "image" | "video";
|
|
7690
7690
|
id: string;
|
|
7691
7691
|
src: string;
|
|
7692
7692
|
width?: number | undefined;
|
|
7693
|
-
alt?: string | undefined;
|
|
7694
7693
|
height?: number | undefined;
|
|
7694
|
+
alt?: string | undefined;
|
|
7695
7695
|
}>, "many">>;
|
|
7696
7696
|
}, "strip", z.ZodTypeAny, {
|
|
7697
7697
|
type: "markdown";
|
|
@@ -7701,8 +7701,8 @@ export declare const actionStepSchemas: ({
|
|
|
7701
7701
|
id: string;
|
|
7702
7702
|
src: string;
|
|
7703
7703
|
width?: number | undefined;
|
|
7704
|
-
alt?: string | undefined;
|
|
7705
7704
|
height?: number | undefined;
|
|
7705
|
+
alt?: string | undefined;
|
|
7706
7706
|
}[] | undefined;
|
|
7707
7707
|
}, {
|
|
7708
7708
|
type: "markdown";
|
|
@@ -7712,8 +7712,8 @@ export declare const actionStepSchemas: ({
|
|
|
7712
7712
|
id: string;
|
|
7713
7713
|
src: string;
|
|
7714
7714
|
width?: number | undefined;
|
|
7715
|
-
alt?: string | undefined;
|
|
7716
7715
|
height?: number | undefined;
|
|
7716
|
+
alt?: string | undefined;
|
|
7717
7717
|
}[] | undefined;
|
|
7718
7718
|
}>]>;
|
|
7719
7719
|
/** Optional category for grouping */
|
|
@@ -7739,6 +7739,7 @@ export declare const actionStepSchemas: ({
|
|
|
7739
7739
|
}>>;
|
|
7740
7740
|
}, "strip", z.ZodTypeAny, {
|
|
7741
7741
|
question: string;
|
|
7742
|
+
id: string;
|
|
7742
7743
|
answer: string | {
|
|
7743
7744
|
type: "rich";
|
|
7744
7745
|
html: string;
|
|
@@ -7750,11 +7751,10 @@ export declare const actionStepSchemas: ({
|
|
|
7750
7751
|
id: string;
|
|
7751
7752
|
src: string;
|
|
7752
7753
|
width?: number | undefined;
|
|
7753
|
-
alt?: string | undefined;
|
|
7754
7754
|
height?: number | undefined;
|
|
7755
|
+
alt?: string | undefined;
|
|
7755
7756
|
}[] | undefined;
|
|
7756
7757
|
};
|
|
7757
|
-
id: string;
|
|
7758
7758
|
priority?: number | undefined;
|
|
7759
7759
|
category?: string | undefined;
|
|
7760
7760
|
answerStrategy?: {
|
|
@@ -7765,6 +7765,7 @@ export declare const actionStepSchemas: ({
|
|
|
7765
7765
|
} | undefined;
|
|
7766
7766
|
}, {
|
|
7767
7767
|
question: string;
|
|
7768
|
+
id: string;
|
|
7768
7769
|
answer: string | {
|
|
7769
7770
|
type: "rich";
|
|
7770
7771
|
html: string;
|
|
@@ -7776,11 +7777,10 @@ export declare const actionStepSchemas: ({
|
|
|
7776
7777
|
id: string;
|
|
7777
7778
|
src: string;
|
|
7778
7779
|
width?: number | undefined;
|
|
7779
|
-
alt?: string | undefined;
|
|
7780
7780
|
height?: number | undefined;
|
|
7781
|
+
alt?: string | undefined;
|
|
7781
7782
|
}[] | undefined;
|
|
7782
7783
|
};
|
|
7783
|
-
id: string;
|
|
7784
7784
|
priority?: number | undefined;
|
|
7785
7785
|
category?: string | undefined;
|
|
7786
7786
|
answerStrategy?: {
|
|
@@ -8296,6 +8296,7 @@ export declare const actionStepSchemas: ({
|
|
|
8296
8296
|
}, "strip", z.ZodTypeAny, {
|
|
8297
8297
|
config: {
|
|
8298
8298
|
question: string;
|
|
8299
|
+
id: string;
|
|
8299
8300
|
answer: string | {
|
|
8300
8301
|
type: "rich";
|
|
8301
8302
|
html: string;
|
|
@@ -8307,11 +8308,10 @@ export declare const actionStepSchemas: ({
|
|
|
8307
8308
|
id: string;
|
|
8308
8309
|
src: string;
|
|
8309
8310
|
width?: number | undefined;
|
|
8310
|
-
alt?: string | undefined;
|
|
8311
8311
|
height?: number | undefined;
|
|
8312
|
+
alt?: string | undefined;
|
|
8312
8313
|
}[] | undefined;
|
|
8313
8314
|
};
|
|
8314
|
-
id: string;
|
|
8315
8315
|
priority?: number | undefined;
|
|
8316
8316
|
category?: string | undefined;
|
|
8317
8317
|
answerStrategy?: {
|
|
@@ -8323,7 +8323,6 @@ export declare const actionStepSchemas: ({
|
|
|
8323
8323
|
};
|
|
8324
8324
|
kind: "faq:question";
|
|
8325
8325
|
title?: string | undefined;
|
|
8326
|
-
validation?: string[] | undefined;
|
|
8327
8326
|
triggerWhen?: {
|
|
8328
8327
|
type: "rules";
|
|
8329
8328
|
rules: {
|
|
@@ -8405,15 +8404,17 @@ export declare const actionStepSchemas: ({
|
|
|
8405
8404
|
method?: "GET" | "POST" | undefined;
|
|
8406
8405
|
timeoutMs?: number | undefined;
|
|
8407
8406
|
} | null | undefined;
|
|
8407
|
+
description?: string | undefined;
|
|
8408
|
+
validation?: string[] | undefined;
|
|
8408
8409
|
notify?: {
|
|
8409
8410
|
title?: string | undefined;
|
|
8410
8411
|
body?: string | undefined;
|
|
8411
8412
|
icon?: string | undefined;
|
|
8412
8413
|
} | null | undefined;
|
|
8413
|
-
description?: string | undefined;
|
|
8414
8414
|
}, {
|
|
8415
8415
|
config: {
|
|
8416
8416
|
question: string;
|
|
8417
|
+
id: string;
|
|
8417
8418
|
answer: string | {
|
|
8418
8419
|
type: "rich";
|
|
8419
8420
|
html: string;
|
|
@@ -8425,11 +8426,10 @@ export declare const actionStepSchemas: ({
|
|
|
8425
8426
|
id: string;
|
|
8426
8427
|
src: string;
|
|
8427
8428
|
width?: number | undefined;
|
|
8428
|
-
alt?: string | undefined;
|
|
8429
8429
|
height?: number | undefined;
|
|
8430
|
+
alt?: string | undefined;
|
|
8430
8431
|
}[] | undefined;
|
|
8431
8432
|
};
|
|
8432
|
-
id: string;
|
|
8433
8433
|
priority?: number | undefined;
|
|
8434
8434
|
category?: string | undefined;
|
|
8435
8435
|
answerStrategy?: {
|
|
@@ -8441,7 +8441,6 @@ export declare const actionStepSchemas: ({
|
|
|
8441
8441
|
};
|
|
8442
8442
|
kind: "faq:question";
|
|
8443
8443
|
title?: string | undefined;
|
|
8444
|
-
validation?: string[] | undefined;
|
|
8445
8444
|
triggerWhen?: {
|
|
8446
8445
|
type: "rules";
|
|
8447
8446
|
rules: {
|
|
@@ -8523,12 +8522,13 @@ export declare const actionStepSchemas: ({
|
|
|
8523
8522
|
method?: "GET" | "POST" | undefined;
|
|
8524
8523
|
timeoutMs?: number | undefined;
|
|
8525
8524
|
} | null | undefined;
|
|
8525
|
+
description?: string | undefined;
|
|
8526
|
+
validation?: string[] | undefined;
|
|
8526
8527
|
notify?: {
|
|
8527
8528
|
title?: string | undefined;
|
|
8528
8529
|
body?: string | undefined;
|
|
8529
8530
|
icon?: string | undefined;
|
|
8530
8531
|
} | null | undefined;
|
|
8531
|
-
description?: string | undefined;
|
|
8532
8532
|
}>;
|
|
8533
8533
|
} | {
|
|
8534
8534
|
defName: string;
|
|
@@ -8546,8 +8546,8 @@ export declare const actionStepSchemas: ({
|
|
|
8546
8546
|
itemId?: string | undefined;
|
|
8547
8547
|
title?: string | undefined;
|
|
8548
8548
|
behavior?: "auto" | "smooth" | "instant" | undefined;
|
|
8549
|
-
validation?: string[] | undefined;
|
|
8550
8549
|
description?: string | undefined;
|
|
8550
|
+
validation?: string[] | undefined;
|
|
8551
8551
|
itemQuestion?: string | undefined;
|
|
8552
8552
|
expand?: boolean | undefined;
|
|
8553
8553
|
}, {
|
|
@@ -8555,8 +8555,8 @@ export declare const actionStepSchemas: ({
|
|
|
8555
8555
|
itemId?: string | undefined;
|
|
8556
8556
|
title?: string | undefined;
|
|
8557
8557
|
behavior?: "auto" | "smooth" | "instant" | undefined;
|
|
8558
|
-
validation?: string[] | undefined;
|
|
8559
8558
|
description?: string | undefined;
|
|
8559
|
+
validation?: string[] | undefined;
|
|
8560
8560
|
itemQuestion?: string | undefined;
|
|
8561
8561
|
expand?: boolean | undefined;
|
|
8562
8562
|
}>;
|
|
@@ -8571,21 +8571,21 @@ export declare const actionStepSchemas: ({
|
|
|
8571
8571
|
description: z.ZodOptional<z.ZodString>;
|
|
8572
8572
|
validation: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8573
8573
|
}, "strip", z.ZodTypeAny, {
|
|
8574
|
-
kind: "faq:toggle_item";
|
|
8575
8574
|
state: "open" | "closed" | "toggle";
|
|
8575
|
+
kind: "faq:toggle_item";
|
|
8576
8576
|
itemId?: string | undefined;
|
|
8577
8577
|
title?: string | undefined;
|
|
8578
|
-
validation?: string[] | undefined;
|
|
8579
8578
|
description?: string | undefined;
|
|
8579
|
+
validation?: string[] | undefined;
|
|
8580
8580
|
itemQuestion?: string | undefined;
|
|
8581
8581
|
}, {
|
|
8582
8582
|
kind: "faq:toggle_item";
|
|
8583
8583
|
itemId?: string | undefined;
|
|
8584
8584
|
title?: string | undefined;
|
|
8585
|
-
|
|
8585
|
+
state?: "open" | "closed" | "toggle" | undefined;
|
|
8586
8586
|
description?: string | undefined;
|
|
8587
|
+
validation?: string[] | undefined;
|
|
8587
8588
|
itemQuestion?: string | undefined;
|
|
8588
|
-
state?: "open" | "closed" | "toggle" | undefined;
|
|
8589
8589
|
}>;
|
|
8590
8590
|
} | {
|
|
8591
8591
|
defName: string;
|
|
@@ -8624,15 +8624,15 @@ export declare const actionStepSchemas: ({
|
|
|
8624
8624
|
id: string;
|
|
8625
8625
|
src: string;
|
|
8626
8626
|
width?: number | undefined;
|
|
8627
|
-
alt?: string | undefined;
|
|
8628
8627
|
height?: number | undefined;
|
|
8628
|
+
alt?: string | undefined;
|
|
8629
8629
|
}, {
|
|
8630
8630
|
type: "image" | "video";
|
|
8631
8631
|
id: string;
|
|
8632
8632
|
src: string;
|
|
8633
8633
|
width?: number | undefined;
|
|
8634
|
-
alt?: string | undefined;
|
|
8635
8634
|
height?: number | undefined;
|
|
8635
|
+
alt?: string | undefined;
|
|
8636
8636
|
}>, "many">>;
|
|
8637
8637
|
}, "strip", z.ZodTypeAny, {
|
|
8638
8638
|
type: "markdown";
|
|
@@ -8642,8 +8642,8 @@ export declare const actionStepSchemas: ({
|
|
|
8642
8642
|
id: string;
|
|
8643
8643
|
src: string;
|
|
8644
8644
|
width?: number | undefined;
|
|
8645
|
-
alt?: string | undefined;
|
|
8646
8645
|
height?: number | undefined;
|
|
8646
|
+
alt?: string | undefined;
|
|
8647
8647
|
}[] | undefined;
|
|
8648
8648
|
}, {
|
|
8649
8649
|
type: "markdown";
|
|
@@ -8653,8 +8653,8 @@ export declare const actionStepSchemas: ({
|
|
|
8653
8653
|
id: string;
|
|
8654
8654
|
src: string;
|
|
8655
8655
|
width?: number | undefined;
|
|
8656
|
-
alt?: string | undefined;
|
|
8657
8656
|
height?: number | undefined;
|
|
8657
|
+
alt?: string | undefined;
|
|
8658
8658
|
}[] | undefined;
|
|
8659
8659
|
}>]>;
|
|
8660
8660
|
/** Optional category for grouping */
|
|
@@ -8680,6 +8680,7 @@ export declare const actionStepSchemas: ({
|
|
|
8680
8680
|
}>>;
|
|
8681
8681
|
}, "strip", z.ZodTypeAny, {
|
|
8682
8682
|
question: string;
|
|
8683
|
+
id: string;
|
|
8683
8684
|
answer: string | {
|
|
8684
8685
|
type: "rich";
|
|
8685
8686
|
html: string;
|
|
@@ -8691,11 +8692,10 @@ export declare const actionStepSchemas: ({
|
|
|
8691
8692
|
id: string;
|
|
8692
8693
|
src: string;
|
|
8693
8694
|
width?: number | undefined;
|
|
8694
|
-
alt?: string | undefined;
|
|
8695
8695
|
height?: number | undefined;
|
|
8696
|
+
alt?: string | undefined;
|
|
8696
8697
|
}[] | undefined;
|
|
8697
8698
|
};
|
|
8698
|
-
id: string;
|
|
8699
8699
|
priority?: number | undefined;
|
|
8700
8700
|
category?: string | undefined;
|
|
8701
8701
|
answerStrategy?: {
|
|
@@ -8706,6 +8706,7 @@ export declare const actionStepSchemas: ({
|
|
|
8706
8706
|
} | undefined;
|
|
8707
8707
|
}, {
|
|
8708
8708
|
question: string;
|
|
8709
|
+
id: string;
|
|
8709
8710
|
answer: string | {
|
|
8710
8711
|
type: "rich";
|
|
8711
8712
|
html: string;
|
|
@@ -8717,11 +8718,10 @@ export declare const actionStepSchemas: ({
|
|
|
8717
8718
|
id: string;
|
|
8718
8719
|
src: string;
|
|
8719
8720
|
width?: number | undefined;
|
|
8720
|
-
alt?: string | undefined;
|
|
8721
8721
|
height?: number | undefined;
|
|
8722
|
+
alt?: string | undefined;
|
|
8722
8723
|
}[] | undefined;
|
|
8723
8724
|
};
|
|
8724
|
-
id: string;
|
|
8725
8725
|
priority?: number | undefined;
|
|
8726
8726
|
category?: string | undefined;
|
|
8727
8727
|
answerStrategy?: {
|
|
@@ -9237,6 +9237,7 @@ export declare const actionStepSchemas: ({
|
|
|
9237
9237
|
}, "strip", z.ZodTypeAny, {
|
|
9238
9238
|
config: {
|
|
9239
9239
|
question: string;
|
|
9240
|
+
id: string;
|
|
9240
9241
|
answer: string | {
|
|
9241
9242
|
type: "rich";
|
|
9242
9243
|
html: string;
|
|
@@ -9248,11 +9249,10 @@ export declare const actionStepSchemas: ({
|
|
|
9248
9249
|
id: string;
|
|
9249
9250
|
src: string;
|
|
9250
9251
|
width?: number | undefined;
|
|
9251
|
-
alt?: string | undefined;
|
|
9252
9252
|
height?: number | undefined;
|
|
9253
|
+
alt?: string | undefined;
|
|
9253
9254
|
}[] | undefined;
|
|
9254
9255
|
};
|
|
9255
|
-
id: string;
|
|
9256
9256
|
priority?: number | undefined;
|
|
9257
9257
|
category?: string | undefined;
|
|
9258
9258
|
answerStrategy?: {
|
|
@@ -9264,7 +9264,6 @@ export declare const actionStepSchemas: ({
|
|
|
9264
9264
|
};
|
|
9265
9265
|
kind: "faq:question";
|
|
9266
9266
|
title?: string | undefined;
|
|
9267
|
-
validation?: string[] | undefined;
|
|
9268
9267
|
triggerWhen?: {
|
|
9269
9268
|
type: "rules";
|
|
9270
9269
|
rules: {
|
|
@@ -9346,15 +9345,17 @@ export declare const actionStepSchemas: ({
|
|
|
9346
9345
|
method?: "GET" | "POST" | undefined;
|
|
9347
9346
|
timeoutMs?: number | undefined;
|
|
9348
9347
|
} | null | undefined;
|
|
9348
|
+
description?: string | undefined;
|
|
9349
|
+
validation?: string[] | undefined;
|
|
9349
9350
|
notify?: {
|
|
9350
9351
|
title?: string | undefined;
|
|
9351
9352
|
body?: string | undefined;
|
|
9352
9353
|
icon?: string | undefined;
|
|
9353
9354
|
} | null | undefined;
|
|
9354
|
-
description?: string | undefined;
|
|
9355
9355
|
}, {
|
|
9356
9356
|
config: {
|
|
9357
9357
|
question: string;
|
|
9358
|
+
id: string;
|
|
9358
9359
|
answer: string | {
|
|
9359
9360
|
type: "rich";
|
|
9360
9361
|
html: string;
|
|
@@ -9366,11 +9367,10 @@ export declare const actionStepSchemas: ({
|
|
|
9366
9367
|
id: string;
|
|
9367
9368
|
src: string;
|
|
9368
9369
|
width?: number | undefined;
|
|
9369
|
-
alt?: string | undefined;
|
|
9370
9370
|
height?: number | undefined;
|
|
9371
|
+
alt?: string | undefined;
|
|
9371
9372
|
}[] | undefined;
|
|
9372
9373
|
};
|
|
9373
|
-
id: string;
|
|
9374
9374
|
priority?: number | undefined;
|
|
9375
9375
|
category?: string | undefined;
|
|
9376
9376
|
answerStrategy?: {
|
|
@@ -9382,7 +9382,6 @@ export declare const actionStepSchemas: ({
|
|
|
9382
9382
|
};
|
|
9383
9383
|
kind: "faq:question";
|
|
9384
9384
|
title?: string | undefined;
|
|
9385
|
-
validation?: string[] | undefined;
|
|
9386
9385
|
triggerWhen?: {
|
|
9387
9386
|
type: "rules";
|
|
9388
9387
|
rules: {
|
|
@@ -9464,15 +9463,17 @@ export declare const actionStepSchemas: ({
|
|
|
9464
9463
|
method?: "GET" | "POST" | undefined;
|
|
9465
9464
|
timeoutMs?: number | undefined;
|
|
9466
9465
|
} | null | undefined;
|
|
9466
|
+
description?: string | undefined;
|
|
9467
|
+
validation?: string[] | undefined;
|
|
9467
9468
|
notify?: {
|
|
9468
9469
|
title?: string | undefined;
|
|
9469
9470
|
body?: string | undefined;
|
|
9470
9471
|
icon?: string | undefined;
|
|
9471
9472
|
} | null | undefined;
|
|
9472
|
-
description?: string | undefined;
|
|
9473
9473
|
}>, {
|
|
9474
9474
|
config: {
|
|
9475
9475
|
question: string;
|
|
9476
|
+
id: string;
|
|
9476
9477
|
answer: string | {
|
|
9477
9478
|
type: "rich";
|
|
9478
9479
|
html: string;
|
|
@@ -9484,11 +9485,10 @@ export declare const actionStepSchemas: ({
|
|
|
9484
9485
|
id: string;
|
|
9485
9486
|
src: string;
|
|
9486
9487
|
width?: number | undefined;
|
|
9487
|
-
alt?: string | undefined;
|
|
9488
9488
|
height?: number | undefined;
|
|
9489
|
+
alt?: string | undefined;
|
|
9489
9490
|
}[] | undefined;
|
|
9490
9491
|
};
|
|
9491
|
-
id: string;
|
|
9492
9492
|
priority?: number | undefined;
|
|
9493
9493
|
category?: string | undefined;
|
|
9494
9494
|
answerStrategy?: {
|
|
@@ -9500,7 +9500,6 @@ export declare const actionStepSchemas: ({
|
|
|
9500
9500
|
};
|
|
9501
9501
|
kind: "faq:question";
|
|
9502
9502
|
title?: string | undefined;
|
|
9503
|
-
validation?: string[] | undefined;
|
|
9504
9503
|
triggerWhen?: {
|
|
9505
9504
|
type: "rules";
|
|
9506
9505
|
rules: {
|
|
@@ -9582,15 +9581,17 @@ export declare const actionStepSchemas: ({
|
|
|
9582
9581
|
method?: "GET" | "POST" | undefined;
|
|
9583
9582
|
timeoutMs?: number | undefined;
|
|
9584
9583
|
} | null | undefined;
|
|
9584
|
+
description?: string | undefined;
|
|
9585
|
+
validation?: string[] | undefined;
|
|
9585
9586
|
notify?: {
|
|
9586
9587
|
title?: string | undefined;
|
|
9587
9588
|
body?: string | undefined;
|
|
9588
9589
|
icon?: string | undefined;
|
|
9589
9590
|
} | null | undefined;
|
|
9590
|
-
description?: string | undefined;
|
|
9591
9591
|
}, {
|
|
9592
9592
|
config: {
|
|
9593
9593
|
question: string;
|
|
9594
|
+
id: string;
|
|
9594
9595
|
answer: string | {
|
|
9595
9596
|
type: "rich";
|
|
9596
9597
|
html: string;
|
|
@@ -9602,11 +9603,10 @@ export declare const actionStepSchemas: ({
|
|
|
9602
9603
|
id: string;
|
|
9603
9604
|
src: string;
|
|
9604
9605
|
width?: number | undefined;
|
|
9605
|
-
alt?: string | undefined;
|
|
9606
9606
|
height?: number | undefined;
|
|
9607
|
+
alt?: string | undefined;
|
|
9607
9608
|
}[] | undefined;
|
|
9608
9609
|
};
|
|
9609
|
-
id: string;
|
|
9610
9610
|
priority?: number | undefined;
|
|
9611
9611
|
category?: string | undefined;
|
|
9612
9612
|
answerStrategy?: {
|
|
@@ -9618,7 +9618,6 @@ export declare const actionStepSchemas: ({
|
|
|
9618
9618
|
};
|
|
9619
9619
|
kind: "faq:question";
|
|
9620
9620
|
title?: string | undefined;
|
|
9621
|
-
validation?: string[] | undefined;
|
|
9622
9621
|
triggerWhen?: {
|
|
9623
9622
|
type: "rules";
|
|
9624
9623
|
rules: {
|
|
@@ -9700,12 +9699,13 @@ export declare const actionStepSchemas: ({
|
|
|
9700
9699
|
method?: "GET" | "POST" | undefined;
|
|
9701
9700
|
timeoutMs?: number | undefined;
|
|
9702
9701
|
} | null | undefined;
|
|
9702
|
+
description?: string | undefined;
|
|
9703
|
+
validation?: string[] | undefined;
|
|
9703
9704
|
notify?: {
|
|
9704
9705
|
title?: string | undefined;
|
|
9705
9706
|
body?: string | undefined;
|
|
9706
9707
|
icon?: string | undefined;
|
|
9707
9708
|
} | null | undefined;
|
|
9708
|
-
description?: string | undefined;
|
|
9709
9709
|
}>, "many">>;
|
|
9710
9710
|
itemId: z.ZodOptional<z.ZodString>;
|
|
9711
9711
|
order: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -9729,6 +9729,7 @@ export declare const actionStepSchemas: ({
|
|
|
9729
9729
|
items?: {
|
|
9730
9730
|
config: {
|
|
9731
9731
|
question: string;
|
|
9732
|
+
id: string;
|
|
9732
9733
|
answer: string | {
|
|
9733
9734
|
type: "rich";
|
|
9734
9735
|
html: string;
|
|
@@ -9740,11 +9741,10 @@ export declare const actionStepSchemas: ({
|
|
|
9740
9741
|
id: string;
|
|
9741
9742
|
src: string;
|
|
9742
9743
|
width?: number | undefined;
|
|
9743
|
-
alt?: string | undefined;
|
|
9744
9744
|
height?: number | undefined;
|
|
9745
|
+
alt?: string | undefined;
|
|
9745
9746
|
}[] | undefined;
|
|
9746
9747
|
};
|
|
9747
|
-
id: string;
|
|
9748
9748
|
priority?: number | undefined;
|
|
9749
9749
|
category?: string | undefined;
|
|
9750
9750
|
answerStrategy?: {
|
|
@@ -9756,7 +9756,6 @@ export declare const actionStepSchemas: ({
|
|
|
9756
9756
|
};
|
|
9757
9757
|
kind: "faq:question";
|
|
9758
9758
|
title?: string | undefined;
|
|
9759
|
-
validation?: string[] | undefined;
|
|
9760
9759
|
triggerWhen?: {
|
|
9761
9760
|
type: "rules";
|
|
9762
9761
|
rules: {
|
|
@@ -9838,29 +9837,31 @@ export declare const actionStepSchemas: ({
|
|
|
9838
9837
|
method?: "GET" | "POST" | undefined;
|
|
9839
9838
|
timeoutMs?: number | undefined;
|
|
9840
9839
|
} | null | undefined;
|
|
9840
|
+
description?: string | undefined;
|
|
9841
|
+
validation?: string[] | undefined;
|
|
9841
9842
|
notify?: {
|
|
9842
9843
|
title?: string | undefined;
|
|
9843
9844
|
body?: string | undefined;
|
|
9844
9845
|
icon?: string | undefined;
|
|
9845
9846
|
} | null | undefined;
|
|
9846
|
-
description?: string | undefined;
|
|
9847
9847
|
}[] | undefined;
|
|
9848
9848
|
itemId?: string | undefined;
|
|
9849
9849
|
title?: string | undefined;
|
|
9850
|
-
validation?: string[] | undefined;
|
|
9851
|
-
description?: string | undefined;
|
|
9852
9850
|
position?: "prepend" | "append" | "before" | "after" | undefined;
|
|
9853
|
-
order?: string[] | undefined;
|
|
9854
9851
|
anchorId?: {
|
|
9855
9852
|
selector: string;
|
|
9856
9853
|
route: string | string[];
|
|
9857
9854
|
} | undefined;
|
|
9855
|
+
order?: string[] | undefined;
|
|
9856
|
+
description?: string | undefined;
|
|
9857
|
+
validation?: string[] | undefined;
|
|
9858
9858
|
}, {
|
|
9859
9859
|
operation: "add" | "remove" | "reorder" | "replace";
|
|
9860
9860
|
kind: "faq:update";
|
|
9861
9861
|
items?: {
|
|
9862
9862
|
config: {
|
|
9863
9863
|
question: string;
|
|
9864
|
+
id: string;
|
|
9864
9865
|
answer: string | {
|
|
9865
9866
|
type: "rich";
|
|
9866
9867
|
html: string;
|
|
@@ -9872,11 +9873,10 @@ export declare const actionStepSchemas: ({
|
|
|
9872
9873
|
id: string;
|
|
9873
9874
|
src: string;
|
|
9874
9875
|
width?: number | undefined;
|
|
9875
|
-
alt?: string | undefined;
|
|
9876
9876
|
height?: number | undefined;
|
|
9877
|
+
alt?: string | undefined;
|
|
9877
9878
|
}[] | undefined;
|
|
9878
9879
|
};
|
|
9879
|
-
id: string;
|
|
9880
9880
|
priority?: number | undefined;
|
|
9881
9881
|
category?: string | undefined;
|
|
9882
9882
|
answerStrategy?: {
|
|
@@ -9888,7 +9888,6 @@ export declare const actionStepSchemas: ({
|
|
|
9888
9888
|
};
|
|
9889
9889
|
kind: "faq:question";
|
|
9890
9890
|
title?: string | undefined;
|
|
9891
|
-
validation?: string[] | undefined;
|
|
9892
9891
|
triggerWhen?: {
|
|
9893
9892
|
type: "rules";
|
|
9894
9893
|
rules: {
|
|
@@ -9970,23 +9969,24 @@ export declare const actionStepSchemas: ({
|
|
|
9970
9969
|
method?: "GET" | "POST" | undefined;
|
|
9971
9970
|
timeoutMs?: number | undefined;
|
|
9972
9971
|
} | null | undefined;
|
|
9972
|
+
description?: string | undefined;
|
|
9973
|
+
validation?: string[] | undefined;
|
|
9973
9974
|
notify?: {
|
|
9974
9975
|
title?: string | undefined;
|
|
9975
9976
|
body?: string | undefined;
|
|
9976
9977
|
icon?: string | undefined;
|
|
9977
9978
|
} | null | undefined;
|
|
9978
|
-
description?: string | undefined;
|
|
9979
9979
|
}[] | undefined;
|
|
9980
9980
|
itemId?: string | undefined;
|
|
9981
9981
|
title?: string | undefined;
|
|
9982
|
-
validation?: string[] | undefined;
|
|
9983
|
-
description?: string | undefined;
|
|
9984
9982
|
position?: "prepend" | "append" | "before" | "after" | undefined;
|
|
9985
|
-
order?: string[] | undefined;
|
|
9986
9983
|
anchorId?: {
|
|
9987
9984
|
selector: string;
|
|
9988
9985
|
route: string | string[];
|
|
9989
9986
|
} | undefined;
|
|
9987
|
+
order?: string[] | undefined;
|
|
9988
|
+
description?: string | undefined;
|
|
9989
|
+
validation?: string[] | undefined;
|
|
9990
9990
|
}>;
|
|
9991
9991
|
})[];
|
|
9992
9992
|
/**
|
|
@@ -10039,15 +10039,15 @@ export declare const tileWidgets: {
|
|
|
10039
10039
|
id: string;
|
|
10040
10040
|
src: string;
|
|
10041
10041
|
width?: number | undefined;
|
|
10042
|
-
alt?: string | undefined;
|
|
10043
10042
|
height?: number | undefined;
|
|
10043
|
+
alt?: string | undefined;
|
|
10044
10044
|
}, {
|
|
10045
10045
|
type: "image" | "video";
|
|
10046
10046
|
id: string;
|
|
10047
10047
|
src: string;
|
|
10048
10048
|
width?: number | undefined;
|
|
10049
|
-
alt?: string | undefined;
|
|
10050
10049
|
height?: number | undefined;
|
|
10050
|
+
alt?: string | undefined;
|
|
10051
10051
|
}>, "many">>;
|
|
10052
10052
|
}, "strip", z.ZodTypeAny, {
|
|
10053
10053
|
type: "markdown";
|
|
@@ -10057,8 +10057,8 @@ export declare const tileWidgets: {
|
|
|
10057
10057
|
id: string;
|
|
10058
10058
|
src: string;
|
|
10059
10059
|
width?: number | undefined;
|
|
10060
|
-
alt?: string | undefined;
|
|
10061
10060
|
height?: number | undefined;
|
|
10061
|
+
alt?: string | undefined;
|
|
10062
10062
|
}[] | undefined;
|
|
10063
10063
|
}, {
|
|
10064
10064
|
type: "markdown";
|
|
@@ -10068,8 +10068,8 @@ export declare const tileWidgets: {
|
|
|
10068
10068
|
id: string;
|
|
10069
10069
|
src: string;
|
|
10070
10070
|
width?: number | undefined;
|
|
10071
|
-
alt?: string | undefined;
|
|
10072
10071
|
height?: number | undefined;
|
|
10072
|
+
alt?: string | undefined;
|
|
10073
10073
|
}[] | undefined;
|
|
10074
10074
|
}>]>;
|
|
10075
10075
|
/** Optional category for grouping */
|
|
@@ -10095,6 +10095,7 @@ export declare const tileWidgets: {
|
|
|
10095
10095
|
}>>;
|
|
10096
10096
|
}, "strip", z.ZodTypeAny, {
|
|
10097
10097
|
question: string;
|
|
10098
|
+
id: string;
|
|
10098
10099
|
answer: string | {
|
|
10099
10100
|
type: "rich";
|
|
10100
10101
|
html: string;
|
|
@@ -10106,11 +10107,10 @@ export declare const tileWidgets: {
|
|
|
10106
10107
|
id: string;
|
|
10107
10108
|
src: string;
|
|
10108
10109
|
width?: number | undefined;
|
|
10109
|
-
alt?: string | undefined;
|
|
10110
10110
|
height?: number | undefined;
|
|
10111
|
+
alt?: string | undefined;
|
|
10111
10112
|
}[] | undefined;
|
|
10112
10113
|
};
|
|
10113
|
-
id: string;
|
|
10114
10114
|
priority?: number | undefined;
|
|
10115
10115
|
category?: string | undefined;
|
|
10116
10116
|
answerStrategy?: {
|
|
@@ -10121,6 +10121,7 @@ export declare const tileWidgets: {
|
|
|
10121
10121
|
} | undefined;
|
|
10122
10122
|
}, {
|
|
10123
10123
|
question: string;
|
|
10124
|
+
id: string;
|
|
10124
10125
|
answer: string | {
|
|
10125
10126
|
type: "rich";
|
|
10126
10127
|
html: string;
|
|
@@ -10132,11 +10133,10 @@ export declare const tileWidgets: {
|
|
|
10132
10133
|
id: string;
|
|
10133
10134
|
src: string;
|
|
10134
10135
|
width?: number | undefined;
|
|
10135
|
-
alt?: string | undefined;
|
|
10136
10136
|
height?: number | undefined;
|
|
10137
|
+
alt?: string | undefined;
|
|
10137
10138
|
}[] | undefined;
|
|
10138
10139
|
};
|
|
10139
|
-
id: string;
|
|
10140
10140
|
priority?: number | undefined;
|
|
10141
10141
|
category?: string | undefined;
|
|
10142
10142
|
answerStrategy?: {
|
|
@@ -10652,6 +10652,7 @@ export declare const tileWidgets: {
|
|
|
10652
10652
|
}, "strip", z.ZodTypeAny, {
|
|
10653
10653
|
config: {
|
|
10654
10654
|
question: string;
|
|
10655
|
+
id: string;
|
|
10655
10656
|
answer: string | {
|
|
10656
10657
|
type: "rich";
|
|
10657
10658
|
html: string;
|
|
@@ -10663,11 +10664,10 @@ export declare const tileWidgets: {
|
|
|
10663
10664
|
id: string;
|
|
10664
10665
|
src: string;
|
|
10665
10666
|
width?: number | undefined;
|
|
10666
|
-
alt?: string | undefined;
|
|
10667
10667
|
height?: number | undefined;
|
|
10668
|
+
alt?: string | undefined;
|
|
10668
10669
|
}[] | undefined;
|
|
10669
10670
|
};
|
|
10670
|
-
id: string;
|
|
10671
10671
|
priority?: number | undefined;
|
|
10672
10672
|
category?: string | undefined;
|
|
10673
10673
|
answerStrategy?: {
|
|
@@ -10679,7 +10679,6 @@ export declare const tileWidgets: {
|
|
|
10679
10679
|
};
|
|
10680
10680
|
kind: "faq:question";
|
|
10681
10681
|
title?: string | undefined;
|
|
10682
|
-
validation?: string[] | undefined;
|
|
10683
10682
|
triggerWhen?: {
|
|
10684
10683
|
type: "rules";
|
|
10685
10684
|
rules: {
|
|
@@ -10761,15 +10760,17 @@ export declare const tileWidgets: {
|
|
|
10761
10760
|
method?: "GET" | "POST" | undefined;
|
|
10762
10761
|
timeoutMs?: number | undefined;
|
|
10763
10762
|
} | null | undefined;
|
|
10763
|
+
description?: string | undefined;
|
|
10764
|
+
validation?: string[] | undefined;
|
|
10764
10765
|
notify?: {
|
|
10765
10766
|
title?: string | undefined;
|
|
10766
10767
|
body?: string | undefined;
|
|
10767
10768
|
icon?: string | undefined;
|
|
10768
10769
|
} | null | undefined;
|
|
10769
|
-
description?: string | undefined;
|
|
10770
10770
|
}, {
|
|
10771
10771
|
config: {
|
|
10772
10772
|
question: string;
|
|
10773
|
+
id: string;
|
|
10773
10774
|
answer: string | {
|
|
10774
10775
|
type: "rich";
|
|
10775
10776
|
html: string;
|
|
@@ -10781,11 +10782,10 @@ export declare const tileWidgets: {
|
|
|
10781
10782
|
id: string;
|
|
10782
10783
|
src: string;
|
|
10783
10784
|
width?: number | undefined;
|
|
10784
|
-
alt?: string | undefined;
|
|
10785
10785
|
height?: number | undefined;
|
|
10786
|
+
alt?: string | undefined;
|
|
10786
10787
|
}[] | undefined;
|
|
10787
10788
|
};
|
|
10788
|
-
id: string;
|
|
10789
10789
|
priority?: number | undefined;
|
|
10790
10790
|
category?: string | undefined;
|
|
10791
10791
|
answerStrategy?: {
|
|
@@ -10797,7 +10797,6 @@ export declare const tileWidgets: {
|
|
|
10797
10797
|
};
|
|
10798
10798
|
kind: "faq:question";
|
|
10799
10799
|
title?: string | undefined;
|
|
10800
|
-
validation?: string[] | undefined;
|
|
10801
10800
|
triggerWhen?: {
|
|
10802
10801
|
type: "rules";
|
|
10803
10802
|
rules: {
|
|
@@ -10879,15 +10878,17 @@ export declare const tileWidgets: {
|
|
|
10879
10878
|
method?: "GET" | "POST" | undefined;
|
|
10880
10879
|
timeoutMs?: number | undefined;
|
|
10881
10880
|
} | null | undefined;
|
|
10881
|
+
description?: string | undefined;
|
|
10882
|
+
validation?: string[] | undefined;
|
|
10882
10883
|
notify?: {
|
|
10883
10884
|
title?: string | undefined;
|
|
10884
10885
|
body?: string | undefined;
|
|
10885
10886
|
icon?: string | undefined;
|
|
10886
10887
|
} | null | undefined;
|
|
10887
|
-
description?: string | undefined;
|
|
10888
10888
|
}>, {
|
|
10889
10889
|
config: {
|
|
10890
10890
|
question: string;
|
|
10891
|
+
id: string;
|
|
10891
10892
|
answer: string | {
|
|
10892
10893
|
type: "rich";
|
|
10893
10894
|
html: string;
|
|
@@ -10899,11 +10900,10 @@ export declare const tileWidgets: {
|
|
|
10899
10900
|
id: string;
|
|
10900
10901
|
src: string;
|
|
10901
10902
|
width?: number | undefined;
|
|
10902
|
-
alt?: string | undefined;
|
|
10903
10903
|
height?: number | undefined;
|
|
10904
|
+
alt?: string | undefined;
|
|
10904
10905
|
}[] | undefined;
|
|
10905
10906
|
};
|
|
10906
|
-
id: string;
|
|
10907
10907
|
priority?: number | undefined;
|
|
10908
10908
|
category?: string | undefined;
|
|
10909
10909
|
answerStrategy?: {
|
|
@@ -10915,7 +10915,6 @@ export declare const tileWidgets: {
|
|
|
10915
10915
|
};
|
|
10916
10916
|
kind: "faq:question";
|
|
10917
10917
|
title?: string | undefined;
|
|
10918
|
-
validation?: string[] | undefined;
|
|
10919
10918
|
triggerWhen?: {
|
|
10920
10919
|
type: "rules";
|
|
10921
10920
|
rules: {
|
|
@@ -10997,15 +10996,17 @@ export declare const tileWidgets: {
|
|
|
10997
10996
|
method?: "GET" | "POST" | undefined;
|
|
10998
10997
|
timeoutMs?: number | undefined;
|
|
10999
10998
|
} | null | undefined;
|
|
10999
|
+
description?: string | undefined;
|
|
11000
|
+
validation?: string[] | undefined;
|
|
11000
11001
|
notify?: {
|
|
11001
11002
|
title?: string | undefined;
|
|
11002
11003
|
body?: string | undefined;
|
|
11003
11004
|
icon?: string | undefined;
|
|
11004
11005
|
} | null | undefined;
|
|
11005
|
-
description?: string | undefined;
|
|
11006
11006
|
}, {
|
|
11007
11007
|
config: {
|
|
11008
11008
|
question: string;
|
|
11009
|
+
id: string;
|
|
11009
11010
|
answer: string | {
|
|
11010
11011
|
type: "rich";
|
|
11011
11012
|
html: string;
|
|
@@ -11017,11 +11018,10 @@ export declare const tileWidgets: {
|
|
|
11017
11018
|
id: string;
|
|
11018
11019
|
src: string;
|
|
11019
11020
|
width?: number | undefined;
|
|
11020
|
-
alt?: string | undefined;
|
|
11021
11021
|
height?: number | undefined;
|
|
11022
|
+
alt?: string | undefined;
|
|
11022
11023
|
}[] | undefined;
|
|
11023
11024
|
};
|
|
11024
|
-
id: string;
|
|
11025
11025
|
priority?: number | undefined;
|
|
11026
11026
|
category?: string | undefined;
|
|
11027
11027
|
answerStrategy?: {
|
|
@@ -11033,7 +11033,6 @@ export declare const tileWidgets: {
|
|
|
11033
11033
|
};
|
|
11034
11034
|
kind: "faq:question";
|
|
11035
11035
|
title?: string | undefined;
|
|
11036
|
-
validation?: string[] | undefined;
|
|
11037
11036
|
triggerWhen?: {
|
|
11038
11037
|
type: "rules";
|
|
11039
11038
|
rules: {
|
|
@@ -11115,12 +11114,13 @@ export declare const tileWidgets: {
|
|
|
11115
11114
|
method?: "GET" | "POST" | undefined;
|
|
11116
11115
|
timeoutMs?: number | undefined;
|
|
11117
11116
|
} | null | undefined;
|
|
11117
|
+
description?: string | undefined;
|
|
11118
|
+
validation?: string[] | undefined;
|
|
11118
11119
|
notify?: {
|
|
11119
11120
|
title?: string | undefined;
|
|
11120
11121
|
body?: string | undefined;
|
|
11121
11122
|
icon?: string | undefined;
|
|
11122
11123
|
} | null | undefined;
|
|
11123
|
-
description?: string | undefined;
|
|
11124
11124
|
}>, "many">>;
|
|
11125
11125
|
/** Feedback widget configuration */
|
|
11126
11126
|
feedback: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
@@ -11663,15 +11663,15 @@ export declare const tileWidgets: {
|
|
|
11663
11663
|
id: string;
|
|
11664
11664
|
src: string;
|
|
11665
11665
|
width?: number | undefined;
|
|
11666
|
-
alt?: string | undefined;
|
|
11667
11666
|
height?: number | undefined;
|
|
11667
|
+
alt?: string | undefined;
|
|
11668
11668
|
}, {
|
|
11669
11669
|
type: "image" | "video";
|
|
11670
11670
|
id: string;
|
|
11671
11671
|
src: string;
|
|
11672
11672
|
width?: number | undefined;
|
|
11673
|
-
alt?: string | undefined;
|
|
11674
11673
|
height?: number | undefined;
|
|
11674
|
+
alt?: string | undefined;
|
|
11675
11675
|
}>, "many">>;
|
|
11676
11676
|
}, "strip", z.ZodTypeAny, {
|
|
11677
11677
|
type: "markdown";
|
|
@@ -11681,8 +11681,8 @@ export declare const tileWidgets: {
|
|
|
11681
11681
|
id: string;
|
|
11682
11682
|
src: string;
|
|
11683
11683
|
width?: number | undefined;
|
|
11684
|
-
alt?: string | undefined;
|
|
11685
11684
|
height?: number | undefined;
|
|
11685
|
+
alt?: string | undefined;
|
|
11686
11686
|
}[] | undefined;
|
|
11687
11687
|
}, {
|
|
11688
11688
|
type: "markdown";
|
|
@@ -11692,8 +11692,8 @@ export declare const tileWidgets: {
|
|
|
11692
11692
|
id: string;
|
|
11693
11693
|
src: string;
|
|
11694
11694
|
width?: number | undefined;
|
|
11695
|
-
alt?: string | undefined;
|
|
11696
11695
|
height?: number | undefined;
|
|
11696
|
+
alt?: string | undefined;
|
|
11697
11697
|
}[] | undefined;
|
|
11698
11698
|
}>]>;
|
|
11699
11699
|
/** Optional category for grouping */
|
|
@@ -11719,6 +11719,7 @@ export declare const tileWidgets: {
|
|
|
11719
11719
|
}>>;
|
|
11720
11720
|
}, "strip", z.ZodTypeAny, {
|
|
11721
11721
|
question: string;
|
|
11722
|
+
id: string;
|
|
11722
11723
|
answer: string | {
|
|
11723
11724
|
type: "rich";
|
|
11724
11725
|
html: string;
|
|
@@ -11730,11 +11731,10 @@ export declare const tileWidgets: {
|
|
|
11730
11731
|
id: string;
|
|
11731
11732
|
src: string;
|
|
11732
11733
|
width?: number | undefined;
|
|
11733
|
-
alt?: string | undefined;
|
|
11734
11734
|
height?: number | undefined;
|
|
11735
|
+
alt?: string | undefined;
|
|
11735
11736
|
}[] | undefined;
|
|
11736
11737
|
};
|
|
11737
|
-
id: string;
|
|
11738
11738
|
priority?: number | undefined;
|
|
11739
11739
|
category?: string | undefined;
|
|
11740
11740
|
answerStrategy?: {
|
|
@@ -11745,6 +11745,7 @@ export declare const tileWidgets: {
|
|
|
11745
11745
|
} | undefined;
|
|
11746
11746
|
}, {
|
|
11747
11747
|
question: string;
|
|
11748
|
+
id: string;
|
|
11748
11749
|
answer: string | {
|
|
11749
11750
|
type: "rich";
|
|
11750
11751
|
html: string;
|
|
@@ -11756,11 +11757,10 @@ export declare const tileWidgets: {
|
|
|
11756
11757
|
id: string;
|
|
11757
11758
|
src: string;
|
|
11758
11759
|
width?: number | undefined;
|
|
11759
|
-
alt?: string | undefined;
|
|
11760
11760
|
height?: number | undefined;
|
|
11761
|
+
alt?: string | undefined;
|
|
11761
11762
|
}[] | undefined;
|
|
11762
11763
|
};
|
|
11763
|
-
id: string;
|
|
11764
11764
|
priority?: number | undefined;
|
|
11765
11765
|
category?: string | undefined;
|
|
11766
11766
|
answerStrategy?: {
|
|
@@ -12276,6 +12276,7 @@ export declare const tileWidgets: {
|
|
|
12276
12276
|
}, "strip", z.ZodTypeAny, {
|
|
12277
12277
|
config: {
|
|
12278
12278
|
question: string;
|
|
12279
|
+
id: string;
|
|
12279
12280
|
answer: string | {
|
|
12280
12281
|
type: "rich";
|
|
12281
12282
|
html: string;
|
|
@@ -12287,11 +12288,10 @@ export declare const tileWidgets: {
|
|
|
12287
12288
|
id: string;
|
|
12288
12289
|
src: string;
|
|
12289
12290
|
width?: number | undefined;
|
|
12290
|
-
alt?: string | undefined;
|
|
12291
12291
|
height?: number | undefined;
|
|
12292
|
+
alt?: string | undefined;
|
|
12292
12293
|
}[] | undefined;
|
|
12293
12294
|
};
|
|
12294
|
-
id: string;
|
|
12295
12295
|
priority?: number | undefined;
|
|
12296
12296
|
category?: string | undefined;
|
|
12297
12297
|
answerStrategy?: {
|
|
@@ -12303,7 +12303,6 @@ export declare const tileWidgets: {
|
|
|
12303
12303
|
};
|
|
12304
12304
|
kind: "faq:question";
|
|
12305
12305
|
title?: string | undefined;
|
|
12306
|
-
validation?: string[] | undefined;
|
|
12307
12306
|
triggerWhen?: {
|
|
12308
12307
|
type: "rules";
|
|
12309
12308
|
rules: {
|
|
@@ -12385,15 +12384,17 @@ export declare const tileWidgets: {
|
|
|
12385
12384
|
method?: "GET" | "POST" | undefined;
|
|
12386
12385
|
timeoutMs?: number | undefined;
|
|
12387
12386
|
} | null | undefined;
|
|
12387
|
+
description?: string | undefined;
|
|
12388
|
+
validation?: string[] | undefined;
|
|
12388
12389
|
notify?: {
|
|
12389
12390
|
title?: string | undefined;
|
|
12390
12391
|
body?: string | undefined;
|
|
12391
12392
|
icon?: string | undefined;
|
|
12392
12393
|
} | null | undefined;
|
|
12393
|
-
description?: string | undefined;
|
|
12394
12394
|
}, {
|
|
12395
12395
|
config: {
|
|
12396
12396
|
question: string;
|
|
12397
|
+
id: string;
|
|
12397
12398
|
answer: string | {
|
|
12398
12399
|
type: "rich";
|
|
12399
12400
|
html: string;
|
|
@@ -12405,11 +12406,10 @@ export declare const tileWidgets: {
|
|
|
12405
12406
|
id: string;
|
|
12406
12407
|
src: string;
|
|
12407
12408
|
width?: number | undefined;
|
|
12408
|
-
alt?: string | undefined;
|
|
12409
12409
|
height?: number | undefined;
|
|
12410
|
+
alt?: string | undefined;
|
|
12410
12411
|
}[] | undefined;
|
|
12411
12412
|
};
|
|
12412
|
-
id: string;
|
|
12413
12413
|
priority?: number | undefined;
|
|
12414
12414
|
category?: string | undefined;
|
|
12415
12415
|
answerStrategy?: {
|
|
@@ -12421,7 +12421,6 @@ export declare const tileWidgets: {
|
|
|
12421
12421
|
};
|
|
12422
12422
|
kind: "faq:question";
|
|
12423
12423
|
title?: string | undefined;
|
|
12424
|
-
validation?: string[] | undefined;
|
|
12425
12424
|
triggerWhen?: {
|
|
12426
12425
|
type: "rules";
|
|
12427
12426
|
rules: {
|
|
@@ -12503,15 +12502,17 @@ export declare const tileWidgets: {
|
|
|
12503
12502
|
method?: "GET" | "POST" | undefined;
|
|
12504
12503
|
timeoutMs?: number | undefined;
|
|
12505
12504
|
} | null | undefined;
|
|
12505
|
+
description?: string | undefined;
|
|
12506
|
+
validation?: string[] | undefined;
|
|
12506
12507
|
notify?: {
|
|
12507
12508
|
title?: string | undefined;
|
|
12508
12509
|
body?: string | undefined;
|
|
12509
12510
|
icon?: string | undefined;
|
|
12510
12511
|
} | null | undefined;
|
|
12511
|
-
description?: string | undefined;
|
|
12512
12512
|
}>, {
|
|
12513
12513
|
config: {
|
|
12514
12514
|
question: string;
|
|
12515
|
+
id: string;
|
|
12515
12516
|
answer: string | {
|
|
12516
12517
|
type: "rich";
|
|
12517
12518
|
html: string;
|
|
@@ -12523,11 +12524,10 @@ export declare const tileWidgets: {
|
|
|
12523
12524
|
id: string;
|
|
12524
12525
|
src: string;
|
|
12525
12526
|
width?: number | undefined;
|
|
12526
|
-
alt?: string | undefined;
|
|
12527
12527
|
height?: number | undefined;
|
|
12528
|
+
alt?: string | undefined;
|
|
12528
12529
|
}[] | undefined;
|
|
12529
12530
|
};
|
|
12530
|
-
id: string;
|
|
12531
12531
|
priority?: number | undefined;
|
|
12532
12532
|
category?: string | undefined;
|
|
12533
12533
|
answerStrategy?: {
|
|
@@ -12539,7 +12539,6 @@ export declare const tileWidgets: {
|
|
|
12539
12539
|
};
|
|
12540
12540
|
kind: "faq:question";
|
|
12541
12541
|
title?: string | undefined;
|
|
12542
|
-
validation?: string[] | undefined;
|
|
12543
12542
|
triggerWhen?: {
|
|
12544
12543
|
type: "rules";
|
|
12545
12544
|
rules: {
|
|
@@ -12621,15 +12620,17 @@ export declare const tileWidgets: {
|
|
|
12621
12620
|
method?: "GET" | "POST" | undefined;
|
|
12622
12621
|
timeoutMs?: number | undefined;
|
|
12623
12622
|
} | null | undefined;
|
|
12623
|
+
description?: string | undefined;
|
|
12624
|
+
validation?: string[] | undefined;
|
|
12624
12625
|
notify?: {
|
|
12625
12626
|
title?: string | undefined;
|
|
12626
12627
|
body?: string | undefined;
|
|
12627
12628
|
icon?: string | undefined;
|
|
12628
12629
|
} | null | undefined;
|
|
12629
|
-
description?: string | undefined;
|
|
12630
12630
|
}, {
|
|
12631
12631
|
config: {
|
|
12632
12632
|
question: string;
|
|
12633
|
+
id: string;
|
|
12633
12634
|
answer: string | {
|
|
12634
12635
|
type: "rich";
|
|
12635
12636
|
html: string;
|
|
@@ -12641,11 +12642,10 @@ export declare const tileWidgets: {
|
|
|
12641
12642
|
id: string;
|
|
12642
12643
|
src: string;
|
|
12643
12644
|
width?: number | undefined;
|
|
12644
|
-
alt?: string | undefined;
|
|
12645
12645
|
height?: number | undefined;
|
|
12646
|
+
alt?: string | undefined;
|
|
12646
12647
|
}[] | undefined;
|
|
12647
12648
|
};
|
|
12648
|
-
id: string;
|
|
12649
12649
|
priority?: number | undefined;
|
|
12650
12650
|
category?: string | undefined;
|
|
12651
12651
|
answerStrategy?: {
|
|
@@ -12657,7 +12657,6 @@ export declare const tileWidgets: {
|
|
|
12657
12657
|
};
|
|
12658
12658
|
kind: "faq:question";
|
|
12659
12659
|
title?: string | undefined;
|
|
12660
|
-
validation?: string[] | undefined;
|
|
12661
12660
|
triggerWhen?: {
|
|
12662
12661
|
type: "rules";
|
|
12663
12662
|
rules: {
|
|
@@ -12739,12 +12738,13 @@ export declare const tileWidgets: {
|
|
|
12739
12738
|
method?: "GET" | "POST" | undefined;
|
|
12740
12739
|
timeoutMs?: number | undefined;
|
|
12741
12740
|
} | null | undefined;
|
|
12741
|
+
description?: string | undefined;
|
|
12742
|
+
validation?: string[] | undefined;
|
|
12742
12743
|
notify?: {
|
|
12743
12744
|
title?: string | undefined;
|
|
12744
12745
|
body?: string | undefined;
|
|
12745
12746
|
icon?: string | undefined;
|
|
12746
12747
|
} | null | undefined;
|
|
12747
|
-
description?: string | undefined;
|
|
12748
12748
|
}>>, "many">;
|
|
12749
12749
|
position: z.ZodOptional<z.ZodEnum<["prepend", "append"]>>;
|
|
12750
12750
|
once: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12752,6 +12752,7 @@ export declare const tileWidgets: {
|
|
|
12752
12752
|
items: {
|
|
12753
12753
|
config: {
|
|
12754
12754
|
question: string;
|
|
12755
|
+
id: string;
|
|
12755
12756
|
answer: string | {
|
|
12756
12757
|
type: "rich";
|
|
12757
12758
|
html: string;
|
|
@@ -12763,11 +12764,10 @@ export declare const tileWidgets: {
|
|
|
12763
12764
|
id: string;
|
|
12764
12765
|
src: string;
|
|
12765
12766
|
width?: number | undefined;
|
|
12766
|
-
alt?: string | undefined;
|
|
12767
12767
|
height?: number | undefined;
|
|
12768
|
+
alt?: string | undefined;
|
|
12768
12769
|
}[] | undefined;
|
|
12769
12770
|
};
|
|
12770
|
-
id: string;
|
|
12771
12771
|
priority?: number | undefined;
|
|
12772
12772
|
category?: string | undefined;
|
|
12773
12773
|
answerStrategy?: {
|
|
@@ -12779,7 +12779,6 @@ export declare const tileWidgets: {
|
|
|
12779
12779
|
};
|
|
12780
12780
|
kind: "faq:question";
|
|
12781
12781
|
title?: string | undefined;
|
|
12782
|
-
validation?: string[] | undefined;
|
|
12783
12782
|
triggerWhen?: {
|
|
12784
12783
|
type: "rules";
|
|
12785
12784
|
rules: {
|
|
@@ -12861,12 +12860,13 @@ export declare const tileWidgets: {
|
|
|
12861
12860
|
method?: "GET" | "POST" | undefined;
|
|
12862
12861
|
timeoutMs?: number | undefined;
|
|
12863
12862
|
} | null | undefined;
|
|
12863
|
+
description?: string | undefined;
|
|
12864
|
+
validation?: string[] | undefined;
|
|
12864
12865
|
notify?: {
|
|
12865
12866
|
title?: string | undefined;
|
|
12866
12867
|
body?: string | undefined;
|
|
12867
12868
|
icon?: string | undefined;
|
|
12868
12869
|
} | null | undefined;
|
|
12869
|
-
description?: string | undefined;
|
|
12870
12870
|
}[];
|
|
12871
12871
|
trigger: {
|
|
12872
12872
|
type: "rules";
|
|
@@ -12955,6 +12955,7 @@ export declare const tileWidgets: {
|
|
|
12955
12955
|
items: {
|
|
12956
12956
|
config: {
|
|
12957
12957
|
question: string;
|
|
12958
|
+
id: string;
|
|
12958
12959
|
answer: string | {
|
|
12959
12960
|
type: "rich";
|
|
12960
12961
|
html: string;
|
|
@@ -12966,11 +12967,10 @@ export declare const tileWidgets: {
|
|
|
12966
12967
|
id: string;
|
|
12967
12968
|
src: string;
|
|
12968
12969
|
width?: number | undefined;
|
|
12969
|
-
alt?: string | undefined;
|
|
12970
12970
|
height?: number | undefined;
|
|
12971
|
+
alt?: string | undefined;
|
|
12971
12972
|
}[] | undefined;
|
|
12972
12973
|
};
|
|
12973
|
-
id: string;
|
|
12974
12974
|
priority?: number | undefined;
|
|
12975
12975
|
category?: string | undefined;
|
|
12976
12976
|
answerStrategy?: {
|
|
@@ -12982,7 +12982,6 @@ export declare const tileWidgets: {
|
|
|
12982
12982
|
};
|
|
12983
12983
|
kind: "faq:question";
|
|
12984
12984
|
title?: string | undefined;
|
|
12985
|
-
validation?: string[] | undefined;
|
|
12986
12985
|
triggerWhen?: {
|
|
12987
12986
|
type: "rules";
|
|
12988
12987
|
rules: {
|
|
@@ -13064,12 +13063,13 @@ export declare const tileWidgets: {
|
|
|
13064
13063
|
method?: "GET" | "POST" | undefined;
|
|
13065
13064
|
timeoutMs?: number | undefined;
|
|
13066
13065
|
} | null | undefined;
|
|
13066
|
+
description?: string | undefined;
|
|
13067
|
+
validation?: string[] | undefined;
|
|
13067
13068
|
notify?: {
|
|
13068
13069
|
title?: string | undefined;
|
|
13069
13070
|
body?: string | undefined;
|
|
13070
13071
|
icon?: string | undefined;
|
|
13071
13072
|
} | null | undefined;
|
|
13072
|
-
description?: string | undefined;
|
|
13073
13073
|
}[];
|
|
13074
13074
|
trigger: {
|
|
13075
13075
|
type: "rules";
|
|
@@ -13162,6 +13162,7 @@ export declare const tileWidgets: {
|
|
|
13162
13162
|
actions: {
|
|
13163
13163
|
config: {
|
|
13164
13164
|
question: string;
|
|
13165
|
+
id: string;
|
|
13165
13166
|
answer: string | {
|
|
13166
13167
|
type: "rich";
|
|
13167
13168
|
html: string;
|
|
@@ -13173,11 +13174,10 @@ export declare const tileWidgets: {
|
|
|
13173
13174
|
id: string;
|
|
13174
13175
|
src: string;
|
|
13175
13176
|
width?: number | undefined;
|
|
13176
|
-
alt?: string | undefined;
|
|
13177
13177
|
height?: number | undefined;
|
|
13178
|
+
alt?: string | undefined;
|
|
13178
13179
|
}[] | undefined;
|
|
13179
13180
|
};
|
|
13180
|
-
id: string;
|
|
13181
13181
|
priority?: number | undefined;
|
|
13182
13182
|
category?: string | undefined;
|
|
13183
13183
|
answerStrategy?: {
|
|
@@ -13189,7 +13189,6 @@ export declare const tileWidgets: {
|
|
|
13189
13189
|
};
|
|
13190
13190
|
kind: "faq:question";
|
|
13191
13191
|
title?: string | undefined;
|
|
13192
|
-
validation?: string[] | undefined;
|
|
13193
13192
|
triggerWhen?: {
|
|
13194
13193
|
type: "rules";
|
|
13195
13194
|
rules: {
|
|
@@ -13271,12 +13270,13 @@ export declare const tileWidgets: {
|
|
|
13271
13270
|
method?: "GET" | "POST" | undefined;
|
|
13272
13271
|
timeoutMs?: number | undefined;
|
|
13273
13272
|
} | null | undefined;
|
|
13273
|
+
description?: string | undefined;
|
|
13274
|
+
validation?: string[] | undefined;
|
|
13274
13275
|
notify?: {
|
|
13275
13276
|
title?: string | undefined;
|
|
13276
13277
|
body?: string | undefined;
|
|
13277
13278
|
icon?: string | undefined;
|
|
13278
13279
|
} | null | undefined;
|
|
13279
|
-
description?: string | undefined;
|
|
13280
13280
|
}[];
|
|
13281
13281
|
title?: string | undefined;
|
|
13282
13282
|
feedback?: boolean | {
|
|
@@ -13291,6 +13291,7 @@ export declare const tileWidgets: {
|
|
|
13291
13291
|
items: {
|
|
13292
13292
|
config: {
|
|
13293
13293
|
question: string;
|
|
13294
|
+
id: string;
|
|
13294
13295
|
answer: string | {
|
|
13295
13296
|
type: "rich";
|
|
13296
13297
|
html: string;
|
|
@@ -13302,11 +13303,10 @@ export declare const tileWidgets: {
|
|
|
13302
13303
|
id: string;
|
|
13303
13304
|
src: string;
|
|
13304
13305
|
width?: number | undefined;
|
|
13305
|
-
alt?: string | undefined;
|
|
13306
13306
|
height?: number | undefined;
|
|
13307
|
+
alt?: string | undefined;
|
|
13307
13308
|
}[] | undefined;
|
|
13308
13309
|
};
|
|
13309
|
-
id: string;
|
|
13310
13310
|
priority?: number | undefined;
|
|
13311
13311
|
category?: string | undefined;
|
|
13312
13312
|
answerStrategy?: {
|
|
@@ -13318,7 +13318,6 @@ export declare const tileWidgets: {
|
|
|
13318
13318
|
};
|
|
13319
13319
|
kind: "faq:question";
|
|
13320
13320
|
title?: string | undefined;
|
|
13321
|
-
validation?: string[] | undefined;
|
|
13322
13321
|
triggerWhen?: {
|
|
13323
13322
|
type: "rules";
|
|
13324
13323
|
rules: {
|
|
@@ -13400,12 +13399,13 @@ export declare const tileWidgets: {
|
|
|
13400
13399
|
method?: "GET" | "POST" | undefined;
|
|
13401
13400
|
timeoutMs?: number | undefined;
|
|
13402
13401
|
} | null | undefined;
|
|
13402
|
+
description?: string | undefined;
|
|
13403
|
+
validation?: string[] | undefined;
|
|
13403
13404
|
notify?: {
|
|
13404
13405
|
title?: string | undefined;
|
|
13405
13406
|
body?: string | undefined;
|
|
13406
13407
|
icon?: string | undefined;
|
|
13407
13408
|
} | null | undefined;
|
|
13408
|
-
description?: string | undefined;
|
|
13409
13409
|
}[];
|
|
13410
13410
|
trigger: {
|
|
13411
13411
|
type: "rules";
|
|
@@ -13499,6 +13499,7 @@ export declare const tileWidgets: {
|
|
|
13499
13499
|
actions?: {
|
|
13500
13500
|
config: {
|
|
13501
13501
|
question: string;
|
|
13502
|
+
id: string;
|
|
13502
13503
|
answer: string | {
|
|
13503
13504
|
type: "rich";
|
|
13504
13505
|
html: string;
|
|
@@ -13510,11 +13511,10 @@ export declare const tileWidgets: {
|
|
|
13510
13511
|
id: string;
|
|
13511
13512
|
src: string;
|
|
13512
13513
|
width?: number | undefined;
|
|
13513
|
-
alt?: string | undefined;
|
|
13514
13514
|
height?: number | undefined;
|
|
13515
|
+
alt?: string | undefined;
|
|
13515
13516
|
}[] | undefined;
|
|
13516
13517
|
};
|
|
13517
|
-
id: string;
|
|
13518
13518
|
priority?: number | undefined;
|
|
13519
13519
|
category?: string | undefined;
|
|
13520
13520
|
answerStrategy?: {
|
|
@@ -13526,7 +13526,6 @@ export declare const tileWidgets: {
|
|
|
13526
13526
|
};
|
|
13527
13527
|
kind: "faq:question";
|
|
13528
13528
|
title?: string | undefined;
|
|
13529
|
-
validation?: string[] | undefined;
|
|
13530
13529
|
triggerWhen?: {
|
|
13531
13530
|
type: "rules";
|
|
13532
13531
|
rules: {
|
|
@@ -13608,12 +13607,13 @@ export declare const tileWidgets: {
|
|
|
13608
13607
|
method?: "GET" | "POST" | undefined;
|
|
13609
13608
|
timeoutMs?: number | undefined;
|
|
13610
13609
|
} | null | undefined;
|
|
13610
|
+
description?: string | undefined;
|
|
13611
|
+
validation?: string[] | undefined;
|
|
13611
13612
|
notify?: {
|
|
13612
13613
|
title?: string | undefined;
|
|
13613
13614
|
body?: string | undefined;
|
|
13614
13615
|
icon?: string | undefined;
|
|
13615
13616
|
} | null | undefined;
|
|
13616
|
-
description?: string | undefined;
|
|
13617
13617
|
}[] | undefined;
|
|
13618
13618
|
feedback?: boolean | {
|
|
13619
13619
|
style: "thumbs" | "rating";
|
|
@@ -13627,6 +13627,7 @@ export declare const tileWidgets: {
|
|
|
13627
13627
|
items: {
|
|
13628
13628
|
config: {
|
|
13629
13629
|
question: string;
|
|
13630
|
+
id: string;
|
|
13630
13631
|
answer: string | {
|
|
13631
13632
|
type: "rich";
|
|
13632
13633
|
html: string;
|
|
@@ -13638,11 +13639,10 @@ export declare const tileWidgets: {
|
|
|
13638
13639
|
id: string;
|
|
13639
13640
|
src: string;
|
|
13640
13641
|
width?: number | undefined;
|
|
13641
|
-
alt?: string | undefined;
|
|
13642
13642
|
height?: number | undefined;
|
|
13643
|
+
alt?: string | undefined;
|
|
13643
13644
|
}[] | undefined;
|
|
13644
13645
|
};
|
|
13645
|
-
id: string;
|
|
13646
13646
|
priority?: number | undefined;
|
|
13647
13647
|
category?: string | undefined;
|
|
13648
13648
|
answerStrategy?: {
|
|
@@ -13654,7 +13654,6 @@ export declare const tileWidgets: {
|
|
|
13654
13654
|
};
|
|
13655
13655
|
kind: "faq:question";
|
|
13656
13656
|
title?: string | undefined;
|
|
13657
|
-
validation?: string[] | undefined;
|
|
13658
13657
|
triggerWhen?: {
|
|
13659
13658
|
type: "rules";
|
|
13660
13659
|
rules: {
|
|
@@ -13736,12 +13735,13 @@ export declare const tileWidgets: {
|
|
|
13736
13735
|
method?: "GET" | "POST" | undefined;
|
|
13737
13736
|
timeoutMs?: number | undefined;
|
|
13738
13737
|
} | null | undefined;
|
|
13738
|
+
description?: string | undefined;
|
|
13739
|
+
validation?: string[] | undefined;
|
|
13739
13740
|
notify?: {
|
|
13740
13741
|
title?: string | undefined;
|
|
13741
13742
|
body?: string | undefined;
|
|
13742
13743
|
icon?: string | undefined;
|
|
13743
13744
|
} | null | undefined;
|
|
13744
|
-
description?: string | undefined;
|
|
13745
13745
|
}[];
|
|
13746
13746
|
trigger: {
|
|
13747
13747
|
type: "rules";
|