buildx-cli 1.8.32 → 1.8.34

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
@@ -469,6 +469,7 @@ Writes:
469
469
  Source-of-truth behavior:
470
470
  - `collections.json` is pulled from remote `/project/:project_id/collections` payload directly (with only lightweight normalization for internal keys).
471
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.
472
473
 
473
474
  System-managed fields:
474
475
  - when `timestamps: true`, pulled `types.ts` includes `createdAt/updatedAt` (`BxDateTime`)
@@ -560,10 +561,12 @@ Embedded object fidelity:
560
561
  - nested relation refs are normalized to collection IDs (for example `Partial<Workflows>` -> `workflows`).
561
562
  - when merging with base `collections.json`, nested child metadata is preserved by child name when possible.
562
563
  - dynamic object/list fallback stays as `BxObject` / `BxList` at type layer and `Object` / `List` in collection schema layer.
564
+ - dynamic mixed fallback uses `BxMixed` at type layer and `Mixed` in collection schema layer.
563
565
  - temporary compatibility: `string[]` / `BxText[]` converts to `MultipleChoices` instead of generic `List`.
564
566
  - `schema:pull` annotation style:
565
567
  - emits multiline JSDoc tags for readability
566
568
  - emits `@bx.type` only for lossy relation kinds (`ReverseReference`, `ReverseReferences`, `Virtual`)
569
+ - enforces remote `Mixed` fields to `BxMixed` (not `BxText`) from source-of-truth `collections` payload
567
570
 
568
571
  Example:
569
572
  ```ts
package/dist/README.md CHANGED
@@ -469,6 +469,7 @@ Writes:
469
469
  Source-of-truth behavior:
470
470
  - `collections.json` is pulled from remote `/project/:project_id/collections` payload directly (with only lightweight normalization for internal keys).
471
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.
472
473
 
473
474
  System-managed fields:
474
475
  - when `timestamps: true`, pulled `types.ts` includes `createdAt/updatedAt` (`BxDateTime`)
@@ -560,10 +561,12 @@ Embedded object fidelity:
560
561
  - nested relation refs are normalized to collection IDs (for example `Partial<Workflows>` -> `workflows`).
561
562
  - when merging with base `collections.json`, nested child metadata is preserved by child name when possible.
562
563
  - dynamic object/list fallback stays as `BxObject` / `BxList` at type layer and `Object` / `List` in collection schema layer.
564
+ - dynamic mixed fallback uses `BxMixed` at type layer and `Mixed` in collection schema layer.
563
565
  - temporary compatibility: `string[]` / `BxText[]` converts to `MultipleChoices` instead of generic `List`.
564
566
  - `schema:pull` annotation style:
565
567
  - emits multiline JSDoc tags for readability
566
568
  - emits `@bx.type` only for lossy relation kinds (`ReverseReference`, `ReverseReferences`, `Virtual`)
569
+ - enforces remote `Mixed` fields to `BxMixed` (not `BxText`) from source-of-truth `collections` payload
567
570
 
568
571
  Example:
569
572
  ```ts