primitive-admin 1.1.0-alpha.38 → 1.1.0-alpha.39
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 +16 -0
- package/dist/bin/primitive.js +2 -0
- package/dist/bin/primitive.js.map +1 -1
- package/dist/src/commands/blob-buckets.js +64 -0
- package/dist/src/commands/blob-buckets.js.map +1 -1
- package/dist/src/commands/collections.js +1 -9
- package/dist/src/commands/collections.js.map +1 -1
- package/dist/src/commands/group-type-configs.js +1 -9
- package/dist/src/commands/group-type-configs.js.map +1 -1
- package/dist/src/commands/guides.d.ts +75 -0
- package/dist/src/commands/guides.js +284 -47
- package/dist/src/commands/guides.js.map +1 -1
- package/dist/src/commands/rule-sets.d.ts +1 -0
- package/dist/src/commands/rule-sets.js +25 -3
- package/dist/src/commands/rule-sets.js.map +1 -1
- package/dist/src/commands/scripts.d.ts +2 -0
- package/dist/src/commands/scripts.js +667 -0
- package/dist/src/commands/scripts.js.map +1 -0
- package/dist/src/commands/sync.d.ts +29 -0
- package/dist/src/commands/sync.js +402 -97
- package/dist/src/commands/sync.js.map +1 -1
- package/dist/src/commands/webhooks.js +7 -2
- package/dist/src/commands/webhooks.js.map +1 -1
- package/dist/src/commands/workflows.js +219 -1
- package/dist/src/commands/workflows.js.map +1 -1
- package/dist/src/lib/api-client.d.ts +56 -15
- package/dist/src/lib/api-client.js +51 -0
- package/dist/src/lib/api-client.js.map +1 -1
- package/dist/src/lib/block-layout.d.ts +160 -0
- package/dist/src/lib/block-layout.js +451 -0
- package/dist/src/lib/block-layout.js.map +1 -0
- package/dist/src/lib/config.js +21 -0
- package/dist/src/lib/config.js.map +1 -1
- package/dist/src/lib/generated-allowlist.js +9 -0
- package/dist/src/lib/generated-allowlist.js.map +1 -1
- package/dist/src/lib/output.d.ts +25 -5
- package/dist/src/lib/output.js +32 -4
- package/dist/src/lib/output.js.map +1 -1
- package/dist/src/lib/query-operators.d.ts +43 -0
- package/dist/src/lib/query-operators.js +80 -0
- package/dist/src/lib/query-operators.js.map +1 -0
- package/dist/src/lib/toml-database-config.d.ts +20 -0
- package/dist/src/lib/toml-database-config.js +37 -2
- package/dist/src/lib/toml-database-config.js.map +1 -1
- package/dist/src/lib/toml-metadata-config.d.ts +108 -0
- package/dist/src/lib/toml-metadata-config.js +371 -0
- package/dist/src/lib/toml-metadata-config.js.map +1 -0
- package/dist/src/lib/toml-params-validator.d.ts +34 -0
- package/dist/src/lib/toml-params-validator.js +118 -3
- package/dist/src/lib/toml-params-validator.js.map +1 -1
- package/dist/src/lib/workflow-apply.d.ts +66 -0
- package/dist/src/lib/workflow-apply.js +117 -0
- package/dist/src/lib/workflow-apply.js.map +1 -0
- package/dist/src/lib/workflow-toml-validator.js +36 -0
- package/dist/src/lib/workflow-toml-validator.js.map +1 -1
- package/dist/src/types/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,451 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sync v2 "unified block" layout — issue #1183, Phase 3.
|
|
3
|
+
*
|
|
4
|
+
* The current (legacy) sync layout stores each managed block type in its own
|
|
5
|
+
* flat directory:
|
|
6
|
+
*
|
|
7
|
+
* config/
|
|
8
|
+
* prompts/<key>.toml
|
|
9
|
+
* integrations/<key>.toml
|
|
10
|
+
* workflows/<key>.toml
|
|
11
|
+
* transforms/<name>.rhai # scripts
|
|
12
|
+
*
|
|
13
|
+
* The v2 layout introduced by the unified block model groups every block type
|
|
14
|
+
* under one `blocks/` tree keyed by type and block key, with a single
|
|
15
|
+
* `block.toml` envelope per block (and a sibling `source.rhai` for scripts):
|
|
16
|
+
*
|
|
17
|
+
* config/
|
|
18
|
+
* blocks/
|
|
19
|
+
* prompts/<key>/block.toml
|
|
20
|
+
* integrations/<key>/block.toml
|
|
21
|
+
* workflows/<key>/block.toml
|
|
22
|
+
* scripts/<key>/block.toml
|
|
23
|
+
* scripts/<key>/source.rhai
|
|
24
|
+
*
|
|
25
|
+
* Per the proposal (docs/proposals/unified-block-model.md, "Phase 3: Sync v2"),
|
|
26
|
+
* the CLI must:
|
|
27
|
+
* - Read both legacy and v2 layouts.
|
|
28
|
+
* - Preserve the legacy layout as the default until v2 is proven.
|
|
29
|
+
* - Provide a migration command to convert legacy sync directories.
|
|
30
|
+
*
|
|
31
|
+
* This module is the pure, side-effect-light core of that work: the v2 path
|
|
32
|
+
* builders, the `block.toml` codec, layout detection, and the legacy -> v2
|
|
33
|
+
* migration. It stores the *verbatim* legacy TOML body under
|
|
34
|
+
* `[[versions]].spec`, so the transform is loss-free and a v2 block round-trips
|
|
35
|
+
* back to a byte-for-byte-equivalent legacy object (see `reconstructLegacyBlock`).
|
|
36
|
+
* That is what lets a later pass read a v2 directory through the same push path
|
|
37
|
+
* the legacy layout uses without re-deriving every type's field mapping.
|
|
38
|
+
*/
|
|
39
|
+
import { cpSync, existsSync, mkdirSync, readFileSync, readdirSync, statSync, writeFileSync, } from "fs";
|
|
40
|
+
import { createHash } from "crypto";
|
|
41
|
+
import { basename, join } from "path";
|
|
42
|
+
import * as TOML from "@iarna/toml";
|
|
43
|
+
export const BLOCK_TYPES = [
|
|
44
|
+
"prompt",
|
|
45
|
+
"integration",
|
|
46
|
+
"workflow",
|
|
47
|
+
"script",
|
|
48
|
+
];
|
|
49
|
+
/** The `schemaVersion` string written at the top of every v2 `block.toml`. */
|
|
50
|
+
export const BLOCK_SCHEMA_VERSION = "block/v1";
|
|
51
|
+
/** The filename of the script body written next to a v2 script `block.toml`. */
|
|
52
|
+
export const SCRIPT_SOURCE_FILENAME = "source.rhai";
|
|
53
|
+
/**
|
|
54
|
+
* The named top-level TOML table each legacy block file wraps its header in
|
|
55
|
+
* (`[prompt]`, `[integration]`, `[workflow]`). Scripts have no header table —
|
|
56
|
+
* their legacy form is a raw `.rhai` body — so they are handled separately.
|
|
57
|
+
*/
|
|
58
|
+
const LEGACY_HEADER_KEY = {
|
|
59
|
+
prompt: "prompt",
|
|
60
|
+
integration: "integration",
|
|
61
|
+
workflow: "workflow",
|
|
62
|
+
};
|
|
63
|
+
/** Legacy per-type directory names (flat layout). */
|
|
64
|
+
const LEGACY_DIR = {
|
|
65
|
+
prompt: "prompts",
|
|
66
|
+
integration: "integrations",
|
|
67
|
+
workflow: "workflows",
|
|
68
|
+
script: "transforms",
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* v2 per-type directory names under `blocks/`. Note scripts move from the
|
|
72
|
+
* legacy `transforms/` name to `scripts/` to match the block vocabulary.
|
|
73
|
+
*/
|
|
74
|
+
const V2_TYPE_DIR = {
|
|
75
|
+
prompt: "prompts",
|
|
76
|
+
integration: "integrations",
|
|
77
|
+
workflow: "workflows",
|
|
78
|
+
script: "scripts",
|
|
79
|
+
};
|
|
80
|
+
const V2_TYPE_DIR_TO_TYPE = {
|
|
81
|
+
prompts: "prompt",
|
|
82
|
+
integrations: "integration",
|
|
83
|
+
workflows: "workflow",
|
|
84
|
+
scripts: "script",
|
|
85
|
+
};
|
|
86
|
+
export function isBlockType(value) {
|
|
87
|
+
return (typeof value === "string" && BLOCK_TYPES.includes(value));
|
|
88
|
+
}
|
|
89
|
+
// ---------------------------------------------------------------------------
|
|
90
|
+
// Path builders
|
|
91
|
+
// ---------------------------------------------------------------------------
|
|
92
|
+
/** `<configDir>/blocks` — the root of the v2 tree. */
|
|
93
|
+
export function v2BlocksRoot(configDir) {
|
|
94
|
+
return join(configDir, "blocks");
|
|
95
|
+
}
|
|
96
|
+
/** `<configDir>/blocks/<typeDir>/<key>` — a single v2 block's directory. */
|
|
97
|
+
export function v2BlockDir(configDir, type, key) {
|
|
98
|
+
return join(configDir, "blocks", V2_TYPE_DIR[type], key);
|
|
99
|
+
}
|
|
100
|
+
/** `<configDir>/blocks/<typeDir>/<key>/block.toml`. */
|
|
101
|
+
export function v2BlockTomlPath(configDir, type, key) {
|
|
102
|
+
return join(v2BlockDir(configDir, type, key), "block.toml");
|
|
103
|
+
}
|
|
104
|
+
/** `<configDir>/blocks/scripts/<key>/source.rhai`. */
|
|
105
|
+
export function v2ScriptSourcePath(configDir, key) {
|
|
106
|
+
return join(v2BlockDir(configDir, "script", key), SCRIPT_SOURCE_FILENAME);
|
|
107
|
+
}
|
|
108
|
+
/** `<configDir>/<legacyDir>` for a block type (flat layout). */
|
|
109
|
+
export function legacyBlockDir(configDir, type) {
|
|
110
|
+
return join(configDir, LEGACY_DIR[type]);
|
|
111
|
+
}
|
|
112
|
+
function pruneUndefined(obj) {
|
|
113
|
+
for (const k of Object.keys(obj)) {
|
|
114
|
+
if (obj[k] === undefined)
|
|
115
|
+
delete obj[k];
|
|
116
|
+
}
|
|
117
|
+
return obj;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
* Serialize a v2 block into `block.toml` text. Key order is fixed
|
|
121
|
+
* (`schemaVersion`, `[block]`, `[[versions]]`) so a pull/migrate followed by a
|
|
122
|
+
* re-serialize is stable and produces no spurious diffs.
|
|
123
|
+
*/
|
|
124
|
+
export function serializeBlockToml(block) {
|
|
125
|
+
const data = {
|
|
126
|
+
schemaVersion: block.schemaVersion || BLOCK_SCHEMA_VERSION,
|
|
127
|
+
block: pruneUndefined({
|
|
128
|
+
type: block.block.type,
|
|
129
|
+
key: block.block.key,
|
|
130
|
+
displayName: block.block.displayName,
|
|
131
|
+
description: block.block.description,
|
|
132
|
+
status: block.block.status,
|
|
133
|
+
activeVersion: block.block.activeVersion,
|
|
134
|
+
}),
|
|
135
|
+
versions: block.versions.map((v) => pruneUndefined({
|
|
136
|
+
key: v.key,
|
|
137
|
+
status: v.status,
|
|
138
|
+
contentHash: v.contentHash,
|
|
139
|
+
spec: v.spec,
|
|
140
|
+
})),
|
|
141
|
+
};
|
|
142
|
+
return TOML.stringify(data);
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Parse `block.toml` text into a `BlockToml`. Throws with a clear message when
|
|
146
|
+
* the envelope is malformed (missing/invalid `[block].type`, no versions).
|
|
147
|
+
*/
|
|
148
|
+
export function parseBlockToml(text) {
|
|
149
|
+
const parsed = TOML.parse(text);
|
|
150
|
+
const header = parsed?.block;
|
|
151
|
+
if (!header || typeof header !== "object") {
|
|
152
|
+
throw new Error("block.toml is missing the [block] table");
|
|
153
|
+
}
|
|
154
|
+
if (!isBlockType(header.type)) {
|
|
155
|
+
throw new Error(`block.toml has an invalid [block].type: ${JSON.stringify(header.type)}`);
|
|
156
|
+
}
|
|
157
|
+
if (!header.key || typeof header.key !== "string") {
|
|
158
|
+
throw new Error("block.toml is missing a [block].key");
|
|
159
|
+
}
|
|
160
|
+
const rawVersions = Array.isArray(parsed.versions) ? parsed.versions : [];
|
|
161
|
+
const versions = rawVersions.map((v, i) => {
|
|
162
|
+
if (!v || typeof v !== "object") {
|
|
163
|
+
throw new Error(`block.toml version #${i} is not a table`);
|
|
164
|
+
}
|
|
165
|
+
return {
|
|
166
|
+
key: typeof v.key === "string" ? v.key : String(i),
|
|
167
|
+
status: typeof v.status === "string" ? v.status : undefined,
|
|
168
|
+
contentHash: typeof v.contentHash === "string" ? v.contentHash : undefined,
|
|
169
|
+
spec: v.spec && typeof v.spec === "object"
|
|
170
|
+
? v.spec
|
|
171
|
+
: {},
|
|
172
|
+
};
|
|
173
|
+
});
|
|
174
|
+
if (versions.length === 0) {
|
|
175
|
+
throw new Error("block.toml has no [[versions]]");
|
|
176
|
+
}
|
|
177
|
+
return {
|
|
178
|
+
schemaVersion: typeof parsed.schemaVersion === "string"
|
|
179
|
+
? parsed.schemaVersion
|
|
180
|
+
: BLOCK_SCHEMA_VERSION,
|
|
181
|
+
block: {
|
|
182
|
+
type: header.type,
|
|
183
|
+
key: header.key,
|
|
184
|
+
displayName: typeof header.displayName === "string"
|
|
185
|
+
? header.displayName
|
|
186
|
+
: undefined,
|
|
187
|
+
description: typeof header.description === "string"
|
|
188
|
+
? header.description
|
|
189
|
+
: undefined,
|
|
190
|
+
status: typeof header.status === "string" ? header.status : undefined,
|
|
191
|
+
activeVersion: typeof header.activeVersion === "string"
|
|
192
|
+
? header.activeVersion
|
|
193
|
+
: undefined,
|
|
194
|
+
},
|
|
195
|
+
versions,
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
/** `sha256:<hex>` content identity over the canonical JSON of a spec object. */
|
|
199
|
+
export function specContentHash(spec) {
|
|
200
|
+
return "sha256:" + createHash("sha256").update(canonicalJson(spec)).digest("hex");
|
|
201
|
+
}
|
|
202
|
+
function canonicalJson(value) {
|
|
203
|
+
if (value === null || typeof value !== "object") {
|
|
204
|
+
return JSON.stringify(value);
|
|
205
|
+
}
|
|
206
|
+
if (Array.isArray(value)) {
|
|
207
|
+
return "[" + value.map(canonicalJson).join(",") + "]";
|
|
208
|
+
}
|
|
209
|
+
const obj = value;
|
|
210
|
+
return ("{" +
|
|
211
|
+
Object.keys(obj)
|
|
212
|
+
.sort()
|
|
213
|
+
.map((k) => JSON.stringify(k) + ":" + canonicalJson(obj[k]))
|
|
214
|
+
.join(",") +
|
|
215
|
+
"}");
|
|
216
|
+
}
|
|
217
|
+
// ---------------------------------------------------------------------------
|
|
218
|
+
// Legacy <-> v2 conversion (loss-free)
|
|
219
|
+
// ---------------------------------------------------------------------------
|
|
220
|
+
/**
|
|
221
|
+
* Wrap a parsed legacy block object into a v2 `BlockToml`. The full legacy
|
|
222
|
+
* object is stored verbatim as the single version's `spec`, so the transform
|
|
223
|
+
* loses nothing. The `[block]` header is a projection derived from the legacy
|
|
224
|
+
* header table for the unified vocabulary; the spec remains the source of truth
|
|
225
|
+
* for reconstructing the legacy file.
|
|
226
|
+
*/
|
|
227
|
+
export function legacyObjectToBlock(type, legacy, fallbackKey) {
|
|
228
|
+
const headerTable = legacy[LEGACY_HEADER_KEY[type]] ||
|
|
229
|
+
{};
|
|
230
|
+
const key = typeof headerTable.key === "string" && headerTable.key
|
|
231
|
+
? headerTable.key
|
|
232
|
+
: fallbackKey;
|
|
233
|
+
const status = typeof headerTable.status === "string" ? headerTable.status : undefined;
|
|
234
|
+
const displayName = typeof headerTable.displayName === "string"
|
|
235
|
+
? headerTable.displayName
|
|
236
|
+
: typeof headerTable.name === "string"
|
|
237
|
+
? headerTable.name
|
|
238
|
+
: undefined;
|
|
239
|
+
const description = typeof headerTable.description === "string"
|
|
240
|
+
? headerTable.description
|
|
241
|
+
: undefined;
|
|
242
|
+
const versionKey = "default";
|
|
243
|
+
return {
|
|
244
|
+
schemaVersion: BLOCK_SCHEMA_VERSION,
|
|
245
|
+
block: {
|
|
246
|
+
type,
|
|
247
|
+
key,
|
|
248
|
+
displayName,
|
|
249
|
+
description,
|
|
250
|
+
status,
|
|
251
|
+
activeVersion: versionKey,
|
|
252
|
+
},
|
|
253
|
+
versions: [
|
|
254
|
+
{
|
|
255
|
+
key: versionKey,
|
|
256
|
+
status: status || "draft",
|
|
257
|
+
contentHash: specContentHash(legacy),
|
|
258
|
+
spec: legacy,
|
|
259
|
+
},
|
|
260
|
+
],
|
|
261
|
+
};
|
|
262
|
+
}
|
|
263
|
+
/** Wrap a raw Rhai script body into a v2 script `BlockToml`. */
|
|
264
|
+
export function scriptSourceToBlock(key, source) {
|
|
265
|
+
const spec = { sourceFile: SCRIPT_SOURCE_FILENAME };
|
|
266
|
+
return {
|
|
267
|
+
schemaVersion: BLOCK_SCHEMA_VERSION,
|
|
268
|
+
block: {
|
|
269
|
+
type: "script",
|
|
270
|
+
key,
|
|
271
|
+
status: "active",
|
|
272
|
+
activeVersion: "default",
|
|
273
|
+
},
|
|
274
|
+
versions: [
|
|
275
|
+
{
|
|
276
|
+
key: "default",
|
|
277
|
+
status: "active",
|
|
278
|
+
contentHash: specContentHash(source),
|
|
279
|
+
spec,
|
|
280
|
+
},
|
|
281
|
+
],
|
|
282
|
+
};
|
|
283
|
+
}
|
|
284
|
+
/**
|
|
285
|
+
* Reverse `legacyObjectToBlock` / `scriptSourceToBlock`: rebuild the legacy
|
|
286
|
+
* on-disk content from a v2 block. This is the read half of dual-layout
|
|
287
|
+
* support — a v2 directory can be projected back to the exact legacy object a
|
|
288
|
+
* legacy consumer (e.g. the push path) expects. `sourceText` is required for
|
|
289
|
+
* scripts (the body lives in `source.rhai`, not the `block.toml`).
|
|
290
|
+
*/
|
|
291
|
+
export function reconstructLegacyBlock(block, sourceText) {
|
|
292
|
+
const version = block.versions.find((v) => v.key === block.block.activeVersion) ||
|
|
293
|
+
block.versions[0];
|
|
294
|
+
if (block.block.type === "script") {
|
|
295
|
+
return { rhai: sourceText ?? "" };
|
|
296
|
+
}
|
|
297
|
+
const spec = (version?.spec ?? {});
|
|
298
|
+
return { toml: TOML.stringify(spec) };
|
|
299
|
+
}
|
|
300
|
+
// ---------------------------------------------------------------------------
|
|
301
|
+
// Layout detection + enumeration
|
|
302
|
+
// ---------------------------------------------------------------------------
|
|
303
|
+
function dirHasBlockFiles(dir, ext) {
|
|
304
|
+
if (!existsSync(dir))
|
|
305
|
+
return false;
|
|
306
|
+
try {
|
|
307
|
+
return readdirSync(dir).some((name) => {
|
|
308
|
+
if (!name.endsWith(ext))
|
|
309
|
+
return false;
|
|
310
|
+
return statSync(join(dir, name)).isFile();
|
|
311
|
+
});
|
|
312
|
+
}
|
|
313
|
+
catch {
|
|
314
|
+
return false;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
/**
|
|
318
|
+
* Report which layouts a config directory currently holds. A directory can
|
|
319
|
+
* hold both during/after a migration (legacy preserved, v2 written).
|
|
320
|
+
*/
|
|
321
|
+
export function detectLayout(configDir) {
|
|
322
|
+
const legacy = BLOCK_TYPES.some((type) => {
|
|
323
|
+
const dir = legacyBlockDir(configDir, type);
|
|
324
|
+
const ext = type === "script" ? ".rhai" : ".toml";
|
|
325
|
+
return dirHasBlockFiles(dir, ext);
|
|
326
|
+
});
|
|
327
|
+
const v2 = listV2Blocks(configDir).length > 0;
|
|
328
|
+
return { legacy, v2 };
|
|
329
|
+
}
|
|
330
|
+
/** Enumerate every v2 block present under `<configDir>/blocks/`. */
|
|
331
|
+
export function listV2Blocks(configDir) {
|
|
332
|
+
const root = v2BlocksRoot(configDir);
|
|
333
|
+
if (!existsSync(root))
|
|
334
|
+
return [];
|
|
335
|
+
const refs = [];
|
|
336
|
+
for (const typeDir of readdirSync(root)) {
|
|
337
|
+
const type = V2_TYPE_DIR_TO_TYPE[typeDir];
|
|
338
|
+
if (!type)
|
|
339
|
+
continue;
|
|
340
|
+
const typePath = join(root, typeDir);
|
|
341
|
+
if (!statSync(typePath).isDirectory())
|
|
342
|
+
continue;
|
|
343
|
+
for (const key of readdirSync(typePath)) {
|
|
344
|
+
const blockDir = join(typePath, key);
|
|
345
|
+
const tomlPath = join(blockDir, "block.toml");
|
|
346
|
+
if (!existsSync(tomlPath) || !statSync(blockDir).isDirectory())
|
|
347
|
+
continue;
|
|
348
|
+
const sourcePath = join(blockDir, SCRIPT_SOURCE_FILENAME);
|
|
349
|
+
refs.push({
|
|
350
|
+
type,
|
|
351
|
+
key,
|
|
352
|
+
tomlPath,
|
|
353
|
+
sourcePath: existsSync(sourcePath) ? sourcePath : undefined,
|
|
354
|
+
});
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
return refs;
|
|
358
|
+
}
|
|
359
|
+
function listLegacyBlockFiles(configDir) {
|
|
360
|
+
const files = [];
|
|
361
|
+
for (const type of BLOCK_TYPES) {
|
|
362
|
+
const dir = legacyBlockDir(configDir, type);
|
|
363
|
+
if (!existsSync(dir))
|
|
364
|
+
continue;
|
|
365
|
+
const ext = type === "script" ? ".rhai" : ".toml";
|
|
366
|
+
for (const name of readdirSync(dir)) {
|
|
367
|
+
if (!name.endsWith(ext))
|
|
368
|
+
continue;
|
|
369
|
+
const path = join(dir, name);
|
|
370
|
+
if (!statSync(path).isFile())
|
|
371
|
+
continue;
|
|
372
|
+
files.push({ type, key: basename(name, ext), path });
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
return files;
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* Convert a legacy sync directory into the v2 `blocks/<type>/<key>/block.toml`
|
|
379
|
+
* layout. Non-destructive: the legacy files are left in place (the legacy
|
|
380
|
+
* layout stays the default until v2 is proven). Test-case directories
|
|
381
|
+
* (`<key>.tests/`) are copied verbatim into `blocks/<type>/<key>/tests/` so a
|
|
382
|
+
* tested block migrates without losing its cases.
|
|
383
|
+
*/
|
|
384
|
+
export function migrateLegacyToV2(configDir, options = {}) {
|
|
385
|
+
const dryRun = !!options.dryRun;
|
|
386
|
+
const blocks = [];
|
|
387
|
+
const skipped = [];
|
|
388
|
+
for (const file of listLegacyBlockFiles(configDir)) {
|
|
389
|
+
const tomlPath = v2BlockTomlPath(configDir, file.type, file.key);
|
|
390
|
+
if (existsSync(tomlPath) && !options.force) {
|
|
391
|
+
skipped.push({
|
|
392
|
+
type: file.type,
|
|
393
|
+
key: file.key,
|
|
394
|
+
reason: "v2 block.toml already exists (use --force to overwrite)",
|
|
395
|
+
});
|
|
396
|
+
continue;
|
|
397
|
+
}
|
|
398
|
+
let block;
|
|
399
|
+
let sourceText;
|
|
400
|
+
if (file.type === "script") {
|
|
401
|
+
sourceText = readFileSync(file.path, "utf-8");
|
|
402
|
+
block = scriptSourceToBlock(file.key, sourceText);
|
|
403
|
+
}
|
|
404
|
+
else {
|
|
405
|
+
let legacy;
|
|
406
|
+
try {
|
|
407
|
+
legacy = TOML.parse(readFileSync(file.path, "utf-8"));
|
|
408
|
+
}
|
|
409
|
+
catch (err) {
|
|
410
|
+
skipped.push({
|
|
411
|
+
type: file.type,
|
|
412
|
+
key: file.key,
|
|
413
|
+
reason: `could not parse legacy TOML: ${err.message}`,
|
|
414
|
+
});
|
|
415
|
+
continue;
|
|
416
|
+
}
|
|
417
|
+
block = legacyObjectToBlock(file.type, legacy, file.key);
|
|
418
|
+
}
|
|
419
|
+
const blockDir = v2BlockDir(configDir, file.type, file.key);
|
|
420
|
+
const sourcePath = file.type === "script"
|
|
421
|
+
? v2ScriptSourcePath(configDir, file.key)
|
|
422
|
+
: undefined;
|
|
423
|
+
// Copy sibling test cases: legacy `<legacyDir>/<key>.tests/` ->
|
|
424
|
+
// `blocks/<type>/<key>/tests/`.
|
|
425
|
+
const legacyTestsDir = join(legacyBlockDir(configDir, file.type), `${file.key}.tests`);
|
|
426
|
+
let testsCopied = 0;
|
|
427
|
+
const v2TestsDir = join(blockDir, "tests");
|
|
428
|
+
if (existsSync(legacyTestsDir) && statSync(legacyTestsDir).isDirectory()) {
|
|
429
|
+
testsCopied = readdirSync(legacyTestsDir).filter((n) => n.endsWith(".toml")).length;
|
|
430
|
+
}
|
|
431
|
+
if (!dryRun) {
|
|
432
|
+
mkdirSync(blockDir, { recursive: true });
|
|
433
|
+
writeFileSync(tomlPath, serializeBlockToml(block));
|
|
434
|
+
if (sourcePath && sourceText !== undefined) {
|
|
435
|
+
writeFileSync(sourcePath, sourceText);
|
|
436
|
+
}
|
|
437
|
+
if (testsCopied > 0) {
|
|
438
|
+
cpSync(legacyTestsDir, v2TestsDir, { recursive: true });
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
blocks.push({
|
|
442
|
+
type: file.type,
|
|
443
|
+
key: file.key,
|
|
444
|
+
tomlPath,
|
|
445
|
+
sourcePath,
|
|
446
|
+
testsCopied,
|
|
447
|
+
});
|
|
448
|
+
}
|
|
449
|
+
return { blocks, skipped, dryRun };
|
|
450
|
+
}
|
|
451
|
+
//# sourceMappingURL=block-layout.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"block-layout.js","sourceRoot":"","sources":["../../../src/lib/block-layout.ts"],"names":[],"mappings":"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"}
|
package/dist/src/lib/config.js
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
*/
|
|
15
15
|
import { clearCredentialsStore, clearCurrentAppStore, loadCredentialsStore, peekLegacyCredentials, saveCredentialsStore, setCurrentAppStore, } from "./credentials-store.js";
|
|
16
16
|
import { getCurrentEnvironment, getCurrentEnvNameSafe, } from "./env-resolver.js";
|
|
17
|
+
import { PROJECT_CONFIG_DISPLAY_NAME } from "./project-config.js";
|
|
17
18
|
export function loadCredentials() {
|
|
18
19
|
return loadCredentialsStore();
|
|
19
20
|
}
|
|
@@ -55,6 +56,26 @@ export function getCurrentAppId() {
|
|
|
55
56
|
export function resolveAppId(appId, options) {
|
|
56
57
|
const resolved = appId || options.app || getCurrentAppId();
|
|
57
58
|
if (!resolved) {
|
|
59
|
+
// When the active env declares an `appId` in .primitive/config.json but
|
|
60
|
+
// has no credentials slot, loadCredentialsStore() returns null (its
|
|
61
|
+
// null == unauthenticated contract), so getCurrentAppId() yields nothing
|
|
62
|
+
// even though an appId IS configured. In that case the accurate problem
|
|
63
|
+
// is that the user isn't authenticated for this env — not that no app was
|
|
64
|
+
// specified. (A creds slot would have blended in env.config.appId and made
|
|
65
|
+
// `resolved` truthy, so reaching here with a configured appId can only mean
|
|
66
|
+
// missing credentials.)
|
|
67
|
+
let env = null;
|
|
68
|
+
try {
|
|
69
|
+
env = getCurrentEnvironment();
|
|
70
|
+
}
|
|
71
|
+
catch {
|
|
72
|
+
// Env resolution failed (ambiguous/unknown env) — fall back to the
|
|
73
|
+
// original "No app specified." message below.
|
|
74
|
+
}
|
|
75
|
+
if (env && env.config.appId) {
|
|
76
|
+
console.error(`Not logged in to environment "${env.name}". An appId is configured in ${PROJECT_CONFIG_DISPLAY_NAME} but you're not authenticated. Run 'primitive login --env ${env.name}'.`);
|
|
77
|
+
process.exit(1);
|
|
78
|
+
}
|
|
58
79
|
const envName = getCurrentEnvNameSafe();
|
|
59
80
|
const hint = envName
|
|
60
81
|
? `(current environment: ${envName}). Set 'appId' in .primitive/config.json, pass --app, or run 'primitive use <app-id>'.`
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/lib/config.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAGH,OAAO,EACL,qBAAqB,EACrB,oBAAoB,EACpB,oBAAoB,EACpB,qBAAqB,EACrB,oBAAoB,EACpB,kBAAkB,GACnB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EACL,qBAAqB,EACrB,qBAAqB,GACtB,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../../../src/lib/config.ts"],"names":[],"mappings":"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"}
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
*/
|
|
25
25
|
/** Top-level step fields the validator accepts for a known kind (#998). */
|
|
26
26
|
export const GENERATED_ALLOWLISTED_FIELDS = [
|
|
27
|
+
"_testInputSchema",
|
|
27
28
|
"_testSteps",
|
|
28
29
|
"action",
|
|
29
30
|
"aliasKey",
|
|
@@ -32,6 +33,8 @@ export const GENERATED_ALLOWLISTED_FIELDS = [
|
|
|
32
33
|
"asBase64",
|
|
33
34
|
"attachments",
|
|
34
35
|
"blobId",
|
|
36
|
+
"blockKey",
|
|
37
|
+
"blockType",
|
|
35
38
|
"bodyMode",
|
|
36
39
|
"bucketId",
|
|
37
40
|
"bucketKey",
|
|
@@ -114,6 +117,7 @@ export const GENERATED_ALLOWLISTED_FIELDS = [
|
|
|
114
117
|
"route",
|
|
115
118
|
"runIf",
|
|
116
119
|
"saveAs",
|
|
120
|
+
"schema",
|
|
117
121
|
"scope",
|
|
118
122
|
"selector",
|
|
119
123
|
"skipWhenSkipped",
|
|
@@ -121,6 +125,7 @@ export const GENERATED_ALLOWLISTED_FIELDS = [
|
|
|
121
125
|
"source",
|
|
122
126
|
"step",
|
|
123
127
|
"strict",
|
|
128
|
+
"strictParams",
|
|
124
129
|
"subject",
|
|
125
130
|
"successWhen",
|
|
126
131
|
"systemBypass",
|
|
@@ -142,6 +147,7 @@ export const GENERATED_ALLOWLISTED_FIELDS = [
|
|
|
142
147
|
"userId",
|
|
143
148
|
"userUlid",
|
|
144
149
|
"variables",
|
|
150
|
+
"version",
|
|
145
151
|
"windowDays",
|
|
146
152
|
"with",
|
|
147
153
|
"workflowKey",
|
|
@@ -154,6 +160,7 @@ export const GENERATED_KNOWN_KINDS = [
|
|
|
154
160
|
"blob.download",
|
|
155
161
|
"blob.signedUrl",
|
|
156
162
|
"blob.upload",
|
|
163
|
+
"block.call",
|
|
157
164
|
"collect",
|
|
158
165
|
"create",
|
|
159
166
|
"database.aggregate",
|
|
@@ -162,6 +169,7 @@ export const GENERATED_KNOWN_KINDS = [
|
|
|
162
169
|
"database.mutate",
|
|
163
170
|
"database.pipeline",
|
|
164
171
|
"database.query",
|
|
172
|
+
"database.syncIndexes",
|
|
165
173
|
"delay",
|
|
166
174
|
"document.count",
|
|
167
175
|
"document.delete",
|
|
@@ -186,6 +194,7 @@ export const GENERATED_KNOWN_KINDS = [
|
|
|
186
194
|
"group.checkMembership",
|
|
187
195
|
"group.listMembers",
|
|
188
196
|
"group.listUserMemberships",
|
|
197
|
+
"group.removeAll",
|
|
189
198
|
"group.removeMember",
|
|
190
199
|
"hash",
|
|
191
200
|
"integration.call",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generated-allowlist.js","sourceRoot":"","sources":["../../../src/lib/generated-allowlist.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"generated-allowlist.js","sourceRoot":"","sources":["../../../src/lib/generated-allowlist.ts"],"names":[],"mappings":"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"}
|
package/dist/src/lib/output.d.ts
CHANGED
|
@@ -2,17 +2,37 @@ export interface TableColumn {
|
|
|
2
2
|
header: string;
|
|
3
3
|
key: string;
|
|
4
4
|
width?: number;
|
|
5
|
+
/**
|
|
6
|
+
* Opt-in flexible sizing (#1065). When `true`, the column is sized from the
|
|
7
|
+
* remaining terminal width (`options.maxWidth ?? process.stdout.columns`)
|
|
8
|
+
* minus the sibling columns' widths and the inter-column padding, so the
|
|
9
|
+
* table shows as much of this column as fits **without wrapping**. Clamped to
|
|
10
|
+
* `[max(flexFloor, header length), flexMax]`. On a non-TTY (`maxWidth`
|
|
11
|
+
* undefined — piped/redirected) there is no width to wrap against, so the
|
|
12
|
+
* column is sized to `flexMax` (or its content width when `flexMax` is
|
|
13
|
+
* unset). Reading the terminal width is gated to flex columns: tables with no
|
|
14
|
+
* flex column never consult `process.stdout.columns` and stay byte-for-byte
|
|
15
|
+
* (and TTY-) unchanged.
|
|
16
|
+
*/
|
|
17
|
+
flex?: boolean;
|
|
18
|
+
/** Minimum width for a `flex` column. Default 0 (header length is always honored). */
|
|
19
|
+
flexFloor?: number;
|
|
20
|
+
/** Maximum width for a `flex` column. Default unbounded. */
|
|
21
|
+
flexMax?: number;
|
|
5
22
|
align?: "left" | "right" | "center";
|
|
6
23
|
format?: (value: any) => string;
|
|
7
24
|
/**
|
|
8
|
-
* Opt-in truncation. When `true` (and a
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
25
|
+
* Opt-in truncation. When `true` (and the column has a resolved width — a
|
|
26
|
+
* fixed `width` or a computed `flex` width), cell values longer than that
|
|
27
|
+
* width are ellipsized to fit the column so downstream columns stay aligned.
|
|
28
|
+
* Defaults to `false` so existing tables keep their current non-truncating
|
|
29
|
+
* behavior — only columns that explicitly opt in are clipped.
|
|
12
30
|
*/
|
|
13
31
|
truncate?: boolean;
|
|
14
32
|
}
|
|
15
|
-
export declare function formatTable(data: Record<string, any>[], columns: TableColumn[]
|
|
33
|
+
export declare function formatTable(data: Record<string, any>[], columns: TableColumn[], options?: {
|
|
34
|
+
maxWidth?: number;
|
|
35
|
+
}): string;
|
|
16
36
|
export declare function success(message: string): void;
|
|
17
37
|
export declare function error(message: string): void;
|
|
18
38
|
/**
|