@structbuild/sdk 0.5.1 → 0.5.2

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.
@@ -2453,22 +2453,20 @@ export interface components {
2453
2453
  av: number;
2454
2454
  };
2455
2455
  /**
2456
- * @description Wrapped response: an array of bucket rows plus a top-level
2457
- * `builder_metadata` lookup. Metadata is keyed by `builder_code` and
2458
- * returned once per builder rather than duplicated on every row, since
2459
- * composition responses can carry hundreds of rows per builder.
2456
+ * @description Composition response: bucket rows plus a top-level `builder_metadata`
2457
+ * lookup keyed by `builder_code`. Metadata is returned once per builder
2458
+ * here rather than embedded on each bucket row.
2460
2459
  */
2461
2460
  CompositionResponse: {
2462
2461
  /** @description Bucket rows, ordered ascending by `t` and then by `r` within each bucket. */
2463
2462
  data: components["schemas"]["CompositionBucketRow"][];
2464
2463
  /**
2465
- * @description Display metadata for each unique builder code present in `data`.
2466
- * Builders with no registered metadata are absent from the map. The
2467
- * synthetic `"other"` aggregate row is never present here.
2464
+ * @description Display metadata for each unique builder code present in `data`,
2465
+ * keyed by `builder_code`. Builders with no registered metadata are
2466
+ * absent from the map. The synthetic `"other"` aggregate row is never
2467
+ * a key here.
2468
2468
  */
2469
- builder_metadata: {
2470
- [key: string]: components["schemas"]["BuilderMetadataInline"];
2471
- };
2469
+ builder_metadata: Record<string, never>;
2472
2470
  };
2473
2471
  /**
2474
2472
  * @description Series mode — cumulative end-of-bucket snapshot or in-bucket delta.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@structbuild/sdk",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",