@lumerahq/cli 0.30.9-dev.0 → 0.30.9
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/index.js
CHANGED
|
@@ -240,25 +240,25 @@ async function main() {
|
|
|
240
240
|
switch (command) {
|
|
241
241
|
// Resource commands
|
|
242
242
|
case "plan":
|
|
243
|
-
await import("./resources-
|
|
243
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.plan(args.slice(1)));
|
|
244
244
|
break;
|
|
245
245
|
case "apply":
|
|
246
|
-
await import("./resources-
|
|
246
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.apply(args.slice(1)));
|
|
247
247
|
break;
|
|
248
248
|
case "pull":
|
|
249
|
-
await import("./resources-
|
|
249
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.pull(args.slice(1)));
|
|
250
250
|
break;
|
|
251
251
|
case "destroy":
|
|
252
|
-
await import("./resources-
|
|
252
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.destroy(args.slice(1)));
|
|
253
253
|
break;
|
|
254
254
|
case "list":
|
|
255
|
-
await import("./resources-
|
|
255
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.list(args.slice(1)));
|
|
256
256
|
break;
|
|
257
257
|
case "show":
|
|
258
|
-
await import("./resources-
|
|
258
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.show(args.slice(1)));
|
|
259
259
|
break;
|
|
260
260
|
case "diff":
|
|
261
|
-
await import("./resources-
|
|
261
|
+
await import("./resources-TZD6KV4M.js").then((m) => m.diff(args.slice(1)));
|
|
262
262
|
break;
|
|
263
263
|
// Development
|
|
264
264
|
case "dev":
|
|
@@ -284,20 +284,6 @@ var automationMainGuardRule = {
|
|
|
284
284
|
function isRecord3(value) {
|
|
285
285
|
return typeof value === "object" && value !== null && !Array.isArray(value);
|
|
286
286
|
}
|
|
287
|
-
var fileFieldTypes = /* @__PURE__ */ new Set(["file", "lumera_file"]);
|
|
288
|
-
var fileFieldKeys = /* @__PURE__ */ new Set([
|
|
289
|
-
"name",
|
|
290
|
-
"type",
|
|
291
|
-
"required",
|
|
292
|
-
"default",
|
|
293
|
-
"maxSelect",
|
|
294
|
-
"maxSize",
|
|
295
|
-
"mimeTypes",
|
|
296
|
-
"protected",
|
|
297
|
-
// Recognized below only to return a specific migration error.
|
|
298
|
-
"multiple",
|
|
299
|
-
"options"
|
|
300
|
-
]);
|
|
301
287
|
function error(target, message, snippet) {
|
|
302
288
|
return {
|
|
303
289
|
ruleId: "collection-schema",
|
|
@@ -366,32 +352,6 @@ var collectionSchemaRule = {
|
|
|
366
352
|
if (typeof field.type !== "string" || field.type.trim() === "") {
|
|
367
353
|
issues.push(error(target, `Field ${typeof field.name === "string" ? `"${field.name}"` : `at index ${i}`} is missing required string field "type".`));
|
|
368
354
|
}
|
|
369
|
-
const fieldLabel = typeof field.name === "string" ? `"${field.name}"` : `at index ${i}`;
|
|
370
|
-
if (field.options !== void 0) {
|
|
371
|
-
issues.push(error(target, `Field ${fieldLabel} must use flat option keys; nested "options" is only valid in pb.ensure_collection().`));
|
|
372
|
-
}
|
|
373
|
-
if (fileFieldTypes.has(field.type)) {
|
|
374
|
-
for (const key of Object.keys(field)) {
|
|
375
|
-
if (!fileFieldKeys.has(key)) {
|
|
376
|
-
issues.push(error(target, `Unknown file field option "${key}" on field ${fieldLabel}.`));
|
|
377
|
-
}
|
|
378
|
-
}
|
|
379
|
-
if (field.multiple !== void 0) {
|
|
380
|
-
issues.push(error(target, `File field ${fieldLabel} must use "maxSelect" instead of "multiple".`));
|
|
381
|
-
}
|
|
382
|
-
if (field.maxSelect !== void 0 && (typeof field.maxSelect !== "number" || !Number.isInteger(field.maxSelect) || field.maxSelect < 1)) {
|
|
383
|
-
issues.push(error(target, `File field ${fieldLabel} option "maxSelect" must be an integer greater than or equal to 1.`));
|
|
384
|
-
}
|
|
385
|
-
if (field.maxSize !== void 0 && (typeof field.maxSize !== "number" || !Number.isInteger(field.maxSize) || field.maxSize < 0)) {
|
|
386
|
-
issues.push(error(target, `File field ${fieldLabel} option "maxSize" must be an integer greater than or equal to 0.`));
|
|
387
|
-
}
|
|
388
|
-
if (field.mimeTypes !== void 0 && (!Array.isArray(field.mimeTypes) || !field.mimeTypes.every((mimeType) => typeof mimeType === "string" && mimeType.trim() !== ""))) {
|
|
389
|
-
issues.push(error(target, `File field ${fieldLabel} option "mimeTypes" must be an array of non-empty strings.`));
|
|
390
|
-
}
|
|
391
|
-
if (field.protected !== void 0 && typeof field.protected !== "boolean") {
|
|
392
|
-
issues.push(error(target, `File field ${fieldLabel} option "protected" must be a boolean.`));
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
355
|
}
|
|
396
356
|
}
|
|
397
357
|
if (audit !== void 0 && typeof audit !== "boolean") {
|
|
@@ -1864,12 +1824,6 @@ function convertCollectionToApiFormat(local, appName) {
|
|
|
1864
1824
|
options.decimalPrecision = field.decimalPrecision;
|
|
1865
1825
|
}
|
|
1866
1826
|
}
|
|
1867
|
-
if (field.type === "file" || field.type === "lumera_file") {
|
|
1868
|
-
if (field.maxSelect !== void 0) options.maxSelect = field.maxSelect;
|
|
1869
|
-
if (field.maxSize !== void 0) options.maxSize = field.maxSize;
|
|
1870
|
-
if (field.mimeTypes !== void 0) options.mimeTypes = field.mimeTypes;
|
|
1871
|
-
if (field.protected !== void 0) options.protected = field.protected;
|
|
1872
|
-
}
|
|
1873
1827
|
if (field.max !== void 0) options.max = field.max;
|
|
1874
1828
|
if (field.min !== void 0) options.min = field.min;
|
|
1875
1829
|
if (Object.keys(options).length > 0) {
|
|
@@ -1942,14 +1896,6 @@ function fieldsDiffer(local, remote) {
|
|
|
1942
1896
|
const remoteDecimalPrecision = opts.decimalPrecision !== void 0 ? opts.decimalPrecision : 2;
|
|
1943
1897
|
if (localDecimalPrecision !== remoteDecimalPrecision) return true;
|
|
1944
1898
|
}
|
|
1945
|
-
if (local.type === "file" || local.type === "lumera_file") {
|
|
1946
|
-
if ((local.maxSelect ?? 1) !== (opts.maxSelect ?? 1)) return true;
|
|
1947
|
-
if ((local.maxSize ?? 0) !== (opts.maxSize ?? 0)) return true;
|
|
1948
|
-
const localMimeTypes = [...local.mimeTypes ?? []].sort();
|
|
1949
|
-
const remoteMimeTypes = [...opts.mimeTypes ?? []].sort();
|
|
1950
|
-
if (JSON.stringify(localMimeTypes) !== JSON.stringify(remoteMimeTypes)) return true;
|
|
1951
|
-
if ((local.protected ?? false) !== (opts.protected ?? false)) return true;
|
|
1952
|
-
}
|
|
1953
1899
|
const localMin = normalizeConstraintValue(local.type, local.min);
|
|
1954
1900
|
const remoteMin = normalizeConstraintValue(local.type, opts.min);
|
|
1955
1901
|
if (localMin !== remoteMin) return true;
|
|
@@ -2578,24 +2524,13 @@ async function pullCollections(api, platformDir, filterName, projectId) {
|
|
|
2578
2524
|
fields: collection.schema.map((field) => {
|
|
2579
2525
|
const localField = {
|
|
2580
2526
|
name: field.name,
|
|
2581
|
-
type: field.type
|
|
2527
|
+
type: field.type,
|
|
2582
2528
|
required: field.required
|
|
2583
2529
|
};
|
|
2584
2530
|
if (field.options) {
|
|
2585
2531
|
if (field.options.values) localField.values = field.options.values;
|
|
2586
2532
|
if (field.options.collectionId) localField.collection = field.options.collectionId;
|
|
2587
|
-
if (
|
|
2588
|
-
localField.multiple = true;
|
|
2589
|
-
}
|
|
2590
|
-
if (field.type === "lumera_file") {
|
|
2591
|
-
const maxSelect = field.options.maxSelect ?? 1;
|
|
2592
|
-
const maxSize = field.options.maxSize ?? 0;
|
|
2593
|
-
const mimeTypes = field.options.mimeTypes ?? [];
|
|
2594
|
-
if (maxSelect !== 1) localField.maxSelect = maxSelect;
|
|
2595
|
-
if (maxSize !== 0) localField.maxSize = maxSize;
|
|
2596
|
-
if (mimeTypes.length > 0) localField.mimeTypes = mimeTypes;
|
|
2597
|
-
if (field.options.protected === true) localField.protected = true;
|
|
2598
|
-
}
|
|
2533
|
+
if (field.options.maxSelect && field.options.maxSelect > 1) localField.multiple = true;
|
|
2599
2534
|
if (field.options.defaultCurrency) {
|
|
2600
2535
|
localField.defaultCurrency = field.options.defaultCurrency;
|
|
2601
2536
|
}
|
package/package.json
CHANGED
|
@@ -12,8 +12,8 @@ importers:
|
|
|
12
12
|
.:
|
|
13
13
|
dependencies:
|
|
14
14
|
'@lumerahq/ui':
|
|
15
|
-
specifier: ^0.
|
|
16
|
-
version: 0.
|
|
15
|
+
specifier: ^0.19.1
|
|
16
|
+
version: 0.19.1(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
17
17
|
'@tanstack/react-query':
|
|
18
18
|
specifier: ^5.90.11
|
|
19
19
|
version: 5.101.0(react@19.2.7)
|
|
@@ -457,8 +457,8 @@ packages:
|
|
|
457
457
|
'@jridgewell/trace-mapping@0.3.31':
|
|
458
458
|
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
459
459
|
|
|
460
|
-
'@lumerahq/ui@0.
|
|
461
|
-
resolution: {integrity: sha512-
|
|
460
|
+
'@lumerahq/ui@0.19.1':
|
|
461
|
+
resolution: {integrity: sha512-2JwZJIzTrYnSTYPnfvlY1I+Up99gcCM5H/uWYtIB98WX1Sh4KNaZhS43Ex9iDlJJzoZCrMFweKq3vDjwFMx8tA==}
|
|
462
462
|
peerDependencies:
|
|
463
463
|
react: ^18.0.0 || ^19.0.0
|
|
464
464
|
react-dom: ^18.0.0 || ^19.0.0
|
|
@@ -2311,7 +2311,7 @@ snapshots:
|
|
|
2311
2311
|
'@jridgewell/resolve-uri': 3.1.2
|
|
2312
2312
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2313
2313
|
|
|
2314
|
-
'@lumerahq/ui@0.
|
|
2314
|
+
'@lumerahq/ui@0.19.1(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
|
|
2315
2315
|
dependencies:
|
|
2316
2316
|
'@base-ui/react': 1.5.0(@types/react@19.2.16)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
|
|
2317
2317
|
'@tanstack/react-query': 5.101.0(react@19.2.7)
|