@moonpay/cli 0.6.11 → 0.6.12
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/dist/{chunk-6TW2YUWK.js → chunk-2XX5YJ2D.js} +373 -13
- package/dist/chunk-2XX5YJ2D.js.map +1 -0
- package/dist/index.js +59 -52
- package/dist/index.js.map +1 -1
- package/dist/{mcp-VK7BDE25.js → mcp-4U5K4DCI.js} +2 -2
- package/package.json +1 -1
- package/skills/moonpay-virtual-account/SKILL.md +6 -2
- package/dist/chunk-6TW2YUWK.js.map +0 -1
- /package/dist/{mcp-VK7BDE25.js.map → mcp-4U5K4DCI.js.map} +0 -0
|
@@ -452,6 +452,66 @@ var schemas_default = [
|
|
|
452
452
|
$schema: "http://json-schema.org/draft-07/schema#"
|
|
453
453
|
}
|
|
454
454
|
},
|
|
455
|
+
{
|
|
456
|
+
name: "deposit_retrieve",
|
|
457
|
+
description: "Retrieve details of a deposit by ID. Returns the deposit name, status, destination wallet, and deposit addresses.",
|
|
458
|
+
inputSchema: {
|
|
459
|
+
$ref: "#/definitions/deposit_retrieve_input",
|
|
460
|
+
definitions: {
|
|
461
|
+
deposit_retrieve_input: {
|
|
462
|
+
type: "object",
|
|
463
|
+
properties: {
|
|
464
|
+
id: {
|
|
465
|
+
type: "string",
|
|
466
|
+
description: "Deposit ID returned from deposit_create"
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
required: [
|
|
470
|
+
"id"
|
|
471
|
+
],
|
|
472
|
+
additionalProperties: false
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
$schema: "http://json-schema.org/draft-07/schema#"
|
|
476
|
+
},
|
|
477
|
+
outputSchema: {
|
|
478
|
+
$ref: "#/definitions/deposit_retrieve_output",
|
|
479
|
+
definitions: {
|
|
480
|
+
deposit_retrieve_output: {
|
|
481
|
+
type: "object",
|
|
482
|
+
properties: {
|
|
483
|
+
id: {
|
|
484
|
+
type: "string"
|
|
485
|
+
},
|
|
486
|
+
name: {
|
|
487
|
+
type: "string"
|
|
488
|
+
},
|
|
489
|
+
status: {
|
|
490
|
+
type: "string"
|
|
491
|
+
},
|
|
492
|
+
destinationWallet: {
|
|
493
|
+
type: [
|
|
494
|
+
"string",
|
|
495
|
+
"null"
|
|
496
|
+
]
|
|
497
|
+
},
|
|
498
|
+
depositUrl: {
|
|
499
|
+
type: "string"
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
required: [
|
|
503
|
+
"id",
|
|
504
|
+
"name",
|
|
505
|
+
"status",
|
|
506
|
+
"destinationWallet",
|
|
507
|
+
"depositUrl"
|
|
508
|
+
],
|
|
509
|
+
additionalProperties: false
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
$schema: "http://json-schema.org/draft-07/schema#"
|
|
513
|
+
}
|
|
514
|
+
},
|
|
455
515
|
{
|
|
456
516
|
name: "deposit_transaction_list",
|
|
457
517
|
description: "List transactions for a deposit. Pass the deposit id from deposit_create to check incoming payment status.",
|
|
@@ -5415,13 +5475,111 @@ var schemas_default = [
|
|
|
5415
5475
|
type: "string"
|
|
5416
5476
|
},
|
|
5417
5477
|
depositAccount: {
|
|
5418
|
-
|
|
5419
|
-
|
|
5420
|
-
|
|
5478
|
+
anyOf: [
|
|
5479
|
+
{
|
|
5480
|
+
type: "object",
|
|
5481
|
+
properties: {
|
|
5482
|
+
type: {
|
|
5483
|
+
type: "string"
|
|
5484
|
+
},
|
|
5485
|
+
iban: {
|
|
5486
|
+
type: [
|
|
5487
|
+
"string",
|
|
5488
|
+
"null"
|
|
5489
|
+
]
|
|
5490
|
+
},
|
|
5491
|
+
bic: {
|
|
5492
|
+
type: [
|
|
5493
|
+
"string",
|
|
5494
|
+
"null"
|
|
5495
|
+
]
|
|
5496
|
+
},
|
|
5497
|
+
accountNumber: {
|
|
5498
|
+
type: [
|
|
5499
|
+
"string",
|
|
5500
|
+
"null"
|
|
5501
|
+
]
|
|
5502
|
+
},
|
|
5503
|
+
routingNumber: {
|
|
5504
|
+
type: [
|
|
5505
|
+
"string",
|
|
5506
|
+
"null"
|
|
5507
|
+
]
|
|
5508
|
+
},
|
|
5509
|
+
bankName: {
|
|
5510
|
+
type: [
|
|
5511
|
+
"string",
|
|
5512
|
+
"null"
|
|
5513
|
+
]
|
|
5514
|
+
},
|
|
5515
|
+
bankAddress: {
|
|
5516
|
+
type: [
|
|
5517
|
+
"string",
|
|
5518
|
+
"null"
|
|
5519
|
+
]
|
|
5520
|
+
},
|
|
5521
|
+
recipientName: {
|
|
5522
|
+
type: [
|
|
5523
|
+
"string",
|
|
5524
|
+
"null"
|
|
5525
|
+
]
|
|
5526
|
+
}
|
|
5527
|
+
},
|
|
5528
|
+
required: [
|
|
5529
|
+
"type",
|
|
5530
|
+
"iban",
|
|
5531
|
+
"bic",
|
|
5532
|
+
"accountNumber",
|
|
5533
|
+
"routingNumber",
|
|
5534
|
+
"bankName",
|
|
5535
|
+
"bankAddress",
|
|
5536
|
+
"recipientName"
|
|
5537
|
+
],
|
|
5538
|
+
additionalProperties: false
|
|
5539
|
+
},
|
|
5540
|
+
{
|
|
5541
|
+
type: "null"
|
|
5542
|
+
}
|
|
5421
5543
|
]
|
|
5422
5544
|
},
|
|
5423
5545
|
walletAddress: {
|
|
5424
5546
|
type: "string"
|
|
5547
|
+
},
|
|
5548
|
+
fees: {
|
|
5549
|
+
anyOf: [
|
|
5550
|
+
{
|
|
5551
|
+
type: "object",
|
|
5552
|
+
properties: {
|
|
5553
|
+
transactionFee: {
|
|
5554
|
+
type: "string",
|
|
5555
|
+
description: "e.g. '0.50%'"
|
|
5556
|
+
},
|
|
5557
|
+
bankingFee: {
|
|
5558
|
+
type: [
|
|
5559
|
+
"string",
|
|
5560
|
+
"null"
|
|
5561
|
+
],
|
|
5562
|
+
description: "e.g. '0.50 EUR (SEPA)'"
|
|
5563
|
+
},
|
|
5564
|
+
networkFee: {
|
|
5565
|
+
type: "string",
|
|
5566
|
+
description: "'subsidized' or 'charged'"
|
|
5567
|
+
}
|
|
5568
|
+
},
|
|
5569
|
+
required: [
|
|
5570
|
+
"transactionFee",
|
|
5571
|
+
"bankingFee",
|
|
5572
|
+
"networkFee"
|
|
5573
|
+
],
|
|
5574
|
+
additionalProperties: false
|
|
5575
|
+
},
|
|
5576
|
+
{
|
|
5577
|
+
type: "null"
|
|
5578
|
+
}
|
|
5579
|
+
]
|
|
5580
|
+
},
|
|
5581
|
+
legalDisclaimer: {
|
|
5582
|
+
type: "string"
|
|
5425
5583
|
}
|
|
5426
5584
|
},
|
|
5427
5585
|
required: [
|
|
@@ -5431,7 +5589,9 @@ var schemas_default = [
|
|
|
5431
5589
|
"fiat",
|
|
5432
5590
|
"stablecoin",
|
|
5433
5591
|
"depositAccount",
|
|
5434
|
-
"walletAddress"
|
|
5592
|
+
"walletAddress",
|
|
5593
|
+
"fees",
|
|
5594
|
+
"legalDisclaimer"
|
|
5435
5595
|
],
|
|
5436
5596
|
additionalProperties: false
|
|
5437
5597
|
}
|
|
@@ -5534,13 +5694,111 @@ var schemas_default = [
|
|
|
5534
5694
|
type: "string"
|
|
5535
5695
|
},
|
|
5536
5696
|
depositAccount: {
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
|
|
5697
|
+
anyOf: [
|
|
5698
|
+
{
|
|
5699
|
+
type: "object",
|
|
5700
|
+
properties: {
|
|
5701
|
+
type: {
|
|
5702
|
+
type: "string"
|
|
5703
|
+
},
|
|
5704
|
+
iban: {
|
|
5705
|
+
type: [
|
|
5706
|
+
"string",
|
|
5707
|
+
"null"
|
|
5708
|
+
]
|
|
5709
|
+
},
|
|
5710
|
+
bic: {
|
|
5711
|
+
type: [
|
|
5712
|
+
"string",
|
|
5713
|
+
"null"
|
|
5714
|
+
]
|
|
5715
|
+
},
|
|
5716
|
+
accountNumber: {
|
|
5717
|
+
type: [
|
|
5718
|
+
"string",
|
|
5719
|
+
"null"
|
|
5720
|
+
]
|
|
5721
|
+
},
|
|
5722
|
+
routingNumber: {
|
|
5723
|
+
type: [
|
|
5724
|
+
"string",
|
|
5725
|
+
"null"
|
|
5726
|
+
]
|
|
5727
|
+
},
|
|
5728
|
+
bankName: {
|
|
5729
|
+
type: [
|
|
5730
|
+
"string",
|
|
5731
|
+
"null"
|
|
5732
|
+
]
|
|
5733
|
+
},
|
|
5734
|
+
bankAddress: {
|
|
5735
|
+
type: [
|
|
5736
|
+
"string",
|
|
5737
|
+
"null"
|
|
5738
|
+
]
|
|
5739
|
+
},
|
|
5740
|
+
recipientName: {
|
|
5741
|
+
type: [
|
|
5742
|
+
"string",
|
|
5743
|
+
"null"
|
|
5744
|
+
]
|
|
5745
|
+
}
|
|
5746
|
+
},
|
|
5747
|
+
required: [
|
|
5748
|
+
"type",
|
|
5749
|
+
"iban",
|
|
5750
|
+
"bic",
|
|
5751
|
+
"accountNumber",
|
|
5752
|
+
"routingNumber",
|
|
5753
|
+
"bankName",
|
|
5754
|
+
"bankAddress",
|
|
5755
|
+
"recipientName"
|
|
5756
|
+
],
|
|
5757
|
+
additionalProperties: false
|
|
5758
|
+
},
|
|
5759
|
+
{
|
|
5760
|
+
type: "null"
|
|
5761
|
+
}
|
|
5540
5762
|
]
|
|
5541
5763
|
},
|
|
5542
5764
|
walletAddress: {
|
|
5543
5765
|
type: "string"
|
|
5766
|
+
},
|
|
5767
|
+
fees: {
|
|
5768
|
+
anyOf: [
|
|
5769
|
+
{
|
|
5770
|
+
type: "object",
|
|
5771
|
+
properties: {
|
|
5772
|
+
transactionFee: {
|
|
5773
|
+
type: "string",
|
|
5774
|
+
description: "e.g. '0.50%'"
|
|
5775
|
+
},
|
|
5776
|
+
bankingFee: {
|
|
5777
|
+
type: [
|
|
5778
|
+
"string",
|
|
5779
|
+
"null"
|
|
5780
|
+
],
|
|
5781
|
+
description: "e.g. '0.50 EUR (SEPA)'"
|
|
5782
|
+
},
|
|
5783
|
+
networkFee: {
|
|
5784
|
+
type: "string",
|
|
5785
|
+
description: "'subsidized' or 'charged'"
|
|
5786
|
+
}
|
|
5787
|
+
},
|
|
5788
|
+
required: [
|
|
5789
|
+
"transactionFee",
|
|
5790
|
+
"bankingFee",
|
|
5791
|
+
"networkFee"
|
|
5792
|
+
],
|
|
5793
|
+
additionalProperties: false
|
|
5794
|
+
},
|
|
5795
|
+
{
|
|
5796
|
+
type: "null"
|
|
5797
|
+
}
|
|
5798
|
+
]
|
|
5799
|
+
},
|
|
5800
|
+
legalDisclaimer: {
|
|
5801
|
+
type: "string"
|
|
5544
5802
|
}
|
|
5545
5803
|
},
|
|
5546
5804
|
required: [
|
|
@@ -5550,7 +5808,9 @@ var schemas_default = [
|
|
|
5550
5808
|
"fiat",
|
|
5551
5809
|
"stablecoin",
|
|
5552
5810
|
"depositAccount",
|
|
5553
|
-
"walletAddress"
|
|
5811
|
+
"walletAddress",
|
|
5812
|
+
"fees",
|
|
5813
|
+
"legalDisclaimer"
|
|
5554
5814
|
],
|
|
5555
5815
|
additionalProperties: false
|
|
5556
5816
|
},
|
|
@@ -5759,13 +6019,111 @@ var schemas_default = [
|
|
|
5759
6019
|
type: "string"
|
|
5760
6020
|
},
|
|
5761
6021
|
depositAccount: {
|
|
5762
|
-
|
|
5763
|
-
|
|
5764
|
-
|
|
6022
|
+
anyOf: [
|
|
6023
|
+
{
|
|
6024
|
+
type: "object",
|
|
6025
|
+
properties: {
|
|
6026
|
+
type: {
|
|
6027
|
+
type: "string"
|
|
6028
|
+
},
|
|
6029
|
+
iban: {
|
|
6030
|
+
type: [
|
|
6031
|
+
"string",
|
|
6032
|
+
"null"
|
|
6033
|
+
]
|
|
6034
|
+
},
|
|
6035
|
+
bic: {
|
|
6036
|
+
type: [
|
|
6037
|
+
"string",
|
|
6038
|
+
"null"
|
|
6039
|
+
]
|
|
6040
|
+
},
|
|
6041
|
+
accountNumber: {
|
|
6042
|
+
type: [
|
|
6043
|
+
"string",
|
|
6044
|
+
"null"
|
|
6045
|
+
]
|
|
6046
|
+
},
|
|
6047
|
+
routingNumber: {
|
|
6048
|
+
type: [
|
|
6049
|
+
"string",
|
|
6050
|
+
"null"
|
|
6051
|
+
]
|
|
6052
|
+
},
|
|
6053
|
+
bankName: {
|
|
6054
|
+
type: [
|
|
6055
|
+
"string",
|
|
6056
|
+
"null"
|
|
6057
|
+
]
|
|
6058
|
+
},
|
|
6059
|
+
bankAddress: {
|
|
6060
|
+
type: [
|
|
6061
|
+
"string",
|
|
6062
|
+
"null"
|
|
6063
|
+
]
|
|
6064
|
+
},
|
|
6065
|
+
recipientName: {
|
|
6066
|
+
type: [
|
|
6067
|
+
"string",
|
|
6068
|
+
"null"
|
|
6069
|
+
]
|
|
6070
|
+
}
|
|
6071
|
+
},
|
|
6072
|
+
required: [
|
|
6073
|
+
"type",
|
|
6074
|
+
"iban",
|
|
6075
|
+
"bic",
|
|
6076
|
+
"accountNumber",
|
|
6077
|
+
"routingNumber",
|
|
6078
|
+
"bankName",
|
|
6079
|
+
"bankAddress",
|
|
6080
|
+
"recipientName"
|
|
6081
|
+
],
|
|
6082
|
+
additionalProperties: false
|
|
6083
|
+
},
|
|
6084
|
+
{
|
|
6085
|
+
type: "null"
|
|
6086
|
+
}
|
|
5765
6087
|
]
|
|
5766
6088
|
},
|
|
5767
6089
|
walletAddress: {
|
|
5768
6090
|
type: "string"
|
|
6091
|
+
},
|
|
6092
|
+
fees: {
|
|
6093
|
+
anyOf: [
|
|
6094
|
+
{
|
|
6095
|
+
type: "object",
|
|
6096
|
+
properties: {
|
|
6097
|
+
transactionFee: {
|
|
6098
|
+
type: "string",
|
|
6099
|
+
description: "e.g. '0.50%'"
|
|
6100
|
+
},
|
|
6101
|
+
bankingFee: {
|
|
6102
|
+
type: [
|
|
6103
|
+
"string",
|
|
6104
|
+
"null"
|
|
6105
|
+
],
|
|
6106
|
+
description: "e.g. '0.50 EUR (SEPA)'"
|
|
6107
|
+
},
|
|
6108
|
+
networkFee: {
|
|
6109
|
+
type: "string",
|
|
6110
|
+
description: "'subsidized' or 'charged'"
|
|
6111
|
+
}
|
|
6112
|
+
},
|
|
6113
|
+
required: [
|
|
6114
|
+
"transactionFee",
|
|
6115
|
+
"bankingFee",
|
|
6116
|
+
"networkFee"
|
|
6117
|
+
],
|
|
6118
|
+
additionalProperties: false
|
|
6119
|
+
},
|
|
6120
|
+
{
|
|
6121
|
+
type: "null"
|
|
6122
|
+
}
|
|
6123
|
+
]
|
|
6124
|
+
},
|
|
6125
|
+
legalDisclaimer: {
|
|
6126
|
+
type: "string"
|
|
5769
6127
|
}
|
|
5770
6128
|
},
|
|
5771
6129
|
required: [
|
|
@@ -5775,7 +6133,9 @@ var schemas_default = [
|
|
|
5775
6133
|
"fiat",
|
|
5776
6134
|
"stablecoin",
|
|
5777
6135
|
"depositAccount",
|
|
5778
|
-
"walletAddress"
|
|
6136
|
+
"walletAddress",
|
|
6137
|
+
"fees",
|
|
6138
|
+
"legalDisclaimer"
|
|
5779
6139
|
],
|
|
5780
6140
|
additionalProperties: false
|
|
5781
6141
|
}
|
|
@@ -7351,4 +7711,4 @@ export {
|
|
|
7351
7711
|
consentCheck,
|
|
7352
7712
|
LOCAL_TOOLS
|
|
7353
7713
|
};
|
|
7354
|
-
//# sourceMappingURL=chunk-
|
|
7714
|
+
//# sourceMappingURL=chunk-2XX5YJ2D.js.map
|