@hyperscale0/hsx 2.4.1 → 3.0.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 +4 -406
- package/README.md +3 -92
- package/dist/src/ast.d.ts +99 -310
- package/dist/src/ast.d.ts.map +1 -1
- package/dist/src/ast.js +16 -69
- package/dist/src/ast.js.map +1 -1
- package/dist/src/cli.d.ts +6 -19
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +77 -315
- package/dist/src/cli.js.map +1 -1
- package/dist/src/compile.d.ts +23 -73
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +1113 -148
- package/dist/src/compile.js.map +1 -1
- package/dist/src/cost.d.ts +8 -77
- package/dist/src/cost.d.ts.map +1 -1
- package/dist/src/cost.js +13 -422
- package/dist/src/cost.js.map +1 -1
- package/dist/src/format.d.ts +8 -7
- package/dist/src/format.d.ts.map +1 -1
- package/dist/src/format.js +9 -175
- package/dist/src/format.js.map +1 -1
- package/dist/src/headers.d.ts +35 -0
- package/dist/src/headers.d.ts.map +1 -0
- package/dist/src/headers.js +108 -0
- package/dist/src/headers.js.map +1 -0
- package/dist/src/index.d.ts +6 -12
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +4 -9
- package/dist/src/index.js.map +1 -1
- package/dist/src/lex.d.ts +8 -28
- package/dist/src/lex.d.ts.map +1 -1
- package/dist/src/lex.js +88 -146
- package/dist/src/lex.js.map +1 -1
- package/dist/src/parse.d.ts +4 -17
- package/dist/src/parse.d.ts.map +1 -1
- package/dist/src/parse.js +402 -1040
- package/dist/src/parse.js.map +1 -1
- package/dist/src/std-bundle.d.ts.map +1 -1
- package/dist/src/std-bundle.js +12 -20
- package/dist/src/std-bundle.js.map +1 -1
- package/dist/src/std-library.d.ts +1 -1
- package/dist/src/std-library.d.ts.map +1 -1
- package/dist/src/std-library.js +1 -5
- package/dist/src/std-library.js.map +1 -1
- package/dist/src/tunables.d.ts +7 -0
- package/dist/src/tunables.d.ts.map +1 -0
- package/dist/src/tunables.js +26 -0
- package/dist/src/tunables.js.map +1 -0
- package/dist/src/version.d.ts +2 -4
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +2 -4
- package/dist/src/version.js.map +1 -1
- package/docs/README.md +179 -41
- package/docs/headers.md +44 -0
- package/examples/cost-table.json +99 -751
- package/examples/library.hsx +59 -0
- package/package.json +9 -17
- package/src/ast.ts +82 -441
- package/src/cli.ts +78 -362
- package/src/compile.ts +1535 -247
- package/src/cost.ts +28 -671
- package/src/format.ts +12 -256
- package/src/headers.ts +126 -0
- package/src/index.ts +7 -39
- package/src/lex.ts +99 -195
- package/src/parse.ts +403 -1209
- package/src/std-bundle.ts +12 -20
- package/src/std-library.ts +2 -7
- package/src/tunables.ts +31 -0
- package/src/version.ts +2 -5
- package/std/approvals.hsx +17 -0
- package/std/cards.hsx +63 -0
- package/std/collections.hsx +31 -0
- package/std/escrow.hsx +43 -0
- package/std/financing.hsx +372 -0
- package/std/insurance.hsx +59 -0
- package/std/lending.hsx +115 -0
- package/std/marketplace.hsx +24 -0
- package/std/money.hsx +195 -0
- package/std/savings.hsx +44 -0
- package/std/travel.hsx +98 -0
- package/std/wallet.hsx +41 -0
- package/dist/src/diagnostics.d.ts +0 -13
- package/dist/src/diagnostics.d.ts.map +0 -1
- package/dist/src/diagnostics.js +0 -587
- package/dist/src/diagnostics.js.map +0 -1
- package/dist/src/emit.d.ts +0 -51
- package/dist/src/emit.d.ts.map +0 -1
- package/dist/src/emit.js +0 -192
- package/dist/src/emit.js.map +0 -1
- package/dist/src/entry-overrides.d.ts +0 -58
- package/dist/src/entry-overrides.d.ts.map +0 -1
- package/dist/src/entry-overrides.js +0 -284
- package/dist/src/entry-overrides.js.map +0 -1
- package/dist/src/ir.d.ts +0 -73
- package/dist/src/ir.d.ts.map +0 -1
- package/dist/src/ir.js +0 -15
- package/dist/src/ir.js.map +0 -1
- package/dist/src/limits.d.ts +0 -23
- package/dist/src/limits.d.ts.map +0 -1
- package/dist/src/limits.js +0 -23
- package/dist/src/limits.js.map +0 -1
- package/dist/src/lsp/server.d.ts +0 -32
- package/dist/src/lsp/server.d.ts.map +0 -1
- package/dist/src/lsp/server.js +0 -391
- package/dist/src/lsp/server.js.map +0 -1
- package/dist/src/modules.d.ts +0 -38
- package/dist/src/modules.d.ts.map +0 -1
- package/dist/src/modules.js +0 -372
- package/dist/src/modules.js.map +0 -1
- package/dist/src/typecheck.d.ts +0 -8
- package/dist/src/typecheck.d.ts.map +0 -1
- package/dist/src/typecheck.js +0 -4160
- package/dist/src/typecheck.js.map +0 -1
- package/docs/guide/01-first-program.md +0 -24
- package/docs/guide/02-money.md +0 -25
- package/docs/guide/03-instruments.md +0 -93
- package/docs/guide/04-lifecycles.md +0 -40
- package/docs/guide/05-fees-and-splits.md +0 -45
- package/docs/guide/06-schedules.md +0 -26
- package/docs/guide/07-composition.md +0 -52
- package/docs/guide/08-writing-a-module.md +0 -85
- package/docs/guide/09-cost.md +0 -24
- package/docs/guide/10-diagnostics.md +0 -27
- package/docs/llms-full.txt +0 -3684
- package/docs/llms.txt +0 -44
- package/docs/piece-plans.md +0 -120
- package/docs/playground.md +0 -55
- package/docs/reference/cli.md +0 -36
- package/docs/reference/diagnostics.md +0 -901
- package/docs/reference/grammar.md +0 -38
- package/docs/reference/std/advance.md +0 -112
- package/docs/reference/std/cancellable_booking.md +0 -159
- package/docs/reference/std/captured_payment.md +0 -115
- package/docs/reference/std/conditional_disbursement.md +0 -101
- package/docs/reference/std/credit_facility.md +0 -108
- package/docs/reference/std/held_payment.md +0 -173
- package/docs/reference/std/instant_transfer.md +0 -97
- package/docs/reference/std/metered.md +0 -89
- package/docs/reference/std/pooled_split.md +0 -95
- package/docs/reference/std/premium_forward.md +0 -119
- package/docs/reference/std/reconciled_payout.md +0 -103
- package/docs/reference/std/rotating_pool.md +0 -130
- package/docs/reference/std/scheduled.md +0 -136
- package/docs/reference/std/security_deposit.md +0 -138
- package/docs/reference/std/settlement_batch.md +0 -123
- package/docs/reference/std/swap.md +0 -133
- package/docs/reference/std/threshold_pool.md +0 -138
- package/docs/reference/std/weighted_distribution.md +0 -135
- package/docs/reference/types.md +0 -61
- package/docs/reference/udl-output.md +0 -13
- package/examples/01-first-program/README.md +0 -45
- package/examples/01-first-program/tip-jar.hsx +0 -17
- package/examples/02-imports-and-modules/README.md +0 -96
- package/examples/02-imports-and-modules/photo-booth.hsx +0 -37
- package/examples/03-diagnostics/README.md +0 -68
- package/examples/03-diagnostics/corner-shop-fixed.hsx +0 -22
- package/examples/03-diagnostics/corner-shop.hsx +0 -19
- package/examples/04-complete-product/README.md +0 -84
- package/examples/04-complete-product/study-hall.hsx +0 -67
- package/examples/05-authored-instrument/README.md +0 -5
- package/examples/05-authored-instrument/payment.hsx +0 -37
- package/examples/05-watch-club/README.md +0 -6
- package/examples/05-watch-club/watch-club.hsx +0 -123
- package/examples/README.md +0 -48
- package/examples/advance/README.md +0 -3
- package/examples/advance/advance.hsx +0 -13
- package/examples/advance/advance.udl +0 -367
- package/examples/cancellable_booking/README.md +0 -3
- package/examples/cancellable_booking/cancellable_booking.hsx +0 -14
- package/examples/cancellable_booking/cancellable_booking.udl +0 -413
- package/examples/captured_payment/README.md +0 -3
- package/examples/captured_payment/captured_payment.hsx +0 -17
- package/examples/captured_payment/captured_payment.udl +0 -686
- package/examples/conditional_disbursement/README.md +0 -3
- package/examples/conditional_disbursement/conditional_disbursement.hsx +0 -15
- package/examples/conditional_disbursement/conditional_disbursement.udl +0 -418
- package/examples/credit_facility/README.md +0 -3
- package/examples/credit_facility/credit_facility.hsx +0 -24
- package/examples/credit_facility/credit_facility.udl +0 -1396
- package/examples/held_payment/README.md +0 -3
- package/examples/held_payment/held_payment.hsx +0 -13
- package/examples/held_payment/held_payment.udl +0 -569
- package/examples/instant_transfer/README.md +0 -3
- package/examples/instant_transfer/instant_transfer.hsx +0 -16
- package/examples/instant_transfer/instant_transfer.udl +0 -376
- package/examples/metered/README.md +0 -3
- package/examples/metered/metered.hsx +0 -13
- package/examples/metered/metered.udl +0 -253
- package/examples/pooled_split/README.md +0 -3
- package/examples/pooled_split/pooled_split.hsx +0 -15
- package/examples/pooled_split/pooled_split.udl +0 -432
- package/examples/premium_forward/README.md +0 -3
- package/examples/premium_forward/premium_forward.hsx +0 -19
- package/examples/premium_forward/premium_forward.udl +0 -604
- package/examples/reconciled_payout/README.md +0 -3
- package/examples/reconciled_payout/reconciled_payout.hsx +0 -13
- package/examples/reconciled_payout/reconciled_payout.udl +0 -312
- package/examples/rotating_pool/README.md +0 -3
- package/examples/rotating_pool/rotating_pool.hsx +0 -18
- package/examples/rotating_pool/rotating_pool.udl +0 -4370
- package/examples/scheduled/README.md +0 -3
- package/examples/scheduled/scheduled.hsx +0 -12
- package/examples/scheduled/scheduled.udl +0 -355
- package/examples/security_deposit/README.md +0 -3
- package/examples/security_deposit/security_deposit.hsx +0 -21
- package/examples/security_deposit/security_deposit.udl +0 -320
- package/examples/settlement_batch/README.md +0 -3
- package/examples/settlement_batch/settlement_batch.hsx +0 -19
- package/examples/settlement_batch/settlement_batch.udl +0 -757
- package/examples/swap/README.md +0 -3
- package/examples/swap/swap.hsx +0 -19
- package/examples/swap/swap.udl +0 -892
- package/examples/threshold_pool/README.md +0 -3
- package/examples/threshold_pool/threshold_pool.hsx +0 -16
- package/examples/threshold_pool/threshold_pool.udl +0 -680
- package/examples/weighted_distribution/README.md +0 -3
- package/examples/weighted_distribution/weighted_distribution.hsx +0 -20
- package/examples/weighted_distribution/weighted_distribution.udl +0 -348
- package/skills/hsx/SKILL.md +0 -449
- package/src/diagnostics.ts +0 -620
- package/src/emit.ts +0 -282
- package/src/entry-overrides.ts +0 -428
- package/src/ir.ts +0 -113
- package/src/limits.ts +0 -22
- package/src/lsp/server.ts +0 -460
- package/src/modules.ts +0 -452
- package/src/typecheck.ts +0 -5515
- package/std/SEMANTICS.md +0 -44
- package/std/money_flows/advance.hsx +0 -235
- package/std/money_flows/cancellable_booking.hsx +0 -402
- package/std/money_flows/captured_payment.hsx +0 -220
- package/std/money_flows/conditional_disbursement.hsx +0 -226
- package/std/money_flows/credit_facility.hsx +0 -214
- package/std/money_flows/held_payment.hsx +0 -812
- package/std/money_flows/index.hsx +0 -4
- package/std/money_flows/instant_transfer.hsx +0 -231
- package/std/money_flows/metered.hsx +0 -104
- package/std/money_flows/pooled_split.hsx +0 -109
- package/std/money_flows/premium_forward.hsx +0 -307
- package/std/money_flows/reconciled_payout.hsx +0 -119
- package/std/money_flows/rotating_pool.hsx +0 -305
- package/std/money_flows/scheduled.hsx +0 -599
- package/std/money_flows/security_deposit.hsx +0 -248
- package/std/money_flows/settlement_batch.hsx +0 -173
- package/std/money_flows/swap.hsx +0 -1192
- package/std/money_flows/threshold_pool.hsx +0 -307
- package/std/money_flows/weighted_distribution.hsx +0 -237
|
@@ -1,432 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"instruments": [
|
|
3
|
-
{
|
|
4
|
-
"actionOrder": [
|
|
5
|
-
"create",
|
|
6
|
-
"fund_share_1",
|
|
7
|
-
"distribute_share_1",
|
|
8
|
-
"fund_share_2",
|
|
9
|
-
"distribute_share_2"
|
|
10
|
-
],
|
|
11
|
-
"actions": {
|
|
12
|
-
"create": {
|
|
13
|
-
"agentDescription": "Open a pool period and provision the escrow account the pool sits in. This is the first call on the period, and funding a share refuses until it lands. It moves no money.",
|
|
14
|
-
"moves": [],
|
|
15
|
-
"publicAction": "createPool",
|
|
16
|
-
"steps": [
|
|
17
|
-
{
|
|
18
|
-
"bind": {
|
|
19
|
-
"currency": {
|
|
20
|
-
"from": "const",
|
|
21
|
-
"value": "SAR"
|
|
22
|
-
},
|
|
23
|
-
"owner.id": {
|
|
24
|
-
"from": "instance",
|
|
25
|
-
"path": "productId"
|
|
26
|
-
},
|
|
27
|
-
"owner.type": {
|
|
28
|
-
"from": "const",
|
|
29
|
-
"value": "product"
|
|
30
|
-
},
|
|
31
|
-
"productId": {
|
|
32
|
-
"from": "instance",
|
|
33
|
-
"path": "productId"
|
|
34
|
-
},
|
|
35
|
-
"role": {
|
|
36
|
-
"from": "const",
|
|
37
|
-
"value": "product_escrow"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"capture": {
|
|
41
|
-
"escrowAccountId": "accountId"
|
|
42
|
-
},
|
|
43
|
-
"operation": "account.escrow.provision"
|
|
44
|
-
}
|
|
45
|
-
],
|
|
46
|
-
"summary": "Open a pool period"
|
|
47
|
-
},
|
|
48
|
-
"distribute_share_1": {
|
|
49
|
-
"due": {
|
|
50
|
-
"field": "payoutDueAt"
|
|
51
|
-
},
|
|
52
|
-
"effects": {
|
|
53
|
-
"moves": [
|
|
54
|
-
{
|
|
55
|
-
"signature": "moves.transfer.internal",
|
|
56
|
-
"source": "moves[0]"
|
|
57
|
-
}
|
|
58
|
-
],
|
|
59
|
-
"schedules": [
|
|
60
|
-
{
|
|
61
|
-
"signature": "schedules.due",
|
|
62
|
-
"source": "due"
|
|
63
|
-
}
|
|
64
|
-
]
|
|
65
|
-
},
|
|
66
|
-
"moves": [
|
|
67
|
-
{
|
|
68
|
-
"bind": {
|
|
69
|
-
"amount": {
|
|
70
|
-
"from": "instance",
|
|
71
|
-
"path": "fields.firstRecipientShareAmount"
|
|
72
|
-
},
|
|
73
|
-
"currency": {
|
|
74
|
-
"from": "const",
|
|
75
|
-
"value": "SAR"
|
|
76
|
-
},
|
|
77
|
-
"destinationAccountId": {
|
|
78
|
-
"from": "instance",
|
|
79
|
-
"path": "fields.firstRecipientAccountId"
|
|
80
|
-
},
|
|
81
|
-
"metadata.instrumentId": {
|
|
82
|
-
"from": "const",
|
|
83
|
-
"value": "pool"
|
|
84
|
-
},
|
|
85
|
-
"metadata.instrumentInstanceId": {
|
|
86
|
-
"from": "instance",
|
|
87
|
-
"path": "instrumentInstanceId"
|
|
88
|
-
},
|
|
89
|
-
"metadata.phase": {
|
|
90
|
-
"from": "const",
|
|
91
|
-
"value": "distribute_share_1"
|
|
92
|
-
},
|
|
93
|
-
"productId": {
|
|
94
|
-
"from": "instance",
|
|
95
|
-
"path": "productId"
|
|
96
|
-
},
|
|
97
|
-
"sourceAccountId": {
|
|
98
|
-
"from": "instance",
|
|
99
|
-
"path": "refs.escrowAccountId"
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
"capture": {
|
|
103
|
-
"distributeShare1TransferTransferId": "transferId"
|
|
104
|
-
},
|
|
105
|
-
"key": "transfer",
|
|
106
|
-
"operation": "internal_transfer.create"
|
|
107
|
-
}
|
|
108
|
-
],
|
|
109
|
-
"steps": [],
|
|
110
|
-
"summary": "Distribute the first recipient's share of the pool"
|
|
111
|
-
},
|
|
112
|
-
"distribute_share_2": {
|
|
113
|
-
"due": {
|
|
114
|
-
"field": "payoutDueAt"
|
|
115
|
-
},
|
|
116
|
-
"effects": {
|
|
117
|
-
"moves": [
|
|
118
|
-
{
|
|
119
|
-
"signature": "moves.transfer.internal",
|
|
120
|
-
"source": "moves[0]"
|
|
121
|
-
}
|
|
122
|
-
],
|
|
123
|
-
"schedules": [
|
|
124
|
-
{
|
|
125
|
-
"signature": "schedules.due",
|
|
126
|
-
"source": "due"
|
|
127
|
-
}
|
|
128
|
-
]
|
|
129
|
-
},
|
|
130
|
-
"moves": [
|
|
131
|
-
{
|
|
132
|
-
"bind": {
|
|
133
|
-
"amount": {
|
|
134
|
-
"from": "instance",
|
|
135
|
-
"path": "fields.secondRecipientShareAmount"
|
|
136
|
-
},
|
|
137
|
-
"currency": {
|
|
138
|
-
"from": "const",
|
|
139
|
-
"value": "SAR"
|
|
140
|
-
},
|
|
141
|
-
"destinationAccountId": {
|
|
142
|
-
"from": "instance",
|
|
143
|
-
"path": "fields.secondRecipientAccountId"
|
|
144
|
-
},
|
|
145
|
-
"metadata.instrumentId": {
|
|
146
|
-
"from": "const",
|
|
147
|
-
"value": "pool"
|
|
148
|
-
},
|
|
149
|
-
"metadata.instrumentInstanceId": {
|
|
150
|
-
"from": "instance",
|
|
151
|
-
"path": "instrumentInstanceId"
|
|
152
|
-
},
|
|
153
|
-
"metadata.phase": {
|
|
154
|
-
"from": "const",
|
|
155
|
-
"value": "distribute_share_2"
|
|
156
|
-
},
|
|
157
|
-
"productId": {
|
|
158
|
-
"from": "instance",
|
|
159
|
-
"path": "productId"
|
|
160
|
-
},
|
|
161
|
-
"sourceAccountId": {
|
|
162
|
-
"from": "instance",
|
|
163
|
-
"path": "refs.escrowAccountId"
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
"capture": {
|
|
167
|
-
"distributeShare2TransferTransferId": "transferId"
|
|
168
|
-
},
|
|
169
|
-
"key": "transfer",
|
|
170
|
-
"operation": "internal_transfer.create"
|
|
171
|
-
}
|
|
172
|
-
],
|
|
173
|
-
"steps": [],
|
|
174
|
-
"summary": "Distribute the second recipient's share of the pool"
|
|
175
|
-
},
|
|
176
|
-
"fund_share_1": {
|
|
177
|
-
"agentDescription": "Move share 1 of the period total, the first recipient's cut, from the payer into the pool escrow. Shares fund in order, so every earlier share must be in already. It debits the payer for real. The pool pays out from the stored payout date with no release call.",
|
|
178
|
-
"effects": {
|
|
179
|
-
"moves": [
|
|
180
|
-
{
|
|
181
|
-
"signature": "moves.collection.pay_in",
|
|
182
|
-
"source": "moves[0]"
|
|
183
|
-
}
|
|
184
|
-
]
|
|
185
|
-
},
|
|
186
|
-
"moves": [
|
|
187
|
-
{
|
|
188
|
-
"bind": {
|
|
189
|
-
"amount": {
|
|
190
|
-
"from": "instance",
|
|
191
|
-
"path": "fields.firstRecipientShareAmount"
|
|
192
|
-
},
|
|
193
|
-
"currency": {
|
|
194
|
-
"from": "const",
|
|
195
|
-
"value": "SAR"
|
|
196
|
-
},
|
|
197
|
-
"destinationAccountId": {
|
|
198
|
-
"from": "instance",
|
|
199
|
-
"path": "refs.escrowAccountId"
|
|
200
|
-
},
|
|
201
|
-
"metadata.instrumentId": {
|
|
202
|
-
"from": "const",
|
|
203
|
-
"value": "pool"
|
|
204
|
-
},
|
|
205
|
-
"metadata.instrumentInstanceId": {
|
|
206
|
-
"from": "instance",
|
|
207
|
-
"path": "instrumentInstanceId"
|
|
208
|
-
},
|
|
209
|
-
"metadata.phase": {
|
|
210
|
-
"from": "const",
|
|
211
|
-
"value": "fund_share_1"
|
|
212
|
-
},
|
|
213
|
-
"productId": {
|
|
214
|
-
"from": "instance",
|
|
215
|
-
"path": "productId"
|
|
216
|
-
},
|
|
217
|
-
"sourceAccountId": {
|
|
218
|
-
"from": "instance",
|
|
219
|
-
"path": "fields.payerAccountId"
|
|
220
|
-
}
|
|
221
|
-
},
|
|
222
|
-
"capture": {
|
|
223
|
-
"fundShare1TransferTransferId": "transferId"
|
|
224
|
-
},
|
|
225
|
-
"key": "transfer",
|
|
226
|
-
"operation": "internal_transfer.create"
|
|
227
|
-
}
|
|
228
|
-
],
|
|
229
|
-
"publicAction": "fundShare1Pool",
|
|
230
|
-
"steps": [],
|
|
231
|
-
"summary": "Pool share 1 of the period total"
|
|
232
|
-
},
|
|
233
|
-
"fund_share_2": {
|
|
234
|
-
"agentDescription": "Move share 2 of the period total, the second recipient's cut, from the payer into the pool escrow. Shares fund in order, so every earlier share must be in already. It debits the payer for real. The pool pays out from the stored payout date with no release call.",
|
|
235
|
-
"effects": {
|
|
236
|
-
"moves": [
|
|
237
|
-
{
|
|
238
|
-
"signature": "moves.collection.pay_in",
|
|
239
|
-
"source": "moves[0]"
|
|
240
|
-
}
|
|
241
|
-
]
|
|
242
|
-
},
|
|
243
|
-
"moves": [
|
|
244
|
-
{
|
|
245
|
-
"bind": {
|
|
246
|
-
"amount": {
|
|
247
|
-
"from": "instance",
|
|
248
|
-
"path": "fields.secondRecipientShareAmount"
|
|
249
|
-
},
|
|
250
|
-
"currency": {
|
|
251
|
-
"from": "const",
|
|
252
|
-
"value": "SAR"
|
|
253
|
-
},
|
|
254
|
-
"destinationAccountId": {
|
|
255
|
-
"from": "instance",
|
|
256
|
-
"path": "refs.escrowAccountId"
|
|
257
|
-
},
|
|
258
|
-
"metadata.instrumentId": {
|
|
259
|
-
"from": "const",
|
|
260
|
-
"value": "pool"
|
|
261
|
-
},
|
|
262
|
-
"metadata.instrumentInstanceId": {
|
|
263
|
-
"from": "instance",
|
|
264
|
-
"path": "instrumentInstanceId"
|
|
265
|
-
},
|
|
266
|
-
"metadata.phase": {
|
|
267
|
-
"from": "const",
|
|
268
|
-
"value": "fund_share_2"
|
|
269
|
-
},
|
|
270
|
-
"productId": {
|
|
271
|
-
"from": "instance",
|
|
272
|
-
"path": "productId"
|
|
273
|
-
},
|
|
274
|
-
"sourceAccountId": {
|
|
275
|
-
"from": "instance",
|
|
276
|
-
"path": "fields.payerAccountId"
|
|
277
|
-
}
|
|
278
|
-
},
|
|
279
|
-
"capture": {
|
|
280
|
-
"fundShare2TransferTransferId": "transferId"
|
|
281
|
-
},
|
|
282
|
-
"key": "transfer",
|
|
283
|
-
"operation": "internal_transfer.create"
|
|
284
|
-
}
|
|
285
|
-
],
|
|
286
|
-
"publicAction": "fundShare2Pool",
|
|
287
|
-
"steps": [],
|
|
288
|
-
"summary": "Pool share 2 of the period total"
|
|
289
|
-
}
|
|
290
|
-
},
|
|
291
|
-
"agentDescription": "Reach for pool when the payer funds one period total that is then split across 2 fixed recipients by stored share amounts. Callers fund the pool one share at a time. Each recipient's payout fires from the stored payout date, not from a call.",
|
|
292
|
-
"description": "Pooled split: the payer pools the period's poolAmount share by share; the pool distributes to every recipient in full on the stored payout date",
|
|
293
|
-
"fields": {
|
|
294
|
-
"currency": {
|
|
295
|
-
"description": "ISO 4217 currency code",
|
|
296
|
-
"maxLength": 3,
|
|
297
|
-
"minLength": 3,
|
|
298
|
-
"pattern": "^[A-Z]{3}$",
|
|
299
|
-
"type": "string"
|
|
300
|
-
},
|
|
301
|
-
"firstRecipientAccountId": {
|
|
302
|
-
"description": "The first recipient account",
|
|
303
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
304
|
-
"type": "string",
|
|
305
|
-
"x-hyperscale-reference-filter": {
|
|
306
|
-
"column": "role",
|
|
307
|
-
"values": [
|
|
308
|
-
"customer_balance"
|
|
309
|
-
]
|
|
310
|
-
}
|
|
311
|
-
},
|
|
312
|
-
"firstRecipientShareAmount": {
|
|
313
|
-
"description": "60% of poolAmount (carries the integer-division remainder): the first recipient's share. Computed as floor(poolAmount * 6000 / 10000) in SAR minor units",
|
|
314
|
-
"pattern": "^[1-9][0-9]{0,17}$",
|
|
315
|
-
"type": "string",
|
|
316
|
-
"x-hyperscale-currency": "SAR"
|
|
317
|
-
},
|
|
318
|
-
"payerAccountId": {
|
|
319
|
-
"description": "The payer account",
|
|
320
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
321
|
-
"type": "string",
|
|
322
|
-
"x-hyperscale-reference-filter": {
|
|
323
|
-
"column": "role",
|
|
324
|
-
"values": [
|
|
325
|
-
"customer_balance"
|
|
326
|
-
]
|
|
327
|
-
}
|
|
328
|
-
},
|
|
329
|
-
"payoutDueAt": {
|
|
330
|
-
"description": "The period's payout date; the pool distributes from it",
|
|
331
|
-
"format": "hyperscale-date-time",
|
|
332
|
-
"type": "string"
|
|
333
|
-
},
|
|
334
|
-
"poolAmount": {
|
|
335
|
-
"description": "The pooled period total in SAR minor units; the share fields below partition it exactly",
|
|
336
|
-
"pattern": "^[1-9][0-9]{0,17}$",
|
|
337
|
-
"type": "string",
|
|
338
|
-
"x-hyperscale-currency": "SAR"
|
|
339
|
-
},
|
|
340
|
-
"secondRecipientAccountId": {
|
|
341
|
-
"description": "The second recipient account",
|
|
342
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
343
|
-
"type": "string",
|
|
344
|
-
"x-hyperscale-reference-filter": {
|
|
345
|
-
"column": "role",
|
|
346
|
-
"values": [
|
|
347
|
-
"customer_balance"
|
|
348
|
-
]
|
|
349
|
-
}
|
|
350
|
-
},
|
|
351
|
-
"secondRecipientShareAmount": {
|
|
352
|
-
"description": "40% of poolAmount: the second recipient's share. Computed as floor(poolAmount * 4000 / 10000) in SAR minor units",
|
|
353
|
-
"pattern": "^[1-9][0-9]{0,17}$",
|
|
354
|
-
"type": "string",
|
|
355
|
-
"x-hyperscale-currency": "SAR"
|
|
356
|
-
}
|
|
357
|
-
},
|
|
358
|
-
"id": "pool",
|
|
359
|
-
"idPrefix": "pool",
|
|
360
|
-
"lifecycle": {
|
|
361
|
-
"initial": "created",
|
|
362
|
-
"states": [
|
|
363
|
-
"created",
|
|
364
|
-
"pooling_1",
|
|
365
|
-
"pooled",
|
|
366
|
-
"distributing_1",
|
|
367
|
-
"distributed"
|
|
368
|
-
],
|
|
369
|
-
"transitions": {
|
|
370
|
-
"distribute_share_1": {
|
|
371
|
-
"from": [
|
|
372
|
-
"pooled"
|
|
373
|
-
],
|
|
374
|
-
"to": "distributing_1"
|
|
375
|
-
},
|
|
376
|
-
"distribute_share_2": {
|
|
377
|
-
"from": [
|
|
378
|
-
"distributing_1"
|
|
379
|
-
],
|
|
380
|
-
"to": "distributed"
|
|
381
|
-
},
|
|
382
|
-
"fund_share_1": {
|
|
383
|
-
"from": [
|
|
384
|
-
"created"
|
|
385
|
-
],
|
|
386
|
-
"to": "pooling_1"
|
|
387
|
-
},
|
|
388
|
-
"fund_share_2": {
|
|
389
|
-
"from": [
|
|
390
|
-
"pooling_1"
|
|
391
|
-
],
|
|
392
|
-
"to": "pooled"
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
|
-
},
|
|
396
|
-
"parties": {
|
|
397
|
-
"beneficiary": "firstRecipientAccountId",
|
|
398
|
-
"payer": "payerAccountId"
|
|
399
|
-
},
|
|
400
|
-
"partitions": [
|
|
401
|
-
{
|
|
402
|
-
"pieceFields": [
|
|
403
|
-
"firstRecipientShareAmount",
|
|
404
|
-
"secondRecipientShareAmount"
|
|
405
|
-
],
|
|
406
|
-
"totalField": "poolAmount"
|
|
407
|
-
}
|
|
408
|
-
],
|
|
409
|
-
"required": [
|
|
410
|
-
"payerAccountId",
|
|
411
|
-
"firstRecipientAccountId",
|
|
412
|
-
"secondRecipientAccountId",
|
|
413
|
-
"poolAmount",
|
|
414
|
-
"payoutDueAt",
|
|
415
|
-
"firstRecipientShareAmount",
|
|
416
|
-
"secondRecipientShareAmount",
|
|
417
|
-
"currency"
|
|
418
|
-
],
|
|
419
|
-
"summary": "Period pool from payer split 2 ways",
|
|
420
|
-
"templateBinding": {
|
|
421
|
-
"id": "pooled_split",
|
|
422
|
-
"parameters": {}
|
|
423
|
-
},
|
|
424
|
-
"title": "Pool"
|
|
425
|
-
}
|
|
426
|
-
],
|
|
427
|
-
"product": "pooled_split_example",
|
|
428
|
-
"subjects": [],
|
|
429
|
-
"title": "Pooled split example",
|
|
430
|
-
"udl": 1,
|
|
431
|
-
"version": 1
|
|
432
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
program premium_forward_example "Premium forward example"
|
|
2
|
-
import { premium_forward } from "std/money_flows"
|
|
3
|
-
party policyholder: person
|
|
4
|
-
party carrier: business
|
|
5
|
-
settlement premium = premium_forward {
|
|
6
|
-
payer: policyholder
|
|
7
|
-
carrier: carrier
|
|
8
|
-
amount: premiumAmount: money(SAR)
|
|
9
|
-
commission: 2%
|
|
10
|
-
bind: port bind_policy
|
|
11
|
-
policy_ref: policyReference
|
|
12
|
-
renewal_due: renewalDueAt
|
|
13
|
-
endorsement: port record_endorsement
|
|
14
|
-
}
|
|
15
|
-
port bind_policy { allowed: [policyholder, carrier] }
|
|
16
|
-
port record_endorsement {
|
|
17
|
-
allowed: [carrier]
|
|
18
|
-
shape: { evidenceReference: text }
|
|
19
|
-
}
|