@tinacms/cli 0.0.0-ecea7ac-20241011043815 → 0.0.0-f00f07f-20241216063323
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/cmds/forestry-migrate/util/index.d.ts +4 -4
- package/dist/index.js +3070 -792
- package/dist/next/commands/build-command/index.d.ts +11 -1
- package/dist/next/config-manager.d.ts +6 -1
- package/dist/next/vite/index.d.ts +13 -2
- package/dist/server/server.d.ts +1 -1
- package/dist/utils/alias-helpers.d.ts +7 -0
- package/dist/utils/index.d.ts +2 -0
- package/package.json +18 -17
|
@@ -59,7 +59,6 @@ declare const forestryFieldWithoutField: z.ZodObject<{
|
|
|
59
59
|
};
|
|
60
60
|
}>>;
|
|
61
61
|
}, "strip", z.ZodTypeAny, {
|
|
62
|
-
type?: "number" | "boolean" | "file" | "color" | "text" | "include" | "list" | "datetime" | "select" | "image_gallery" | "textarea" | "tag_list" | "field_group" | "field_group_list" | "blocks";
|
|
63
62
|
default?: any;
|
|
64
63
|
config?: {
|
|
65
64
|
min?: number;
|
|
@@ -75,11 +74,11 @@ declare const forestryFieldWithoutField: z.ZodObject<{
|
|
|
75
74
|
};
|
|
76
75
|
};
|
|
77
76
|
name?: string;
|
|
77
|
+
type?: "number" | "boolean" | "text" | "file" | "include" | "color" | "list" | "datetime" | "select" | "image_gallery" | "textarea" | "tag_list" | "field_group" | "field_group_list" | "blocks";
|
|
78
78
|
label?: string;
|
|
79
79
|
template?: string;
|
|
80
80
|
template_types?: string[];
|
|
81
81
|
}, {
|
|
82
|
-
type?: "number" | "boolean" | "file" | "color" | "text" | "include" | "list" | "datetime" | "select" | "image_gallery" | "textarea" | "tag_list" | "field_group" | "field_group_list" | "blocks";
|
|
83
82
|
default?: any;
|
|
84
83
|
config?: {
|
|
85
84
|
min?: number;
|
|
@@ -95,6 +94,7 @@ declare const forestryFieldWithoutField: z.ZodObject<{
|
|
|
95
94
|
};
|
|
96
95
|
};
|
|
97
96
|
name?: string;
|
|
97
|
+
type?: "number" | "boolean" | "text" | "file" | "include" | "color" | "list" | "datetime" | "select" | "image_gallery" | "textarea" | "tag_list" | "field_group" | "field_group_list" | "blocks";
|
|
98
98
|
label?: string;
|
|
99
99
|
template?: string;
|
|
100
100
|
template_types?: string[];
|
|
@@ -149,10 +149,10 @@ export declare const parseSections: ({ val }: {
|
|
|
149
149
|
val: unknown;
|
|
150
150
|
}) => {
|
|
151
151
|
sections?: {
|
|
152
|
-
exclude?: string;
|
|
153
|
-
type?: "heading" | "document" | "directory" | "jekyll-pages" | "jekyll-posts";
|
|
154
152
|
match?: string;
|
|
153
|
+
exclude?: string;
|
|
155
154
|
path?: string;
|
|
155
|
+
type?: "heading" | "document" | "directory" | "jekyll-pages" | "jekyll-posts";
|
|
156
156
|
templates?: string[];
|
|
157
157
|
label?: string;
|
|
158
158
|
create?: "none" | "all" | "documents";
|