@angeloashmore/prismic-cli-poc 0.0.0-canary.1143872

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.
Files changed (139) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +98 -0
  3. package/dist/index.mjs +2508 -0
  4. package/package.json +53 -0
  5. package/src/codegen-types.ts +82 -0
  6. package/src/codegen.ts +45 -0
  7. package/src/custom-type-add-field-boolean.ts +222 -0
  8. package/src/custom-type-add-field-color.ts +205 -0
  9. package/src/custom-type-add-field-date.ts +208 -0
  10. package/src/custom-type-add-field-embed.ts +205 -0
  11. package/src/custom-type-add-field-geo-point.ts +202 -0
  12. package/src/custom-type-add-field-group.ts +179 -0
  13. package/src/custom-type-add-field-image.ts +205 -0
  14. package/src/custom-type-add-field-key-text.ts +205 -0
  15. package/src/custom-type-add-field-link.ts +228 -0
  16. package/src/custom-type-add-field-number.ts +237 -0
  17. package/src/custom-type-add-field-rich-text.ts +229 -0
  18. package/src/custom-type-add-field-select.ts +211 -0
  19. package/src/custom-type-add-field-timestamp.ts +208 -0
  20. package/src/custom-type-add-field-uid.ts +188 -0
  21. package/src/custom-type-add-field.ts +116 -0
  22. package/src/custom-type-connect-slice.ts +214 -0
  23. package/src/custom-type-create.ts +112 -0
  24. package/src/custom-type-disconnect-slice.ts +171 -0
  25. package/src/custom-type-list.ts +110 -0
  26. package/src/custom-type-remove-field.ts +171 -0
  27. package/src/custom-type-remove.ts +138 -0
  28. package/src/custom-type-set-name.ts +138 -0
  29. package/src/custom-type-view.ts +118 -0
  30. package/src/custom-type.ts +85 -0
  31. package/src/docs-fetch.ts +146 -0
  32. package/src/docs-list.ts +131 -0
  33. package/src/docs.ts +54 -0
  34. package/src/index.ts +132 -0
  35. package/src/init.ts +64 -0
  36. package/src/lib/auth.ts +83 -0
  37. package/src/lib/config.ts +111 -0
  38. package/src/lib/custom-types-api.ts +438 -0
  39. package/src/lib/field-path.ts +81 -0
  40. package/src/lib/file.ts +49 -0
  41. package/src/lib/framework.ts +143 -0
  42. package/src/lib/json.ts +3 -0
  43. package/src/lib/request.ts +116 -0
  44. package/src/lib/slice.ts +115 -0
  45. package/src/lib/string.ts +6 -0
  46. package/src/lib/url.ts +25 -0
  47. package/src/locale-add.ts +116 -0
  48. package/src/locale-list.ts +107 -0
  49. package/src/locale-remove.ts +88 -0
  50. package/src/locale-set-default.ts +131 -0
  51. package/src/locale.ts +60 -0
  52. package/src/login.ts +152 -0
  53. package/src/logout.ts +36 -0
  54. package/src/page-type-add-field-boolean.ts +238 -0
  55. package/src/page-type-add-field-color.ts +224 -0
  56. package/src/page-type-add-field-date.ts +227 -0
  57. package/src/page-type-add-field-embed.ts +224 -0
  58. package/src/page-type-add-field-geo-point.ts +221 -0
  59. package/src/page-type-add-field-group.ts +198 -0
  60. package/src/page-type-add-field-image.ts +224 -0
  61. package/src/page-type-add-field-key-text.ts +224 -0
  62. package/src/page-type-add-field-link.ts +247 -0
  63. package/src/page-type-add-field-number.ts +256 -0
  64. package/src/page-type-add-field-rich-text.ts +248 -0
  65. package/src/page-type-add-field-select.ts +230 -0
  66. package/src/page-type-add-field-timestamp.ts +227 -0
  67. package/src/page-type-add-field-uid.ts +207 -0
  68. package/src/page-type-add-field.ts +116 -0
  69. package/src/page-type-connect-slice.ts +214 -0
  70. package/src/page-type-create.ts +161 -0
  71. package/src/page-type-disconnect-slice.ts +171 -0
  72. package/src/page-type-list.ts +109 -0
  73. package/src/page-type-remove-field.ts +171 -0
  74. package/src/page-type-remove.ts +138 -0
  75. package/src/page-type-set-name.ts +138 -0
  76. package/src/page-type-set-repeatable.ts +147 -0
  77. package/src/page-type-view.ts +118 -0
  78. package/src/page-type.ts +90 -0
  79. package/src/preview-add.ts +126 -0
  80. package/src/preview-get-simulator.ts +104 -0
  81. package/src/preview-list.ts +106 -0
  82. package/src/preview-remove-simulator.ts +80 -0
  83. package/src/preview-remove.ts +109 -0
  84. package/src/preview-set-name.ts +137 -0
  85. package/src/preview-set-simulator.ts +116 -0
  86. package/src/preview.ts +75 -0
  87. package/src/pull.ts +242 -0
  88. package/src/push.ts +405 -0
  89. package/src/repo-create.ts +195 -0
  90. package/src/repo-get-access.ts +86 -0
  91. package/src/repo-list.ts +100 -0
  92. package/src/repo-set-access.ts +100 -0
  93. package/src/repo-set-name.ts +102 -0
  94. package/src/repo-view.ts +113 -0
  95. package/src/repo.ts +70 -0
  96. package/src/slice-add-field-boolean.ts +240 -0
  97. package/src/slice-add-field-color.ts +226 -0
  98. package/src/slice-add-field-date.ts +226 -0
  99. package/src/slice-add-field-embed.ts +226 -0
  100. package/src/slice-add-field-geo-point.ts +223 -0
  101. package/src/slice-add-field-group.ts +191 -0
  102. package/src/slice-add-field-image.ts +223 -0
  103. package/src/slice-add-field-key-text.ts +226 -0
  104. package/src/slice-add-field-link.ts +245 -0
  105. package/src/slice-add-field-number.ts +226 -0
  106. package/src/slice-add-field-rich-text.ts +250 -0
  107. package/src/slice-add-field-select.ts +232 -0
  108. package/src/slice-add-field-timestamp.ts +226 -0
  109. package/src/slice-add-field.ts +111 -0
  110. package/src/slice-add-variation.ts +139 -0
  111. package/src/slice-create.ts +203 -0
  112. package/src/slice-list-variations.ts +67 -0
  113. package/src/slice-list.ts +88 -0
  114. package/src/slice-remove-field.ts +122 -0
  115. package/src/slice-remove-variation.ts +112 -0
  116. package/src/slice-remove.ts +91 -0
  117. package/src/slice-rename.ts +122 -0
  118. package/src/slice-set-screenshot.ts +235 -0
  119. package/src/slice-view.ts +80 -0
  120. package/src/slice.ts +95 -0
  121. package/src/status.ts +873 -0
  122. package/src/token-create.ts +203 -0
  123. package/src/token-delete.ts +182 -0
  124. package/src/token-list.ts +223 -0
  125. package/src/token-set-name.ts +193 -0
  126. package/src/token.ts +60 -0
  127. package/src/webhook-add-header.ts +118 -0
  128. package/src/webhook-create.ts +152 -0
  129. package/src/webhook-disable.ts +109 -0
  130. package/src/webhook-enable.ts +132 -0
  131. package/src/webhook-list.ts +93 -0
  132. package/src/webhook-remove-header.ts +117 -0
  133. package/src/webhook-remove.ts +106 -0
  134. package/src/webhook-set-triggers.ts +148 -0
  135. package/src/webhook-status.ts +90 -0
  136. package/src/webhook-test.ts +106 -0
  137. package/src/webhook-view.ts +147 -0
  138. package/src/webhook.ts +95 -0
  139. package/src/whoami.ts +62 -0
