@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
|
|
2457
|
-
*
|
|
2458
|
-
*
|
|
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
|
|
2467
|
-
* synthetic `"other"` aggregate row is never
|
|
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.
|