TransferPlanInput
Defined in: src/transfers/TransferPlan.ts:32
Input used to create a transfer plan.
Properties
Section titled “Properties”| Property | Type | Description | Defined in |
|---|---|---|---|
dryRun? | boolean | Whether the plan is informational only. Defaults to true. | src/transfers/TransferPlan.ts:38 |
id | string | Stable plan identifier. | src/transfers/TransferPlan.ts:34 |
metadata? | Record<string, unknown> | Caller-defined metadata retained for diagnostics. | src/transfers/TransferPlan.ts:44 |
now? | () => Date | Clock used for deterministic tests. Defaults to new Date(). | src/transfers/TransferPlan.ts:40 |
steps | TransferPlanStep[] | Planned steps in execution order. | src/transfers/TransferPlan.ts:36 |
warnings? | string[] | Non-fatal plan warnings. | src/transfers/TransferPlan.ts:42 |