@smithers-orchestrator/components 0.24.0 → 0.25.0

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.
@@ -1,11 +0,0 @@
1
- /**
2
- * Cost budget configuration for Aspects.
3
- *
4
- * Runtime enforcement is not implemented yet; this is declarative metadata.
5
- */
6
- export type CostBudgetConfig = {
7
- /** Maximum total cost in USD across all tasks within the Aspects scope. */
8
- maxUsd: number;
9
- /** Requested future behavior when the budget is exceeded. Default: "fail". */
10
- onExceeded?: "fail" | "warn" | "skip-remaining";
11
- };
@@ -1,10 +0,0 @@
1
- // @smithers-type-exports-begin
2
- /** @typedef {import("./AspectAccumulator.ts").AspectAccumulator} AspectAccumulator */
3
- /** @typedef {import("./AspectContextValue.ts").AspectContextValue} AspectContextValue */
4
- /** @typedef {import("./CostBudgetConfig.ts").CostBudgetConfig} CostBudgetConfig */
5
- /** @typedef {import("./LatencySloConfig.ts").LatencySloConfig} LatencySloConfig */
6
- /** @typedef {import("./TokenBudgetConfig.ts").TokenBudgetConfig} TokenBudgetConfig */
7
- /** @typedef {import("./TrackingConfig.ts").TrackingConfig} TrackingConfig */
8
- // @smithers-type-exports-end
9
-
10
- export { AspectContext, createAccumulator, } from "./AspectContext.js";