@hyperscale0/hsx 2.0.0 → 2.0.2
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 +25 -0
- package/dist/src/cli.d.ts +1 -1
- package/dist/src/diagnostics.d.ts.map +1 -1
- package/dist/src/diagnostics.js +7 -0
- package/dist/src/diagnostics.js.map +1 -1
- package/dist/src/std-bundle.js +19 -19
- package/dist/src/std-bundle.js.map +1 -1
- package/dist/src/typecheck.js +89 -1
- package/dist/src/typecheck.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/docs/guide/01-first-program.md +1 -1
- package/docs/guide/09-cost.md +1 -1
- package/docs/llms-full.txt +64 -39
- package/docs/llms.txt +2 -2
- package/docs/reference/cli.md +2 -2
- package/docs/reference/diagnostics.md +21 -1
- package/docs/reference/grammar.md +1 -1
- package/docs/reference/std/advance.md +1 -1
- package/docs/reference/std/cancellable_booking.md +1 -1
- package/docs/reference/std/captured_payment.md +1 -1
- package/docs/reference/std/conditional_disbursement.md +1 -1
- package/docs/reference/std/credit_facility.md +1 -1
- package/docs/reference/std/held_payment.md +41 -36
- package/docs/reference/std/instant_transfer.md +1 -1
- package/docs/reference/std/metered.md +1 -1
- package/docs/reference/std/pooled_split.md +1 -1
- package/docs/reference/std/premium_forward.md +1 -1
- package/docs/reference/std/reconciled_payout.md +1 -1
- package/docs/reference/std/recurring_collection.md +1 -1
- package/docs/reference/std/rotating_pool.md +1 -1
- package/docs/reference/std/scheduled.md +1 -1
- package/docs/reference/std/security_deposit.md +1 -1
- package/docs/reference/std/settlement_batch.md +1 -1
- package/docs/reference/std/swap.md +1 -1
- package/docs/reference/std/threshold_pool.md +1 -1
- package/docs/reference/std/weighted_distribution.md +1 -1
- package/docs/reference/types.md +1 -1
- package/docs/reference/udl-output.md +1 -1
- package/examples/advance/advance.udl +6 -6
- package/examples/cancellable_booking/cancellable_booking.udl +10 -10
- package/examples/captured_payment/captured_payment.udl +6 -6
- package/examples/conditional_disbursement/conditional_disbursement.udl +2 -2
- package/examples/cost-table.json +18 -78
- package/examples/credit_facility/credit_facility.udl +10 -10
- package/examples/held_payment/held_payment.udl +23 -12
- package/examples/instant_transfer/instant_transfer.udl +6 -6
- package/examples/metered/metered.udl +4 -4
- package/examples/pooled_split/pooled_split.udl +10 -10
- package/examples/premium_forward/premium_forward.udl +12 -12
- package/examples/recurring_collection/recurring_collection.udl +8 -8
- package/examples/rotating_pool/rotating_pool.udl +78 -78
- package/examples/scheduled/scheduled.udl +6 -6
- package/examples/security_deposit/security_deposit.udl +2 -2
- package/examples/swap/swap.udl +22 -22
- package/examples/threshold_pool/threshold_pool.udl +10 -10
- package/examples/weighted_distribution/weighted_distribution.udl +2 -2
- package/package.json +3 -3
- package/skills/hsx/SKILL.md +2 -2
- package/src/diagnostics.ts +10 -0
- package/src/std-bundle.ts +19 -19
- package/src/typecheck.ts +105 -1
- package/src/version.ts +1 -1
- package/std/money_flows/advance.hsx +45 -0
- package/std/money_flows/cancellable_booking.hsx +45 -0
- package/std/money_flows/captured_payment.hsx +55 -0
- package/std/money_flows/conditional_disbursement.hsx +46 -0
- package/std/money_flows/credit_facility.hsx +57 -0
- package/std/money_flows/held_payment.hsx +152 -3
- package/std/money_flows/instant_transfer.hsx +42 -0
- package/std/money_flows/metered.hsx +41 -0
- package/std/money_flows/pooled_split.hsx +41 -0
- package/std/money_flows/premium_forward.hsx +51 -0
- package/std/money_flows/reconciled_payout.hsx +42 -0
- package/std/money_flows/recurring_collection.hsx +45 -0
- package/std/money_flows/rotating_pool.hsx +51 -0
- package/std/money_flows/scheduled.hsx +53 -0
- package/std/money_flows/security_deposit.hsx +58 -0
- package/std/money_flows/settlement_batch.hsx +51 -0
- package/std/money_flows/swap.hsx +53 -0
- package/std/money_flows/threshold_pool.hsx +51 -0
- package/std/money_flows/weighted_distribution.hsx +54 -0
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"path": "fields.authorizedAmount"
|
|
39
39
|
},
|
|
40
40
|
"currency": {
|
|
41
|
-
"from": "
|
|
42
|
-
"
|
|
41
|
+
"from": "const",
|
|
42
|
+
"value": "SAR"
|
|
43
43
|
},
|
|
44
44
|
"destinationAccountId": {
|
|
45
45
|
"from": "instance",
|
|
@@ -231,8 +231,8 @@
|
|
|
231
231
|
"path": "refs.capturedAmount"
|
|
232
232
|
},
|
|
233
233
|
"currency": {
|
|
234
|
-
"from": "
|
|
235
|
-
"
|
|
234
|
+
"from": "const",
|
|
235
|
+
"value": "SAR"
|
|
236
236
|
},
|
|
237
237
|
"destinationAccountId": {
|
|
238
238
|
"from": "instance",
|
|
@@ -374,8 +374,8 @@
|
|
|
374
374
|
"path": "refs.capturedAmount"
|
|
375
375
|
},
|
|
376
376
|
"currency": {
|
|
377
|
-
"from": "
|
|
378
|
-
"
|
|
377
|
+
"from": "const",
|
|
378
|
+
"value": "SAR"
|
|
379
379
|
},
|
|
380
380
|
"destinationAccountId": {
|
|
381
381
|
"from": "instance",
|
package/examples/cost-table.json
CHANGED
|
@@ -4,33 +4,18 @@
|
|
|
4
4
|
"declaredMeters": [
|
|
5
5
|
"account.active_month",
|
|
6
6
|
"collection.pay_in.count",
|
|
7
|
-
"collection.pay_in.volume_eur",
|
|
8
|
-
"collection.pay_in.volume_gbp",
|
|
9
7
|
"collection.pay_in.volume_sar",
|
|
10
|
-
"collection.pay_in.volume_usd",
|
|
11
8
|
"deposit.attributed.count",
|
|
12
|
-
"deposit.attributed.volume_eur",
|
|
13
|
-
"deposit.attributed.volume_gbp",
|
|
14
9
|
"deposit.attributed.volume_sar",
|
|
15
|
-
"deposit.attributed.volume_usd",
|
|
16
10
|
"financial_address.active_month",
|
|
17
11
|
"financial_address.issued.count",
|
|
18
12
|
"instrument.event.count",
|
|
19
|
-
"instrument.event.volume_eur",
|
|
20
|
-
"instrument.event.volume_gbp",
|
|
21
13
|
"instrument.event.volume_sar",
|
|
22
|
-
"instrument.event.volume_usd",
|
|
23
14
|
"kyb.application.review",
|
|
24
15
|
"payout.external.count",
|
|
25
|
-
"payout.external.volume_eur",
|
|
26
|
-
"payout.external.volume_gbp",
|
|
27
16
|
"payout.external.volume_sar",
|
|
28
|
-
"payout.external.volume_usd",
|
|
29
17
|
"transfer.internal.count",
|
|
30
|
-
"transfer.internal.volume_eur",
|
|
31
|
-
"transfer.internal.volume_gbp",
|
|
32
18
|
"transfer.internal.volume_sar",
|
|
33
|
-
"transfer.internal.volume_usd",
|
|
34
19
|
"verification.kyb.count",
|
|
35
20
|
"verification.kyc.basic.count",
|
|
36
21
|
"verification.kyc.investment.count",
|
|
@@ -405,44 +390,29 @@
|
|
|
405
390
|
"declaredMeters": [
|
|
406
391
|
"account.active_month",
|
|
407
392
|
"collection.pay_in.count",
|
|
408
|
-
"collection.pay_in.volume_eur",
|
|
409
|
-
"collection.pay_in.volume_gbp",
|
|
410
|
-
"collection.pay_in.volume_sar",
|
|
411
393
|
"collection.pay_in.volume_usd",
|
|
412
394
|
"deposit.attributed.count",
|
|
413
|
-
"deposit.attributed.volume_eur",
|
|
414
|
-
"deposit.attributed.volume_gbp",
|
|
415
|
-
"deposit.attributed.volume_sar",
|
|
416
395
|
"deposit.attributed.volume_usd",
|
|
417
396
|
"financial_address.active_month",
|
|
418
397
|
"financial_address.issued.count",
|
|
419
398
|
"instrument.event.count",
|
|
420
|
-
"instrument.event.volume_eur",
|
|
421
|
-
"instrument.event.volume_gbp",
|
|
422
|
-
"instrument.event.volume_sar",
|
|
423
399
|
"instrument.event.volume_usd",
|
|
424
400
|
"kyb.application.review",
|
|
425
401
|
"payout.external.count",
|
|
426
|
-
"payout.external.volume_eur",
|
|
427
|
-
"payout.external.volume_gbp",
|
|
428
|
-
"payout.external.volume_sar",
|
|
429
402
|
"payout.external.volume_usd",
|
|
430
403
|
"transfer.internal.count",
|
|
431
|
-
"transfer.internal.volume_eur",
|
|
432
|
-
"transfer.internal.volume_gbp",
|
|
433
|
-
"transfer.internal.volume_sar",
|
|
434
404
|
"transfer.internal.volume_usd",
|
|
435
405
|
"verification.kyb.count",
|
|
436
406
|
"verification.kyc.basic.count",
|
|
437
407
|
"verification.kyc.investment.count",
|
|
438
408
|
"verification.kyc.standard.count"
|
|
439
409
|
],
|
|
440
|
-
"effectiveTableDigest": "
|
|
410
|
+
"effectiveTableDigest": "c0b6d44b312db8d0e78227a66893e0fae75bdbbc24d97d4c846dce2b5d31fa2b",
|
|
441
411
|
"fixed": {
|
|
442
|
-
"activationBaseMinor": "
|
|
443
|
-
"activationPerPointMinor": "
|
|
444
|
-
"monthlyBaseMinor": "
|
|
445
|
-
"monthlyPerPointMinor": "
|
|
412
|
+
"activationBaseMinor": "133300",
|
|
413
|
+
"activationPerPointMinor": "26700",
|
|
414
|
+
"monthlyBaseMinor": "26700",
|
|
415
|
+
"monthlyPerPointMinor": "5300",
|
|
446
416
|
"weights": {
|
|
447
417
|
"aggregate_invariant": 2,
|
|
448
418
|
"blueprint": 5,
|
|
@@ -653,7 +623,7 @@
|
|
|
653
623
|
"bps": 0,
|
|
654
624
|
"meter": "billing.invoice.settlement",
|
|
655
625
|
"payer": "product",
|
|
656
|
-
"perEventMinor": "
|
|
626
|
+
"perEventMinor": "1",
|
|
657
627
|
"settlement": "invoice",
|
|
658
628
|
"signature": "meters.billing.invoice.settlement"
|
|
659
629
|
},
|
|
@@ -807,43 +777,28 @@
|
|
|
807
777
|
"account.active_month",
|
|
808
778
|
"collection.pay_in.count",
|
|
809
779
|
"collection.pay_in.volume_eur",
|
|
810
|
-
"collection.pay_in.volume_gbp",
|
|
811
|
-
"collection.pay_in.volume_sar",
|
|
812
|
-
"collection.pay_in.volume_usd",
|
|
813
780
|
"deposit.attributed.count",
|
|
814
781
|
"deposit.attributed.volume_eur",
|
|
815
|
-
"deposit.attributed.volume_gbp",
|
|
816
|
-
"deposit.attributed.volume_sar",
|
|
817
|
-
"deposit.attributed.volume_usd",
|
|
818
782
|
"financial_address.active_month",
|
|
819
783
|
"financial_address.issued.count",
|
|
820
784
|
"instrument.event.count",
|
|
821
785
|
"instrument.event.volume_eur",
|
|
822
|
-
"instrument.event.volume_gbp",
|
|
823
|
-
"instrument.event.volume_sar",
|
|
824
|
-
"instrument.event.volume_usd",
|
|
825
786
|
"kyb.application.review",
|
|
826
787
|
"payout.external.count",
|
|
827
788
|
"payout.external.volume_eur",
|
|
828
|
-
"payout.external.volume_gbp",
|
|
829
|
-
"payout.external.volume_sar",
|
|
830
|
-
"payout.external.volume_usd",
|
|
831
789
|
"transfer.internal.count",
|
|
832
790
|
"transfer.internal.volume_eur",
|
|
833
|
-
"transfer.internal.volume_gbp",
|
|
834
|
-
"transfer.internal.volume_sar",
|
|
835
|
-
"transfer.internal.volume_usd",
|
|
836
791
|
"verification.kyb.count",
|
|
837
792
|
"verification.kyc.basic.count",
|
|
838
793
|
"verification.kyc.investment.count",
|
|
839
794
|
"verification.kyc.standard.count"
|
|
840
795
|
],
|
|
841
|
-
"effectiveTableDigest": "
|
|
796
|
+
"effectiveTableDigest": "168bf0628428929b4a8600965440d83c159e290017ceeafae92f68ea746c266d",
|
|
842
797
|
"fixed": {
|
|
843
|
-
"activationBaseMinor": "
|
|
844
|
-
"activationPerPointMinor": "
|
|
845
|
-
"monthlyBaseMinor": "
|
|
846
|
-
"monthlyPerPointMinor": "
|
|
798
|
+
"activationBaseMinor": "125000",
|
|
799
|
+
"activationPerPointMinor": "25000",
|
|
800
|
+
"monthlyBaseMinor": "25000",
|
|
801
|
+
"monthlyPerPointMinor": "5000",
|
|
847
802
|
"weights": {
|
|
848
803
|
"aggregate_invariant": 2,
|
|
849
804
|
"blueprint": 5,
|
|
@@ -1054,7 +1009,7 @@
|
|
|
1054
1009
|
"bps": 0,
|
|
1055
1010
|
"meter": "billing.invoice.settlement",
|
|
1056
1011
|
"payer": "product",
|
|
1057
|
-
"perEventMinor": "
|
|
1012
|
+
"perEventMinor": "1",
|
|
1058
1013
|
"settlement": "invoice",
|
|
1059
1014
|
"signature": "meters.billing.invoice.settlement"
|
|
1060
1015
|
},
|
|
@@ -1207,44 +1162,29 @@
|
|
|
1207
1162
|
"declaredMeters": [
|
|
1208
1163
|
"account.active_month",
|
|
1209
1164
|
"collection.pay_in.count",
|
|
1210
|
-
"collection.pay_in.volume_eur",
|
|
1211
1165
|
"collection.pay_in.volume_gbp",
|
|
1212
|
-
"collection.pay_in.volume_sar",
|
|
1213
|
-
"collection.pay_in.volume_usd",
|
|
1214
1166
|
"deposit.attributed.count",
|
|
1215
|
-
"deposit.attributed.volume_eur",
|
|
1216
1167
|
"deposit.attributed.volume_gbp",
|
|
1217
|
-
"deposit.attributed.volume_sar",
|
|
1218
|
-
"deposit.attributed.volume_usd",
|
|
1219
1168
|
"financial_address.active_month",
|
|
1220
1169
|
"financial_address.issued.count",
|
|
1221
1170
|
"instrument.event.count",
|
|
1222
|
-
"instrument.event.volume_eur",
|
|
1223
1171
|
"instrument.event.volume_gbp",
|
|
1224
|
-
"instrument.event.volume_sar",
|
|
1225
|
-
"instrument.event.volume_usd",
|
|
1226
1172
|
"kyb.application.review",
|
|
1227
1173
|
"payout.external.count",
|
|
1228
|
-
"payout.external.volume_eur",
|
|
1229
1174
|
"payout.external.volume_gbp",
|
|
1230
|
-
"payout.external.volume_sar",
|
|
1231
|
-
"payout.external.volume_usd",
|
|
1232
1175
|
"transfer.internal.count",
|
|
1233
|
-
"transfer.internal.volume_eur",
|
|
1234
1176
|
"transfer.internal.volume_gbp",
|
|
1235
|
-
"transfer.internal.volume_sar",
|
|
1236
|
-
"transfer.internal.volume_usd",
|
|
1237
1177
|
"verification.kyb.count",
|
|
1238
1178
|
"verification.kyc.basic.count",
|
|
1239
1179
|
"verification.kyc.investment.count",
|
|
1240
1180
|
"verification.kyc.standard.count"
|
|
1241
1181
|
],
|
|
1242
|
-
"effectiveTableDigest": "
|
|
1182
|
+
"effectiveTableDigest": "872976014d670541f48e3ad66cbb2da0e6fcd160d34ee785b5a028c3a8a31219",
|
|
1243
1183
|
"fixed": {
|
|
1244
|
-
"activationBaseMinor": "
|
|
1245
|
-
"activationPerPointMinor": "
|
|
1246
|
-
"monthlyBaseMinor": "
|
|
1247
|
-
"monthlyPerPointMinor": "
|
|
1184
|
+
"activationBaseMinor": "104200",
|
|
1185
|
+
"activationPerPointMinor": "20800",
|
|
1186
|
+
"monthlyBaseMinor": "20800",
|
|
1187
|
+
"monthlyPerPointMinor": "4200",
|
|
1248
1188
|
"weights": {
|
|
1249
1189
|
"aggregate_invariant": 2,
|
|
1250
1190
|
"blueprint": 5,
|
|
@@ -1455,7 +1395,7 @@
|
|
|
1455
1395
|
"bps": 0,
|
|
1456
1396
|
"meter": "billing.invoice.settlement",
|
|
1457
1397
|
"payer": "product",
|
|
1458
|
-
"perEventMinor": "
|
|
1398
|
+
"perEventMinor": "1",
|
|
1459
1399
|
"settlement": "invoice",
|
|
1460
1400
|
"signature": "meters.billing.invoice.settlement"
|
|
1461
1401
|
},
|
|
@@ -495,8 +495,8 @@
|
|
|
495
495
|
"path": "fields.amount"
|
|
496
496
|
},
|
|
497
497
|
"currency": {
|
|
498
|
-
"from": "
|
|
499
|
-
"
|
|
498
|
+
"from": "const",
|
|
499
|
+
"value": "SAR"
|
|
500
500
|
},
|
|
501
501
|
"destinationAccountId": {
|
|
502
502
|
"from": "instance",
|
|
@@ -573,8 +573,8 @@
|
|
|
573
573
|
"path": "fields.amount"
|
|
574
574
|
},
|
|
575
575
|
"currency": {
|
|
576
|
-
"from": "
|
|
577
|
-
"
|
|
576
|
+
"from": "const",
|
|
577
|
+
"value": "SAR"
|
|
578
578
|
},
|
|
579
579
|
"destinationAccountId": {
|
|
580
580
|
"from": "instance",
|
|
@@ -783,8 +783,8 @@
|
|
|
783
783
|
"path": "fields.amount"
|
|
784
784
|
},
|
|
785
785
|
"currency": {
|
|
786
|
-
"from": "
|
|
787
|
-
"
|
|
786
|
+
"from": "const",
|
|
787
|
+
"value": "SAR"
|
|
788
788
|
},
|
|
789
789
|
"destinationAccountId": {
|
|
790
790
|
"from": "instance",
|
|
@@ -861,8 +861,8 @@
|
|
|
861
861
|
"path": "fields.amount"
|
|
862
862
|
},
|
|
863
863
|
"currency": {
|
|
864
|
-
"from": "
|
|
865
|
-
"
|
|
864
|
+
"from": "const",
|
|
865
|
+
"value": "SAR"
|
|
866
866
|
},
|
|
867
867
|
"destinationAccountId": {
|
|
868
868
|
"from": "instance",
|
|
@@ -1194,8 +1194,8 @@
|
|
|
1194
1194
|
"path": "fields.amount"
|
|
1195
1195
|
},
|
|
1196
1196
|
"currency": {
|
|
1197
|
-
"from": "
|
|
1198
|
-
"
|
|
1197
|
+
"from": "const",
|
|
1198
|
+
"value": "SAR"
|
|
1199
1199
|
},
|
|
1200
1200
|
"destinationAccountId": {
|
|
1201
1201
|
"from": "instance",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"path": "fields.price"
|
|
50
50
|
},
|
|
51
51
|
"currency": {
|
|
52
|
-
"from": "
|
|
53
|
-
"
|
|
52
|
+
"from": "const",
|
|
53
|
+
"value": "SAR"
|
|
54
54
|
},
|
|
55
55
|
"destinationAccountId": {
|
|
56
56
|
"from": "instance",
|
|
@@ -121,8 +121,8 @@
|
|
|
121
121
|
"path": "fields.price"
|
|
122
122
|
},
|
|
123
123
|
"currency": {
|
|
124
|
-
"from": "
|
|
125
|
-
"
|
|
124
|
+
"from": "const",
|
|
125
|
+
"value": "SAR"
|
|
126
126
|
},
|
|
127
127
|
"destinationAccountId": {
|
|
128
128
|
"from": "instance",
|
|
@@ -174,8 +174,8 @@
|
|
|
174
174
|
{
|
|
175
175
|
"bind": {
|
|
176
176
|
"currency": {
|
|
177
|
-
"from": "
|
|
178
|
-
"
|
|
177
|
+
"from": "const",
|
|
178
|
+
"value": "SAR"
|
|
179
179
|
},
|
|
180
180
|
"owner.id": {
|
|
181
181
|
"from": "instance",
|
|
@@ -204,7 +204,18 @@
|
|
|
204
204
|
},
|
|
205
205
|
"dispute": {
|
|
206
206
|
"agentDescription": "Freeze a funded sale so neither release nor refund can run until the parties settle the disagreement. No money moves and the whole balance stays put. Only a funded sale disputes.",
|
|
207
|
+
"deadline": {
|
|
208
|
+
"field": "releaseDueAt"
|
|
209
|
+
},
|
|
207
210
|
"description": "Freezes funded sale, preserving the entire balance while the parties decide what happens next.",
|
|
211
|
+
"effects": {
|
|
212
|
+
"schedules": [
|
|
213
|
+
{
|
|
214
|
+
"signature": "schedules.deadline",
|
|
215
|
+
"source": "deadline"
|
|
216
|
+
}
|
|
217
|
+
]
|
|
218
|
+
},
|
|
208
219
|
"moves": [],
|
|
209
220
|
"publicAction": "disputeSale",
|
|
210
221
|
"steps": [],
|
|
@@ -232,8 +243,8 @@
|
|
|
232
243
|
"path": "fields.price"
|
|
233
244
|
},
|
|
234
245
|
"currency": {
|
|
235
|
-
"from": "
|
|
236
|
-
"
|
|
246
|
+
"from": "const",
|
|
247
|
+
"value": "SAR"
|
|
237
248
|
},
|
|
238
249
|
"destinationAccountId": {
|
|
239
250
|
"from": "instance",
|
|
@@ -273,8 +284,8 @@
|
|
|
273
284
|
"path": "fields.serviceFeeAmount"
|
|
274
285
|
},
|
|
275
286
|
"currency": {
|
|
276
|
-
"from": "
|
|
277
|
-
"
|
|
287
|
+
"from": "const",
|
|
288
|
+
"value": "SAR"
|
|
278
289
|
},
|
|
279
290
|
"destinationAccountId": {
|
|
280
291
|
"from": "instance",
|
|
@@ -339,8 +350,8 @@
|
|
|
339
350
|
"path": "fields.price"
|
|
340
351
|
},
|
|
341
352
|
"currency": {
|
|
342
|
-
"from": "
|
|
343
|
-
"
|
|
353
|
+
"from": "const",
|
|
354
|
+
"value": "SAR"
|
|
344
355
|
},
|
|
345
356
|
"destinationAccountId": {
|
|
346
357
|
"from": "instance",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"path": "fields.checkoutFee"
|
|
27
27
|
},
|
|
28
28
|
"currency": {
|
|
29
|
-
"from": "
|
|
30
|
-
"
|
|
29
|
+
"from": "const",
|
|
30
|
+
"value": "SAR"
|
|
31
31
|
},
|
|
32
32
|
"destinationAccountId": {
|
|
33
33
|
"from": "instance",
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
"path": "fields.netOfCarvedFeeAmount"
|
|
91
91
|
},
|
|
92
92
|
"currency": {
|
|
93
|
-
"from": "
|
|
94
|
-
"
|
|
93
|
+
"from": "const",
|
|
94
|
+
"value": "SAR"
|
|
95
95
|
},
|
|
96
96
|
"destinationAccountId": {
|
|
97
97
|
"from": "instance",
|
|
@@ -148,8 +148,8 @@
|
|
|
148
148
|
"path": "fields.carvedFeeAmount"
|
|
149
149
|
},
|
|
150
150
|
"currency": {
|
|
151
|
-
"from": "
|
|
152
|
-
"
|
|
151
|
+
"from": "const",
|
|
152
|
+
"value": "SAR"
|
|
153
153
|
},
|
|
154
154
|
"destinationAccountId": {
|
|
155
155
|
"from": "instance",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"path": "fields.callRate"
|
|
27
27
|
},
|
|
28
28
|
"currency": {
|
|
29
|
-
"from": "
|
|
30
|
-
"
|
|
29
|
+
"from": "const",
|
|
30
|
+
"value": "SAR"
|
|
31
31
|
},
|
|
32
32
|
"destinationAccountId": {
|
|
33
33
|
"from": "instance",
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"path": "fields.storageRate"
|
|
84
84
|
},
|
|
85
85
|
"currency": {
|
|
86
|
-
"from": "
|
|
87
|
-
"
|
|
86
|
+
"from": "const",
|
|
87
|
+
"value": "SAR"
|
|
88
88
|
},
|
|
89
89
|
"destinationAccountId": {
|
|
90
90
|
"from": "instance",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
{
|
|
18
18
|
"bind": {
|
|
19
19
|
"currency": {
|
|
20
|
-
"from": "
|
|
21
|
-
"
|
|
20
|
+
"from": "const",
|
|
21
|
+
"value": "SAR"
|
|
22
22
|
},
|
|
23
23
|
"owner.id": {
|
|
24
24
|
"from": "instance",
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"path": "fields.firstRecipientShareAmount"
|
|
72
72
|
},
|
|
73
73
|
"currency": {
|
|
74
|
-
"from": "
|
|
75
|
-
"
|
|
74
|
+
"from": "const",
|
|
75
|
+
"value": "SAR"
|
|
76
76
|
},
|
|
77
77
|
"destinationAccountId": {
|
|
78
78
|
"from": "instance",
|
|
@@ -135,8 +135,8 @@
|
|
|
135
135
|
"path": "fields.secondRecipientShareAmount"
|
|
136
136
|
},
|
|
137
137
|
"currency": {
|
|
138
|
-
"from": "
|
|
139
|
-
"
|
|
138
|
+
"from": "const",
|
|
139
|
+
"value": "SAR"
|
|
140
140
|
},
|
|
141
141
|
"destinationAccountId": {
|
|
142
142
|
"from": "instance",
|
|
@@ -191,8 +191,8 @@
|
|
|
191
191
|
"path": "fields.firstRecipientShareAmount"
|
|
192
192
|
},
|
|
193
193
|
"currency": {
|
|
194
|
-
"from": "
|
|
195
|
-
"
|
|
194
|
+
"from": "const",
|
|
195
|
+
"value": "SAR"
|
|
196
196
|
},
|
|
197
197
|
"destinationAccountId": {
|
|
198
198
|
"from": "instance",
|
|
@@ -248,8 +248,8 @@
|
|
|
248
248
|
"path": "fields.secondRecipientShareAmount"
|
|
249
249
|
},
|
|
250
250
|
"currency": {
|
|
251
|
-
"from": "
|
|
252
|
-
"
|
|
251
|
+
"from": "const",
|
|
252
|
+
"value": "SAR"
|
|
253
253
|
},
|
|
254
254
|
"destinationAccountId": {
|
|
255
255
|
"from": "instance",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"path": "fields.piece1Amount"
|
|
54
54
|
},
|
|
55
55
|
"currency": {
|
|
56
|
-
"from": "
|
|
57
|
-
"
|
|
56
|
+
"from": "const",
|
|
57
|
+
"value": "SAR"
|
|
58
58
|
},
|
|
59
59
|
"destinationAccountId": {
|
|
60
60
|
"from": "instance",
|
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
{
|
|
108
108
|
"bind": {
|
|
109
109
|
"currency": {
|
|
110
|
-
"from": "
|
|
111
|
-
"
|
|
110
|
+
"from": "const",
|
|
111
|
+
"value": "SAR"
|
|
112
112
|
},
|
|
113
113
|
"owner.id": {
|
|
114
114
|
"from": "instance",
|
|
@@ -153,8 +153,8 @@
|
|
|
153
153
|
"path": "fields.piece2Amount"
|
|
154
154
|
},
|
|
155
155
|
"currency": {
|
|
156
|
-
"from": "
|
|
157
|
-
"
|
|
156
|
+
"from": "const",
|
|
157
|
+
"value": "SAR"
|
|
158
158
|
},
|
|
159
159
|
"destinationAccountId": {
|
|
160
160
|
"from": "instance",
|
|
@@ -210,8 +210,8 @@
|
|
|
210
210
|
"path": "fields.piece1Amount"
|
|
211
211
|
},
|
|
212
212
|
"currency": {
|
|
213
|
-
"from": "
|
|
214
|
-
"
|
|
213
|
+
"from": "const",
|
|
214
|
+
"value": "SAR"
|
|
215
215
|
},
|
|
216
216
|
"destinationAccountId": {
|
|
217
217
|
"from": "instance",
|
|
@@ -268,8 +268,8 @@
|
|
|
268
268
|
"path": "fields.piece2Amount"
|
|
269
269
|
},
|
|
270
270
|
"currency": {
|
|
271
|
-
"from": "
|
|
272
|
-
"
|
|
271
|
+
"from": "const",
|
|
272
|
+
"value": "SAR"
|
|
273
273
|
},
|
|
274
274
|
"destinationAccountId": {
|
|
275
275
|
"from": "instance",
|
|
@@ -383,8 +383,8 @@
|
|
|
383
383
|
"path": "fields.piece1Amount"
|
|
384
384
|
},
|
|
385
385
|
"currency": {
|
|
386
|
-
"from": "
|
|
387
|
-
"
|
|
386
|
+
"from": "const",
|
|
387
|
+
"value": "SAR"
|
|
388
388
|
},
|
|
389
389
|
"destinationAccountId": {
|
|
390
390
|
"from": "instance",
|
|
@@ -495,8 +495,8 @@
|
|
|
495
495
|
"path": "fields.amount"
|
|
496
496
|
},
|
|
497
497
|
"currency": {
|
|
498
|
-
"from": "
|
|
499
|
-
"
|
|
498
|
+
"from": "const",
|
|
499
|
+
"value": "SAR"
|
|
500
500
|
},
|
|
501
501
|
"destinationAccountId": {
|
|
502
502
|
"from": "instance",
|
|
@@ -597,8 +597,8 @@
|
|
|
597
597
|
"path": "fields.amount"
|
|
598
598
|
},
|
|
599
599
|
"currency": {
|
|
600
|
-
"from": "
|
|
601
|
-
"
|
|
600
|
+
"from": "const",
|
|
601
|
+
"value": "SAR"
|
|
602
602
|
},
|
|
603
603
|
"destinationAccountId": {
|
|
604
604
|
"from": "instance",
|
|
@@ -812,8 +812,8 @@
|
|
|
812
812
|
"path": "fields.amount"
|
|
813
813
|
},
|
|
814
814
|
"currency": {
|
|
815
|
-
"from": "
|
|
816
|
-
"
|
|
815
|
+
"from": "const",
|
|
816
|
+
"value": "SAR"
|
|
817
817
|
},
|
|
818
818
|
"destinationAccountId": {
|
|
819
819
|
"from": "instance",
|
|
@@ -914,8 +914,8 @@
|
|
|
914
914
|
"path": "fields.amount"
|
|
915
915
|
},
|
|
916
916
|
"currency": {
|
|
917
|
-
"from": "
|
|
918
|
-
"
|
|
917
|
+
"from": "const",
|
|
918
|
+
"value": "SAR"
|
|
919
919
|
},
|
|
920
920
|
"destinationAccountId": {
|
|
921
921
|
"from": "instance",
|