@@ -0,0 +1,224 @@
1
+ import type { CustomType, Text } from "@prismicio/types-internal/lib/customtypes";
2
+
3
+ import { readFile, writeFile } from "node:fs/promises";
4
+ import { parseArgs } from "node:util";
5
+ import * as v from "valibot";
6
+
7
+ import { buildTypes } from "./codegen-types";
8
+ import { findUpward } from "./lib/file";
9
+ import { findGroupInTab, isGroupField, parseFieldPath, validateNestedFieldPath } from "./lib/field-path";
10
+ import { type Framework, detectFrameworkInfo } from "./lib/framework";
11
+ import { stringify } from "./lib/json";
12
+ import { humanReadable } from "./lib/string";
13
+
14
+ const HELP = `
15
+ Add a key-text (single-line text) field to an existing page type.
16
+
17
+ USAGE
18
+ prismic page-type add-field key-text <type-id> <field-id> [flags]
19
+
20
+ ARGUMENTS
21
+ type-id Page type identifier (required)
22
+ field-id Field identifier (required)
23
+
24
+ FLAGS
25
+ -t, --tab string Target tab (default: first existing tab, or "Main")
26
+ -l, --label string Display label for the field (inferred from field-id if omitted)
27
+ -p, --placeholder string Placeholder text
28
+ --types string Output file for generated types (default: "prismicio-types.d.ts")
29
+ -h, --help Show help for command
30
+
31
+ EXAMPLES
32
+ prismic page-type add-field key-text homepage title
33
+ prismic page-type add-field key-text homepage meta_title --tab "SEO"
34
+ prismic page-type add-field key-text homepage subtitle --label "Subtitle" --placeholder "Enter subtitle"
35
+ `.trim();
36
+
37
+ const CustomTypeSchema = v.object({
38
+ id: v.string(),
39
+ label: v.string(),
40
+ repeatable: v.boolean(),
41
+ status: v.boolean(),
42
+ format: v.string(),
43
+ json: v.record(v.string(), v.record(v.string(), v.unknown())),
44
+ });
45
+
46
+ function getDocsPath(framework: Framework): string {
47
+ switch (framework) {
48
+ case "next":
49
+ return "nextjs/with-cli";
50
+ case "nuxt":
51
+ return "nuxt/with-cli";
52
+ case "sveltekit":
53
+ return "sveltekit/with-cli";
54
+ }
55
+ }
56
+
57
+ export async function pageTypeAddFieldKeyText(): Promise<void> {
58
+ const {
59
+ values: { help, tab, label, placeholder, types },
60
+ positionals: [typeId, fieldId],
61
+ } = parseArgs({
62
+ args: process.argv.slice(5), // skip: node, script, "page-type", "add-field", "key-text"
63
+ options: {
64
+ tab: { type: "string", short: "t" },
65
+ label: { type: "string", short: "l" },
66
+ placeholder: { type: "string", short: "p" },
67
+ types: { type: "string" },
68
+ help: { type: "boolean", short: "h" },
69
+ },
70
+ allowPositionals: true,
71
+ });
72
+
73
+ if (help) {
74
+ console.info(HELP);
75
+ return;
76
+ }
77
+
78
+ if (!typeId) {
79
+ console.error("Missing required argument: type-id\n");
80
+ console.error("Usage: prismic page-type add-field key-text <type-id> <field-id>");
81
+ process.exitCode = 1;
82
+ return;
83
+ }
84
+
85
+ if (!fieldId) {
86
+ console.error("Missing required argument: field-id\n");
87
+ console.error("Usage: prismic page-type add-field key-text <type-id> <field-id>");
88
+ process.exitCode = 1;
89
+ return;
90
+ }
91
+
92
+ // Parse and validate field path
93
+ const fieldPath = parseFieldPath(fieldId);
94
+ const pathValidation = validateNestedFieldPath(fieldPath);
95
+ if (!pathValidation.ok) {
96
+ console.error(pathValidation.error);
97
+ process.exitCode = 1;
98
+ return;
99
+ }
100
+
101
+ // Find the page type file
102
+ const projectRoot = await findUpward("package.json");
103
+ if (!projectRoot) {
104
+ console.error("Could not find project root (no package.json found)");
105
+ process.exitCode = 1;
106
+ return;
107
+ }
108
+
109
+ const modelPath = new URL(`customtypes/${typeId}/index.json`, projectRoot);
110
+
111
+ // Read and parse the model
112
+ let model: CustomType;
113
+ try {
114
+ const contents = await readFile(modelPath, "utf8");
115
+ const result = v.safeParse(CustomTypeSchema, JSON.parse(contents));
116
+ if (!result.success) {
117
+ console.error(`Invalid page type model: ${modelPath.href}`);
118
+ process.exitCode = 1;
119
+ return;
120
+ }
121
+ model = result.output as CustomType;
122
+ } catch (error) {
123
+ if (error instanceof Error && "code" in error && error.code === "ENOENT") {
124
+ console.error(`Page type not found: ${typeId}\n`);
125
+ console.error(`Create it first with: prismic page-type create ${typeId}`);
126
+ process.exitCode = 1;
127
+ return;
128
+ }
129
+ if (error instanceof Error) {
130
+ console.error(`Failed to read page type: ${error.message}`);
131
+ } else {
132
+ console.error("Failed to read page type");
133
+ }
134
+ process.exitCode = 1;
135
+ return;
136
+ }
137
+
138
+ // Determine target tab
139
+ const existingTabs = Object.keys(model.json);
140
+ const targetTab = tab ?? existingTabs[0] ?? "Main";
141
+
142
+ // Initialize tab if it doesn't exist
143
+ if (!model.json[targetTab]) {
144
+ model.json[targetTab] = {};
145
+ }
146
+
147
+ // Build field definition
148
+ const fieldDefinition: Text = {
149
+ type: "Text",
150
+ config: {
151
+ label: label ?? humanReadable(fieldPath.type === "nested" ? fieldPath.nestedFieldId : fieldId),
152
+ ...(placeholder && { placeholder }),
153
+ },
154
+ };
155
+
156
+ // Add field to model
157
+ if (fieldPath.type === "nested") {
158
+ const groupResult = findGroupInTab(model.json[targetTab], fieldPath.groupId, targetTab);
159
+ if (!groupResult.ok) {
160
+ console.error(groupResult.error);
161
+ process.exitCode = 1;
162
+ return;
163
+ }
164
+ if (groupResult.group.config.fields[fieldPath.nestedFieldId]) {
165
+ console.error(`Field "${fieldPath.nestedFieldId}" already exists in group "${fieldPath.groupId}"`);
166
+ process.exitCode = 1;
167
+ return;
168
+ }
169
+ groupResult.group.config.fields[fieldPath.nestedFieldId] = fieldDefinition;
170
+ } else {
171
+ for (const [tabName, tabFields] of Object.entries(model.json)) {
172
+ if (tabFields[fieldId]) {
173
+ console.error(`Field "${fieldId}" already exists in tab "${tabName}"`);
174
+ process.exitCode = 1;
175
+ return;
176
+ }
177
+ for (const [groupFieldId, groupField] of Object.entries(tabFields)) {
178
+ if (isGroupField(groupField) && groupField.config.fields[fieldId]) {
179
+ console.error(`Field "${fieldId}" already exists in group "${groupFieldId}" in tab "${tabName}"`);
180
+ process.exitCode = 1;
181
+ return;
182
+ }
183
+ }
184
+ }
185
+ model.json[targetTab][fieldId] = fieldDefinition;
186
+ }
187
+
188
+ // Write updated model
189
+ try {
190
+ await writeFile(modelPath, stringify(model));
191
+ } catch (error) {
192
+ if (error instanceof Error) {
193
+ console.error(`Failed to update page type: ${error.message}`);
194
+ } else {
195
+ console.error("Failed to update page type");
196
+ }
197
+ process.exitCode = 1;
198
+ return;
199
+ }
200
+
201
+ if (fieldPath.type === "nested") {
202
+ console.info(`Added field "${fieldPath.nestedFieldId}" (Text) to group "${fieldPath.groupId}" in ${typeId}`);
203
+ } else {
204
+ console.info(`Added field "${fieldId}" (Text) to "${targetTab}" tab in ${typeId}`);
205
+ }
206
+
207
+ try {
208
+ await buildTypes({ output: types });
209
+ console.info(`Updated types in ${types ?? "prismicio-types.d.ts"}`);
210
+ } catch (error) {
211
+ console.warn(`Could not generate types: ${error instanceof Error ? error.message : error}`);
212
+ }
213
+
214
+ console.info();
215
+ console.info("Next: Add more fields with `prismic page-type add-field`");
216
+
217
+ const frameworkInfo = await detectFrameworkInfo();
218
+ if (frameworkInfo?.framework) {
219
+ const docsPath = getDocsPath(frameworkInfo.framework);
220
+ console.info(
221
+ ` Run \`prismic docs fetch ${docsPath}#write-page-components\` to learn how to implement a page file`,
222
+ );
223
+ }
224
+ }
@@ -0,0 +1,247 @@
1
+ import type { CustomType, Link } from "@prismicio/types-internal/lib/customtypes";
2
+
3
+ import { readFile, writeFile } from "node:fs/promises";
4
+ import { parseArgs } from "node:util";
5
+ import * as v from "valibot";
6
+
7
+ import { buildTypes } from "./codegen-types";
8
+ import { findUpward } from "./lib/file";
9
+ import { findGroupInTab, isGroupField, parseFieldPath, validateNestedFieldPath } from "./lib/field-path";
10
+ import { type Framework, detectFrameworkInfo } from "./lib/framework";
11
+ import { stringify } from "./lib/json";
12
+ import { humanReadable } from "./lib/string";
13
+
14
+ const HELP = `
15
+ Add a link field to an existing page type.
16
+
17
+ USAGE
18
+ prismic page-type add-field link <type-id> <field-id> [flags]
19
+
20
+ ARGUMENTS
21
+ type-id Page type identifier (required)
22
+ field-id Field identifier (required)
23
+
24
+ FLAGS
25
+ -t, --tab string Target tab (default: first existing tab, or "Main")
26
+ -l, --label string Display label for the field (inferred from field-id if omitted)
27
+ -p, --placeholder string Placeholder text
28
+ --variation string Slice variations (can be used multiple times)
29
+ --allow-text Allow text with link
30
+ --allow-target-blank Allow opening link in new tab
31
+ --repeatable Allow multiple links
32
+ --types string Output file for generated types (default: "prismicio-types.d.ts")
33
+ -h, --help Show help for command
34
+
35
+ EXAMPLES
36
+ prismic page-type add-field link homepage button
37
+ prismic page-type add-field link homepage cta --allow-text
38
+ prismic page-type add-field link homepage cta --variation Primary --variation Secondary
39
+ prismic page-type add-field link homepage links --repeatable
40
+ `.trim();
41
+
42
+ const CustomTypeSchema = v.object({
43
+ id: v.string(),
44
+ label: v.string(),
45
+ repeatable: v.boolean(),
46
+ status: v.boolean(),
47
+ format: v.string(),
48
+ json: v.record(v.string(), v.record(v.string(), v.unknown())),
49
+ });
50
+
51
+ function getDocsPath(framework: Framework): string {
52
+ switch (framework) {
53
+ case "next":
54
+ return "nextjs/with-cli";
55
+ case "nuxt":
56
+ return "nuxt/with-cli";
57
+ case "sveltekit":
58
+ return "sveltekit/with-cli";
59
+ }
60
+ }
61
+
62
+ export async function pageTypeAddFieldLink(): Promise<void> {
63
+ const {
64
+ values: {
65
+ help,
66
+ tab,
67
+ label,
68
+ placeholder,
69
+ variation,
70
+ "allow-text": allowText,
71
+ "allow-target-blank": allowTargetBlank,
72
+ repeatable,
73
+ types,
74
+ },
75
+ positionals: [typeId, fieldId],
76
+ } = parseArgs({
77
+ args: process.argv.slice(5), // skip: node, script, "page-type", "add-field", "link"
78
+ options: {
79
+ tab: { type: "string", short: "t" },
80
+ label: { type: "string", short: "l" },
81
+ placeholder: { type: "string", short: "p" },
82
+ variation: { type: "string", multiple: true },
83
+ "allow-text": { type: "boolean" },
84
+ "allow-target-blank": { type: "boolean" },
85
+ repeatable: { type: "boolean" },
86
+ types: { type: "string" },
87
+ help: { type: "boolean", short: "h" },
88
+ },
89
+ allowPositionals: true,
90
+ });
91
+
92
+ if (help) {
93
+ console.info(HELP);
94
+ return;
95
+ }
96
+
97
+ if (!typeId) {
98
+ console.error("Missing required argument: type-id\n");
99
+ console.error("Usage: prismic page-type add-field link <type-id> <field-id>");
100
+ process.exitCode = 1;
101
+ return;
102
+ }
103
+
104
+ if (!fieldId) {
105
+ console.error("Missing required argument: field-id\n");
106
+ console.error("Usage: prismic page-type add-field link <type-id> <field-id>");
107
+ process.exitCode = 1;
108
+ return;
109
+ }
110
+
111
+ // Parse and validate field path
112
+ const fieldPath = parseFieldPath(fieldId);
113
+ const pathValidation = validateNestedFieldPath(fieldPath);
114
+ if (!pathValidation.ok) {
115
+ console.error(pathValidation.error);
116
+ process.exitCode = 1;
117
+ return;
118
+ }
119
+
120
+ // Find the page type file
121
+ const projectRoot = await findUpward("package.json");
122
+ if (!projectRoot) {
123
+ console.error("Could not find project root (no package.json found)");
124
+ process.exitCode = 1;
125
+ return;
126
+ }
127
+
128
+ const modelPath = new URL(`customtypes/${typeId}/index.json`, projectRoot);
129
+
130
+ // Read and parse the model
131
+ let model: CustomType;
132
+ try {
133
+ const contents = await readFile(modelPath, "utf8");
134
+ const result = v.safeParse(CustomTypeSchema, JSON.parse(contents));
135
+ if (!result.success) {
136
+ console.error(`Invalid page type model: ${modelPath.href}`);
137
+ process.exitCode = 1;
138
+ return;
139
+ }
140
+ model = result.output as CustomType;
141
+ } catch (error) {
142
+ if (error instanceof Error && "code" in error && error.code === "ENOENT") {
143
+ console.error(`Page type not found: ${typeId}\n`);
144
+ console.error(`Create it first with: prismic page-type create ${typeId}`);
145
+ process.exitCode = 1;
146
+ return;
147
+ }
148
+ if (error instanceof Error) {
149
+ console.error(`Failed to read page type: ${error.message}`);
150
+ } else {
151
+ console.error("Failed to read page type");
152
+ }
153
+ process.exitCode = 1;
154
+ return;
155
+ }
156
+
157
+ // Determine target tab
158
+ const existingTabs = Object.keys(model.json);
159
+ const targetTab = tab ?? existingTabs[0] ?? "Main";
160
+
161
+ // Initialize tab if it doesn't exist
162
+ if (!model.json[targetTab]) {
163
+ model.json[targetTab] = {};
164
+ }
165
+
166
+ // Build field definition
167
+ const fieldDefinition: Link = {
168
+ type: "Link",
169
+ config: {
170
+ label: label ?? humanReadable(fieldPath.type === "nested" ? fieldPath.nestedFieldId : fieldId),
171
+ ...(placeholder && { placeholder }),
172
+ ...(variation && variation.length > 0 && { variants: variation }),
173
+ ...(allowText && { allowText: true }),
174
+ ...(allowTargetBlank && { allowTargetBlank: true }),
175
+ ...(repeatable && { repeat: true }),
176
+ },
177
+ };
178
+
179
+ // Add field to model
180
+ if (fieldPath.type === "nested") {
181
+ const groupResult = findGroupInTab(model.json[targetTab], fieldPath.groupId, targetTab);
182
+ if (!groupResult.ok) {
183
+ console.error(groupResult.error);
184
+ process.exitCode = 1;
185
+ return;
186
+ }
187
+ if (groupResult.group.config.fields[fieldPath.nestedFieldId]) {
188
+ console.error(`Field "${fieldPath.nestedFieldId}" already exists in group "${fieldPath.groupId}"`);
189
+ process.exitCode = 1;
190
+ return;
191
+ }
192
+ groupResult.group.config.fields[fieldPath.nestedFieldId] = fieldDefinition;
193
+ } else {
194
+ for (const [tabName, tabFields] of Object.entries(model.json)) {
195
+ if (tabFields[fieldId]) {
196
+ console.error(`Field "${fieldId}" already exists in tab "${tabName}"`);
197
+ process.exitCode = 1;
198
+ return;
199
+ }
200
+ for (const [groupFieldId, groupField] of Object.entries(tabFields)) {
201
+ if (isGroupField(groupField) && groupField.config.fields[fieldId]) {
202
+ console.error(`Field "${fieldId}" already exists in group "${groupFieldId}" in tab "${tabName}"`);
203
+ process.exitCode = 1;
204
+ return;
205
+ }
206
+ }
207
+ }
208
+ model.json[targetTab][fieldId] = fieldDefinition;
209
+ }
210
+
211
+ // Write updated model
212
+ try {
213
+ await writeFile(modelPath, stringify(model));
214
+ } catch (error) {
215
+ if (error instanceof Error) {
216
+ console.error(`Failed to update page type: ${error.message}`);
217
+ } else {
218
+ console.error("Failed to update page type");
219
+ }
220
+ process.exitCode = 1;
221
+ return;
222
+ }
223
+
224
+ if (fieldPath.type === "nested") {
225
+ console.info(`Added field "${fieldPath.nestedFieldId}" (Link) to group "${fieldPath.groupId}" in ${typeId}`);
226
+ } else {
227
+ console.info(`Added field "${fieldId}" (Link) to "${targetTab}" tab in ${typeId}`);
228
+ }
229
+
230
+ try {
231
+ await buildTypes({ output: types });
232
+ console.info(`Updated types in ${types ?? "prismicio-types.d.ts"}`);
233
+ } catch (error) {
234
+ console.warn(`Could not generate types: ${error instanceof Error ? error.message : error}`);
235
+ }
236
+
237
+ console.info();
238
+ console.info("Next: Add more fields with `prismic page-type add-field`");
239
+
240
+ const frameworkInfo = await detectFrameworkInfo();
241
+ if (frameworkInfo?.framework) {
242
+ const docsPath = getDocsPath(frameworkInfo.framework);
243
+ console.info(
244
+ ` Run \`prismic docs fetch ${docsPath}#write-page-components\` to learn how to implement a page file`,
245
+ );
246
+ }
247
+ }