@wayai/cli 0.3.143 → 0.3.144
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 +21 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8131,9 +8131,16 @@ var init_contracts = __esm({
|
|
|
8131
8131
|
seats_scaling: external_exports.enum(["fixed", "per_quantity"]).optional(),
|
|
8132
8132
|
is_active: external_exports.boolean().optional(),
|
|
8133
8133
|
// Rekor entitlement allowances (rekor-platform-contracts §2.2). Editable here for the
|
|
8134
|
-
// same reason `messages_per_unit` is — and this route is
|
|
8135
|
-
// allowance on a live plan
|
|
8136
|
-
//
|
|
8134
|
+
// same reason `messages_per_unit` is — and this route is the only ROUTINE way to change an
|
|
8135
|
+
// allowance on a live plan: the seed establishes a plan row and never rewrites one, so a
|
|
8136
|
+
// seed-version bump no longer moves these values (see `seed.ts`).
|
|
8137
|
+
//
|
|
8138
|
+
// It is not the only writer, and an operator should not read it as authoritative against
|
|
8139
|
+
// one. A dated owner pricing decision may also land as a bounded `PLATFORM_MIGRATIONS`
|
|
8140
|
+
// step naming its columns and rows, and such a step CAN supersede an edit made here —
|
|
8141
|
+
// deliberately, since an owner decision outranks an earlier operator edit of the same
|
|
8142
|
+
// field. `seed.ts`'s header calls this shape 2 and states its replay residual; v28 is the
|
|
8143
|
+
// first instance (`rekor_production_bases` on `free`, 2026-08-19).
|
|
8137
8144
|
rekor_ops_tenths_included: external_exports.number().int().min(0).optional(),
|
|
8138
8145
|
rekor_max_records: external_exports.number().int().min(0).optional(),
|
|
8139
8146
|
rekor_import_rows_included: external_exports.number().int().min(0).optional(),
|
|
@@ -13613,9 +13620,16 @@ var init_dist = __esm({
|
|
|
13613
13620
|
seats_scaling: external_exports.enum(["fixed", "per_quantity"]).optional(),
|
|
13614
13621
|
is_active: external_exports.boolean().optional(),
|
|
13615
13622
|
// Rekor entitlement allowances (rekor-platform-contracts §2.2). Editable here for the
|
|
13616
|
-
// same reason `messages_per_unit` is — and this route is
|
|
13617
|
-
// allowance on a live plan
|
|
13618
|
-
//
|
|
13623
|
+
// same reason `messages_per_unit` is — and this route is the only ROUTINE way to change an
|
|
13624
|
+
// allowance on a live plan: the seed establishes a plan row and never rewrites one, so a
|
|
13625
|
+
// seed-version bump no longer moves these values (see `seed.ts`).
|
|
13626
|
+
//
|
|
13627
|
+
// It is not the only writer, and an operator should not read it as authoritative against
|
|
13628
|
+
// one. A dated owner pricing decision may also land as a bounded `PLATFORM_MIGRATIONS`
|
|
13629
|
+
// step naming its columns and rows, and such a step CAN supersede an edit made here —
|
|
13630
|
+
// deliberately, since an owner decision outranks an earlier operator edit of the same
|
|
13631
|
+
// field. `seed.ts`'s header calls this shape 2 and states its replay residual; v28 is the
|
|
13632
|
+
// first instance (`rekor_production_bases` on `free`, 2026-08-19).
|
|
13619
13633
|
rekor_ops_tenths_included: external_exports.number().int().min(0).optional(),
|
|
13620
13634
|
rekor_max_records: external_exports.number().int().min(0).optional(),
|
|
13621
13635
|
rekor_import_rows_included: external_exports.number().int().min(0).optional(),
|
|
@@ -27786,7 +27800,7 @@ function buildBasesCommand() {
|
|
|
27786
27800
|
"Default IANA timezone for datetime canonicalization (e.g. America/Sao_Paulo); a record type's own timezone overrides it"
|
|
27787
27801
|
).option(
|
|
27788
27802
|
"--environment <env>",
|
|
27789
|
-
"production (default) | preview.
|
|
27803
|
+
"production (default) | preview. Fixed at creation, and no id can change environment later. For a base you intend to keep, take the default so the durable id belongs to production, then get a linked preview with create-preview and promote from it. Pass preview only for an ephemeral or eval base under a derived id: a preview created here has no production origin, cannot be given one later, and so can never be promoted directly"
|
|
27790
27804
|
).action(async function(id, opts) {
|
|
27791
27805
|
const environment = parseEnum("--environment", opts.environment, [
|
|
27792
27806
|
"production",
|