@moovio/sdk 25.12.5 → 25.12.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.
Files changed (79) hide show
  1. package/README.md +8 -8
  2. package/bin/mcp-server.js +52 -16
  3. package/bin/mcp-server.js.map +24 -23
  4. package/funcs/transfersList.js +2 -0
  5. package/funcs/transfersList.js.map +1 -1
  6. package/jsr.json +1 -1
  7. package/lib/config.d.ts +2 -2
  8. package/lib/config.js +2 -2
  9. package/mcp-server/mcp-server.js +1 -1
  10. package/mcp-server/server.js +1 -1
  11. package/mcp-server/tools/avatarsGet.js +1 -1
  12. package/mcp-server/tools/enrichedAddressGet.js +1 -1
  13. package/mcp-server/tools/enrichedProfileGet.js +1 -1
  14. package/mcp-server/tools/institutionsSearch.js +1 -1
  15. package/models/components/createdtransfer.d.ts +6 -0
  16. package/models/components/createdtransfer.d.ts.map +1 -1
  17. package/models/components/createdtransfer.js +3 -0
  18. package/models/components/createdtransfer.js.map +1 -1
  19. package/models/components/createrefund.d.ts +2 -2
  20. package/models/components/createreversal.d.ts +1 -1
  21. package/models/components/index.d.ts +1 -0
  22. package/models/components/index.d.ts.map +1 -1
  23. package/models/components/index.js +1 -0
  24. package/models/components/index.js.map +1 -1
  25. package/models/components/paymentmethodswallet.d.ts +1 -0
  26. package/models/components/paymentmethodswallet.d.ts.map +1 -1
  27. package/models/components/paymentmethodswallet.js.map +1 -1
  28. package/models/components/transfer.d.ts +6 -0
  29. package/models/components/transfer.d.ts.map +1 -1
  30. package/models/components/transfer.js +3 -0
  31. package/models/components/transfer.js.map +1 -1
  32. package/models/components/transfercapture.d.ts +28 -0
  33. package/models/components/transfercapture.d.ts.map +1 -0
  34. package/models/components/transfercapture.js +60 -0
  35. package/models/components/transfercapture.js.map +1 -0
  36. package/models/components/transferpaymentmethodswallet.d.ts +1 -0
  37. package/models/components/transferpaymentmethodswallet.d.ts.map +1 -1
  38. package/models/components/transferpaymentmethodswallet.js.map +1 -1
  39. package/models/components/wallet.d.ts +1 -0
  40. package/models/components/wallet.d.ts.map +1 -1
  41. package/models/components/wallet.js.map +1 -1
  42. package/models/components/wallettype.d.ts +3 -0
  43. package/models/components/wallettype.d.ts.map +1 -1
  44. package/models/components/wallettype.js +2 -0
  45. package/models/components/wallettype.js.map +1 -1
  46. package/models/components/webhookdatatransferstatus.d.ts +3 -0
  47. package/models/components/webhookdatatransferstatus.d.ts.map +1 -1
  48. package/models/components/webhookdatatransferstatus.js +3 -0
  49. package/models/components/webhookdatatransferstatus.js.map +1 -1
  50. package/models/errors/transfer.d.ts +9 -0
  51. package/models/errors/transfer.d.ts.map +1 -1
  52. package/models/errors/transfer.js +4 -0
  53. package/models/errors/transfer.js.map +1 -1
  54. package/models/operations/listtransfers.d.ts +10 -0
  55. package/models/operations/listtransfers.d.ts.map +1 -1
  56. package/models/operations/listtransfers.js +4 -0
  57. package/models/operations/listtransfers.js.map +1 -1
  58. package/package.json +1 -1
  59. package/src/funcs/transfersList.ts +2 -0
  60. package/src/lib/config.ts +2 -2
  61. package/src/mcp-server/mcp-server.ts +1 -1
  62. package/src/mcp-server/server.ts +1 -1
  63. package/src/mcp-server/tools/avatarsGet.ts +1 -1
  64. package/src/mcp-server/tools/enrichedAddressGet.ts +1 -1
  65. package/src/mcp-server/tools/enrichedProfileGet.ts +1 -1
  66. package/src/mcp-server/tools/institutionsSearch.ts +1 -1
  67. package/src/models/components/createdtransfer.ts +13 -0
  68. package/src/models/components/createrefund.ts +2 -2
  69. package/src/models/components/createreversal.ts +1 -1
  70. package/src/models/components/index.ts +1 -0
  71. package/src/models/components/paymentmethodswallet.ts +1 -0
  72. package/src/models/components/transfer.ts +13 -0
  73. package/src/models/components/transfercapture.ts +62 -0
  74. package/src/models/components/transferpaymentmethodswallet.ts +1 -0
  75. package/src/models/components/wallet.ts +1 -0
  76. package/src/models/components/wallettype.ts +3 -0
  77. package/src/models/components/webhookdatatransferstatus.ts +3 -0
  78. package/src/models/errors/transfer.ts +12 -0
  79. package/src/models/operations/listtransfers.ts +14 -0
