@hyperscale0/hsx 2.4.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -408
- 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 +76 -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 +77 -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,15 +0,0 @@
|
|
|
1
|
-
program conditional_disbursement_example "Conditional disbursement example"
|
|
2
|
-
import { conditional_disbursement } from "std/money_flows"
|
|
3
|
-
party source: business
|
|
4
|
-
party claimant: person
|
|
5
|
-
settlement claim_payment = conditional_disbursement {
|
|
6
|
-
source: source
|
|
7
|
-
destination: claimant
|
|
8
|
-
cap: policyLimit: money(SAR)
|
|
9
|
-
amount: approvedAmount: money(SAR)
|
|
10
|
-
decision: port approve_claim
|
|
11
|
-
}
|
|
12
|
-
port approve_claim {
|
|
13
|
-
allowed: [source]
|
|
14
|
-
shape: { evidenceReference: text }
|
|
15
|
-
}
|
|
@@ -1,418 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"instruments": [
|
|
3
|
-
{
|
|
4
|
-
"actionOrder": [
|
|
5
|
-
"create",
|
|
6
|
-
"deny"
|
|
7
|
-
],
|
|
8
|
-
"actions": {
|
|
9
|
-
"create": {
|
|
10
|
-
"agentDescription": "Open the capped disbursement before any amount is approved. The caller supplies the policyLimit, the currency, and the source and claimant accounts. No money moves and nothing is approved yet.",
|
|
11
|
-
"moves": [],
|
|
12
|
-
"publicAction": "createClaimPayment",
|
|
13
|
-
"steps": [],
|
|
14
|
-
"summary": "Submit the capped disbursement"
|
|
15
|
-
},
|
|
16
|
-
"deny": {
|
|
17
|
-
"agentDescription": "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.",
|
|
18
|
-
"captureInput": {
|
|
19
|
-
"evidenceReference": "evidenceReference"
|
|
20
|
-
},
|
|
21
|
-
"effects": {
|
|
22
|
-
"decides": [
|
|
23
|
-
{
|
|
24
|
-
"signature": "decides.tenant_port",
|
|
25
|
-
"source": "port"
|
|
26
|
-
}
|
|
27
|
-
],
|
|
28
|
-
"reads": [
|
|
29
|
-
{
|
|
30
|
-
"signature": "reads.requires_aggregate",
|
|
31
|
-
"source": "requiresAggregate"
|
|
32
|
-
}
|
|
33
|
-
]
|
|
34
|
-
},
|
|
35
|
-
"input": {
|
|
36
|
-
"additionalProperties": false,
|
|
37
|
-
"properties": {
|
|
38
|
-
"evidenceReference": {
|
|
39
|
-
"description": "Required decision reference retained in the operation receipt",
|
|
40
|
-
"maxLength": 180,
|
|
41
|
-
"minLength": 1,
|
|
42
|
-
"type": "string"
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"required": [
|
|
46
|
-
"evidenceReference"
|
|
47
|
-
],
|
|
48
|
-
"type": "object"
|
|
49
|
-
},
|
|
50
|
-
"moves": [],
|
|
51
|
-
"port": {
|
|
52
|
-
"allowedParties": [
|
|
53
|
-
"payer"
|
|
54
|
-
]
|
|
55
|
-
},
|
|
56
|
-
"publicAction": "denyClaimPayment",
|
|
57
|
-
"requiresAggregate": [
|
|
58
|
-
{
|
|
59
|
-
"check": {
|
|
60
|
-
"kind": "all_in"
|
|
61
|
-
},
|
|
62
|
-
"instrumentId": "claim_payment_approved_amount",
|
|
63
|
-
"over": "children",
|
|
64
|
-
"refField": "claimPaymentId",
|
|
65
|
-
"statuses": [
|
|
66
|
-
"created"
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
],
|
|
70
|
-
"steps": [],
|
|
71
|
-
"summary": "Record a denial without moving money"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
"agentDescription": "Reach for conditional disbursement when the source pays the claimant only against stored external evidence and the payouts must stay under policyLimit. Each approved amount is its own child row. Pick instant transfer when no evidence gates the payment.",
|
|
75
|
-
"description": "Capped disbursement controlled by stored external evidence",
|
|
76
|
-
"fields": {
|
|
77
|
-
"claimantAccountId": {
|
|
78
|
-
"description": "The claimant account",
|
|
79
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
80
|
-
"type": "string",
|
|
81
|
-
"x-hyperscale-reference-filter": {
|
|
82
|
-
"column": "role",
|
|
83
|
-
"values": [
|
|
84
|
-
"customer_balance"
|
|
85
|
-
]
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"currency": {
|
|
89
|
-
"description": "ISO 4217 currency code",
|
|
90
|
-
"maxLength": 3,
|
|
91
|
-
"minLength": 3,
|
|
92
|
-
"pattern": "^[A-Z]{3}$",
|
|
93
|
-
"type": "string"
|
|
94
|
-
},
|
|
95
|
-
"policyLimit": {
|
|
96
|
-
"description": "Disbursement cap in SAR minor units",
|
|
97
|
-
"pattern": "^[1-9][0-9]{0,17}$",
|
|
98
|
-
"type": "string",
|
|
99
|
-
"x-hyperscale-currency": "SAR"
|
|
100
|
-
},
|
|
101
|
-
"sourceAccountId": {
|
|
102
|
-
"description": "The source account",
|
|
103
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
104
|
-
"type": "string",
|
|
105
|
-
"x-hyperscale-reference-filter": {
|
|
106
|
-
"column": "role",
|
|
107
|
-
"values": [
|
|
108
|
-
"customer_balance"
|
|
109
|
-
]
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
|
-
"id": "claim_payment",
|
|
114
|
-
"idPrefix": "cp",
|
|
115
|
-
"lifecycle": {
|
|
116
|
-
"initial": "submitted",
|
|
117
|
-
"states": [
|
|
118
|
-
"submitted",
|
|
119
|
-
"denied"
|
|
120
|
-
],
|
|
121
|
-
"transitions": {
|
|
122
|
-
"deny": {
|
|
123
|
-
"from": [
|
|
124
|
-
"submitted"
|
|
125
|
-
],
|
|
126
|
-
"to": "denied"
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
"parties": {
|
|
131
|
-
"beneficiary": "claimantAccountId",
|
|
132
|
-
"payer": "sourceAccountId"
|
|
133
|
-
},
|
|
134
|
-
"required": [
|
|
135
|
-
"claimantAccountId",
|
|
136
|
-
"sourceAccountId",
|
|
137
|
-
"currency",
|
|
138
|
-
"policyLimit"
|
|
139
|
-
],
|
|
140
|
-
"summary": "Capped disbursement to claimant",
|
|
141
|
-
"templateBinding": {
|
|
142
|
-
"id": "conditional_disbursement",
|
|
143
|
-
"parameters": {}
|
|
144
|
-
},
|
|
145
|
-
"title": "Claim payment"
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
"actionOrder": [
|
|
149
|
-
"create",
|
|
150
|
-
"approve",
|
|
151
|
-
"pay"
|
|
152
|
-
],
|
|
153
|
-
"actions": {
|
|
154
|
-
"approve": {
|
|
155
|
-
"agentDescription": "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 policyLimit. The caller passes evidenceReference. No money moves yet.",
|
|
156
|
-
"captureInput": {
|
|
157
|
-
"decisionEvidenceReference": "evidenceReference"
|
|
158
|
-
},
|
|
159
|
-
"effects": {
|
|
160
|
-
"decides": [
|
|
161
|
-
{
|
|
162
|
-
"signature": "decides.tenant_port",
|
|
163
|
-
"source": "port"
|
|
164
|
-
}
|
|
165
|
-
],
|
|
166
|
-
"reads": [
|
|
167
|
-
{
|
|
168
|
-
"signature": "reads.requires_refs",
|
|
169
|
-
"source": "requiresRefs"
|
|
170
|
-
}
|
|
171
|
-
]
|
|
172
|
-
},
|
|
173
|
-
"input": {
|
|
174
|
-
"additionalProperties": false,
|
|
175
|
-
"properties": {
|
|
176
|
-
"evidenceReference": {
|
|
177
|
-
"description": "Required decision reference retained in the operation receipt",
|
|
178
|
-
"maxLength": 180,
|
|
179
|
-
"minLength": 1,
|
|
180
|
-
"type": "string"
|
|
181
|
-
}
|
|
182
|
-
},
|
|
183
|
-
"required": [
|
|
184
|
-
"evidenceReference"
|
|
185
|
-
],
|
|
186
|
-
"type": "object"
|
|
187
|
-
},
|
|
188
|
-
"moves": [],
|
|
189
|
-
"port": {
|
|
190
|
-
"allowedParties": [
|
|
191
|
-
"payer"
|
|
192
|
-
]
|
|
193
|
-
},
|
|
194
|
-
"publicAction": "approveClaimPaymentApprovedAmount",
|
|
195
|
-
"requiresExposure": [
|
|
196
|
-
{
|
|
197
|
-
"amountField": "amount",
|
|
198
|
-
"anchorField": "claimPaymentId",
|
|
199
|
-
"capField": "policyLimit",
|
|
200
|
-
"capOnAnchor": true,
|
|
201
|
-
"childInstrumentId": "claim_payment_approved_amount",
|
|
202
|
-
"statuses": [
|
|
203
|
-
"approved",
|
|
204
|
-
"paid"
|
|
205
|
-
]
|
|
206
|
-
}
|
|
207
|
-
],
|
|
208
|
-
"requiresRefs": [
|
|
209
|
-
{
|
|
210
|
-
"field": "claimPaymentId",
|
|
211
|
-
"match": {
|
|
212
|
-
"fields.claimantAccountId": "fields.claimantAccountId",
|
|
213
|
-
"fields.currency": "fields.currency",
|
|
214
|
-
"fields.sourceAccountId": "fields.sourceAccountId"
|
|
215
|
-
},
|
|
216
|
-
"statuses": [
|
|
217
|
-
"submitted"
|
|
218
|
-
]
|
|
219
|
-
}
|
|
220
|
-
],
|
|
221
|
-
"steps": [],
|
|
222
|
-
"summary": "Store one externally approved amount under the cap"
|
|
223
|
-
},
|
|
224
|
-
"create": {
|
|
225
|
-
"agentDescription": "Create one candidate amount under the parent claim payment. 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.",
|
|
226
|
-
"effects": {
|
|
227
|
-
"reads": [
|
|
228
|
-
{
|
|
229
|
-
"signature": "reads.requires_refs",
|
|
230
|
-
"source": "requiresRefs"
|
|
231
|
-
}
|
|
232
|
-
]
|
|
233
|
-
},
|
|
234
|
-
"moves": [],
|
|
235
|
-
"publicAction": "createClaimPaymentApprovedAmount",
|
|
236
|
-
"requiresRefs": [
|
|
237
|
-
{
|
|
238
|
-
"bind": {
|
|
239
|
-
"claimantAccountId": "fields.claimantAccountId",
|
|
240
|
-
"currency": "fields.currency",
|
|
241
|
-
"sourceAccountId": "fields.sourceAccountId"
|
|
242
|
-
},
|
|
243
|
-
"field": "claimPaymentId",
|
|
244
|
-
"statuses": [
|
|
245
|
-
"submitted"
|
|
246
|
-
],
|
|
247
|
-
"unique": true
|
|
248
|
-
}
|
|
249
|
-
],
|
|
250
|
-
"steps": [],
|
|
251
|
-
"summary": "Create one candidate amount under the parent"
|
|
252
|
-
},
|
|
253
|
-
"pay": {
|
|
254
|
-
"agentDescription": "Pay the stored approved amount to the claimant once. The row must be approved and the parent still submitted. The transfer posts straight out of the source and does not unwind.",
|
|
255
|
-
"effects": {
|
|
256
|
-
"moves": [
|
|
257
|
-
{
|
|
258
|
-
"signature": "moves.transfer.internal",
|
|
259
|
-
"source": "moves[0]"
|
|
260
|
-
}
|
|
261
|
-
],
|
|
262
|
-
"reads": [
|
|
263
|
-
{
|
|
264
|
-
"signature": "reads.requires_refs",
|
|
265
|
-
"source": "requiresRefs"
|
|
266
|
-
}
|
|
267
|
-
]
|
|
268
|
-
},
|
|
269
|
-
"moves": [
|
|
270
|
-
{
|
|
271
|
-
"bind": {
|
|
272
|
-
"amount": {
|
|
273
|
-
"from": "instance",
|
|
274
|
-
"path": "fields.amount"
|
|
275
|
-
},
|
|
276
|
-
"currency": {
|
|
277
|
-
"from": "const",
|
|
278
|
-
"value": "SAR"
|
|
279
|
-
},
|
|
280
|
-
"destinationAccountId": {
|
|
281
|
-
"from": "instance",
|
|
282
|
-
"path": "fields.claimantAccountId"
|
|
283
|
-
},
|
|
284
|
-
"metadata.instrumentId": {
|
|
285
|
-
"from": "const",
|
|
286
|
-
"value": "claim_payment_approved_amount"
|
|
287
|
-
},
|
|
288
|
-
"metadata.instrumentInstanceId": {
|
|
289
|
-
"from": "instance",
|
|
290
|
-
"path": "instrumentInstanceId"
|
|
291
|
-
},
|
|
292
|
-
"metadata.phase": {
|
|
293
|
-
"from": "const",
|
|
294
|
-
"value": "pay"
|
|
295
|
-
},
|
|
296
|
-
"productId": {
|
|
297
|
-
"from": "instance",
|
|
298
|
-
"path": "productId"
|
|
299
|
-
},
|
|
300
|
-
"sourceAccountId": {
|
|
301
|
-
"from": "instance",
|
|
302
|
-
"path": "fields.sourceAccountId"
|
|
303
|
-
}
|
|
304
|
-
},
|
|
305
|
-
"capture": {
|
|
306
|
-
"payPayoutTransferId": "transferId"
|
|
307
|
-
},
|
|
308
|
-
"key": "payout",
|
|
309
|
-
"operation": "internal_transfer.create"
|
|
310
|
-
}
|
|
311
|
-
],
|
|
312
|
-
"publicAction": "payClaimPaymentApprovedAmount",
|
|
313
|
-
"requiresRefs": [
|
|
314
|
-
{
|
|
315
|
-
"field": "claimPaymentId",
|
|
316
|
-
"match": {
|
|
317
|
-
"fields.claimantAccountId": "fields.claimantAccountId",
|
|
318
|
-
"fields.currency": "fields.currency",
|
|
319
|
-
"fields.sourceAccountId": "fields.sourceAccountId"
|
|
320
|
-
},
|
|
321
|
-
"statuses": [
|
|
322
|
-
"submitted"
|
|
323
|
-
]
|
|
324
|
-
}
|
|
325
|
-
],
|
|
326
|
-
"steps": [],
|
|
327
|
-
"summary": "Pay the stored approved amount once"
|
|
328
|
-
}
|
|
329
|
-
},
|
|
330
|
-
"agentDescription": "Reach for this child row to hold one evidence-gated amount under a claim payment. The parent carries the policyLimit, this row carries one approved amount and pays it once.",
|
|
331
|
-
"description": "One evidence-gated amount under claim_payment",
|
|
332
|
-
"fields": {
|
|
333
|
-
"amount": {
|
|
334
|
-
"description": "Approved amount under the parent cap",
|
|
335
|
-
"pattern": "^[1-9][0-9]{0,17}$",
|
|
336
|
-
"type": "string",
|
|
337
|
-
"x-hyperscale-currency": "SAR"
|
|
338
|
-
},
|
|
339
|
-
"claimPaymentId": {
|
|
340
|
-
"description": "The exact claim_payment",
|
|
341
|
-
"pattern": "^cp_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
342
|
-
"type": "string"
|
|
343
|
-
},
|
|
344
|
-
"claimantAccountId": {
|
|
345
|
-
"description": "The claimant account",
|
|
346
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
347
|
-
"type": "string",
|
|
348
|
-
"x-hyperscale-reference-filter": {
|
|
349
|
-
"column": "role",
|
|
350
|
-
"values": [
|
|
351
|
-
"customer_balance"
|
|
352
|
-
]
|
|
353
|
-
}
|
|
354
|
-
},
|
|
355
|
-
"currency": {
|
|
356
|
-
"description": "ISO 4217 currency code",
|
|
357
|
-
"maxLength": 3,
|
|
358
|
-
"minLength": 3,
|
|
359
|
-
"pattern": "^[A-Z]{3}$",
|
|
360
|
-
"type": "string"
|
|
361
|
-
},
|
|
362
|
-
"sourceAccountId": {
|
|
363
|
-
"description": "The source account",
|
|
364
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
365
|
-
"type": "string",
|
|
366
|
-
"x-hyperscale-reference-filter": {
|
|
367
|
-
"column": "role",
|
|
368
|
-
"values": [
|
|
369
|
-
"customer_balance"
|
|
370
|
-
]
|
|
371
|
-
}
|
|
372
|
-
}
|
|
373
|
-
},
|
|
374
|
-
"id": "claim_payment_approved_amount",
|
|
375
|
-
"idPrefix": "zzaa",
|
|
376
|
-
"lifecycle": {
|
|
377
|
-
"initial": "created",
|
|
378
|
-
"states": [
|
|
379
|
-
"created",
|
|
380
|
-
"approved",
|
|
381
|
-
"paid"
|
|
382
|
-
],
|
|
383
|
-
"transitions": {
|
|
384
|
-
"approve": {
|
|
385
|
-
"from": [
|
|
386
|
-
"created"
|
|
387
|
-
],
|
|
388
|
-
"to": "approved"
|
|
389
|
-
},
|
|
390
|
-
"pay": {
|
|
391
|
-
"from": [
|
|
392
|
-
"approved"
|
|
393
|
-
],
|
|
394
|
-
"to": "paid"
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
},
|
|
398
|
-
"parties": {
|
|
399
|
-
"beneficiary": "claimantAccountId",
|
|
400
|
-
"payer": "sourceAccountId"
|
|
401
|
-
},
|
|
402
|
-
"required": [
|
|
403
|
-
"claimantAccountId",
|
|
404
|
-
"sourceAccountId",
|
|
405
|
-
"amount",
|
|
406
|
-
"currency",
|
|
407
|
-
"claimPaymentId"
|
|
408
|
-
],
|
|
409
|
-
"summary": "Approved amount under claim_payment",
|
|
410
|
-
"title": "Claim payment Approved Amount"
|
|
411
|
-
}
|
|
412
|
-
],
|
|
413
|
-
"product": "conditional_disbursement_example",
|
|
414
|
-
"subjects": [],
|
|
415
|
-
"title": "Conditional disbursement example",
|
|
416
|
-
"udl": 1,
|
|
417
|
-
"version": 1
|
|
418
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
program credit_facility_example "Credit facility example"
|
|
2
|
-
import { credit_facility, scheduled } from "std/money_flows"
|
|
3
|
-
party lender: business
|
|
4
|
-
party borrower: business
|
|
5
|
-
party draw_destination: business
|
|
6
|
-
party repayment_source: business
|
|
7
|
-
settlement repayment = scheduled {
|
|
8
|
-
mode: obligation
|
|
9
|
-
payer: repayment_source
|
|
10
|
-
payee: lender
|
|
11
|
-
debtor: borrower
|
|
12
|
-
amount: principal: money(SAR)
|
|
13
|
-
count: 2
|
|
14
|
-
every: P30D
|
|
15
|
-
first_due: firstDueAt
|
|
16
|
-
}
|
|
17
|
-
settlement facility = credit_facility {
|
|
18
|
-
lender: lender
|
|
19
|
-
borrower: borrower
|
|
20
|
-
draw_destination: draw_destination
|
|
21
|
-
limit: facilityLimit: money(SAR)
|
|
22
|
-
expires_at: expiresAt
|
|
23
|
-
obligation: repayment.obligation
|
|
24
|
-
}
|