@hyperscale0/hsx 1.0.0-beta.1 → 1.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.
- package/CHANGELOG.md +58 -9
- package/LICENSING.md +3 -3
- package/README.md +39 -149
- package/TRADEMARKS.md +4 -4
- package/bin/hsx.ts +2 -0
- package/dist/bin/hsx.js +2 -0
- package/dist/bin/hsx.js.map +1 -1
- package/dist/src/ast.d.ts +135 -10
- package/dist/src/ast.d.ts.map +1 -1
- package/dist/src/ast.js +24 -0
- package/dist/src/ast.js.map +1 -1
- package/dist/src/cli.d.ts +4 -1
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +172 -16
- package/dist/src/cli.js.map +1 -1
- package/dist/src/compile.d.ts +42 -7
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +82 -16
- 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 +34 -0
- package/dist/src/emit.d.ts.map +1 -0
- package/dist/src/emit.js +137 -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 +11 -4
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +10 -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/lsp/server.d.ts +32 -0
- package/dist/src/lsp/server.d.ts.map +1 -0
- package/dist/src/lsp/server.js +391 -0
- package/dist/src/lsp/server.js.map +1 -0
- package/dist/src/modules.d.ts +38 -0
- package/dist/src/modules.d.ts.map +1 -0
- package/dist/src/modules.js +368 -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/std-bundle.d.ts +2 -0
- package/dist/src/std-bundle.d.ts.map +1 -0
- package/dist/src/std-bundle.js +88 -0
- package/dist/src/std-bundle.js.map +1 -0
- package/dist/src/std-library.d.ts +5 -0
- package/dist/src/std-library.d.ts.map +1 -0
- package/dist/src/std-library.js +9 -0
- package/dist/src/std-library.js.map +1 -0
- 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 +26 -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 +1739 -0
- package/docs/llms.txt +45 -0
- package/docs/playground.md +54 -0
- package/docs/reference/cli.md +35 -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 +13 -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 +96 -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 +84 -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 +27 -6
- package/skills/hsx/SKILL.md +483 -0
- package/src/ast.ts +193 -9
- package/src/cli.ts +191 -20
- package/src/compile.ts +160 -23
- package/src/cost.ts +579 -0
- package/src/diagnostics.ts +442 -0
- package/src/emit.ts +201 -0
- package/src/entry-overrides.ts +263 -48
- package/src/format.ts +261 -0
- package/src/index.ts +34 -4
- package/src/ir.ts +99 -0
- package/src/lex.ts +59 -4
- package/src/limits.ts +2 -3
- package/src/lsp/server.ts +460 -0
- package/src/modules.ts +446 -0
- package/src/parse.ts +655 -21
- package/src/std-bundle.ts +91 -0
- package/src/std-library.ts +12 -0
- 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,185 @@
|
|
|
1
|
+
module std.settlements.conditional_disbursement
|
|
2
|
+
|
|
3
|
+
export instrument conditional_disbursement<C>(
|
|
4
|
+
source: party,
|
|
5
|
+
destination: party,
|
|
6
|
+
cap: money<C>,
|
|
7
|
+
amount: money<C>,
|
|
8
|
+
decision: condition,
|
|
9
|
+
reopen_policy: text,
|
|
10
|
+
recovery_policy: text,
|
|
11
|
+
) {
|
|
12
|
+
let(child_id): concat(instrument, "_approved_amount");
|
|
13
|
+
let(child_amount): "amount";
|
|
14
|
+
let(parent_field): camel(concat(instrument, "_id"));
|
|
15
|
+
let(source_field): camel(concat(source, "_account_id"));
|
|
16
|
+
let(destination_field): camel(concat(destination, "_account_id"));
|
|
17
|
+
let(currency_path): "fields.currency";
|
|
18
|
+
let(source_path): concat("fields.", source_field);
|
|
19
|
+
let(destination_path): concat("fields.", destination_field);
|
|
20
|
+
|
|
21
|
+
title: sentence(instrument);
|
|
22
|
+
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.";
|
|
23
|
+
summary: "Capped disbursement to {destination}";
|
|
24
|
+
description: "Capped disbursement controlled by stored external evidence";
|
|
25
|
+
id_prefix: prefix(instrument);
|
|
26
|
+
fields {
|
|
27
|
+
cap {
|
|
28
|
+
type: money<C>;
|
|
29
|
+
description: "Disbursement cap in {C} minor units";
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
required: [destination_field, source_field, currency, cap];
|
|
33
|
+
lifecycle {
|
|
34
|
+
states submitted denied;
|
|
35
|
+
initial submitted;
|
|
36
|
+
on deny: submitted -> denied;
|
|
37
|
+
}
|
|
38
|
+
parties {
|
|
39
|
+
beneficiary: destination;
|
|
40
|
+
payer: source;
|
|
41
|
+
}
|
|
42
|
+
action create {
|
|
43
|
+
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.";
|
|
44
|
+
summary: "Submit the capped disbursement";
|
|
45
|
+
steps: [];
|
|
46
|
+
moves: [];
|
|
47
|
+
}
|
|
48
|
+
action deny {
|
|
49
|
+
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.";
|
|
50
|
+
summary: "Record a denial without moving money";
|
|
51
|
+
input: {
|
|
52
|
+
additional_properties: false;
|
|
53
|
+
properties: {
|
|
54
|
+
evidence_reference: {
|
|
55
|
+
description: "Required decision reference retained in the operation receipt";
|
|
56
|
+
max_length: 180;
|
|
57
|
+
min_length: 1;
|
|
58
|
+
type: "string";
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
required: [evidenceReference];
|
|
62
|
+
type: "object";
|
|
63
|
+
};
|
|
64
|
+
capture_input: { decision_evidence_reference: evidenceReference; };
|
|
65
|
+
port: { allowed_parties: [payer]; };
|
|
66
|
+
requires aggregate: {
|
|
67
|
+
check: { kind: all_in; };
|
|
68
|
+
instrument_id: child_id;
|
|
69
|
+
over: children;
|
|
70
|
+
ref_field: parent_field;
|
|
71
|
+
statuses: [created];
|
|
72
|
+
};
|
|
73
|
+
steps: [];
|
|
74
|
+
moves: [];
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
instruments {
|
|
78
|
+
instrument {
|
|
79
|
+
id: child_id;
|
|
80
|
+
generatedPrefix: true;
|
|
81
|
+
title: concat(sentence(instrument), " Approved Amount");
|
|
82
|
+
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.");
|
|
83
|
+
summary: "Approved amount under {instrument}";
|
|
84
|
+
description: "One evidence-gated amount under {instrument}";
|
|
85
|
+
fields {
|
|
86
|
+
[child_amount] {
|
|
87
|
+
type: money<C>;
|
|
88
|
+
description: "Approved amount under the parent cap";
|
|
89
|
+
}
|
|
90
|
+
currency {
|
|
91
|
+
type: text;
|
|
92
|
+
description: "ISO 4217 currency code";
|
|
93
|
+
max_length: 3;
|
|
94
|
+
min_length: 3;
|
|
95
|
+
pattern: "^[A-Z]{3}$";
|
|
96
|
+
}
|
|
97
|
+
[parent_field] {
|
|
98
|
+
type: ref<instrument>;
|
|
99
|
+
description: "The exact {instrument}";
|
|
100
|
+
pattern: concat("^", prefix(instrument), "_(sandbox|live)_[a-z0-9]{8,64}$");
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
required: [destination_field, source_field, child_amount, currency, parent_field];
|
|
104
|
+
lifecycle {
|
|
105
|
+
states created approved paid;
|
|
106
|
+
initial created;
|
|
107
|
+
on approve: created -> approved;
|
|
108
|
+
on pay: approved -> paid;
|
|
109
|
+
}
|
|
110
|
+
parties {
|
|
111
|
+
beneficiary: destination;
|
|
112
|
+
payer: source;
|
|
113
|
+
}
|
|
114
|
+
action create {
|
|
115
|
+
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.");
|
|
116
|
+
summary: "Create one candidate amount under the parent";
|
|
117
|
+
requires refs: {
|
|
118
|
+
bind: {
|
|
119
|
+
currency: currency_path;
|
|
120
|
+
[destination_field]: destination_path;
|
|
121
|
+
[source_field]: source_path;
|
|
122
|
+
};
|
|
123
|
+
field: parent_field;
|
|
124
|
+
statuses: [submitted];
|
|
125
|
+
unique: true;
|
|
126
|
+
};
|
|
127
|
+
steps: [];
|
|
128
|
+
moves: [];
|
|
129
|
+
}
|
|
130
|
+
action approve {
|
|
131
|
+
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.";
|
|
132
|
+
summary: "Store one externally approved amount under the cap";
|
|
133
|
+
input: {
|
|
134
|
+
additional_properties: false;
|
|
135
|
+
properties: {
|
|
136
|
+
evidence_reference: {
|
|
137
|
+
description: "Required decision reference retained in the operation receipt";
|
|
138
|
+
max_length: 180;
|
|
139
|
+
min_length: 1;
|
|
140
|
+
type: "string";
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
required: [evidenceReference];
|
|
144
|
+
type: "object";
|
|
145
|
+
};
|
|
146
|
+
capture_input: { decision_evidence_reference: evidenceReference; };
|
|
147
|
+
port: { allowed_parties: [payer]; };
|
|
148
|
+
requires exposure: {
|
|
149
|
+
amount_field: child_amount;
|
|
150
|
+
anchor_field: parent_field;
|
|
151
|
+
cap_field: cap;
|
|
152
|
+
cap_on_anchor: true;
|
|
153
|
+
child_instrument_id: child_id;
|
|
154
|
+
statuses: [approved, paid];
|
|
155
|
+
};
|
|
156
|
+
requires refs: {
|
|
157
|
+
field: parent_field;
|
|
158
|
+
match: {
|
|
159
|
+
[currency_path]: currency_path;
|
|
160
|
+
[destination_path]: destination_path;
|
|
161
|
+
[source_path]: source_path;
|
|
162
|
+
};
|
|
163
|
+
statuses: [submitted];
|
|
164
|
+
};
|
|
165
|
+
steps: [];
|
|
166
|
+
moves: [];
|
|
167
|
+
}
|
|
168
|
+
action pay {
|
|
169
|
+
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.";
|
|
170
|
+
summary: "Pay the stored approved amount once";
|
|
171
|
+
requires refs: {
|
|
172
|
+
field: parent_field;
|
|
173
|
+
match: {
|
|
174
|
+
[currency_path]: currency_path;
|
|
175
|
+
[destination_path]: destination_path;
|
|
176
|
+
[source_path]: source_path;
|
|
177
|
+
};
|
|
178
|
+
statuses: [submitted];
|
|
179
|
+
};
|
|
180
|
+
moves: [{ amount: child_amount; from: payer; to: beneficiary; key: payout; operation: create; }];
|
|
181
|
+
steps: [];
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
module std.settlements.credit_facility
|
|
2
|
+
|
|
3
|
+
export instrument credit_facility<C>(
|
|
4
|
+
lender: party,
|
|
5
|
+
borrower: party,
|
|
6
|
+
draw_destination: party,
|
|
7
|
+
limit: money<C>,
|
|
8
|
+
expires_at: date,
|
|
9
|
+
obligation: ref,
|
|
10
|
+
availability_policy: text,
|
|
11
|
+
expiry_policy: text,
|
|
12
|
+
close_policy: text,
|
|
13
|
+
) {
|
|
14
|
+
let(draw_id): concat(instrument, "_draw");
|
|
15
|
+
let(parent_field): camel(concat(instrument, "_id"));
|
|
16
|
+
let(borrower_field): camel(concat(borrower, "_account_id"));
|
|
17
|
+
let(lender_field): camel(concat(lender, "_account_id"));
|
|
18
|
+
let(destination_field): camel(concat(draw_destination, "_account_id"));
|
|
19
|
+
let(currency_path): "fields.currency";
|
|
20
|
+
let(lender_path): concat("fields.", lender_field);
|
|
21
|
+
let(destination_path): concat("fields.", destination_field);
|
|
22
|
+
let(reference_filter): "x-hyperscale-reference-filter";
|
|
23
|
+
let(obligation_name): owner(obligation);
|
|
24
|
+
let(obligation_field): camel(concat(obligation_name, "_id"));
|
|
25
|
+
|
|
26
|
+
title: sentence(instrument);
|
|
27
|
+
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.";
|
|
28
|
+
summary: "Draw capacity for {borrower}";
|
|
29
|
+
description: "Reusable capacity with repayment delegated to one scheduled obligation";
|
|
30
|
+
id_prefix: prefix(instrument);
|
|
31
|
+
fields {
|
|
32
|
+
[borrower_field] {
|
|
33
|
+
type: account<C>;
|
|
34
|
+
description: "The {borrower} account";
|
|
35
|
+
pattern: "^acct_(sandbox|live)_[a-z0-9]{8,64}$";
|
|
36
|
+
[reference_filter]: {
|
|
37
|
+
column: role;
|
|
38
|
+
values: [customer_balance];
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
limit {
|
|
42
|
+
type: money<C>;
|
|
43
|
+
description: "Facility limit in {C} minor units";
|
|
44
|
+
}
|
|
45
|
+
expires_at {
|
|
46
|
+
type: date;
|
|
47
|
+
description: "Stored draw expiry";
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
required: [borrower_field, destination_field, lender_field, currency, limit, expires_at];
|
|
51
|
+
lifecycle {
|
|
52
|
+
states active frozen closed;
|
|
53
|
+
initial active;
|
|
54
|
+
on freeze: active -> frozen;
|
|
55
|
+
on close: active|frozen -> closed;
|
|
56
|
+
}
|
|
57
|
+
parties {
|
|
58
|
+
beneficiary: draw_destination;
|
|
59
|
+
payer: lender;
|
|
60
|
+
}
|
|
61
|
+
action create {
|
|
62
|
+
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.";
|
|
63
|
+
summary: "Open the facility";
|
|
64
|
+
steps: [];
|
|
65
|
+
moves: [];
|
|
66
|
+
}
|
|
67
|
+
action freeze {
|
|
68
|
+
summary: "Freeze new draws at expiry";
|
|
69
|
+
due: { field: expires_at; };
|
|
70
|
+
steps: [];
|
|
71
|
+
moves: [];
|
|
72
|
+
}
|
|
73
|
+
action close {
|
|
74
|
+
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.";
|
|
75
|
+
summary: "Close only when every admitted draw resolved";
|
|
76
|
+
requires aggregate: {
|
|
77
|
+
check: { kind: all_in; };
|
|
78
|
+
instrument_id: draw_id;
|
|
79
|
+
over: children;
|
|
80
|
+
ref_field: parent_field;
|
|
81
|
+
statuses: [resolved];
|
|
82
|
+
};
|
|
83
|
+
steps: [];
|
|
84
|
+
moves: [];
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
instruments {
|
|
88
|
+
instrument {
|
|
89
|
+
id: draw_id;
|
|
90
|
+
generatedPrefix: true;
|
|
91
|
+
title: concat(sentence(instrument), " Draw");
|
|
92
|
+
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.");
|
|
93
|
+
summary: "Draw from {instrument}";
|
|
94
|
+
description: "One capacity-capped draw linked to obligation";
|
|
95
|
+
fields {
|
|
96
|
+
amount {
|
|
97
|
+
type: money<C>;
|
|
98
|
+
description: "One draw amount";
|
|
99
|
+
}
|
|
100
|
+
currency {
|
|
101
|
+
type: text;
|
|
102
|
+
description: "ISO 4217 currency code";
|
|
103
|
+
max_length: 3;
|
|
104
|
+
min_length: 3;
|
|
105
|
+
pattern: "^[A-Z]{3}$";
|
|
106
|
+
}
|
|
107
|
+
[parent_field] {
|
|
108
|
+
type: ref<instrument>;
|
|
109
|
+
description: "The exact {instrument}";
|
|
110
|
+
pattern: concat("^", prefix(instrument), "_(sandbox|live)_[a-z0-9]{8,64}$");
|
|
111
|
+
}
|
|
112
|
+
[obligation_field] {
|
|
113
|
+
type: ref<obligation_name>;
|
|
114
|
+
description: "The sole repayment obligation";
|
|
115
|
+
pattern: concat("^", prefix(obligation_name), "_(sandbox|live)_[a-z0-9]{8,64}$");
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
required: [destination_field, lender_field, amount, currency, parent_field, obligation_field];
|
|
119
|
+
lifecycle {
|
|
120
|
+
states drawn resolved;
|
|
121
|
+
initial drawn;
|
|
122
|
+
on resolve: drawn -> resolved;
|
|
123
|
+
}
|
|
124
|
+
parties {
|
|
125
|
+
beneficiary: draw_destination;
|
|
126
|
+
payer: lender;
|
|
127
|
+
}
|
|
128
|
+
action create {
|
|
129
|
+
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.";
|
|
130
|
+
summary: "Create one draw under the locked facility capacity";
|
|
131
|
+
requires exposure: {
|
|
132
|
+
amount_field: amount;
|
|
133
|
+
anchor_field: parent_field;
|
|
134
|
+
cap_field: limit;
|
|
135
|
+
cap_on_anchor: true;
|
|
136
|
+
child_instrument_id: draw_id;
|
|
137
|
+
statuses: [drawn];
|
|
138
|
+
};
|
|
139
|
+
requires refs: [{
|
|
140
|
+
bind: {
|
|
141
|
+
currency: currency_path;
|
|
142
|
+
[destination_field]: destination_path;
|
|
143
|
+
[lender_field]: lender_path;
|
|
144
|
+
};
|
|
145
|
+
field: parent_field;
|
|
146
|
+
statuses: [active];
|
|
147
|
+
}, {
|
|
148
|
+
field: obligation_field;
|
|
149
|
+
statuses: [active];
|
|
150
|
+
unique: true;
|
|
151
|
+
}];
|
|
152
|
+
moves: [{ amount: amount; from: payer; to: beneficiary; key: draw; operation: create; }];
|
|
153
|
+
steps: [];
|
|
154
|
+
}
|
|
155
|
+
action resolve {
|
|
156
|
+
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.";
|
|
157
|
+
summary: "Release revolving capacity only after the linked obligation resolves";
|
|
158
|
+
requires refs: {
|
|
159
|
+
field: obligation_field;
|
|
160
|
+
statuses: [repaid, written_off];
|
|
161
|
+
};
|
|
162
|
+
steps: [];
|
|
163
|
+
moves: [];
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|