@moovio/sdk 26.3.5 → 26.3.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: "v2026.01.00",
52977
- sdkVersion: "26.3.5",
52977
+ sdkVersion: "26.3.6",
52978
52978
  genVersion: "2.924.0",
52979
- userAgent: "speakeasy-sdk/typescript 26.3.5 2.924.0 v2026.01.00 @moovio/sdk"
52979
+ userAgent: "speakeasy-sdk/typescript 26.3.6 2.924.0 v2026.01.00 @moovio/sdk"
52980
52980
  };
52981
52981
  });
52982
52982
 
@@ -61316,6 +61316,20 @@ var init_moovfeedetails = __esm(() => {
61316
61316
  });
61317
61317
  });
61318
61318
 
61319
+ // src/models/components/transfercapture.ts
61320
+ var TransferCapture$inboundSchema, TransferCapture$outboundSchema;
61321
+ var init_transfercapture = __esm(() => {
61322
+ init_esm();
61323
+ TransferCapture$inboundSchema = objectType({
61324
+ authorizationID: stringType(),
61325
+ captureID: stringType()
61326
+ });
61327
+ TransferCapture$outboundSchema = objectType({
61328
+ authorizationID: stringType(),
61329
+ captureID: stringType()
61330
+ });
61331
+ });
61332
+
61319
61333
  // src/models/components/instantbankfailurecode.ts
61320
61334
  var InstantBankFailureCode, InstantBankFailureCode$inboundSchema, InstantBankFailureCode$outboundSchema;
