@moovio/sdk 0.22.20 → 0.22.21
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/bin/mcp-server.js +10 -6
- package/bin/mcp-server.js.map +7 -7
- package/examples/package-lock.json +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/models/components/onboardinginvite.d.ts +8 -0
- package/models/components/onboardinginvite.d.ts.map +1 -1
- package/models/components/onboardinginvite.js +2 -0
- package/models/components/onboardinginvite.js.map +1 -1
- package/models/components/onboardinginviterequest.d.ts +8 -0
- package/models/components/onboardinginviterequest.d.ts.map +1 -1
- package/models/components/onboardinginviterequest.js +2 -0
- package/models/components/onboardinginviterequest.js.map +1 -1
- package/package.json +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/models/components/onboardinginvite.ts +10 -0
- package/src/models/components/onboardinginviterequest.ts +10 -0
package/bin/mcp-server.js
CHANGED
|
@@ -52413,9 +52413,9 @@ var init_config = __esm(() => {
|
|
|
52413
52413
|
SDK_METADATA = {
|
|
52414
52414
|
language: "typescript",
|
|
52415
52415
|
openapiDocVersion: "latest",
|
|
52416
|
-
sdkVersion: "0.22.
|
|
52417
|
-
genVersion: "2.
|
|
52418
|
-
userAgent: "speakeasy-sdk/typescript 0.22.
|
|
52416
|
+
sdkVersion: "0.22.21",
|
|
52417
|
+
genVersion: "2.801.0",
|
|
52418
|
+
userAgent: "speakeasy-sdk/typescript 0.22.21 2.801.0 latest @moovio/sdk"
|
|
52419
52419
|
};
|
|
52420
52420
|
});
|
|
52421
52421
|
|
|
@@ -64457,6 +64457,7 @@ var init_onboardinginvite = __esm(() => {
|
|
|
64457
64457
|
returnURL: stringType().optional(),
|
|
64458
64458
|
termsOfServiceURL: stringType().optional(),
|
|
64459
64459
|
scopes: arrayType(ApplicationScope$inboundSchema),
|
|
64460
|
+
grantScopes: arrayType(ApplicationScope$inboundSchema).optional(),
|
|
64460
64461
|
capabilities: arrayType(CapabilityID$inboundSchema),
|
|
64461
64462
|
feePlanCodes: arrayType(stringType()),
|
|
64462
64463
|
redeemedAccountID: stringType().optional(),
|
|
@@ -64472,6 +64473,7 @@ var init_onboardinginvite = __esm(() => {
|
|
|
64472
64473
|
returnURL: stringType().optional(),
|
|
64473
64474
|
termsOfServiceURL: stringType().optional(),
|
|
64474
64475
|
scopes: arrayType(ApplicationScope$outboundSchema),
|
|
64476
|
+
grantScopes: arrayType(ApplicationScope$outboundSchema).optional(),
|
|
64475
64477
|
capabilities: arrayType(CapabilityID$outboundSchema),
|
|
64476
64478
|
feePlanCodes: arrayType(stringType()),
|
|
64477
64479
|
redeemedAccountID: stringType().optional(),
|
|
@@ -64494,6 +64496,7 @@ var init_onboardinginviterequest = __esm(() => {
|
|
|
64494
64496
|
returnURL: stringType().optional(),
|
|
64495
64497
|
termsOfServiceURL: stringType().optional(),
|
|
64496
64498
|
scopes: arrayType(ApplicationScope$inboundSchema),
|
|
64499
|
+
grantScopes: arrayType(ApplicationScope$inboundSchema).optional(),
|
|
64497
64500
|
capabilities: arrayType(CapabilityID$inboundSchema),
|
|
64498
64501
|
feePlanCodes: arrayType(stringType()),
|
|
64499
64502
|
prefill: CreateAccount$inboundSchema.optional()
|
|
@@ -64502,6 +64505,7 @@ var init_onboardinginviterequest = __esm(() => {
|
|
|
64502
64505
|
returnURL: stringType().optional(),
|
|
64503
64506
|
termsOfServiceURL: stringType().optional(),
|
|
64504
64507
|
scopes: arrayType(ApplicationScope$outboundSchema),
|
|
64508
|
+
grantScopes: arrayType(ApplicationScope$outboundSchema).optional(),
|
|
64505
64509
|
capabilities: arrayType(CapabilityID$outboundSchema),
|
|
64506
64510
|
feePlanCodes: arrayType(stringType()),
|
|
64507
64511
|
prefill: CreateAccount$outboundSchema.optional()
|
|
@@ -102249,7 +102253,7 @@ var init_webhooksUpdate2 = __esm(() => {
|
|
|
102249
102253
|
function createMCPServer(deps) {
|
|
102250
102254
|
const server = new McpServer({
|
|
102251
102255
|
name: "Moov",
|
|
102252
|
-
version: "0.22.
|
|
102256
|
+
version: "0.22.21"
|
|
102253
102257
|
});
|
|
102254
102258
|
const client = new MoovCore({
|
|
102255
102259
|
security: deps.security,
|
|
@@ -103829,7 +103833,7 @@ var routes = rn({
|
|
|
103829
103833
|
var app = Ve(routes, {
|
|
103830
103834
|
name: "mcp",
|
|
103831
103835
|
versionInfo: {
|
|
103832
|
-
currentVersion: "0.22.
|
|
103836
|
+
currentVersion: "0.22.21"
|
|
103833
103837
|
}
|
|
103834
103838
|
});
|
|
103835
103839
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -103837,5 +103841,5 @@ export {
|
|
|
103837
103841
|
app
|
|
103838
103842
|
};
|
|
103839
103843
|
|
|
103840
|
-
//# debugId=
|
|
103844
|
+
//# debugId=2A0DDA3A8875D69364756E2164756E21
|
|
103841
103845
|
//# sourceMappingURL=mcp-server.js.map
|