@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,312 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"instruments": [
|
|
3
|
-
{
|
|
4
|
-
"actionOrder": [
|
|
5
|
-
"create",
|
|
6
|
-
"instruct",
|
|
7
|
-
"settle"
|
|
8
|
-
],
|
|
9
|
-
"actions": {
|
|
10
|
-
"create": {
|
|
11
|
-
"agentDescription": "Open the payout row with the treasury and supplier accounts, the amount, the beneficiary reference, and the settle date. No money moves and no instruction goes out yet. Call instruct next.",
|
|
12
|
-
"moves": [],
|
|
13
|
-
"publicAction": "createSupplierPayout",
|
|
14
|
-
"steps": [],
|
|
15
|
-
"summary": "Create a supplier payout"
|
|
16
|
-
},
|
|
17
|
-
"instruct": {
|
|
18
|
-
"agentDescription": "Send the payout instruction and start the expectation clock. This commits the amount to the supplier and the payout is not reversible from here. The bank debit is matched later by settle, which runs on its own at the settle date.",
|
|
19
|
-
"effects": {
|
|
20
|
-
"moves": [
|
|
21
|
-
{
|
|
22
|
-
"signature": "moves.payout.external",
|
|
23
|
-
"source": "payout"
|
|
24
|
-
}
|
|
25
|
-
]
|
|
26
|
-
},
|
|
27
|
-
"moves": [],
|
|
28
|
-
"payout": {
|
|
29
|
-
"amount": "fields.netPayable",
|
|
30
|
-
"beneficiaryField": "supplierBeneficiaryId",
|
|
31
|
-
"beneficiaryPartyField": "supplierAccountId",
|
|
32
|
-
"capture": "payoutId",
|
|
33
|
-
"currencyField": "currency",
|
|
34
|
-
"sourceAccountField": "treasuryAccountId",
|
|
35
|
-
"speed": "standard"
|
|
36
|
-
},
|
|
37
|
-
"publicAction": "instructSupplierPayout",
|
|
38
|
-
"steps": [],
|
|
39
|
-
"summary": "Instruct the payout to the supplier"
|
|
40
|
-
},
|
|
41
|
-
"settle": {
|
|
42
|
-
"due": {
|
|
43
|
-
"field": "settleBy"
|
|
44
|
-
},
|
|
45
|
-
"effects": {
|
|
46
|
-
"reads": [
|
|
47
|
-
{
|
|
48
|
-
"signature": "reads.reconcile",
|
|
49
|
-
"source": "reconcile[0]"
|
|
50
|
-
}
|
|
51
|
-
],
|
|
52
|
-
"schedules": [
|
|
53
|
-
{
|
|
54
|
-
"signature": "schedules.due",
|
|
55
|
-
"source": "due"
|
|
56
|
-
}
|
|
57
|
-
]
|
|
58
|
-
},
|
|
59
|
-
"moves": [],
|
|
60
|
-
"reconcile": [
|
|
61
|
-
{
|
|
62
|
-
"amount": "fields.netPayable",
|
|
63
|
-
"capture": "settlementEvidenceId",
|
|
64
|
-
"counterpartyRef": "payoutId",
|
|
65
|
-
"currencyField": "currency",
|
|
66
|
-
"direction": "debit",
|
|
67
|
-
"evidence": "statement_line",
|
|
68
|
-
"exception": {
|
|
69
|
-
"amountField": "unmatchedAmount",
|
|
70
|
-
"childInstrumentId": "supplier_payout_break",
|
|
71
|
-
"maxOpen": 1,
|
|
72
|
-
"reasonField": "breakReason",
|
|
73
|
-
"refField": "supplierPayoutId"
|
|
74
|
-
},
|
|
75
|
-
"match": {
|
|
76
|
-
"dial": "settlement_tolerance",
|
|
77
|
-
"law": "tolerance",
|
|
78
|
-
"minorUnits": 100
|
|
79
|
-
},
|
|
80
|
-
"within": {
|
|
81
|
-
"field": "settleBy"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
],
|
|
85
|
-
"steps": [],
|
|
86
|
-
"summary": "Match the bank's debit against what the instruction promised"
|
|
87
|
-
}
|
|
88
|
-
},
|
|
89
|
-
"agentDescription": "Reach for reconciled payout when a payment to the supplier is not finished until the bank confirms the debit. The instruction goes out, the expectation waits for a matching statement line, and anything still unmatched at the settle date becomes a break row instead of disappearing. Pick instant transfer when no bank confirmation is involved.",
|
|
90
|
-
"description": "A payout the instrument owns end to end: one instruction, one expectation about the debit it will produce, and one break when the debit never matches",
|
|
91
|
-
"dials": [
|
|
92
|
-
{
|
|
93
|
-
"key": "settlement_tolerance",
|
|
94
|
-
"kind": "reconcile_tolerance",
|
|
95
|
-
"maxMinorUnits": 500,
|
|
96
|
-
"summary": "Largest difference between the instructed amount and the settled debit that still counts as matched.",
|
|
97
|
-
"title": "Settlement tolerance"
|
|
98
|
-
}
|
|
99
|
-
],
|
|
100
|
-
"fields": {
|
|
101
|
-
"currency": {
|
|
102
|
-
"description": "ISO 4217 currency code",
|
|
103
|
-
"maxLength": 3,
|
|
104
|
-
"minLength": 3,
|
|
105
|
-
"pattern": "^[A-Z]{3}$",
|
|
106
|
-
"type": "string"
|
|
107
|
-
},
|
|
108
|
-
"netPayable": {
|
|
109
|
-
"description": "Amount instructed to the supplier in minor units",
|
|
110
|
-
"pattern": "^[1-9][0-9]{0,17}$",
|
|
111
|
-
"type": "string",
|
|
112
|
-
"x-hyperscale-currency": "SAR"
|
|
113
|
-
},
|
|
114
|
-
"settleBy": {
|
|
115
|
-
"description": "Instant the expectation stops waiting and the unmatched amount becomes a break",
|
|
116
|
-
"format": "hyperscale-date-time",
|
|
117
|
-
"type": "string"
|
|
118
|
-
},
|
|
119
|
-
"supplierAccountId": {
|
|
120
|
-
"description": "The supplier account",
|
|
121
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
122
|
-
"type": "string",
|
|
123
|
-
"x-hyperscale-reference-filter": {
|
|
124
|
-
"column": "role",
|
|
125
|
-
"values": [
|
|
126
|
-
"customer_balance"
|
|
127
|
-
]
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
"supplierBeneficiaryId": {
|
|
131
|
-
"description": "Beneficiary ID for the payout instruction",
|
|
132
|
-
"pattern": "^ben_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
133
|
-
"type": "string"
|
|
134
|
-
},
|
|
135
|
-
"treasuryAccountId": {
|
|
136
|
-
"description": "The treasury account the payout leaves",
|
|
137
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
138
|
-
"type": "string",
|
|
139
|
-
"x-hyperscale-reference-filter": {
|
|
140
|
-
"column": "role",
|
|
141
|
-
"values": [
|
|
142
|
-
"customer_balance"
|
|
143
|
-
]
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
},
|
|
147
|
-
"id": "supplier_payout",
|
|
148
|
-
"idPrefix": "sp",
|
|
149
|
-
"lifecycle": {
|
|
150
|
-
"initial": "created",
|
|
151
|
-
"states": [
|
|
152
|
-
"created",
|
|
153
|
-
"instructed",
|
|
154
|
-
"settled"
|
|
155
|
-
],
|
|
156
|
-
"transitions": {
|
|
157
|
-
"instruct": {
|
|
158
|
-
"from": [
|
|
159
|
-
"created"
|
|
160
|
-
],
|
|
161
|
-
"to": "instructed"
|
|
162
|
-
},
|
|
163
|
-
"settle": {
|
|
164
|
-
"from": [
|
|
165
|
-
"instructed"
|
|
166
|
-
],
|
|
167
|
-
"to": "settled"
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
},
|
|
171
|
-
"parties": {
|
|
172
|
-
"beneficiary": "supplierAccountId",
|
|
173
|
-
"payer": "treasuryAccountId"
|
|
174
|
-
},
|
|
175
|
-
"required": [
|
|
176
|
-
"netPayable",
|
|
177
|
-
"supplierAccountId",
|
|
178
|
-
"supplierBeneficiaryId",
|
|
179
|
-
"currency",
|
|
180
|
-
"treasuryAccountId",
|
|
181
|
-
"settleBy"
|
|
182
|
-
],
|
|
183
|
-
"summary": "Payout from treasury to supplier that is not done until the bank agrees",
|
|
184
|
-
"templateBinding": {
|
|
185
|
-
"id": "reconciled_payout",
|
|
186
|
-
"parameters": {
|
|
187
|
-
"matchedCeiling": 500,
|
|
188
|
-
"matchedWithin": 100
|
|
189
|
-
}
|
|
190
|
-
},
|
|
191
|
-
"title": "Supplier payout"
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
"actionOrder": [
|
|
195
|
-
"create",
|
|
196
|
-
"carry"
|
|
197
|
-
],
|
|
198
|
-
"actions": {
|
|
199
|
-
"carry": {
|
|
200
|
-
"agentDescription": "Hand the break to whoever owns resolving it. No money moves. The payout must still be instructed. This is the only exit from a raised break, so a break is never closed by dropping it.",
|
|
201
|
-
"effects": {
|
|
202
|
-
"reads": [
|
|
203
|
-
{
|
|
204
|
-
"signature": "reads.requires_refs",
|
|
205
|
-
"source": "requiresRefs"
|
|
206
|
-
}
|
|
207
|
-
]
|
|
208
|
-
},
|
|
209
|
-
"moves": [],
|
|
210
|
-
"publicAction": "carrySupplierPayoutBreak",
|
|
211
|
-
"requiresRefs": [
|
|
212
|
-
{
|
|
213
|
-
"field": "supplierPayoutId",
|
|
214
|
-
"match": {
|
|
215
|
-
"fields.currency": "fields.currency"
|
|
216
|
-
},
|
|
217
|
-
"statuses": [
|
|
218
|
-
"instructed"
|
|
219
|
-
]
|
|
220
|
-
}
|
|
221
|
-
],
|
|
222
|
-
"steps": [],
|
|
223
|
-
"summary": "Carry the break to whoever owns it"
|
|
224
|
-
},
|
|
225
|
-
"create": {
|
|
226
|
-
"agentDescription": "Raise a break against an instructed payout, recording the unmatched amount and why the expectation went unmatched. No money moves. The payout must still be instructed, and only one open break exists per payout.",
|
|
227
|
-
"effects": {
|
|
228
|
-
"reads": [
|
|
229
|
-
{
|
|
230
|
-
"signature": "reads.requires_refs",
|
|
231
|
-
"source": "requiresRefs"
|
|
232
|
-
}
|
|
233
|
-
]
|
|
234
|
-
},
|
|
235
|
-
"moves": [],
|
|
236
|
-
"publicAction": "createSupplierPayoutBreak",
|
|
237
|
-
"requiresRefs": [
|
|
238
|
-
{
|
|
239
|
-
"field": "supplierPayoutId",
|
|
240
|
-
"match": {
|
|
241
|
-
"fields.currency": "fields.currency"
|
|
242
|
-
},
|
|
243
|
-
"statuses": [
|
|
244
|
-
"instructed"
|
|
245
|
-
]
|
|
246
|
-
}
|
|
247
|
-
],
|
|
248
|
-
"steps": [],
|
|
249
|
-
"summary": "Raise a break against an instructed payout"
|
|
250
|
-
}
|
|
251
|
-
},
|
|
252
|
-
"agentDescription": "Reach for this child row when a supplier payout expectation reached its window with no matching bank debit. The break carries the unmatched amount and the reason so the difference is owned by someone rather than silently dropped.",
|
|
253
|
-
"description": "One break raised when a payout expectation reached its window with no matching debit; it is carried, never silently dropped",
|
|
254
|
-
"fields": {
|
|
255
|
-
"breakReason": {
|
|
256
|
-
"description": "Why the expectation went unmatched",
|
|
257
|
-
"maxLength": 180,
|
|
258
|
-
"minLength": 1,
|
|
259
|
-
"type": "string"
|
|
260
|
-
},
|
|
261
|
-
"currency": {
|
|
262
|
-
"description": "ISO 4217 currency code",
|
|
263
|
-
"maxLength": 3,
|
|
264
|
-
"minLength": 3,
|
|
265
|
-
"pattern": "^[A-Z]{3}$",
|
|
266
|
-
"type": "string"
|
|
267
|
-
},
|
|
268
|
-
"supplierPayoutId": {
|
|
269
|
-
"description": "Payout whose expectation broke",
|
|
270
|
-
"pattern": "^sp_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
271
|
-
"type": "string"
|
|
272
|
-
},
|
|
273
|
-
"unmatchedAmount": {
|
|
274
|
-
"description": "Difference between the instructed amount and the evidence, in minor units",
|
|
275
|
-
"pattern": "^[1-9][0-9]{0,17}$",
|
|
276
|
-
"type": "string",
|
|
277
|
-
"x-hyperscale-currency": "SAR"
|
|
278
|
-
}
|
|
279
|
-
},
|
|
280
|
-
"id": "supplier_payout_break",
|
|
281
|
-
"idPrefix": "spbk",
|
|
282
|
-
"lifecycle": {
|
|
283
|
-
"initial": "created",
|
|
284
|
-
"states": [
|
|
285
|
-
"created",
|
|
286
|
-
"carried"
|
|
287
|
-
],
|
|
288
|
-
"transitions": {
|
|
289
|
-
"carry": {
|
|
290
|
-
"from": [
|
|
291
|
-
"created"
|
|
292
|
-
],
|
|
293
|
-
"to": "carried"
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
},
|
|
297
|
-
"required": [
|
|
298
|
-
"breakReason",
|
|
299
|
-
"currency",
|
|
300
|
-
"unmatchedAmount",
|
|
301
|
-
"supplierPayoutId"
|
|
302
|
-
],
|
|
303
|
-
"summary": "Unmatched settlement expectation carried as its own row",
|
|
304
|
-
"title": "Supplier payout Break"
|
|
305
|
-
}
|
|
306
|
-
],
|
|
307
|
-
"product": "reconciled_payout_example",
|
|
308
|
-
"subjects": [],
|
|
309
|
-
"title": "Reconciled payout example",
|
|
310
|
-
"udl": 1,
|
|
311
|
-
"version": 1
|
|
312
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
program rotating_pool_example "Rotating pool example"
|
|
2
|
-
import { rotating_pool } from "std/money_flows"
|
|
3
|
-
party member_a: person
|
|
4
|
-
party member_b: person
|
|
5
|
-
party member_c: person
|
|
6
|
-
party guarantor: business
|
|
7
|
-
settlement pool = rotating_pool {
|
|
8
|
-
members: [member_a, member_b, member_c]
|
|
9
|
-
contribution: contributionAmount: money(SAR)
|
|
10
|
-
count: 3
|
|
11
|
-
every: P30D
|
|
12
|
-
first_due: firstContributionAt
|
|
13
|
-
payout_order: [member_b, member_c, member_a]
|
|
14
|
-
default_policy: due_condition
|
|
15
|
-
guarantee_policy: funded_only
|
|
16
|
-
guarantor: guarantor
|
|
17
|
-
exit_policy: before_activation_only
|
|
18
|
-
}
|