buildx-cli 1.8.31 → 1.8.32
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 +7 -0
- package/dist/README.md +7 -0
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -466,6 +466,10 @@ 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
|
+
|
|
469
473
|
System-managed fields:
|
|
470
474
|
- when `timestamps: true`, pulled `types.ts` includes `createdAt/updatedAt` (`BxDateTime`)
|
|
471
475
|
- when `auditable: true`, pulled `types.ts` includes `createdBy/updatedBy` (`BxAuth`)
|
|
@@ -557,6 +561,9 @@ Embedded object fidelity:
|
|
|
557
561
|
- when merging with base `collections.json`, nested child metadata is preserved by child name when possible.
|
|
558
562
|
- dynamic object/list fallback stays as `BxObject` / `BxList` at type layer and `Object` / `List` in collection schema layer.
|
|
559
563
|
- temporary compatibility: `string[]` / `BxText[]` converts to `MultipleChoices` instead of generic `List`.
|
|
564
|
+
- `schema:pull` annotation style:
|
|
565
|
+
- emits multiline JSDoc tags for readability
|
|
566
|
+
- emits `@bx.type` only for lossy relation kinds (`ReverseReference`, `ReverseReferences`, `Virtual`)
|
|
560
567
|
|
|
561
568
|
Example:
|
|
562
569
|
```ts
|
package/dist/README.md
CHANGED
|
@@ -466,6 +466,10 @@ 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
|
+
|
|
469
473
|
System-managed fields:
|
|
470
474
|
- when `timestamps: true`, pulled `types.ts` includes `createdAt/updatedAt` (`BxDateTime`)
|
|
471
475
|
- when `auditable: true`, pulled `types.ts` includes `createdBy/updatedBy` (`BxAuth`)
|
|
@@ -557,6 +561,9 @@ Embedded object fidelity:
|
|
|
557
561
|
- when merging with base `collections.json`, nested child metadata is preserved by child name when possible.
|
|
558
562
|
- dynamic object/list fallback stays as `BxObject` / `BxList` at type layer and `Object` / `List` in collection schema layer.
|
|
559
563
|
- temporary compatibility: `string[]` / `BxText[]` converts to `MultipleChoices` instead of generic `List`.
|
|
564
|
+
- `schema:pull` annotation style:
|
|
565
|
+
- emits multiline JSDoc tags for readability
|
|
566
|
+
- emits `@bx.type` only for lossy relation kinds (`ReverseReference`, `ReverseReferences`, `Virtual`)
|
|
560
567
|
|
|
561
568
|
Example:
|
|
562
569
|
```ts
|