@hyperscale0/hsx 2.4.1 → 3.0.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.
Files changed (249) hide show
  1. package/CHANGELOG.md +2 -408
  2. package/README.md +3 -92
  3. package/dist/src/ast.d.ts +99 -310
  4. package/dist/src/ast.d.ts.map +1 -1
  5. package/dist/src/ast.js +16 -69
  6. package/dist/src/ast.js.map +1 -1
  7. package/dist/src/cli.d.ts +6 -19
  8. package/dist/src/cli.d.ts.map +1 -1
  9. package/dist/src/cli.js +76 -315
  10. package/dist/src/cli.js.map +1 -1
  11. package/dist/src/compile.d.ts +23 -73
  12. package/dist/src/compile.d.ts.map +1 -1
  13. package/dist/src/compile.js +1113 -148
  14. package/dist/src/compile.js.map +1 -1
  15. package/dist/src/cost.d.ts +8 -77
  16. package/dist/src/cost.d.ts.map +1 -1
  17. package/dist/src/cost.js +13 -422
  18. package/dist/src/cost.js.map +1 -1
  19. package/dist/src/format.d.ts +8 -7
  20. package/dist/src/format.d.ts.map +1 -1
  21. package/dist/src/format.js +9 -175
  22. package/dist/src/format.js.map +1 -1
  23. package/dist/src/headers.d.ts +35 -0
  24. package/dist/src/headers.d.ts.map +1 -0
  25. package/dist/src/headers.js +108 -0
  26. package/dist/src/headers.js.map +1 -0
  27. package/dist/src/index.d.ts +6 -12
  28. package/dist/src/index.d.ts.map +1 -1
  29. package/dist/src/index.js +4 -9
  30. package/dist/src/index.js.map +1 -1
  31. package/dist/src/lex.d.ts +8 -28
  32. package/dist/src/lex.d.ts.map +1 -1
  33. package/dist/src/lex.js +88 -146
  34. package/dist/src/lex.js.map +1 -1
  35. package/dist/src/parse.d.ts +4 -17
  36. package/dist/src/parse.d.ts.map +1 -1
  37. package/dist/src/parse.js +402 -1040
  38. package/dist/src/parse.js.map +1 -1
  39. package/dist/src/std-bundle.d.ts.map +1 -1
  40. package/dist/src/std-bundle.js +12 -20
  41. package/dist/src/std-bundle.js.map +1 -1
  42. package/dist/src/std-library.d.ts +1 -1
  43. package/dist/src/std-library.d.ts.map +1 -1
  44. package/dist/src/std-library.js +1 -5
  45. package/dist/src/std-library.js.map +1 -1
  46. package/dist/src/tunables.d.ts +7 -0
  47. package/dist/src/tunables.d.ts.map +1 -0
  48. package/dist/src/tunables.js +26 -0
  49. package/dist/src/tunables.js.map +1 -0
  50. package/dist/src/version.d.ts +2 -4
  51. package/dist/src/version.d.ts.map +1 -1
  52. package/dist/src/version.js +2 -4
  53. package/dist/src/version.js.map +1 -1
  54. package/docs/README.md +179 -41
  55. package/docs/headers.md +44 -0
  56. package/examples/cost-table.json +99 -751
  57. package/examples/library.hsx +59 -0
  58. package/package.json +9 -17
  59. package/src/ast.ts +82 -441
  60. package/src/cli.ts +77 -362
  61. package/src/compile.ts +1535 -247
  62. package/src/cost.ts +28 -671
  63. package/src/format.ts +12 -256
  64. package/src/headers.ts +126 -0
  65. package/src/index.ts +7 -39
  66. package/src/lex.ts +99 -195
  67. package/src/parse.ts +403 -1209
  68. package/src/std-bundle.ts +12 -20
  69. package/src/std-library.ts +2 -7
  70. package/src/tunables.ts +31 -0
  71. package/src/version.ts +2 -5
  72. package/std/approvals.hsx +17 -0
  73. package/std/cards.hsx +63 -0
  74. package/std/collections.hsx +31 -0
  75. package/std/escrow.hsx +43 -0
  76. package/std/financing.hsx +372 -0
  77. package/std/insurance.hsx +59 -0
  78. package/std/lending.hsx +115 -0
  79. package/std/marketplace.hsx +24 -0
  80. package/std/money.hsx +195 -0
  81. package/std/savings.hsx +44 -0
  82. package/std/travel.hsx +98 -0
  83. package/std/wallet.hsx +41 -0
  84. package/dist/src/diagnostics.d.ts +0 -13
  85. package/dist/src/diagnostics.d.ts.map +0 -1
  86. package/dist/src/diagnostics.js +0 -587
  87. package/dist/src/diagnostics.js.map +0 -1
  88. package/dist/src/emit.d.ts +0 -51
  89. package/dist/src/emit.d.ts.map +0 -1
  90. package/dist/src/emit.js +0 -192
  91. package/dist/src/emit.js.map +0 -1
  92. package/dist/src/entry-overrides.d.ts +0 -58
  93. package/dist/src/entry-overrides.d.ts.map +0 -1
  94. package/dist/src/entry-overrides.js +0 -284
  95. package/dist/src/entry-overrides.js.map +0 -1
  96. package/dist/src/ir.d.ts +0 -73
  97. package/dist/src/ir.d.ts.map +0 -1
  98. package/dist/src/ir.js +0 -15
  99. package/dist/src/ir.js.map +0 -1
  100. package/dist/src/limits.d.ts +0 -23
  101. package/dist/src/limits.d.ts.map +0 -1
  102. package/dist/src/limits.js +0 -23
  103. package/dist/src/limits.js.map +0 -1
  104. package/dist/src/lsp/server.d.ts +0 -32
  105. package/dist/src/lsp/server.d.ts.map +0 -1
  106. package/dist/src/lsp/server.js +0 -391
  107. package/dist/src/lsp/server.js.map +0 -1
  108. package/dist/src/modules.d.ts +0 -38
  109. package/dist/src/modules.d.ts.map +0 -1
  110. package/dist/src/modules.js +0 -372
  111. package/dist/src/modules.js.map +0 -1
  112. package/dist/src/typecheck.d.ts +0 -8
  113. package/dist/src/typecheck.d.ts.map +0 -1
  114. package/dist/src/typecheck.js +0 -4160
  115. package/dist/src/typecheck.js.map +0 -1
  116. package/docs/guide/01-first-program.md +0 -24
  117. package/docs/guide/02-money.md +0 -25
  118. package/docs/guide/03-instruments.md +0 -93
  119. package/docs/guide/04-lifecycles.md +0 -40
  120. package/docs/guide/05-fees-and-splits.md +0 -45
  121. package/docs/guide/06-schedules.md +0 -26
  122. package/docs/guide/07-composition.md +0 -52
  123. package/docs/guide/08-writing-a-module.md +0 -85
  124. package/docs/guide/09-cost.md +0 -24
  125. package/docs/guide/10-diagnostics.md +0 -27
  126. package/docs/llms-full.txt +0 -3684
  127. package/docs/llms.txt +0 -44
  128. package/docs/piece-plans.md +0 -120
  129. package/docs/playground.md +0 -55
  130. package/docs/reference/cli.md +0 -36
  131. package/docs/reference/diagnostics.md +0 -901
  132. package/docs/reference/grammar.md +0 -38
  133. package/docs/reference/std/advance.md +0 -112
  134. package/docs/reference/std/cancellable_booking.md +0 -159
  135. package/docs/reference/std/captured_payment.md +0 -115
  136. package/docs/reference/std/conditional_disbursement.md +0 -101
  137. package/docs/reference/std/credit_facility.md +0 -108
  138. package/docs/reference/std/held_payment.md +0 -173
  139. package/docs/reference/std/instant_transfer.md +0 -97
  140. package/docs/reference/std/metered.md +0 -89
  141. package/docs/reference/std/pooled_split.md +0 -95
  142. package/docs/reference/std/premium_forward.md +0 -119
  143. package/docs/reference/std/reconciled_payout.md +0 -103
  144. package/docs/reference/std/rotating_pool.md +0 -130
  145. package/docs/reference/std/scheduled.md +0 -136
  146. package/docs/reference/std/security_deposit.md +0 -138
  147. package/docs/reference/std/settlement_batch.md +0 -123
  148. package/docs/reference/std/swap.md +0 -133
  149. package/docs/reference/std/threshold_pool.md +0 -138
  150. package/docs/reference/std/weighted_distribution.md +0 -135
  151. package/docs/reference/types.md +0 -61
  152. package/docs/reference/udl-output.md +0 -13
  153. package/examples/01-first-program/README.md +0 -45
  154. package/examples/01-first-program/tip-jar.hsx +0 -17
  155. package/examples/02-imports-and-modules/README.md +0 -96
  156. package/examples/02-imports-and-modules/photo-booth.hsx +0 -37
  157. package/examples/03-diagnostics/README.md +0 -68
  158. package/examples/03-diagnostics/corner-shop-fixed.hsx +0 -22
  159. package/examples/03-diagnostics/corner-shop.hsx +0 -19
  160. package/examples/04-complete-product/README.md +0 -84
  161. package/examples/04-complete-product/study-hall.hsx +0 -67
  162. package/examples/05-authored-instrument/README.md +0 -5
  163. package/examples/05-authored-instrument/payment.hsx +0 -37
  164. package/examples/05-watch-club/README.md +0 -6
  165. package/examples/05-watch-club/watch-club.hsx +0 -123
  166. package/examples/README.md +0 -48
  167. package/examples/advance/README.md +0 -3
  168. package/examples/advance/advance.hsx +0 -13
  169. package/examples/advance/advance.udl +0 -367
  170. package/examples/cancellable_booking/README.md +0 -3
  171. package/examples/cancellable_booking/cancellable_booking.hsx +0 -14
  172. package/examples/cancellable_booking/cancellable_booking.udl +0 -413
  173. package/examples/captured_payment/README.md +0 -3
  174. package/examples/captured_payment/captured_payment.hsx +0 -17
  175. package/examples/captured_payment/captured_payment.udl +0 -686
  176. package/examples/conditional_disbursement/README.md +0 -3
  177. package/examples/conditional_disbursement/conditional_disbursement.hsx +0 -15
  178. package/examples/conditional_disbursement/conditional_disbursement.udl +0 -418
  179. package/examples/credit_facility/README.md +0 -3
  180. package/examples/credit_facility/credit_facility.hsx +0 -24
  181. package/examples/credit_facility/credit_facility.udl +0 -1396
  182. package/examples/held_payment/README.md +0 -3
  183. package/examples/held_payment/held_payment.hsx +0 -13
  184. package/examples/held_payment/held_payment.udl +0 -569
  185. package/examples/instant_transfer/README.md +0 -3
  186. package/examples/instant_transfer/instant_transfer.hsx +0 -16
  187. package/examples/instant_transfer/instant_transfer.udl +0 -376
  188. package/examples/metered/README.md +0 -3
  189. package/examples/metered/metered.hsx +0 -13
  190. package/examples/metered/metered.udl +0 -253
  191. package/examples/pooled_split/README.md +0 -3
  192. package/examples/pooled_split/pooled_split.hsx +0 -15
  193. package/examples/pooled_split/pooled_split.udl +0 -432
  194. package/examples/premium_forward/README.md +0 -3
  195. package/examples/premium_forward/premium_forward.hsx +0 -19
  196. package/examples/premium_forward/premium_forward.udl +0 -604
  197. package/examples/reconciled_payout/README.md +0 -3
  198. package/examples/reconciled_payout/reconciled_payout.hsx +0 -13
  199. package/examples/reconciled_payout/reconciled_payout.udl +0 -312
  200. package/examples/rotating_pool/README.md +0 -3
  201. package/examples/rotating_pool/rotating_pool.hsx +0 -18
  202. package/examples/rotating_pool/rotating_pool.udl +0 -4370
  203. package/examples/scheduled/README.md +0 -3
  204. package/examples/scheduled/scheduled.hsx +0 -12
  205. package/examples/scheduled/scheduled.udl +0 -355
  206. package/examples/security_deposit/README.md +0 -3
  207. package/examples/security_deposit/security_deposit.hsx +0 -21
  208. package/examples/security_deposit/security_deposit.udl +0 -320
  209. package/examples/settlement_batch/README.md +0 -3
  210. package/examples/settlement_batch/settlement_batch.hsx +0 -19
  211. package/examples/settlement_batch/settlement_batch.udl +0 -757
  212. package/examples/swap/README.md +0 -3
  213. package/examples/swap/swap.hsx +0 -19
  214. package/examples/swap/swap.udl +0 -892
  215. package/examples/threshold_pool/README.md +0 -3
  216. package/examples/threshold_pool/threshold_pool.hsx +0 -16
  217. package/examples/threshold_pool/threshold_pool.udl +0 -680
  218. package/examples/weighted_distribution/README.md +0 -3
  219. package/examples/weighted_distribution/weighted_distribution.hsx +0 -20
  220. package/examples/weighted_distribution/weighted_distribution.udl +0 -348
  221. package/skills/hsx/SKILL.md +0 -449
  222. package/src/diagnostics.ts +0 -620
  223. package/src/emit.ts +0 -282
  224. package/src/entry-overrides.ts +0 -428
  225. package/src/ir.ts +0 -113
  226. package/src/limits.ts +0 -22
  227. package/src/lsp/server.ts +0 -460
  228. package/src/modules.ts +0 -452
  229. package/src/typecheck.ts +0 -5515
  230. package/std/SEMANTICS.md +0 -44
  231. package/std/money_flows/advance.hsx +0 -235
  232. package/std/money_flows/cancellable_booking.hsx +0 -402
  233. package/std/money_flows/captured_payment.hsx +0 -220
  234. package/std/money_flows/conditional_disbursement.hsx +0 -226
  235. package/std/money_flows/credit_facility.hsx +0 -214
  236. package/std/money_flows/held_payment.hsx +0 -812
  237. package/std/money_flows/index.hsx +0 -4
  238. package/std/money_flows/instant_transfer.hsx +0 -231
  239. package/std/money_flows/metered.hsx +0 -104
  240. package/std/money_flows/pooled_split.hsx +0 -109
  241. package/std/money_flows/premium_forward.hsx +0 -307
  242. package/std/money_flows/reconciled_payout.hsx +0 -119
  243. package/std/money_flows/rotating_pool.hsx +0 -305
  244. package/std/money_flows/scheduled.hsx +0 -599
  245. package/std/money_flows/security_deposit.hsx +0 -248
  246. package/std/money_flows/settlement_batch.hsx +0 -173
  247. package/std/money_flows/swap.hsx +0 -1192
  248. package/std/money_flows/threshold_pool.hsx +0 -307
  249. package/std/money_flows/weighted_distribution.hsx +0 -237