61321
61335
  var init_instantbankfailurecode = __esm(() => {
@@ -61476,7 +61490,8 @@ var init_wallettype = __esm(() => {
61476
61490
  init_esm();
61477
61491
  WalletType = {
61478
61492
  Default: "default",
61479
- General: "general"
61493
+ General: "general",
61494
+ CardIssuing: "card-issuing"
61480
61495
  };
61481
61496
  WalletType$inboundSchema = nativeEnumType(WalletType);
61482
61497
  WalletType$outboundSchema = WalletType$inboundSchema;
@@ -61724,6 +61739,7 @@ var init_createdtransfer = __esm(() => {
61724
61739
  init_cardacquiringrefund();
61725
61740
  init_facilitatorfee();
61726
61741
  init_moovfeedetails();
61742
+ init_transfercapture();
61727
61743
  init_transferdestination();
61728
61744
  init_transferfailurereason();
61729
61745
  init_transferlineitems();
@@ -61756,7 +61772,8 @@ var init_createdtransfer = __esm(() => {
61756
61772
  paymentLinkCode: stringType().optional(),
61757
61773
  salesTaxAmount: Amount$inboundSchema.optional(),
61758
61774
  foreignID: stringType().optional(),
61759
- lineItems: TransferLineItems$inboundSchema.optional()
61775
+ lineItems: TransferLineItems$inboundSchema.optional(),
61776
+ capture: TransferCapture$inboundSchema.optional()
61760
61777
  });
61761
61778
  CreatedTransfer$outboundSchema = objectType({
61762
61779
  transferID: stringType(),
@@ -61785,7 +61802,8 @@ var init_createdtransfer = __esm(() => {
61785
61802
  paymentLinkCode: stringType().optional(),
61786
61803
  salesTaxAmount: Amount$outboundSchema.optional(),
61787
61804
  foreignID: stringType().optional(),
61788
- lineItems: TransferLineItems$outboundSchema.optional()
61805
+ lineItems: TransferLineItems$outboundSchema.optional(),
61806
+ capture: TransferCapture$outboundSchema.optional()
61789
61807
  });
61790
61808
  });
61791
61809
 
@@ -67025,6 +67043,7 @@ var init_transfer = __esm(() => {
67025
67043
  init_facilitatorfee();
67026
67044
  init_moovfee();
67027
67045
  init_moovfeedetails();
67046
+ init_transfercapture();
67028
67047
  init_transferdestination();
67029
67048
  init_transferfailurereason();
67030
67049
  init_transferlineitems();
@@ -67058,7 +67077,8 @@ var init_transfer = __esm(() => {
67058
67077
  paymentLinkCode: stringType().optional(),
67059
67078
  salesTaxAmount: Amount$inboundSchema.optional(),
67060
67079
  foreignID: stringType().optional(),
67061
- lineItems: TransferLineItems$inboundSchema.optional()
67080
+ lineItems: TransferLineItems$inboundSchema.optional(),
67081
+ capture: TransferCapture$inboundSchema.optional()
67062
67082
  });
67063
67083
  Transfer$outboundSchema = objectType({
67064
67084
  transferID: stringType(),
@@ -67088,7 +67108,8 @@ var init_transfer = __esm(() => {
67088
67108
  paymentLinkCode: stringType().optional(),
67089
67109
  salesTaxAmount: Amount$outboundSchema.optional(),
67090
67110
  foreignID: stringType().optional(),
67091
- lineItems: TransferLineItems$outboundSchema.optional()
67111
+ lineItems: TransferLineItems$outboundSchema.optional(),
67112
+ capture: TransferCapture$outboundSchema.optional()
67092
67113
  });
67093
67114
  });
67094
67115
 
@@ -68398,8 +68419,11 @@ var init_webhookdatatransferstatus = __esm(() => {
68398
68419
  DestinationReturned: "destination.returned",
68399
68420
  DestinationOriginated: "destination.originated",
68400
68421
  DestinationConfirmed: "destination.confirmed",
68422
+ DestinationSettled: "destination.settled",
68401
68423
  DestinationFailed: "destination.failed",
68402
- DestinationAcceptedWithoutPosting: "destination.accepted-without-posting"
68424
+ DestinationCanceled: "destination.canceled",
68425
+ DestinationAcceptedWithoutPosting: "destination.accepted-without-posting",
68426
+ DestinationDeferred: "destination.deferred"
68403
68427
  };
68404
68428
  WebhookDataTransferStatus$inboundSchema = nativeEnumType(WebhookDataTransferStatus);
68405
68429
  WebhookDataTransferStatus$outboundSchema = WebhookDataTransferStatus$inboundSchema;
@@ -69129,6 +69153,7 @@ var init_components = __esm(() => {
69129
69153
  init_transfer();
69130
69154
  init_transferaccount();
69131
69155
  init_transferachaddendarecord();
69156
+ init_transfercapture();
69132
69157
  init_transferdestination();
69133
69158
  init_transferentrymode();
69134
69159
  init_transferfailurereason();
@@ -71090,6 +71115,7 @@ var init_transfer2 = __esm(() => {
71090
71115
  salesTaxAmount;
71091
71116
  foreignID;
71092
71117
  lineItems;
71118
+ capture;
71093
71119
  data$;
71094
71120
  constructor(err, httpMeta) {
71095
71121
  const message = "message" in err && typeof err.message === "string" ? err.message : `API error occurred: ${JSON.stringify(err)}`;
@@ -71145,6 +71171,8 @@ var init_transfer2 = __esm(() => {
71145
71171
  this.foreignID = err.foreignID;
71146
71172
  if (err.lineItems != null)
71147
71173
  this.lineItems = err.lineItems;
71174
+ if (err.capture != null)
71175
+ this.capture = err.capture;
71148
71176
  this.name = "Transfer";
71149
71177
  }
71150
71178
  };
@@ -71177,6 +71205,7 @@ var init_transfer2 = __esm(() => {
71177
71205
  salesTaxAmount: Amount$inboundSchema.optional(),
71178
71206
  foreignID: stringType().optional(),
71179
71207
  lineItems: TransferLineItems$inboundSchema.optional(),
71208
+ capture: TransferCapture$inboundSchema.optional(),
71180
71209
  request$: instanceOfType(Request),
71181
71210
  response$: instanceOfType(Response),
71182
71211
  body$: stringType()
@@ -71215,7 +71244,8 @@ var init_transfer2 = __esm(() => {
71215
71244
  paymentLinkCode: stringType().optional(),
71216
71245
  salesTaxAmount: Amount$outboundSchema.optional(),
71217
71246
  foreignID: stringType().optional(),
71218
- lineItems: TransferLineItems$outboundSchema.optional()
71247
+ lineItems: TransferLineItems$outboundSchema.optional(),
71248
+ capture: TransferCapture$outboundSchema.optional()
71219
71249
  }));
71220
71250
  });
71221
71251
 
@@ -76808,6 +76838,8 @@ var init_listtransfers = __esm(() => {
76808
76838
  refunded: booleanType().optional(),
76809
76839
  disputed: booleanType().optional(),
76810
76840
  foreignID: stringType().optional(),
76841
+ authorizationIDs: arrayType(stringType()).optional(),
76842
+ captureIDs: arrayType(stringType()).optional(),
76811
76843
  skip: numberType().int().optional(),
76812
76844
  count: numberType().int().optional(),
76813
76845
  accountID: stringType()
@@ -76823,6 +76855,8 @@ var init_listtransfers = __esm(() => {
76823
76855
  refunded: booleanType().optional(),
76824
76856
  disputed: booleanType().optional(),
76825
76857
  foreignID: stringType().optional(),
76858
+ authorizationIDs: arrayType(stringType()).optional(),
76859
+ captureIDs: arrayType(stringType()).optional(),
76826
76860
  skip: numberType().int().optional(),
76827
76861
  count: numberType().int().optional(),
76828
76862
  accountID: stringType()
@@ -81358,7 +81392,7 @@ var init_avatarsGet2 = __esm(() => {
81358
81392
  name: "avatars-get",
81359
81393
  description: `Get avatar image for an account using a unique ID.
81360
81394
 
81361
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
81395
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
81362
81396
  you'll need to specify the \`/profile-enrichment.read\` scope.`,
81363
81397
  args: args25,
81364
81398
  tool: async (client, args26, ctx) => {
@@ -86163,7 +86197,7 @@ var init_enrichedAddressGet2 = __esm(() => {
86163
86197
  name: "enriched-address-get",
86164
86198
  description: `Fetch enriched address suggestions. Requires a partial address.
86165
86199
 
86166
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
86200
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
86167
86201
  you'll need to specify the \`/profile-enrichment.read\` scope.`,
86168
86202
  args: args64,
86169
86203
  tool: async (client, args65, ctx) => {
@@ -86272,7 +86306,7 @@ var init_enrichedProfileGet2 = __esm(() => {
86272
86306
  name: "enriched-profile-get",
86273
86307
  description: `Fetch enriched profile data. Requires a valid email address. This service is offered in collaboration with Clearbit.
86274
86308
 
86275
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
86309
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
86276
86310
  you'll need to specify the \`/profile-enrichment.read\` scope.`,
86277
86311
  args: args65,
86278
86312
  tool: async (client, args66, ctx) => {
@@ -88865,7 +88899,7 @@ var init_institutionsSearch2 = __esm(() => {
88865
88899
 
88866
88900
  Search for institutions by either their name or routing number.
88867
88901
 
88868
- To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
88902
+ To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
88869
88903
  you'll need to specify the \`/fed.read\` scope.`,
88870
88904
  args: args86,
88871
88905
  tool: async (client, args87, ctx) => {
@@ -96244,6 +96278,8 @@ async function $do153(client, request, options) {
96244
96278
  const path = pathToFunc("/accounts/{accountID}/transfers")(pathParams);
96245
96279
  const query = encodeFormQuery({
96246
96280
  accountIDs: payload.accountIDs,
96281
+ authorizationIDs: payload.authorizationIDs,
96282
+ captureIDs: payload.captureIDs,
96247
96283
  count: payload.count,
96248
96284
  disputed: payload.disputed,
96249
96285
  endDateTime: payload.endDateTime,
@@ -98626,7 +98662,7 @@ var init_webhooksUpdate2 = __esm(() => {
98626
98662
  function createMCPServer(deps) {
98627
98663
  const server = new McpServer({
98628
98664
  name: "Moov",
98629
- version: "26.3.5"
98665
+ version: "26.3.6"
98630
98666
  });
98631
98667
  const client = new MoovCore({
98632
98668
  security: deps.security,
@@ -100196,7 +100232,7 @@ var routes = rn({
100196
100232
  var app = Ve(routes, {
100197
100233
  name: "mcp",
100198
100234
  versionInfo: {
100199
- currentVersion: "26.3.5"
100235
+ currentVersion: "26.3.6"
100200
100236
  }
100201
100237
  });
100202
100238
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -100204,5 +100240,5 @@ export {
100204
100240
  app
100205
100241
  };
100206
100242
 
100207
- //# debugId=6002B66877E7499864756E2164756E21
100243
+ //# debugId=C98D8850030B551164756E2164756E21
100208
100244
  //# sourceMappingURL=mcp-server.js.map