siteplane 0.1.48 → 0.1.50
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/README.md +23 -0
- package/dist/bin/siteplane.js +491 -290
- package/dist/index.js +231 -187
- package/dist/next.js +234 -185
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,6 +43,10 @@ For a direct field ID, put `siteplane.attrs(fieldId, { routeKey })` on the visib
|
|
|
43
43
|
element using the same canonical route pattern as its value call. The value call
|
|
44
44
|
does not attach DOM metadata. Missing or mismatched DOM routes block apply and
|
|
45
45
|
the Next build; dynamic pages use their pattern, such as `/services/[slug]`.
|
|
46
|
+
Direct attrs defaults to `fieldType: "text"`; for longText, link and image,
|
|
47
|
+
pass the matching `fieldType` explicitly. The value call does not infer it for attrs.
|
|
48
|
+
`setup apply` reports `field_scan.attrs_field_type_mismatch` before any contract write.
|
|
49
|
+
This type diagnostic remains a scanner warning for normal website builds.
|
|
46
50
|
|
|
47
51
|
```bash
|
|
48
52
|
siteplane setup apply --definition editor-definition.json --selection-summary-file selection.txt
|
|
@@ -59,6 +63,25 @@ preserves the Site, Run, runtime key, revalidation generation, selected fields a
|
|
|
59
63
|
Completed setup credentials remain closed. Known package/workspace/provider conflicts are diagnosed before
|
|
60
64
|
writes; support ranges do not trigger automatic framework or package-manager upgrades.
|
|
61
65
|
|
|
66
|
+
## Controlled accountless start
|
|
67
|
+
|
|
68
|
+
The T8 candidate includes `setup start`; the hosted endpoint is closed by default until Batch 3 acceptance.
|
|
69
|
+
Use only the exact candidate version provided for an enabled environment and an explicit user request:
|
|
70
|
+
|
|
71
|
+
Before starting, add `.siteplane/credentials.json` to the repository’s `.gitignore`. Start rejects tracked or
|
|
72
|
+
unprotected credentials before any provisioning request.
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
npx -y siteplane@0.1.50 setup start --modules editing --instructions-file instructions.txt
|
|
76
|
+
npx -y siteplane@0.1.50 setup context
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Start performs read-only preflight and saves the installation key and original request privately before the
|
|
80
|
+
first provisioning call. Select `editing,analytics` only when explicitly requested. Retry in the same directory
|
|
81
|
+
with the same request after interruption; configuration without credentials produces a diagnosis, never a silent
|
|
82
|
+
replacement project. The returned task carries the provisional assignment and deadline. Guest review and claim
|
|
83
|
+
remain later Batch 3 work; this entry grants no publication or measurement activation.
|
|
84
|
+
|
|
62
85
|
## Approved fields
|
|
63
86
|
|
|
64
87
|
Run the exact command from Siteplane's compact apply prompt. It authenticates
|