buildx-cli 1.8.31 → 1.8.33

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 CHANGED
@@ -466,6 +466,11 @@ Writes:
466
466
  - `collections.manifest.json`
467
467
  - `SCHEMA_AS_CODE.md` (generated usage guide for human/AI collaborators)
468
468
 
469
+ Source-of-truth behavior:
470
+ - `collections.json` is pulled from remote `/project/:project_id/collections` payload directly (with only lightweight normalization for internal keys).
471
+ - CLI does not reconstruct `collections.json` from `types.ts` during `schema:pull`.
472
+ - runtime cache payload under `form_schema.*.propertiesScheme.schema` is excluded from pull/push sync artifacts.
473
+
469
474
  System-managed fields:
470
475
  - when `timestamps: true`, pulled `types.ts` includes `createdAt/updatedAt` (`BxDateTime`)
471
476
  - when `auditable: true`, pulled `types.ts` includes `createdBy/updatedBy` (`BxAuth`)
@@ -557,6 +562,9 @@ Embedded object fidelity:
557
562
  - when merging with base `collections.json`, nested child metadata is preserved by child name when possible.
558
563
  - dynamic object/list fallback stays as `BxObject` / `BxList` at type layer and `Object` / `List` in collection schema layer.
559
564
  - temporary compatibility: `string[]` / `BxText[]` converts to `MultipleChoices` instead of generic `List`.
565
+ - `schema:pull` annotation style:
566
+ - emits multiline JSDoc tags for readability
567
+ - emits `@bx.type` only for lossy relation kinds (`ReverseReference`, `ReverseReferences`, `Virtual`)
560
568
 
561
569
  Example:
562
570
  ```ts
package/dist/README.md CHANGED
@@ -466,6 +466,11 @@ Writes:
466
466
  - `collections.manifest.json`
467
467
  - `SCHEMA_AS_CODE.md` (generated usage guide for human/AI collaborators)
468
468
 
469
+ Source-of-truth behavior:
470
+ - `collections.json` is pulled from remote `/project/:project_id/collections` payload directly (with only lightweight normalization for internal keys).
471
+ - CLI does not reconstruct `collections.json` from `types.ts` during `schema:pull`.
472
+ - runtime cache payload under `form_schema.*.propertiesScheme.schema` is excluded from pull/push sync artifacts.
473
+
469
474
  System-managed fields:
470
475
  - when `timestamps: true`, pulled `types.ts` includes `createdAt/updatedAt` (`BxDateTime`)
471
476
  - when `auditable: true`, pulled `types.ts` includes `createdBy/updatedBy` (`BxAuth`)
@@ -557,6 +562,9 @@ Embedded object fidelity:
557
562
  - when merging with base `collections.json`, nested child metadata is preserved by child name when possible.
558
563
  - dynamic object/list fallback stays as `BxObject` / `BxList` at type layer and `Object` / `List` in collection schema layer.
559
564
  - temporary compatibility: `string[]` / `BxText[]` converts to `MultipleChoices` instead of generic `List`.
565
+ - `schema:pull` annotation style:
566
+ - emits multiline JSDoc tags for readability
567
+ - emits `@bx.type` only for lossy relation kinds (`ReverseReference`, `ReverseReferences`, `Virtual`)
560
568
 
561
569
  Example:
562
570
  ```ts