business-as-code
Version:
Primitives for expressing business logic and processes as code
22 lines • 1.06 kB
JavaScript
/**
* business-as-code/finance — the outcome-contract economic substrate.
*
* Source of truth for the economic primitives of the agentic economy:
* Money/Cost/Budget value types, Account/Card/Ledger/Identity payment types,
* Pricing, OutcomeContract, ProofPredicate, SLAPolicy, RefundContract,
* AuthorityBoundary, and the FinanceProvider/Merchant ports.
*
* Finance is foundational here because it is the core of the default OKRs
* (Revenue / Growth / Profit). `services-as-software` and `digital-tools`
* consume these primitives directly from here.
*
* Importable via the `business-as-code/finance` subpath export.
*
* @packageDocumentation
*/
export { SchemaMatch, EvaluatorPass, HumanSign, External, LoadBearingPass, OverallFloor, UnmetRequirementsPass, AND, OR, } from './proof-predicate.js';
export { resolveOutcomeAmount } from './outcome-contract.js';
export { RefundContracts } from './refund.js';
export { AuthorityBoundaries } from './authority.js';
export { Pricing, money } from './pricing.js';
//# sourceMappingURL=index.js.map