@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,413 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"instruments": [
|
|
3
|
-
{
|
|
4
|
-
"actionOrder": [
|
|
5
|
-
"create",
|
|
6
|
-
"take",
|
|
7
|
-
"complete",
|
|
8
|
-
"cancel",
|
|
9
|
-
"confirm",
|
|
10
|
-
"retain"
|
|
11
|
-
],
|
|
12
|
-
"actions": {
|
|
13
|
-
"cancel": {
|
|
14
|
-
"agentDescription": "Price the cancellation and freeze that price. No money moves. The penalty is computed from the time left before the start, and the quote expires on its own, after which a new cancel prices it again. Call confirm to spend the quote.",
|
|
15
|
-
"effects": {
|
|
16
|
-
"holds": [
|
|
17
|
-
{
|
|
18
|
-
"signature": "holds.quote",
|
|
19
|
-
"source": "quote"
|
|
20
|
-
}
|
|
21
|
-
],
|
|
22
|
-
"schedules": [
|
|
23
|
-
{
|
|
24
|
-
"signature": "schedules.expiry",
|
|
25
|
-
"source": "quote"
|
|
26
|
-
}
|
|
27
|
-
]
|
|
28
|
-
},
|
|
29
|
-
"moves": [],
|
|
30
|
-
"publicAction": "cancelStudioSession",
|
|
31
|
-
"quote": {
|
|
32
|
-
"anchorField": "startsAt",
|
|
33
|
-
"baseField": "sessionPrice",
|
|
34
|
-
"chargeRef": "cancellationPenaltyAmount",
|
|
35
|
-
"charges": [
|
|
36
|
-
{
|
|
37
|
-
"bps": 5000,
|
|
38
|
-
"withinOffset": "P2D"
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"bps": 1000
|
|
42
|
-
}
|
|
43
|
-
],
|
|
44
|
-
"expires": {
|
|
45
|
-
"offset": "PT30M"
|
|
46
|
-
},
|
|
47
|
-
"fixes": [
|
|
48
|
-
"sessionPrice",
|
|
49
|
-
"guestAccountId"
|
|
50
|
-
],
|
|
51
|
-
"netDestinationField": "guestAccountId",
|
|
52
|
-
"netRef": "cancellationRefundAmount"
|
|
53
|
-
},
|
|
54
|
-
"steps": [],
|
|
55
|
-
"summary": "Price the cancellation and hold that price open"
|
|
56
|
-
},
|
|
57
|
-
"complete": {
|
|
58
|
-
"due": {
|
|
59
|
-
"field": "startsAt"
|
|
60
|
-
},
|
|
61
|
-
"effects": {
|
|
62
|
-
"moves": [
|
|
63
|
-
{
|
|
64
|
-
"signature": "moves.transfer.internal",
|
|
65
|
-
"source": "moves[0]"
|
|
66
|
-
}
|
|
67
|
-
],
|
|
68
|
-
"schedules": [
|
|
69
|
-
{
|
|
70
|
-
"signature": "schedules.due",
|
|
71
|
-
"source": "due"
|
|
72
|
-
}
|
|
73
|
-
]
|
|
74
|
-
},
|
|
75
|
-
"moves": [
|
|
76
|
-
{
|
|
77
|
-
"bind": {
|
|
78
|
-
"amount": {
|
|
79
|
-
"from": "instance",
|
|
80
|
-
"path": "fields.sessionPrice"
|
|
81
|
-
},
|
|
82
|
-
"currency": {
|
|
83
|
-
"from": "const",
|
|
84
|
-
"value": "SAR"
|
|
85
|
-
},
|
|
86
|
-
"destinationAccountId": {
|
|
87
|
-
"from": "instance",
|
|
88
|
-
"path": "fields.studioAccountId"
|
|
89
|
-
},
|
|
90
|
-
"productId": {
|
|
91
|
-
"from": "instance",
|
|
92
|
-
"path": "productId"
|
|
93
|
-
},
|
|
94
|
-
"sourceAccountId": {
|
|
95
|
-
"from": "instance",
|
|
96
|
-
"path": "refs.bookingHoldingAccountId"
|
|
97
|
-
}
|
|
98
|
-
},
|
|
99
|
-
"capture": {
|
|
100
|
-
"releaseTransferId": "transferId"
|
|
101
|
-
},
|
|
102
|
-
"key": "release",
|
|
103
|
-
"operation": "internal_transfer.create"
|
|
104
|
-
}
|
|
105
|
-
],
|
|
106
|
-
"steps": [],
|
|
107
|
-
"summary": "Release the whole booking to the studio once the stay has started, even with a cancellation quote parked un-acted"
|
|
108
|
-
},
|
|
109
|
-
"confirm": {
|
|
110
|
-
"agentDescription": "Spend the frozen quote and return the net refund to the guest. This moves money and does not reverse. It requires an un-expired quote from cancel, and the penalty the refund left behind is paid to the studio by retain.",
|
|
111
|
-
"commit": "cancel",
|
|
112
|
-
"effects": {
|
|
113
|
-
"moves": [
|
|
114
|
-
{
|
|
115
|
-
"signature": "moves.transfer.internal",
|
|
116
|
-
"source": "moves[0]"
|
|
117
|
-
}
|
|
118
|
-
]
|
|
119
|
-
},
|
|
120
|
-
"moves": [
|
|
121
|
-
{
|
|
122
|
-
"bind": {
|
|
123
|
-
"amount": {
|
|
124
|
-
"from": "instance",
|
|
125
|
-
"path": "refs.cancellationRefundAmount"
|
|
126
|
-
},
|
|
127
|
-
"currency": {
|
|
128
|
-
"from": "const",
|
|
129
|
-
"value": "SAR"
|
|
130
|
-
},
|
|
131
|
-
"destinationAccountId": {
|
|
132
|
-
"from": "instance",
|
|
133
|
-
"path": "fields.guestAccountId"
|
|
134
|
-
},
|
|
135
|
-
"productId": {
|
|
136
|
-
"from": "instance",
|
|
137
|
-
"path": "productId"
|
|
138
|
-
},
|
|
139
|
-
"sourceAccountId": {
|
|
140
|
-
"from": "instance",
|
|
141
|
-
"path": "refs.bookingHoldingAccountId"
|
|
142
|
-
}
|
|
143
|
-
},
|
|
144
|
-
"capture": {
|
|
145
|
-
"cancellationTransferId": "transferId"
|
|
146
|
-
},
|
|
147
|
-
"key": "refund",
|
|
148
|
-
"operation": "internal_transfer.create"
|
|
149
|
-
}
|
|
150
|
-
],
|
|
151
|
-
"publicAction": "confirmStudioSession",
|
|
152
|
-
"steps": [],
|
|
153
|
-
"summary": "Spend the quoted cancellation and return the net to the guest"
|
|
154
|
-
},
|
|
155
|
-
"create": {
|
|
156
|
-
"agentDescription": "Open the booking and provision the holding account the price sits in. No money moves. The price, the currency, the start moment, and both party accounts are fixed here. Call take next to collect from the guest.",
|
|
157
|
-
"moves": [],
|
|
158
|
-
"publicAction": "createStudioSession",
|
|
159
|
-
"steps": [
|
|
160
|
-
{
|
|
161
|
-
"bind": {
|
|
162
|
-
"currency": {
|
|
163
|
-
"from": "const",
|
|
164
|
-
"value": "SAR"
|
|
165
|
-
},
|
|
166
|
-
"owner.id": {
|
|
167
|
-
"from": "instance",
|
|
168
|
-
"path": "productId"
|
|
169
|
-
},
|
|
170
|
-
"owner.type": {
|
|
171
|
-
"from": "const",
|
|
172
|
-
"value": "product"
|
|
173
|
-
},
|
|
174
|
-
"productId": {
|
|
175
|
-
"from": "instance",
|
|
176
|
-
"path": "productId"
|
|
177
|
-
},
|
|
178
|
-
"role": {
|
|
179
|
-
"from": "const",
|
|
180
|
-
"value": "product_escrow"
|
|
181
|
-
}
|
|
182
|
-
},
|
|
183
|
-
"capture": {
|
|
184
|
-
"bookingHoldingAccountId": "accountId"
|
|
185
|
-
},
|
|
186
|
-
"operation": "account.escrow.provision"
|
|
187
|
-
}
|
|
188
|
-
],
|
|
189
|
-
"summary": "Open a studio session and its holding account"
|
|
190
|
-
},
|
|
191
|
-
"retain": {
|
|
192
|
-
"agentDescription": "Pay the quoted cancellation penalty out of the holding account to the studio. This moves money and does not reverse. The booking must already be canceled, so the penalty figure is the one the quote fixed.",
|
|
193
|
-
"effects": {
|
|
194
|
-
"moves": [
|
|
195
|
-
{
|
|
196
|
-
"signature": "moves.transfer.internal",
|
|
197
|
-
"source": "moves[0]"
|
|
198
|
-
}
|
|
199
|
-
]
|
|
200
|
-
},
|
|
201
|
-
"moves": [
|
|
202
|
-
{
|
|
203
|
-
"bind": {
|
|
204
|
-
"amount": {
|
|
205
|
-
"from": "instance",
|
|
206
|
-
"path": "refs.cancellationPenaltyAmount"
|
|
207
|
-
},
|
|
208
|
-
"currency": {
|
|
209
|
-
"from": "const",
|
|
210
|
-
"value": "SAR"
|
|
211
|
-
},
|
|
212
|
-
"destinationAccountId": {
|
|
213
|
-
"from": "instance",
|
|
214
|
-
"path": "fields.studioAccountId"
|
|
215
|
-
},
|
|
216
|
-
"productId": {
|
|
217
|
-
"from": "instance",
|
|
218
|
-
"path": "productId"
|
|
219
|
-
},
|
|
220
|
-
"sourceAccountId": {
|
|
221
|
-
"from": "instance",
|
|
222
|
-
"path": "refs.bookingHoldingAccountId"
|
|
223
|
-
}
|
|
224
|
-
},
|
|
225
|
-
"capture": {
|
|
226
|
-
"penaltyTransferId": "transferId"
|
|
227
|
-
},
|
|
228
|
-
"key": "penalty",
|
|
229
|
-
"operation": "internal_transfer.create"
|
|
230
|
-
}
|
|
231
|
-
],
|
|
232
|
-
"publicAction": "retainStudioSession",
|
|
233
|
-
"steps": [],
|
|
234
|
-
"summary": "Pay the quoted penalty that the refund left behind to the studio"
|
|
235
|
-
},
|
|
236
|
-
"take": {
|
|
237
|
-
"agentDescription": "Move the whole booking price out of the guest account into the holding account. This moves money. Only a created booking takes. Neither party can spend the money until the booking completes or a cancellation is confirmed.",
|
|
238
|
-
"effects": {
|
|
239
|
-
"moves": [
|
|
240
|
-
{
|
|
241
|
-
"signature": "moves.transfer.internal",
|
|
242
|
-
"source": "moves[0]"
|
|
243
|
-
}
|
|
244
|
-
]
|
|
245
|
-
},
|
|
246
|
-
"moves": [
|
|
247
|
-
{
|
|
248
|
-
"bind": {
|
|
249
|
-
"amount": {
|
|
250
|
-
"from": "instance",
|
|
251
|
-
"path": "fields.sessionPrice"
|
|
252
|
-
},
|
|
253
|
-
"currency": {
|
|
254
|
-
"from": "const",
|
|
255
|
-
"value": "SAR"
|
|
256
|
-
},
|
|
257
|
-
"destinationAccountId": {
|
|
258
|
-
"from": "instance",
|
|
259
|
-
"path": "refs.bookingHoldingAccountId"
|
|
260
|
-
},
|
|
261
|
-
"productId": {
|
|
262
|
-
"from": "instance",
|
|
263
|
-
"path": "productId"
|
|
264
|
-
},
|
|
265
|
-
"sourceAccountId": {
|
|
266
|
-
"from": "instance",
|
|
267
|
-
"path": "fields.guestAccountId"
|
|
268
|
-
}
|
|
269
|
-
},
|
|
270
|
-
"capture": {
|
|
271
|
-
"bookingTransferId": "transferId"
|
|
272
|
-
},
|
|
273
|
-
"key": "booking",
|
|
274
|
-
"operation": "internal_transfer.create"
|
|
275
|
-
}
|
|
276
|
-
],
|
|
277
|
-
"publicAction": "takeStudioSession",
|
|
278
|
-
"sandboxFailurePoint": "funding",
|
|
279
|
-
"steps": [],
|
|
280
|
-
"summary": "Take the booking price from the guest into the holding account"
|
|
281
|
-
}
|
|
282
|
-
},
|
|
283
|
-
"agentDescription": "Reach for cancellable booking when the guest pays up front and can back out at a price they see before they agree to it. The money sits in a holding account, the penalty is priced against the time left before the start, and the quote is frozen until it expires. Pick held payment when there is no cancellation price to quote.",
|
|
284
|
-
"description": "A booking whose cancellation is quoted rather than argued: the penalty is priced against the time left before the start, frozen with the terms it was read from, and paid only if the guest confirms while the offer is still alive",
|
|
285
|
-
"fields": {
|
|
286
|
-
"currency": {
|
|
287
|
-
"description": "ISO 4217 currency code",
|
|
288
|
-
"maxLength": 3,
|
|
289
|
-
"minLength": 3,
|
|
290
|
-
"pattern": "^[A-Z]{3}$",
|
|
291
|
-
"type": "string"
|
|
292
|
-
},
|
|
293
|
-
"guestAccountId": {
|
|
294
|
-
"description": "The guest account the booking is taken from and the refund returns to",
|
|
295
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
296
|
-
"type": "string",
|
|
297
|
-
"x-hyperscale-reference-filter": {
|
|
298
|
-
"column": "role",
|
|
299
|
-
"values": [
|
|
300
|
-
"customer_balance"
|
|
301
|
-
]
|
|
302
|
-
}
|
|
303
|
-
},
|
|
304
|
-
"sessionPrice": {
|
|
305
|
-
"description": "Booking price in minor units, held away from both the guest and the studio until the booking ends",
|
|
306
|
-
"pattern": "^[1-9][0-9]{0,17}$",
|
|
307
|
-
"type": "string",
|
|
308
|
-
"x-hyperscale-currency": "SAR"
|
|
309
|
-
},
|
|
310
|
-
"startsAt": {
|
|
311
|
-
"description": "When the booking starts; the cancellation penalty is priced against the time left before it",
|
|
312
|
-
"format": "hyperscale-date-time",
|
|
313
|
-
"type": "string"
|
|
314
|
-
},
|
|
315
|
-
"studioAccountId": {
|
|
316
|
-
"description": "The studio account the booking and any penalty end up in",
|
|
317
|
-
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
318
|
-
"type": "string",
|
|
319
|
-
"x-hyperscale-reference-filter": {
|
|
320
|
-
"column": "role",
|
|
321
|
-
"values": [
|
|
322
|
-
"customer_balance"
|
|
323
|
-
]
|
|
324
|
-
}
|
|
325
|
-
}
|
|
326
|
-
},
|
|
327
|
-
"id": "studio_session",
|
|
328
|
-
"idPrefix": "ss",
|
|
329
|
-
"lifecycle": {
|
|
330
|
-
"initial": "created",
|
|
331
|
-
"states": [
|
|
332
|
-
"created",
|
|
333
|
-
"held",
|
|
334
|
-
"cancellation_quoted",
|
|
335
|
-
"canceled",
|
|
336
|
-
"settled",
|
|
337
|
-
"completed"
|
|
338
|
-
],
|
|
339
|
-
"transitions": {
|
|
340
|
-
"cancel": {
|
|
341
|
-
"from": [
|
|
342
|
-
"held"
|
|
343
|
-
],
|
|
344
|
-
"to": "cancellation_quoted"
|
|
345
|
-
},
|
|
346
|
-
"complete": {
|
|
347
|
-
"from": [
|
|
348
|
-
"held",
|
|
349
|
-
"cancellation_quoted"
|
|
350
|
-
],
|
|
351
|
-
"to": "completed"
|
|
352
|
-
},
|
|
353
|
-
"confirm": {
|
|
354
|
-
"from": [
|
|
355
|
-
"cancellation_quoted"
|
|
356
|
-
],
|
|
357
|
-
"to": "canceled"
|
|
358
|
-
},
|
|
359
|
-
"retain": {
|
|
360
|
-
"from": [
|
|
361
|
-
"canceled"
|
|
362
|
-
],
|
|
363
|
-
"to": "settled"
|
|
364
|
-
},
|
|
365
|
-
"take": {
|
|
366
|
-
"from": [
|
|
367
|
-
"created"
|
|
368
|
-
],
|
|
369
|
-
"to": "held"
|
|
370
|
-
}
|
|
371
|
-
}
|
|
372
|
-
},
|
|
373
|
-
"parties": {
|
|
374
|
-
"beneficiary": "studioAccountId",
|
|
375
|
-
"payer": "guestAccountId"
|
|
376
|
-
},
|
|
377
|
-
"required": [
|
|
378
|
-
"sessionPrice",
|
|
379
|
-
"currency",
|
|
380
|
-
"guestAccountId",
|
|
381
|
-
"studioAccountId",
|
|
382
|
-
"startsAt"
|
|
383
|
-
],
|
|
384
|
-
"summary": "Booking the guest can cancel at a price they see before they agree to it",
|
|
385
|
-
"templateBinding": {
|
|
386
|
-
"id": "cancellable_booking",
|
|
387
|
-
"parameters": {
|
|
388
|
-
"acceptance": false,
|
|
389
|
-
"authorityType": false,
|
|
390
|
-
"balanceBefore": false,
|
|
391
|
-
"cancelBands": false,
|
|
392
|
-
"collects": false,
|
|
393
|
-
"confirmationWindow": false,
|
|
394
|
-
"departure": false,
|
|
395
|
-
"depositBps": false,
|
|
396
|
-
"earlyPenaltyBps": 1000,
|
|
397
|
-
"latePenaltyBps": 5000,
|
|
398
|
-
"priceValue": false,
|
|
399
|
-
"supplierCost": false,
|
|
400
|
-
"supplierRole": false,
|
|
401
|
-
"taxBps": false,
|
|
402
|
-
"unpaidBand": false
|
|
403
|
-
}
|
|
404
|
-
},
|
|
405
|
-
"title": "Studio session"
|
|
406
|
-
}
|
|
407
|
-
],
|
|
408
|
-
"product": "cancellable_booking_example",
|
|
409
|
-
"subjects": [],
|
|
410
|
-
"title": "Cancellable booking example",
|
|
411
|
-
"udl": 1,
|
|
412
|
-
"version": 1
|
|
413
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
program captured_payment_example "Captured payment example"
|
|
2
|
-
import { captured_payment } from "std/money_flows"
|
|
3
|
-
party payer: person
|
|
4
|
-
party payee: business
|
|
5
|
-
settlement card_payment = captured_payment {
|
|
6
|
-
payer: payer
|
|
7
|
-
payee: payee
|
|
8
|
-
amount: authorizedAmount: money(SAR)
|
|
9
|
-
reserve_until: reserveUntil
|
|
10
|
-
correction: port correct_capture
|
|
11
|
-
external_reversal: port reverse_capture within P14D
|
|
12
|
-
}
|
|
13
|
-
port correct_capture { allowed: [payee] }
|
|
14
|
-
port reverse_capture {
|
|
15
|
-
allowed: [payee]
|
|
16
|
-
shape: { externalReference: text }
|
|
17
|
-
}
|