@moovio/sdk 0.0.0-dev.21 → 0.0.0-dev.23

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/README.md CHANGED
@@ -240,6 +240,32 @@ run();
240
240
  ```
241
241
  <!-- End Authentication [security] -->
242
242
 
243
+ Client-side authentication is supported through the `accessToken` parameter. For example:
244
+ ```typescript
245
+ import { Moov } from "@moovio/sdk";
246
+
247
+ const moov = new Moov({
248
+ accessToken: "",
249
+ });
250
+
251
+ async function run() {
252
+ const result = await moov.accounts.create({
253
+ accountType: "business",
254
+ profile: {
255
+ business: {
256
+ legalBusinessName: "Whole Body Fitness LLC",
257
+ },
258
+ },
259
+ });
260
+
261
+ console.log(result);
262
+ }
263
+
264
+ run();
265
+
266
+ ```
267
+ See the [Moov authentication docs](https://docs.moov.io/api/authentication/api-authentication/) for more information.
268
+
243
269
  <!-- Start Available Resources and Operations [operations] -->
244
270
  ## Available Resources and Operations
245
271
 
package/bin/mcp-server.js CHANGED
@@ -53586,9 +53586,9 @@ var init_config = __esm(() => {
53586
53586
  SDK_METADATA = {
53587
53587
  language: "typescript",
53588
53588
  openapiDocVersion: "dev",
53589
- sdkVersion: "0.0.0-dev.21",
53590
- genVersion: "2.882.0",
53591
- userAgent: "speakeasy-sdk/typescript 0.0.0-dev.21 2.882.0 dev @moovio/sdk"
53589
+ sdkVersion: "0.0.0-dev.23",
53590
+ genVersion: "2.884.4",
53591
+ userAgent: "speakeasy-sdk/typescript 0.0.0-dev.23 2.884.4 dev @moovio/sdk"
53592
53592
  };
53593
53593
  });
53594
53594
 
@@ -70641,13 +70641,16 @@ var WebhookDataBankAccountDeleted$inboundSchema, WebhookDataBankAccountDeleted$o
70641
70641
  var init_webhookdatabankaccountdeleted = __esm(() => {
70642
70642
  init_v3();
70643
70643
  init_primitives2();
70644
+ init_bankaccountstatus();
70644
70645
  WebhookDataBankAccountDeleted$inboundSchema = objectType({
70645
70646
  bankAccountID: string4(),
70646
- accountID: string4()
70647
+ accountID: string4(),
70648
+ status: BankAccountStatus$inboundSchema
70647
70649
  });
70648
70650
  WebhookDataBankAccountDeleted$outboundSchema = objectType({
70649
70651
  bankAccountID: stringType(),
70650
- accountID: stringType()
70652
+ accountID: stringType(),
70653
+ status: BankAccountStatus$outboundSchema
70651
70654
  });
70652
70655
  });
70653
70656
 
@@ -71310,6 +71313,7 @@ var init_webhookdata = __esm(() => {
71310
71313
  WebhookDataRefundUpdated$inboundSchema,
71311
71314
  WebhookDataWalletTransactionUpdated$inboundSchema,
71312
71315
  WebhookDataBankAccountCreated$inboundSchema,
71316
+ WebhookDataBankAccountDeleted$inboundSchema,
71313
71317
  WebhookDataCancellationCreated$inboundSchema,
71314
71318
  WebhookDataCancellationUpdated$inboundSchema,
71315
71319
  WebhookDataCardAutoUpdated$inboundSchema,
@@ -71323,7 +71327,6 @@ var init_webhookdata = __esm(() => {
71323
71327
  WebhookDataTransferCreated$inboundSchema,
71324
71328
  WebhookDataWalletUpdated$inboundSchema,
71325
71329
  WebhookDataBalanceUpdated$inboundSchema,
71326
- WebhookDataBankAccountDeleted$inboundSchema,
71327
71330
  WebhookDataCapabilityRequested$inboundSchema,
71328
71331
  WebhookDataInvoiceCreated$inboundSchema,
71329
71332
  WebhookDataRepresentativeCreated$inboundSchema,
@@ -71349,6 +71352,7 @@ var init_webhookdata = __esm(() => {
71349
71352
  WebhookDataRefundUpdated$outboundSchema,
71350
71353
  WebhookDataWalletTransactionUpdated$outboundSchema,
71351
71354
  WebhookDataBankAccountCreated$outboundSchema,
71355
+ WebhookDataBankAccountDeleted$outboundSchema,
71352
71356
  WebhookDataCancellationCreated$outboundSchema,
71353
71357
  WebhookDataCancellationUpdated$outboundSchema,
71354
71358
  WebhookDataCardAutoUpdated$outboundSchema,
@@ -71362,7 +71366,6 @@ var init_webhookdata = __esm(() => {
71362
71366
  WebhookDataTransferCreated$outboundSchema,
71363
71367
  WebhookDataWalletUpdated$outboundSchema,
71364
71368
  WebhookDataBalanceUpdated$outboundSchema,
71365
- WebhookDataBankAccountDeleted$outboundSchema,
71366
71369
  WebhookDataCapabilityRequested$outboundSchema,
71367
71370
  WebhookDataInvoiceCreated$outboundSchema,
71368
71371
  WebhookDataRepresentativeCreated$outboundSchema,
@@ -104429,7 +104432,7 @@ var init_webhooksUpdate2 = __esm(() => {
104429
104432
  function createMCPServer(deps) {
104430
104433
  const server = new McpServer({
104431
104434
  name: "Moov",
104432
- version: "0.0.0-dev.21"
104435
+ version: "0.0.0-dev.23"
104433
104436
  });
104434
104437
  const client = new MoovCore({
104435
104438
  security: deps.security,
@@ -106029,7 +106032,7 @@ var routes = rn({
106029
106032
  var app = Ve(routes, {
106030
106033
  name: "mcp",
106031
106034
  versionInfo: {
106032
- currentVersion: "0.0.0-dev.21"
106035
+ currentVersion: "0.0.0-dev.23"
106033
106036
  }
106034
106037
  });
106035
106038
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -106037,5 +106040,5 @@ export {
106037
106040
  app
106038
106041
  };
106039
106042
 
106040
- //# debugId=61BB0E8FFCD0F90E64756E2164756E21
106043
+ //# debugId=27680F70A02FE5B664756E2164756E21
106041
106044
  //# sourceMappingURL=mcp-server.js.map