@webstudio-is/sdk 0.208.0 → 0.210.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/index.js +11 -2
- package/lib/types/core-metas.d.ts +115 -115
- package/lib/types/schema/animation-schema.d.ts +43644 -13660
- 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 +9844 -3204
- package/lib/types/schema/embed-template.d.ts +3885 -881
- package/lib/types/schema/instances.d.ts +9 -0
- package/lib/types/schema/pages.d.ts +125 -125
- package/lib/types/schema/prop-meta.d.ts +46 -46
- package/lib/types/schema/props.d.ts +28880 -8948
- package/lib/types/schema/resources.d.ts +4 -4
- package/lib/types/schema/styles.d.ts +4903 -1239
- package/lib/types/schema/webstudio.d.ts +18062 -5510
- package/package.json +7 -7
|
@@ -259,8 +259,10 @@ export declare const Matcher: z.ZodObject<{
|
|
|
259
259
|
$in?: string[] | undefined;
|
|
260
260
|
$nin?: string[] | undefined;
|
|
261
261
|
}>>;
|
|
262
|
+
text: z.ZodOptional<z.ZodLiteral<false>>;
|
|
262
263
|
}, "strip", z.ZodTypeAny, {
|
|
263
264
|
relation: "ancestor" | "parent" | "self" | "child" | "descendant";
|
|
265
|
+
text?: false | undefined;
|
|
264
266
|
component?: {
|
|
265
267
|
$eq?: string | undefined;
|
|
266
268
|
$neq?: string | undefined;
|
|
@@ -275,6 +277,7 @@ export declare const Matcher: z.ZodObject<{
|
|
|
275
277
|
} | undefined;
|
|
276
278
|
}, {
|
|
277
279
|
relation: "ancestor" | "parent" | "self" | "child" | "descendant";
|
|
280
|
+
text?: false | undefined;
|
|
278
281
|
component?: {
|
|
279
282
|
$eq?: string | undefined;
|
|
280
283
|
$neq?: string | undefined;
|
|
@@ -323,8 +326,10 @@ export declare const Matchers: z.ZodUnion<[z.ZodObject<{
|
|
|
323
326
|
$in?: string[] | undefined;
|
|
324
327
|
$nin?: string[] | undefined;
|
|
325
328
|
}>>;
|
|
329
|
+
text: z.ZodOptional<z.ZodLiteral<false>>;
|
|
326
330
|
}, "strip", z.ZodTypeAny, {
|
|
327
331
|
relation: "ancestor" | "parent" | "self" | "child" | "descendant";
|
|
332
|
+
text?: false | undefined;
|
|
328
333
|
component?: {
|
|
329
334
|
$eq?: string | undefined;
|
|
330
335
|
$neq?: string | undefined;
|
|
@@ -339,6 +344,7 @@ export declare const Matchers: z.ZodUnion<[z.ZodObject<{
|
|
|
339
344
|
} | undefined;
|
|
340
345
|
}, {
|
|
341
346
|
relation: "ancestor" | "parent" | "self" | "child" | "descendant";
|
|
347
|
+
text?: false | undefined;
|
|
342
348
|
component?: {
|
|
343
349
|
$eq?: string | undefined;
|
|
344
350
|
$neq?: string | undefined;
|
|
@@ -385,8 +391,10 @@ export declare const Matchers: z.ZodUnion<[z.ZodObject<{
|
|
|
385
391
|
$in?: string[] | undefined;
|
|
386
392
|
$nin?: string[] | undefined;
|
|
387
393
|
}>>;
|
|
394
|
+
text: z.ZodOptional<z.ZodLiteral<false>>;
|
|
388
395
|
}, "strip", z.ZodTypeAny, {
|
|
389
396
|
relation: "ancestor" | "parent" | "self" | "child" | "descendant";
|
|
397
|
+
text?: false | undefined;
|
|
390
398
|
component?: {
|
|
391
399
|
$eq?: string | undefined;
|
|
392
400
|
$neq?: string | undefined;
|
|
@@ -401,6 +409,7 @@ export declare const Matchers: z.ZodUnion<[z.ZodObject<{
|
|
|
401
409
|
} | undefined;
|
|
402
410
|
}, {
|
|
403
411
|
relation: "ancestor" | "parent" | "self" | "child" | "descendant";
|
|
412
|
+
text?: false | undefined;
|
|
404
413
|
component?: {
|
|
405
414
|
$eq?: string | undefined;
|
|
406
415
|
$neq?: string | undefined;
|
|
@@ -56,64 +56,64 @@ declare const Page: z.ZodObject<{
|
|
|
56
56
|
property: string;
|
|
57
57
|
}>, "many">>;
|
|
58
58
|
}, "strip", z.ZodTypeAny, {
|
|
59
|
-
|
|
59
|
+
status?: string | undefined;
|
|
60
|
+
custom?: {
|
|
61
|
+
content: string;
|
|
62
|
+
property: string;
|
|
63
|
+
}[] | undefined;
|
|
60
64
|
title?: string | undefined;
|
|
61
|
-
|
|
65
|
+
description?: string | undefined;
|
|
62
66
|
language?: string | undefined;
|
|
67
|
+
excludePageFromSearch?: string | undefined;
|
|
63
68
|
socialImageAssetId?: string | undefined;
|
|
64
69
|
socialImageUrl?: string | undefined;
|
|
65
|
-
status?: string | undefined;
|
|
66
70
|
redirect?: string | undefined;
|
|
67
71
|
documentType?: "html" | "xml" | undefined;
|
|
72
|
+
}, {
|
|
73
|
+
status?: string | undefined;
|
|
68
74
|
custom?: {
|
|
69
75
|
content: string;
|
|
70
76
|
property: string;
|
|
71
77
|
}[] | undefined;
|
|
72
|
-
}, {
|
|
73
|
-
description?: string | undefined;
|
|
74
78
|
title?: string | undefined;
|
|
75
|
-
|
|
79
|
+
description?: string | undefined;
|
|
76
80
|
language?: string | undefined;
|
|
81
|
+
excludePageFromSearch?: string | undefined;
|
|
77
82
|
socialImageAssetId?: string | undefined;
|
|
78
83
|
socialImageUrl?: string | undefined;
|
|
79
|
-
status?: string | undefined;
|
|
80
84
|
redirect?: string | undefined;
|
|
81
85
|
documentType?: "html" | "xml" | undefined;
|
|
82
|
-
custom?: {
|
|
83
|
-
content: string;
|
|
84
|
-
property: string;
|
|
85
|
-
}[] | undefined;
|
|
86
86
|
}>;
|
|
87
87
|
marketplace: z.ZodOptional<z.ZodObject<{
|
|
88
88
|
include: z.ZodOptional<z.ZodBoolean>;
|
|
89
89
|
category: z.ZodOptional<z.ZodString>;
|
|
90
90
|
thumbnailAssetId: z.ZodOptional<z.ZodString>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
include?: boolean | undefined;
|
|
93
92
|
category?: string | undefined;
|
|
93
|
+
include?: boolean | undefined;
|
|
94
94
|
thumbnailAssetId?: string | undefined;
|
|
95
95
|
}, {
|
|
96
|
-
include?: boolean | undefined;
|
|
97
96
|
category?: string | undefined;
|
|
97
|
+
include?: boolean | undefined;
|
|
98
98
|
thumbnailAssetId?: string | undefined;
|
|
99
99
|
}>>;
|
|
100
100
|
}, "strip", z.ZodTypeAny, {
|
|
101
101
|
path: string;
|
|
102
102
|
name: string;
|
|
103
103
|
meta: {
|
|
104
|
-
|
|
104
|
+
status?: string | undefined;
|
|
105
|
+
custom?: {
|
|
106
|
+
content: string;
|
|
107
|
+
property: string;
|
|
108
|
+
}[] | undefined;
|
|
105
109
|
title?: string | undefined;
|
|
106
|
-
|
|
110
|
+
description?: string | undefined;
|
|
107
111
|
language?: string | undefined;
|
|
112
|
+
excludePageFromSearch?: string | undefined;
|
|
108
113
|
socialImageAssetId?: string | undefined;
|
|
109
114
|
socialImageUrl?: string | undefined;
|
|
110
|
-
status?: string | undefined;
|
|
111
115
|
redirect?: string | undefined;
|
|
112
116
|
documentType?: "html" | "xml" | undefined;
|
|
113
|
-
custom?: {
|
|
114
|
-
content: string;
|
|
115
|
-
property: string;
|
|
116
|
-
}[] | undefined;
|
|
117
117
|
};
|
|
118
118
|
title: string;
|
|
119
119
|
id: string;
|
|
@@ -121,27 +121,27 @@ declare const Page: z.ZodObject<{
|
|
|
121
121
|
history?: string[] | undefined;
|
|
122
122
|
systemDataSourceId?: string | undefined;
|
|
123
123
|
marketplace?: {
|
|
124
|
-
include?: boolean | undefined;
|
|
125
124
|
category?: string | undefined;
|
|
125
|
+
include?: boolean | undefined;
|
|
126
126
|
thumbnailAssetId?: string | undefined;
|
|
127
127
|
} | undefined;
|
|
128
128
|
}, {
|
|
129
129
|
path: string;
|
|
130
130
|
name: string;
|
|
131
131
|
meta: {
|
|
132
|
-
|
|
132
|
+
status?: string | undefined;
|
|
133
|
+
custom?: {
|
|
134
|
+
content: string;
|
|
135
|
+
property: string;
|
|
136
|
+
}[] | undefined;
|
|
133
137
|
title?: string | undefined;
|
|
134
|
-
|
|
138
|
+
description?: string | undefined;
|
|
135
139
|
language?: string | undefined;
|
|
140
|
+
excludePageFromSearch?: string | undefined;
|
|
136
141
|
socialImageAssetId?: string | undefined;
|
|
137
142
|
socialImageUrl?: string | undefined;
|
|
138
|
-
status?: string | undefined;
|
|
139
143
|
redirect?: string | undefined;
|
|
140
144
|
documentType?: "html" | "xml" | undefined;
|
|
141
|
-
custom?: {
|
|
142
|
-
content: string;
|
|
143
|
-
property: string;
|
|
144
|
-
}[] | undefined;
|
|
145
145
|
};
|
|
146
146
|
title: string;
|
|
147
147
|
id: string;
|
|
@@ -149,8 +149,8 @@ declare const Page: z.ZodObject<{
|
|
|
149
149
|
history?: string[] | undefined;
|
|
150
150
|
systemDataSourceId?: string | undefined;
|
|
151
151
|
marketplace?: {
|
|
152
|
-
include?: boolean | undefined;
|
|
153
152
|
category?: string | undefined;
|
|
153
|
+
include?: boolean | undefined;
|
|
154
154
|
thumbnailAssetId?: string | undefined;
|
|
155
155
|
} | undefined;
|
|
156
156
|
}>;
|
|
@@ -160,15 +160,15 @@ declare const ProjectMeta: z.ZodObject<{
|
|
|
160
160
|
faviconAssetId: z.ZodOptional<z.ZodString>;
|
|
161
161
|
code: z.ZodOptional<z.ZodString>;
|
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
|
163
|
+
code?: string | undefined;
|
|
163
164
|
siteName?: string | undefined;
|
|
164
165
|
contactEmail?: string | undefined;
|
|
165
166
|
faviconAssetId?: string | undefined;
|
|
166
|
-
code?: string | undefined;
|
|
167
167
|
}, {
|
|
168
|
+
code?: string | undefined;
|
|
168
169
|
siteName?: string | undefined;
|
|
169
170
|
contactEmail?: string | undefined;
|
|
170
171
|
faviconAssetId?: string | undefined;
|
|
171
|
-
code?: string | undefined;
|
|
172
172
|
}>;
|
|
173
173
|
export type ProjectMeta = z.infer<typeof ProjectMeta>;
|
|
174
174
|
export declare const ProjectNewRedirectPath: z.ZodUnion<[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>, z.ZodEffects<z.ZodString, string, string>]>;
|
|
@@ -202,15 +202,15 @@ export declare const Pages: z.ZodObject<{
|
|
|
202
202
|
faviconAssetId: z.ZodOptional<z.ZodString>;
|
|
203
203
|
code: z.ZodOptional<z.ZodString>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
+
code?: string | undefined;
|
|
205
206
|
siteName?: string | undefined;
|
|
206
207
|
contactEmail?: string | undefined;
|
|
207
208
|
faviconAssetId?: string | undefined;
|
|
208
|
-
code?: string | undefined;
|
|
209
209
|
}, {
|
|
210
|
+
code?: string | undefined;
|
|
210
211
|
siteName?: string | undefined;
|
|
211
212
|
contactEmail?: string | undefined;
|
|
212
213
|
faviconAssetId?: string | undefined;
|
|
213
|
-
code?: string | undefined;
|
|
214
214
|
}>>;
|
|
215
215
|
compiler: z.ZodOptional<z.ZodObject<{
|
|
216
216
|
atomicStyles: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -261,64 +261,64 @@ export declare const Pages: z.ZodObject<{
|
|
|
261
261
|
property: string;
|
|
262
262
|
}>, "many">>;
|
|
263
263
|
}, "strip", z.ZodTypeAny, {
|
|
264
|
-
|
|
264
|
+
status?: string | undefined;
|
|
265
|
+
custom?: {
|
|
266
|
+
content: string;
|
|
267
|
+
property: string;
|
|
268
|
+
}[] | undefined;
|
|
265
269
|
title?: string | undefined;
|
|
266
|
-
|
|
270
|
+
description?: string | undefined;
|
|
267
271
|
language?: string | undefined;
|
|
272
|
+
excludePageFromSearch?: string | undefined;
|
|
268
273
|
socialImageAssetId?: string | undefined;
|
|
269
274
|
socialImageUrl?: string | undefined;
|
|
270
|
-
status?: string | undefined;
|
|
271
275
|
redirect?: string | undefined;
|
|
272
276
|
documentType?: "html" | "xml" | undefined;
|
|
277
|
+
}, {
|
|
278
|
+
status?: string | undefined;
|
|
273
279
|
custom?: {
|
|
274
280
|
content: string;
|
|
275
281
|
property: string;
|
|
276
282
|
}[] | undefined;
|
|
277
|
-
}, {
|
|
278
|
-
description?: string | undefined;
|
|
279
283
|
title?: string | undefined;
|
|
280
|
-
|
|
284
|
+
description?: string | undefined;
|
|
281
285
|
language?: string | undefined;
|
|
286
|
+
excludePageFromSearch?: string | undefined;
|
|
282
287
|
socialImageAssetId?: string | undefined;
|
|
283
288
|
socialImageUrl?: string | undefined;
|
|
284
|
-
status?: string | undefined;
|
|
285
289
|
redirect?: string | undefined;
|
|
286
290
|
documentType?: "html" | "xml" | undefined;
|
|
287
|
-
custom?: {
|
|
288
|
-
content: string;
|
|
289
|
-
property: string;
|
|
290
|
-
}[] | undefined;
|
|
291
291
|
}>;
|
|
292
292
|
marketplace: z.ZodOptional<z.ZodObject<{
|
|
293
293
|
include: z.ZodOptional<z.ZodBoolean>;
|
|
294
294
|
category: z.ZodOptional<z.ZodString>;
|
|
295
295
|
thumbnailAssetId: z.ZodOptional<z.ZodString>;
|
|
296
296
|
}, "strip", z.ZodTypeAny, {
|
|
297
|
-
include?: boolean | undefined;
|
|
298
297
|
category?: string | undefined;
|
|
298
|
+
include?: boolean | undefined;
|
|
299
299
|
thumbnailAssetId?: string | undefined;
|
|
300
300
|
}, {
|
|
301
|
-
include?: boolean | undefined;
|
|
302
301
|
category?: string | undefined;
|
|
302
|
+
include?: boolean | undefined;
|
|
303
303
|
thumbnailAssetId?: string | undefined;
|
|
304
304
|
}>>;
|
|
305
305
|
}, "strip", z.ZodTypeAny, {
|
|
306
306
|
path: "";
|
|
307
307
|
name: string;
|
|
308
308
|
meta: {
|
|
309
|
-
|
|
309
|
+
status?: string | undefined;
|
|
310
|
+
custom?: {
|
|
311
|
+
content: string;
|
|
312
|
+
property: string;
|
|
313
|
+
}[] | undefined;
|
|
310
314
|
title?: string | undefined;
|
|
311
|
-
|
|
315
|
+
description?: string | undefined;
|
|
312
316
|
language?: string | undefined;
|
|
317
|
+
excludePageFromSearch?: string | undefined;
|
|
313
318
|
socialImageAssetId?: string | undefined;
|
|
314
319
|
socialImageUrl?: string | undefined;
|
|
315
|
-
status?: string | undefined;
|
|
316
320
|
redirect?: string | undefined;
|
|
317
321
|
documentType?: "html" | "xml" | undefined;
|
|
318
|
-
custom?: {
|
|
319
|
-
content: string;
|
|
320
|
-
property: string;
|
|
321
|
-
}[] | undefined;
|
|
322
322
|
};
|
|
323
323
|
title: string;
|
|
324
324
|
id: string;
|
|
@@ -326,27 +326,27 @@ export declare const Pages: z.ZodObject<{
|
|
|
326
326
|
history?: string[] | undefined;
|
|
327
327
|
systemDataSourceId?: string | undefined;
|
|
328
328
|
marketplace?: {
|
|
329
|
-
include?: boolean | undefined;
|
|
330
329
|
category?: string | undefined;
|
|
330
|
+
include?: boolean | undefined;
|
|
331
331
|
thumbnailAssetId?: string | undefined;
|
|
332
332
|
} | undefined;
|
|
333
333
|
}, {
|
|
334
334
|
path: string;
|
|
335
335
|
name: string;
|
|
336
336
|
meta: {
|
|
337
|
-
|
|
337
|
+
status?: string | undefined;
|
|
338
|
+
custom?: {
|
|
339
|
+
content: string;
|
|
340
|
+
property: string;
|
|
341
|
+
}[] | undefined;
|
|
338
342
|
title?: string | undefined;
|
|
339
|
-
|
|
343
|
+
description?: string | undefined;
|
|
340
344
|
language?: string | undefined;
|
|
345
|
+
excludePageFromSearch?: string | undefined;
|
|
341
346
|
socialImageAssetId?: string | undefined;
|
|
342
347
|
socialImageUrl?: string | undefined;
|
|
343
|
-
status?: string | undefined;
|
|
344
348
|
redirect?: string | undefined;
|
|
345
349
|
documentType?: "html" | "xml" | undefined;
|
|
346
|
-
custom?: {
|
|
347
|
-
content: string;
|
|
348
|
-
property: string;
|
|
349
|
-
}[] | undefined;
|
|
350
350
|
};
|
|
351
351
|
title: string;
|
|
352
352
|
id: string;
|
|
@@ -354,8 +354,8 @@ export declare const Pages: z.ZodObject<{
|
|
|
354
354
|
history?: string[] | undefined;
|
|
355
355
|
systemDataSourceId?: string | undefined;
|
|
356
356
|
marketplace?: {
|
|
357
|
-
include?: boolean | undefined;
|
|
358
357
|
category?: string | undefined;
|
|
358
|
+
include?: boolean | undefined;
|
|
359
359
|
thumbnailAssetId?: string | undefined;
|
|
360
360
|
} | undefined;
|
|
361
361
|
}>;
|
|
@@ -388,64 +388,64 @@ export declare const Pages: z.ZodObject<{
|
|
|
388
388
|
property: string;
|
|
389
389
|
}>, "many">>;
|
|
390
390
|
}, "strip", z.ZodTypeAny, {
|
|
391
|
-
|
|
391
|
+
status?: string | undefined;
|
|
392
|
+
custom?: {
|
|
393
|
+
content: string;
|
|
394
|
+
property: string;
|
|
395
|
+
}[] | undefined;
|
|
392
396
|
title?: string | undefined;
|
|
393
|
-
|
|
397
|
+
description?: string | undefined;
|
|
394
398
|
language?: string | undefined;
|
|
399
|
+
excludePageFromSearch?: string | undefined;
|
|
395
400
|
socialImageAssetId?: string | undefined;
|
|
396
401
|
socialImageUrl?: string | undefined;
|
|
397
|
-
status?: string | undefined;
|
|
398
402
|
redirect?: string | undefined;
|
|
399
403
|
documentType?: "html" | "xml" | undefined;
|
|
404
|
+
}, {
|
|
405
|
+
status?: string | undefined;
|
|
400
406
|
custom?: {
|
|
401
407
|
content: string;
|
|
402
408
|
property: string;
|
|
403
409
|
}[] | undefined;
|
|
404
|
-
}, {
|
|
405
|
-
description?: string | undefined;
|
|
406
410
|
title?: string | undefined;
|
|
407
|
-
|
|
411
|
+
description?: string | undefined;
|
|
408
412
|
language?: string | undefined;
|
|
413
|
+
excludePageFromSearch?: string | undefined;
|
|
409
414
|
socialImageAssetId?: string | undefined;
|
|
410
415
|
socialImageUrl?: string | undefined;
|
|
411
|
-
status?: string | undefined;
|
|
412
416
|
redirect?: string | undefined;
|
|
413
417
|
documentType?: "html" | "xml" | undefined;
|
|
414
|
-
custom?: {
|
|
415
|
-
content: string;
|
|
416
|
-
property: string;
|
|
417
|
-
}[] | undefined;
|
|
418
418
|
}>;
|
|
419
419
|
marketplace: z.ZodOptional<z.ZodObject<{
|
|
420
420
|
include: z.ZodOptional<z.ZodBoolean>;
|
|
421
421
|
category: z.ZodOptional<z.ZodString>;
|
|
422
422
|
thumbnailAssetId: z.ZodOptional<z.ZodString>;
|
|
423
423
|
}, "strip", z.ZodTypeAny, {
|
|
424
|
-
include?: boolean | undefined;
|
|
425
424
|
category?: string | undefined;
|
|
425
|
+
include?: boolean | undefined;
|
|
426
426
|
thumbnailAssetId?: string | undefined;
|
|
427
427
|
}, {
|
|
428
|
-
include?: boolean | undefined;
|
|
429
428
|
category?: string | undefined;
|
|
429
|
+
include?: boolean | undefined;
|
|
430
430
|
thumbnailAssetId?: string | undefined;
|
|
431
431
|
}>>;
|
|
432
432
|
}, "strip", z.ZodTypeAny, {
|
|
433
433
|
path: string;
|
|
434
434
|
name: string;
|
|
435
435
|
meta: {
|
|
436
|
-
|
|
436
|
+
status?: string | undefined;
|
|
437
|
+
custom?: {
|
|
438
|
+
content: string;
|
|
439
|
+
property: string;
|
|
440
|
+
}[] | undefined;
|
|
437
441
|
title?: string | undefined;
|
|
438
|
-
|
|
442
|
+
description?: string | undefined;
|
|
439
443
|
language?: string | undefined;
|
|
444
|
+
excludePageFromSearch?: string | undefined;
|
|
440
445
|
socialImageAssetId?: string | undefined;
|
|
441
446
|
socialImageUrl?: string | undefined;
|
|
442
|
-
status?: string | undefined;
|
|
443
447
|
redirect?: string | undefined;
|
|
444
448
|
documentType?: "html" | "xml" | undefined;
|
|
445
|
-
custom?: {
|
|
446
|
-
content: string;
|
|
447
|
-
property: string;
|
|
448
|
-
}[] | undefined;
|
|
449
449
|
};
|
|
450
450
|
title: string;
|
|
451
451
|
id: string;
|
|
@@ -453,27 +453,27 @@ export declare const Pages: z.ZodObject<{
|
|
|
453
453
|
history?: string[] | undefined;
|
|
454
454
|
systemDataSourceId?: string | undefined;
|
|
455
455
|
marketplace?: {
|
|
456
|
-
include?: boolean | undefined;
|
|
457
456
|
category?: string | undefined;
|
|
457
|
+
include?: boolean | undefined;
|
|
458
458
|
thumbnailAssetId?: string | undefined;
|
|
459
459
|
} | undefined;
|
|
460
460
|
}, {
|
|
461
461
|
path: string;
|
|
462
462
|
name: string;
|
|
463
463
|
meta: {
|
|
464
|
-
|
|
464
|
+
status?: string | undefined;
|
|
465
|
+
custom?: {
|
|
466
|
+
content: string;
|
|
467
|
+
property: string;
|
|
468
|
+
}[] | undefined;
|
|
465
469
|
title?: string | undefined;
|
|
466
|
-
|
|
470
|
+
description?: string | undefined;
|
|
467
471
|
language?: string | undefined;
|
|
472
|
+
excludePageFromSearch?: string | undefined;
|
|
468
473
|
socialImageAssetId?: string | undefined;
|
|
469
474
|
socialImageUrl?: string | undefined;
|
|
470
|
-
status?: string | undefined;
|
|
471
475
|
redirect?: string | undefined;
|
|
472
476
|
documentType?: "html" | "xml" | undefined;
|
|
473
|
-
custom?: {
|
|
474
|
-
content: string;
|
|
475
|
-
property: string;
|
|
476
|
-
}[] | undefined;
|
|
477
477
|
};
|
|
478
478
|
title: string;
|
|
479
479
|
id: string;
|
|
@@ -481,8 +481,8 @@ export declare const Pages: z.ZodObject<{
|
|
|
481
481
|
history?: string[] | undefined;
|
|
482
482
|
systemDataSourceId?: string | undefined;
|
|
483
483
|
marketplace?: {
|
|
484
|
-
include?: boolean | undefined;
|
|
485
484
|
category?: string | undefined;
|
|
485
|
+
include?: boolean | undefined;
|
|
486
486
|
thumbnailAssetId?: string | undefined;
|
|
487
487
|
} | undefined;
|
|
488
488
|
}>, "many">;
|
|
@@ -517,19 +517,19 @@ export declare const Pages: z.ZodObject<{
|
|
|
517
517
|
path: "";
|
|
518
518
|
name: string;
|
|
519
519
|
meta: {
|
|
520
|
-
|
|
520
|
+
status?: string | undefined;
|
|
521
|
+
custom?: {
|
|
522
|
+
content: string;
|
|
523
|
+
property: string;
|
|
524
|
+
}[] | undefined;
|
|
521
525
|
title?: string | undefined;
|
|
522
|
-
|
|
526
|
+
description?: string | undefined;
|
|
523
527
|
language?: string | undefined;
|
|
528
|
+
excludePageFromSearch?: string | undefined;
|
|
524
529
|
socialImageAssetId?: string | undefined;
|
|
525
530
|
socialImageUrl?: string | undefined;
|
|
526
|
-
status?: string | undefined;
|
|
527
531
|
redirect?: string | undefined;
|
|
528
532
|
documentType?: "html" | "xml" | undefined;
|
|
529
|
-
custom?: {
|
|
530
|
-
content: string;
|
|
531
|
-
property: string;
|
|
532
|
-
}[] | undefined;
|
|
533
533
|
};
|
|
534
534
|
title: string;
|
|
535
535
|
id: string;
|
|
@@ -537,8 +537,8 @@ export declare const Pages: z.ZodObject<{
|
|
|
537
537
|
history?: string[] | undefined;
|
|
538
538
|
systemDataSourceId?: string | undefined;
|
|
539
539
|
marketplace?: {
|
|
540
|
-
include?: boolean | undefined;
|
|
541
540
|
category?: string | undefined;
|
|
541
|
+
include?: boolean | undefined;
|
|
542
542
|
thumbnailAssetId?: string | undefined;
|
|
543
543
|
} | undefined;
|
|
544
544
|
};
|
|
@@ -546,19 +546,19 @@ export declare const Pages: z.ZodObject<{
|
|
|
546
546
|
path: string;
|
|
547
547
|
name: string;
|
|
548
548
|
meta: {
|
|
549
|
-
|
|
549
|
+
status?: string | undefined;
|
|
550
|
+
custom?: {
|
|
551
|
+
content: string;
|
|
552
|
+
property: string;
|
|
553
|
+
}[] | undefined;
|
|
550
554
|
title?: string | undefined;
|
|
551
|
-
|
|
555
|
+
description?: string | undefined;
|
|
552
556
|
language?: string | undefined;
|
|
557
|
+
excludePageFromSearch?: string | undefined;
|
|
553
558
|
socialImageAssetId?: string | undefined;
|
|
554
559
|
socialImageUrl?: string | undefined;
|
|
555
|
-
status?: string | undefined;
|
|
556
560
|
redirect?: string | undefined;
|
|
557
561
|
documentType?: "html" | "xml" | undefined;
|
|
558
|
-
custom?: {
|
|
559
|
-
content: string;
|
|
560
|
-
property: string;
|
|
561
|
-
}[] | undefined;
|
|
562
562
|
};
|
|
563
563
|
title: string;
|
|
564
564
|
id: string;
|
|
@@ -566,8 +566,8 @@ export declare const Pages: z.ZodObject<{
|
|
|
566
566
|
history?: string[] | undefined;
|
|
567
567
|
systemDataSourceId?: string | undefined;
|
|
568
568
|
marketplace?: {
|
|
569
|
-
include?: boolean | undefined;
|
|
570
569
|
category?: string | undefined;
|
|
570
|
+
include?: boolean | undefined;
|
|
571
571
|
thumbnailAssetId?: string | undefined;
|
|
572
572
|
} | undefined;
|
|
573
573
|
}[];
|
|
@@ -578,10 +578,10 @@ export declare const Pages: z.ZodObject<{
|
|
|
578
578
|
slug: string;
|
|
579
579
|
}[];
|
|
580
580
|
meta?: {
|
|
581
|
+
code?: string | undefined;
|
|
581
582
|
siteName?: string | undefined;
|
|
582
583
|
contactEmail?: string | undefined;
|
|
583
584
|
faviconAssetId?: string | undefined;
|
|
584
|
-
code?: string | undefined;
|
|
585
585
|
} | undefined;
|
|
586
586
|
compiler?: {
|
|
587
587
|
atomicStyles?: boolean | undefined;
|
|
@@ -596,19 +596,19 @@ export declare const Pages: z.ZodObject<{
|
|
|
596
596
|
path: string;
|
|
597
597
|
name: string;
|
|
598
598
|
meta: {
|
|
599
|
-
|
|
599
|
+
status?: string | undefined;
|
|
600
|
+
custom?: {
|
|
601
|
+
content: string;
|
|
602
|
+
property: string;
|
|
603
|
+
}[] | undefined;
|
|
600
604
|
title?: string | undefined;
|
|
601
|
-
|
|
605
|
+
description?: string | undefined;
|
|
602
606
|
language?: string | undefined;
|
|
607
|
+
excludePageFromSearch?: string | undefined;
|
|
603
608
|
socialImageAssetId?: string | undefined;
|
|
604
609
|
socialImageUrl?: string | undefined;
|
|
605
|
-
status?: string | undefined;
|
|
606
610
|
redirect?: string | undefined;
|
|
607
611
|
documentType?: "html" | "xml" | undefined;
|
|
608
|
-
custom?: {
|
|
609
|
-
content: string;
|
|
610
|
-
property: string;
|
|
611
|
-
}[] | undefined;
|
|
612
612
|
};
|
|
613
613
|
title: string;
|
|
614
614
|
id: string;
|
|
@@ -616,8 +616,8 @@ export declare const Pages: z.ZodObject<{
|
|
|
616
616
|
history?: string[] | undefined;
|
|
617
617
|
systemDataSourceId?: string | undefined;
|
|
618
618
|
marketplace?: {
|
|
619
|
-
include?: boolean | undefined;
|
|
620
619
|
category?: string | undefined;
|
|
620
|
+
include?: boolean | undefined;
|
|
621
621
|
thumbnailAssetId?: string | undefined;
|
|
622
622
|
} | undefined;
|
|
623
623
|
};
|
|
@@ -625,19 +625,19 @@ export declare const Pages: z.ZodObject<{
|
|
|
625
625
|
path: string;
|
|
626
626
|
name: string;
|
|
627
627
|
meta: {
|
|
628
|
-
|
|
628
|
+
status?: string | undefined;
|
|
629
|
+
custom?: {
|
|
630
|
+
content: string;
|
|
631
|
+
property: string;
|
|
632
|
+
}[] | undefined;
|
|
629
633
|
title?: string | undefined;
|
|
630
|
-
|
|
634
|
+
description?: string | undefined;
|
|
631
635
|
language?: string | undefined;
|
|
636
|
+
excludePageFromSearch?: string | undefined;
|
|
632
637
|
socialImageAssetId?: string | undefined;
|
|
633
638
|
socialImageUrl?: string | undefined;
|
|
634
|
-
status?: string | undefined;
|
|
635
639
|
redirect?: string | undefined;
|
|
636
640
|
documentType?: "html" | "xml" | undefined;
|
|
637
|
-
custom?: {
|
|
638
|
-
content: string;
|
|
639
|
-
property: string;
|
|
640
|
-
}[] | undefined;
|
|
641
641
|
};
|
|
642
642
|
title: string;
|
|
643
643
|
id: string;
|
|
@@ -645,8 +645,8 @@ export declare const Pages: z.ZodObject<{
|
|
|
645
645
|
history?: string[] | undefined;
|
|
646
646
|
systemDataSourceId?: string | undefined;
|
|
647
647
|
marketplace?: {
|
|
648
|
-
include?: boolean | undefined;
|
|
649
648
|
category?: string | undefined;
|
|
649
|
+
include?: boolean | undefined;
|
|
650
650
|
thumbnailAssetId?: string | undefined;
|
|
651
651
|
} | undefined;
|
|
652
652
|
}[];
|
|
@@ -657,10 +657,10 @@ export declare const Pages: z.ZodObject<{
|
|
|
657
657
|
slug: string;
|
|
658
658
|
}[];
|
|
659
659
|
meta?: {
|
|
660
|
+
code?: string | undefined;
|
|
660
661
|
siteName?: string | undefined;
|
|
661
662
|
contactEmail?: string | undefined;
|
|
662
663
|
faviconAssetId?: string | undefined;
|
|
663
|
-
code?: string | undefined;
|
|
664
664
|
} | undefined;
|
|
665
665
|
compiler?: {
|
|
666
666
|
atomicStyles?: boolean | undefined;
|