@webstudio-is/sdk 0.224.0 → 0.226.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/core-templates.js +59 -1
- package/lib/index.js +67 -14
- package/lib/types/schema/animation-schema.d.ts +1648 -1648
- package/lib/types/schema/component-meta.d.ts +360 -360
- package/lib/types/schema/pages.d.ts +3 -3
- package/lib/types/schema/props.d.ts +1165 -1165
- package/lib/types/schema/styles.d.ts +200 -200
- package/lib/types/schema/webstudio.d.ts +732 -732
- package/package.json +6 -6
|
@@ -172,10 +172,10 @@ declare const ProjectMeta: z.ZodObject<{
|
|
|
172
172
|
faviconAssetId?: string | undefined;
|
|
173
173
|
}>;
|
|
174
174
|
export type ProjectMeta = z.infer<typeof ProjectMeta>;
|
|
175
|
-
export declare const ProjectNewRedirectPath: z.
|
|
175
|
+
export declare const ProjectNewRedirectPath: z.ZodEffects<z.ZodString, string, string>;
|
|
176
176
|
export declare const PageRedirect: z.ZodObject<{
|
|
177
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>;
|
|
178
|
-
new: z.
|
|
178
|
+
new: z.ZodEffects<z.ZodString, string, string>;
|
|
179
179
|
status: z.ZodOptional<z.ZodEnum<["301", "302"]>>;
|
|
180
180
|
}, "strip", z.ZodTypeAny, {
|
|
181
181
|
old: string;
|
|
@@ -222,7 +222,7 @@ export declare const Pages: z.ZodObject<{
|
|
|
222
222
|
}>>;
|
|
223
223
|
redirects: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
224
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>;
|
|
225
|
-
new: z.
|
|
225
|
+
new: z.ZodEffects<z.ZodString, string, string>;
|
|
226
226
|
status: z.ZodOptional<z.ZodEnum<["301", "302"]>>;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
228
|
old: string;
|