@webstudio-is/sdk 0.0.0-588fe22 → 0.0.0-73cd6ea
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/__generated__/normalize.css.js +246 -158
- package/lib/core-templates.js +1117 -73
- package/lib/index.js +1576 -438
- package/lib/runtime.js +17 -1
- package/lib/types/__generated__/normalize.css.d.ts +2 -2
- package/lib/types/__generated__/tags.d.ts +1 -0
- package/lib/types/core-metas.d.ts +5 -733
- package/lib/types/core-templates.d.ts +3 -0
- package/lib/types/css.d.ts +31 -0
- package/lib/types/css.test.d.ts +1 -0
- package/lib/types/expression.d.ts +7 -5
- package/lib/types/index.d.ts +4 -1
- package/lib/types/instances-utils.d.ts +3 -0
- package/lib/types/runtime.d.ts +5 -0
- package/lib/types/schema/animation-schema.d.ts +53844 -0
- package/lib/types/schema/assets.d.ts +12 -84
- package/lib/types/schema/breakpoints.d.ts +8 -8
- package/lib/types/schema/component-meta.d.ts +11513 -1369
- package/lib/types/schema/data-sources.d.ts +18 -18
- package/lib/types/schema/deployment.d.ts +4 -4
- package/lib/types/schema/instances.d.ts +14 -217
- package/lib/types/schema/pages.d.ts +150 -149
- package/lib/types/schema/prop-meta.d.ts +105 -39
- package/lib/types/schema/props.d.ts +36858 -20
- package/lib/types/schema/resources.d.ts +4 -4
- package/lib/types/schema/styles.d.ts +4893 -1229
- package/lib/types/schema/webstudio.d.ts +22828 -468
- package/package.json +10 -9
- package/lib/types/schema/embed-template.d.ts +0 -2250
|
@@ -12,13 +12,13 @@ export declare const Folder: z.ZodObject<{
|
|
|
12
12
|
children: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodString]>, "many">;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
14
|
name: string;
|
|
15
|
-
id: string;
|
|
16
15
|
children: string[];
|
|
16
|
+
id: string;
|
|
17
17
|
slug: string;
|
|
18
18
|
}, {
|
|
19
19
|
name: string;
|
|
20
|
-
id: string;
|
|
21
20
|
children: string[];
|
|
21
|
+
id: string;
|
|
22
22
|
slug: string;
|
|
23
23
|
}>;
|
|
24
24
|
export type Folder = z.infer<typeof Folder>;
|
|
@@ -26,6 +26,7 @@ export declare const PageName: z.ZodEffects<z.ZodString, string, string>;
|
|
|
26
26
|
export declare const PageTitle: z.ZodEffects<z.ZodString, string, string>;
|
|
27
27
|
export declare const documentTypes: readonly ["html", "xml"];
|
|
28
28
|
export declare const HomePagePath: z.ZodEffects<z.ZodString, "", string>;
|
|
29
|
+
export declare const OldPagePath: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>;
|
|
29
30
|
export declare const PagePath: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>;
|
|
30
31
|
declare const Page: z.ZodObject<{
|
|
31
32
|
path: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>;
|
|
@@ -34,7 +35,7 @@ declare const Page: z.ZodObject<{
|
|
|
34
35
|
title: z.ZodEffects<z.ZodString, string, string>;
|
|
35
36
|
history: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
36
37
|
rootInstanceId: z.ZodString;
|
|
37
|
-
systemDataSourceId: z.ZodString
|
|
38
|
+
systemDataSourceId: z.ZodOptional<z.ZodString>;
|
|
38
39
|
meta: z.ZodObject<{
|
|
39
40
|
description: z.ZodOptional<z.ZodString>;
|
|
40
41
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -56,101 +57,101 @@ declare const Page: z.ZodObject<{
|
|
|
56
57
|
property: string;
|
|
57
58
|
}>, "many">>;
|
|
58
59
|
}, "strip", z.ZodTypeAny, {
|
|
59
|
-
|
|
60
|
+
status?: string | undefined;
|
|
61
|
+
custom?: {
|
|
62
|
+
content: string;
|
|
63
|
+
property: string;
|
|
64
|
+
}[] | undefined;
|
|
60
65
|
title?: string | undefined;
|
|
61
|
-
|
|
66
|
+
description?: string | undefined;
|
|
62
67
|
language?: string | undefined;
|
|
68
|
+
excludePageFromSearch?: string | undefined;
|
|
63
69
|
socialImageAssetId?: string | undefined;
|
|
64
70
|
socialImageUrl?: string | undefined;
|
|
65
|
-
status?: string | undefined;
|
|
66
71
|
redirect?: string | undefined;
|
|
67
72
|
documentType?: "html" | "xml" | undefined;
|
|
73
|
+
}, {
|
|
74
|
+
status?: string | undefined;
|
|
68
75
|
custom?: {
|
|
69
76
|
content: string;
|
|
70
77
|
property: string;
|
|
71
78
|
}[] | undefined;
|
|
72
|
-
}, {
|
|
73
|
-
description?: string | undefined;
|
|
74
79
|
title?: string | undefined;
|
|
75
|
-
|
|
80
|
+
description?: string | undefined;
|
|
76
81
|
language?: string | undefined;
|
|
82
|
+
excludePageFromSearch?: string | undefined;
|
|
77
83
|
socialImageAssetId?: string | undefined;
|
|
78
84
|
socialImageUrl?: string | undefined;
|
|
79
|
-
status?: string | undefined;
|
|
80
85
|
redirect?: string | undefined;
|
|
81
86
|
documentType?: "html" | "xml" | undefined;
|
|
82
|
-
custom?: {
|
|
83
|
-
content: string;
|
|
84
|
-
property: string;
|
|
85
|
-
}[] | undefined;
|
|
86
87
|
}>;
|
|
87
88
|
marketplace: z.ZodOptional<z.ZodObject<{
|
|
88
89
|
include: z.ZodOptional<z.ZodBoolean>;
|
|
89
90
|
category: z.ZodOptional<z.ZodString>;
|
|
90
91
|
thumbnailAssetId: z.ZodOptional<z.ZodString>;
|
|
91
92
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
include?: boolean | undefined;
|
|
93
93
|
category?: string | undefined;
|
|
94
|
+
include?: boolean | undefined;
|
|
94
95
|
thumbnailAssetId?: string | undefined;
|
|
95
96
|
}, {
|
|
96
|
-
include?: boolean | undefined;
|
|
97
97
|
category?: string | undefined;
|
|
98
|
+
include?: boolean | undefined;
|
|
98
99
|
thumbnailAssetId?: string | undefined;
|
|
99
100
|
}>>;
|
|
100
101
|
}, "strip", z.ZodTypeAny, {
|
|
101
102
|
path: string;
|
|
102
103
|
name: string;
|
|
103
104
|
meta: {
|
|
104
|
-
|
|
105
|
+
status?: string | undefined;
|
|
106
|
+
custom?: {
|
|
107
|
+
content: string;
|
|
108
|
+
property: string;
|
|
109
|
+
}[] | undefined;
|
|
105
110
|
title?: string | undefined;
|
|
106
|
-
|
|
111
|
+
description?: string | undefined;
|
|
107
112
|
language?: string | undefined;
|
|
113
|
+
excludePageFromSearch?: string | undefined;
|
|
108
114
|
socialImageAssetId?: string | undefined;
|
|
109
115
|
socialImageUrl?: string | undefined;
|
|
110
|
-
status?: string | undefined;
|
|
111
116
|
redirect?: string | undefined;
|
|
112
117
|
documentType?: "html" | "xml" | undefined;
|
|
113
|
-
custom?: {
|
|
114
|
-
content: string;
|
|
115
|
-
property: string;
|
|
116
|
-
}[] | undefined;
|
|
117
118
|
};
|
|
118
119
|
title: string;
|
|
119
120
|
id: string;
|
|
120
121
|
rootInstanceId: string;
|
|
121
|
-
systemDataSourceId: string;
|
|
122
122
|
history?: string[] | undefined;
|
|
123
|
+
systemDataSourceId?: string | undefined;
|
|
123
124
|
marketplace?: {
|
|
124
|
-
include?: boolean | undefined;
|
|
125
125
|
category?: string | undefined;
|
|
126
|
+
include?: boolean | undefined;
|
|
126
127
|
thumbnailAssetId?: string | undefined;
|
|
127
128
|
} | undefined;
|
|
128
129
|
}, {
|
|
129
130
|
path: string;
|
|
130
131
|
name: string;
|
|
131
132
|
meta: {
|
|
132
|
-
|
|
133
|
+
status?: string | undefined;
|
|
134
|
+
custom?: {
|
|
135
|
+
content: string;
|
|
136
|
+
property: string;
|
|
137
|
+
}[] | undefined;
|
|
133
138
|
title?: string | undefined;
|
|
134
|
-
|
|
139
|
+
description?: string | undefined;
|
|
135
140
|
language?: string | undefined;
|
|
141
|
+
excludePageFromSearch?: string | undefined;
|
|
136
142
|
socialImageAssetId?: string | undefined;
|
|
137
143
|
socialImageUrl?: string | undefined;
|
|
138
|
-
status?: string | undefined;
|
|
139
144
|
redirect?: string | undefined;
|
|
140
145
|
documentType?: "html" | "xml" | undefined;
|
|
141
|
-
custom?: {
|
|
142
|
-
content: string;
|
|
143
|
-
property: string;
|
|
144
|
-
}[] | undefined;
|
|
145
146
|
};
|
|
146
147
|
title: string;
|
|
147
148
|
id: string;
|
|
148
149
|
rootInstanceId: string;
|
|
149
|
-
systemDataSourceId: string;
|
|
150
150
|
history?: string[] | undefined;
|
|
151
|
+
systemDataSourceId?: string | undefined;
|
|
151
152
|
marketplace?: {
|
|
152
|
-
include?: boolean | undefined;
|
|
153
153
|
category?: string | undefined;
|
|
154
|
+
include?: boolean | undefined;
|
|
154
155
|
thumbnailAssetId?: string | undefined;
|
|
155
156
|
} | undefined;
|
|
156
157
|
}>;
|
|
@@ -160,21 +161,21 @@ declare const ProjectMeta: z.ZodObject<{
|
|
|
160
161
|
faviconAssetId: z.ZodOptional<z.ZodString>;
|
|
161
162
|
code: z.ZodOptional<z.ZodString>;
|
|
162
163
|
}, "strip", z.ZodTypeAny, {
|
|
164
|
+
code?: string | undefined;
|
|
163
165
|
siteName?: string | undefined;
|
|
164
166
|
contactEmail?: string | undefined;
|
|
165
167
|
faviconAssetId?: string | undefined;
|
|
166
|
-
code?: string | undefined;
|
|
167
168
|
}, {
|
|
169
|
+
code?: string | undefined;
|
|
168
170
|
siteName?: string | undefined;
|
|
169
171
|
contactEmail?: string | undefined;
|
|
170
172
|
faviconAssetId?: string | undefined;
|
|
171
|
-
code?: string | undefined;
|
|
172
173
|
}>;
|
|
173
174
|
export type ProjectMeta = z.infer<typeof ProjectMeta>;
|
|
174
|
-
export declare const ProjectNewRedirectPath: z.
|
|
175
|
+
export declare const ProjectNewRedirectPath: z.ZodEffects<z.ZodString, string, string>;
|
|
175
176
|
export declare const PageRedirect: z.ZodObject<{
|
|
176
177
|
old: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>;
|
|
177
|
-
new: z.
|
|
178
|
+
new: z.ZodEffects<z.ZodString, string, string>;
|
|
178
179
|
status: z.ZodOptional<z.ZodEnum<["301", "302"]>>;
|
|
179
180
|
}, "strip", z.ZodTypeAny, {
|
|
180
181
|
old: string;
|
|
@@ -202,15 +203,15 @@ export declare const Pages: z.ZodObject<{
|
|
|
202
203
|
faviconAssetId: z.ZodOptional<z.ZodString>;
|
|
203
204
|
code: z.ZodOptional<z.ZodString>;
|
|
204
205
|
}, "strip", z.ZodTypeAny, {
|
|
206
|
+
code?: string | undefined;
|
|
205
207
|
siteName?: string | undefined;
|
|
206
208
|
contactEmail?: string | undefined;
|
|
207
209
|
faviconAssetId?: string | undefined;
|
|
208
|
-
code?: string | undefined;
|
|
209
210
|
}, {
|
|
211
|
+
code?: string | undefined;
|
|
210
212
|
siteName?: string | undefined;
|
|
211
213
|
contactEmail?: string | undefined;
|
|
212
214
|
faviconAssetId?: string | undefined;
|
|
213
|
-
code?: string | undefined;
|
|
214
215
|
}>>;
|
|
215
216
|
compiler: z.ZodOptional<z.ZodObject<{
|
|
216
217
|
atomicStyles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -221,7 +222,7 @@ export declare const Pages: z.ZodObject<{
|
|
|
221
222
|
}>>;
|
|
222
223
|
redirects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
223
224
|
old: z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>, string, string>;
|
|
224
|
-
new: z.
|
|
225
|
+
new: z.ZodEffects<z.ZodString, string, string>;
|
|
225
226
|
status: z.ZodOptional<z.ZodEnum<["301", "302"]>>;
|
|
226
227
|
}, "strip", z.ZodTypeAny, {
|
|
227
228
|
old: string;
|
|
@@ -239,7 +240,7 @@ export declare const Pages: z.ZodObject<{
|
|
|
239
240
|
title: z.ZodEffects<z.ZodString, string, string>;
|
|
240
241
|
history: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
241
242
|
rootInstanceId: z.ZodString;
|
|
242
|
-
systemDataSourceId: z.ZodString
|
|
243
|
+
systemDataSourceId: z.ZodOptional<z.ZodString>;
|
|
243
244
|
meta: z.ZodObject<{
|
|
244
245
|
description: z.ZodOptional<z.ZodString>;
|
|
245
246
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -261,101 +262,101 @@ export declare const Pages: z.ZodObject<{
|
|
|
261
262
|
property: string;
|
|
262
263
|
}>, "many">>;
|
|
263
264
|
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
|
|
265
|
+
status?: string | undefined;
|
|
266
|
+
custom?: {
|
|
267
|
+
content: string;
|
|
268
|
+
property: string;
|
|
269
|
+
}[] | undefined;
|
|
265
270
|
title?: string | undefined;
|
|
266
|
-
|
|
271
|
+
description?: string | undefined;
|
|
267
272
|
language?: string | undefined;
|
|
273
|
+
excludePageFromSearch?: string | undefined;
|
|
268
274
|
socialImageAssetId?: string | undefined;
|
|
269
275
|
socialImageUrl?: string | undefined;
|
|
270
|
-
status?: string | undefined;
|
|
271
276
|
redirect?: string | undefined;
|
|
272
277
|
documentType?: "html" | "xml" | undefined;
|
|
278
|
+
}, {
|
|
279
|
+
status?: string | undefined;
|
|
273
280
|
custom?: {
|
|
274
281
|
content: string;
|
|
275
282
|
property: string;
|
|
276
283
|
}[] | undefined;
|
|
277
|
-
}, {
|
|
278
|
-
description?: string | undefined;
|
|
279
284
|
title?: string | undefined;
|
|
280
|
-
|
|
285
|
+
description?: string | undefined;
|
|
281
286
|
language?: string | undefined;
|
|
287
|
+
excludePageFromSearch?: string | undefined;
|
|
282
288
|
socialImageAssetId?: string | undefined;
|
|
283
289
|
socialImageUrl?: string | undefined;
|
|
284
|
-
status?: string | undefined;
|
|
285
290
|
redirect?: string | undefined;
|
|
286
291
|
documentType?: "html" | "xml" | undefined;
|
|
287
|
-
custom?: {
|
|
288
|
-
content: string;
|
|
289
|
-
property: string;
|
|
290
|
-
}[] | undefined;
|
|
291
292
|
}>;
|
|
292
293
|
marketplace: z.ZodOptional<z.ZodObject<{
|
|
293
294
|
include: z.ZodOptional<z.ZodBoolean>;
|
|
294
295
|
category: z.ZodOptional<z.ZodString>;
|
|
295
296
|
thumbnailAssetId: z.ZodOptional<z.ZodString>;
|
|
296
297
|
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
include?: boolean | undefined;
|
|
298
298
|
category?: string | undefined;
|
|
299
|
+
include?: boolean | undefined;
|
|
299
300
|
thumbnailAssetId?: string | undefined;
|
|
300
301
|
}, {
|
|
301
|
-
include?: boolean | undefined;
|
|
302
302
|
category?: string | undefined;
|
|
303
|
+
include?: boolean | undefined;
|
|
303
304
|
thumbnailAssetId?: string | undefined;
|
|
304
305
|
}>>;
|
|
305
306
|
}, "strip", z.ZodTypeAny, {
|
|
306
307
|
path: "";
|
|
307
308
|
name: string;
|
|
308
309
|
meta: {
|
|
309
|
-
|
|
310
|
+
status?: string | undefined;
|
|
311
|
+
custom?: {
|
|
312
|
+
content: string;
|
|
313
|
+
property: string;
|
|
314
|
+
}[] | undefined;
|
|
310
315
|
title?: string | undefined;
|
|
311
|
-
|
|
316
|
+
description?: string | undefined;
|
|
312
317
|
language?: string | undefined;
|
|
318
|
+
excludePageFromSearch?: string | undefined;
|
|
313
319
|
socialImageAssetId?: string | undefined;
|
|
314
320
|
socialImageUrl?: string | undefined;
|
|
315
|
-
status?: string | undefined;
|
|
316
321
|
redirect?: string | undefined;
|
|
317
322
|
documentType?: "html" | "xml" | undefined;
|
|
318
|
-
custom?: {
|
|
319
|
-
content: string;
|
|
320
|
-
property: string;
|
|
321
|
-
}[] | undefined;
|
|
322
323
|
};
|
|
323
324
|
title: string;
|
|
324
325
|
id: string;
|
|
325
326
|
rootInstanceId: string;
|
|
326
|
-
systemDataSourceId: string;
|
|
327
327
|
history?: string[] | undefined;
|
|
328
|
+
systemDataSourceId?: string | undefined;
|
|
328
329
|
marketplace?: {
|
|
329
|
-
include?: boolean | undefined;
|
|
330
330
|
category?: string | undefined;
|
|
331
|
+
include?: boolean | undefined;
|
|
331
332
|
thumbnailAssetId?: string | undefined;
|
|
332
333
|
} | undefined;
|
|
333
334
|
}, {
|
|
334
335
|
path: string;
|
|
335
336
|
name: string;
|
|
336
337
|
meta: {
|
|
337
|
-
|
|
338
|
+
status?: string | undefined;
|
|
339
|
+
custom?: {
|
|
340
|
+
content: string;
|
|
341
|
+
property: string;
|
|
342
|
+
}[] | undefined;
|
|
338
343
|
title?: string | undefined;
|
|
339
|
-
|
|
344
|
+
description?: string | undefined;
|
|
340
345
|
language?: string | undefined;
|
|
346
|
+
excludePageFromSearch?: string | undefined;
|
|
341
347
|
socialImageAssetId?: string | undefined;
|
|
342
348
|
socialImageUrl?: string | undefined;
|
|
343
|
-
status?: string | undefined;
|
|
344
349
|
redirect?: string | undefined;
|
|
345
350
|
documentType?: "html" | "xml" | undefined;
|
|
346
|
-
custom?: {
|
|
347
|
-
content: string;
|
|
348
|
-
property: string;
|
|
349
|
-
}[] | undefined;
|
|
350
351
|
};
|
|
351
352
|
title: string;
|
|
352
353
|
id: string;
|
|
353
354
|
rootInstanceId: string;
|
|
354
|
-
systemDataSourceId: string;
|
|
355
355
|
history?: string[] | undefined;
|
|
356
|
+
systemDataSourceId?: string | undefined;
|
|
356
357
|
marketplace?: {
|
|
357
|
-
include?: boolean | undefined;
|
|
358
358
|
category?: string | undefined;
|
|
359
|
+
include?: boolean | undefined;
|
|
359
360
|
thumbnailAssetId?: string | undefined;
|
|
360
361
|
} | undefined;
|
|
361
362
|
}>;
|
|
@@ -366,7 +367,7 @@ export declare const Pages: z.ZodObject<{
|
|
|
366
367
|
title: z.ZodEffects<z.ZodString, string, string>;
|
|
367
368
|
history: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
368
369
|
rootInstanceId: z.ZodString;
|
|
369
|
-
systemDataSourceId: z.ZodString
|
|
370
|
+
systemDataSourceId: z.ZodOptional<z.ZodString>;
|
|
370
371
|
meta: z.ZodObject<{
|
|
371
372
|
description: z.ZodOptional<z.ZodString>;
|
|
372
373
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -388,101 +389,101 @@ export declare const Pages: z.ZodObject<{
|
|
|
388
389
|
property: string;
|
|
389
390
|
}>, "many">>;
|
|
390
391
|
}, "strip", z.ZodTypeAny, {
|
|
391
|
-
|
|
392
|
+
status?: string | undefined;
|
|
393
|
+
custom?: {
|
|
394
|
+
content: string;
|
|
395
|
+
property: string;
|
|
396
|
+
}[] | undefined;
|
|
392
397
|
title?: string | undefined;
|
|
393
|
-
|
|
398
|
+
description?: string | undefined;
|
|
394
399
|
language?: string | undefined;
|
|
400
|
+
excludePageFromSearch?: string | undefined;
|
|
395
401
|
socialImageAssetId?: string | undefined;
|
|
396
402
|
socialImageUrl?: string | undefined;
|
|
397
|
-
status?: string | undefined;
|
|
398
403
|
redirect?: string | undefined;
|
|
399
404
|
documentType?: "html" | "xml" | undefined;
|
|
405
|
+
}, {
|
|
406
|
+
status?: string | undefined;
|
|
400
407
|
custom?: {
|
|
401
408
|
content: string;
|
|
402
409
|
property: string;
|
|
403
410
|
}[] | undefined;
|
|
404
|
-
}, {
|
|
405
|
-
description?: string | undefined;
|
|
406
411
|
title?: string | undefined;
|
|
407
|
-
|
|
412
|
+
description?: string | undefined;
|
|
408
413
|
language?: string | undefined;
|
|
414
|
+
excludePageFromSearch?: string | undefined;
|
|
409
415
|
socialImageAssetId?: string | undefined;
|
|
410
416
|
socialImageUrl?: string | undefined;
|
|
411
|
-
status?: string | undefined;
|
|
412
417
|
redirect?: string | undefined;
|
|
413
418
|
documentType?: "html" | "xml" | undefined;
|
|
414
|
-
custom?: {
|
|
415
|
-
content: string;
|
|
416
|
-
property: string;
|
|
417
|
-
}[] | undefined;
|
|
418
419
|
}>;
|
|
419
420
|
marketplace: z.ZodOptional<z.ZodObject<{
|
|
420
421
|
include: z.ZodOptional<z.ZodBoolean>;
|
|
421
422
|
category: z.ZodOptional<z.ZodString>;
|
|
422
423
|
thumbnailAssetId: z.ZodOptional<z.ZodString>;
|
|
423
424
|
}, "strip", z.ZodTypeAny, {
|
|
424
|
-
include?: boolean | undefined;
|
|
425
425
|
category?: string | undefined;
|
|
426
|
+
include?: boolean | undefined;
|
|
426
427
|
thumbnailAssetId?: string | undefined;
|
|
427
428
|
}, {
|
|
428
|
-
include?: boolean | undefined;
|
|
429
429
|
category?: string | undefined;
|
|
430
|
+
include?: boolean | undefined;
|
|
430
431
|
thumbnailAssetId?: string | undefined;
|
|
431
432
|
}>>;
|
|
432
433
|
}, "strip", z.ZodTypeAny, {
|
|
433
434
|
path: string;
|
|
434
435
|
name: string;
|
|
435
436
|
meta: {
|
|
436
|
-
|
|
437
|
+
status?: string | undefined;
|
|
438
|
+
custom?: {
|
|
439
|
+
content: string;
|
|
440
|
+
property: string;
|
|
441
|
+
}[] | undefined;
|
|
437
442
|
title?: string | undefined;
|
|
438
|
-
|
|
443
|
+
description?: string | undefined;
|
|
439
444
|
language?: string | undefined;
|
|
445
|
+
excludePageFromSearch?: string | undefined;
|
|
440
446
|
socialImageAssetId?: string | undefined;
|
|
441
447
|
socialImageUrl?: string | undefined;
|
|
442
|
-
status?: string | undefined;
|
|
443
448
|
redirect?: string | undefined;
|
|
444
449
|
documentType?: "html" | "xml" | undefined;
|
|
445
|
-
custom?: {
|
|
446
|
-
content: string;
|
|
447
|
-
property: string;
|
|
448
|
-
}[] | undefined;
|
|
449
450
|
};
|
|
450
451
|
title: string;
|
|
451
452
|
id: string;
|
|
452
453
|
rootInstanceId: string;
|
|
453
|
-
systemDataSourceId: string;
|
|
454
454
|
history?: string[] | undefined;
|
|
455
|
+
systemDataSourceId?: string | undefined;
|
|
455
456
|
marketplace?: {
|
|
456
|
-
include?: boolean | undefined;
|
|
457
457
|
category?: string | undefined;
|
|
458
|
+
include?: boolean | undefined;
|
|
458
459
|
thumbnailAssetId?: string | undefined;
|
|
459
460
|
} | undefined;
|
|
460
461
|
}, {
|
|
461
462
|
path: string;
|
|
462
463
|
name: string;
|
|
463
464
|
meta: {
|
|
464
|
-
|
|
465
|
+
status?: string | undefined;
|
|
466
|
+
custom?: {
|
|
467
|
+
content: string;
|
|
468
|
+
property: string;
|
|
469
|
+
}[] | undefined;
|
|
465
470
|
title?: string | undefined;
|
|
466
|
-
|
|
471
|
+
description?: string | undefined;
|
|
467
472
|
language?: string | undefined;
|
|
473
|
+
excludePageFromSearch?: string | undefined;
|
|
468
474
|
socialImageAssetId?: string | undefined;
|
|
469
475
|
socialImageUrl?: string | undefined;
|
|
470
|
-
status?: string | undefined;
|
|
471
476
|
redirect?: string | undefined;
|
|
472
477
|
documentType?: "html" | "xml" | undefined;
|
|
473
|
-
custom?: {
|
|
474
|
-
content: string;
|
|
475
|
-
property: string;
|
|
476
|
-
}[] | undefined;
|
|
477
478
|
};
|
|
478
479
|
title: string;
|
|
479
480
|
id: string;
|
|
480
481
|
rootInstanceId: string;
|
|
481
|
-
systemDataSourceId: string;
|
|
482
482
|
history?: string[] | undefined;
|
|
483
|
+
systemDataSourceId?: string | undefined;
|
|
483
484
|
marketplace?: {
|
|
484
|
-
include?: boolean | undefined;
|
|
485
485
|
category?: string | undefined;
|
|
486
|
+
include?: boolean | undefined;
|
|
486
487
|
thumbnailAssetId?: string | undefined;
|
|
487
488
|
} | undefined;
|
|
488
489
|
}>, "many">;
|
|
@@ -493,23 +494,23 @@ export declare const Pages: z.ZodObject<{
|
|
|
493
494
|
children: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodString]>, "many">;
|
|
494
495
|
}, "strip", z.ZodTypeAny, {
|
|
495
496
|
name: string;
|
|
496
|
-
id: string;
|
|
497
497
|
children: string[];
|
|
498
|
+
id: string;
|
|
498
499
|
slug: string;
|
|
499
500
|
}, {
|
|
500
501
|
name: string;
|
|
501
|
-
id: string;
|
|
502
502
|
children: string[];
|
|
503
|
+
id: string;
|
|
503
504
|
slug: string;
|
|
504
505
|
}>, "many">, {
|
|
505
506
|
name: string;
|
|
506
|
-
id: string;
|
|
507
507
|
children: string[];
|
|
508
|
+
id: string;
|
|
508
509
|
slug: string;
|
|
509
510
|
}[], {
|
|
510
511
|
name: string;
|
|
511
|
-
id: string;
|
|
512
512
|
children: string[];
|
|
513
|
+
id: string;
|
|
513
514
|
slug: string;
|
|
514
515
|
}[]>;
|
|
515
516
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -517,28 +518,28 @@ export declare const Pages: z.ZodObject<{
|
|
|
517
518
|
path: "";
|
|
518
519
|
name: string;
|
|
519
520
|
meta: {
|
|
520
|
-
|
|
521
|
+
status?: string | undefined;
|
|
522
|
+
custom?: {
|
|
523
|
+
content: string;
|
|
524
|
+
property: string;
|
|
525
|
+
}[] | undefined;
|
|
521
526
|
title?: string | undefined;
|
|
522
|
-
|
|
527
|
+
description?: string | undefined;
|
|
523
528
|
language?: string | undefined;
|
|
529
|
+
excludePageFromSearch?: string | undefined;
|
|
524
530
|
socialImageAssetId?: string | undefined;
|
|
525
531
|
socialImageUrl?: string | undefined;
|
|
526
|
-
status?: string | undefined;
|
|
527
532
|
redirect?: string | undefined;
|
|
528
533
|
documentType?: "html" | "xml" | undefined;
|
|
529
|
-
custom?: {
|
|
530
|
-
content: string;
|
|
531
|
-
property: string;
|
|
532
|
-
}[] | undefined;
|
|
533
534
|
};
|
|
534
535
|
title: string;
|
|
535
536
|
id: string;
|
|
536
537
|
rootInstanceId: string;
|
|
537
|
-
systemDataSourceId: string;
|
|
538
538
|
history?: string[] | undefined;
|
|
539
|
+
systemDataSourceId?: string | undefined;
|
|
539
540
|
marketplace?: {
|
|
540
|
-
include?: boolean | undefined;
|
|
541
541
|
category?: string | undefined;
|
|
542
|
+
include?: boolean | undefined;
|
|
542
543
|
thumbnailAssetId?: string | undefined;
|
|
543
544
|
} | undefined;
|
|
544
545
|
};
|
|
@@ -546,42 +547,42 @@ export declare const Pages: z.ZodObject<{
|
|
|
546
547
|
path: string;
|
|
547
548
|
name: string;
|
|
548
549
|
meta: {
|
|
549
|
-
|
|
550
|
+
status?: string | undefined;
|
|
551
|
+
custom?: {
|
|
552
|
+
content: string;
|
|
553
|
+
property: string;
|
|
554
|
+
}[] | undefined;
|
|
550
555
|
title?: string | undefined;
|
|
551
|
-
|
|
556
|
+
description?: string | undefined;
|
|
552
557
|
language?: string | undefined;
|
|
558
|
+
excludePageFromSearch?: string | undefined;
|
|
553
559
|
socialImageAssetId?: string | undefined;
|
|
554
560
|
socialImageUrl?: string | undefined;
|
|
555
|
-
status?: string | undefined;
|
|
556
561
|
redirect?: string | undefined;
|
|
557
562
|
documentType?: "html" | "xml" | undefined;
|
|
558
|
-
custom?: {
|
|
559
|
-
content: string;
|
|
560
|
-
property: string;
|
|
561
|
-
}[] | undefined;
|
|
562
563
|
};
|
|
563
564
|
title: string;
|
|
564
565
|
id: string;
|
|
565
566
|
rootInstanceId: string;
|
|
566
|
-
systemDataSourceId: string;
|
|
567
567
|
history?: string[] | undefined;
|
|
568
|
+
systemDataSourceId?: string | undefined;
|
|
568
569
|
marketplace?: {
|
|
569
|
-
include?: boolean | undefined;
|
|
570
570
|
category?: string | undefined;
|
|
571
|
+
include?: boolean | undefined;
|
|
571
572
|
thumbnailAssetId?: string | undefined;
|
|
572
573
|
} | undefined;
|
|
573
574
|
}[];
|
|
574
575
|
folders: {
|
|
575
576
|
name: string;
|
|
576
|
-
id: string;
|
|
577
577
|
children: string[];
|
|
578
|
+
id: string;
|
|
578
579
|
slug: string;
|
|
579
580
|
}[];
|
|
580
581
|
meta?: {
|
|
582
|
+
code?: string | undefined;
|
|
581
583
|
siteName?: string | undefined;
|
|
582
584
|
contactEmail?: string | undefined;
|
|
583
585
|
faviconAssetId?: string | undefined;
|
|
584
|
-
code?: string | undefined;
|
|
585
586
|
} | undefined;
|
|
586
587
|
compiler?: {
|
|
587
588
|
atomicStyles?: boolean | undefined;
|
|
@@ -596,28 +597,28 @@ export declare const Pages: z.ZodObject<{
|
|
|
596
597
|
path: string;
|
|
597
598
|
name: string;
|
|
598
599
|
meta: {
|
|
599
|
-
|
|
600
|
+
status?: string | undefined;
|
|
601
|
+
custom?: {
|
|
602
|
+
content: string;
|
|
603
|
+
property: string;
|
|
604
|
+
}[] | undefined;
|
|
600
605
|
title?: string | undefined;
|
|
601
|
-
|
|
606
|
+
description?: string | undefined;
|
|
602
607
|
language?: string | undefined;
|
|
608
|
+
excludePageFromSearch?: string | undefined;
|
|
603
609
|
socialImageAssetId?: string | undefined;
|
|
604
610
|
socialImageUrl?: string | undefined;
|
|
605
|
-
status?: string | undefined;
|
|
606
611
|
redirect?: string | undefined;
|
|
607
612
|
documentType?: "html" | "xml" | undefined;
|
|
608
|
-
custom?: {
|
|
609
|
-
content: string;
|
|
610
|
-
property: string;
|
|
611
|
-
}[] | undefined;
|
|
612
613
|
};
|
|
613
614
|
title: string;
|
|
614
615
|
id: string;
|
|
615
616
|
rootInstanceId: string;
|
|
616
|
-
systemDataSourceId: string;
|
|
617
617
|
history?: string[] | undefined;
|
|
618
|
+
systemDataSourceId?: string | undefined;
|
|
618
619
|
marketplace?: {
|
|
619
|
-
include?: boolean | undefined;
|
|
620
620
|
category?: string | undefined;
|
|
621
|
+
include?: boolean | undefined;
|
|
621
622
|
thumbnailAssetId?: string | undefined;
|
|
622
623
|
} | undefined;
|
|
623
624
|
};
|
|
@@ -625,42 +626,42 @@ export declare const Pages: z.ZodObject<{
|
|
|
625
626
|
path: string;
|
|
626
627
|
name: string;
|
|
627
628
|
meta: {
|
|
628
|
-
|
|
629
|
+
status?: string | undefined;
|
|
630
|
+
custom?: {
|
|
631
|
+
content: string;
|
|
632
|
+
property: string;
|
|
633
|
+
}[] | undefined;
|
|
629
634
|
title?: string | undefined;
|
|
630
|
-
|
|
635
|
+
description?: string | undefined;
|
|
631
636
|
language?: string | undefined;
|
|
637
|
+
excludePageFromSearch?: string | undefined;
|
|
632
638
|
socialImageAssetId?: string | undefined;
|
|
633
639
|
socialImageUrl?: string | undefined;
|
|
634
|
-
status?: string | undefined;
|
|
635
640
|
redirect?: string | undefined;
|
|
636
641
|
documentType?: "html" | "xml" | undefined;
|
|
637
|
-
custom?: {
|
|
638
|
-
content: string;
|
|
639
|
-
property: string;
|
|
640
|
-
}[] | undefined;
|
|
641
642
|
};
|
|
642
643
|
title: string;
|
|
643
644
|
id: string;
|
|
644
645
|
rootInstanceId: string;
|
|
645
|
-
systemDataSourceId: string;
|
|
646
646
|
history?: string[] | undefined;
|
|
647
|
+
systemDataSourceId?: string | undefined;
|
|
647
648
|
marketplace?: {
|
|
648
|
-
include?: boolean | undefined;
|
|
649
649
|
category?: string | undefined;
|
|
650
|
+
include?: boolean | undefined;
|
|
650
651
|
thumbnailAssetId?: string | undefined;
|
|
651
652
|
} | undefined;
|
|
652
653
|
}[];
|
|
653
654
|
folders: {
|
|
654
655
|
name: string;
|
|
655
|
-
id: string;
|
|
656
656
|
children: string[];
|
|
657
|
+
id: string;
|
|
657
658
|
slug: string;
|
|
658
659
|
}[];
|
|
659
660
|
meta?: {
|
|
661
|
+
code?: string | undefined;
|
|
660
662
|
siteName?: string | undefined;
|
|
661
663
|
contactEmail?: string | undefined;
|
|
662
664
|
faviconAssetId?: string | undefined;
|
|
663
|
-
code?: string | undefined;
|
|
664
665
|
} | undefined;
|
|
665
666
|
compiler?: {
|
|
666
667
|
atomicStyles?: boolean | undefined;
|