@webstudio-is/sdk 0.207.0 → 0.209.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 +10 -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 +9842 -3202
- 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 +6 -6
|
@@ -25,8 +25,8 @@ export declare const Resource: z.ZodObject<{
|
|
|
25
25
|
value: string;
|
|
26
26
|
name: string;
|
|
27
27
|
}[];
|
|
28
|
-
control?: "system" | "graphql" | undefined;
|
|
29
28
|
body?: string | undefined;
|
|
29
|
+
control?: "system" | "graphql" | undefined;
|
|
30
30
|
}, {
|
|
31
31
|
name: string;
|
|
32
32
|
url: string;
|
|
@@ -36,8 +36,8 @@ export declare const Resource: z.ZodObject<{
|
|
|
36
36
|
value: string;
|
|
37
37
|
name: string;
|
|
38
38
|
}[];
|
|
39
|
-
control?: "system" | "graphql" | undefined;
|
|
40
39
|
body?: string | undefined;
|
|
40
|
+
control?: "system" | "graphql" | undefined;
|
|
41
41
|
}>;
|
|
42
42
|
export type Resource = z.infer<typeof Resource>;
|
|
43
43
|
export declare const ResourceRequest: z.ZodObject<{
|
|
@@ -104,8 +104,8 @@ export declare const Resources: z.ZodMap<z.ZodString, z.ZodObject<{
|
|
|
104
104
|
value: string;
|
|
105
105
|
name: string;
|
|
106
106
|
}[];
|
|
107
|
-
control?: "system" | "graphql" | undefined;
|
|
108
107
|
body?: string | undefined;
|
|
108
|
+
control?: "system" | "graphql" | undefined;
|
|
109
109
|
}, {
|
|
110
110
|
name: string;
|
|
111
111
|
url: string;
|
|
@@ -115,7 +115,7 @@ export declare const Resources: z.ZodMap<z.ZodString, z.ZodObject<{
|
|
|
115
115
|
value: string;
|
|
116
116
|
name: string;
|
|
117
117
|
}[];
|
|
118
|
-
control?: "system" | "graphql" | undefined;
|
|
119
118
|
body?: string | undefined;
|
|
119
|
+
control?: "system" | "graphql" | undefined;
|
|
120
120
|
}>>;
|
|
121
121
|
export type Resources = z.infer<typeof Resources>;
|