@moovio/sdk 0.10.4 → 0.10.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 (37) hide show
  1. package/README.md +2 -2
  2. package/bin/mcp-server.js +10 -7
  3. package/bin/mcp-server.js.map +13 -13
  4. package/docs/sdks/files/README.md +2 -2
  5. package/funcs/filesUpload.d.ts +1 -1
  6. package/funcs/filesUpload.js +1 -1
  7. package/funcs/transfersList.js +1 -0
  8. package/funcs/transfersList.js.map +1 -1
  9. package/jsr.json +1 -1
  10. package/lib/config.d.ts +3 -3
  11. package/lib/config.js +3 -3
  12. package/mcp-server/mcp-server.js +1 -1
  13. package/mcp-server/server.js +1 -1
  14. package/mcp-server/tools/filesUpload.js +1 -1
  15. package/models/components/createevidencefilemultipart.d.ts +1 -1
  16. package/models/components/createtransfer.d.ts +1 -1
  17. package/models/components/transfer.d.ts +1 -1
  18. package/models/errors/transfer.d.ts +2 -2
  19. package/models/operations/listtransfers.d.ts +5 -0
  20. package/models/operations/listtransfers.d.ts.map +1 -1
  21. package/models/operations/listtransfers.js +2 -0
  22. package/models/operations/listtransfers.js.map +1 -1
  23. package/package.json +1 -1
  24. package/sdk/files.d.ts +1 -1
  25. package/sdk/files.js +1 -1
  26. package/src/funcs/filesUpload.ts +1 -1
  27. package/src/funcs/transfersList.ts +1 -0
  28. package/src/lib/config.ts +3 -3
  29. package/src/mcp-server/mcp-server.ts +1 -1
  30. package/src/mcp-server/server.ts +1 -1
  31. package/src/mcp-server/tools/filesUpload.ts +1 -1
  32. package/src/models/components/createevidencefilemultipart.ts +1 -1
  33. package/src/models/components/createtransfer.ts +1 -1
  34. package/src/models/components/transfer.ts +1 -1
  35. package/src/models/errors/transfer.ts +2 -2
  36. package/src/models/operations/listtransfers.ts +7 -0
  37. package/src/sdk/files.ts +1 -1
package/README.md CHANGED
@@ -877,7 +877,7 @@ you'll need to specify the `/accounts/{accountID}/profile.read` scope.
877
877
 
878
878
  * [upload](docs/sdks/files/README.md#upload) - Upload a file and link it to the specified Moov account.
879
879
 
880
- The maximum file size is 10MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf,
880
+ The maximum file size is 20MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf,
881
881
  and png.
882
882
 
883
883
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -1685,7 +1685,7 @@ To access this endpoint using an [access token](https://docs.moov.io/api/authent
1685
1685
  you'll need to specify the `/accounts/{accountID}/files.read` scope.
1686
1686
  - [`filesUpload`](docs/sdks/files/README.md#upload) - Upload a file and link it to the specified Moov account.
1687
1687
 
1688
- The maximum file size is 10MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf,
1688
+ The maximum file size is 20MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf,
1689
1689
  and png.
1690
1690
 
1691
1691
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
package/bin/mcp-server.js CHANGED
@@ -34213,9 +34213,9 @@ var init_config = __esm(() => {
34213
34213
  SDK_METADATA = {
34214
34214
  language: "typescript",
34215
34215
  openapiDocVersion: "latest",
34216
- sdkVersion: "0.10.4",
34217
- genVersion: "2.563.0",
34218
- userAgent: "speakeasy-sdk/typescript 0.10.4 2.563.0 latest @moovio/sdk"
34216
+ sdkVersion: "0.10.6",
34217
+ genVersion: "2.565.1",
34218
+ userAgent: "speakeasy-sdk/typescript 0.10.6 2.565.1 latest @moovio/sdk"
34219
34219
  };
34220
34220
  });
34221
34221
 
@@ -53228,6 +53228,7 @@ var init_listtransfers = __esm(() => {
53228
53228
  startDateTime: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53229
53229
  endDateTime: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53230
53230
  groupID: stringType().optional(),
53231
+ scheduleID: stringType().optional(),
53231
53232
  refunded: booleanType().optional(),
53232
53233
  disputed: booleanType().optional(),
53233
53234
  skip: numberType().int().optional(),
@@ -53240,6 +53241,7 @@ var init_listtransfers = __esm(() => {
53240
53241
  startDateTime: dateType().transform((v2) => v2.toISOString()).optional(),
53241
53242
  endDateTime: dateType().transform((v2) => v2.toISOString()).optional(),
53242
53243
  groupID: stringType().optional(),
53244
+ scheduleID: stringType().optional(),
53243
53245
  refunded: booleanType().optional(),
53244
53246
  disputed: booleanType().optional(),
53245
53247
  skip: numberType().int().optional(),
@@ -63717,7 +63719,7 @@ var init_filesUpload2 = __esm(() => {
63717
63719
  name: "files-upload",
63718
63720
  description: `Upload a file and link it to the specified Moov account.
63719
63721
 
63720
- The maximum file size is 10MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf,
63722
+ The maximum file size is 20MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf,
63721
63723
  and png.
63722
63724
 
63723
63725
  To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
@@ -69757,6 +69759,7 @@ async function $do124(client, request, options) {
69757
69759
  endDateTime: payload.endDateTime,
69758
69760
  groupID: payload.groupID,
69759
69761
  refunded: payload.refunded,
69762
+ scheduleID: payload.scheduleID,
69760
69763
  skip: payload.skip,
69761
69764
  startDateTime: payload.startDateTime,
69762
69765
  status: payload.status
@@ -70808,7 +70811,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
70808
70811
  function createMCPServer(deps) {
70809
70812
  const server = new McpServer({
70810
70813
  name: "Moov",
70811
- version: "0.10.4"
70814
+ version: "0.10.6"
70812
70815
  });
70813
70816
  const client = new MoovCore({
70814
70817
  security: deps.security,
@@ -72309,7 +72312,7 @@ var routes = rn({
72309
72312
  var app = Ve(routes, {
72310
72313
  name: "mcp",
72311
72314
  versionInfo: {
72312
- currentVersion: "0.10.4"
72315
+ currentVersion: "0.10.6"
72313
72316
  }
72314
72317
  });
72315
72318
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -72317,5 +72320,5 @@ export {
72317
72320
  app
72318
72321
  };
72319
72322
 
72320
- //# debugId=AB5F3D05EA588B7F64756E2164756E21
72323
+ //# debugId=F04ABC7E21358ACC64756E2164756E21
72321
72324
  //# sourceMappingURL=mcp-server.js.map