package/README.md CHANGED
@@ -425,7 +425,7 @@ Allows clients to notify the authorization server that a previously obtained ref
425
425
 
426
426
  * [get](docs/sdks/avatars/README.md#get) - Get avatar image for an account using a unique ID.
427
427
 
428
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
428
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
429
429
  you'll need to specify the `/profile-enrichment.read` scope.
430
430
 
431
431
  ### [BankAccounts](docs/sdks/bankaccounts/README.md)
@@ -713,14 +713,14 @@ you'll need to specify the `/ping.read` scope.
713
713
 
714
714
  * [get](docs/sdks/enrichedaddress/README.md#get) - Fetch enriched address suggestions. Requires a partial address.
715
715
 
716
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
716
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
717
717
  you'll need to specify the `/profile-enrichment.read` scope.
718
718
 
719
719
  ### [EnrichedProfile](docs/sdks/enrichedprofile/README.md)
720
720
 
721
721
  * [get](docs/sdks/enrichedprofile/README.md#get) - Fetch enriched profile data. Requires a valid email address. This service is offered in collaboration with Clearbit.
722
722
 
723
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
723
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
724
724
  you'll need to specify the `/profile-enrichment.read` scope.
725
725
 
726
726
  ### [FeePlans](docs/sdks/feeplans/README.md)
@@ -823,7 +823,7 @@ you'll need to specify the `/institutions.read` scope.
823
823
 
824
824
  Search for institutions by either their name or routing number.
825
825
 
826
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
826
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
827
827
  you'll need to specify the `/fed.read` scope. :warning: **Deprecated**
828
828
 
829
829
  ### [IssuingTransactions](docs/sdks/issuingtransactions/README.md)
@@ -1417,7 +1417,7 @@ you'll need to specify the `/accounts/{accountID}/apple-pay.write` scope.
1417
1417
  Allows clients to notify the authorization server that a previously obtained refresh or access token is no longer needed.
1418
1418
  - [`avatarsGet`](docs/sdks/avatars/README.md#get) - Get avatar image for an account using a unique ID.
1419
1419
 
1420
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1420
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1421
1421
  you'll need to specify the `/profile-enrichment.read` scope.
1422
1422
  - [`bankAccountsCompleteMicroDeposits`](docs/sdks/bankaccounts/README.md#completemicrodeposits) - Complete the micro-deposit validation process by passing the amounts of the two transfers within three tries.
1423
1423
 
@@ -1681,11 +1681,11 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
1681
1681
  you'll need to specify the `/ping.read` scope.
1682
1682
  - [`enrichedAddressGet`](docs/sdks/enrichedaddress/README.md#get) - Fetch enriched address suggestions. Requires a partial address.
1683
1683
 
1684
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1684
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1685
1685
  you'll need to specify the `/profile-enrichment.read` scope.
1686
1686
  - [`enrichedProfileGet`](docs/sdks/enrichedprofile/README.md#get) - Fetch enriched profile data. Requires a valid email address. This service is offered in collaboration with Clearbit.
1687
1687
 
1688
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1688
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
1689
1689
  you'll need to specify the `/profile-enrichment.read` scope.
1690
1690
  - [`feePlansCreateFeePlanAgreements`](docs/sdks/feeplans/README.md#createfeeplanagreements) - Creates the subscription of a fee plan to a merchant account. Merchants are required to accept the fee plan terms prior to activation.
1691
1691
 
@@ -2156,7 +2156,7 @@ you'll need to specify the `/accounts/{accountID}/wallets.read` scope.
2156
2156
 
2157
2157
  Search for institutions by either their name or routing number.
2158
2158
 
2159
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
2159
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
2160
2160
  you'll need to specify the `/fed.read` scope. :warning: **Deprecated**
2161
2161
 
2162
2162
  </details>
package/bin/mcp-server.js CHANGED
@@ -52974,9 +52974,9 @@ var init_config = __esm(() => {
52974
52974
  SDK_METADATA = {
52975
52975
  language: "typescript",
52976
52976
  openapiDocVersion: "v2025.10.00",
52977
- sdkVersion: "25.12.5",
52977
+ sdkVersion: "25.12.6",
52978
52978
  genVersion: "2.924.0",
52979
- userAgent: "speakeasy-sdk/typescript 25.12.5 2.924.0 v2025.10.00 @moovio/sdk"
52979
+ userAgent: "speakeasy-sdk/typescript 25.12.6 2.924.0 v2025.10.00 @moovio/sdk"
52980
52980
  };
52981
52981
  });
52982
52982
 
@@ -61315,6 +61315,20 @@ var init_moovfeedetails = __esm(() => {
61315
61315
  });
61316
61316
  });
61317
61317
 
61318
+ // src/models/components/transfercapture.ts
61319
+ var TransferCapture$inboundSchema, TransferCapture$outboundSchema;
61320
+ var init_transfercapture = __esm(() => {
61321
+ init_esm();
61322
+ TransferCapture$inboundSchema = objectType({
61323
+ authorizationID: stringType(),
61324
+ captureID: stringType()
61325
+ });
61326
+ TransferCapture$outboundSchema = objectType({
61327
+ authorizationID: stringType(),
61328
+ captureID: stringType()
61329
+ });
61330
+ });
61331
+
61318
61332
  // src/models/components/instantbankfailurecode.ts
61319
61333
  var InstantBankFailureCode, InstantBankFailureCode$inboundSchema, InstantBankFailureCode$outboundSchema;
61320
61334
  var init_instantbankfailurecode = __esm(() => {
@@ -61475,7 +61489,8 @@ var init_wallettype = __esm(() => {
61475
61489
  init_esm();
61476
61490
  WalletType = {
61477
61491
  Default: "default",
61478
- General: "general"
61492
+ General: "general",
61493
+ CardIssuing: "card-issuing"
61479
61494
  };
61480
61495
  WalletType$inboundSchema = nativeEnumType(WalletType);
61481
61496
  WalletType$outboundSchema = WalletType$inboundSchema;
@@ -61722,6 +61737,7 @@ var init_createdtransfer = __esm(() => {
61722
61737
  init_cardacquiringrefund();
61723
61738
  init_facilitatorfee();
61724
61739
  init_moovfeedetails();
61740
+ init_transfercapture();
61725
61741
  init_transferdestination();
61726
61742
  init_transferfailurereason();
61727
61743
  init_transferlineitems();
@@ -61754,7 +61770,8 @@ var init_createdtransfer = __esm(() => {
61754
61770
  paymentLinkCode: stringType().optional(),
61755
61771
  salesTaxAmount: Amount$inboundSchema.optional(),
61756
61772
  foreignID: stringType().optional(),
61757
- lineItems: TransferLineItems$inboundSchema.optional()
61773
+ lineItems: TransferLineItems$inboundSchema.optional(),
61774
+ capture: TransferCapture$inboundSchema.optional()
61758
61775
  });
61759
61776
  CreatedTransfer$outboundSchema = objectType({
61760
61777
  transferID: stringType(),
@@ -61783,7 +61800,8 @@ var init_createdtransfer = __esm(() => {
61783
61800
  paymentLinkCode: stringType().optional(),
61784
61801
  salesTaxAmount: Amount$outboundSchema.optional(),
61785
61802
  foreignID: stringType().optional(),
61786
- lineItems: TransferLineItems$outboundSchema.optional()
61803
+ lineItems: TransferLineItems$outboundSchema.optional(),
61804
+ capture: TransferCapture$outboundSchema.optional()
61787
61805
  });
61788
61806
  });
61789
61807
 
@@ -66986,6 +67004,7 @@ var init_transfer = __esm(() => {
66986
67004
  init_facilitatorfee();
66987
67005
  init_moovfee();
66988
67006
  init_moovfeedetails();
67007
+ init_transfercapture();
66989
67008
  init_transferdestination();
66990
67009
  init_transferfailurereason();
66991
67010
  init_transferlineitems();
@@ -67019,7 +67038,8 @@ var init_transfer = __esm(() => {
67019
67038
  paymentLinkCode: stringType().optional(),
67020
67039
  salesTaxAmount: Amount$inboundSchema.optional(),
67021
67040
  foreignID: stringType().optional(),
67022
- lineItems: TransferLineItems$inboundSchema.optional()
67041
+ lineItems: TransferLineItems$inboundSchema.optional(),
67042
+ capture: TransferCapture$inboundSchema.optional()
67023
67043
  });
67024
67044
  Transfer$outboundSchema = objectType({
67025
67045
  transferID: stringType(),
@@ -67049,7 +67069,8 @@ var init_transfer = __esm(() => {
67049
67069
  paymentLinkCode: stringType().optional(),
67050
67070
  salesTaxAmount: Amount$outboundSchema.optional(),
67051
67071
  foreignID: stringType().optional(),
67052
- lineItems: TransferLineItems$outboundSchema.optional()
67072
+ lineItems: TransferLineItems$outboundSchema.optional(),
67073
+ capture: TransferCapture$outboundSchema.optional()
67053
67074
  });
67054
67075
  });
67055
67076
 
@@ -68356,8 +68377,11 @@ var init_webhookdatatransferstatus = __esm(() => {
68356
68377
  DestinationReturned: "destination.returned",
68357
68378
  DestinationOriginated: "destination.originated",
68358
68379
  DestinationConfirmed: "destination.confirmed",
68380
+ DestinationSettled: "destination.settled",
68359
68381
  DestinationFailed: "destination.failed",
68360
- DestinationAcceptedWithoutPosting: "destination.accepted-without-posting"
68382
+ DestinationCanceled: "destination.canceled",
68383
+ DestinationAcceptedWithoutPosting: "destination.accepted-without-posting",
68384
+ DestinationDeferred: "destination.deferred"
68361
68385
  };
68362
68386
  WebhookDataTransferStatus$inboundSchema = nativeEnumType(WebhookDataTransferStatus);
68363
68387
  WebhookDataTransferStatus$outboundSchema = WebhookDataTransferStatus$inboundSchema;
@@ -69085,6 +69109,7 @@ var init_components = __esm(() => {
69085
69109
  init_transfer();
69086
69110
  init_transferaccount();
69087
69111
  init_transferachaddendarecord();
69112
+ init_transfercapture();
69088
69113
  init_transferdestination();
69089
69114
  init_transferentrymode();
69090
69115
  init_transferfailurereason();
@@ -71046,6 +71071,7 @@ var init_transfer2 = __esm(() => {
71046
71071
  salesTaxAmount;
71047
71072
  foreignID;
71048
71073
  lineItems;
71074
+ capture;
71049
71075
  data$;
71050
71076
  constructor(err, httpMeta) {
71051
71077
  const message = "message" in err && typeof err.message === "string" ? err.message : `API error occurred: ${JSON.stringify(err)}`;
@@ -71101,6 +71127,8 @@ var init_transfer2 = __esm(() => {
71101
71127
  this.foreignID = err.foreignID;
71102
71128
  if (err.lineItems != null)
71103
71129
  this.lineItems = err.lineItems;
71130
+ if (err.capture != null)
71131
+ this.capture = err.capture;
71104
71132
  this.name = "Transfer";
71105
71133
  }
71106
71134
  };
@@ -71133,6 +71161,7 @@ var init_transfer2 = __esm(() => {
71133
71161
  salesTaxAmount: Amount$inboundSchema.optional(),
71134
71162
  foreignID: stringType().optional(),
71135
71163
  lineItems: TransferLineItems$inboundSchema.optional(),
71164
+ capture: TransferCapture$inboundSchema.optional(),
71136
71165
  request$: instanceOfType(Request),
71137
71166
  response$: instanceOfType(Response),
71138
71167
  body$: stringType()
@@ -71171,7 +71200,8 @@ var init_transfer2 = __esm(() => {
71171
71200
  paymentLinkCode: stringType().optional(),
71172
71201
  salesTaxAmount: Amount$outboundSchema.optional(),
71173
71202
  foreignID: stringType().optional(),
71174
- lineItems: TransferLineItems$outboundSchema.optional()
71203
+ lineItems: TransferLineItems$outboundSchema.optional(),
71204
+ capture: TransferCapture$outboundSchema.optional()
71175
71205
  }));
71176
71206
  });
71177
71207
 
@@ -76764,6 +76794,8 @@ var init_listtransfers = __esm(() => {
76764
76794
  refunded: booleanType().optional(),
76765
76795
  disputed: booleanType().optional(),
76766
76796
  foreignID: stringType().optional(),
76797
+ authorizationIDs: arrayType(stringType()).optional(),
76798
+ captureIDs: arrayType(stringType()).optional(),
76767
76799
  skip: numberType().int().optional(),
76768
76800
  count: numberType().int().optional(),
76769
76801
  accountID: stringType()
@@ -76779,6 +76811,8 @@ var init_listtransfers = __esm(() => {
76779
76811
  refunded: booleanType().optional(),
76780
76812
  disputed: booleanType().optional(),
76781
76813
  foreignID: stringType().optional(),
76814
+ authorizationIDs: arrayType(stringType()).optional(),
76815
+ captureIDs: arrayType(stringType()).optional(),
76782
76816
  skip: numberType().int().optional(),
76783
76817
  count: numberType().int().optional(),
76784
76818
  accountID: stringType()
@@ -81314,7 +81348,7 @@ var init_avatarsGet2 = __esm(() => {
81314
81348
  name: "avatars-get",
81315
81349
  description: `Get avatar image for an account using a unique ID.
81316
81350
 
81317
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
81351
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
81318
81352
  you'll need to specify the \`/profile-enrichment.read\` scope.`,
81319
81353
  args: args25,
81320
81354
  tool: async (client, args26, ctx) => {
@@ -86119,7 +86153,7 @@ var init_enrichedAddressGet2 = __esm(() => {
86119
86153
  name: "enriched-address-get",
86120
86154
  description: `Fetch enriched address suggestions. Requires a partial address.
86121
86155
 
86122
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
86156
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
86123
86157
  you'll need to specify the \`/profile-enrichment.read\` scope.`,
86124
86158
  args: args64,
86125
86159
  tool: async (client, args65, ctx) => {
@@ -86228,7 +86262,7 @@ var init_enrichedProfileGet2 = __esm(() => {
86228
86262
  name: "enriched-profile-get",
86229
86263
  description: `Fetch enriched profile data. Requires a valid email address. This service is offered in collaboration with Clearbit.
86230
86264
 
86231
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
86265
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
86232
86266
  you'll need to specify the \`/profile-enrichment.read\` scope.`,
86233
86267
  args: args65,
86234
86268
  tool: async (client, args66, ctx) => {
@@ -88821,7 +88855,7 @@ var init_institutionsSearch2 = __esm(() => {
88821
88855
 
88822
88856
  Search for institutions by either their name or routing number.
88823
88857
 
88824
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
88858
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
88825
88859
  you'll need to specify the \`/fed.read\` scope.`,
88826
88860
  args: args86,
88827
88861
  tool: async (client, args87, ctx) => {
@@ -96200,6 +96234,8 @@ async function $do153(client, request, options) {
96200
96234
  const path = pathToFunc("/accounts/{accountID}/transfers")(pathParams);
96201
96235
  const query = encodeFormQuery({
96202
96236
  accountIDs: payload.accountIDs,
96237
+ authorizationIDs: payload.authorizationIDs,
96238
+ captureIDs: payload.captureIDs,
96203
96239
  count: payload.count,
96204
96240
  disputed: payload.disputed,
96205
96241
  endDateTime: payload.endDateTime,
@@ -98582,7 +98618,7 @@ var init_webhooksUpdate2 = __esm(() => {
98582
98618
  function createMCPServer(deps) {
98583
98619
  const server = new McpServer({
98584
98620
  name: "Moov",
98585
- version: "25.12.5"
98621
+ version: "25.12.6"
98586
98622
  });
98587
98623
  const client = new MoovCore({
98588
98624
  security: deps.security,
@@ -100152,7 +100188,7 @@ var routes = rn({
100152
100188
  var app = Ve(routes, {
100153
100189
  name: "mcp",
100154
100190
  versionInfo: {
100155
- currentVersion: "25.12.5"
100191
+ currentVersion: "25.12.6"
100156
100192
  }
100157
100193
  });
100158
100194
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -100160,5 +100196,5 @@ export {
100160
100196
  app
100161
100197
  };
100162
100198
 
100163
- //# debugId=4EF3C16FFD0FE34464756E2164756E21
100199
+ //# debugId=85E935125824923964756E2164756E21
100164
100200
  //# sourceMappingURL=mcp-server.js.map