@moovio/sdk 0.10.4 → 0.10.5
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 +2 -2
- package/bin/mcp-server.js +7 -7
- package/bin/mcp-server.js.map +10 -10
- package/docs/sdks/files/README.md +2 -2
- package/funcs/filesUpload.d.ts +1 -1
- package/funcs/filesUpload.js +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/mcp-server/tools/filesUpload.js +1 -1
- package/models/components/createevidencefilemultipart.d.ts +1 -1
- package/models/components/createtransfer.d.ts +1 -1
- package/models/components/transfer.d.ts +1 -1
- package/models/errors/transfer.d.ts +2 -2
- package/package.json +1 -1
- package/sdk/files.d.ts +1 -1
- package/sdk/files.js +1 -1
- package/src/funcs/filesUpload.ts +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/mcp-server/tools/filesUpload.ts +1 -1
- package/src/models/components/createevidencefilemultipart.ts +1 -1
- package/src/models/components/createtransfer.ts +1 -1
- package/src/models/components/transfer.ts +1 -1
- package/src/models/errors/transfer.ts +2 -2
- 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
|
|
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
|
|
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.
|
|
34217
|
-
genVersion: "2.
|
|
34218
|
-
userAgent: "speakeasy-sdk/typescript 0.10.
|
|
34216
|
+
sdkVersion: "0.10.5",
|
|
34217
|
+
genVersion: "2.565.1",
|
|
34218
|
+
userAgent: "speakeasy-sdk/typescript 0.10.5 2.565.1 latest @moovio/sdk"
|
|
34219
34219
|
};
|
|
34220
34220
|
});
|
|
34221
34221
|
|
|
@@ -63717,7 +63717,7 @@ var init_filesUpload2 = __esm(() => {
|
|
|
63717
63717
|
name: "files-upload",
|
|
63718
63718
|
description: `Upload a file and link it to the specified Moov account.
|
|
63719
63719
|
|
|
63720
|
-
The maximum file size is
|
|
63720
|
+
The maximum file size is 20MB. Each account is allowed a maximum of 50 files. Acceptable file types include csv, jpg, pdf,
|
|
63721
63721
|
and png.
|
|
63722
63722
|
|
|
63723
63723
|
To access this endpoint using an [access token](https://docs.moov.io/api/authentication/access-tokens/)
|
|
@@ -70808,7 +70808,7 @@ you'll need to specify the \`/accounts/{accountID}/wallets.read\` scope.`,
|
|
|
70808
70808
|
function createMCPServer(deps) {
|
|
70809
70809
|
const server = new McpServer({
|
|
70810
70810
|
name: "Moov",
|
|
70811
|
-
version: "0.10.
|
|
70811
|
+
version: "0.10.5"
|
|
70812
70812
|
});
|
|
70813
70813
|
const client = new MoovCore({
|
|
70814
70814
|
security: deps.security,
|
|
@@ -72309,7 +72309,7 @@ var routes = rn({
|
|
|
72309
72309
|
var app = Ve(routes, {
|
|
72310
72310
|
name: "mcp",
|
|
72311
72311
|
versionInfo: {
|
|
72312
|
-
currentVersion: "0.10.
|
|
72312
|
+
currentVersion: "0.10.5"
|
|
72313
72313
|
}
|
|
72314
72314
|
});
|
|
72315
72315
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -72317,5 +72317,5 @@ export {
|
|
|
72317
72317
|
app
|
|
72318
72318
|
};
|
|
72319
72319
|
|
|
72320
|
-
//# debugId=
|
|
72320
|
+
//# debugId=06144805AAE5B5D664756E2164756E21
|
|
72321
72321
|
//# sourceMappingURL=mcp-server.js.map
|