@prismicio/types-internal 4.0.0-pr.7.9dec8db → 4.0.0-pr.9.e09af2c
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/content/boolean.d.ts.map +1 -1
- package/dist/content/boolean.js.map +1 -1
- package/dist/content/field.d.ts.map +1 -1
- package/dist/content/field.js +1 -1
- package/dist/content/field.js.map +1 -1
- package/dist/content/group.d.ts.map +1 -1
- package/dist/content/group.js.map +1 -1
- package/dist/content/nestable.d.ts.map +1 -1
- package/dist/content/nestable.js.map +1 -1
- package/dist/helpers/traverseContent.d.ts +4 -4
- package/dist/helpers/traverseContent.d.ts.map +1 -1
- package/dist/helpers/traverseContent.js +4 -2
- package/dist/helpers/traverseContent.js.map +1 -1
- package/dist/helpers/traverseContentWithModel.d.ts +4 -4
- package/dist/helpers/withDefaultContent.d.ts +17 -0
- package/dist/helpers/withDefaultContent.d.ts.map +1 -0
- package/dist/helpers/withDefaultContent.js +113 -0
- package/dist/helpers/withDefaultContent.js.map +1 -0
- package/dist/index.d.ts +21 -20
- package/dist/index.js +2 -1
- package/dist/io-ts.d.ts +1067 -322
- package/dist/io-ts.d.ts.map +1 -1
- package/dist/io-ts.js +3 -2
- package/dist/io-ts.js.map +1 -1
- package/dist/model/slice.d.ts +1251 -643
- package/dist/model/slice.d.ts.map +1 -1
- package/dist/model/slice.js +4 -4
- package/dist/model/slice.js.map +1 -1
- package/dist/model/widget.d.ts +1 -3
- package/dist/model/widget.d.ts.map +1 -1
- package/dist/model/widget.js +5 -2
- package/dist/model/widget.js.map +1 -1
- package/dist/zod4.d.ts +909 -322
- package/dist/zod4.d.ts.map +1 -1
- package/dist/zod4.js +3 -2
- package/dist/zod4.js.map +1 -1
- package/package.json +1 -1
- package/src/content/boolean.ts +0 -13
- package/src/content/field.ts +0 -14
- package/src/content/group.ts +1 -54
- package/src/content/nestable.ts +1 -20
- package/src/helpers/traverseContent.ts +4 -1
- package/src/helpers/withDefaultContent.ts +173 -0
- package/src/index.ts +3 -1
- package/src/io-ts.ts +2 -0
- package/src/model/diff/sharedSlice.ts +2 -2
- package/src/model/diff/variation.ts +7 -7
- package/src/model/slice.ts +6 -8
- package/src/model/widget.ts +6 -2
- package/src/zod4.ts +2 -0
- package/src/content/withDefaultValues.ts +0 -114
package/dist/io-ts.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { NestableModel } from "./model/nestable.js";
|
|
2
1
|
import { FieldContent } from "./content/field.js";
|
|
3
2
|
import { RichTextLegacyBlock } from "./content/legacy/richText.js";
|
|
4
3
|
import { RichTextContent, RichTextContentBlock, RichTextContentSpan } from "./content/richText.js";
|
|
@@ -6,6 +5,7 @@ import { NestableContent } from "./content/nestable.js";
|
|
|
6
5
|
import { GroupItemContent, NestableAndGroupContent } from "./content/group.js";
|
|
7
6
|
import { SliceContent } from "./content/slice.js";
|
|
8
7
|
import { WidgetContent } from "./content/widget.js";
|
|
8
|
+
import { NestableModel } from "./model/nestable.js";
|
|
9
9
|
import { DynamicSliceModel, LegacySliceModel, SliceContentModel, StaticSliceModel } from "./model/slice.js";
|
|
10
10
|
import { DynamicWidgetModel, FieldOrSliceType, StaticWidgetModel } from "./model/widget.js";
|
|
11
11
|
import { LegacyContentCtx } from "./content/codec/legacyContentCtx.js";
|
|
@@ -2023,177 +2023,178 @@ declare const SharedSliceModelSchema: t.Type<{
|
|
|
2023
2023
|
config?: {
|
|
2024
2024
|
label?: string | null | undefined;
|
|
2025
2025
|
repeat?: boolean | undefined;
|
|
2026
|
-
fields?: Record<string, {
|
|
2027
|
-
type: "
|
|
2028
|
-
config?: {
|
|
2029
|
-
label?: string | null | undefined;
|
|
2030
|
-
default_value?: boolean | undefined;
|
|
2031
|
-
placeholder_true?: string | undefined;
|
|
2032
|
-
placeholder_false?: string | undefined;
|
|
2033
|
-
} | undefined;
|
|
2034
|
-
} | {
|
|
2035
|
-
type: "Color";
|
|
2036
|
-
fieldset?: string | null | undefined;
|
|
2037
|
-
config?: {
|
|
2038
|
-
label?: string | null | undefined;
|
|
2039
|
-
placeholder?: string | undefined;
|
|
2040
|
-
} | undefined;
|
|
2041
|
-
} | {
|
|
2042
|
-
type: "Date";
|
|
2043
|
-
fieldset?: string | null | undefined;
|
|
2044
|
-
config?: {
|
|
2045
|
-
label?: string | null | undefined;
|
|
2046
|
-
placeholder?: string | undefined;
|
|
2047
|
-
default?: string | undefined;
|
|
2048
|
-
} | undefined;
|
|
2049
|
-
} | {
|
|
2050
|
-
type: "Embed";
|
|
2051
|
-
fieldset?: string | null | undefined;
|
|
2052
|
-
config?: {
|
|
2053
|
-
label?: string | null | undefined;
|
|
2054
|
-
placeholder?: string | undefined;
|
|
2055
|
-
useAsTitle?: boolean | undefined;
|
|
2056
|
-
} | undefined;
|
|
2057
|
-
} | {
|
|
2058
|
-
type: "GeoPoint";
|
|
2059
|
-
fieldset?: string | null | undefined;
|
|
2060
|
-
config?: {
|
|
2061
|
-
label?: string | null | undefined;
|
|
2062
|
-
} | undefined;
|
|
2063
|
-
} | {
|
|
2064
|
-
type: "Image";
|
|
2065
|
-
fieldset?: string | null | undefined;
|
|
2066
|
-
config?: {
|
|
2067
|
-
label?: string | null | undefined;
|
|
2068
|
-
placeholder?: string | undefined;
|
|
2069
|
-
constraint?: {
|
|
2070
|
-
width?: number | null | undefined;
|
|
2071
|
-
height?: number | null | undefined;
|
|
2072
|
-
} | undefined;
|
|
2073
|
-
thumbnails?: {
|
|
2074
|
-
name: string;
|
|
2075
|
-
width?: number | null | undefined;
|
|
2076
|
-
height?: number | null | undefined;
|
|
2077
|
-
}[] | undefined;
|
|
2078
|
-
} | undefined;
|
|
2079
|
-
} | {
|
|
2080
|
-
type: "IntegrationFields";
|
|
2081
|
-
fieldset?: string | null | undefined;
|
|
2082
|
-
config?: {
|
|
2083
|
-
label?: string | null | undefined;
|
|
2084
|
-
placeholder?: string | undefined;
|
|
2085
|
-
catalog?: string | undefined;
|
|
2086
|
-
} | undefined;
|
|
2087
|
-
} | {
|
|
2088
|
-
type: "Link";
|
|
2026
|
+
fields?: Record<string, NestableModel | {
|
|
2027
|
+
type: "Group";
|
|
2089
2028
|
fieldset?: string | null | undefined;
|
|
2029
|
+
icon?: string | undefined;
|
|
2030
|
+
description?: string | undefined;
|
|
2090
2031
|
config?: {
|
|
2091
2032
|
label?: string | null | undefined;
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2033
|
+
repeat?: boolean | undefined;
|
|
2034
|
+
fields?: Record<string, {
|
|
2035
|
+
type: "Boolean";
|
|
2036
|
+
config?: {
|
|
2037
|
+
label?: string | null | undefined;
|
|
2038
|
+
default_value?: boolean | undefined;
|
|
2039
|
+
placeholder_true?: string | undefined;
|
|
2040
|
+
placeholder_false?: string | undefined;
|
|
2041
|
+
} | undefined;
|
|
2042
|
+
} | {
|
|
2043
|
+
type: "Color";
|
|
2044
|
+
fieldset?: string | null | undefined;
|
|
2045
|
+
config?: {
|
|
2046
|
+
label?: string | null | undefined;
|
|
2047
|
+
placeholder?: string | undefined;
|
|
2048
|
+
} | undefined;
|
|
2049
|
+
} | {
|
|
2050
|
+
type: "Date";
|
|
2051
|
+
fieldset?: string | null | undefined;
|
|
2052
|
+
config?: {
|
|
2053
|
+
label?: string | null | undefined;
|
|
2054
|
+
placeholder?: string | undefined;
|
|
2055
|
+
default?: string | undefined;
|
|
2056
|
+
} | undefined;
|
|
2057
|
+
} | {
|
|
2058
|
+
type: "Embed";
|
|
2059
|
+
fieldset?: string | null | undefined;
|
|
2060
|
+
config?: {
|
|
2061
|
+
label?: string | null | undefined;
|
|
2062
|
+
placeholder?: string | undefined;
|
|
2063
|
+
useAsTitle?: boolean | undefined;
|
|
2064
|
+
} | undefined;
|
|
2065
|
+
} | {
|
|
2066
|
+
type: "GeoPoint";
|
|
2067
|
+
fieldset?: string | null | undefined;
|
|
2068
|
+
config?: {
|
|
2069
|
+
label?: string | null | undefined;
|
|
2070
|
+
} | undefined;
|
|
2071
|
+
} | {
|
|
2072
|
+
type: "Image";
|
|
2073
|
+
fieldset?: string | null | undefined;
|
|
2074
|
+
config?: {
|
|
2075
|
+
label?: string | null | undefined;
|
|
2076
|
+
placeholder?: string | undefined;
|
|
2077
|
+
constraint?: {
|
|
2078
|
+
width?: number | null | undefined;
|
|
2079
|
+
height?: number | null | undefined;
|
|
2080
|
+
} | undefined;
|
|
2081
|
+
thumbnails?: {
|
|
2082
|
+
name: string;
|
|
2083
|
+
width?: number | null | undefined;
|
|
2084
|
+
height?: number | null | undefined;
|
|
2085
|
+
}[] | undefined;
|
|
2086
|
+
} | undefined;
|
|
2087
|
+
} | {
|
|
2088
|
+
type: "IntegrationFields";
|
|
2089
|
+
fieldset?: string | null | undefined;
|
|
2090
|
+
config?: {
|
|
2091
|
+
label?: string | null | undefined;
|
|
2092
|
+
placeholder?: string | undefined;
|
|
2093
|
+
catalog?: string | undefined;
|
|
2094
|
+
} | undefined;
|
|
2095
|
+
} | {
|
|
2096
|
+
type: "Link";
|
|
2097
|
+
fieldset?: string | null | undefined;
|
|
2098
|
+
config?: {
|
|
2099
|
+
label?: string | null | undefined;
|
|
2100
|
+
useAsTitle?: boolean | undefined;
|
|
2101
|
+
placeholder?: string | undefined;
|
|
2102
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
2103
|
+
customtypes?: (string | {
|
|
2100
2104
|
id: string;
|
|
2101
2105
|
fields: (string | {
|
|
2102
2106
|
id: string;
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
fields: (string | {
|
|
2109
|
-
id: string;
|
|
2110
|
-
customtypes: (string | {
|
|
2107
|
+
customtypes: (string | {
|
|
2108
|
+
id: string;
|
|
2109
|
+
fields: (string | /*elided*/any)[];
|
|
2110
|
+
})[];
|
|
2111
|
+
} | {
|
|
2111
2112
|
id: string;
|
|
2112
2113
|
fields: (string | {
|
|
2113
2114
|
id: string;
|
|
2114
|
-
|
|
2115
|
+
customtypes: (string | /*elided*/any)[];
|
|
2115
2116
|
})[];
|
|
2116
2117
|
})[];
|
|
2117
|
-
})[];
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2118
|
+
})[] | undefined;
|
|
2119
|
+
masks?: string[] | undefined;
|
|
2120
|
+
tags?: string[] | undefined;
|
|
2121
|
+
allowTargetBlank?: boolean | undefined;
|
|
2122
|
+
allowText?: boolean | undefined;
|
|
2123
|
+
repeat?: boolean | undefined;
|
|
2124
|
+
variants?: string[] | undefined;
|
|
2125
|
+
} | undefined;
|
|
2126
|
+
} | {
|
|
2127
|
+
type: "Number";
|
|
2128
|
+
fieldset?: string | null | undefined;
|
|
2129
|
+
config?: {
|
|
2130
|
+
label?: string | null | undefined;
|
|
2131
|
+
placeholder?: string | undefined;
|
|
2132
|
+
min?: number | undefined;
|
|
2133
|
+
max?: number | undefined;
|
|
2134
|
+
step?: number | undefined;
|
|
2135
|
+
} | undefined;
|
|
2136
|
+
} | {
|
|
2137
|
+
type: "Range";
|
|
2138
|
+
fieldset?: string | null | undefined;
|
|
2139
|
+
config?: {
|
|
2140
|
+
label?: string | null | undefined;
|
|
2141
|
+
placeholder?: string | undefined;
|
|
2142
|
+
min?: number | undefined;
|
|
2143
|
+
max?: number | undefined;
|
|
2144
|
+
step?: number | undefined;
|
|
2145
|
+
} | undefined;
|
|
2146
|
+
} | {
|
|
2147
|
+
type: "StructuredText";
|
|
2148
|
+
fieldset?: string | null | undefined;
|
|
2149
|
+
config?: {
|
|
2150
|
+
label?: string | null | undefined;
|
|
2151
|
+
placeholder?: string | undefined;
|
|
2152
|
+
useAsTitle?: boolean | undefined;
|
|
2153
|
+
single?: string | undefined;
|
|
2154
|
+
multi?: string | undefined;
|
|
2155
|
+
imageConstraint?: {
|
|
2156
|
+
width?: number | null | undefined;
|
|
2157
|
+
height?: number | null | undefined;
|
|
2158
|
+
} | undefined;
|
|
2159
|
+
labels?: string[] | undefined;
|
|
2160
|
+
allowTargetBlank?: boolean | undefined;
|
|
2161
|
+
} | undefined;
|
|
2162
|
+
} | {
|
|
2163
|
+
type: "Select";
|
|
2164
|
+
fieldset?: string | null | undefined;
|
|
2165
|
+
config?: {
|
|
2166
|
+
label?: string | null | undefined;
|
|
2167
|
+
placeholder?: string | undefined;
|
|
2168
|
+
default_value?: string | undefined;
|
|
2169
|
+
options?: string[] | undefined;
|
|
2170
|
+
} | undefined;
|
|
2171
|
+
} | {
|
|
2172
|
+
type: "Separator";
|
|
2173
|
+
config?: {
|
|
2174
|
+
label?: string | null | undefined;
|
|
2175
|
+
} | undefined;
|
|
2176
|
+
} | {
|
|
2177
|
+
type: "Table";
|
|
2178
|
+
config?: {
|
|
2179
|
+
label?: string | null | undefined;
|
|
2180
|
+
} | undefined;
|
|
2181
|
+
} | {
|
|
2182
|
+
type: "Text";
|
|
2183
|
+
fieldset?: string | null | undefined;
|
|
2184
|
+
config?: {
|
|
2185
|
+
label?: string | null | undefined;
|
|
2186
|
+
useAsTitle?: boolean | undefined;
|
|
2187
|
+
placeholder?: string | undefined;
|
|
2188
|
+
} | undefined;
|
|
2189
|
+
} | {
|
|
2190
|
+
type: "Timestamp";
|
|
2191
|
+
fieldset?: string | null | undefined;
|
|
2192
|
+
config?: {
|
|
2193
|
+
label?: string | null | undefined;
|
|
2194
|
+
placeholder?: string | undefined;
|
|
2195
|
+
default?: string | undefined;
|
|
2196
|
+
} | undefined;
|
|
2197
|
+
}> | undefined;
|
|
2197
2198
|
} | undefined;
|
|
2198
2199
|
}> | undefined;
|
|
2199
2200
|
} | undefined;
|
|
@@ -2394,177 +2395,178 @@ declare const SharedSliceModelSchema: t.Type<{
|
|
|
2394
2395
|
config?: {
|
|
2395
2396
|
label?: string | null | undefined;
|
|
2396
2397
|
repeat?: boolean | undefined;
|
|
2397
|
-
fields?: Record<string, {
|
|
2398
|
-
type: "
|
|
2399
|
-
config?: {
|
|
2400
|
-
label?: string | null | undefined;
|
|
2401
|
-
default_value?: boolean | undefined;
|
|
2402
|
-
placeholder_true?: string | undefined;
|
|
2403
|
-
placeholder_false?: string | undefined;
|
|
2404
|
-
} | undefined;
|
|
2405
|
-
} | {
|
|
2406
|
-
type: "Color";
|
|
2407
|
-
fieldset?: string | null | undefined;
|
|
2408
|
-
config?: {
|
|
2409
|
-
label?: string | null | undefined;
|
|
2410
|
-
placeholder?: string | undefined;
|
|
2411
|
-
} | undefined;
|
|
2412
|
-
} | {
|
|
2413
|
-
type: "Date";
|
|
2414
|
-
fieldset?: string | null | undefined;
|
|
2415
|
-
config?: {
|
|
2416
|
-
label?: string | null | undefined;
|
|
2417
|
-
placeholder?: string | undefined;
|
|
2418
|
-
default?: string | undefined;
|
|
2419
|
-
} | undefined;
|
|
2420
|
-
} | {
|
|
2421
|
-
type: "Embed";
|
|
2422
|
-
fieldset?: string | null | undefined;
|
|
2423
|
-
config?: {
|
|
2424
|
-
label?: string | null | undefined;
|
|
2425
|
-
placeholder?: string | undefined;
|
|
2426
|
-
useAsTitle?: boolean | undefined;
|
|
2427
|
-
} | undefined;
|
|
2428
|
-
} | {
|
|
2429
|
-
type: "GeoPoint";
|
|
2430
|
-
fieldset?: string | null | undefined;
|
|
2431
|
-
config?: {
|
|
2432
|
-
label?: string | null | undefined;
|
|
2433
|
-
} | undefined;
|
|
2434
|
-
} | {
|
|
2435
|
-
type: "Image";
|
|
2436
|
-
fieldset?: string | null | undefined;
|
|
2437
|
-
config?: {
|
|
2438
|
-
label?: string | null | undefined;
|
|
2439
|
-
placeholder?: string | undefined;
|
|
2440
|
-
constraint?: {
|
|
2441
|
-
width?: number | null | undefined;
|
|
2442
|
-
height?: number | null | undefined;
|
|
2443
|
-
} | undefined;
|
|
2444
|
-
thumbnails?: {
|
|
2445
|
-
name: string;
|
|
2446
|
-
width?: number | null | undefined;
|
|
2447
|
-
height?: number | null | undefined;
|
|
2448
|
-
}[] | undefined;
|
|
2449
|
-
} | undefined;
|
|
2450
|
-
} | {
|
|
2451
|
-
type: "IntegrationFields";
|
|
2452
|
-
fieldset?: string | null | undefined;
|
|
2453
|
-
config?: {
|
|
2454
|
-
label?: string | null | undefined;
|
|
2455
|
-
placeholder?: string | undefined;
|
|
2456
|
-
catalog?: string | undefined;
|
|
2457
|
-
} | undefined;
|
|
2458
|
-
} | {
|
|
2459
|
-
type: "Link";
|
|
2398
|
+
fields?: Record<string, NestableModel | {
|
|
2399
|
+
type: "Group";
|
|
2460
2400
|
fieldset?: string | null | undefined;
|
|
2401
|
+
icon?: string | undefined;
|
|
2402
|
+
description?: string | undefined;
|
|
2461
2403
|
config?: {
|
|
2462
2404
|
label?: string | null | undefined;
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2405
|
+
repeat?: boolean | undefined;
|
|
2406
|
+
fields?: Record<string, {
|
|
2407
|
+
type: "Boolean";
|
|
2408
|
+
config?: {
|
|
2409
|
+
label?: string | null | undefined;
|
|
2410
|
+
default_value?: boolean | undefined;
|
|
2411
|
+
placeholder_true?: string | undefined;
|
|
2412
|
+
placeholder_false?: string | undefined;
|
|
2413
|
+
} | undefined;
|
|
2414
|
+
} | {
|
|
2415
|
+
type: "Color";
|
|
2416
|
+
fieldset?: string | null | undefined;
|
|
2417
|
+
config?: {
|
|
2418
|
+
label?: string | null | undefined;
|
|
2419
|
+
placeholder?: string | undefined;
|
|
2420
|
+
} | undefined;
|
|
2421
|
+
} | {
|
|
2422
|
+
type: "Date";
|
|
2423
|
+
fieldset?: string | null | undefined;
|
|
2424
|
+
config?: {
|
|
2425
|
+
label?: string | null | undefined;
|
|
2426
|
+
placeholder?: string | undefined;
|
|
2427
|
+
default?: string | undefined;
|
|
2428
|
+
} | undefined;
|
|
2429
|
+
} | {
|
|
2430
|
+
type: "Embed";
|
|
2431
|
+
fieldset?: string | null | undefined;
|
|
2432
|
+
config?: {
|
|
2433
|
+
label?: string | null | undefined;
|
|
2434
|
+
placeholder?: string | undefined;
|
|
2435
|
+
useAsTitle?: boolean | undefined;
|
|
2436
|
+
} | undefined;
|
|
2437
|
+
} | {
|
|
2438
|
+
type: "GeoPoint";
|
|
2439
|
+
fieldset?: string | null | undefined;
|
|
2440
|
+
config?: {
|
|
2441
|
+
label?: string | null | undefined;
|
|
2442
|
+
} | undefined;
|
|
2443
|
+
} | {
|
|
2444
|
+
type: "Image";
|
|
2445
|
+
fieldset?: string | null | undefined;
|
|
2446
|
+
config?: {
|
|
2447
|
+
label?: string | null | undefined;
|
|
2448
|
+
placeholder?: string | undefined;
|
|
2449
|
+
constraint?: {
|
|
2450
|
+
width?: number | null | undefined;
|
|
2451
|
+
height?: number | null | undefined;
|
|
2452
|
+
} | undefined;
|
|
2453
|
+
thumbnails?: {
|
|
2454
|
+
name: string;
|
|
2455
|
+
width?: number | null | undefined;
|
|
2456
|
+
height?: number | null | undefined;
|
|
2457
|
+
}[] | undefined;
|
|
2458
|
+
} | undefined;
|
|
2459
|
+
} | {
|
|
2460
|
+
type: "IntegrationFields";
|
|
2461
|
+
fieldset?: string | null | undefined;
|
|
2462
|
+
config?: {
|
|
2463
|
+
label?: string | null | undefined;
|
|
2464
|
+
placeholder?: string | undefined;
|
|
2465
|
+
catalog?: string | undefined;
|
|
2466
|
+
} | undefined;
|
|
2467
|
+
} | {
|
|
2468
|
+
type: "Link";
|
|
2469
|
+
fieldset?: string | null | undefined;
|
|
2470
|
+
config?: {
|
|
2471
|
+
label?: string | null | undefined;
|
|
2472
|
+
useAsTitle?: boolean | undefined;
|
|
2473
|
+
placeholder?: string | undefined;
|
|
2474
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
2475
|
+
customtypes?: (string | {
|
|
2471
2476
|
id: string;
|
|
2472
2477
|
fields: (string | {
|
|
2473
2478
|
id: string;
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
fields: (string | {
|
|
2480
|
-
id: string;
|
|
2481
|
-
customtypes: (string | {
|
|
2479
|
+
customtypes: (string | {
|
|
2480
|
+
id: string;
|
|
2481
|
+
fields: (string | /*elided*/any)[];
|
|
2482
|
+
})[];
|
|
2483
|
+
} | {
|
|
2482
2484
|
id: string;
|
|
2483
2485
|
fields: (string | {
|
|
2484
2486
|
id: string;
|
|
2485
|
-
|
|
2487
|
+
customtypes: (string | /*elided*/any)[];
|
|
2486
2488
|
})[];
|
|
2487
2489
|
})[];
|
|
2488
|
-
})[];
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2490
|
+
})[] | undefined;
|
|
2491
|
+
masks?: string[] | undefined;
|
|
2492
|
+
tags?: string[] | undefined;
|
|
2493
|
+
allowTargetBlank?: boolean | undefined;
|
|
2494
|
+
allowText?: boolean | undefined;
|
|
2495
|
+
repeat?: boolean | undefined;
|
|
2496
|
+
variants?: string[] | undefined;
|
|
2497
|
+
} | undefined;
|
|
2498
|
+
} | {
|
|
2499
|
+
type: "Number";
|
|
2500
|
+
fieldset?: string | null | undefined;
|
|
2501
|
+
config?: {
|
|
2502
|
+
label?: string | null | undefined;
|
|
2503
|
+
placeholder?: string | undefined;
|
|
2504
|
+
min?: number | undefined;
|
|
2505
|
+
max?: number | undefined;
|
|
2506
|
+
step?: number | undefined;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
} | {
|
|
2509
|
+
type: "Range";
|
|
2510
|
+
fieldset?: string | null | undefined;
|
|
2511
|
+
config?: {
|
|
2512
|
+
label?: string | null | undefined;
|
|
2513
|
+
placeholder?: string | undefined;
|
|
2514
|
+
min?: number | undefined;
|
|
2515
|
+
max?: number | undefined;
|
|
2516
|
+
step?: number | undefined;
|
|
2517
|
+
} | undefined;
|
|
2518
|
+
} | {
|
|
2519
|
+
type: "StructuredText";
|
|
2520
|
+
fieldset?: string | null | undefined;
|
|
2521
|
+
config?: {
|
|
2522
|
+
label?: string | null | undefined;
|
|
2523
|
+
placeholder?: string | undefined;
|
|
2524
|
+
useAsTitle?: boolean | undefined;
|
|
2525
|
+
single?: string | undefined;
|
|
2526
|
+
multi?: string | undefined;
|
|
2527
|
+
imageConstraint?: {
|
|
2528
|
+
width?: number | null | undefined;
|
|
2529
|
+
height?: number | null | undefined;
|
|
2530
|
+
} | undefined;
|
|
2531
|
+
labels?: string[] | undefined;
|
|
2532
|
+
allowTargetBlank?: boolean | undefined;
|
|
2533
|
+
} | undefined;
|
|
2534
|
+
} | {
|
|
2535
|
+
type: "Select";
|
|
2536
|
+
fieldset?: string | null | undefined;
|
|
2537
|
+
config?: {
|
|
2538
|
+
label?: string | null | undefined;
|
|
2539
|
+
placeholder?: string | undefined;
|
|
2540
|
+
default_value?: string | undefined;
|
|
2541
|
+
options?: string[] | undefined;
|
|
2542
|
+
} | undefined;
|
|
2543
|
+
} | {
|
|
2544
|
+
type: "Separator";
|
|
2545
|
+
config?: {
|
|
2546
|
+
label?: string | null | undefined;
|
|
2547
|
+
} | undefined;
|
|
2548
|
+
} | {
|
|
2549
|
+
type: "Table";
|
|
2550
|
+
config?: {
|
|
2551
|
+
label?: string | null | undefined;
|
|
2552
|
+
} | undefined;
|
|
2553
|
+
} | {
|
|
2554
|
+
type: "Text";
|
|
2555
|
+
fieldset?: string | null | undefined;
|
|
2556
|
+
config?: {
|
|
2557
|
+
label?: string | null | undefined;
|
|
2558
|
+
useAsTitle?: boolean | undefined;
|
|
2559
|
+
placeholder?: string | undefined;
|
|
2560
|
+
} | undefined;
|
|
2561
|
+
} | {
|
|
2562
|
+
type: "Timestamp";
|
|
2563
|
+
fieldset?: string | null | undefined;
|
|
2564
|
+
config?: {
|
|
2565
|
+
label?: string | null | undefined;
|
|
2566
|
+
placeholder?: string | undefined;
|
|
2567
|
+
default?: string | undefined;
|
|
2568
|
+
} | undefined;
|
|
2569
|
+
}> | undefined;
|
|
2568
2570
|
} | undefined;
|
|
2569
2571
|
}> | undefined;
|
|
2570
2572
|
} | undefined;
|
|
@@ -3558,6 +3560,749 @@ declare const NestedGroupModelSchema: t.Type<{
|
|
|
3558
3560
|
}> | undefined;
|
|
3559
3561
|
} | undefined;
|
|
3560
3562
|
}, unknown>;
|
|
3563
|
+
declare const SharedSliceModelVariationSchema: t.Type<{
|
|
3564
|
+
id: string;
|
|
3565
|
+
name: string;
|
|
3566
|
+
description: string;
|
|
3567
|
+
imageUrl: string;
|
|
3568
|
+
docURL: string;
|
|
3569
|
+
version: string;
|
|
3570
|
+
display?: string | undefined;
|
|
3571
|
+
primary?: Record<string, NestableModel | {
|
|
3572
|
+
type: "Group";
|
|
3573
|
+
fieldset?: string | null | undefined;
|
|
3574
|
+
icon?: string | undefined;
|
|
3575
|
+
description?: string | undefined;
|
|
3576
|
+
config?: {
|
|
3577
|
+
label?: string | null | undefined;
|
|
3578
|
+
repeat?: boolean | undefined;
|
|
3579
|
+
fields?: Record<string, NestableModel | {
|
|
3580
|
+
type: "Group";
|
|
3581
|
+
fieldset?: string | null | undefined;
|
|
3582
|
+
icon?: string | undefined;
|
|
3583
|
+
description?: string | undefined;
|
|
3584
|
+
config?: {
|
|
3585
|
+
label?: string | null | undefined;
|
|
3586
|
+
repeat?: boolean | undefined;
|
|
3587
|
+
fields?: Record<string, {
|
|
3588
|
+
type: "Boolean";
|
|
3589
|
+
config?: {
|
|
3590
|
+
label?: string | null | undefined;
|
|
3591
|
+
default_value?: boolean | undefined;
|
|
3592
|
+
placeholder_true?: string | undefined;
|
|
3593
|
+
placeholder_false?: string | undefined;
|
|
3594
|
+
} | undefined;
|
|
3595
|
+
} | {
|
|
3596
|
+
type: "Color";
|
|
3597
|
+
fieldset?: string | null | undefined;
|
|
3598
|
+
config?: {
|
|
3599
|
+
label?: string | null | undefined;
|
|
3600
|
+
placeholder?: string | undefined;
|
|
3601
|
+
} | undefined;
|
|
3602
|
+
} | {
|
|
3603
|
+
type: "Date";
|
|
3604
|
+
fieldset?: string | null | undefined;
|
|
3605
|
+
config?: {
|
|
3606
|
+
label?: string | null | undefined;
|
|
3607
|
+
placeholder?: string | undefined;
|
|
3608
|
+
default?: string | undefined;
|
|
3609
|
+
} | undefined;
|
|
3610
|
+
} | {
|
|
3611
|
+
type: "Embed";
|
|
3612
|
+
fieldset?: string | null | undefined;
|
|
3613
|
+
config?: {
|
|
3614
|
+
label?: string | null | undefined;
|
|
3615
|
+
placeholder?: string | undefined;
|
|
3616
|
+
useAsTitle?: boolean | undefined;
|
|
3617
|
+
} | undefined;
|
|
3618
|
+
} | {
|
|
3619
|
+
type: "GeoPoint";
|
|
3620
|
+
fieldset?: string | null | undefined;
|
|
3621
|
+
config?: {
|
|
3622
|
+
label?: string | null | undefined;
|
|
3623
|
+
} | undefined;
|
|
3624
|
+
} | {
|
|
3625
|
+
type: "Image";
|
|
3626
|
+
fieldset?: string | null | undefined;
|
|
3627
|
+
config?: {
|
|
3628
|
+
label?: string | null | undefined;
|
|
3629
|
+
placeholder?: string | undefined;
|
|
3630
|
+
constraint?: {
|
|
3631
|
+
width?: number | null | undefined;
|
|
3632
|
+
height?: number | null | undefined;
|
|
3633
|
+
} | undefined;
|
|
3634
|
+
thumbnails?: {
|
|
3635
|
+
name: string;
|
|
3636
|
+
width?: number | null | undefined;
|
|
3637
|
+
height?: number | null | undefined;
|
|
3638
|
+
}[] | undefined;
|
|
3639
|
+
} | undefined;
|
|
3640
|
+
} | {
|
|
3641
|
+
type: "IntegrationFields";
|
|
3642
|
+
fieldset?: string | null | undefined;
|
|
3643
|
+
config?: {
|
|
3644
|
+
label?: string | null | undefined;
|
|
3645
|
+
placeholder?: string | undefined;
|
|
3646
|
+
catalog?: string | undefined;
|
|
3647
|
+
} | undefined;
|
|
3648
|
+
} | {
|
|
3649
|
+
type: "Link";
|
|
3650
|
+
fieldset?: string | null | undefined;
|
|
3651
|
+
config?: {
|
|
3652
|
+
label?: string | null | undefined;
|
|
3653
|
+
useAsTitle?: boolean | undefined;
|
|
3654
|
+
placeholder?: string | undefined;
|
|
3655
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
3656
|
+
customtypes?: (string | {
|
|
3657
|
+
id: string;
|
|
3658
|
+
fields: (string | {
|
|
3659
|
+
id: string;
|
|
3660
|
+
customtypes: (string | {
|
|
3661
|
+
id: string;
|
|
3662
|
+
fields: (string | {
|
|
3663
|
+
id: string;
|
|
3664
|
+
fields: string[];
|
|
3665
|
+
})[];
|
|
3666
|
+
})[];
|
|
3667
|
+
} | {
|
|
3668
|
+
id: string;
|
|
3669
|
+
fields: (string | {
|
|
3670
|
+
id: string;
|
|
3671
|
+
customtypes: (string | {
|
|
3672
|
+
id: string;
|
|
3673
|
+
fields: (string | /*elided*/any)[];
|
|
3674
|
+
})[];
|
|
3675
|
+
})[];
|
|
3676
|
+
})[];
|
|
3677
|
+
})[] | undefined;
|
|
3678
|
+
masks?: string[] | undefined;
|
|
3679
|
+
tags?: string[] | undefined;
|
|
3680
|
+
allowTargetBlank?: boolean | undefined;
|
|
3681
|
+
allowText?: boolean | undefined;
|
|
3682
|
+
repeat?: boolean | undefined;
|
|
3683
|
+
variants?: string[] | undefined;
|
|
3684
|
+
} | undefined;
|
|
3685
|
+
} | {
|
|
3686
|
+
type: "Number";
|
|
3687
|
+
fieldset?: string | null | undefined;
|
|
3688
|
+
config?: {
|
|
3689
|
+
label?: string | null | undefined;
|
|
3690
|
+
placeholder?: string | undefined;
|
|
3691
|
+
min?: number | undefined;
|
|
3692
|
+
max?: number | undefined;
|
|
3693
|
+
step?: number | undefined;
|
|
3694
|
+
} | undefined;
|
|
3695
|
+
} | {
|
|
3696
|
+
type: "Range";
|
|
3697
|
+
fieldset?: string | null | undefined;
|
|
3698
|
+
config?: {
|
|
3699
|
+
label?: string | null | undefined;
|
|
3700
|
+
placeholder?: string | undefined;
|
|
3701
|
+
min?: number | undefined;
|
|
3702
|
+
max?: number | undefined;
|
|
3703
|
+
step?: number | undefined;
|
|
3704
|
+
} | undefined;
|
|
3705
|
+
} | {
|
|
3706
|
+
type: "StructuredText";
|
|
3707
|
+
fieldset?: string | null | undefined;
|
|
3708
|
+
config?: {
|
|
3709
|
+
label?: string | null | undefined;
|
|
3710
|
+
placeholder?: string | undefined;
|
|
3711
|
+
useAsTitle?: boolean | undefined;
|
|
3712
|
+
single?: string | undefined;
|
|
3713
|
+
multi?: string | undefined;
|
|
3714
|
+
imageConstraint?: {
|
|
3715
|
+
width?: number | null | undefined;
|
|
3716
|
+
height?: number | null | undefined;
|
|
3717
|
+
} | undefined;
|
|
3718
|
+
labels?: string[] | undefined;
|
|
3719
|
+
allowTargetBlank?: boolean | undefined;
|
|
3720
|
+
} | undefined;
|
|
3721
|
+
} | {
|
|
3722
|
+
type: "Select";
|
|
3723
|
+
fieldset?: string | null | undefined;
|
|
3724
|
+
config?: {
|
|
3725
|
+
label?: string | null | undefined;
|
|
3726
|
+
placeholder?: string | undefined;
|
|
3727
|
+
default_value?: string | undefined;
|
|
3728
|
+
options?: string[] | undefined;
|
|
3729
|
+
} | undefined;
|
|
3730
|
+
} | {
|
|
3731
|
+
type: "Separator";
|
|
3732
|
+
config?: {
|
|
3733
|
+
label?: string | null | undefined;
|
|
3734
|
+
} | undefined;
|
|
3735
|
+
} | {
|
|
3736
|
+
type: "Table";
|
|
3737
|
+
config?: {
|
|
3738
|
+
label?: string | null | undefined;
|
|
3739
|
+
} | undefined;
|
|
3740
|
+
} | {
|
|
3741
|
+
type: "Text";
|
|
3742
|
+
fieldset?: string | null | undefined;
|
|
3743
|
+
config?: {
|
|
3744
|
+
label?: string | null | undefined;
|
|
3745
|
+
useAsTitle?: boolean | undefined;
|
|
3746
|
+
placeholder?: string | undefined;
|
|
3747
|
+
} | undefined;
|
|
3748
|
+
} | {
|
|
3749
|
+
type: "Timestamp";
|
|
3750
|
+
fieldset?: string | null | undefined;
|
|
3751
|
+
config?: {
|
|
3752
|
+
label?: string | null | undefined;
|
|
3753
|
+
placeholder?: string | undefined;
|
|
3754
|
+
default?: string | undefined;
|
|
3755
|
+
} | undefined;
|
|
3756
|
+
}> | undefined;
|
|
3757
|
+
} | undefined;
|
|
3758
|
+
}> | undefined;
|
|
3759
|
+
} | undefined;
|
|
3760
|
+
}> | undefined;
|
|
3761
|
+
items?: Record<string, {
|
|
3762
|
+
type: "Boolean";
|
|
3763
|
+
config?: {
|
|
3764
|
+
label?: string | null | undefined;
|
|
3765
|
+
default_value?: boolean | undefined;
|
|
3766
|
+
placeholder_true?: string | undefined;
|
|
3767
|
+
placeholder_false?: string | undefined;
|
|
3768
|
+
} | undefined;
|
|
3769
|
+
} | {
|
|
3770
|
+
type: "Color";
|
|
3771
|
+
fieldset?: string | null | undefined;
|
|
3772
|
+
config?: {
|
|
3773
|
+
label?: string | null | undefined;
|
|
3774
|
+
placeholder?: string | undefined;
|
|
3775
|
+
} | undefined;
|
|
3776
|
+
} | {
|
|
3777
|
+
type: "Date";
|
|
3778
|
+
fieldset?: string | null | undefined;
|
|
3779
|
+
config?: {
|
|
3780
|
+
label?: string | null | undefined;
|
|
3781
|
+
placeholder?: string | undefined;
|
|
3782
|
+
default?: string | undefined;
|
|
3783
|
+
} | undefined;
|
|
3784
|
+
} | {
|
|
3785
|
+
type: "Embed";
|
|
3786
|
+
fieldset?: string | null | undefined;
|
|
3787
|
+
config?: {
|
|
3788
|
+
label?: string | null | undefined;
|
|
3789
|
+
placeholder?: string | undefined;
|
|
3790
|
+
useAsTitle?: boolean | undefined;
|
|
3791
|
+
} | undefined;
|
|
3792
|
+
} | {
|
|
3793
|
+
type: "GeoPoint";
|
|
3794
|
+
fieldset?: string | null | undefined;
|
|
3795
|
+
config?: {
|
|
3796
|
+
label?: string | null | undefined;
|
|
3797
|
+
} | undefined;
|
|
3798
|
+
} | {
|
|
3799
|
+
type: "Image";
|
|
3800
|
+
fieldset?: string | null | undefined;
|
|
3801
|
+
config?: {
|
|
3802
|
+
label?: string | null | undefined;
|
|
3803
|
+
placeholder?: string | undefined;
|
|
3804
|
+
constraint?: {
|
|
3805
|
+
width?: number | null | undefined;
|
|
3806
|
+
height?: number | null | undefined;
|
|
3807
|
+
} | undefined;
|
|
3808
|
+
thumbnails?: {
|
|
3809
|
+
name: string;
|
|
3810
|
+
width?: number | null | undefined;
|
|
3811
|
+
height?: number | null | undefined;
|
|
3812
|
+
}[] | undefined;
|
|
3813
|
+
} | undefined;
|
|
3814
|
+
} | {
|
|
3815
|
+
type: "IntegrationFields";
|
|
3816
|
+
fieldset?: string | null | undefined;
|
|
3817
|
+
config?: {
|
|
3818
|
+
label?: string | null | undefined;
|
|
3819
|
+
placeholder?: string | undefined;
|
|
3820
|
+
catalog?: string | undefined;
|
|
3821
|
+
} | undefined;
|
|
3822
|
+
} | {
|
|
3823
|
+
type: "Link";
|
|
3824
|
+
fieldset?: string | null | undefined;
|
|
3825
|
+
config?: {
|
|
3826
|
+
label?: string | null | undefined;
|
|
3827
|
+
useAsTitle?: boolean | undefined;
|
|
3828
|
+
placeholder?: string | undefined;
|
|
3829
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
3830
|
+
customtypes?: (string | {
|
|
3831
|
+
id: string;
|
|
3832
|
+
fields: (string | {
|
|
3833
|
+
id: string;
|
|
3834
|
+
customtypes: (string | {
|
|
3835
|
+
id: string;
|
|
3836
|
+
fields: (string | {
|
|
3837
|
+
id: string;
|
|
3838
|
+
fields: string[];
|
|
3839
|
+
})[];
|
|
3840
|
+
})[];
|
|
3841
|
+
} | {
|
|
3842
|
+
id: string;
|
|
3843
|
+
fields: (string | {
|
|
3844
|
+
id: string;
|
|
3845
|
+
customtypes: (string | {
|
|
3846
|
+
id: string;
|
|
3847
|
+
fields: (string | {
|
|
3848
|
+
id: string;
|
|
3849
|
+
fields: string[];
|
|
3850
|
+
})[];
|
|
3851
|
+
})[];
|
|
3852
|
+
})[];
|
|
3853
|
+
})[];
|
|
3854
|
+
})[] | undefined;
|
|
3855
|
+
masks?: string[] | undefined;
|
|
3856
|
+
tags?: string[] | undefined;
|
|
3857
|
+
allowTargetBlank?: boolean | undefined;
|
|
3858
|
+
allowText?: boolean | undefined;
|
|
3859
|
+
repeat?: boolean | undefined;
|
|
3860
|
+
variants?: string[] | undefined;
|
|
3861
|
+
} | undefined;
|
|
3862
|
+
} | {
|
|
3863
|
+
type: "Number";
|
|
3864
|
+
fieldset?: string | null | undefined;
|
|
3865
|
+
config?: {
|
|
3866
|
+
label?: string | null | undefined;
|
|
3867
|
+
placeholder?: string | undefined;
|
|
3868
|
+
min?: number | undefined;
|
|
3869
|
+
max?: number | undefined;
|
|
3870
|
+
step?: number | undefined;
|
|
3871
|
+
} | undefined;
|
|
3872
|
+
} | {
|
|
3873
|
+
type: "Range";
|
|
3874
|
+
fieldset?: string | null | undefined;
|
|
3875
|
+
config?: {
|
|
3876
|
+
label?: string | null | undefined;
|
|
3877
|
+
placeholder?: string | undefined;
|
|
3878
|
+
min?: number | undefined;
|
|
3879
|
+
max?: number | undefined;
|
|
3880
|
+
step?: number | undefined;
|
|
3881
|
+
} | undefined;
|
|
3882
|
+
} | {
|
|
3883
|
+
type: "StructuredText";
|
|
3884
|
+
fieldset?: string | null | undefined;
|
|
3885
|
+
config?: {
|
|
3886
|
+
label?: string | null | undefined;
|
|
3887
|
+
placeholder?: string | undefined;
|
|
3888
|
+
useAsTitle?: boolean | undefined;
|
|
3889
|
+
single?: string | undefined;
|
|
3890
|
+
multi?: string | undefined;
|
|
3891
|
+
imageConstraint?: {
|
|
3892
|
+
width?: number | null | undefined;
|
|
3893
|
+
height?: number | null | undefined;
|
|
3894
|
+
} | undefined;
|
|
3895
|
+
labels?: string[] | undefined;
|
|
3896
|
+
allowTargetBlank?: boolean | undefined;
|
|
3897
|
+
} | undefined;
|
|
3898
|
+
} | {
|
|
3899
|
+
type: "Select";
|
|
3900
|
+
fieldset?: string | null | undefined;
|
|
3901
|
+
config?: {
|
|
3902
|
+
label?: string | null | undefined;
|
|
3903
|
+
placeholder?: string | undefined;
|
|
3904
|
+
default_value?: string | undefined;
|
|
3905
|
+
options?: string[] | undefined;
|
|
3906
|
+
} | undefined;
|
|
3907
|
+
} | {
|
|
3908
|
+
type: "Separator";
|
|
3909
|
+
config?: {
|
|
3910
|
+
label?: string | null | undefined;
|
|
3911
|
+
} | undefined;
|
|
3912
|
+
} | {
|
|
3913
|
+
type: "Table";
|
|
3914
|
+
config?: {
|
|
3915
|
+
label?: string | null | undefined;
|
|
3916
|
+
} | undefined;
|
|
3917
|
+
} | {
|
|
3918
|
+
type: "Text";
|
|
3919
|
+
fieldset?: string | null | undefined;
|
|
3920
|
+
config?: {
|
|
3921
|
+
label?: string | null | undefined;
|
|
3922
|
+
useAsTitle?: boolean | undefined;
|
|
3923
|
+
placeholder?: string | undefined;
|
|
3924
|
+
} | undefined;
|
|
3925
|
+
} | {
|
|
3926
|
+
type: "Timestamp";
|
|
3927
|
+
fieldset?: string | null | undefined;
|
|
3928
|
+
config?: {
|
|
3929
|
+
label?: string | null | undefined;
|
|
3930
|
+
placeholder?: string | undefined;
|
|
3931
|
+
default?: string | undefined;
|
|
3932
|
+
} | undefined;
|
|
3933
|
+
}> | undefined;
|
|
3934
|
+
}, {
|
|
3935
|
+
id: string;
|
|
3936
|
+
name: string;
|
|
3937
|
+
description: string;
|
|
3938
|
+
imageUrl: string;
|
|
3939
|
+
docURL: string;
|
|
3940
|
+
version: string;
|
|
3941
|
+
display?: string | undefined;
|
|
3942
|
+
primary?: Record<string, NestableModel | {
|
|
3943
|
+
type: "Group";
|
|
3944
|
+
fieldset?: string | null | undefined;
|
|
3945
|
+
icon?: string | undefined;
|
|
3946
|
+
description?: string | undefined;
|
|
3947
|
+
config?: {
|
|
3948
|
+
label?: string | null | undefined;
|
|
3949
|
+
repeat?: boolean | undefined;
|
|
3950
|
+
fields?: Record<string, NestableModel | {
|
|
3951
|
+
type: "Group";
|
|
3952
|
+
fieldset?: string | null | undefined;
|
|
3953
|
+
icon?: string | undefined;
|
|
3954
|
+
description?: string | undefined;
|
|
3955
|
+
config?: {
|
|
3956
|
+
label?: string | null | undefined;
|
|
3957
|
+
repeat?: boolean | undefined;
|
|
3958
|
+
fields?: Record<string, {
|
|
3959
|
+
type: "Boolean";
|
|
3960
|
+
config?: {
|
|
3961
|
+
label?: string | null | undefined;
|
|
3962
|
+
default_value?: boolean | undefined;
|
|
3963
|
+
placeholder_true?: string | undefined;
|
|
3964
|
+
placeholder_false?: string | undefined;
|
|
3965
|
+
} | undefined;
|
|
3966
|
+
} | {
|
|
3967
|
+
type: "Color";
|
|
3968
|
+
fieldset?: string | null | undefined;
|
|
3969
|
+
config?: {
|
|
3970
|
+
label?: string | null | undefined;
|
|
3971
|
+
placeholder?: string | undefined;
|
|
3972
|
+
} | undefined;
|
|
3973
|
+
} | {
|
|
3974
|
+
type: "Date";
|
|
3975
|
+
fieldset?: string | null | undefined;
|
|
3976
|
+
config?: {
|
|
3977
|
+
label?: string | null | undefined;
|
|
3978
|
+
placeholder?: string | undefined;
|
|
3979
|
+
default?: string | undefined;
|
|
3980
|
+
} | undefined;
|
|
3981
|
+
} | {
|
|
3982
|
+
type: "Embed";
|
|
3983
|
+
fieldset?: string | null | undefined;
|
|
3984
|
+
config?: {
|
|
3985
|
+
label?: string | null | undefined;
|
|
3986
|
+
placeholder?: string | undefined;
|
|
3987
|
+
useAsTitle?: boolean | undefined;
|
|
3988
|
+
} | undefined;
|
|
3989
|
+
} | {
|
|
3990
|
+
type: "GeoPoint";
|
|
3991
|
+
fieldset?: string | null | undefined;
|
|
3992
|
+
config?: {
|
|
3993
|
+
label?: string | null | undefined;
|
|
3994
|
+
} | undefined;
|
|
3995
|
+
} | {
|
|
3996
|
+
type: "Image";
|
|
3997
|
+
fieldset?: string | null | undefined;
|
|
3998
|
+
config?: {
|
|
3999
|
+
label?: string | null | undefined;
|
|
4000
|
+
placeholder?: string | undefined;
|
|
4001
|
+
constraint?: {
|
|
4002
|
+
width?: number | null | undefined;
|
|
4003
|
+
height?: number | null | undefined;
|
|
4004
|
+
} | undefined;
|
|
4005
|
+
thumbnails?: {
|
|
4006
|
+
name: string;
|
|
4007
|
+
width?: number | null | undefined;
|
|
4008
|
+
height?: number | null | undefined;
|
|
4009
|
+
}[] | undefined;
|
|
4010
|
+
} | undefined;
|
|
4011
|
+
} | {
|
|
4012
|
+
type: "IntegrationFields";
|
|
4013
|
+
fieldset?: string | null | undefined;
|
|
4014
|
+
config?: {
|
|
4015
|
+
label?: string | null | undefined;
|
|
4016
|
+
placeholder?: string | undefined;
|
|
4017
|
+
catalog?: string | undefined;
|
|
4018
|
+
} | undefined;
|
|
4019
|
+
} | {
|
|
4020
|
+
type: "Link";
|
|
4021
|
+
fieldset?: string | null | undefined;
|
|
4022
|
+
config?: {
|
|
4023
|
+
label?: string | null | undefined;
|
|
4024
|
+
useAsTitle?: boolean | undefined;
|
|
4025
|
+
placeholder?: string | undefined;
|
|
4026
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
4027
|
+
customtypes?: (string | {
|
|
4028
|
+
id: string;
|
|
4029
|
+
fields: (string | {
|
|
4030
|
+
id: string;
|
|
4031
|
+
customtypes: (string | {
|
|
4032
|
+
id: string;
|
|
4033
|
+
fields: (string | {
|
|
4034
|
+
id: string;
|
|
4035
|
+
fields: string[];
|
|
4036
|
+
})[];
|
|
4037
|
+
})[];
|
|
4038
|
+
} | {
|
|
4039
|
+
id: string;
|
|
4040
|
+
fields: (string | {
|
|
4041
|
+
id: string;
|
|
4042
|
+
customtypes: (string | {
|
|
4043
|
+
id: string;
|
|
4044
|
+
fields: (string | /*elided*/any)[];
|
|
4045
|
+
})[];
|
|
4046
|
+
})[];
|
|
4047
|
+
})[];
|
|
4048
|
+
})[] | undefined;
|
|
4049
|
+
masks?: string[] | undefined;
|
|
4050
|
+
tags?: string[] | undefined;
|
|
4051
|
+
allowTargetBlank?: boolean | undefined;
|
|
4052
|
+
allowText?: boolean | undefined;
|
|
4053
|
+
repeat?: boolean | undefined;
|
|
4054
|
+
variants?: string[] | undefined;
|
|
4055
|
+
} | undefined;
|
|
4056
|
+
} | {
|
|
4057
|
+
type: "Number";
|
|
4058
|
+
fieldset?: string | null | undefined;
|
|
4059
|
+
config?: {
|
|
4060
|
+
label?: string | null | undefined;
|
|
4061
|
+
placeholder?: string | undefined;
|
|
4062
|
+
min?: number | undefined;
|
|
4063
|
+
max?: number | undefined;
|
|
4064
|
+
step?: number | undefined;
|
|
4065
|
+
} | undefined;
|
|
4066
|
+
} | {
|
|
4067
|
+
type: "Range";
|
|
4068
|
+
fieldset?: string | null | undefined;
|
|
4069
|
+
config?: {
|
|
4070
|
+
label?: string | null | undefined;
|
|
4071
|
+
placeholder?: string | undefined;
|
|
4072
|
+
min?: number | undefined;
|
|
4073
|
+
max?: number | undefined;
|
|
4074
|
+
step?: number | undefined;
|
|
4075
|
+
} | undefined;
|
|
4076
|
+
} | {
|
|
4077
|
+
type: "StructuredText";
|
|
4078
|
+
fieldset?: string | null | undefined;
|
|
4079
|
+
config?: {
|
|
4080
|
+
label?: string | null | undefined;
|
|
4081
|
+
placeholder?: string | undefined;
|
|
4082
|
+
useAsTitle?: boolean | undefined;
|
|
4083
|
+
single?: string | undefined;
|
|
4084
|
+
multi?: string | undefined;
|
|
4085
|
+
imageConstraint?: {
|
|
4086
|
+
width?: number | null | undefined;
|
|
4087
|
+
height?: number | null | undefined;
|
|
4088
|
+
} | undefined;
|
|
4089
|
+
labels?: string[] | undefined;
|
|
4090
|
+
allowTargetBlank?: boolean | undefined;
|
|
4091
|
+
} | undefined;
|
|
4092
|
+
} | {
|
|
4093
|
+
type: "Select";
|
|
4094
|
+
fieldset?: string | null | undefined;
|
|
4095
|
+
config?: {
|
|
4096
|
+
label?: string | null | undefined;
|
|
4097
|
+
placeholder?: string | undefined;
|
|
4098
|
+
default_value?: string | undefined;
|
|
4099
|
+
options?: string[] | undefined;
|
|
4100
|
+
} | undefined;
|
|
4101
|
+
} | {
|
|
4102
|
+
type: "Separator";
|
|
4103
|
+
config?: {
|
|
4104
|
+
label?: string | null | undefined;
|
|
4105
|
+
} | undefined;
|
|
4106
|
+
} | {
|
|
4107
|
+
type: "Table";
|
|
4108
|
+
config?: {
|
|
4109
|
+
label?: string | null | undefined;
|
|
4110
|
+
} | undefined;
|
|
4111
|
+
} | {
|
|
4112
|
+
type: "Text";
|
|
4113
|
+
fieldset?: string | null | undefined;
|
|
4114
|
+
config?: {
|
|
4115
|
+
label?: string | null | undefined;
|
|
4116
|
+
useAsTitle?: boolean | undefined;
|
|
4117
|
+
placeholder?: string | undefined;
|
|
4118
|
+
} | undefined;
|
|
4119
|
+
} | {
|
|
4120
|
+
type: "Timestamp";
|
|
4121
|
+
fieldset?: string | null | undefined;
|
|
4122
|
+
config?: {
|
|
4123
|
+
label?: string | null | undefined;
|
|
4124
|
+
placeholder?: string | undefined;
|
|
4125
|
+
default?: string | undefined;
|
|
4126
|
+
} | undefined;
|
|
4127
|
+
}> | undefined;
|
|
4128
|
+
} | undefined;
|
|
4129
|
+
}> | undefined;
|
|
4130
|
+
} | undefined;
|
|
4131
|
+
}> | undefined;
|
|
4132
|
+
items?: Record<string, {
|
|
4133
|
+
type: "Boolean";
|
|
4134
|
+
config?: {
|
|
4135
|
+
label?: string | null | undefined;
|
|
4136
|
+
default_value?: boolean | undefined;
|
|
4137
|
+
placeholder_true?: string | undefined;
|
|
4138
|
+
placeholder_false?: string | undefined;
|
|
4139
|
+
} | undefined;
|
|
4140
|
+
} | {
|
|
4141
|
+
type: "Color";
|
|
4142
|
+
fieldset?: string | null | undefined;
|
|
4143
|
+
config?: {
|
|
4144
|
+
label?: string | null | undefined;
|
|
4145
|
+
placeholder?: string | undefined;
|
|
4146
|
+
} | undefined;
|
|
4147
|
+
} | {
|
|
4148
|
+
type: "Date";
|
|
4149
|
+
fieldset?: string | null | undefined;
|
|
4150
|
+
config?: {
|
|
4151
|
+
label?: string | null | undefined;
|
|
4152
|
+
placeholder?: string | undefined;
|
|
4153
|
+
default?: string | undefined;
|
|
4154
|
+
} | undefined;
|
|
4155
|
+
} | {
|
|
4156
|
+
type: "Embed";
|
|
4157
|
+
fieldset?: string | null | undefined;
|
|
4158
|
+
config?: {
|
|
4159
|
+
label?: string | null | undefined;
|
|
4160
|
+
placeholder?: string | undefined;
|
|
4161
|
+
useAsTitle?: boolean | undefined;
|
|
4162
|
+
} | undefined;
|
|
4163
|
+
} | {
|
|
4164
|
+
type: "GeoPoint";
|
|
4165
|
+
fieldset?: string | null | undefined;
|
|
4166
|
+
config?: {
|
|
4167
|
+
label?: string | null | undefined;
|
|
4168
|
+
} | undefined;
|
|
4169
|
+
} | {
|
|
4170
|
+
type: "Image";
|
|
4171
|
+
fieldset?: string | null | undefined;
|
|
4172
|
+
config?: {
|
|
4173
|
+
label?: string | null | undefined;
|
|
4174
|
+
placeholder?: string | undefined;
|
|
4175
|
+
constraint?: {
|
|
4176
|
+
width?: number | null | undefined;
|
|
4177
|
+
height?: number | null | undefined;
|
|
4178
|
+
} | undefined;
|
|
4179
|
+
thumbnails?: {
|
|
4180
|
+
name: string;
|
|
4181
|
+
width?: number | null | undefined;
|
|
4182
|
+
height?: number | null | undefined;
|
|
4183
|
+
}[] | undefined;
|
|
4184
|
+
} | undefined;
|
|
4185
|
+
} | {
|
|
4186
|
+
type: "IntegrationFields";
|
|
4187
|
+
fieldset?: string | null | undefined;
|
|
4188
|
+
config?: {
|
|
4189
|
+
label?: string | null | undefined;
|
|
4190
|
+
placeholder?: string | undefined;
|
|
4191
|
+
catalog?: string | undefined;
|
|
4192
|
+
} | undefined;
|
|
4193
|
+
} | {
|
|
4194
|
+
type: "Link";
|
|
4195
|
+
fieldset?: string | null | undefined;
|
|
4196
|
+
config?: {
|
|
4197
|
+
label?: string | null | undefined;
|
|
4198
|
+
useAsTitle?: boolean | undefined;
|
|
4199
|
+
placeholder?: string | undefined;
|
|
4200
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
4201
|
+
customtypes?: (string | {
|
|
4202
|
+
id: string;
|
|
4203
|
+
fields: (string | {
|
|
4204
|
+
id: string;
|
|
4205
|
+
customtypes: (string | {
|
|
4206
|
+
id: string;
|
|
4207
|
+
fields: (string | {
|
|
4208
|
+
id: string;
|
|
4209
|
+
fields: string[];
|
|
4210
|
+
})[];
|
|
4211
|
+
})[];
|
|
4212
|
+
} | {
|
|
4213
|
+
id: string;
|
|
4214
|
+
fields: (string | {
|
|
4215
|
+
id: string;
|
|
4216
|
+
customtypes: (string | {
|
|
4217
|
+
id: string;
|
|
4218
|
+
fields: (string | {
|
|
4219
|
+
id: string;
|
|
4220
|
+
fields: string[];
|
|
4221
|
+
})[];
|
|
4222
|
+
})[];
|
|
4223
|
+
})[];
|
|
4224
|
+
})[];
|
|
4225
|
+
})[] | undefined;
|
|
4226
|
+
masks?: string[] | undefined;
|
|
4227
|
+
tags?: string[] | undefined;
|
|
4228
|
+
allowTargetBlank?: boolean | undefined;
|
|
4229
|
+
allowText?: boolean | undefined;
|
|
4230
|
+
repeat?: boolean | undefined;
|
|
4231
|
+
variants?: string[] | undefined;
|
|
4232
|
+
} | undefined;
|
|
4233
|
+
} | {
|
|
4234
|
+
type: "Number";
|
|
4235
|
+
fieldset?: string | null | undefined;
|
|
4236
|
+
config?: {
|
|
4237
|
+
label?: string | null | undefined;
|
|
4238
|
+
placeholder?: string | undefined;
|
|
4239
|
+
min?: number | undefined;
|
|
4240
|
+
max?: number | undefined;
|
|
4241
|
+
step?: number | undefined;
|
|
4242
|
+
} | undefined;
|
|
4243
|
+
} | {
|
|
4244
|
+
type: "Range";
|
|
4245
|
+
fieldset?: string | null | undefined;
|
|
4246
|
+
config?: {
|
|
4247
|
+
label?: string | null | undefined;
|
|
4248
|
+
placeholder?: string | undefined;
|
|
4249
|
+
min?: number | undefined;
|
|
4250
|
+
max?: number | undefined;
|
|
4251
|
+
step?: number | undefined;
|
|
4252
|
+
} | undefined;
|
|
4253
|
+
} | {
|
|
4254
|
+
type: "StructuredText";
|
|
4255
|
+
fieldset?: string | null | undefined;
|
|
4256
|
+
config?: {
|
|
4257
|
+
label?: string | null | undefined;
|
|
4258
|
+
placeholder?: string | undefined;
|
|
4259
|
+
useAsTitle?: boolean | undefined;
|
|
4260
|
+
single?: string | undefined;
|
|
4261
|
+
multi?: string | undefined;
|
|
4262
|
+
imageConstraint?: {
|
|
4263
|
+
width?: number | null | undefined;
|
|
4264
|
+
height?: number | null | undefined;
|
|
4265
|
+
} | undefined;
|
|
4266
|
+
labels?: string[] | undefined;
|
|
4267
|
+
allowTargetBlank?: boolean | undefined;
|
|
4268
|
+
} | undefined;
|
|
4269
|
+
} | {
|
|
4270
|
+
type: "Select";
|
|
4271
|
+
fieldset?: string | null | undefined;
|
|
4272
|
+
config?: {
|
|
4273
|
+
label?: string | null | undefined;
|
|
4274
|
+
placeholder?: string | undefined;
|
|
4275
|
+
default_value?: string | undefined;
|
|
4276
|
+
options?: string[] | undefined;
|
|
4277
|
+
} | undefined;
|
|
4278
|
+
} | {
|
|
4279
|
+
type: "Separator";
|
|
4280
|
+
config?: {
|
|
4281
|
+
label?: string | null | undefined;
|
|
4282
|
+
} | undefined;
|
|
4283
|
+
} | {
|
|
4284
|
+
type: "Table";
|
|
4285
|
+
config?: {
|
|
4286
|
+
label?: string | null | undefined;
|
|
4287
|
+
} | undefined;
|
|
4288
|
+
} | {
|
|
4289
|
+
type: "Text";
|
|
4290
|
+
fieldset?: string | null | undefined;
|
|
4291
|
+
config?: {
|
|
4292
|
+
label?: string | null | undefined;
|
|
4293
|
+
useAsTitle?: boolean | undefined;
|
|
4294
|
+
placeholder?: string | undefined;
|
|
4295
|
+
} | undefined;
|
|
4296
|
+
} | {
|
|
4297
|
+
type: "Timestamp";
|
|
4298
|
+
fieldset?: string | null | undefined;
|
|
4299
|
+
config?: {
|
|
4300
|
+
label?: string | null | undefined;
|
|
4301
|
+
placeholder?: string | undefined;
|
|
4302
|
+
default?: string | undefined;
|
|
4303
|
+
} | undefined;
|
|
4304
|
+
}> | undefined;
|
|
4305
|
+
}, unknown>;
|
|
3561
4306
|
declare const SharedSliceRefModelSchema: t.Type<{
|
|
3562
4307
|
type: "SharedSlice";
|
|
3563
4308
|
}, {
|
|
@@ -4359,5 +5104,5 @@ declare const CustomTypeModelSchema: t.Type<{
|
|
|
4359
5104
|
label?: string | null | undefined;
|
|
4360
5105
|
}, unknown>;
|
|
4361
5106
|
//#endregion
|
|
4362
|
-
export { AssetSchema, BooleanContentSchema, BooleanLegacy, BooleanModelSchema, ColorContentSchema, ColorLegacy, ColorModelSchema, CompositeSliceContentSchema, CompositeSliceItemContentSchema, CompositeSliceLegacy, CompositeSliceModelSchema, CustomTypeModelSchema, DateContentSchema, DateLegacy, DateModelSchema, DocumentContentSchema, DocumentLegacy, DynamicSectionModelSchema, DynamicSliceModelSchema, DynamicSlicesModelSchema, DynamicWidgetModelSchema, EmbedContentSchema, EmbedLegacy, EmbedModelSchema, EmbedSchema, EmptyContentSchema, EmptyLegacy, FieldContentSchema, GeoPointContentSchema, GeoPointLegacy, GeoPointModelSchema, GroupContentSchema, GroupItemContentSchema, GroupItemLegacy, GroupLegacy, GroupModelSchema, HexaColorCodeSchema, ImageContentSchema, ImageLegacy, ImageModelSchema, IntegrationFieldContentSchema, IntegrationFieldLegacy, IntegrationFieldModelSchema, LegacySliceContentSchema, LegacySliceItemContentSchema, LegacySliceLegacy, LegacySliceModelSchema, LinkContentSchema, LinkLegacy, LinkModelSchema, NestableContentSchema, NestableLegacy, NestableModelSchema, NestedGroupModelSchema, NonEmptyStringSchema, NumberContentSchema, NumberLegacy, NumberModelSchema, RangeContentSchema, RangeLegacy, RangeModelSchema, RepeatableContentSchema, RepeatableLegacy, RichTextContentBlockSchema, RichTextContentSchema, RichTextContentSpanSchema, RichTextLegacy, RichTextModelSchema, SelectContentSchema, SelectLegacy, SelectModelSchema, SeparatorContentSchema, SeparatorLegacy, SeparatorModelSchema, SharedSliceContentSchema, SharedSliceItemContentSchema, SharedSliceLegacy, SharedSliceModelSchema, SharedSliceRefModelSchema, SliceContentModelSchema, SliceContentSchema, SliceItemContentSchema, SliceItemLegacy, SliceLegacy, SlicesContentSchema, SlicesLegacy, StaticCustomTypeModelSchema, StaticSectionModelSchema, StaticSliceModelSchema, StaticSlicesModelSchema, StaticWidgetModelSchema, TableContentSchema, TableLegacy, TableModelSchema, TextContentSchema, TextLegacy, TextModelSchema, TimestampContentSchema, TimestampLegacy, TimestampModelSchema, UIDContentSchema, UIDLegacy, UIDModelSchema, WidgetContentSchema, WidgetKeySchema, WidgetLegacy };
|
|
5107
|
+
export { AssetSchema, BooleanContentSchema, BooleanLegacy, BooleanModelSchema, ColorContentSchema, ColorLegacy, ColorModelSchema, CompositeSliceContentSchema, CompositeSliceItemContentSchema, CompositeSliceLegacy, CompositeSliceModelSchema, CustomTypeModelSchema, DateContentSchema, DateLegacy, DateModelSchema, DocumentContentSchema, DocumentLegacy, DynamicSectionModelSchema, DynamicSliceModelSchema, DynamicSlicesModelSchema, DynamicWidgetModelSchema, EmbedContentSchema, EmbedLegacy, EmbedModelSchema, EmbedSchema, EmptyContentSchema, EmptyLegacy, FieldContentSchema, GeoPointContentSchema, GeoPointLegacy, GeoPointModelSchema, GroupContentSchema, GroupItemContentSchema, GroupItemLegacy, GroupLegacy, GroupModelSchema, HexaColorCodeSchema, ImageContentSchema, ImageLegacy, ImageModelSchema, IntegrationFieldContentSchema, IntegrationFieldLegacy, IntegrationFieldModelSchema, LegacySliceContentSchema, LegacySliceItemContentSchema, LegacySliceLegacy, LegacySliceModelSchema, LinkContentSchema, LinkLegacy, LinkModelSchema, NestableContentSchema, NestableLegacy, NestableModelSchema, NestedGroupModelSchema, NonEmptyStringSchema, NumberContentSchema, NumberLegacy, NumberModelSchema, RangeContentSchema, RangeLegacy, RangeModelSchema, RepeatableContentSchema, RepeatableLegacy, RichTextContentBlockSchema, RichTextContentSchema, RichTextContentSpanSchema, RichTextLegacy, RichTextModelSchema, SelectContentSchema, SelectLegacy, SelectModelSchema, SeparatorContentSchema, SeparatorLegacy, SeparatorModelSchema, SharedSliceContentSchema, SharedSliceItemContentSchema, SharedSliceLegacy, SharedSliceModelSchema, SharedSliceModelVariationSchema, SharedSliceRefModelSchema, SliceContentModelSchema, SliceContentSchema, SliceItemContentSchema, SliceItemLegacy, SliceLegacy, SlicesContentSchema, SlicesLegacy, StaticCustomTypeModelSchema, StaticSectionModelSchema, StaticSliceModelSchema, StaticSlicesModelSchema, StaticWidgetModelSchema, TableContentSchema, TableLegacy, TableModelSchema, TextContentSchema, TextLegacy, TextModelSchema, TimestampContentSchema, TimestampLegacy, TimestampModelSchema, UIDContentSchema, UIDLegacy, UIDModelSchema, WidgetContentSchema, WidgetKeySchema, WidgetLegacy };
|
|
4363
5108
|
//# sourceMappingURL=io-ts.d.ts.map
|