@@ -1,226 +0,0 @@
1
- module std.money_flows.conditional_disbursement
2
-
3
- // Capped disbursement from a source party to a destination party gated on stored external decision evidence.
4
- //
5
- // ### Purpose
6
- // `conditional_disbursement` manages evidence-contingent payouts subject to a cumulative cap.
7
- // It fits insurance claim settlements, grant tranches, subsidy distributions, and escrow milestones
8
- // where each approved payment requires explicit external evidence and the total paid must not exceed `cap`.
9
- //
10
- // ### Selection guidance
11
- // - vs `advance`: `conditional_disbursement` disburses non-repayable funds against external evidence
12
- // up to a declared cap. `advance` pays money up front with the expectation of repayment through carved
13
- // hold releases or scheduled installments.
14
- // - vs `instant_transfer`: `instant_transfer` moves money immediately with no evidence gate or cap.
15
- // `conditional_disbursement` requires an external decision port and evidence reference before any child amount moves.
16
- //
17
- // ### Parameters
18
- // - `source`: The funding party providing the money.
19
- // - `destination`: The beneficiary party receiving approved disbursements.
20
- // - `cap`: Maximum total amount that can be disbursed across all child approvals in minor units of currency `C`.
21
- // - `amount`: Binding name for child approval amount values.
22
- // - `decision`: Port conditioning approval, requiring evidence reference.
23
- //
24
- // ### Decision ports
25
- // - `decision`: External port providing decision evidence required to approve child disbursement amounts.
26
- //
27
- // ### Example
28
- // ```hsx
29
- // program conditional_disbursement_example "Conditional disbursement example"
30
- // import { conditional_disbursement } from "std/money_flows"
31
- // party source: business
32
- // party claimant: person
33
- // settlement claim_payment = conditional_disbursement {
34
- // source: source
35
- // destination: claimant
36
- // cap: policyLimit: money(SAR)
37
- // amount: approvedAmount: money(SAR)
38
- // decision: port approve_claim
39
- // }
40
- // port approve_claim {
41
- // allowed: [source]
42
- // shape: { evidenceReference: text }
43
- // }
44
- // ```
45
- export instrument conditional_disbursement<C>(
46
- source: party,
47
- destination: party,
48
- cap: money<C>,
49
- amount: money<C>,
50
- decision: condition,
51
- ) {
52
- let(child_id): concat(instrument, "_approved_amount");
53
- let(child_amount): "amount";
54
- let(parent_field): camel(concat(instrument, "_id"));
55
- let(source_field): camel(concat(source, "_account_id"));
56
- let(destination_field): camel(concat(destination, "_account_id"));
57
- let(currency_path): "fields.currency";
58
- let(source_path): concat("fields.", source_field);
59
- let(destination_path): concat("fields.", destination_field);
60
-
61
- title: sentence(instrument);
62
- agent_description: "Reach for conditional disbursement when the {source} pays the {destination} only against stored external evidence and the payouts must stay under {cap}. Each approved amount is its own child row. Pick instant transfer when no evidence gates the payment.";
63
- summary: "Capped disbursement to {destination}";
64
- description: "Capped disbursement controlled by stored external evidence";
65
- id_prefix: prefix(instrument);
66
- fields {
67
- cap {
68
- type: money<C>;
69
- description: "Disbursement cap in {C} minor units";
70
- }
71
- }
72
- required: [destination_field, source_field, currency, cap];
73
- lifecycle {
74
- states submitted denied;
75
- initial submitted;
76
- on deny: submitted -> denied;
77
- }
78
- parties {
79
- beneficiary: destination;
80
- payer: source;
81
- }
82
- action create {
83
- agent_description: "Open the capped disbursement before any amount is approved. The caller supplies the {cap}, the currency, and the {source} and {destination} accounts. No money moves and nothing is approved yet.";
84
- summary: "Submit the capped disbursement";
85
- steps: [];
86
- moves: [];
87
- }
88
- action deny {
89
- agent_description: "Refuse the whole disbursement without moving money. Every child amount under it must still be unapproved, so call this before any approval lands. The caller passes evidenceReference, which stays in the receipt. Denial is final.";
90
- summary: "Record a denial without moving money";
91
- when(decision_fields) {
92
- input {
93
- type: object;
94
- additional_properties: false;
95
- properties {
96
- for input_name in keys(decision_fields) {
97
- [input_name]: get(decision_fields, input_name);
98
- }
99
- }
100
- required: keys(decision_fields);
101
- }
102
- capture_input: {
103
- for item in keys(decision_fields) { [item]: item; }
104
- };
105
- }
106
- port { allowed_parties: decision_allowed; };
107
- requires aggregate: {
108
- check: { kind: all_in; };
109
- instrument_id: child_id;
110
- over: children;
111
- ref_field: parent_field;
112
- statuses: [created];
113
- };
114
- steps: [];
115
- moves: [];
116
- }
117
-
118
- instruments {
119
- instrument {
120
- id: child_id;
121
- generatedPrefix: true;
122
- title: concat(sentence(instrument), " Approved Amount");
123
- agent_description: concat("Reach for this child row to hold one evidence-gated amount under a ", words(instrument), ". The parent carries the {cap}, this row carries one approved amount and pays it once.");
124
- summary: "Approved amount under {instrument}";
125
- description: "One evidence-gated amount under {instrument}";
126
- fields {
127
- [child_amount] {
128
- type: money<C>;
129
- description: "Approved amount under the parent cap";
130
- }
131
- currency {
132
- type: text;
133
- description: "ISO 4217 currency code";
134
- max_length: 3;
135
- min_length: 3;
136
- pattern: "^[A-Z]{3}$";
137
- }
138
- [parent_field] {
139
- type: ref<instrument>;
140
- description: "The exact {instrument}";
141
- pattern: concat("^", prefix(instrument), "_(sandbox|live)_[a-z0-9]{8,64}$");
142
- }
143
- }
144
- required: [destination_field, source_field, child_amount, currency, parent_field];
145
- lifecycle {
146
- states created approved paid;
147
- initial created;
148
- on approve: created -> approved;
149
- on pay: approved -> paid;
150
- }
151
- parties {
152
- beneficiary: destination;
153
- payer: source;
154
- }
155
- action create {
156
- agent_description: concat("Create one candidate amount under the parent ", words(instrument), ". The parent must still be submitted and the currency and both accounts must match it. No money moves and the amount is not approved yet.");
157
- summary: "Create one candidate amount under the parent";
158
- requires refs: {
159
- bind: {
160
- currency: currency_path;
161
- [destination_field]: destination_path;
162
- [source_field]: source_path;
163
- };
164
- field: parent_field;
165
- statuses: [submitted];
166
- unique: true;
167
- };
168
- steps: [];
169
- moves: [];
170
- }
171
- action approve {
172
- agent_description: "Store one externally approved amount under the parent cap. The row must be created, the parent still submitted, and the already approved and paid amounts plus this one must stay within {cap}. The caller passes evidenceReference. No money moves yet.";
173
- summary: "Store one externally approved amount under the cap";
174
- input: {
175
- additional_properties: false;
176
- properties: {
177
- evidence_reference: {
178
- description: "Required decision reference retained in the operation receipt";
179
- max_length: 180;
180
- min_length: 1;
181
- type: "string";
182
- };
183
- };
184
- required: [evidenceReference];
185
- type: "object";
186
- };
187
- capture_input: { decision_evidence_reference: evidenceReference; };
188
- port: { allowed_parties: decision_allowed; };
189
- requires exposure: {
190
- amount_field: child_amount;
191
- anchor_field: parent_field;
192
- cap_field: cap;
193
- cap_on_anchor: true;
194
- child_instrument_id: child_id;
195
- statuses: [approved, paid];
196
- };
197
- requires refs: {
198
- field: parent_field;
199
- match: {
200
- [currency_path]: currency_path;
201
- [destination_path]: destination_path;
202
- [source_path]: source_path;
203
- };
204
- statuses: [submitted];
205
- };
206
- steps: [];
207
- moves: [];
208
- }
209
- action pay {
210
- agent_description: "Pay the stored approved amount to the {destination} once. The row must be approved and the parent still submitted. The transfer posts straight out of the {source} and does not unwind.";
211
- summary: "Pay the stored approved amount once";
212
- requires refs: {
213
- field: parent_field;
214
- match: {
215
- [currency_path]: currency_path;
216
- [destination_path]: destination_path;
217
- [source_path]: source_path;
218
- };
219
- statuses: [submitted];
220
- };
221
- moves: [{ amount: child_amount; from: payer; to: beneficiary; key: payout; operation: create; }];
222
- steps: [];
223
- }
224
- }
225
- }
226
- }
@@ -1,214 +0,0 @@
1
- module std.money_flows.credit_facility
2
-
3
- // Revolving credit line providing reusable borrowing capacity up to a limit backed by scheduled obligations.
4
- //
5
- // ### Purpose
6
- // `credit_facility` manages revolving commercial credit, inventory financing, and overdraft facilities.
7
- // A borrower can draw funds multiple times up to `limit` into `draw_destination`. Each draw creates a child
8
- // record linked to a scheduled `obligation`. Repayments restore available borrowing capacity until `expires_at`.
9
- //
10
- // ### Selection guidance
11
- // - vs `advance`: `credit_facility` provides revolving, reusable credit lines where multiple draws can occur
12
- // and repayments restore capacity. `advance` is a single upfront lump-sum disbursement with a fixed repayment plan.
13
- // - vs `scheduled`: `scheduled` defines repayment installments or recurring transfers. `credit_facility` delegates
14
- // draw repayments to a `scheduled` obligation while tracking total facility utilization and limit compliance.
15
- //
16
- // ### Parameters
17
- // - `lender`: The financing institution or party providing the credit capacity.
18
- // - `borrower`: The borrowing party authorized to draw against the facility limit.
19
- // - `draw_destination`: Account or party receiving disbursed draw proceeds.
20
- // - `limit`: Total revolving borrowing limit in minor units of currency `C`.
21
- // - `expires_at`: Expiration date after which new draws cannot be opened.
22
- // - `obligation`: Reference to a scheduled obligation instrument handling draw repayments.
23
- //
24
- // ### Decision ports
25
- // None on the facility itself. Mandates and decision ports are declared on the linked `obligation` instrument.
26
- //
27
- // ### Example
28
- // ```hsx
29
- // program credit_facility_example "Credit facility example"
30
- // import { credit_facility, scheduled } from "std/money_flows"
31
- // party lender: business
32
- // party borrower: business
33
- // party draw_destination: business
34
- // party repayment_source: business
35
- // settlement repayment = scheduled {
36
- // mode: obligation
37
- // payer: repayment_source
38
- // payee: lender
39
- // debtor: borrower
40
- // amount: principal: money(SAR)
41
- // count: 2
42
- // every: P30D
43
- // first_due: firstDueAt
44
- // }
45
- // settlement facility = credit_facility {
46
- // lender: lender
47
- // borrower: borrower
48
- // draw_destination: draw_destination
49
- // limit: facilityLimit: money(SAR)
50
- // expires_at: expiresAt
51
- // obligation: repayment.obligation
52
- // }
53
- // ```
54
- export instrument credit_facility<C>(
55
- lender: party,
56
- borrower: party,
57
- draw_destination: party,
58
- limit: money<C>,
59
- expires_at: date,
60
- obligation: ref,
61
- ) {
62
- let(draw_id): concat(instrument, "_draw");
63
- let(parent_field): camel(concat(instrument, "_id"));
64
- let(borrower_field): camel(concat(borrower, "_account_id"));
65
- let(lender_field): camel(concat(lender, "_account_id"));
66
- let(destination_field): camel(concat(draw_destination, "_account_id"));
67
- let(currency_path): "fields.currency";
68
- let(lender_path): concat("fields.", lender_field);
69
- let(destination_path): concat("fields.", destination_field);
70
- let(reference_filter): "x-hyperscale-reference-filter";
71
- let(obligation_name): owner(obligation);
72
- let(obligation_field): camel(concat(obligation_name, "_id"));
73
-
74
- title: sentence(instrument);
75
- agent_description: "Reach for credit facility when the {lender} gives the {borrower} reusable capacity up to {limit} and every draw is repaid through its own scheduled obligation. Capacity frees up as each obligation resolves. Pick advance for one up-front payment with no reusable limit.";
76
- summary: "Draw capacity for {borrower}";
77
- description: "Reusable capacity with repayment delegated to one scheduled obligation";
78
- id_prefix: prefix(instrument);
79
- fields {
80
- [borrower_field] {
81
- type: account<C>;
82
- description: "The {borrower} account";
83
- [reference_filter]: {
84
- column: role;
85
- values: [customer_balance];
86
- };
87
- }
88
- limit {
89
- type: money<C>;
90
- description: "Facility limit in {C} minor units";
91
- }
92
- expires_at {
93
- type: date;
94
- description: "Stored draw expiry";
95
- }
96
- }
97
- required: [borrower_field, destination_field, lender_field, currency, limit, expires_at];
98
- lifecycle {
99
- states active frozen closed;
100
- initial active;
101
- on freeze: active -> frozen;
102
- on close: active|frozen -> closed;
103
- }
104
- parties {
105
- beneficiary: draw_destination;
106
- payer: lender;
107
- }
108
- action create {
109
- agent_description: "Open the facility before any draw exists. The caller supplies the {limit}, the currency, the {borrower} and {lender} accounts, the draw destination account, and the stored expiry. No money moves.";
110
- summary: "Open the facility";
111
- steps: [];
112
- moves: [];
113
- }
114
- action freeze {
115
- summary: "Freeze new draws at expiry";
116
- due: { field: expires_at; };
117
- steps: [];
118
- moves: [];
119
- }
120
- action close {
121
- agent_description: "Close the facility for good. Every draw under it must already be resolved, so clear the outstanding obligations first. No money moves and a closed facility never lends again.";
122
- summary: "Close only when every admitted draw resolved";
123
- requires aggregate: {
124
- check: { kind: all_in; };
125
- instrument_id: draw_id;
126
- over: children;
127
- ref_field: parent_field;
128
- statuses: [resolved];
129
- };
130
- steps: [];
131
- moves: [];
132
- }
133
-
134
- instruments {
135
- instrument {
136
- id: draw_id;
137
- generatedPrefix: true;
138
- title: concat(sentence(instrument), " Draw");
139
- agent_description: concat("Reach for this child row to take one draw against a ", words(instrument), ". The parent carries the {limit}, this row carries one drawn amount and the single obligation that repays it.");
140
- summary: "Draw from {instrument}";
141
- description: "One capacity-capped draw linked to obligation";
142
- fields {
143
- amount {
144
- type: money<C>;
145
- description: "One draw amount";
146
- }
147
- currency {
148
- type: text;
149
- description: "ISO 4217 currency code";
150
- max_length: 3;
151
- min_length: 3;
152
- pattern: "^[A-Z]{3}$";
153
- }
154
- [parent_field] {
155
- type: ref<instrument>;
156
- description: "The exact {instrument}";
157
- pattern: concat("^", prefix(instrument), "_(sandbox|live)_[a-z0-9]{8,64}$");
158
- }
159
- [obligation_field] {
160
- type: ref<obligation_name>;
161
- description: "The sole repayment obligation";
162
- pattern: concat("^", prefix(obligation_name), "_(sandbox|live)_[a-z0-9]{8,64}$");
163
- }
164
- }
165
- required: [destination_field, lender_field, amount, currency, parent_field, obligation_field];
166
- lifecycle {
167
- states drawn resolved;
168
- initial drawn;
169
- on resolve: drawn -> resolved;
170
- }
171
- parties {
172
- beneficiary: draw_destination;
173
- payer: lender;
174
- }
175
- action create {
176
- agent_description: "Draw one amount out of the facility to the draw destination account. The facility must be active, the linked obligation active and bound to no other draw, and the drawn amounts plus this one must stay within {limit}. The money leaves the {lender} straight away.";
177
- summary: "Create one draw under the locked facility capacity";
178
- requires exposure: {
179
- amount_field: amount;
180
- anchor_field: parent_field;
181
- cap_field: limit;
182
- cap_on_anchor: true;
183
- child_instrument_id: draw_id;
184
- statuses: [drawn];
185
- };
186
- requires refs: [{
187
- bind: {
188
- currency: currency_path;
189
- [destination_field]: destination_path;
190
- [lender_field]: lender_path;
191
- };
192
- field: parent_field;
193
- statuses: [active];
194
- }, {
195
- field: obligation_field;
196
- statuses: [active];
197
- unique: true;
198
- }];
199
- moves: [{ amount: amount; from: payer; to: beneficiary; key: draw; operation: create; }];
200
- steps: [];
201
- }
202
- action resolve {
203
- agent_description: "Free the drawn capacity back to the facility. The linked obligation must already be repaid or written off. No money moves here, the obligation did the repaying.";
204
- summary: "Release revolving capacity only after the linked obligation resolves";
205
- requires refs: {
206
- field: obligation_field;
207
- statuses: [repaid, written_off];
208
- };
209
- steps: [];
210
- moves: [];
211
- }
212
- }
213
- }
214
- }