betterstart-cli 0.0.18 → 0.0.19
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "posts",
|
|
3
|
-
"type": "entity",
|
|
4
3
|
"label": "Posts",
|
|
4
|
+
"type": "entity",
|
|
5
5
|
"description": "Manage blog posts",
|
|
6
6
|
"icon": "FileText",
|
|
7
7
|
"navGroup": {
|
|
@@ -13,142 +13,110 @@
|
|
|
13
13
|
"main": {
|
|
14
14
|
"fields": [
|
|
15
15
|
{
|
|
16
|
-
"name": "
|
|
17
|
-
"type": "
|
|
18
|
-
"
|
|
16
|
+
"name": "title",
|
|
17
|
+
"type": "string",
|
|
18
|
+
"label": "Title",
|
|
19
|
+
"required": true
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "slug",
|
|
23
|
+
"type": "string",
|
|
24
|
+
"label": "Slug",
|
|
25
|
+
"hint": "URL-friendly identifier (auto-generated from title)"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "excerpt",
|
|
29
|
+
"type": "text",
|
|
30
|
+
"label": "Excerpt",
|
|
31
|
+
"hint": "Short summary for the content"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "content",
|
|
35
|
+
"type": "richtext",
|
|
36
|
+
"output": "html",
|
|
37
|
+
"height": "fill"
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
},
|
|
41
|
+
"sidebar": {
|
|
42
|
+
"fields": [
|
|
43
|
+
{
|
|
44
|
+
"name": "generalSidebar",
|
|
45
|
+
"type": "section",
|
|
46
|
+
"heading": {
|
|
47
|
+
"icon": "bolt",
|
|
48
|
+
"title": "General"
|
|
49
|
+
},
|
|
50
|
+
"fields": [
|
|
19
51
|
{
|
|
20
|
-
"name": "
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"slot": {
|
|
24
|
-
"main": {
|
|
25
|
-
"fields": [
|
|
26
|
-
{
|
|
27
|
-
"name": "title",
|
|
28
|
-
"type": "string",
|
|
29
|
-
"label": "Title",
|
|
30
|
-
"required": true
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"name": "slug",
|
|
34
|
-
"type": "string",
|
|
35
|
-
"label": "Slug",
|
|
36
|
-
"hint": "URL-friendly identifier (auto-generated from title)"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"name": "excerpt",
|
|
40
|
-
"type": "text",
|
|
41
|
-
"label": "Excerpt",
|
|
42
|
-
"hint": "Short summary for the content"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"name": "content",
|
|
46
|
-
"type": "richtext",
|
|
47
|
-
"output": "html",
|
|
48
|
-
"height": "fill"
|
|
49
|
-
}
|
|
50
|
-
]
|
|
51
|
-
},
|
|
52
|
-
"sidebar": {
|
|
53
|
-
"fields": [
|
|
54
|
-
{
|
|
55
|
-
"name": "generalSidebar",
|
|
56
|
-
"type": "section",
|
|
57
|
-
"heading": {
|
|
58
|
-
"icon": "bolt",
|
|
59
|
-
"title": "General"
|
|
60
|
-
},
|
|
61
|
-
"fields": [
|
|
62
|
-
{
|
|
63
|
-
"name": "coverImage",
|
|
64
|
-
"type": "image",
|
|
65
|
-
"label": "Cover Image"
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"name": "categories",
|
|
69
|
-
"type": "select",
|
|
70
|
-
"label": "Categories",
|
|
71
|
-
"placeholder": "Select categories",
|
|
72
|
-
"hint": "Assign one or more categories",
|
|
73
|
-
"default": "category-1",
|
|
74
|
-
"creatable": true,
|
|
75
|
-
"multiple": true,
|
|
76
|
-
"previewLimit": 1,
|
|
77
|
-
"options": [
|
|
78
|
-
{
|
|
79
|
-
"label": "Category 1",
|
|
80
|
-
"value": "category-1"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"label": "Category 2",
|
|
84
|
-
"value": "category-2"
|
|
85
|
-
}
|
|
86
|
-
]
|
|
87
|
-
}
|
|
88
|
-
]
|
|
89
|
-
}
|
|
90
|
-
]
|
|
91
|
-
}
|
|
92
|
-
}
|
|
52
|
+
"name": "coverImage",
|
|
53
|
+
"type": "image",
|
|
54
|
+
"label": "Cover Image"
|
|
93
55
|
},
|
|
94
56
|
{
|
|
95
|
-
"name": "
|
|
96
|
-
"
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"name": "seoDescription",
|
|
111
|
-
"type": "text",
|
|
112
|
-
"label": "SEO Description",
|
|
113
|
-
"defaultValueFrom": "excerpt",
|
|
114
|
-
"hint": "Overrides the excerpt in search result snippets"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"name": "noIndex",
|
|
118
|
-
"type": "boolean",
|
|
119
|
-
"label": "No Index",
|
|
120
|
-
"hint": "Ask search engines not to index this post",
|
|
121
|
-
"default": false
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
"name": "noFollow",
|
|
125
|
-
"type": "boolean",
|
|
126
|
-
"label": "No Follow",
|
|
127
|
-
"hint": "Ask search engines not to follow links on this post",
|
|
128
|
-
"default": false
|
|
129
|
-
}
|
|
130
|
-
]
|
|
57
|
+
"name": "categories",
|
|
58
|
+
"type": "select",
|
|
59
|
+
"label": "Categories",
|
|
60
|
+
"placeholder": "Select categories",
|
|
61
|
+
"hint": "Assign one or more categories",
|
|
62
|
+
"default": "category-1",
|
|
63
|
+
"creatable": true,
|
|
64
|
+
"multiple": true,
|
|
65
|
+
"previewLimit": 1,
|
|
66
|
+
"options": [
|
|
67
|
+
{
|
|
68
|
+
"label": "Category 1",
|
|
69
|
+
"value": "category-1"
|
|
131
70
|
},
|
|
132
|
-
|
|
133
|
-
"
|
|
134
|
-
|
|
135
|
-
"name": "seoSidebar",
|
|
136
|
-
"type": "section",
|
|
137
|
-
"heading": {
|
|
138
|
-
"icon": "globe",
|
|
139
|
-
"title": "SEO Settings"
|
|
140
|
-
},
|
|
141
|
-
"fields": [
|
|
142
|
-
{
|
|
143
|
-
"name": "openGraphImage",
|
|
144
|
-
"type": "image",
|
|
145
|
-
"label": "OpenGraph Image"
|
|
146
|
-
}
|
|
147
|
-
]
|
|
148
|
-
}
|
|
149
|
-
]
|
|
71
|
+
{
|
|
72
|
+
"label": "Category 2",
|
|
73
|
+
"value": "category-2"
|
|
150
74
|
}
|
|
151
|
-
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "seoSidebar",
|
|
81
|
+
"type": "section",
|
|
82
|
+
"heading": {
|
|
83
|
+
"icon": "globe",
|
|
84
|
+
"title": "SEO Settings"
|
|
85
|
+
},
|
|
86
|
+
"fields": [
|
|
87
|
+
{
|
|
88
|
+
"name": "openGraphImage",
|
|
89
|
+
"type": "image",
|
|
90
|
+
"label": "OpenGraph Image"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "seoTitle",
|
|
94
|
+
"type": "string",
|
|
95
|
+
"label": "SEO Title",
|
|
96
|
+
"defaultValueFrom": "title",
|
|
97
|
+
"hint": "Overrides the post title in search results",
|
|
98
|
+
"length": 70
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "seoDescription",
|
|
102
|
+
"type": "text",
|
|
103
|
+
"label": "SEO Description",
|
|
104
|
+
"defaultValueFrom": "excerpt",
|
|
105
|
+
"hint": "Overrides the excerpt in search result snippets"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "noIndex",
|
|
109
|
+
"type": "boolean",
|
|
110
|
+
"label": "No Index",
|
|
111
|
+
"hint": "Ask search engines not to index this post",
|
|
112
|
+
"default": false
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "noFollow",
|
|
116
|
+
"type": "boolean",
|
|
117
|
+
"label": "No Follow",
|
|
118
|
+
"hint": "Ask search engines not to follow links on this post",
|
|
119
|
+
"default": false
|
|
152
120
|
}
|
|
153
121
|
]
|
|
154
122
|
}
|
package/dist/cli.js
CHANGED
|
@@ -21131,6 +21131,10 @@ ${styleText(
|
|
|
21131
21131
|
value: "resend",
|
|
21132
21132
|
label: "Resend"
|
|
21133
21133
|
},
|
|
21134
|
+
{
|
|
21135
|
+
value: "skip",
|
|
21136
|
+
label: "Skip"
|
|
21137
|
+
},
|
|
21134
21138
|
{
|
|
21135
21139
|
value: "cloudflare",
|
|
21136
21140
|
label: `Cloudflare ${styleText("dim", "(coming soon)")}`,
|