@prismicio/types-internal 0.3.3 → 1.0.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/lib/customtypes/CustomType.d.ts +309 -311
- package/lib/customtypes/CustomType.js +6 -6
- package/lib/customtypes/Format.d.ts +4 -0
- package/lib/customtypes/Format.js +8 -0
- package/lib/customtypes/Section.d.ts +309 -309
- package/lib/customtypes/widgets/Group.d.ts +22 -23
- package/lib/customtypes/widgets/Group.js +2 -2
- package/lib/customtypes/widgets/UID.d.ts +1 -2
- package/lib/customtypes/widgets/UID.js +2 -2
- package/lib/customtypes/widgets/Widget.d.ts +353 -354
- package/lib/customtypes/widgets/Widget.js +3 -3
- package/lib/customtypes/widgets/WidgetTypes.d.ts +22 -22
- package/lib/customtypes/widgets/WidgetTypes.js +22 -23
- package/lib/customtypes/widgets/index.d.ts +1 -1
- package/lib/customtypes/widgets/index.js +1 -1
- package/lib/customtypes/widgets/nestable/BooleanField.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/BooleanField.js +2 -2
- package/lib/customtypes/widgets/nestable/Color.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/Color.js +2 -2
- package/lib/customtypes/widgets/nestable/Date.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/Date.js +2 -2
- package/lib/customtypes/widgets/nestable/Embed.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/Embed.js +2 -2
- package/lib/customtypes/widgets/nestable/GeoPoint.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/GeoPoint.js +2 -2
- package/lib/customtypes/widgets/nestable/Image.d.ts +2 -3
- package/lib/customtypes/widgets/nestable/Image.js +3 -3
- package/lib/customtypes/widgets/nestable/IntegrationField.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/IntegrationField.js +2 -2
- package/lib/customtypes/widgets/nestable/Link.d.ts +4 -5
- package/lib/customtypes/widgets/nestable/Link.js +3 -3
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +21 -21
- package/lib/customtypes/widgets/nestable/Number.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/Number.js +2 -2
- package/lib/customtypes/widgets/nestable/Range.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/Range.js +2 -2
- package/lib/customtypes/widgets/nestable/RichText.d.ts +22 -22
- package/lib/customtypes/widgets/nestable/RichText.js +38 -39
- package/lib/customtypes/widgets/nestable/Select.d.ts +2 -3
- package/lib/customtypes/widgets/nestable/Select.js +3 -3
- package/lib/customtypes/widgets/nestable/Separator.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/Separator.js +2 -2
- package/lib/customtypes/widgets/nestable/Text.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/Text.js +2 -2
- package/lib/customtypes/widgets/nestable/Timestamp.d.ts +1 -2
- package/lib/customtypes/widgets/nestable/Timestamp.js +2 -2
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +43 -44
- package/lib/customtypes/widgets/slices/CompositeSlice.js +2 -2
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +43 -43
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +86 -87
- package/lib/customtypes/widgets/slices/SharedSlice.js +3 -3
- package/lib/customtypes/widgets/slices/SharedSliceRef.d.ts +1 -2
- package/lib/customtypes/widgets/slices/SharedSliceRef.js +2 -2
- package/lib/customtypes/widgets/slices/Slices.d.ts +529 -531
- package/lib/customtypes/widgets/slices/Slices.js +6 -6
- package/lib/customtypes/widgets/slices/SlicesTypes.d.ts +5 -5
- package/lib/customtypes/widgets/slices/SlicesTypes.js +5 -6
- package/lib/customtypes/widgets/slices/index.d.ts +1 -1
- package/lib/customtypes/widgets/slices/index.js +1 -1
- package/lib/documents/widgets/index.d.ts +1 -0
- package/lib/documents/widgets/nestable/Link/index.d.ts +1 -0
- package/lib/documents/widgets/nestable/StructuredTextContent/Block.d.ts +16 -17
- package/lib/documents/widgets/nestable/StructuredTextContent/Block.js +1 -1
- package/package.json +1 -1
- package/src/customtypes/CustomType.ts +2 -2
- package/src/customtypes/widgets/Group.ts +1 -1
- package/src/customtypes/widgets/UID.ts +1 -1
- package/src/customtypes/widgets/Widget.ts +1 -1
- package/src/customtypes/widgets/WidgetTypes.ts +22 -22
- package/src/customtypes/widgets/index.ts +1 -1
- package/src/customtypes/widgets/nestable/BooleanField.ts +1 -1
- package/src/customtypes/widgets/nestable/Color.ts +1 -1
- package/src/customtypes/widgets/nestable/Date.ts +1 -1
- package/src/customtypes/widgets/nestable/Embed.ts +1 -1
- package/src/customtypes/widgets/nestable/GeoPoint.ts +1 -1
- package/src/customtypes/widgets/nestable/Image.ts +2 -2
- package/src/customtypes/widgets/nestable/IntegrationField.ts +1 -1
- package/src/customtypes/widgets/nestable/Link.ts +4 -4
- package/src/customtypes/widgets/nestable/Number.ts +1 -1
- package/src/customtypes/widgets/nestable/Range.ts +1 -1
- package/src/customtypes/widgets/nestable/RichText.ts +37 -35
- package/src/customtypes/widgets/nestable/Select.ts +4 -2
- package/src/customtypes/widgets/nestable/Separator.ts +1 -1
- package/src/customtypes/widgets/nestable/Text.ts +1 -1
- package/src/customtypes/widgets/nestable/Timestamp.ts +1 -1
- package/src/customtypes/widgets/slices/CompositeSlice.ts +1 -1
- package/src/customtypes/widgets/slices/SharedSlice.ts +2 -2
- package/src/customtypes/widgets/slices/SharedSliceRef.ts +1 -1
- package/src/customtypes/widgets/slices/Slices.ts +3 -3
- package/src/customtypes/widgets/slices/SlicesTypes.ts +5 -5
- package/src/customtypes/widgets/slices/index.ts +1 -1
- package/src/documents/widgets/index.ts +1 -5
- package/src/documents/widgets/nestable/Link/index.ts +2 -0
- package/src/documents/widgets/nestable/StructuredTextContent/Block.ts +1 -1
|
@@ -3,7 +3,7 @@ import type { SharedSlice } from "./widgets/slices";
|
|
|
3
3
|
import { DynamicWidget, StaticWidget } from "./widgets/Widget";
|
|
4
4
|
export declare function sectionReader<T extends StaticWidget | DynamicWidget>(codec: t.Type<T, unknown>): t.RecordC<t.StringC, t.Type<T, unknown, unknown>>;
|
|
5
5
|
export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
6
|
-
type:
|
|
6
|
+
type: "Boolean";
|
|
7
7
|
} & {
|
|
8
8
|
config?: {
|
|
9
9
|
label?: string | null | undefined;
|
|
@@ -12,7 +12,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
12
12
|
placeholder_false?: string;
|
|
13
13
|
};
|
|
14
14
|
}) | ({
|
|
15
|
-
type:
|
|
15
|
+
type: "Color";
|
|
16
16
|
} & {
|
|
17
17
|
fieldset?: string | null | undefined;
|
|
18
18
|
config?: {
|
|
@@ -20,7 +20,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
20
20
|
placeholder?: string;
|
|
21
21
|
};
|
|
22
22
|
}) | ({
|
|
23
|
-
type:
|
|
23
|
+
type: "Date";
|
|
24
24
|
} & {
|
|
25
25
|
fieldset?: string | null | undefined;
|
|
26
26
|
config?: {
|
|
@@ -29,7 +29,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
29
29
|
default?: string;
|
|
30
30
|
};
|
|
31
31
|
}) | ({
|
|
32
|
-
type:
|
|
32
|
+
type: "Embed";
|
|
33
33
|
} & {
|
|
34
34
|
fieldset?: string | null | undefined;
|
|
35
35
|
config?: {
|
|
@@ -38,14 +38,14 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
38
38
|
useAsTitle?: boolean;
|
|
39
39
|
};
|
|
40
40
|
}) | ({
|
|
41
|
-
type:
|
|
41
|
+
type: "GeoPoint";
|
|
42
42
|
} & {
|
|
43
43
|
fieldset?: string | null | undefined;
|
|
44
44
|
config?: {
|
|
45
45
|
label?: string | null | undefined;
|
|
46
46
|
};
|
|
47
47
|
}) | ({
|
|
48
|
-
type:
|
|
48
|
+
type: "Image";
|
|
49
49
|
} & {
|
|
50
50
|
fieldset?: string | null | undefined;
|
|
51
51
|
config?: {
|
|
@@ -55,7 +55,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
55
55
|
width?: number | null;
|
|
56
56
|
height?: number | null;
|
|
57
57
|
};
|
|
58
|
-
thumbnails?: ({
|
|
58
|
+
thumbnails?: readonly ({
|
|
59
59
|
name: string;
|
|
60
60
|
} & {
|
|
61
61
|
width?: number | null;
|
|
@@ -63,7 +63,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
63
63
|
})[];
|
|
64
64
|
};
|
|
65
65
|
}) | ({
|
|
66
|
-
type:
|
|
66
|
+
type: "IntegrationFields";
|
|
67
67
|
} & {
|
|
68
68
|
fieldset?: string | null | undefined;
|
|
69
69
|
config?: {
|
|
@@ -72,7 +72,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
72
72
|
catalog?: string;
|
|
73
73
|
};
|
|
74
74
|
}) | ({
|
|
75
|
-
type:
|
|
75
|
+
type: "Link";
|
|
76
76
|
} & {
|
|
77
77
|
fieldset?: string | null | undefined;
|
|
78
78
|
config?: {
|
|
@@ -80,13 +80,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
80
80
|
useAsTitle?: boolean;
|
|
81
81
|
placeholder?: string;
|
|
82
82
|
select?: "media" | "document" | "web" | null;
|
|
83
|
-
customtypes?: string[];
|
|
84
|
-
masks?: string[];
|
|
85
|
-
tags?: string[];
|
|
83
|
+
customtypes?: readonly string[];
|
|
84
|
+
masks?: readonly string[];
|
|
85
|
+
tags?: readonly string[];
|
|
86
86
|
allowTargetBlank?: boolean;
|
|
87
87
|
};
|
|
88
88
|
}) | ({
|
|
89
|
-
type:
|
|
89
|
+
type: "Number";
|
|
90
90
|
} & {
|
|
91
91
|
fieldset?: string | null | undefined;
|
|
92
92
|
config?: {
|
|
@@ -97,7 +97,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
97
97
|
step?: number;
|
|
98
98
|
};
|
|
99
99
|
}) | ({
|
|
100
|
-
type:
|
|
100
|
+
type: "Range";
|
|
101
101
|
} & {
|
|
102
102
|
fieldset?: string | null | undefined;
|
|
103
103
|
config?: {
|
|
@@ -108,7 +108,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
108
108
|
step?: number;
|
|
109
109
|
};
|
|
110
110
|
}) | ({
|
|
111
|
-
type:
|
|
111
|
+
type: "StructuredText";
|
|
112
112
|
} & {
|
|
113
113
|
fieldset?: string | null | undefined;
|
|
114
114
|
config?: {
|
|
@@ -121,27 +121,27 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
121
121
|
width?: number | null;
|
|
122
122
|
height?: number | null;
|
|
123
123
|
};
|
|
124
|
-
labels?: string[];
|
|
124
|
+
labels?: readonly string[];
|
|
125
125
|
allowTargetBlank?: boolean;
|
|
126
126
|
};
|
|
127
127
|
}) | ({
|
|
128
|
-
type:
|
|
128
|
+
type: "Select";
|
|
129
129
|
} & {
|
|
130
130
|
fieldset?: string | null | undefined;
|
|
131
131
|
config?: {
|
|
132
132
|
label?: string | null | undefined;
|
|
133
133
|
placeholder?: string;
|
|
134
134
|
default_value?: string;
|
|
135
|
-
options?: string[];
|
|
135
|
+
options?: readonly string[];
|
|
136
136
|
};
|
|
137
137
|
}) | ({
|
|
138
|
-
type:
|
|
138
|
+
type: "Separator";
|
|
139
139
|
} & {
|
|
140
140
|
config?: {
|
|
141
141
|
label?: string | null | undefined;
|
|
142
142
|
};
|
|
143
143
|
}) | ({
|
|
144
|
-
type:
|
|
144
|
+
type: "Text";
|
|
145
145
|
} & {
|
|
146
146
|
fieldset?: string | null | undefined;
|
|
147
147
|
config?: {
|
|
@@ -150,7 +150,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
150
150
|
placeholder?: string;
|
|
151
151
|
};
|
|
152
152
|
}) | ({
|
|
153
|
-
type:
|
|
153
|
+
type: "Timestamp";
|
|
154
154
|
} & {
|
|
155
155
|
fieldset?: string | null | undefined;
|
|
156
156
|
config?: {
|
|
@@ -159,7 +159,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
159
159
|
default?: string;
|
|
160
160
|
};
|
|
161
161
|
}) | ({
|
|
162
|
-
type:
|
|
162
|
+
type: "Group";
|
|
163
163
|
} & {
|
|
164
164
|
fieldset?: string | null | undefined;
|
|
165
165
|
icon?: string;
|
|
@@ -169,7 +169,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
169
169
|
repeat?: boolean;
|
|
170
170
|
fields?: {
|
|
171
171
|
[x: string]: ({
|
|
172
|
-
type:
|
|
172
|
+
type: "Boolean";
|
|
173
173
|
} & {
|
|
174
174
|
config?: {
|
|
175
175
|
label?: string | null | undefined;
|
|
@@ -178,7 +178,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
178
178
|
placeholder_false?: string;
|
|
179
179
|
};
|
|
180
180
|
}) | ({
|
|
181
|
-
type:
|
|
181
|
+
type: "Color";
|
|
182
182
|
} & {
|
|
183
183
|
fieldset?: string | null | undefined;
|
|
184
184
|
config?: {
|
|
@@ -186,7 +186,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
186
186
|
placeholder?: string;
|
|
187
187
|
};
|
|
188
188
|
}) | ({
|
|
189
|
-
type:
|
|
189
|
+
type: "Date";
|
|
190
190
|
} & {
|
|
191
191
|
fieldset?: string | null | undefined;
|
|
192
192
|
config?: {
|
|
@@ -195,7 +195,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
195
195
|
default?: string;
|
|
196
196
|
};
|
|
197
197
|
}) | ({
|
|
198
|
-
type:
|
|
198
|
+
type: "Embed";
|
|
199
199
|
} & {
|
|
200
200
|
fieldset?: string | null | undefined;
|
|
201
201
|
config?: {
|
|
@@ -204,14 +204,14 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
204
204
|
useAsTitle?: boolean;
|
|
205
205
|
};
|
|
206
206
|
}) | ({
|
|
207
|
-
type:
|
|
207
|
+
type: "GeoPoint";
|
|
208
208
|
} & {
|
|
209
209
|
fieldset?: string | null | undefined;
|
|
210
210
|
config?: {
|
|
211
211
|
label?: string | null | undefined;
|
|
212
212
|
};
|
|
213
213
|
}) | ({
|
|
214
|
-
type:
|
|
214
|
+
type: "Image";
|
|
215
215
|
} & {
|
|
216
216
|
fieldset?: string | null | undefined;
|
|
217
217
|
config?: {
|
|
@@ -221,7 +221,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
221
221
|
width?: number | null;
|
|
222
222
|
height?: number | null;
|
|
223
223
|
};
|
|
224
|
-
thumbnails?: ({
|
|
224
|
+
thumbnails?: readonly ({
|
|
225
225
|
name: string;
|
|
226
226
|
} & {
|
|
227
227
|
width?: number | null;
|
|
@@ -229,7 +229,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
229
229
|
})[];
|
|
230
230
|
};
|
|
231
231
|
}) | ({
|
|
232
|
-
type:
|
|
232
|
+
type: "IntegrationFields";
|
|
233
233
|
} & {
|
|
234
234
|
fieldset?: string | null | undefined;
|
|
235
235
|
config?: {
|
|
@@ -238,7 +238,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
238
238
|
catalog?: string;
|
|
239
239
|
};
|
|
240
240
|
}) | ({
|
|
241
|
-
type:
|
|
241
|
+
type: "Link";
|
|
242
242
|
} & {
|
|
243
243
|
fieldset?: string | null | undefined;
|
|
244
244
|
config?: {
|
|
@@ -246,13 +246,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
246
246
|
useAsTitle?: boolean;
|
|
247
247
|
placeholder?: string;
|
|
248
248
|
select?: "media" | "document" | "web" | null;
|
|
249
|
-
customtypes?: string[];
|
|
250
|
-
masks?: string[];
|
|
251
|
-
tags?: string[];
|
|
249
|
+
customtypes?: readonly string[];
|
|
250
|
+
masks?: readonly string[];
|
|
251
|
+
tags?: readonly string[];
|
|
252
252
|
allowTargetBlank?: boolean;
|
|
253
253
|
};
|
|
254
254
|
}) | ({
|
|
255
|
-
type:
|
|
255
|
+
type: "Number";
|
|
256
256
|
} & {
|
|
257
257
|
fieldset?: string | null | undefined;
|
|
258
258
|
config?: {
|
|
@@ -263,7 +263,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
263
263
|
step?: number;
|
|
264
264
|
};
|
|
265
265
|
}) | ({
|
|
266
|
-
type:
|
|
266
|
+
type: "Range";
|
|
267
267
|
} & {
|
|
268
268
|
fieldset?: string | null | undefined;
|
|
269
269
|
config?: {
|
|
@@ -274,7 +274,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
274
274
|
step?: number;
|
|
275
275
|
};
|
|
276
276
|
}) | ({
|
|
277
|
-
type:
|
|
277
|
+
type: "StructuredText";
|
|
278
278
|
} & {
|
|
279
279
|
fieldset?: string | null | undefined;
|
|
280
280
|
config?: {
|
|
@@ -287,27 +287,27 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
287
287
|
width?: number | null;
|
|
288
288
|
height?: number | null;
|
|
289
289
|
};
|
|
290
|
-
labels?: string[];
|
|
290
|
+
labels?: readonly string[];
|
|
291
291
|
allowTargetBlank?: boolean;
|
|
292
292
|
};
|
|
293
293
|
}) | ({
|
|
294
|
-
type:
|
|
294
|
+
type: "Select";
|
|
295
295
|
} & {
|
|
296
296
|
fieldset?: string | null | undefined;
|
|
297
297
|
config?: {
|
|
298
298
|
label?: string | null | undefined;
|
|
299
299
|
placeholder?: string;
|
|
300
300
|
default_value?: string;
|
|
301
|
-
options?: string[];
|
|
301
|
+
options?: readonly string[];
|
|
302
302
|
};
|
|
303
303
|
}) | ({
|
|
304
|
-
type:
|
|
304
|
+
type: "Separator";
|
|
305
305
|
} & {
|
|
306
306
|
config?: {
|
|
307
307
|
label?: string | null | undefined;
|
|
308
308
|
};
|
|
309
309
|
}) | ({
|
|
310
|
-
type:
|
|
310
|
+
type: "Text";
|
|
311
311
|
} & {
|
|
312
312
|
fieldset?: string | null | undefined;
|
|
313
313
|
config?: {
|
|
@@ -316,7 +316,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
316
316
|
placeholder?: string;
|
|
317
317
|
};
|
|
318
318
|
}) | ({
|
|
319
|
-
type:
|
|
319
|
+
type: "Timestamp";
|
|
320
320
|
} & {
|
|
321
321
|
fieldset?: string | null | undefined;
|
|
322
322
|
config?: {
|
|
@@ -328,13 +328,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
328
328
|
};
|
|
329
329
|
};
|
|
330
330
|
}) | ({
|
|
331
|
-
type:
|
|
331
|
+
type: "Slices" | "Choice";
|
|
332
332
|
} & {
|
|
333
333
|
fieldset?: string | null | undefined;
|
|
334
334
|
config?: {
|
|
335
335
|
label?: string | null | undefined;
|
|
336
336
|
labels?: {
|
|
337
|
-
[x: string]: ({
|
|
337
|
+
[x: string]: readonly ({
|
|
338
338
|
name: string;
|
|
339
339
|
} & {
|
|
340
340
|
display?: string;
|
|
@@ -342,7 +342,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
342
342
|
} | null;
|
|
343
343
|
choices?: {
|
|
344
344
|
[x: string]: ({
|
|
345
|
-
type:
|
|
345
|
+
type: "Boolean";
|
|
346
346
|
} & {
|
|
347
347
|
config?: {
|
|
348
348
|
label?: string | null | undefined;
|
|
@@ -351,7 +351,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
351
351
|
placeholder_false?: string;
|
|
352
352
|
};
|
|
353
353
|
}) | ({
|
|
354
|
-
type:
|
|
354
|
+
type: "Color";
|
|
355
355
|
} & {
|
|
356
356
|
fieldset?: string | null | undefined;
|
|
357
357
|
config?: {
|
|
@@ -359,7 +359,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
359
359
|
placeholder?: string;
|
|
360
360
|
};
|
|
361
361
|
}) | ({
|
|
362
|
-
type:
|
|
362
|
+
type: "Date";
|
|
363
363
|
} & {
|
|
364
364
|
fieldset?: string | null | undefined;
|
|
365
365
|
config?: {
|
|
@@ -368,7 +368,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
368
368
|
default?: string;
|
|
369
369
|
};
|
|
370
370
|
}) | ({
|
|
371
|
-
type:
|
|
371
|
+
type: "Embed";
|
|
372
372
|
} & {
|
|
373
373
|
fieldset?: string | null | undefined;
|
|
374
374
|
config?: {
|
|
@@ -377,14 +377,14 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
377
377
|
useAsTitle?: boolean;
|
|
378
378
|
};
|
|
379
379
|
}) | ({
|
|
380
|
-
type:
|
|
380
|
+
type: "GeoPoint";
|
|
381
381
|
} & {
|
|
382
382
|
fieldset?: string | null | undefined;
|
|
383
383
|
config?: {
|
|
384
384
|
label?: string | null | undefined;
|
|
385
385
|
};
|
|
386
386
|
}) | ({
|
|
387
|
-
type:
|
|
387
|
+
type: "Image";
|
|
388
388
|
} & {
|
|
389
389
|
fieldset?: string | null | undefined;
|
|
390
390
|
config?: {
|
|
@@ -394,7 +394,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
394
394
|
width?: number | null;
|
|
395
395
|
height?: number | null;
|
|
396
396
|
};
|
|
397
|
-
thumbnails?: ({
|
|
397
|
+
thumbnails?: readonly ({
|
|
398
398
|
name: string;
|
|
399
399
|
} & {
|
|
400
400
|
width?: number | null;
|
|
@@ -402,7 +402,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
402
402
|
})[];
|
|
403
403
|
};
|
|
404
404
|
}) | ({
|
|
405
|
-
type:
|
|
405
|
+
type: "IntegrationFields";
|
|
406
406
|
} & {
|
|
407
407
|
fieldset?: string | null | undefined;
|
|
408
408
|
config?: {
|
|
@@ -411,7 +411,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
411
411
|
catalog?: string;
|
|
412
412
|
};
|
|
413
413
|
}) | ({
|
|
414
|
-
type:
|
|
414
|
+
type: "Link";
|
|
415
415
|
} & {
|
|
416
416
|
fieldset?: string | null | undefined;
|
|
417
417
|
config?: {
|
|
@@ -419,13 +419,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
419
419
|
useAsTitle?: boolean;
|
|
420
420
|
placeholder?: string;
|
|
421
421
|
select?: "media" | "document" | "web" | null;
|
|
422
|
-
customtypes?: string[];
|
|
423
|
-
masks?: string[];
|
|
424
|
-
tags?: string[];
|
|
422
|
+
customtypes?: readonly string[];
|
|
423
|
+
masks?: readonly string[];
|
|
424
|
+
tags?: readonly string[];
|
|
425
425
|
allowTargetBlank?: boolean;
|
|
426
426
|
};
|
|
427
427
|
}) | ({
|
|
428
|
-
type:
|
|
428
|
+
type: "Number";
|
|
429
429
|
} & {
|
|
430
430
|
fieldset?: string | null | undefined;
|
|
431
431
|
config?: {
|
|
@@ -436,7 +436,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
436
436
|
step?: number;
|
|
437
437
|
};
|
|
438
438
|
}) | ({
|
|
439
|
-
type:
|
|
439
|
+
type: "Range";
|
|
440
440
|
} & {
|
|
441
441
|
fieldset?: string | null | undefined;
|
|
442
442
|
config?: {
|
|
@@ -447,7 +447,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
447
447
|
step?: number;
|
|
448
448
|
};
|
|
449
449
|
}) | ({
|
|
450
|
-
type:
|
|
450
|
+
type: "StructuredText";
|
|
451
451
|
} & {
|
|
452
452
|
fieldset?: string | null | undefined;
|
|
453
453
|
config?: {
|
|
@@ -460,27 +460,27 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
460
460
|
width?: number | null;
|
|
461
461
|
height?: number | null;
|
|
462
462
|
};
|
|
463
|
-
labels?: string[];
|
|
463
|
+
labels?: readonly string[];
|
|
464
464
|
allowTargetBlank?: boolean;
|
|
465
465
|
};
|
|
466
466
|
}) | ({
|
|
467
|
-
type:
|
|
467
|
+
type: "Select";
|
|
468
468
|
} & {
|
|
469
469
|
fieldset?: string | null | undefined;
|
|
470
470
|
config?: {
|
|
471
471
|
label?: string | null | undefined;
|
|
472
472
|
placeholder?: string;
|
|
473
473
|
default_value?: string;
|
|
474
|
-
options?: string[];
|
|
474
|
+
options?: readonly string[];
|
|
475
475
|
};
|
|
476
476
|
}) | ({
|
|
477
|
-
type:
|
|
477
|
+
type: "Separator";
|
|
478
478
|
} & {
|
|
479
479
|
config?: {
|
|
480
480
|
label?: string | null | undefined;
|
|
481
481
|
};
|
|
482
482
|
}) | ({
|
|
483
|
-
type:
|
|
483
|
+
type: "Text";
|
|
484
484
|
} & {
|
|
485
485
|
fieldset?: string | null | undefined;
|
|
486
486
|
config?: {
|
|
@@ -489,7 +489,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
489
489
|
placeholder?: string;
|
|
490
490
|
};
|
|
491
491
|
}) | ({
|
|
492
|
-
type:
|
|
492
|
+
type: "Timestamp";
|
|
493
493
|
} & {
|
|
494
494
|
fieldset?: string | null | undefined;
|
|
495
495
|
config?: {
|
|
@@ -498,7 +498,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
498
498
|
default?: string;
|
|
499
499
|
};
|
|
500
500
|
}) | ({
|
|
501
|
-
type:
|
|
501
|
+
type: "Slice";
|
|
502
502
|
} & {
|
|
503
503
|
fieldset?: string | null | undefined;
|
|
504
504
|
description?: string;
|
|
@@ -506,7 +506,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
506
506
|
display?: string;
|
|
507
507
|
"non-repeat"?: {
|
|
508
508
|
[x: string]: ({
|
|
509
|
-
type:
|
|
509
|
+
type: "Boolean";
|
|
510
510
|
} & {
|
|
511
511
|
config?: {
|
|
512
512
|
label?: string | null | undefined;
|
|
@@ -515,7 +515,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
515
515
|
placeholder_false?: string;
|
|
516
516
|
};
|
|
517
517
|
}) | ({
|
|
518
|
-
type:
|
|
518
|
+
type: "Color";
|
|
519
519
|
} & {
|
|
520
520
|
fieldset?: string | null | undefined;
|
|
521
521
|
config?: {
|
|
@@ -523,7 +523,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
523
523
|
placeholder?: string;
|
|
524
524
|
};
|
|
525
525
|
}) | ({
|
|
526
|
-
type:
|
|
526
|
+
type: "Date";
|
|
527
527
|
} & {
|
|
528
528
|
fieldset?: string | null | undefined;
|
|
529
529
|
config?: {
|
|
@@ -532,7 +532,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
532
532
|
default?: string;
|
|
533
533
|
};
|
|
534
534
|
}) | ({
|
|
535
|
-
type:
|
|
535
|
+
type: "Embed";
|
|
536
536
|
} & {
|
|
537
537
|
fieldset?: string | null | undefined;
|
|
538
538
|
config?: {
|
|
@@ -541,14 +541,14 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
541
541
|
useAsTitle?: boolean;
|
|
542
542
|
};
|
|
543
543
|
}) | ({
|
|
544
|
-
type:
|
|
544
|
+
type: "GeoPoint";
|
|
545
545
|
} & {
|
|
546
546
|
fieldset?: string | null | undefined;
|
|
547
547
|
config?: {
|
|
548
548
|
label?: string | null | undefined;
|
|
549
549
|
};
|
|
550
550
|
}) | ({
|
|
551
|
-
type:
|
|
551
|
+
type: "Image";
|
|
552
552
|
} & {
|
|
553
553
|
fieldset?: string | null | undefined;
|
|
554
554
|
config?: {
|
|
@@ -558,7 +558,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
558
558
|
width?: number | null;
|
|
559
559
|
height?: number | null;
|
|
560
560
|
};
|
|
561
|
-
thumbnails?: ({
|
|
561
|
+
thumbnails?: readonly ({
|
|
562
562
|
name: string;
|
|
563
563
|
} & {
|
|
564
564
|
width?: number | null;
|
|
@@ -566,7 +566,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
566
566
|
})[];
|
|
567
567
|
};
|
|
568
568
|
}) | ({
|
|
569
|
-
type:
|
|
569
|
+
type: "IntegrationFields";
|
|
570
570
|
} & {
|
|
571
571
|
fieldset?: string | null | undefined;
|
|
572
572
|
config?: {
|
|
@@ -575,7 +575,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
575
575
|
catalog?: string;
|
|
576
576
|
};
|
|
577
577
|
}) | ({
|
|
578
|
-
type:
|
|
578
|
+
type: "Link";
|
|
579
579
|
} & {
|
|
580
580
|
fieldset?: string | null | undefined;
|
|
581
581
|
config?: {
|
|
@@ -583,13 +583,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
583
583
|
useAsTitle?: boolean;
|
|
584
584
|
placeholder?: string;
|
|
585
585
|
select?: "media" | "document" | "web" | null;
|
|
586
|
-
customtypes?: string[];
|
|
587
|
-
masks?: string[];
|
|
588
|
-
tags?: string[];
|
|
586
|
+
customtypes?: readonly string[];
|
|
587
|
+
masks?: readonly string[];
|
|
588
|
+
tags?: readonly string[];
|
|
589
589
|
allowTargetBlank?: boolean;
|
|
590
590
|
};
|
|
591
591
|
}) | ({
|
|
592
|
-
type:
|
|
592
|
+
type: "Number";
|
|
593
593
|
} & {
|
|
594
594
|
fieldset?: string | null | undefined;
|
|
595
595
|
config?: {
|
|
@@ -600,7 +600,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
600
600
|
step?: number;
|
|
601
601
|
};
|
|
602
602
|
}) | ({
|
|
603
|
-
type:
|
|
603
|
+
type: "Range";
|
|
604
604
|
} & {
|
|
605
605
|
fieldset?: string | null | undefined;
|
|
606
606
|
config?: {
|
|
@@ -611,7 +611,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
611
611
|
step?: number;
|
|
612
612
|
};
|
|
613
613
|
}) | ({
|
|
614
|
-
type:
|
|
614
|
+
type: "StructuredText";
|
|
615
615
|
} & {
|
|
616
616
|
fieldset?: string | null | undefined;
|
|
617
617
|
config?: {
|
|
@@ -624,27 +624,27 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
624
624
|
width?: number | null;
|
|
625
625
|
height?: number | null;
|
|
626
626
|
};
|
|
627
|
-
labels?: string[];
|
|
627
|
+
labels?: readonly string[];
|
|
628
628
|
allowTargetBlank?: boolean;
|
|
629
629
|
};
|
|
630
630
|
}) | ({
|
|
631
|
-
type:
|
|
631
|
+
type: "Select";
|
|
632
632
|
} & {
|
|
633
633
|
fieldset?: string | null | undefined;
|
|
634
634
|
config?: {
|
|
635
635
|
label?: string | null | undefined;
|
|
636
636
|
placeholder?: string;
|
|
637
637
|
default_value?: string;
|
|
638
|
-
options?: string[];
|
|
638
|
+
options?: readonly string[];
|
|
639
639
|
};
|
|
640
640
|
}) | ({
|
|
641
|
-
type:
|
|
641
|
+
type: "Separator";
|
|
642
642
|
} & {
|
|
643
643
|
config?: {
|
|
644
644
|
label?: string | null | undefined;
|
|
645
645
|
};
|
|
646
646
|
}) | ({
|
|
647
|
-
type:
|
|
647
|
+
type: "Text";
|
|
648
648
|
} & {
|
|
649
649
|
fieldset?: string | null | undefined;
|
|
650
650
|
config?: {
|
|
@@ -653,7 +653,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
653
653
|
placeholder?: string;
|
|
654
654
|
};
|
|
655
655
|
}) | ({
|
|
656
|
-
type:
|
|
656
|
+
type: "Timestamp";
|
|
657
657
|
} & {
|
|
658
658
|
fieldset?: string | null | undefined;
|
|
659
659
|
config?: {
|
|
@@ -665,7 +665,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
665
665
|
};
|
|
666
666
|
repeat?: {
|
|
667
667
|
[x: string]: ({
|
|
668
|
-
type:
|
|
668
|
+
type: "Boolean";
|
|
669
669
|
} & {
|
|
670
670
|
config?: {
|
|
671
671
|
label?: string | null | undefined;
|
|
@@ -674,7 +674,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
674
674
|
placeholder_false?: string;
|
|
675
675
|
};
|
|
676
676
|
}) | ({
|
|
677
|
-
type:
|
|
677
|
+
type: "Color";
|
|
678
678
|
} & {
|
|
679
679
|
fieldset?: string | null | undefined;
|
|
680
680
|
config?: {
|
|
@@ -682,7 +682,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
682
682
|
placeholder?: string;
|
|
683
683
|
};
|
|
684
684
|
}) | ({
|
|
685
|
-
type:
|
|
685
|
+
type: "Date";
|
|
686
686
|
} & {
|
|
687
687
|
fieldset?: string | null | undefined;
|
|
688
688
|
config?: {
|
|
@@ -691,7 +691,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
691
691
|
default?: string;
|
|
692
692
|
};
|
|
693
693
|
}) | ({
|
|
694
|
-
type:
|
|
694
|
+
type: "Embed";
|
|
695
695
|
} & {
|
|
696
696
|
fieldset?: string | null | undefined;
|
|
697
697
|
config?: {
|
|
@@ -700,14 +700,14 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
700
700
|
useAsTitle?: boolean;
|
|
701
701
|
};
|
|
702
702
|
}) | ({
|
|
703
|
-
type:
|
|
703
|
+
type: "GeoPoint";
|
|
704
704
|
} & {
|
|
705
705
|
fieldset?: string | null | undefined;
|
|
706
706
|
config?: {
|
|
707
707
|
label?: string | null | undefined;
|
|
708
708
|
};
|
|
709
709
|
}) | ({
|
|
710
|
-
type:
|
|
710
|
+
type: "Image";
|
|
711
711
|
} & {
|
|
712
712
|
fieldset?: string | null | undefined;
|
|
713
713
|
config?: {
|
|
@@ -717,7 +717,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
717
717
|
width?: number | null;
|
|
718
718
|
height?: number | null;
|
|
719
719
|
};
|
|
720
|
-
thumbnails?: ({
|
|
720
|
+
thumbnails?: readonly ({
|
|
721
721
|
name: string;
|
|
722
722
|
} & {
|
|
723
723
|
width?: number | null;
|
|
@@ -725,7 +725,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
725
725
|
})[];
|
|
726
726
|
};
|
|
727
727
|
}) | ({
|
|
728
|
-
type:
|
|
728
|
+
type: "IntegrationFields";
|
|
729
729
|
} & {
|
|
730
730
|
fieldset?: string | null | undefined;
|
|
731
731
|
config?: {
|
|
@@ -734,7 +734,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
734
734
|
catalog?: string;
|
|
735
735
|
};
|
|
736
736
|
}) | ({
|
|
737
|
-
type:
|
|
737
|
+
type: "Link";
|
|
738
738
|
} & {
|
|
739
739
|
fieldset?: string | null | undefined;
|
|
740
740
|
config?: {
|
|
@@ -742,13 +742,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
742
742
|
useAsTitle?: boolean;
|
|
743
743
|
placeholder?: string;
|
|
744
744
|
select?: "media" | "document" | "web" | null;
|
|
745
|
-
customtypes?: string[];
|
|
746
|
-
masks?: string[];
|
|
747
|
-
tags?: string[];
|
|
745
|
+
customtypes?: readonly string[];
|
|
746
|
+
masks?: readonly string[];
|
|
747
|
+
tags?: readonly string[];
|
|
748
748
|
allowTargetBlank?: boolean;
|
|
749
749
|
};
|
|
750
750
|
}) | ({
|
|
751
|
-
type:
|
|
751
|
+
type: "Number";
|
|
752
752
|
} & {
|
|
753
753
|
fieldset?: string | null | undefined;
|
|
754
754
|
config?: {
|
|
@@ -759,7 +759,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
759
759
|
step?: number;
|
|
760
760
|
};
|
|
761
761
|
}) | ({
|
|
762
|
-
type:
|
|
762
|
+
type: "Range";
|
|
763
763
|
} & {
|
|
764
764
|
fieldset?: string | null | undefined;
|
|
765
765
|
config?: {
|
|
@@ -770,7 +770,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
770
770
|
step?: number;
|
|
771
771
|
};
|
|
772
772
|
}) | ({
|
|
773
|
-
type:
|
|
773
|
+
type: "StructuredText";
|
|
774
774
|
} & {
|
|
775
775
|
fieldset?: string | null | undefined;
|
|
776
776
|
config?: {
|
|
@@ -783,27 +783,27 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
783
783
|
width?: number | null;
|
|
784
784
|
height?: number | null;
|
|
785
785
|
};
|
|
786
|
-
labels?: string[];
|
|
786
|
+
labels?: readonly string[];
|
|
787
787
|
allowTargetBlank?: boolean;
|
|
788
788
|
};
|
|
789
789
|
}) | ({
|
|
790
|
-
type:
|
|
790
|
+
type: "Select";
|
|
791
791
|
} & {
|
|
792
792
|
fieldset?: string | null | undefined;
|
|
793
793
|
config?: {
|
|
794
794
|
label?: string | null | undefined;
|
|
795
795
|
placeholder?: string;
|
|
796
796
|
default_value?: string;
|
|
797
|
-
options?: string[];
|
|
797
|
+
options?: readonly string[];
|
|
798
798
|
};
|
|
799
799
|
}) | ({
|
|
800
|
-
type:
|
|
800
|
+
type: "Separator";
|
|
801
801
|
} & {
|
|
802
802
|
config?: {
|
|
803
803
|
label?: string | null | undefined;
|
|
804
804
|
};
|
|
805
805
|
}) | ({
|
|
806
|
-
type:
|
|
806
|
+
type: "Text";
|
|
807
807
|
} & {
|
|
808
808
|
fieldset?: string | null | undefined;
|
|
809
809
|
config?: {
|
|
@@ -812,7 +812,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
812
812
|
placeholder?: string;
|
|
813
813
|
};
|
|
814
814
|
}) | ({
|
|
815
|
-
type:
|
|
815
|
+
type: "Timestamp";
|
|
816
816
|
} & {
|
|
817
817
|
fieldset?: string | null | undefined;
|
|
818
818
|
config?: {
|
|
@@ -826,7 +826,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
826
826
|
label?: string | null | undefined;
|
|
827
827
|
};
|
|
828
828
|
}) | ({
|
|
829
|
-
type:
|
|
829
|
+
type: "Group";
|
|
830
830
|
} & {
|
|
831
831
|
fieldset?: string | null | undefined;
|
|
832
832
|
icon?: string;
|
|
@@ -836,7 +836,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
836
836
|
repeat?: boolean;
|
|
837
837
|
fields?: {
|
|
838
838
|
[x: string]: ({
|
|
839
|
-
type:
|
|
839
|
+
type: "Boolean";
|
|
840
840
|
} & {
|
|
841
841
|
config?: {
|
|
842
842
|
label?: string | null | undefined;
|
|
@@ -845,7 +845,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
845
845
|
placeholder_false?: string;
|
|
846
846
|
};
|
|
847
847
|
}) | ({
|
|
848
|
-
type:
|
|
848
|
+
type: "Color";
|
|
849
849
|
} & {
|
|
850
850
|
fieldset?: string | null | undefined;
|
|
851
851
|
config?: {
|
|
@@ -853,7 +853,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
853
853
|
placeholder?: string;
|
|
854
854
|
};
|
|
855
855
|
}) | ({
|
|
856
|
-
type:
|
|
856
|
+
type: "Date";
|
|
857
857
|
} & {
|
|
858
858
|
fieldset?: string | null | undefined;
|
|
859
859
|
config?: {
|
|
@@ -862,7 +862,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
862
862
|
default?: string;
|
|
863
863
|
};
|
|
864
864
|
}) | ({
|
|
865
|
-
type:
|
|
865
|
+
type: "Embed";
|
|
866
866
|
} & {
|
|
867
867
|
fieldset?: string | null | undefined;
|
|
868
868
|
config?: {
|
|
@@ -871,14 +871,14 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
871
871
|
useAsTitle?: boolean;
|
|
872
872
|
};
|
|
873
873
|
}) | ({
|
|
874
|
-
type:
|
|
874
|
+
type: "GeoPoint";
|
|
875
875
|
} & {
|
|
876
876
|
fieldset?: string | null | undefined;
|
|
877
877
|
config?: {
|
|
878
878
|
label?: string | null | undefined;
|
|
879
879
|
};
|
|
880
880
|
}) | ({
|
|
881
|
-
type:
|
|
881
|
+
type: "Image";
|
|
882
882
|
} & {
|
|
883
883
|
fieldset?: string | null | undefined;
|
|
884
884
|
config?: {
|
|
@@ -888,7 +888,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
888
888
|
width?: number | null;
|
|
889
889
|
height?: number | null;
|
|
890
890
|
};
|
|
891
|
-
thumbnails?: ({
|
|
891
|
+
thumbnails?: readonly ({
|
|
892
892
|
name: string;
|
|
893
893
|
} & {
|
|
894
894
|
width?: number | null;
|
|
@@ -896,7 +896,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
896
896
|
})[];
|
|
897
897
|
};
|
|
898
898
|
}) | ({
|
|
899
|
-
type:
|
|
899
|
+
type: "IntegrationFields";
|
|
900
900
|
} & {
|
|
901
901
|
fieldset?: string | null | undefined;
|
|
902
902
|
config?: {
|
|
@@ -905,7 +905,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
905
905
|
catalog?: string;
|
|
906
906
|
};
|
|
907
907
|
}) | ({
|
|
908
|
-
type:
|
|
908
|
+
type: "Link";
|
|
909
909
|
} & {
|
|
910
910
|
fieldset?: string | null | undefined;
|
|
911
911
|
config?: {
|
|
@@ -913,13 +913,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
913
913
|
useAsTitle?: boolean;
|
|
914
914
|
placeholder?: string;
|
|
915
915
|
select?: "media" | "document" | "web" | null;
|
|
916
|
-
customtypes?: string[];
|
|
917
|
-
masks?: string[];
|
|
918
|
-
tags?: string[];
|
|
916
|
+
customtypes?: readonly string[];
|
|
917
|
+
masks?: readonly string[];
|
|
918
|
+
tags?: readonly string[];
|
|
919
919
|
allowTargetBlank?: boolean;
|
|
920
920
|
};
|
|
921
921
|
}) | ({
|
|
922
|
-
type:
|
|
922
|
+
type: "Number";
|
|
923
923
|
} & {
|
|
924
924
|
fieldset?: string | null | undefined;
|
|
925
925
|
config?: {
|
|
@@ -930,7 +930,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
930
930
|
step?: number;
|
|
931
931
|
};
|
|
932
932
|
}) | ({
|
|
933
|
-
type:
|
|
933
|
+
type: "Range";
|
|
934
934
|
} & {
|
|
935
935
|
fieldset?: string | null | undefined;
|
|
936
936
|
config?: {
|
|
@@ -941,7 +941,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
941
941
|
step?: number;
|
|
942
942
|
};
|
|
943
943
|
}) | ({
|
|
944
|
-
type:
|
|
944
|
+
type: "StructuredText";
|
|
945
945
|
} & {
|
|
946
946
|
fieldset?: string | null | undefined;
|
|
947
947
|
config?: {
|
|
@@ -954,27 +954,27 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
954
954
|
width?: number | null;
|
|
955
955
|
height?: number | null;
|
|
956
956
|
};
|
|
957
|
-
labels?: string[];
|
|
957
|
+
labels?: readonly string[];
|
|
958
958
|
allowTargetBlank?: boolean;
|
|
959
959
|
};
|
|
960
960
|
}) | ({
|
|
961
|
-
type:
|
|
961
|
+
type: "Select";
|
|
962
962
|
} & {
|
|
963
963
|
fieldset?: string | null | undefined;
|
|
964
964
|
config?: {
|
|
965
965
|
label?: string | null | undefined;
|
|
966
966
|
placeholder?: string;
|
|
967
967
|
default_value?: string;
|
|
968
|
-
options?: string[];
|
|
968
|
+
options?: readonly string[];
|
|
969
969
|
};
|
|
970
970
|
}) | ({
|
|
971
|
-
type:
|
|
971
|
+
type: "Separator";
|
|
972
972
|
} & {
|
|
973
973
|
config?: {
|
|
974
974
|
label?: string | null | undefined;
|
|
975
975
|
};
|
|
976
976
|
}) | ({
|
|
977
|
-
type:
|
|
977
|
+
type: "Text";
|
|
978
978
|
} & {
|
|
979
979
|
fieldset?: string | null | undefined;
|
|
980
980
|
config?: {
|
|
@@ -983,7 +983,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
983
983
|
placeholder?: string;
|
|
984
984
|
};
|
|
985
985
|
}) | ({
|
|
986
|
-
type:
|
|
986
|
+
type: "Timestamp";
|
|
987
987
|
} & {
|
|
988
988
|
fieldset?: string | null | undefined;
|
|
989
989
|
config?: {
|
|
@@ -996,9 +996,9 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
996
996
|
};
|
|
997
997
|
}) | ({
|
|
998
998
|
id: string;
|
|
999
|
-
type:
|
|
999
|
+
type: "SharedSlice";
|
|
1000
1000
|
name: string;
|
|
1001
|
-
variations: ({
|
|
1001
|
+
variations: readonly ({
|
|
1002
1002
|
id: string;
|
|
1003
1003
|
name: string;
|
|
1004
1004
|
description: string;
|
|
@@ -1009,7 +1009,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1009
1009
|
display?: string;
|
|
1010
1010
|
primary?: {
|
|
1011
1011
|
[x: string]: ({
|
|
1012
|
-
type:
|
|
1012
|
+
type: "Boolean";
|
|
1013
1013
|
} & {
|
|
1014
1014
|
config?: {
|
|
1015
1015
|
label?: string | null | undefined;
|
|
@@ -1018,7 +1018,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1018
1018
|
placeholder_false?: string;
|
|
1019
1019
|
};
|
|
1020
1020
|
}) | ({
|
|
1021
|
-
type:
|
|
1021
|
+
type: "Color";
|
|
1022
1022
|
} & {
|
|
1023
1023
|
fieldset?: string | null | undefined;
|
|
1024
1024
|
config?: {
|
|
@@ -1026,7 +1026,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1026
1026
|
placeholder?: string;
|
|
1027
1027
|
};
|
|
1028
1028
|
}) | ({
|
|
1029
|
-
type:
|
|
1029
|
+
type: "Date";
|
|
1030
1030
|
} & {
|
|
1031
1031
|
fieldset?: string | null | undefined;
|
|
1032
1032
|
config?: {
|
|
@@ -1035,7 +1035,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1035
1035
|
default?: string;
|
|
1036
1036
|
};
|
|
1037
1037
|
}) | ({
|
|
1038
|
-
type:
|
|
1038
|
+
type: "Embed";
|
|
1039
1039
|
} & {
|
|
1040
1040
|
fieldset?: string | null | undefined;
|
|
1041
1041
|
config?: {
|
|
@@ -1044,14 +1044,14 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1044
1044
|
useAsTitle?: boolean;
|
|
1045
1045
|
};
|
|
1046
1046
|
}) | ({
|
|
1047
|
-
type:
|
|
1047
|
+
type: "GeoPoint";
|
|
1048
1048
|
} & {
|
|
1049
1049
|
fieldset?: string | null | undefined;
|
|
1050
1050
|
config?: {
|
|
1051
1051
|
label?: string | null | undefined;
|
|
1052
1052
|
};
|
|
1053
1053
|
}) | ({
|
|
1054
|
-
type:
|
|
1054
|
+
type: "Image";
|
|
1055
1055
|
} & {
|
|
1056
1056
|
fieldset?: string | null | undefined;
|
|
1057
1057
|
config?: {
|
|
@@ -1061,7 +1061,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1061
1061
|
width?: number | null;
|
|
1062
1062
|
height?: number | null;
|
|
1063
1063
|
};
|
|
1064
|
-
thumbnails?: ({
|
|
1064
|
+
thumbnails?: readonly ({
|
|
1065
1065
|
name: string;
|
|
1066
1066
|
} & {
|
|
1067
1067
|
width?: number | null;
|
|
@@ -1069,7 +1069,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1069
1069
|
})[];
|
|
1070
1070
|
};
|
|
1071
1071
|
}) | ({
|
|
1072
|
-
type:
|
|
1072
|
+
type: "IntegrationFields";
|
|
1073
1073
|
} & {
|
|
1074
1074
|
fieldset?: string | null | undefined;
|
|
1075
1075
|
config?: {
|
|
@@ -1078,7 +1078,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1078
1078
|
catalog?: string;
|
|
1079
1079
|
};
|
|
1080
1080
|
}) | ({
|
|
1081
|
-
type:
|
|
1081
|
+
type: "Link";
|
|
1082
1082
|
} & {
|
|
1083
1083
|
fieldset?: string | null | undefined;
|
|
1084
1084
|
config?: {
|
|
@@ -1086,13 +1086,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1086
1086
|
useAsTitle?: boolean;
|
|
1087
1087
|
placeholder?: string;
|
|
1088
1088
|
select?: "media" | "document" | "web" | null;
|
|
1089
|
-
customtypes?: string[];
|
|
1090
|
-
masks?: string[];
|
|
1091
|
-
tags?: string[];
|
|
1089
|
+
customtypes?: readonly string[];
|
|
1090
|
+
masks?: readonly string[];
|
|
1091
|
+
tags?: readonly string[];
|
|
1092
1092
|
allowTargetBlank?: boolean;
|
|
1093
1093
|
};
|
|
1094
1094
|
}) | ({
|
|
1095
|
-
type:
|
|
1095
|
+
type: "Number";
|
|
1096
1096
|
} & {
|
|
1097
1097
|
fieldset?: string | null | undefined;
|
|
1098
1098
|
config?: {
|
|
@@ -1103,7 +1103,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1103
1103
|
step?: number;
|
|
1104
1104
|
};
|
|
1105
1105
|
}) | ({
|
|
1106
|
-
type:
|
|
1106
|
+
type: "Range";
|
|
1107
1107
|
} & {
|
|
1108
1108
|
fieldset?: string | null | undefined;
|
|
1109
1109
|
config?: {
|
|
@@ -1114,7 +1114,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1114
1114
|
step?: number;
|
|
1115
1115
|
};
|
|
1116
1116
|
}) | ({
|
|
1117
|
-
type:
|
|
1117
|
+
type: "StructuredText";
|
|
1118
1118
|
} & {
|
|
1119
1119
|
fieldset?: string | null | undefined;
|
|
1120
1120
|
config?: {
|
|
@@ -1127,27 +1127,27 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1127
1127
|
width?: number | null;
|
|
1128
1128
|
height?: number | null;
|
|
1129
1129
|
};
|
|
1130
|
-
labels?: string[];
|
|
1130
|
+
labels?: readonly string[];
|
|
1131
1131
|
allowTargetBlank?: boolean;
|
|
1132
1132
|
};
|
|
1133
1133
|
}) | ({
|
|
1134
|
-
type:
|
|
1134
|
+
type: "Select";
|
|
1135
1135
|
} & {
|
|
1136
1136
|
fieldset?: string | null | undefined;
|
|
1137
1137
|
config?: {
|
|
1138
1138
|
label?: string | null | undefined;
|
|
1139
1139
|
placeholder?: string;
|
|
1140
1140
|
default_value?: string;
|
|
1141
|
-
options?: string[];
|
|
1141
|
+
options?: readonly string[];
|
|
1142
1142
|
};
|
|
1143
1143
|
}) | ({
|
|
1144
|
-
type:
|
|
1144
|
+
type: "Separator";
|
|
1145
1145
|
} & {
|
|
1146
1146
|
config?: {
|
|
1147
1147
|
label?: string | null | undefined;
|
|
1148
1148
|
};
|
|
1149
1149
|
}) | ({
|
|
1150
|
-
type:
|
|
1150
|
+
type: "Text";
|
|
1151
1151
|
} & {
|
|
1152
1152
|
fieldset?: string | null | undefined;
|
|
1153
1153
|
config?: {
|
|
@@ -1156,7 +1156,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1156
1156
|
placeholder?: string;
|
|
1157
1157
|
};
|
|
1158
1158
|
}) | ({
|
|
1159
|
-
type:
|
|
1159
|
+
type: "Timestamp";
|
|
1160
1160
|
} & {
|
|
1161
1161
|
fieldset?: string | null | undefined;
|
|
1162
1162
|
config?: {
|
|
@@ -1168,7 +1168,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1168
1168
|
};
|
|
1169
1169
|
items?: {
|
|
1170
1170
|
[x: string]: ({
|
|
1171
|
-
type:
|
|
1171
|
+
type: "Boolean";
|
|
1172
1172
|
} & {
|
|
1173
1173
|
config?: {
|
|
1174
1174
|
label?: string | null | undefined;
|
|
@@ -1177,7 +1177,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1177
1177
|
placeholder_false?: string;
|
|
1178
1178
|
};
|
|
1179
1179
|
}) | ({
|
|
1180
|
-
type:
|
|
1180
|
+
type: "Color";
|
|
1181
1181
|
} & {
|
|
1182
1182
|
fieldset?: string | null | undefined;
|
|
1183
1183
|
config?: {
|
|
@@ -1185,7 +1185,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1185
1185
|
placeholder?: string;
|
|
1186
1186
|
};
|
|
1187
1187
|
}) | ({
|
|
1188
|
-
type:
|
|
1188
|
+
type: "Date";
|
|
1189
1189
|
} & {
|
|
1190
1190
|
fieldset?: string | null | undefined;
|
|
1191
1191
|
config?: {
|
|
@@ -1194,7 +1194,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1194
1194
|
default?: string;
|
|
1195
1195
|
};
|
|
1196
1196
|
}) | ({
|
|
1197
|
-
type:
|
|
1197
|
+
type: "Embed";
|
|
1198
1198
|
} & {
|
|
1199
1199
|
fieldset?: string | null | undefined;
|
|
1200
1200
|
config?: {
|
|
@@ -1203,14 +1203,14 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1203
1203
|
useAsTitle?: boolean;
|
|
1204
1204
|
};
|
|
1205
1205
|
}) | ({
|
|
1206
|
-
type:
|
|
1206
|
+
type: "GeoPoint";
|
|
1207
1207
|
} & {
|
|
1208
1208
|
fieldset?: string | null | undefined;
|
|
1209
1209
|
config?: {
|
|
1210
1210
|
label?: string | null | undefined;
|
|
1211
1211
|
};
|
|
1212
1212
|
}) | ({
|
|
1213
|
-
type:
|
|
1213
|
+
type: "Image";
|
|
1214
1214
|
} & {
|
|
1215
1215
|
fieldset?: string | null | undefined;
|
|
1216
1216
|
config?: {
|
|
@@ -1220,7 +1220,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1220
1220
|
width?: number | null;
|
|
1221
1221
|
height?: number | null;
|
|
1222
1222
|
};
|
|
1223
|
-
thumbnails?: ({
|
|
1223
|
+
thumbnails?: readonly ({
|
|
1224
1224
|
name: string;
|
|
1225
1225
|
} & {
|
|
1226
1226
|
width?: number | null;
|
|
@@ -1228,7 +1228,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1228
1228
|
})[];
|
|
1229
1229
|
};
|
|
1230
1230
|
}) | ({
|
|
1231
|
-
type:
|
|
1231
|
+
type: "IntegrationFields";
|
|
1232
1232
|
} & {
|
|
1233
1233
|
fieldset?: string | null | undefined;
|
|
1234
1234
|
config?: {
|
|
@@ -1237,7 +1237,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1237
1237
|
catalog?: string;
|
|
1238
1238
|
};
|
|
1239
1239
|
}) | ({
|
|
1240
|
-
type:
|
|
1240
|
+
type: "Link";
|
|
1241
1241
|
} & {
|
|
1242
1242
|
fieldset?: string | null | undefined;
|
|
1243
1243
|
config?: {
|
|
@@ -1245,13 +1245,13 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1245
1245
|
useAsTitle?: boolean;
|
|
1246
1246
|
placeholder?: string;
|
|
1247
1247
|
select?: "media" | "document" | "web" | null;
|
|
1248
|
-
customtypes?: string[];
|
|
1249
|
-
masks?: string[];
|
|
1250
|
-
tags?: string[];
|
|
1248
|
+
customtypes?: readonly string[];
|
|
1249
|
+
masks?: readonly string[];
|
|
1250
|
+
tags?: readonly string[];
|
|
1251
1251
|
allowTargetBlank?: boolean;
|
|
1252
1252
|
};
|
|
1253
1253
|
}) | ({
|
|
1254
|
-
type:
|
|
1254
|
+
type: "Number";
|
|
1255
1255
|
} & {
|
|
1256
1256
|
fieldset?: string | null | undefined;
|
|
1257
1257
|
config?: {
|
|
@@ -1262,7 +1262,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1262
1262
|
step?: number;
|
|
1263
1263
|
};
|
|
1264
1264
|
}) | ({
|
|
1265
|
-
type:
|
|
1265
|
+
type: "Range";
|
|
1266
1266
|
} & {
|
|
1267
1267
|
fieldset?: string | null | undefined;
|
|
1268
1268
|
config?: {
|
|
@@ -1273,7 +1273,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1273
1273
|
step?: number;
|
|
1274
1274
|
};
|
|
1275
1275
|
}) | ({
|
|
1276
|
-
type:
|
|
1276
|
+
type: "StructuredText";
|
|
1277
1277
|
} & {
|
|
1278
1278
|
fieldset?: string | null | undefined;
|
|
1279
1279
|
config?: {
|
|
@@ -1286,27 +1286,27 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1286
1286
|
width?: number | null;
|
|
1287
1287
|
height?: number | null;
|
|
1288
1288
|
};
|
|
1289
|
-
labels?: string[];
|
|
1289
|
+
labels?: readonly string[];
|
|
1290
1290
|
allowTargetBlank?: boolean;
|
|
1291
1291
|
};
|
|
1292
1292
|
}) | ({
|
|
1293
|
-
type:
|
|
1293
|
+
type: "Select";
|
|
1294
1294
|
} & {
|
|
1295
1295
|
fieldset?: string | null | undefined;
|
|
1296
1296
|
config?: {
|
|
1297
1297
|
label?: string | null | undefined;
|
|
1298
1298
|
placeholder?: string;
|
|
1299
1299
|
default_value?: string;
|
|
1300
|
-
options?: string[];
|
|
1300
|
+
options?: readonly string[];
|
|
1301
1301
|
};
|
|
1302
1302
|
}) | ({
|
|
1303
|
-
type:
|
|
1303
|
+
type: "Separator";
|
|
1304
1304
|
} & {
|
|
1305
1305
|
config?: {
|
|
1306
1306
|
label?: string | null | undefined;
|
|
1307
1307
|
};
|
|
1308
1308
|
}) | ({
|
|
1309
|
-
type:
|
|
1309
|
+
type: "Text";
|
|
1310
1310
|
} & {
|
|
1311
1311
|
fieldset?: string | null | undefined;
|
|
1312
1312
|
config?: {
|
|
@@ -1315,7 +1315,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1315
1315
|
placeholder?: string;
|
|
1316
1316
|
};
|
|
1317
1317
|
}) | ({
|
|
1318
|
-
type:
|
|
1318
|
+
type: "Timestamp";
|
|
1319
1319
|
} & {
|
|
1320
1320
|
fieldset?: string | null | undefined;
|
|
1321
1321
|
config?: {
|
|
@@ -1332,7 +1332,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1332
1332
|
};
|
|
1333
1333
|
};
|
|
1334
1334
|
}) | ({
|
|
1335
|
-
type:
|
|
1335
|
+
type: "UID";
|
|
1336
1336
|
} & {
|
|
1337
1337
|
fieldset?: string | null | undefined;
|
|
1338
1338
|
config?: {
|
|
@@ -1343,7 +1343,7 @@ export declare const StaticSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1343
1343
|
}), unknown, unknown>>;
|
|
1344
1344
|
export declare type StaticSection = t.TypeOf<typeof StaticSection>;
|
|
1345
1345
|
export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
1346
|
-
type:
|
|
1346
|
+
type: "Boolean";
|
|
1347
1347
|
} & {
|
|
1348
1348
|
config?: {
|
|
1349
1349
|
label?: string | null | undefined;
|
|
@@ -1352,7 +1352,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1352
1352
|
placeholder_false?: string;
|
|
1353
1353
|
};
|
|
1354
1354
|
}) | ({
|
|
1355
|
-
type:
|
|
1355
|
+
type: "Color";
|
|
1356
1356
|
} & {
|
|
1357
1357
|
fieldset?: string | null | undefined;
|
|
1358
1358
|
config?: {
|
|
@@ -1360,7 +1360,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1360
1360
|
placeholder?: string;
|
|
1361
1361
|
};
|
|
1362
1362
|
}) | ({
|
|
1363
|
-
type:
|
|
1363
|
+
type: "Date";
|
|
1364
1364
|
} & {
|
|
1365
1365
|
fieldset?: string | null | undefined;
|
|
1366
1366
|
config?: {
|
|
@@ -1369,7 +1369,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1369
1369
|
default?: string;
|
|
1370
1370
|
};
|
|
1371
1371
|
}) | ({
|
|
1372
|
-
type:
|
|
1372
|
+
type: "Embed";
|
|
1373
1373
|
} & {
|
|
1374
1374
|
fieldset?: string | null | undefined;
|
|
1375
1375
|
config?: {
|
|
@@ -1378,14 +1378,14 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1378
1378
|
useAsTitle?: boolean;
|
|
1379
1379
|
};
|
|
1380
1380
|
}) | ({
|
|
1381
|
-
type:
|
|
1381
|
+
type: "GeoPoint";
|
|
1382
1382
|
} & {
|
|
1383
1383
|
fieldset?: string | null | undefined;
|
|
1384
1384
|
config?: {
|
|
1385
1385
|
label?: string | null | undefined;
|
|
1386
1386
|
};
|
|
1387
1387
|
}) | ({
|
|
1388
|
-
type:
|
|
1388
|
+
type: "Image";
|
|
1389
1389
|
} & {
|
|
1390
1390
|
fieldset?: string | null | undefined;
|
|
1391
1391
|
config?: {
|
|
@@ -1395,7 +1395,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1395
1395
|
width?: number | null;
|
|
1396
1396
|
height?: number | null;
|
|
1397
1397
|
};
|
|
1398
|
-
thumbnails?: ({
|
|
1398
|
+
thumbnails?: readonly ({
|
|
1399
1399
|
name: string;
|
|
1400
1400
|
} & {
|
|
1401
1401
|
width?: number | null;
|
|
@@ -1403,7 +1403,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1403
1403
|
})[];
|
|
1404
1404
|
};
|
|
1405
1405
|
}) | ({
|
|
1406
|
-
type:
|
|
1406
|
+
type: "IntegrationFields";
|
|
1407
1407
|
} & {
|
|
1408
1408
|
fieldset?: string | null | undefined;
|
|
1409
1409
|
config?: {
|
|
@@ -1412,7 +1412,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1412
1412
|
catalog?: string;
|
|
1413
1413
|
};
|
|
1414
1414
|
}) | ({
|
|
1415
|
-
type:
|
|
1415
|
+
type: "Link";
|
|
1416
1416
|
} & {
|
|
1417
1417
|
fieldset?: string | null | undefined;
|
|
1418
1418
|
config?: {
|
|
@@ -1420,13 +1420,13 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1420
1420
|
useAsTitle?: boolean;
|
|
1421
1421
|
placeholder?: string;
|
|
1422
1422
|
select?: "media" | "document" | "web" | null;
|
|
1423
|
-
customtypes?: string[];
|
|
1424
|
-
masks?: string[];
|
|
1425
|
-
tags?: string[];
|
|
1423
|
+
customtypes?: readonly string[];
|
|
1424
|
+
masks?: readonly string[];
|
|
1425
|
+
tags?: readonly string[];
|
|
1426
1426
|
allowTargetBlank?: boolean;
|
|
1427
1427
|
};
|
|
1428
1428
|
}) | ({
|
|
1429
|
-
type:
|
|
1429
|
+
type: "Number";
|
|
1430
1430
|
} & {
|
|
1431
1431
|
fieldset?: string | null | undefined;
|
|
1432
1432
|
config?: {
|
|
@@ -1437,7 +1437,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1437
1437
|
step?: number;
|
|
1438
1438
|
};
|
|
1439
1439
|
}) | ({
|
|
1440
|
-
type:
|
|
1440
|
+
type: "Range";
|
|
1441
1441
|
} & {
|
|
1442
1442
|
fieldset?: string | null | undefined;
|
|
1443
1443
|
config?: {
|
|
@@ -1448,7 +1448,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1448
1448
|
step?: number;
|
|
1449
1449
|
};
|
|
1450
1450
|
}) | ({
|
|
1451
|
-
type:
|
|
1451
|
+
type: "StructuredText";
|
|
1452
1452
|
} & {
|
|
1453
1453
|
fieldset?: string | null | undefined;
|
|
1454
1454
|
config?: {
|
|
@@ -1461,27 +1461,27 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1461
1461
|
width?: number | null;
|
|
1462
1462
|
height?: number | null;
|
|
1463
1463
|
};
|
|
1464
|
-
labels?: string[];
|
|
1464
|
+
labels?: readonly string[];
|
|
1465
1465
|
allowTargetBlank?: boolean;
|
|
1466
1466
|
};
|
|
1467
1467
|
}) | ({
|
|
1468
|
-
type:
|
|
1468
|
+
type: "Select";
|
|
1469
1469
|
} & {
|
|
1470
1470
|
fieldset?: string | null | undefined;
|
|
1471
1471
|
config?: {
|
|
1472
1472
|
label?: string | null | undefined;
|
|
1473
1473
|
placeholder?: string;
|
|
1474
1474
|
default_value?: string;
|
|
1475
|
-
options?: string[];
|
|
1475
|
+
options?: readonly string[];
|
|
1476
1476
|
};
|
|
1477
1477
|
}) | ({
|
|
1478
|
-
type:
|
|
1478
|
+
type: "Separator";
|
|
1479
1479
|
} & {
|
|
1480
1480
|
config?: {
|
|
1481
1481
|
label?: string | null | undefined;
|
|
1482
1482
|
};
|
|
1483
1483
|
}) | ({
|
|
1484
|
-
type:
|
|
1484
|
+
type: "Text";
|
|
1485
1485
|
} & {
|
|
1486
1486
|
fieldset?: string | null | undefined;
|
|
1487
1487
|
config?: {
|
|
@@ -1490,7 +1490,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1490
1490
|
placeholder?: string;
|
|
1491
1491
|
};
|
|
1492
1492
|
}) | ({
|
|
1493
|
-
type:
|
|
1493
|
+
type: "Timestamp";
|
|
1494
1494
|
} & {
|
|
1495
1495
|
fieldset?: string | null | undefined;
|
|
1496
1496
|
config?: {
|
|
@@ -1499,7 +1499,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1499
1499
|
default?: string;
|
|
1500
1500
|
};
|
|
1501
1501
|
}) | ({
|
|
1502
|
-
type:
|
|
1502
|
+
type: "Group";
|
|
1503
1503
|
} & {
|
|
1504
1504
|
fieldset?: string | null | undefined;
|
|
1505
1505
|
icon?: string;
|
|
@@ -1509,7 +1509,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1509
1509
|
repeat?: boolean;
|
|
1510
1510
|
fields?: {
|
|
1511
1511
|
[x: string]: ({
|
|
1512
|
-
type:
|
|
1512
|
+
type: "Boolean";
|
|
1513
1513
|
} & {
|
|
1514
1514
|
config?: {
|
|
1515
1515
|
label?: string | null | undefined;
|
|
@@ -1518,7 +1518,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1518
1518
|
placeholder_false?: string;
|
|
1519
1519
|
};
|
|
1520
1520
|
}) | ({
|
|
1521
|
-
type:
|
|
1521
|
+
type: "Color";
|
|
1522
1522
|
} & {
|
|
1523
1523
|
fieldset?: string | null | undefined;
|
|
1524
1524
|
config?: {
|
|
@@ -1526,7 +1526,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1526
1526
|
placeholder?: string;
|
|
1527
1527
|
};
|
|
1528
1528
|
}) | ({
|
|
1529
|
-
type:
|
|
1529
|
+
type: "Date";
|
|
1530
1530
|
} & {
|
|
1531
1531
|
fieldset?: string | null | undefined;
|
|
1532
1532
|
config?: {
|
|
@@ -1535,7 +1535,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1535
1535
|
default?: string;
|
|
1536
1536
|
};
|
|
1537
1537
|
}) | ({
|
|
1538
|
-
type:
|
|
1538
|
+
type: "Embed";
|
|
1539
1539
|
} & {
|
|
1540
1540
|
fieldset?: string | null | undefined;
|
|
1541
1541
|
config?: {
|
|
@@ -1544,14 +1544,14 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1544
1544
|
useAsTitle?: boolean;
|
|
1545
1545
|
};
|
|
1546
1546
|
}) | ({
|
|
1547
|
-
type:
|
|
1547
|
+
type: "GeoPoint";
|
|
1548
1548
|
} & {
|
|
1549
1549
|
fieldset?: string | null | undefined;
|
|
1550
1550
|
config?: {
|
|
1551
1551
|
label?: string | null | undefined;
|
|
1552
1552
|
};
|
|
1553
1553
|
}) | ({
|
|
1554
|
-
type:
|
|
1554
|
+
type: "Image";
|
|
1555
1555
|
} & {
|
|
1556
1556
|
fieldset?: string | null | undefined;
|
|
1557
1557
|
config?: {
|
|
@@ -1561,7 +1561,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1561
1561
|
width?: number | null;
|
|
1562
1562
|
height?: number | null;
|
|
1563
1563
|
};
|
|
1564
|
-
thumbnails?: ({
|
|
1564
|
+
thumbnails?: readonly ({
|
|
1565
1565
|
name: string;
|
|
1566
1566
|
} & {
|
|
1567
1567
|
width?: number | null;
|
|
@@ -1569,7 +1569,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1569
1569
|
})[];
|
|
1570
1570
|
};
|
|
1571
1571
|
}) | ({
|
|
1572
|
-
type:
|
|
1572
|
+
type: "IntegrationFields";
|
|
1573
1573
|
} & {
|
|
1574
1574
|
fieldset?: string | null | undefined;
|
|
1575
1575
|
config?: {
|
|
@@ -1578,7 +1578,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1578
1578
|
catalog?: string;
|
|
1579
1579
|
};
|
|
1580
1580
|
}) | ({
|
|
1581
|
-
type:
|
|
1581
|
+
type: "Link";
|
|
1582
1582
|
} & {
|
|
1583
1583
|
fieldset?: string | null | undefined;
|
|
1584
1584
|
config?: {
|
|
@@ -1586,13 +1586,13 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1586
1586
|
useAsTitle?: boolean;
|
|
1587
1587
|
placeholder?: string;
|
|
1588
1588
|
select?: "media" | "document" | "web" | null;
|
|
1589
|
-
customtypes?: string[];
|
|
1590
|
-
masks?: string[];
|
|
1591
|
-
tags?: string[];
|
|
1589
|
+
customtypes?: readonly string[];
|
|
1590
|
+
masks?: readonly string[];
|
|
1591
|
+
tags?: readonly string[];
|
|
1592
1592
|
allowTargetBlank?: boolean;
|
|
1593
1593
|
};
|
|
1594
1594
|
}) | ({
|
|
1595
|
-
type:
|
|
1595
|
+
type: "Number";
|
|
1596
1596
|
} & {
|
|
1597
1597
|
fieldset?: string | null | undefined;
|
|
1598
1598
|
config?: {
|
|
@@ -1603,7 +1603,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1603
1603
|
step?: number;
|
|
1604
1604
|
};
|
|
1605
1605
|
}) | ({
|
|
1606
|
-
type:
|
|
1606
|
+
type: "Range";
|
|
1607
1607
|
} & {
|
|
1608
1608
|
fieldset?: string | null | undefined;
|
|
1609
1609
|
config?: {
|
|
@@ -1614,7 +1614,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1614
1614
|
step?: number;
|
|
1615
1615
|
};
|
|
1616
1616
|
}) | ({
|
|
1617
|
-
type:
|
|
1617
|
+
type: "StructuredText";
|
|
1618
1618
|
} & {
|
|
1619
1619
|
fieldset?: string | null | undefined;
|
|
1620
1620
|
config?: {
|
|
@@ -1627,27 +1627,27 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1627
1627
|
width?: number | null;
|
|
1628
1628
|
height?: number | null;
|
|
1629
1629
|
};
|
|
1630
|
-
labels?: string[];
|
|
1630
|
+
labels?: readonly string[];
|
|
1631
1631
|
allowTargetBlank?: boolean;
|
|
1632
1632
|
};
|
|
1633
1633
|
}) | ({
|
|
1634
|
-
type:
|
|
1634
|
+
type: "Select";
|
|
1635
1635
|
} & {
|
|
1636
1636
|
fieldset?: string | null | undefined;
|
|
1637
1637
|
config?: {
|
|
1638
1638
|
label?: string | null | undefined;
|
|
1639
1639
|
placeholder?: string;
|
|
1640
1640
|
default_value?: string;
|
|
1641
|
-
options?: string[];
|
|
1641
|
+
options?: readonly string[];
|
|
1642
1642
|
};
|
|
1643
1643
|
}) | ({
|
|
1644
|
-
type:
|
|
1644
|
+
type: "Separator";
|
|
1645
1645
|
} & {
|
|
1646
1646
|
config?: {
|
|
1647
1647
|
label?: string | null | undefined;
|
|
1648
1648
|
};
|
|
1649
1649
|
}) | ({
|
|
1650
|
-
type:
|
|
1650
|
+
type: "Text";
|
|
1651
1651
|
} & {
|
|
1652
1652
|
fieldset?: string | null | undefined;
|
|
1653
1653
|
config?: {
|
|
@@ -1656,7 +1656,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1656
1656
|
placeholder?: string;
|
|
1657
1657
|
};
|
|
1658
1658
|
}) | ({
|
|
1659
|
-
type:
|
|
1659
|
+
type: "Timestamp";
|
|
1660
1660
|
} & {
|
|
1661
1661
|
fieldset?: string | null | undefined;
|
|
1662
1662
|
config?: {
|
|
@@ -1668,13 +1668,13 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1668
1668
|
};
|
|
1669
1669
|
};
|
|
1670
1670
|
}) | ({
|
|
1671
|
-
type:
|
|
1671
|
+
type: "Slices" | "Choice";
|
|
1672
1672
|
} & {
|
|
1673
1673
|
fieldset?: string | null | undefined;
|
|
1674
1674
|
config?: {
|
|
1675
1675
|
label?: string | null | undefined;
|
|
1676
1676
|
labels?: {
|
|
1677
|
-
[x: string]: ({
|
|
1677
|
+
[x: string]: readonly ({
|
|
1678
1678
|
name: string;
|
|
1679
1679
|
} & {
|
|
1680
1680
|
display?: string;
|
|
@@ -1682,7 +1682,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1682
1682
|
} | null;
|
|
1683
1683
|
choices?: {
|
|
1684
1684
|
[x: string]: ({
|
|
1685
|
-
type:
|
|
1685
|
+
type: "Boolean";
|
|
1686
1686
|
} & {
|
|
1687
1687
|
config?: {
|
|
1688
1688
|
label?: string | null | undefined;
|
|
@@ -1691,7 +1691,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1691
1691
|
placeholder_false?: string;
|
|
1692
1692
|
};
|
|
1693
1693
|
}) | ({
|
|
1694
|
-
type:
|
|
1694
|
+
type: "Color";
|
|
1695
1695
|
} & {
|
|
1696
1696
|
fieldset?: string | null | undefined;
|
|
1697
1697
|
config?: {
|
|
@@ -1699,7 +1699,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1699
1699
|
placeholder?: string;
|
|
1700
1700
|
};
|
|
1701
1701
|
}) | ({
|
|
1702
|
-
type:
|
|
1702
|
+
type: "Date";
|
|
1703
1703
|
} & {
|
|
1704
1704
|
fieldset?: string | null | undefined;
|
|
1705
1705
|
config?: {
|
|
@@ -1708,7 +1708,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1708
1708
|
default?: string;
|
|
1709
1709
|
};
|
|
1710
1710
|
}) | ({
|
|
1711
|
-
type:
|
|
1711
|
+
type: "Embed";
|
|
1712
1712
|
} & {
|
|
1713
1713
|
fieldset?: string | null | undefined;
|
|
1714
1714
|
config?: {
|
|
@@ -1717,14 +1717,14 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1717
1717
|
useAsTitle?: boolean;
|
|
1718
1718
|
};
|
|
1719
1719
|
}) | ({
|
|
1720
|
-
type:
|
|
1720
|
+
type: "GeoPoint";
|
|
1721
1721
|
} & {
|
|
1722
1722
|
fieldset?: string | null | undefined;
|
|
1723
1723
|
config?: {
|
|
1724
1724
|
label?: string | null | undefined;
|
|
1725
1725
|
};
|
|
1726
1726
|
}) | ({
|
|
1727
|
-
type:
|
|
1727
|
+
type: "Image";
|
|
1728
1728
|
} & {
|
|
1729
1729
|
fieldset?: string | null | undefined;
|
|
1730
1730
|
config?: {
|
|
@@ -1734,7 +1734,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1734
1734
|
width?: number | null;
|
|
1735
1735
|
height?: number | null;
|
|
1736
1736
|
};
|
|
1737
|
-
thumbnails?: ({
|
|
1737
|
+
thumbnails?: readonly ({
|
|
1738
1738
|
name: string;
|
|
1739
1739
|
} & {
|
|
1740
1740
|
width?: number | null;
|
|
@@ -1742,7 +1742,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1742
1742
|
})[];
|
|
1743
1743
|
};
|
|
1744
1744
|
}) | ({
|
|
1745
|
-
type:
|
|
1745
|
+
type: "IntegrationFields";
|
|
1746
1746
|
} & {
|
|
1747
1747
|
fieldset?: string | null | undefined;
|
|
1748
1748
|
config?: {
|
|
@@ -1751,7 +1751,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1751
1751
|
catalog?: string;
|
|
1752
1752
|
};
|
|
1753
1753
|
}) | ({
|
|
1754
|
-
type:
|
|
1754
|
+
type: "Link";
|
|
1755
1755
|
} & {
|
|
1756
1756
|
fieldset?: string | null | undefined;
|
|
1757
1757
|
config?: {
|
|
@@ -1759,13 +1759,13 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1759
1759
|
useAsTitle?: boolean;
|
|
1760
1760
|
placeholder?: string;
|
|
1761
1761
|
select?: "media" | "document" | "web" | null;
|
|
1762
|
-
customtypes?: string[];
|
|
1763
|
-
masks?: string[];
|
|
1764
|
-
tags?: string[];
|
|
1762
|
+
customtypes?: readonly string[];
|
|
1763
|
+
masks?: readonly string[];
|
|
1764
|
+
tags?: readonly string[];
|
|
1765
1765
|
allowTargetBlank?: boolean;
|
|
1766
1766
|
};
|
|
1767
1767
|
}) | ({
|
|
1768
|
-
type:
|
|
1768
|
+
type: "Number";
|
|
1769
1769
|
} & {
|
|
1770
1770
|
fieldset?: string | null | undefined;
|
|
1771
1771
|
config?: {
|
|
@@ -1776,7 +1776,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1776
1776
|
step?: number;
|
|
1777
1777
|
};
|
|
1778
1778
|
}) | ({
|
|
1779
|
-
type:
|
|
1779
|
+
type: "Range";
|
|
1780
1780
|
} & {
|
|
1781
1781
|
fieldset?: string | null | undefined;
|
|
1782
1782
|
config?: {
|
|
@@ -1787,7 +1787,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1787
1787
|
step?: number;
|
|
1788
1788
|
};
|
|
1789
1789
|
}) | ({
|
|
1790
|
-
type:
|
|
1790
|
+
type: "StructuredText";
|
|
1791
1791
|
} & {
|
|
1792
1792
|
fieldset?: string | null | undefined;
|
|
1793
1793
|
config?: {
|
|
@@ -1800,27 +1800,27 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1800
1800
|
width?: number | null;
|
|
1801
1801
|
height?: number | null;
|
|
1802
1802
|
};
|
|
1803
|
-
labels?: string[];
|
|
1803
|
+
labels?: readonly string[];
|
|
1804
1804
|
allowTargetBlank?: boolean;
|
|
1805
1805
|
};
|
|
1806
1806
|
}) | ({
|
|
1807
|
-
type:
|
|
1807
|
+
type: "Select";
|
|
1808
1808
|
} & {
|
|
1809
1809
|
fieldset?: string | null | undefined;
|
|
1810
1810
|
config?: {
|
|
1811
1811
|
label?: string | null | undefined;
|
|
1812
1812
|
placeholder?: string;
|
|
1813
1813
|
default_value?: string;
|
|
1814
|
-
options?: string[];
|
|
1814
|
+
options?: readonly string[];
|
|
1815
1815
|
};
|
|
1816
1816
|
}) | ({
|
|
1817
|
-
type:
|
|
1817
|
+
type: "Separator";
|
|
1818
1818
|
} & {
|
|
1819
1819
|
config?: {
|
|
1820
1820
|
label?: string | null | undefined;
|
|
1821
1821
|
};
|
|
1822
1822
|
}) | ({
|
|
1823
|
-
type:
|
|
1823
|
+
type: "Text";
|
|
1824
1824
|
} & {
|
|
1825
1825
|
fieldset?: string | null | undefined;
|
|
1826
1826
|
config?: {
|
|
@@ -1829,7 +1829,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1829
1829
|
placeholder?: string;
|
|
1830
1830
|
};
|
|
1831
1831
|
}) | ({
|
|
1832
|
-
type:
|
|
1832
|
+
type: "Timestamp";
|
|
1833
1833
|
} & {
|
|
1834
1834
|
fieldset?: string | null | undefined;
|
|
1835
1835
|
config?: {
|
|
@@ -1838,7 +1838,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1838
1838
|
default?: string;
|
|
1839
1839
|
};
|
|
1840
1840
|
}) | ({
|
|
1841
|
-
type:
|
|
1841
|
+
type: "Slice";
|
|
1842
1842
|
} & {
|
|
1843
1843
|
fieldset?: string | null | undefined;
|
|
1844
1844
|
description?: string;
|
|
@@ -1846,7 +1846,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1846
1846
|
display?: string;
|
|
1847
1847
|
"non-repeat"?: {
|
|
1848
1848
|
[x: string]: ({
|
|
1849
|
-
type:
|
|
1849
|
+
type: "Boolean";
|
|
1850
1850
|
} & {
|
|
1851
1851
|
config?: {
|
|
1852
1852
|
label?: string | null | undefined;
|
|
@@ -1855,7 +1855,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1855
1855
|
placeholder_false?: string;
|
|
1856
1856
|
};
|
|
1857
1857
|
}) | ({
|
|
1858
|
-
type:
|
|
1858
|
+
type: "Color";
|
|
1859
1859
|
} & {
|
|
1860
1860
|
fieldset?: string | null | undefined;
|
|
1861
1861
|
config?: {
|
|
@@ -1863,7 +1863,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1863
1863
|
placeholder?: string;
|
|
1864
1864
|
};
|
|
1865
1865
|
}) | ({
|
|
1866
|
-
type:
|
|
1866
|
+
type: "Date";
|
|
1867
1867
|
} & {
|
|
1868
1868
|
fieldset?: string | null | undefined;
|
|
1869
1869
|
config?: {
|
|
@@ -1872,7 +1872,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1872
1872
|
default?: string;
|
|
1873
1873
|
};
|
|
1874
1874
|
}) | ({
|
|
1875
|
-
type:
|
|
1875
|
+
type: "Embed";
|
|
1876
1876
|
} & {
|
|
1877
1877
|
fieldset?: string | null | undefined;
|
|
1878
1878
|
config?: {
|
|
@@ -1881,14 +1881,14 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1881
1881
|
useAsTitle?: boolean;
|
|
1882
1882
|
};
|
|
1883
1883
|
}) | ({
|
|
1884
|
-
type:
|
|
1884
|
+
type: "GeoPoint";
|
|
1885
1885
|
} & {
|
|
1886
1886
|
fieldset?: string | null | undefined;
|
|
1887
1887
|
config?: {
|
|
1888
1888
|
label?: string | null | undefined;
|
|
1889
1889
|
};
|
|
1890
1890
|
}) | ({
|
|
1891
|
-
type:
|
|
1891
|
+
type: "Image";
|
|
1892
1892
|
} & {
|
|
1893
1893
|
fieldset?: string | null | undefined;
|
|
1894
1894
|
config?: {
|
|
@@ -1898,7 +1898,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1898
1898
|
width?: number | null;
|
|
1899
1899
|
height?: number | null;
|
|
1900
1900
|
};
|
|
1901
|
-
thumbnails?: ({
|
|
1901
|
+
thumbnails?: readonly ({
|
|
1902
1902
|
name: string;
|
|
1903
1903
|
} & {
|
|
1904
1904
|
width?: number | null;
|
|
@@ -1906,7 +1906,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1906
1906
|
})[];
|
|
1907
1907
|
};
|
|
1908
1908
|
}) | ({
|
|
1909
|
-
type:
|
|
1909
|
+
type: "IntegrationFields";
|
|
1910
1910
|
} & {
|
|
1911
1911
|
fieldset?: string | null | undefined;
|
|
1912
1912
|
config?: {
|
|
@@ -1915,7 +1915,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1915
1915
|
catalog?: string;
|
|
1916
1916
|
};
|
|
1917
1917
|
}) | ({
|
|
1918
|
-
type:
|
|
1918
|
+
type: "Link";
|
|
1919
1919
|
} & {
|
|
1920
1920
|
fieldset?: string | null | undefined;
|
|
1921
1921
|
config?: {
|
|
@@ -1923,13 +1923,13 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1923
1923
|
useAsTitle?: boolean;
|
|
1924
1924
|
placeholder?: string;
|
|
1925
1925
|
select?: "media" | "document" | "web" | null;
|
|
1926
|
-
customtypes?: string[];
|
|
1927
|
-
masks?: string[];
|
|
1928
|
-
tags?: string[];
|
|
1926
|
+
customtypes?: readonly string[];
|
|
1927
|
+
masks?: readonly string[];
|
|
1928
|
+
tags?: readonly string[];
|
|
1929
1929
|
allowTargetBlank?: boolean;
|
|
1930
1930
|
};
|
|
1931
1931
|
}) | ({
|
|
1932
|
-
type:
|
|
1932
|
+
type: "Number";
|
|
1933
1933
|
} & {
|
|
1934
1934
|
fieldset?: string | null | undefined;
|
|
1935
1935
|
config?: {
|
|
@@ -1940,7 +1940,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1940
1940
|
step?: number;
|
|
1941
1941
|
};
|
|
1942
1942
|
}) | ({
|
|
1943
|
-
type:
|
|
1943
|
+
type: "Range";
|
|
1944
1944
|
} & {
|
|
1945
1945
|
fieldset?: string | null | undefined;
|
|
1946
1946
|
config?: {
|
|
@@ -1951,7 +1951,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1951
1951
|
step?: number;
|
|
1952
1952
|
};
|
|
1953
1953
|
}) | ({
|
|
1954
|
-
type:
|
|
1954
|
+
type: "StructuredText";
|
|
1955
1955
|
} & {
|
|
1956
1956
|
fieldset?: string | null | undefined;
|
|
1957
1957
|
config?: {
|
|
@@ -1964,27 +1964,27 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1964
1964
|
width?: number | null;
|
|
1965
1965
|
height?: number | null;
|
|
1966
1966
|
};
|
|
1967
|
-
labels?: string[];
|
|
1967
|
+
labels?: readonly string[];
|
|
1968
1968
|
allowTargetBlank?: boolean;
|
|
1969
1969
|
};
|
|
1970
1970
|
}) | ({
|
|
1971
|
-
type:
|
|
1971
|
+
type: "Select";
|
|
1972
1972
|
} & {
|
|
1973
1973
|
fieldset?: string | null | undefined;
|
|
1974
1974
|
config?: {
|
|
1975
1975
|
label?: string | null | undefined;
|
|
1976
1976
|
placeholder?: string;
|
|
1977
1977
|
default_value?: string;
|
|
1978
|
-
options?: string[];
|
|
1978
|
+
options?: readonly string[];
|
|
1979
1979
|
};
|
|
1980
1980
|
}) | ({
|
|
1981
|
-
type:
|
|
1981
|
+
type: "Separator";
|
|
1982
1982
|
} & {
|
|
1983
1983
|
config?: {
|
|
1984
1984
|
label?: string | null | undefined;
|
|
1985
1985
|
};
|
|
1986
1986
|
}) | ({
|
|
1987
|
-
type:
|
|
1987
|
+
type: "Text";
|
|
1988
1988
|
} & {
|
|
1989
1989
|
fieldset?: string | null | undefined;
|
|
1990
1990
|
config?: {
|
|
@@ -1993,7 +1993,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
1993
1993
|
placeholder?: string;
|
|
1994
1994
|
};
|
|
1995
1995
|
}) | ({
|
|
1996
|
-
type:
|
|
1996
|
+
type: "Timestamp";
|
|
1997
1997
|
} & {
|
|
1998
1998
|
fieldset?: string | null | undefined;
|
|
1999
1999
|
config?: {
|
|
@@ -2005,7 +2005,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2005
2005
|
};
|
|
2006
2006
|
repeat?: {
|
|
2007
2007
|
[x: string]: ({
|
|
2008
|
-
type:
|
|
2008
|
+
type: "Boolean";
|
|
2009
2009
|
} & {
|
|
2010
2010
|
config?: {
|
|
2011
2011
|
label?: string | null | undefined;
|
|
@@ -2014,7 +2014,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2014
2014
|
placeholder_false?: string;
|
|
2015
2015
|
};
|
|
2016
2016
|
}) | ({
|
|
2017
|
-
type:
|
|
2017
|
+
type: "Color";
|
|
2018
2018
|
} & {
|
|
2019
2019
|
fieldset?: string | null | undefined;
|
|
2020
2020
|
config?: {
|
|
@@ -2022,7 +2022,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2022
2022
|
placeholder?: string;
|
|
2023
2023
|
};
|
|
2024
2024
|
}) | ({
|
|
2025
|
-
type:
|
|
2025
|
+
type: "Date";
|
|
2026
2026
|
} & {
|
|
2027
2027
|
fieldset?: string | null | undefined;
|
|
2028
2028
|
config?: {
|
|
@@ -2031,7 +2031,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2031
2031
|
default?: string;
|
|
2032
2032
|
};
|
|
2033
2033
|
}) | ({
|
|
2034
|
-
type:
|
|
2034
|
+
type: "Embed";
|
|
2035
2035
|
} & {
|
|
2036
2036
|
fieldset?: string | null | undefined;
|
|
2037
2037
|
config?: {
|
|
@@ -2040,14 +2040,14 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2040
2040
|
useAsTitle?: boolean;
|
|
2041
2041
|
};
|
|
2042
2042
|
}) | ({
|
|
2043
|
-
type:
|
|
2043
|
+
type: "GeoPoint";
|
|
2044
2044
|
} & {
|
|
2045
2045
|
fieldset?: string | null | undefined;
|
|
2046
2046
|
config?: {
|
|
2047
2047
|
label?: string | null | undefined;
|
|
2048
2048
|
};
|
|
2049
2049
|
}) | ({
|
|
2050
|
-
type:
|
|
2050
|
+
type: "Image";
|
|
2051
2051
|
} & {
|
|
2052
2052
|
fieldset?: string | null | undefined;
|
|
2053
2053
|
config?: {
|
|
@@ -2057,7 +2057,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2057
2057
|
width?: number | null;
|
|
2058
2058
|
height?: number | null;
|
|
2059
2059
|
};
|
|
2060
|
-
thumbnails?: ({
|
|
2060
|
+
thumbnails?: readonly ({
|
|
2061
2061
|
name: string;
|
|
2062
2062
|
} & {
|
|
2063
2063
|
width?: number | null;
|
|
@@ -2065,7 +2065,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2065
2065
|
})[];
|
|
2066
2066
|
};
|
|
2067
2067
|
}) | ({
|
|
2068
|
-
type:
|
|
2068
|
+
type: "IntegrationFields";
|
|
2069
2069
|
} & {
|
|
2070
2070
|
fieldset?: string | null | undefined;
|
|
2071
2071
|
config?: {
|
|
@@ -2074,7 +2074,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2074
2074
|
catalog?: string;
|
|
2075
2075
|
};
|
|
2076
2076
|
}) | ({
|
|
2077
|
-
type:
|
|
2077
|
+
type: "Link";
|
|
2078
2078
|
} & {
|
|
2079
2079
|
fieldset?: string | null | undefined;
|
|
2080
2080
|
config?: {
|
|
@@ -2082,13 +2082,13 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2082
2082
|
useAsTitle?: boolean;
|
|
2083
2083
|
placeholder?: string;
|
|
2084
2084
|
select?: "media" | "document" | "web" | null;
|
|
2085
|
-
customtypes?: string[];
|
|
2086
|
-
masks?: string[];
|
|
2087
|
-
tags?: string[];
|
|
2085
|
+
customtypes?: readonly string[];
|
|
2086
|
+
masks?: readonly string[];
|
|
2087
|
+
tags?: readonly string[];
|
|
2088
2088
|
allowTargetBlank?: boolean;
|
|
2089
2089
|
};
|
|
2090
2090
|
}) | ({
|
|
2091
|
-
type:
|
|
2091
|
+
type: "Number";
|
|
2092
2092
|
} & {
|
|
2093
2093
|
fieldset?: string | null | undefined;
|
|
2094
2094
|
config?: {
|
|
@@ -2099,7 +2099,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2099
2099
|
step?: number;
|
|
2100
2100
|
};
|
|
2101
2101
|
}) | ({
|
|
2102
|
-
type:
|
|
2102
|
+
type: "Range";
|
|
2103
2103
|
} & {
|
|
2104
2104
|
fieldset?: string | null | undefined;
|
|
2105
2105
|
config?: {
|
|
@@ -2110,7 +2110,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2110
2110
|
step?: number;
|
|
2111
2111
|
};
|
|
2112
2112
|
}) | ({
|
|
2113
|
-
type:
|
|
2113
|
+
type: "StructuredText";
|
|
2114
2114
|
} & {
|
|
2115
2115
|
fieldset?: string | null | undefined;
|
|
2116
2116
|
config?: {
|
|
@@ -2123,27 +2123,27 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2123
2123
|
width?: number | null;
|
|
2124
2124
|
height?: number | null;
|
|
2125
2125
|
};
|
|
2126
|
-
labels?: string[];
|
|
2126
|
+
labels?: readonly string[];
|
|
2127
2127
|
allowTargetBlank?: boolean;
|
|
2128
2128
|
};
|
|
2129
2129
|
}) | ({
|
|
2130
|
-
type:
|
|
2130
|
+
type: "Select";
|
|
2131
2131
|
} & {
|
|
2132
2132
|
fieldset?: string | null | undefined;
|
|
2133
2133
|
config?: {
|
|
2134
2134
|
label?: string | null | undefined;
|
|
2135
2135
|
placeholder?: string;
|
|
2136
2136
|
default_value?: string;
|
|
2137
|
-
options?: string[];
|
|
2137
|
+
options?: readonly string[];
|
|
2138
2138
|
};
|
|
2139
2139
|
}) | ({
|
|
2140
|
-
type:
|
|
2140
|
+
type: "Separator";
|
|
2141
2141
|
} & {
|
|
2142
2142
|
config?: {
|
|
2143
2143
|
label?: string | null | undefined;
|
|
2144
2144
|
};
|
|
2145
2145
|
}) | ({
|
|
2146
|
-
type:
|
|
2146
|
+
type: "Text";
|
|
2147
2147
|
} & {
|
|
2148
2148
|
fieldset?: string | null | undefined;
|
|
2149
2149
|
config?: {
|
|
@@ -2152,7 +2152,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2152
2152
|
placeholder?: string;
|
|
2153
2153
|
};
|
|
2154
2154
|
}) | ({
|
|
2155
|
-
type:
|
|
2155
|
+
type: "Timestamp";
|
|
2156
2156
|
} & {
|
|
2157
2157
|
fieldset?: string | null | undefined;
|
|
2158
2158
|
config?: {
|
|
@@ -2166,7 +2166,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2166
2166
|
label?: string | null | undefined;
|
|
2167
2167
|
};
|
|
2168
2168
|
}) | ({
|
|
2169
|
-
type:
|
|
2169
|
+
type: "Group";
|
|
2170
2170
|
} & {
|
|
2171
2171
|
fieldset?: string | null | undefined;
|
|
2172
2172
|
icon?: string;
|
|
@@ -2176,7 +2176,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2176
2176
|
repeat?: boolean;
|
|
2177
2177
|
fields?: {
|
|
2178
2178
|
[x: string]: ({
|
|
2179
|
-
type:
|
|
2179
|
+
type: "Boolean";
|
|
2180
2180
|
} & {
|
|
2181
2181
|
config?: {
|
|
2182
2182
|
label?: string | null | undefined;
|
|
@@ -2185,7 +2185,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2185
2185
|
placeholder_false?: string;
|
|
2186
2186
|
};
|
|
2187
2187
|
}) | ({
|
|
2188
|
-
type:
|
|
2188
|
+
type: "Color";
|
|
2189
2189
|
} & {
|
|
2190
2190
|
fieldset?: string | null | undefined;
|
|
2191
2191
|
config?: {
|
|
@@ -2193,7 +2193,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2193
2193
|
placeholder?: string;
|
|
2194
2194
|
};
|
|
2195
2195
|
}) | ({
|
|
2196
|
-
type:
|
|
2196
|
+
type: "Date";
|
|
2197
2197
|
} & {
|
|
2198
2198
|
fieldset?: string | null | undefined;
|
|
2199
2199
|
config?: {
|
|
@@ -2202,7 +2202,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2202
2202
|
default?: string;
|
|
2203
2203
|
};
|
|
2204
2204
|
}) | ({
|
|
2205
|
-
type:
|
|
2205
|
+
type: "Embed";
|
|
2206
2206
|
} & {
|
|
2207
2207
|
fieldset?: string | null | undefined;
|
|
2208
2208
|
config?: {
|
|
@@ -2211,14 +2211,14 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2211
2211
|
useAsTitle?: boolean;
|
|
2212
2212
|
};
|
|
2213
2213
|
}) | ({
|
|
2214
|
-
type:
|
|
2214
|
+
type: "GeoPoint";
|
|
2215
2215
|
} & {
|
|
2216
2216
|
fieldset?: string | null | undefined;
|
|
2217
2217
|
config?: {
|
|
2218
2218
|
label?: string | null | undefined;
|
|
2219
2219
|
};
|
|
2220
2220
|
}) | ({
|
|
2221
|
-
type:
|
|
2221
|
+
type: "Image";
|
|
2222
2222
|
} & {
|
|
2223
2223
|
fieldset?: string | null | undefined;
|
|
2224
2224
|
config?: {
|
|
@@ -2228,7 +2228,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2228
2228
|
width?: number | null;
|
|
2229
2229
|
height?: number | null;
|
|
2230
2230
|
};
|
|
2231
|
-
thumbnails?: ({
|
|
2231
|
+
thumbnails?: readonly ({
|
|
2232
2232
|
name: string;
|
|
2233
2233
|
} & {
|
|
2234
2234
|
width?: number | null;
|
|
@@ -2236,7 +2236,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2236
2236
|
})[];
|
|
2237
2237
|
};
|
|
2238
2238
|
}) | ({
|
|
2239
|
-
type:
|
|
2239
|
+
type: "IntegrationFields";
|
|
2240
2240
|
} & {
|
|
2241
2241
|
fieldset?: string | null | undefined;
|
|
2242
2242
|
config?: {
|
|
@@ -2245,7 +2245,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2245
2245
|
catalog?: string;
|
|
2246
2246
|
};
|
|
2247
2247
|
}) | ({
|
|
2248
|
-
type:
|
|
2248
|
+
type: "Link";
|
|
2249
2249
|
} & {
|
|
2250
2250
|
fieldset?: string | null | undefined;
|
|
2251
2251
|
config?: {
|
|
@@ -2253,13 +2253,13 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2253
2253
|
useAsTitle?: boolean;
|
|
2254
2254
|
placeholder?: string;
|
|
2255
2255
|
select?: "media" | "document" | "web" | null;
|
|
2256
|
-
customtypes?: string[];
|
|
2257
|
-
masks?: string[];
|
|
2258
|
-
tags?: string[];
|
|
2256
|
+
customtypes?: readonly string[];
|
|
2257
|
+
masks?: readonly string[];
|
|
2258
|
+
tags?: readonly string[];
|
|
2259
2259
|
allowTargetBlank?: boolean;
|
|
2260
2260
|
};
|
|
2261
2261
|
}) | ({
|
|
2262
|
-
type:
|
|
2262
|
+
type: "Number";
|
|
2263
2263
|
} & {
|
|
2264
2264
|
fieldset?: string | null | undefined;
|
|
2265
2265
|
config?: {
|
|
@@ -2270,7 +2270,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2270
2270
|
step?: number;
|
|
2271
2271
|
};
|
|
2272
2272
|
}) | ({
|
|
2273
|
-
type:
|
|
2273
|
+
type: "Range";
|
|
2274
2274
|
} & {
|
|
2275
2275
|
fieldset?: string | null | undefined;
|
|
2276
2276
|
config?: {
|
|
@@ -2281,7 +2281,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2281
2281
|
step?: number;
|
|
2282
2282
|
};
|
|
2283
2283
|
}) | ({
|
|
2284
|
-
type:
|
|
2284
|
+
type: "StructuredText";
|
|
2285
2285
|
} & {
|
|
2286
2286
|
fieldset?: string | null | undefined;
|
|
2287
2287
|
config?: {
|
|
@@ -2294,27 +2294,27 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2294
2294
|
width?: number | null;
|
|
2295
2295
|
height?: number | null;
|
|
2296
2296
|
};
|
|
2297
|
-
labels?: string[];
|
|
2297
|
+
labels?: readonly string[];
|
|
2298
2298
|
allowTargetBlank?: boolean;
|
|
2299
2299
|
};
|
|
2300
2300
|
}) | ({
|
|
2301
|
-
type:
|
|
2301
|
+
type: "Select";
|
|
2302
2302
|
} & {
|
|
2303
2303
|
fieldset?: string | null | undefined;
|
|
2304
2304
|
config?: {
|
|
2305
2305
|
label?: string | null | undefined;
|
|
2306
2306
|
placeholder?: string;
|
|
2307
2307
|
default_value?: string;
|
|
2308
|
-
options?: string[];
|
|
2308
|
+
options?: readonly string[];
|
|
2309
2309
|
};
|
|
2310
2310
|
}) | ({
|
|
2311
|
-
type:
|
|
2311
|
+
type: "Separator";
|
|
2312
2312
|
} & {
|
|
2313
2313
|
config?: {
|
|
2314
2314
|
label?: string | null | undefined;
|
|
2315
2315
|
};
|
|
2316
2316
|
}) | ({
|
|
2317
|
-
type:
|
|
2317
|
+
type: "Text";
|
|
2318
2318
|
} & {
|
|
2319
2319
|
fieldset?: string | null | undefined;
|
|
2320
2320
|
config?: {
|
|
@@ -2323,7 +2323,7 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2323
2323
|
placeholder?: string;
|
|
2324
2324
|
};
|
|
2325
2325
|
}) | ({
|
|
2326
|
-
type:
|
|
2326
|
+
type: "Timestamp";
|
|
2327
2327
|
} & {
|
|
2328
2328
|
fieldset?: string | null | undefined;
|
|
2329
2329
|
config?: {
|
|
@@ -2335,12 +2335,12 @@ export declare const DynamicSection: t.RecordC<t.StringC, t.Type<({
|
|
|
2335
2335
|
};
|
|
2336
2336
|
};
|
|
2337
2337
|
}) | {
|
|
2338
|
-
type:
|
|
2338
|
+
type: "SharedSlice";
|
|
2339
2339
|
};
|
|
2340
2340
|
};
|
|
2341
2341
|
};
|
|
2342
2342
|
}) | ({
|
|
2343
|
-
type:
|
|
2343
|
+
type: "UID";
|
|
2344
2344
|
} & {
|
|
2345
2345
|
fieldset?: string | null | undefined;
|
|
2346
2346
|
config?: {
|