@moonpay/cli 0.6.5 → 0.6.6
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-JQEHP3SV.js → chunk-2SGV2LWL.js} +1 -180
- package/dist/{chunk-JQEHP3SV.js.map → chunk-2SGV2LWL.js.map} +1 -1
- package/dist/index.js +2 -2
- package/dist/{mcp-XWTHJES3.js → mcp-AKKUIO6M.js} +2 -2
- package/package.json +1 -1
- /package/dist/{mcp-XWTHJES3.js.map → mcp-AKKUIO6M.js.map} +0 -0
|
@@ -428,185 +428,6 @@ var schemas_default = [
|
|
|
428
428
|
$schema: "http://json-schema.org/draft-07/schema#"
|
|
429
429
|
}
|
|
430
430
|
},
|
|
431
|
-
{
|
|
432
|
-
name: "deposit_list",
|
|
433
|
-
description: "List all deposit links belonging to the current user. Each deposit link has multi-chain addresses that auto-convert incoming crypto to USDC.",
|
|
434
|
-
inputSchema: {
|
|
435
|
-
$ref: "#/definitions/deposit_list_input",
|
|
436
|
-
definitions: {
|
|
437
|
-
deposit_list_input: {
|
|
438
|
-
type: "object",
|
|
439
|
-
properties: {},
|
|
440
|
-
additionalProperties: false
|
|
441
|
-
}
|
|
442
|
-
},
|
|
443
|
-
$schema: "http://json-schema.org/draft-07/schema#"
|
|
444
|
-
},
|
|
445
|
-
outputSchema: {
|
|
446
|
-
$ref: "#/definitions/deposit_list_output",
|
|
447
|
-
definitions: {
|
|
448
|
-
deposit_list_output: {
|
|
449
|
-
type: "object",
|
|
450
|
-
properties: {
|
|
451
|
-
items: {
|
|
452
|
-
type: "array",
|
|
453
|
-
items: {
|
|
454
|
-
type: "object",
|
|
455
|
-
properties: {
|
|
456
|
-
id: {
|
|
457
|
-
type: "string",
|
|
458
|
-
description: "Deposit ID \u2014 use with deposit_transaction_list to check payments"
|
|
459
|
-
},
|
|
460
|
-
name: {
|
|
461
|
-
type: "string",
|
|
462
|
-
description: "Human-readable label"
|
|
463
|
-
},
|
|
464
|
-
depositUrl: {
|
|
465
|
-
type: "string",
|
|
466
|
-
description: "Shareable deposit URL"
|
|
467
|
-
},
|
|
468
|
-
wallets: {
|
|
469
|
-
type: "array",
|
|
470
|
-
items: {
|
|
471
|
-
type: "object",
|
|
472
|
-
properties: {
|
|
473
|
-
address: {
|
|
474
|
-
type: "string",
|
|
475
|
-
description: "Address to send funds to"
|
|
476
|
-
},
|
|
477
|
-
chain: {
|
|
478
|
-
type: "string",
|
|
479
|
-
description: "Chain this address is on"
|
|
480
|
-
}
|
|
481
|
-
},
|
|
482
|
-
required: [
|
|
483
|
-
"address",
|
|
484
|
-
"chain"
|
|
485
|
-
],
|
|
486
|
-
additionalProperties: false
|
|
487
|
-
},
|
|
488
|
-
description: "Multi-chain deposit addresses"
|
|
489
|
-
},
|
|
490
|
-
createdAt: {
|
|
491
|
-
type: "string",
|
|
492
|
-
description: "When this deposit link was created"
|
|
493
|
-
}
|
|
494
|
-
},
|
|
495
|
-
required: [
|
|
496
|
-
"id",
|
|
497
|
-
"name",
|
|
498
|
-
"depositUrl",
|
|
499
|
-
"wallets",
|
|
500
|
-
"createdAt"
|
|
501
|
-
],
|
|
502
|
-
additionalProperties: false
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
},
|
|
506
|
-
required: [
|
|
507
|
-
"items"
|
|
508
|
-
],
|
|
509
|
-
additionalProperties: false
|
|
510
|
-
}
|
|
511
|
-
},
|
|
512
|
-
$schema: "http://json-schema.org/draft-07/schema#"
|
|
513
|
-
}
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
name: "deposit_transaction_list",
|
|
517
|
-
description: "List incoming transactions for a deposit link. Shows each payment received \u2014 amount, token, sender, and whether it has settled to USDC.",
|
|
518
|
-
inputSchema: {
|
|
519
|
-
$ref: "#/definitions/deposit_transaction_list_input",
|
|
520
|
-
definitions: {
|
|
521
|
-
deposit_transaction_list_input: {
|
|
522
|
-
type: "object",
|
|
523
|
-
properties: {
|
|
524
|
-
depositId: {
|
|
525
|
-
type: "string",
|
|
526
|
-
description: "Deposit ID from deposit_create or deposit_list"
|
|
527
|
-
}
|
|
528
|
-
},
|
|
529
|
-
required: [
|
|
530
|
-
"depositId"
|
|
531
|
-
],
|
|
532
|
-
additionalProperties: false
|
|
533
|
-
}
|
|
534
|
-
},
|
|
535
|
-
$schema: "http://json-schema.org/draft-07/schema#"
|
|
536
|
-
},
|
|
537
|
-
outputSchema: {
|
|
538
|
-
$ref: "#/definitions/deposit_transaction_list_output",
|
|
539
|
-
definitions: {
|
|
540
|
-
deposit_transaction_list_output: {
|
|
541
|
-
type: "object",
|
|
542
|
-
properties: {
|
|
543
|
-
items: {
|
|
544
|
-
type: "array",
|
|
545
|
-
items: {
|
|
546
|
-
type: "object",
|
|
547
|
-
properties: {
|
|
548
|
-
id: {
|
|
549
|
-
type: "string",
|
|
550
|
-
description: "Transaction ID"
|
|
551
|
-
},
|
|
552
|
-
amount: {
|
|
553
|
-
type: "number",
|
|
554
|
-
description: "Amount received"
|
|
555
|
-
},
|
|
556
|
-
token: {
|
|
557
|
-
type: "string",
|
|
558
|
-
description: "Token symbol received (e.g. SOL, ETH, USDC)"
|
|
559
|
-
},
|
|
560
|
-
from: {
|
|
561
|
-
type: "string",
|
|
562
|
-
description: "Sender's wallet address"
|
|
563
|
-
},
|
|
564
|
-
status: {
|
|
565
|
-
type: "string",
|
|
566
|
-
description: "Transaction status (SUCCESS, PENDING, FAILED)"
|
|
567
|
-
},
|
|
568
|
-
settledAmount: {
|
|
569
|
-
type: [
|
|
570
|
-
"number",
|
|
571
|
-
"null"
|
|
572
|
-
],
|
|
573
|
-
description: "Amount settled in USDC (null if not yet settled)"
|
|
574
|
-
},
|
|
575
|
-
settledCurrency: {
|
|
576
|
-
type: [
|
|
577
|
-
"string",
|
|
578
|
-
"null"
|
|
579
|
-
],
|
|
580
|
-
description: "Settlement currency (usually USDC)"
|
|
581
|
-
},
|
|
582
|
-
timestamp: {
|
|
583
|
-
type: "string",
|
|
584
|
-
description: "When the transaction was received"
|
|
585
|
-
}
|
|
586
|
-
},
|
|
587
|
-
required: [
|
|
588
|
-
"id",
|
|
589
|
-
"amount",
|
|
590
|
-
"token",
|
|
591
|
-
"from",
|
|
592
|
-
"status",
|
|
593
|
-
"settledAmount",
|
|
594
|
-
"settledCurrency",
|
|
595
|
-
"timestamp"
|
|
596
|
-
],
|
|
597
|
-
additionalProperties: false
|
|
598
|
-
}
|
|
599
|
-
}
|
|
600
|
-
},
|
|
601
|
-
required: [
|
|
602
|
-
"items"
|
|
603
|
-
],
|
|
604
|
-
additionalProperties: false
|
|
605
|
-
}
|
|
606
|
-
},
|
|
607
|
-
$schema: "http://json-schema.org/draft-07/schema#"
|
|
608
|
-
}
|
|
609
|
-
},
|
|
610
431
|
{
|
|
611
432
|
name: "login",
|
|
612
433
|
description: "Send a verification code to the provided email to sign in or create an account.",
|
|
@@ -6994,4 +6815,4 @@ export {
|
|
|
6994
6815
|
x402Request,
|
|
6995
6816
|
virtualAccountWalletRegister
|
|
6996
6817
|
};
|
|
6997
|
-
//# sourceMappingURL=chunk-
|
|
6818
|
+
//# sourceMappingURL=chunk-2SGV2LWL.js.map
|