@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,12 @@
|
|
|
1
|
+
program scheduled_example "Scheduled example"
|
|
2
|
+
import { scheduled } from "std/settlements"
|
|
3
|
+
party payer: business
|
|
4
|
+
party payee: business
|
|
5
|
+
settlement installments = scheduled {
|
|
6
|
+
payer: payer
|
|
7
|
+
payee: payee
|
|
8
|
+
amount: totalAmount: money(SAR)
|
|
9
|
+
count: 3
|
|
10
|
+
every: P30D
|
|
11
|
+
first_due: firstDueAt
|
|
12
|
+
}
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
{
|
|
2
|
+
"instruments": [
|
|
3
|
+
{
|
|
4
|
+
"actionOrder": [
|
|
5
|
+
"create",
|
|
6
|
+
"pay_installment_1",
|
|
7
|
+
"pay_installment_2",
|
|
8
|
+
"pay_installment_3"
|
|
9
|
+
],
|
|
10
|
+
"actions": {
|
|
11
|
+
"create": {
|
|
12
|
+
"agentDescription": "Create the installment plan. No money moves. The total and its per-installment amounts are fixed here, and each installment collects on its own stored due date from then on.",
|
|
13
|
+
"moves": [],
|
|
14
|
+
"publicAction": "createInstallments",
|
|
15
|
+
"steps": [],
|
|
16
|
+
"summary": "Create a installments plan"
|
|
17
|
+
},
|
|
18
|
+
"pay_installment_1": {
|
|
19
|
+
"due": {
|
|
20
|
+
"field": "firstDueAt"
|
|
21
|
+
},
|
|
22
|
+
"effects": {
|
|
23
|
+
"moves": [
|
|
24
|
+
{
|
|
25
|
+
"signature": "moves.transfer.internal",
|
|
26
|
+
"source": "moves[0]"
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
"schedules": [
|
|
30
|
+
{
|
|
31
|
+
"signature": "schedules.due",
|
|
32
|
+
"source": "due"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"moves": [
|
|
37
|
+
{
|
|
38
|
+
"bind": {
|
|
39
|
+
"amount": {
|
|
40
|
+
"from": "instance",
|
|
41
|
+
"path": "fields.installment1Amount"
|
|
42
|
+
},
|
|
43
|
+
"currency": {
|
|
44
|
+
"from": "instance",
|
|
45
|
+
"path": "fields.currency"
|
|
46
|
+
},
|
|
47
|
+
"destinationAccountId": {
|
|
48
|
+
"from": "instance",
|
|
49
|
+
"path": "fields.payeeAccountId"
|
|
50
|
+
},
|
|
51
|
+
"metadata.instrumentId": {
|
|
52
|
+
"from": "const",
|
|
53
|
+
"value": "installments"
|
|
54
|
+
},
|
|
55
|
+
"metadata.instrumentInstanceId": {
|
|
56
|
+
"from": "instance",
|
|
57
|
+
"path": "instrumentInstanceId"
|
|
58
|
+
},
|
|
59
|
+
"metadata.phase": {
|
|
60
|
+
"from": "const",
|
|
61
|
+
"value": "pay_installment_1"
|
|
62
|
+
},
|
|
63
|
+
"productId": {
|
|
64
|
+
"from": "instance",
|
|
65
|
+
"path": "productId"
|
|
66
|
+
},
|
|
67
|
+
"sourceAccountId": {
|
|
68
|
+
"from": "instance",
|
|
69
|
+
"path": "fields.payerAccountId"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"capture": {
|
|
73
|
+
"payInstallment1TransferTransferId": "transferId"
|
|
74
|
+
},
|
|
75
|
+
"key": "transfer",
|
|
76
|
+
"operation": "internal_transfer.create"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"steps": [],
|
|
80
|
+
"summary": "Collect installment 1 of 3"
|
|
81
|
+
},
|
|
82
|
+
"pay_installment_2": {
|
|
83
|
+
"due": {
|
|
84
|
+
"field": "firstDueAt",
|
|
85
|
+
"offset": "P30D"
|
|
86
|
+
},
|
|
87
|
+
"effects": {
|
|
88
|
+
"moves": [
|
|
89
|
+
{
|
|
90
|
+
"signature": "moves.transfer.internal",
|
|
91
|
+
"source": "moves[0]"
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
"schedules": [
|
|
95
|
+
{
|
|
96
|
+
"signature": "schedules.due",
|
|
97
|
+
"source": "due"
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"moves": [
|
|
102
|
+
{
|
|
103
|
+
"bind": {
|
|
104
|
+
"amount": {
|
|
105
|
+
"from": "instance",
|
|
106
|
+
"path": "fields.installment2Amount"
|
|
107
|
+
},
|
|
108
|
+
"currency": {
|
|
109
|
+
"from": "instance",
|
|
110
|
+
"path": "fields.currency"
|
|
111
|
+
},
|
|
112
|
+
"destinationAccountId": {
|
|
113
|
+
"from": "instance",
|
|
114
|
+
"path": "fields.payeeAccountId"
|
|
115
|
+
},
|
|
116
|
+
"metadata.instrumentId": {
|
|
117
|
+
"from": "const",
|
|
118
|
+
"value": "installments"
|
|
119
|
+
},
|
|
120
|
+
"metadata.instrumentInstanceId": {
|
|
121
|
+
"from": "instance",
|
|
122
|
+
"path": "instrumentInstanceId"
|
|
123
|
+
},
|
|
124
|
+
"metadata.phase": {
|
|
125
|
+
"from": "const",
|
|
126
|
+
"value": "pay_installment_2"
|
|
127
|
+
},
|
|
128
|
+
"productId": {
|
|
129
|
+
"from": "instance",
|
|
130
|
+
"path": "productId"
|
|
131
|
+
},
|
|
132
|
+
"sourceAccountId": {
|
|
133
|
+
"from": "instance",
|
|
134
|
+
"path": "fields.payerAccountId"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
"capture": {
|
|
138
|
+
"payInstallment2TransferTransferId": "transferId"
|
|
139
|
+
},
|
|
140
|
+
"key": "transfer",
|
|
141
|
+
"operation": "internal_transfer.create"
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"steps": [],
|
|
145
|
+
"summary": "Collect installment 2 of 3"
|
|
146
|
+
},
|
|
147
|
+
"pay_installment_3": {
|
|
148
|
+
"due": {
|
|
149
|
+
"field": "firstDueAt",
|
|
150
|
+
"offset": "P60D"
|
|
151
|
+
},
|
|
152
|
+
"effects": {
|
|
153
|
+
"moves": [
|
|
154
|
+
{
|
|
155
|
+
"signature": "moves.transfer.internal",
|
|
156
|
+
"source": "moves[0]"
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"schedules": [
|
|
160
|
+
{
|
|
161
|
+
"signature": "schedules.due",
|
|
162
|
+
"source": "due"
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
},
|
|
166
|
+
"moves": [
|
|
167
|
+
{
|
|
168
|
+
"bind": {
|
|
169
|
+
"amount": {
|
|
170
|
+
"from": "instance",
|
|
171
|
+
"path": "fields.installment3Amount"
|
|
172
|
+
},
|
|
173
|
+
"currency": {
|
|
174
|
+
"from": "instance",
|
|
175
|
+
"path": "fields.currency"
|
|
176
|
+
},
|
|
177
|
+
"destinationAccountId": {
|
|
178
|
+
"from": "instance",
|
|
179
|
+
"path": "fields.payeeAccountId"
|
|
180
|
+
},
|
|
181
|
+
"metadata.instrumentId": {
|
|
182
|
+
"from": "const",
|
|
183
|
+
"value": "installments"
|
|
184
|
+
},
|
|
185
|
+
"metadata.instrumentInstanceId": {
|
|
186
|
+
"from": "instance",
|
|
187
|
+
"path": "instrumentInstanceId"
|
|
188
|
+
},
|
|
189
|
+
"metadata.phase": {
|
|
190
|
+
"from": "const",
|
|
191
|
+
"value": "pay_installment_3"
|
|
192
|
+
},
|
|
193
|
+
"productId": {
|
|
194
|
+
"from": "instance",
|
|
195
|
+
"path": "productId"
|
|
196
|
+
},
|
|
197
|
+
"sourceAccountId": {
|
|
198
|
+
"from": "instance",
|
|
199
|
+
"path": "fields.payerAccountId"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"capture": {
|
|
203
|
+
"payInstallment3TransferTransferId": "transferId"
|
|
204
|
+
},
|
|
205
|
+
"key": "transfer",
|
|
206
|
+
"operation": "internal_transfer.create"
|
|
207
|
+
}
|
|
208
|
+
],
|
|
209
|
+
"steps": [],
|
|
210
|
+
"summary": "Collect installment 3 of 3"
|
|
211
|
+
}
|
|
212
|
+
},
|
|
213
|
+
"agentDescription": "Reach for scheduled when one payer owes one payee on a calendar. It covers a plan of fixed installments partitioning one total, an obligation whose installments are paid through child payment records and can go delinquent, and an open period charge that repeats until a cancel port fires. Rotating pool is for a group taking turns.",
|
|
214
|
+
"description": "Scheduled payment: the payer pays totalAmount to the payee in 3 installments, one every P30D",
|
|
215
|
+
"fields": {
|
|
216
|
+
"currency": {
|
|
217
|
+
"description": "ISO 4217 currency code",
|
|
218
|
+
"maxLength": 3,
|
|
219
|
+
"minLength": 3,
|
|
220
|
+
"pattern": "^[A-Z]{3}$",
|
|
221
|
+
"type": "string"
|
|
222
|
+
},
|
|
223
|
+
"firstDueAt": {
|
|
224
|
+
"description": "Due date of the first installment; installment k falls P30D after its predecessor",
|
|
225
|
+
"format": "hyperscale-date-time",
|
|
226
|
+
"type": "string"
|
|
227
|
+
},
|
|
228
|
+
"installment1Amount": {
|
|
229
|
+
"description": "Installment 1 of 3 (carries the integer-division remainder): about 33.34% of totalAmount, collected on its own stored-date anchor",
|
|
230
|
+
"pattern": "^[1-9][0-9]{0,17}$",
|
|
231
|
+
"type": "string"
|
|
232
|
+
},
|
|
233
|
+
"installment2Amount": {
|
|
234
|
+
"description": "Installment 2 of 3: about 33.33% of totalAmount, collected on its own stored-date anchor",
|
|
235
|
+
"pattern": "^[1-9][0-9]{0,17}$",
|
|
236
|
+
"type": "string"
|
|
237
|
+
},
|
|
238
|
+
"installment3Amount": {
|
|
239
|
+
"description": "Installment 3 of 3: about 33.33% of totalAmount, collected on its own stored-date anchor",
|
|
240
|
+
"pattern": "^[1-9][0-9]{0,17}$",
|
|
241
|
+
"type": "string"
|
|
242
|
+
},
|
|
243
|
+
"payeeAccountId": {
|
|
244
|
+
"description": "The payee account",
|
|
245
|
+
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
246
|
+
"type": "string",
|
|
247
|
+
"x-hyperscale-reference-filter": {
|
|
248
|
+
"column": "role",
|
|
249
|
+
"values": [
|
|
250
|
+
"customer_balance"
|
|
251
|
+
]
|
|
252
|
+
}
|
|
253
|
+
},
|
|
254
|
+
"payerAccountId": {
|
|
255
|
+
"description": "The payer account",
|
|
256
|
+
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
257
|
+
"type": "string",
|
|
258
|
+
"x-hyperscale-reference-filter": {
|
|
259
|
+
"column": "role",
|
|
260
|
+
"values": [
|
|
261
|
+
"customer_balance"
|
|
262
|
+
]
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"totalAmount": {
|
|
266
|
+
"description": "The total scheduled amount in SAR minor units; the installment fields below partition it exactly",
|
|
267
|
+
"pattern": "^[1-9][0-9]{0,17}$",
|
|
268
|
+
"type": "string"
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
"id": "installments",
|
|
272
|
+
"idPrefix": "inst",
|
|
273
|
+
"lifecycle": {
|
|
274
|
+
"initial": "active",
|
|
275
|
+
"states": [
|
|
276
|
+
"active",
|
|
277
|
+
"collecting_1",
|
|
278
|
+
"collecting_2",
|
|
279
|
+
"settled"
|
|
280
|
+
],
|
|
281
|
+
"transitions": {
|
|
282
|
+
"pay_installment_1": {
|
|
283
|
+
"from": [
|
|
284
|
+
"active"
|
|
285
|
+
],
|
|
286
|
+
"to": "collecting_1"
|
|
287
|
+
},
|
|
288
|
+
"pay_installment_2": {
|
|
289
|
+
"from": [
|
|
290
|
+
"collecting_1"
|
|
291
|
+
],
|
|
292
|
+
"to": "collecting_2"
|
|
293
|
+
},
|
|
294
|
+
"pay_installment_3": {
|
|
295
|
+
"from": [
|
|
296
|
+
"collecting_2"
|
|
297
|
+
],
|
|
298
|
+
"to": "settled"
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
"parties": {
|
|
303
|
+
"beneficiary": "payeeAccountId",
|
|
304
|
+
"payer": "payerAccountId"
|
|
305
|
+
},
|
|
306
|
+
"partitions": [
|
|
307
|
+
{
|
|
308
|
+
"pieceFields": [
|
|
309
|
+
"installment1Amount",
|
|
310
|
+
"installment2Amount",
|
|
311
|
+
"installment3Amount"
|
|
312
|
+
],
|
|
313
|
+
"totalField": "totalAmount"
|
|
314
|
+
}
|
|
315
|
+
],
|
|
316
|
+
"required": [
|
|
317
|
+
"payerAccountId",
|
|
318
|
+
"payeeAccountId",
|
|
319
|
+
"totalAmount",
|
|
320
|
+
"firstDueAt",
|
|
321
|
+
"installment1Amount",
|
|
322
|
+
"installment2Amount",
|
|
323
|
+
"installment3Amount",
|
|
324
|
+
"currency"
|
|
325
|
+
],
|
|
326
|
+
"summary": "3-installment schedule from payer to payee",
|
|
327
|
+
"title": "Installments"
|
|
328
|
+
}
|
|
329
|
+
],
|
|
330
|
+
"product": "scheduled_example",
|
|
331
|
+
"subjects": [],
|
|
332
|
+
"title": "Scheduled example",
|
|
333
|
+
"udl": 1,
|
|
334
|
+
"version": 1
|
|
335
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
program deposit_example "Deposit example"
|
|
2
|
+
import { security_deposit } from "std/settlements"
|
|
3
|
+
party renter: person
|
|
4
|
+
party owner: business
|
|
5
|
+
settlement security_deposit = security_deposit {
|
|
6
|
+
payer: renter
|
|
7
|
+
holder: owner
|
|
8
|
+
amount: depositAmount: money(SAR)
|
|
9
|
+
claim: port assess_damage
|
|
10
|
+
claim_amount: decided {
|
|
11
|
+
field: damageAmount
|
|
12
|
+
bound: depositAmount
|
|
13
|
+
remainder: return
|
|
14
|
+
}
|
|
15
|
+
return: port return_deposit
|
|
16
|
+
}
|
|
17
|
+
port assess_damage {
|
|
18
|
+
allowed: [owner]
|
|
19
|
+
shape: { damageAmount: money(SAR), evidence: text }
|
|
20
|
+
}
|
|
21
|
+
port return_deposit { allowed: [owner] }
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
{
|
|
2
|
+
"instruments": [
|
|
3
|
+
{
|
|
4
|
+
"actionOrder": [
|
|
5
|
+
"create",
|
|
6
|
+
"place_deposit",
|
|
7
|
+
"assess_damage",
|
|
8
|
+
"return_deposit"
|
|
9
|
+
],
|
|
10
|
+
"actions": {
|
|
11
|
+
"assess_damage": {
|
|
12
|
+
"agentDescription": "Claim the held deposit for the owner. The deposit must be in held. The reservation settles here, whole or up to the decided amount with the exact remainder released back to the renter. There is no return afterwards.",
|
|
13
|
+
"decidedAmount": {
|
|
14
|
+
"boundField": "depositAmount",
|
|
15
|
+
"field": "damageAmount",
|
|
16
|
+
"remainderAction": "return_deposit"
|
|
17
|
+
},
|
|
18
|
+
"effects": {
|
|
19
|
+
"decides": [
|
|
20
|
+
{
|
|
21
|
+
"signature": "decides.tenant_port",
|
|
22
|
+
"source": "port"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"moves": [
|
|
26
|
+
{
|
|
27
|
+
"signature": "moves.transfer.internal",
|
|
28
|
+
"source": "moves[0]"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"signature": "moves.transfer.internal",
|
|
32
|
+
"source": "moves[1]"
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
"input": {
|
|
37
|
+
"additionalProperties": false,
|
|
38
|
+
"properties": {
|
|
39
|
+
"damageAmount": {
|
|
40
|
+
"description": "Caller-decided amount in minor units",
|
|
41
|
+
"pattern": "^(0|[1-9][0-9]{0,17})$",
|
|
42
|
+
"type": "string"
|
|
43
|
+
},
|
|
44
|
+
"evidence": {
|
|
45
|
+
"description": "Required decision reference retained in the operation receipt",
|
|
46
|
+
"maxLength": 180,
|
|
47
|
+
"minLength": 1,
|
|
48
|
+
"type": "string"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"required": [
|
|
52
|
+
"damageAmount",
|
|
53
|
+
"evidence"
|
|
54
|
+
],
|
|
55
|
+
"type": "object"
|
|
56
|
+
},
|
|
57
|
+
"moves": [
|
|
58
|
+
{
|
|
59
|
+
"bind": {
|
|
60
|
+
"amount": {
|
|
61
|
+
"from": "input",
|
|
62
|
+
"path": "damageAmount"
|
|
63
|
+
},
|
|
64
|
+
"currency": {
|
|
65
|
+
"from": "instance",
|
|
66
|
+
"path": "fields.currency"
|
|
67
|
+
},
|
|
68
|
+
"postMode": {
|
|
69
|
+
"from": "const",
|
|
70
|
+
"value": "partial_only"
|
|
71
|
+
},
|
|
72
|
+
"transferId": {
|
|
73
|
+
"from": "instance",
|
|
74
|
+
"path": "refs.placeDepositReservationTransferId"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"key": "post",
|
|
78
|
+
"operation": "internal_transfer.post"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"bind": {
|
|
82
|
+
"reason": {
|
|
83
|
+
"from": "const",
|
|
84
|
+
"value": "Return the unclaimed deposit remainder"
|
|
85
|
+
},
|
|
86
|
+
"transferId": {
|
|
87
|
+
"from": "instance",
|
|
88
|
+
"path": "refs.placeDepositReservationTransferId"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"key": "remainder",
|
|
92
|
+
"operation": "internal_transfer.void"
|
|
93
|
+
}
|
|
94
|
+
],
|
|
95
|
+
"port": {
|
|
96
|
+
"allowedParties": [
|
|
97
|
+
"beneficiary"
|
|
98
|
+
]
|
|
99
|
+
},
|
|
100
|
+
"publicAction": "assessDamageSecurityDeposit",
|
|
101
|
+
"steps": [],
|
|
102
|
+
"summary": "Claim the deposit for the owner through assess_damage"
|
|
103
|
+
},
|
|
104
|
+
"create": {
|
|
105
|
+
"agentDescription": "Open the deposit row before anything is reserved. The caller supplies the depositAmount, the currency, and the renter and owner accounts. Nothing is reserved yet, call place deposit next.",
|
|
106
|
+
"moves": [],
|
|
107
|
+
"publicAction": "createSecurityDeposit",
|
|
108
|
+
"steps": [],
|
|
109
|
+
"summary": "Create a security deposit"
|
|
110
|
+
},
|
|
111
|
+
"place_deposit": {
|
|
112
|
+
"agentDescription": "Reserve the depositAmount against the renter's account in the owner's favor. The deposit must be created. The money is held, not paid: the claim posts it to the owner and the return releases it back.",
|
|
113
|
+
"effects": {
|
|
114
|
+
"holds": [
|
|
115
|
+
{
|
|
116
|
+
"signature": "holds.reserve",
|
|
117
|
+
"source": "moves[0]"
|
|
118
|
+
}
|
|
119
|
+
],
|
|
120
|
+
"moves": [
|
|
121
|
+
{
|
|
122
|
+
"signature": "moves.transfer.internal",
|
|
123
|
+
"source": "moves[0]"
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
"moves": [
|
|
128
|
+
{
|
|
129
|
+
"bind": {
|
|
130
|
+
"amount": {
|
|
131
|
+
"from": "instance",
|
|
132
|
+
"path": "fields.depositAmount"
|
|
133
|
+
},
|
|
134
|
+
"currency": {
|
|
135
|
+
"from": "instance",
|
|
136
|
+
"path": "fields.currency"
|
|
137
|
+
},
|
|
138
|
+
"destinationAccountId": {
|
|
139
|
+
"from": "instance",
|
|
140
|
+
"path": "fields.ownerAccountId"
|
|
141
|
+
},
|
|
142
|
+
"metadata.instrumentId": {
|
|
143
|
+
"from": "const",
|
|
144
|
+
"value": "security_deposit"
|
|
145
|
+
},
|
|
146
|
+
"metadata.instrumentInstanceId": {
|
|
147
|
+
"from": "instance",
|
|
148
|
+
"path": "instrumentInstanceId"
|
|
149
|
+
},
|
|
150
|
+
"metadata.phase": {
|
|
151
|
+
"from": "const",
|
|
152
|
+
"value": "place_deposit"
|
|
153
|
+
},
|
|
154
|
+
"productId": {
|
|
155
|
+
"from": "instance",
|
|
156
|
+
"path": "productId"
|
|
157
|
+
},
|
|
158
|
+
"sourceAccountId": {
|
|
159
|
+
"from": "instance",
|
|
160
|
+
"path": "fields.renterAccountId"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
"capture": {
|
|
164
|
+
"placeDepositReservationTransferId": "transferId"
|
|
165
|
+
},
|
|
166
|
+
"key": "reservation",
|
|
167
|
+
"operation": "internal_transfer.reserve"
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"publicAction": "placeDepositSecurityDeposit",
|
|
171
|
+
"steps": [],
|
|
172
|
+
"summary": "Reserve the depositAmount against the renter's account"
|
|
173
|
+
},
|
|
174
|
+
"return_deposit": {
|
|
175
|
+
"agentDescription": "Return the held deposit to the renter. The deposit must be in held and unclaimed. This releases the reservation whole and the owner receives nothing.",
|
|
176
|
+
"effects": {
|
|
177
|
+
"moves": [
|
|
178
|
+
{
|
|
179
|
+
"signature": "moves.transfer.internal",
|
|
180
|
+
"source": "moves[0]"
|
|
181
|
+
}
|
|
182
|
+
]
|
|
183
|
+
},
|
|
184
|
+
"moves": [
|
|
185
|
+
{
|
|
186
|
+
"bind": {
|
|
187
|
+
"reason": {
|
|
188
|
+
"from": "const",
|
|
189
|
+
"value": "Deposit returned in full"
|
|
190
|
+
},
|
|
191
|
+
"transferId": {
|
|
192
|
+
"from": "instance",
|
|
193
|
+
"path": "refs.placeDepositReservationTransferId"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"key": "void",
|
|
197
|
+
"operation": "internal_transfer.void"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"publicAction": "returnDepositSecurityDeposit",
|
|
201
|
+
"steps": [],
|
|
202
|
+
"summary": "Return the deposit to the renter through return_deposit"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"agentDescription": "Reach for security deposit when money is reserved against the renter in the owner's favor and later claimed or returned. The funds stay reserved and move only on the claim. Pick captured payment when the holder takes the money in slices, and instant transfer when nothing is held.",
|
|
206
|
+
"description": "Deposit: the depositAmount is reserved against the renter's account in the owner's favor, then damageAmount is claimed and the exact remainder returned, or the deposit is returned in full",
|
|
207
|
+
"fields": {
|
|
208
|
+
"currency": {
|
|
209
|
+
"description": "ISO 4217 currency code",
|
|
210
|
+
"maxLength": 3,
|
|
211
|
+
"minLength": 3,
|
|
212
|
+
"pattern": "^[A-Z]{3}$",
|
|
213
|
+
"type": "string"
|
|
214
|
+
},
|
|
215
|
+
"depositAmount": {
|
|
216
|
+
"description": "The deposit amount in SAR minor units, reserved in full and fully accounted on claim or return",
|
|
217
|
+
"pattern": "^[1-9][0-9]{0,17}$",
|
|
218
|
+
"type": "string"
|
|
219
|
+
},
|
|
220
|
+
"ownerAccountId": {
|
|
221
|
+
"description": "The owner account",
|
|
222
|
+
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
223
|
+
"type": "string",
|
|
224
|
+
"x-hyperscale-reference-filter": {
|
|
225
|
+
"column": "role",
|
|
226
|
+
"values": [
|
|
227
|
+
"customer_balance"
|
|
228
|
+
]
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"renterAccountId": {
|
|
232
|
+
"description": "The renter account",
|
|
233
|
+
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
234
|
+
"type": "string",
|
|
235
|
+
"x-hyperscale-reference-filter": {
|
|
236
|
+
"column": "role",
|
|
237
|
+
"values": [
|
|
238
|
+
"customer_balance"
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"id": "security_deposit",
|
|
244
|
+
"idPrefix": "sd",
|
|
245
|
+
"lifecycle": {
|
|
246
|
+
"initial": "created",
|
|
247
|
+
"states": [
|
|
248
|
+
"created",
|
|
249
|
+
"held",
|
|
250
|
+
"claimed",
|
|
251
|
+
"returned"
|
|
252
|
+
],
|
|
253
|
+
"transitions": {
|
|
254
|
+
"assess_damage": {
|
|
255
|
+
"from": [
|
|
256
|
+
"held"
|
|
257
|
+
],
|
|
258
|
+
"to": "claimed"
|
|
259
|
+
},
|
|
260
|
+
"place_deposit": {
|
|
261
|
+
"from": [
|
|
262
|
+
"created"
|
|
263
|
+
],
|
|
264
|
+
"to": "held"
|
|
265
|
+
},
|
|
266
|
+
"return_deposit": {
|
|
267
|
+
"from": [
|
|
268
|
+
"held"
|
|
269
|
+
],
|
|
270
|
+
"to": "returned"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"parties": {
|
|
275
|
+
"beneficiary": "ownerAccountId",
|
|
276
|
+
"payer": "renterAccountId"
|
|
277
|
+
},
|
|
278
|
+
"required": [
|
|
279
|
+
"renterAccountId",
|
|
280
|
+
"ownerAccountId",
|
|
281
|
+
"depositAmount",
|
|
282
|
+
"currency"
|
|
283
|
+
],
|
|
284
|
+
"summary": "Refundable deposit from renter held for owner",
|
|
285
|
+
"title": "Security deposit"
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"product": "deposit_example",
|
|
289
|
+
"subjects": [],
|
|
290
|
+
"title": "Deposit example",
|
|
291
|
+
"udl": 1,
|
|
292
|
+
"version": 1
|
|
293
|
+
}
|