@hyperscale0/hsx 1.0.0-beta.1 → 1.0.0-rc.1
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.
- package/CHANGELOG.md +41 -9
- package/LICENSING.md +3 -3
- package/README.md +37 -149
- package/TRADEMARKS.md +4 -4
- package/dist/src/ast.d.ts +129 -10
- package/dist/src/ast.d.ts.map +1 -1
- package/dist/src/cli.d.ts +2 -1
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +148 -12
- package/dist/src/cli.js.map +1 -1
- package/dist/src/compile.d.ts +41 -4
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +82 -15
- package/dist/src/compile.js.map +1 -1
- package/dist/src/cost.d.ts +78 -0
- package/dist/src/cost.d.ts.map +1 -0
- package/dist/src/cost.js +369 -0
- package/dist/src/cost.js.map +1 -0
- package/dist/src/diagnostics.d.ts +11 -0
- package/dist/src/diagnostics.d.ts.map +1 -0
- package/dist/src/diagnostics.js +420 -0
- package/dist/src/diagnostics.js.map +1 -0
- package/dist/src/emit.d.ts +35 -0
- package/dist/src/emit.d.ts.map +1 -0
- package/dist/src/emit.js +359 -0
- package/dist/src/emit.js.map +1 -0
- package/dist/src/entry-overrides.d.ts +17 -3
- package/dist/src/entry-overrides.d.ts.map +1 -1
- package/dist/src/entry-overrides.js +180 -35
- package/dist/src/entry-overrides.js.map +1 -1
- package/dist/src/format.d.ts +10 -0
- package/dist/src/format.d.ts.map +1 -0
- package/dist/src/format.js +183 -0
- package/dist/src/format.js.map +1 -0
- package/dist/src/index.d.ts +10 -4
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +8 -3
- package/dist/src/index.js.map +1 -1
- package/dist/src/ir.d.ts +66 -0
- package/dist/src/ir.d.ts.map +1 -0
- package/dist/src/ir.js +15 -0
- package/dist/src/ir.js.map +1 -0
- package/dist/src/lex.d.ts +9 -1
- package/dist/src/lex.d.ts.map +1 -1
- package/dist/src/lex.js +50 -4
- package/dist/src/lex.js.map +1 -1
- package/dist/src/limits.d.ts +2 -3
- package/dist/src/limits.d.ts.map +1 -1
- package/dist/src/limits.js +2 -3
- package/dist/src/limits.js.map +1 -1
- package/dist/src/modules.d.ts +36 -0
- package/dist/src/modules.d.ts.map +1 -0
- package/dist/src/modules.js +372 -0
- package/dist/src/modules.js.map +1 -0
- package/dist/src/parse.d.ts.map +1 -1
- package/dist/src/parse.js +590 -17
- package/dist/src/parse.js.map +1 -1
- package/dist/src/typecheck.d.ts +8 -0
- package/dist/src/typecheck.d.ts.map +1 -0
- package/dist/src/typecheck.js +2958 -0
- package/dist/src/typecheck.js.map +1 -0
- package/dist/src/version.d.ts +4 -15
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +4 -15
- package/dist/src/version.js.map +1 -1
- package/docs/README.md +23 -0
- package/docs/guide/01-first-program.md +24 -0
- package/docs/guide/02-money.md +25 -0
- package/docs/guide/03-instruments.md +22 -0
- package/docs/guide/04-lifecycles.md +25 -0
- package/docs/guide/05-fees-and-splits.md +45 -0
- package/docs/guide/06-schedules.md +22 -0
- package/docs/guide/07-composition.md +46 -0
- package/docs/guide/08-writing-a-module.md +26 -0
- package/docs/guide/09-cost.md +24 -0
- package/docs/guide/10-diagnostics.md +27 -0
- package/docs/llms-full.txt +1738 -0
- package/docs/llms.txt +45 -0
- package/docs/reference/cli.md +33 -0
- package/docs/reference/diagnostics.md +619 -0
- package/docs/reference/grammar.md +39 -0
- package/docs/reference/std/advance.md +35 -0
- package/docs/reference/std/cancellable_booking.md +35 -0
- package/docs/reference/std/captured_payment.md +43 -0
- package/docs/reference/std/conditional_disbursement.md +33 -0
- package/docs/reference/std/credit_facility.md +35 -0
- package/docs/reference/std/held_payment.md +64 -0
- package/docs/reference/std/instant_transfer.md +30 -0
- package/docs/reference/std/metered.md +27 -0
- package/docs/reference/std/pooled_split.md +26 -0
- package/docs/reference/std/premium_forward.md +39 -0
- package/docs/reference/std/reconciled_payout.md +33 -0
- package/docs/reference/std/recurring_collection.md +25 -0
- package/docs/reference/std/rotating_pool.md +42 -0
- package/docs/reference/std/scheduled.md +51 -0
- package/docs/reference/std/security_deposit.md +46 -0
- package/docs/reference/std/settlement_batch.md +42 -0
- package/docs/reference/std/swap.md +46 -0
- package/docs/reference/std/threshold_pool.md +47 -0
- package/docs/reference/std/weighted_distribution.md +39 -0
- package/docs/reference/types.md +20 -0
- package/docs/reference/udl-output.md +14 -0
- package/docs/sessions/2026-09-02-two-instruments.hsx +21 -0
- package/docs/sessions/2026-09-02-two-instruments.md +41 -0
- package/examples/01-first-program/README.md +45 -0
- package/examples/01-first-program/tip-jar.hsx +17 -0
- package/examples/02-imports-and-archetypes/README.md +99 -0
- package/examples/02-imports-and-archetypes/photo-booth.hsx +37 -0
- package/examples/03-diagnostics/README.md +68 -0
- package/examples/03-diagnostics/corner-shop-fixed.hsx +22 -0
- package/examples/03-diagnostics/corner-shop.hsx +19 -0
- package/examples/04-complete-product/README.md +87 -0
- package/examples/04-complete-product/study-hall.hsx +67 -0
- package/examples/05-watch-club/README.md +9 -0
- package/examples/05-watch-club/watch-club.hsx +124 -0
- package/examples/README.md +18 -0
- package/examples/advance/README.md +3 -0
- package/examples/advance/advance.hsx +13 -0
- package/examples/advance/advance.udl +339 -0
- package/examples/cancellable_booking/README.md +3 -0
- package/examples/cancellable_booking/cancellable_booking.hsx +14 -0
- package/examples/cancellable_booking/cancellable_booking.udl +391 -0
- package/examples/captured_payment/README.md +3 -0
- package/examples/captured_payment/captured_payment.hsx +21 -0
- package/examples/captured_payment/captured_payment.udl +677 -0
- package/examples/conditional_disbursement/README.md +3 -0
- package/examples/conditional_disbursement/conditional_disbursement.hsx +17 -0
- package/examples/conditional_disbursement/conditional_disbursement.udl +412 -0
- package/examples/cost-table.json +386 -0
- package/examples/credit_facility/README.md +3 -0
- package/examples/credit_facility/credit_facility.hsx +27 -0
- package/examples/credit_facility/credit_facility.udl +1373 -0
- package/examples/held_payment/README.md +3 -0
- package/examples/held_payment/held_payment.hsx +13 -0
- package/examples/held_payment/held_payment.udl +507 -0
- package/examples/instant_transfer/README.md +3 -0
- package/examples/instant_transfer/instant_transfer.hsx +16 -0
- package/examples/instant_transfer/instant_transfer.udl +364 -0
- package/examples/metered/README.md +3 -0
- package/examples/metered/metered.hsx +13 -0
- package/examples/metered/metered.udl +247 -0
- package/examples/pooled_split/README.md +3 -0
- package/examples/pooled_split/pooled_split.hsx +15 -0
- package/examples/pooled_split/pooled_split.udl +425 -0
- package/examples/premium_forward/README.md +3 -0
- package/examples/premium_forward/premium_forward.hsx +19 -0
- package/examples/premium_forward/premium_forward.udl +594 -0
- package/examples/reconciled_payout/README.md +3 -0
- package/examples/reconciled_payout/reconciled_payout.hsx +13 -0
- package/examples/reconciled_payout/reconciled_payout.udl +303 -0
- package/examples/recurring_collection/README.md +3 -0
- package/examples/recurring_collection/recurring_collection.hsx +21 -0
- package/examples/recurring_collection/recurring_collection.udl +1130 -0
- package/examples/rotating_pool/README.md +3 -0
- package/examples/rotating_pool/rotating_pool.hsx +18 -0
- package/examples/rotating_pool/rotating_pool.udl +4352 -0
- package/examples/scheduled/README.md +3 -0
- package/examples/scheduled/scheduled.hsx +12 -0
- package/examples/scheduled/scheduled.udl +335 -0
- package/examples/security_deposit/README.md +3 -0
- package/examples/security_deposit/security_deposit.hsx +21 -0
- package/examples/security_deposit/security_deposit.udl +293 -0
- package/examples/settlement_batch/README.md +3 -0
- package/examples/settlement_batch/settlement_batch.hsx +19 -0
- package/examples/settlement_batch/settlement_batch.udl +753 -0
- package/examples/swap/README.md +3 -0
- package/examples/swap/swap.hsx +19 -0
- package/examples/swap/swap.udl +876 -0
- package/examples/threshold_pool/README.md +3 -0
- package/examples/threshold_pool/threshold_pool.hsx +16 -0
- package/examples/threshold_pool/threshold_pool.udl +667 -0
- package/examples/weighted_distribution/README.md +3 -0
- package/examples/weighted_distribution/weighted_distribution.hsx +20 -0
- package/examples/weighted_distribution/weighted_distribution.udl +337 -0
- package/package.json +19 -6
- package/skills/hsx/SKILL.md +483 -0
- package/src/ast.ts +163 -9
- package/src/cli.ts +164 -12
- package/src/compile.ts +160 -20
- package/src/cost.ts +579 -0
- package/src/diagnostics.ts +442 -0
- package/src/emit.ts +447 -0
- package/src/entry-overrides.ts +263 -48
- package/src/format.ts +261 -0
- package/src/index.ts +32 -4
- package/src/ir.ts +99 -0
- package/src/lex.ts +59 -4
- package/src/limits.ts +2 -3
- package/src/modules.ts +444 -0
- package/src/parse.ts +655 -21
- package/src/typecheck.ts +3876 -0
- package/src/version.ts +4 -16
- package/std/SEMANTICS.md +130 -0
- package/std/settlements/advance.hsx +177 -0
- package/std/settlements/cancellable_booking.hsx +87 -0
- package/std/settlements/captured_payment.hsx +144 -0
- package/std/settlements/conditional_disbursement.hsx +185 -0
- package/std/settlements/credit_facility.hsx +167 -0
- package/std/settlements/held_payment.hsx +578 -0
- package/std/settlements/index.hsx +3 -0
- package/std/settlements/instant_transfer.hsx +190 -0
- package/std/settlements/metered.hsx +67 -0
- package/std/settlements/pooled_split.hsx +68 -0
- package/std/settlements/premium_forward.hsx +257 -0
- package/std/settlements/reconciled_payout.hsx +77 -0
- package/std/settlements/recurring_collection.hsx +27 -0
- package/std/settlements/rotating_pool.hsx +252 -0
- package/std/settlements/scheduled.hsx +641 -0
- package/std/settlements/security_deposit.hsx +166 -0
- package/std/settlements/settlement_batch.hsx +122 -0
- package/std/settlements/swap.hsx +1114 -0
- package/std/settlements/threshold_pool.hsx +221 -0
- package/std/settlements/weighted_distribution.hsx +141 -0
- package/dist/src/archetypes.d.ts +0 -17
- package/dist/src/archetypes.d.ts.map +0 -1
- package/dist/src/archetypes.js +0 -327
- package/dist/src/archetypes.js.map +0 -1
- package/dist/src/check.d.ts +0 -12
- package/dist/src/check.d.ts.map +0 -1
- package/dist/src/check.js +0 -1910
- package/dist/src/check.js.map +0 -1
- package/dist/src/lower.d.ts +0 -146
- package/dist/src/lower.d.ts.map +0 -1
- package/dist/src/lower.js +0 -4570
- package/dist/src/lower.js.map +0 -1
- package/dist/src/model.d.ts +0 -467
- package/dist/src/model.d.ts.map +0 -1
- package/dist/src/model.js +0 -15
- package/dist/src/model.js.map +0 -1
- package/spec/hsx-ir.schema.json +0 -920
- package/src/archetypes.ts +0 -340
- package/src/check.ts +0 -2938
- package/src/lower.ts +0 -5416
- package/src/model.ts +0 -519
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# Grammar vocabulary
|
|
4
|
+
|
|
5
|
+
The parser is hand-written. This page records the exported lexer vocabulary, the UDL clause vocabulary it binds, and the current standard-library module names.
|
|
6
|
+
|
|
7
|
+
## Keywords
|
|
8
|
+
|
|
9
|
+
`action`, `as`, `asset`, `commit`, `const`, `expect`, `expose`, `expires`, `export`, `from`, `import`, `instrument`, `module`, `party`, `port`, `program`, `quote`, `rate`, `reconcile`, `settlement`, `subject`, `type`, `use`
|
|
10
|
+
|
|
11
|
+
## Punctuation
|
|
12
|
+
|
|
13
|
+
`{`, `}`, `(`, `)`, `[`, `]`, `:`, `,`, `;`, `=`, `|`, `.`, `<`, `>`, `?` and `->`
|
|
14
|
+
|
|
15
|
+
## Typed clause spellings
|
|
16
|
+
|
|
17
|
+
`agent description`, `capture input`, `commit`, `quote`, `decided amount`, `deadline`, `decision`, `computes distribute`, `description`, `due`, `earnable`, `event name`, `examples`, `input`, `moves`, `payout`, `port`, `principal`, `public action`, `reconcile`, `computes remainder`, `requires aggregate`, `requires checks`, `requires drained`, `requires exposure`, `requires refs`, `sandbox failure point`, `sets at`, `computes signed_sum`, `steps`, `summary`, `updates`, `notify`, `agent description`, `aggregate invariants`, `caller parked states`, `description`, `dials`, `distinct parties`, `computes derived`, `computes fees`, `id prefix`, `nav`, `partitions`, `subject`, `summary`, `surface visibility`, `template id`, `title`, `update`
|
|
18
|
+
|
|
19
|
+
## Standard-library modules
|
|
20
|
+
|
|
21
|
+
- `advance`
|
|
22
|
+
- `cancellable_booking`
|
|
23
|
+
- `captured_payment`
|
|
24
|
+
- `conditional_disbursement`
|
|
25
|
+
- `credit_facility`
|
|
26
|
+
- `held_payment`
|
|
27
|
+
- `instant_transfer`
|
|
28
|
+
- `metered`
|
|
29
|
+
- `pooled_split`
|
|
30
|
+
- `premium_forward`
|
|
31
|
+
- `reconciled_payout`
|
|
32
|
+
- `recurring_collection`
|
|
33
|
+
- `rotating_pool`
|
|
34
|
+
- `scheduled`
|
|
35
|
+
- `security_deposit`
|
|
36
|
+
- `settlement_batch`
|
|
37
|
+
- `swap`
|
|
38
|
+
- `threshold_pool`
|
|
39
|
+
- `weighted_distribution`
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# advance
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/advance.hsx`](../../../std/settlements/advance.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`advance<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `funder: party`
|
|
14
|
+
- `to: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `fee: optional<percent>`
|
|
17
|
+
- `count: optional<integer>`
|
|
18
|
+
- `every: optional<text>`
|
|
19
|
+
- `first_due: optional<date>`
|
|
20
|
+
- `against: optional<ref>`
|
|
21
|
+
|
|
22
|
+
## Decision ports
|
|
23
|
+
|
|
24
|
+
None.
|
|
25
|
+
|
|
26
|
+
## Actions and clauses
|
|
27
|
+
|
|
28
|
+
| Action | Clauses lowered |
|
|
29
|
+
| --------------------- | ------------------------------------------------ |
|
|
30
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
31
|
+
| `disburse` | `agent description`, `moves`, `steps`, `summary` |
|
|
32
|
+
| `settle` | `agent description`, `moves`, `steps`, `summary` |
|
|
33
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
34
|
+
| `disburse` | `agent description`, `moves`, `steps`, `summary` |
|
|
35
|
+
| `collect_repayment_1` | `due`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# cancellable_booking
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/cancellable_booking.hsx`](../../../std/settlements/cancellable_booking.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`cancellable_booking<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `guest: party`
|
|
14
|
+
- `host: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `starts_at: date`
|
|
17
|
+
- `late_penalty_bps: integer`
|
|
18
|
+
- `late_within: text`
|
|
19
|
+
- `early_penalty_bps: integer`
|
|
20
|
+
- `offer_life: text`
|
|
21
|
+
|
|
22
|
+
## Decision ports
|
|
23
|
+
|
|
24
|
+
None.
|
|
25
|
+
|
|
26
|
+
## Actions and clauses
|
|
27
|
+
|
|
28
|
+
| Action | Clauses lowered |
|
|
29
|
+
| ---------- | ---------------------------------------------------------- |
|
|
30
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
31
|
+
| `take` | `agent description`, `moves`, `steps`, `summary` |
|
|
32
|
+
| `complete` | `due`, `moves`, `steps`, `summary` |
|
|
33
|
+
| `cancel` | `agent description`, `moves`, `quote`, `steps`, `summary` |
|
|
34
|
+
| `confirm` | `agent description`, `commit`, `moves`, `steps`, `summary` |
|
|
35
|
+
| `retain` | `agent description`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# captured_payment
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/captured_payment.hsx`](../../../std/settlements/captured_payment.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`captured_payment<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `payee: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `reserve_until: date`
|
|
17
|
+
- `correction: condition`
|
|
18
|
+
- `external_reversal: condition`
|
|
19
|
+
- `capture_mode: text`
|
|
20
|
+
- `correction_mode: text`
|
|
21
|
+
- `negative_position: text`
|
|
22
|
+
- `timeout: text`
|
|
23
|
+
- `derived_amount: optional<block>`
|
|
24
|
+
|
|
25
|
+
## Decision ports
|
|
26
|
+
|
|
27
|
+
- `correction`
|
|
28
|
+
- `external_reversal`
|
|
29
|
+
|
|
30
|
+
## Actions and clauses
|
|
31
|
+
|
|
32
|
+
| Action | Clauses lowered |
|
|
33
|
+
| ------------------ | -------------------------------------------------------------------------------------------- |
|
|
34
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
35
|
+
| `authorize` | `agent description`, `moves`, `steps`, `summary` |
|
|
36
|
+
| `capture` | `agent description`, `deadline`, `description`, `input`, `moves`, `steps`, `summary` |
|
|
37
|
+
| `capture_more` | `agent description`, `deadline`, `description`, `input`, `moves`, `steps`, `summary` |
|
|
38
|
+
| `settle` | `agent description`, `deadline`, `moves`, `steps`, `summary` |
|
|
39
|
+
| `void` | `agent description`, `moves`, `steps`, `summary` |
|
|
40
|
+
| `expire` | `due`, `moves`, `steps`, `summary` |
|
|
41
|
+
| `settle_on_expiry` | `due`, `moves`, `steps`, `summary` |
|
|
42
|
+
| `correction_name` | `agent description`, `moves`, `port`, `steps`, `summary` |
|
|
43
|
+
| `reversal_name` | `agent description`, `deadline`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# conditional_disbursement
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/conditional_disbursement.hsx`](../../../std/settlements/conditional_disbursement.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`conditional_disbursement<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `source: party`
|
|
14
|
+
- `destination: party`
|
|
15
|
+
- `cap: money<C>`
|
|
16
|
+
- `amount: money<C>`
|
|
17
|
+
- `decision: condition`
|
|
18
|
+
- `reopen_policy: text`
|
|
19
|
+
- `recovery_policy: text`
|
|
20
|
+
|
|
21
|
+
## Decision ports
|
|
22
|
+
|
|
23
|
+
- `decision`
|
|
24
|
+
|
|
25
|
+
## Actions and clauses
|
|
26
|
+
|
|
27
|
+
| Action | Clauses lowered |
|
|
28
|
+
| --------- | ------------------------------------------------------------------------------------------------- |
|
|
29
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
30
|
+
| `deny` | `agent description`, `capture input`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
31
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
32
|
+
| `approve` | `agent description`, `capture input`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
33
|
+
| `pay` | `agent description`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# credit_facility
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/credit_facility.hsx`](../../../std/settlements/credit_facility.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`credit_facility<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `lender: party`
|
|
14
|
+
- `borrower: party`
|
|
15
|
+
- `draw_destination: party`
|
|
16
|
+
- `limit: money<C>`
|
|
17
|
+
- `expires_at: date`
|
|
18
|
+
- `obligation: ref`
|
|
19
|
+
- `availability_policy: text`
|
|
20
|
+
- `expiry_policy: text`
|
|
21
|
+
- `close_policy: text`
|
|
22
|
+
|
|
23
|
+
## Decision ports
|
|
24
|
+
|
|
25
|
+
None.
|
|
26
|
+
|
|
27
|
+
## Actions and clauses
|
|
28
|
+
|
|
29
|
+
| Action | Clauses lowered |
|
|
30
|
+
| --------- | ------------------------------------------------ |
|
|
31
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
32
|
+
| `freeze` | `due`, `moves`, `steps`, `summary` |
|
|
33
|
+
| `close` | `agent description`, `moves`, `steps`, `summary` |
|
|
34
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
35
|
+
| `resolve` | `agent description`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# held_payment
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/held_payment.hsx`](../../../std/settlements/held_payment.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`held_payment<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `payee: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `release: condition`
|
|
17
|
+
- `fees: optional<block>`
|
|
18
|
+
- `on_cancel: optional<block>`
|
|
19
|
+
- `derived_amount: optional<block>`
|
|
20
|
+
- `release_to: optional<party>`
|
|
21
|
+
- `whole_amount: optional<block>`
|
|
22
|
+
- `release_action: optional<text>`
|
|
23
|
+
- `whole_fee: optional<money<C>>`
|
|
24
|
+
- `reference: optional<text>`
|
|
25
|
+
- `upstream: optional<ref>`
|
|
26
|
+
- `id_prefix_override: optional<text>`
|
|
27
|
+
|
|
28
|
+
## Decision ports
|
|
29
|
+
|
|
30
|
+
- `release`
|
|
31
|
+
|
|
32
|
+
## Actions and clauses
|
|
33
|
+
|
|
34
|
+
| Action | Clauses lowered |
|
|
35
|
+
| --------------------- | --------------------------------------------------------------------------------------------- |
|
|
36
|
+
| `fund_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
37
|
+
| `fund_piece_3` | `agent description`, `moves`, `steps`, `summary` |
|
|
38
|
+
| `collect_service_fee` | `agent description`, `moves`, `steps`, `summary` |
|
|
39
|
+
| `release_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
40
|
+
| `release_piece_3` | `agent description`, `moves`, `steps`, `summary` |
|
|
41
|
+
| `refund_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
42
|
+
| `refund_piece_3` | `agent description`, `moves`, `steps`, `summary` |
|
|
43
|
+
| `unfund_piece_1` | `agent description`, `moves`, `steps`, `summary` |
|
|
44
|
+
| `unfund_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
45
|
+
| `unfund_piece_3` | `agent description`, `moves`, `steps`, `summary` |
|
|
46
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
47
|
+
| `fund_piece_1` | `agent description`, `moves`, `steps`, `summary` |
|
|
48
|
+
| `release_name` | `agent description`, `deadline`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
49
|
+
| `release_on_deadline` | `due`, `moves`, `steps`, `summary` |
|
|
50
|
+
| `cancel` | `agent description`, `deadline`, `moves`, `steps`, `summary` |
|
|
51
|
+
| `fund_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
52
|
+
| `release_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
53
|
+
| `unfund_piece_1` | `agent description`, `moves`, `steps`, `summary` |
|
|
54
|
+
| `fund_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
55
|
+
| `release_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
56
|
+
| `refund_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
57
|
+
| `unfund_piece_1` | `agent description`, `moves`, `steps`, `summary` |
|
|
58
|
+
| `abandon` | `agent description`, `moves`, `steps`, `summary` |
|
|
59
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
60
|
+
| `fund` | `agent description`, `moves`, `sandbox failure point`, `steps`, `summary` |
|
|
61
|
+
| `release_action` | `agent description`, `deadline`, `moves`, `port`, `sandbox failure point`, `steps`, `summary` |
|
|
62
|
+
| `release_on_deadline` | `due`, `event name`, `moves`, `steps`, `summary` |
|
|
63
|
+
| `cancel` | `agent description`, `deadline`, `event name`, `moves`, `steps`, `summary` |
|
|
64
|
+
| `abandon` | `agent description`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# instant_transfer
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/instant_transfer.hsx`](../../../std/settlements/instant_transfer.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`instant_transfer<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `payee: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `fees: optional<block>`
|
|
17
|
+
- `derived_amount: optional<block>`
|
|
18
|
+
|
|
19
|
+
## Decision ports
|
|
20
|
+
|
|
21
|
+
None.
|
|
22
|
+
|
|
23
|
+
## Actions and clauses
|
|
24
|
+
|
|
25
|
+
| Action | Clauses lowered |
|
|
26
|
+
| --------------------- | ------------------------------------------------ |
|
|
27
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
28
|
+
| `pay_piece_1` | `agent description`, `moves`, `steps`, `summary` |
|
|
29
|
+
| `pay_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
30
|
+
| `collect_service_fee` | `agent description`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# metered
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/metered.hsx`](../../../std/settlements/metered.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`metered`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `payee: party`
|
|
15
|
+
- `close_by: date`
|
|
16
|
+
- `rates: unknown`
|
|
17
|
+
|
|
18
|
+
## Decision ports
|
|
19
|
+
|
|
20
|
+
None.
|
|
21
|
+
|
|
22
|
+
## Actions and clauses
|
|
23
|
+
|
|
24
|
+
| Action | Clauses lowered |
|
|
25
|
+
| -------------- | --------------------------------------- |
|
|
26
|
+
| `create` | `agent description`, `steps`, `summary` |
|
|
27
|
+
| `close_period` | `due`, `steps`, `summary` |
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# pooled_split
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/pooled_split.hsx`](../../../std/settlements/pooled_split.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`pooled_split<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `amount: money<C>`
|
|
15
|
+
- `payout_due: date`
|
|
16
|
+
- `split: block`
|
|
17
|
+
|
|
18
|
+
## Decision ports
|
|
19
|
+
|
|
20
|
+
None.
|
|
21
|
+
|
|
22
|
+
## Actions and clauses
|
|
23
|
+
|
|
24
|
+
| Action | Clauses lowered |
|
|
25
|
+
| -------- | ------------------------------------------------ |
|
|
26
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# premium_forward
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/premium_forward.hsx`](../../../std/settlements/premium_forward.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`premium_forward<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `carrier: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `bind: condition`
|
|
17
|
+
- `commission: percent`
|
|
18
|
+
- `policy_ref: optional<text>`
|
|
19
|
+
- `renewal_due: optional<date>`
|
|
20
|
+
- `endorsement: optional<condition>`
|
|
21
|
+
|
|
22
|
+
## Decision ports
|
|
23
|
+
|
|
24
|
+
- `bind`
|
|
25
|
+
- `endorsement`
|
|
26
|
+
|
|
27
|
+
## Actions and clauses
|
|
28
|
+
|
|
29
|
+
| Action | Clauses lowered |
|
|
30
|
+
| ----------------- | ---------------------------------------------------------------------------------------- |
|
|
31
|
+
| `create` | `agent description`, `steps`, `summary` |
|
|
32
|
+
| `fund_piece_1` | `agent description`, `moves`, `steps`, `summary` |
|
|
33
|
+
| `fund_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
34
|
+
| `bind` | `agent description`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
35
|
+
| `forward_piece_2` | `agent description`, `moves`, `steps`, `summary` |
|
|
36
|
+
| `unfund_piece_1` | `agent description`, `moves`, `steps`, `summary` |
|
|
37
|
+
| `abandon` | `agent description`, `steps`, `summary` |
|
|
38
|
+
| `endorsement` | `agent description`, `capture input`, `description`, `input`, `port`, `steps`, `summary` |
|
|
39
|
+
| `lapse` | `due`, `steps`, `summary` |
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# reconciled_payout
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/reconciled_payout.hsx`](../../../std/settlements/reconciled_payout.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`reconciled_payout<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `beneficiary: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `beneficiary_ref: text`
|
|
17
|
+
- `settle_by: date`
|
|
18
|
+
- `matched_within: integer`
|
|
19
|
+
- `matched_ceiling: integer`
|
|
20
|
+
|
|
21
|
+
## Decision ports
|
|
22
|
+
|
|
23
|
+
None.
|
|
24
|
+
|
|
25
|
+
## Actions and clauses
|
|
26
|
+
|
|
27
|
+
| Action | Clauses lowered |
|
|
28
|
+
| ---------- | ---------------------------------------------------------- |
|
|
29
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
30
|
+
| `instruct` | `agent description`, `moves`, `payout`, `steps`, `summary` |
|
|
31
|
+
| `settle` | `due`, `moves`, `reconcile`, `steps`, `summary` |
|
|
32
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
33
|
+
| `carry` | `agent description`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# recurring_collection
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/recurring_collection.hsx`](../../../std/settlements/recurring_collection.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`recurring_collection`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `marker: optional<text>`
|
|
14
|
+
|
|
15
|
+
## Decision ports
|
|
16
|
+
|
|
17
|
+
None.
|
|
18
|
+
|
|
19
|
+
## Actions and clauses
|
|
20
|
+
|
|
21
|
+
| Action | Clauses lowered |
|
|
22
|
+
| --------- | --------------------------------------- |
|
|
23
|
+
| `create` | `agent description`, `steps`, `summary` |
|
|
24
|
+
| `collect` | `agent description`, `steps`, `summary` |
|
|
25
|
+
| `end` | `agent description`, `steps`, `summary` |
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# rotating_pool
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/rotating_pool.hsx`](../../../std/settlements/rotating_pool.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`rotating_pool<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `members: optional<list<party>>`
|
|
14
|
+
- `contribution: money<C>`
|
|
15
|
+
- `count: integer`
|
|
16
|
+
- `every: optional<text>`
|
|
17
|
+
- `first_due: date`
|
|
18
|
+
- `payout_order: optional<list<party>>`
|
|
19
|
+
- `default_policy: optional<text>`
|
|
20
|
+
- `guarantee_policy: optional<text>`
|
|
21
|
+
- `guarantor: optional<party>`
|
|
22
|
+
- `exit_policy: optional<text>`
|
|
23
|
+
- `memo: optional<text>`
|
|
24
|
+
- `membership: optional<block>`
|
|
25
|
+
|
|
26
|
+
## Decision ports
|
|
27
|
+
|
|
28
|
+
None.
|
|
29
|
+
|
|
30
|
+
## Actions and clauses
|
|
31
|
+
|
|
32
|
+
| Action | Clauses lowered |
|
|
33
|
+
| ---------- | ------------------------------------------------- |
|
|
34
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
35
|
+
| `cancel` | `agent description`, `moves`, `steps`, `summary` |
|
|
36
|
+
| `activate` | `agent description`, `moves`, `steps`, `summary` |
|
|
37
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
38
|
+
| `close` | `agent description`, `moves`, `steps`, `summary` |
|
|
39
|
+
| `create` | `agent description`, `examples`, `moves`, `steps` |
|
|
40
|
+
| `activate` | `due`, `examples`, `moves`, `steps` |
|
|
41
|
+
| `disband` | `agent description`, `examples`, `moves`, `steps` |
|
|
42
|
+
| `close` | `agent description`, `examples`, `moves`, `steps` |
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# scheduled
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/scheduled.hsx`](../../../std/settlements/scheduled.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`scheduled<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `payee: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `count: optional<integer>`
|
|
17
|
+
- `every: text`
|
|
18
|
+
- `first_due: date`
|
|
19
|
+
- `mode: optional<text>`
|
|
20
|
+
- `debtor: optional<party>`
|
|
21
|
+
- `advance_to: optional<party>`
|
|
22
|
+
- `until: optional<condition>`
|
|
23
|
+
- `month_end: optional<text>`
|
|
24
|
+
- `period_liability: optional<text>`
|
|
25
|
+
- `termination_drain: optional<text>`
|
|
26
|
+
- `mandate: optional<condition>`
|
|
27
|
+
- `derived_amount: optional<unknown>`
|
|
28
|
+
|
|
29
|
+
## Decision ports
|
|
30
|
+
|
|
31
|
+
- `until`
|
|
32
|
+
- `mandate`
|
|
33
|
+
|
|
34
|
+
## Actions and clauses
|
|
35
|
+
|
|
36
|
+
| Action | Clauses lowered |
|
|
37
|
+
| ------------------- | ------------------------------------------------------------------------------------------------- |
|
|
38
|
+
| `create` | `agent description`, `steps`, `summary` |
|
|
39
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
40
|
+
| `approve` | `agent description`, `steps`, `summary` |
|
|
41
|
+
| `advance` | `agent description`, `moves`, `steps`, `summary` |
|
|
42
|
+
| `delinquent_action` | `due`, `sets at`, `steps`, `summary` |
|
|
43
|
+
| `complete` | `due`, `steps`, `summary` |
|
|
44
|
+
| `write_off` | `agent description`, `steps`, `summary` |
|
|
45
|
+
| `create` | `agent description`, `steps`, `summary` |
|
|
46
|
+
| `repay` | `agent description`, `capture input`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
47
|
+
| `refund` | `agent description`, `moves`, `steps`, `summary` |
|
|
48
|
+
| `create` | `agent description`, `steps`, `summary` |
|
|
49
|
+
| `open_period` | `due`, `steps`, `summary` |
|
|
50
|
+
| `collect_period` | `agent description`, `capture input`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
51
|
+
| `until` | `agent description`, `capture input`, `description`, `input`, `port`, `steps`, `summary` |
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# security_deposit
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/security_deposit.hsx`](../../../std/settlements/security_deposit.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`security_deposit<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `payer: party`
|
|
14
|
+
- `holder: party`
|
|
15
|
+
- `amount: money<C>`
|
|
16
|
+
- `claim: optional<condition>`
|
|
17
|
+
- `return: optional<condition>`
|
|
18
|
+
- `claim_amount: optional<block>`
|
|
19
|
+
- `deadline: optional<date>`
|
|
20
|
+
- `claim_to: optional<party>`
|
|
21
|
+
- `return_to: optional<party>`
|
|
22
|
+
- `memo: optional<text>`
|
|
23
|
+
- `claim_input: optional<block>`
|
|
24
|
+
- `claim_capture: optional<block>`
|
|
25
|
+
- `fund_failure_point: optional<text>`
|
|
26
|
+
- `id_prefix_override: optional<text>`
|
|
27
|
+
|
|
28
|
+
## Decision ports
|
|
29
|
+
|
|
30
|
+
- `claim`
|
|
31
|
+
- `return`
|
|
32
|
+
|
|
33
|
+
## Actions and clauses
|
|
34
|
+
|
|
35
|
+
| Action | Clauses lowered |
|
|
36
|
+
| --------------- | ---------------------------------------------------------------------------------------------------------------- |
|
|
37
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
38
|
+
| `place_deposit` | `agent description`, `moves`, `steps`, `summary` |
|
|
39
|
+
| `claim_name` | `agent description`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
40
|
+
| `return_name` | `agent description`, `moves`, `steps`, `summary` |
|
|
41
|
+
| `create` | `agent description`, `deadline`, `moves`, `steps`, `summary` |
|
|
42
|
+
| `fund` | `agent description`, `deadline`, `moves`, `sandbox failure point`, `steps`, `summary` |
|
|
43
|
+
| `claim` | `agent description`, `capture input`, `deadline`, `decided amount`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
44
|
+
| `return` | `agent description`, `deadline`, `moves`, `port`, `steps`, `summary` |
|
|
45
|
+
| `expire` | `due`, `moves`, `steps`, `summary` |
|
|
46
|
+
| `cancel` | `agent description`, `moves`, `steps`, `summary` |
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!-- Generated by scripts/docs/build.ts for HSX 1.0.0-rc.1. Do not edit. -->
|
|
2
|
+
|
|
3
|
+
# settlement_batch
|
|
4
|
+
|
|
5
|
+
Source: [`std/settlements/settlement_batch.hsx`](../../../std/settlements/settlement_batch.hsx)
|
|
6
|
+
|
|
7
|
+
## Export
|
|
8
|
+
|
|
9
|
+
`settlement_batch<C>`
|
|
10
|
+
|
|
11
|
+
## Parameters
|
|
12
|
+
|
|
13
|
+
- `settlement_account: party`
|
|
14
|
+
- `source_capture_refs: text`
|
|
15
|
+
- `fee_entries: text`
|
|
16
|
+
- `external_reversal_offsets: text`
|
|
17
|
+
- `close_trigger: date`
|
|
18
|
+
- `payout_destination: party`
|
|
19
|
+
- `negative_position: text`
|
|
20
|
+
- `payout_acknowledgement: condition`
|
|
21
|
+
- `payout_beneficiary_ref: text`
|
|
22
|
+
|
|
23
|
+
## Decision ports
|
|
24
|
+
|
|
25
|
+
- `payout_acknowledgement`
|
|
26
|
+
|
|
27
|
+
## Actions and clauses
|
|
28
|
+
|
|
29
|
+
| Action | Clauses lowered |
|
|
30
|
+
| ------------------------ | ------------------------------------------------------------------------------------------------- |
|
|
31
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
32
|
+
| `close` | `due`, `moves`, `steps`, `summary` |
|
|
33
|
+
| `calculate` | `agent description`, `computes signed_sum`, `moves`, `steps`, `summary` |
|
|
34
|
+
| `approve` | `agent description`, `moves`, `steps`, `summary` |
|
|
35
|
+
| `instruct` | `agent description`, `moves`, `payout`, `steps`, `summary` |
|
|
36
|
+
| `payout_acknowledgement` | `agent description`, `capture input`, `description`, `input`, `moves`, `port`, `steps`, `summary` |
|
|
37
|
+
| `reconcile` | `due`, `moves`, `reconcile`, `steps`, `summary` |
|
|
38
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
39
|
+
| `accrue` | `agent description`, `moves`, `steps`, `summary` |
|
|
40
|
+
| `create` | `agent description`, `moves`, `steps`, `summary` |
|
|
41
|
+
| `adjust` | `agent description`, `moves`, `steps`, `summary` |
|
|
42
|
+
| `correct` | `agent description`, `moves`, `steps`, `summary` |
|