@zuplo/cli 6.70.7 → 6.70.8
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/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/http2.d.ts +21 -12
- package/node_modules/@types/node/package.json +2 -2
- package/node_modules/@zuplo/core/package.json +1 -1
- package/node_modules/@zuplo/graphql/package.json +1 -1
- package/node_modules/@zuplo/openapi-tools/package.json +1 -1
- package/node_modules/@zuplo/otel/package.json +1 -1
- package/node_modules/@zuplo/runtime/out/esm/index.js +9 -9
- package/node_modules/@zuplo/runtime/out/esm/index.js.map +1 -1
- package/node_modules/@zuplo/runtime/out/types/mcp-gateway/index.d.ts +10 -11
- package/node_modules/@zuplo/runtime/package.json +1 -1
- package/package.json +6 -6
|
@@ -941,7 +941,7 @@ declare interface Logger extends BaseLogger {
|
|
|
941
941
|
* time (see `setupRoutes`); this request-time entry point delegates straight
|
|
942
942
|
* to the underlying OAuth implementation.
|
|
943
943
|
*
|
|
944
|
-
* @
|
|
944
|
+
* @hidden
|
|
945
945
|
* @title MCP Auth0 OAuth
|
|
946
946
|
* @param request - The ZuploRequest
|
|
947
947
|
* @param context - The ZuploContext
|
|
@@ -1045,7 +1045,7 @@ export declare class McpGatewayPlugin extends SystemRuntimePlugin {
|
|
|
1045
1045
|
* token presented by the MCP client and hydrate the principal onto the
|
|
1046
1046
|
* request context.
|
|
1047
1047
|
*
|
|
1048
|
-
* @
|
|
1048
|
+
* @hidden
|
|
1049
1049
|
* @title MCP OAuth
|
|
1050
1050
|
* @param request - The ZuploRequest
|
|
1051
1051
|
* @param context - The ZuploContext
|
|
@@ -1142,7 +1142,7 @@ export declare interface McpOAuthInboundPolicyOptions {
|
|
|
1142
1142
|
* on the request context for `McpVirtualServerHandler`, which resolves
|
|
1143
1143
|
* credentials during capability dispatch.
|
|
1144
1144
|
*
|
|
1145
|
-
* @
|
|
1145
|
+
* @hidden
|
|
1146
1146
|
* @title MCP Upstream Connection
|
|
1147
1147
|
* @param request - The ZuploRequest
|
|
1148
1148
|
* @param context - The ZuploContext
|
|
@@ -1178,11 +1178,11 @@ export declare interface McpUpstreamConnectionInboundPolicyOptions {
|
|
|
1178
1178
|
*/
|
|
1179
1179
|
protectedResourceMetadataUrl?: string;
|
|
1180
1180
|
/**
|
|
1181
|
-
* Additional request headers the gateway should inject when calling the upstream.
|
|
1181
|
+
* Additional request headers the gateway should inject when calling the upstream. Use `$env(VAR_NAME)` to read the value from an environment variable. Combine with `required: false` to skip the header when the env variable is unset.
|
|
1182
1182
|
*/
|
|
1183
1183
|
requestHeaders?: {
|
|
1184
1184
|
name: string;
|
|
1185
|
-
|
|
1185
|
+
value?: string;
|
|
1186
1186
|
required?: boolean;
|
|
1187
1187
|
}[];
|
|
1188
1188
|
/**
|
|
@@ -1207,11 +1207,7 @@ export declare interface McpUpstreamConnectionInboundPolicyOptions {
|
|
|
1207
1207
|
*/
|
|
1208
1208
|
clientId?: string;
|
|
1209
1209
|
/**
|
|
1210
|
-
*
|
|
1211
|
-
*/
|
|
1212
|
-
clientSecretEnv?: string;
|
|
1213
|
-
/**
|
|
1214
|
-
* OAuth client secret reference, either an env var name or `$env(VAR_NAME)` (for OAuth modes with manual registration).
|
|
1210
|
+
* OAuth client secret (for OAuth modes with manual registration). Use `$env(VAR_NAME)` to source from an environment variable.
|
|
1215
1211
|
*/
|
|
1216
1212
|
clientSecret?: string;
|
|
1217
1213
|
/**
|
|
@@ -1231,7 +1227,10 @@ export declare interface McpUpstreamConnectionInboundPolicyOptions {
|
|
|
1231
1227
|
| {
|
|
1232
1228
|
mode: "manual";
|
|
1233
1229
|
clientId: string;
|
|
1234
|
-
|
|
1230
|
+
/**
|
|
1231
|
+
* OAuth client secret. Use `$env(VAR_NAME)` to source from an environment variable.
|
|
1232
|
+
*/
|
|
1233
|
+
clientSecret?: string;
|
|
1235
1234
|
tokenEndpointAuthMethod?:
|
|
1236
1235
|
| "client_secret_basic"
|
|
1237
1236
|
| "client_secret_post"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zuplo/cli",
|
|
3
|
-
"version": "6.70.
|
|
3
|
+
"version": "6.70.8",
|
|
4
4
|
"repository": "https://github.com/zuplo/zuplo",
|
|
5
5
|
"author": "Zuplo, Inc.",
|
|
6
6
|
"type": "module",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@opentelemetry/api": "1.9.0",
|
|
30
30
|
"@sentry/node": "9.22.0",
|
|
31
31
|
"@swc/core": "1.10.18",
|
|
32
|
-
"@zuplo/core": "6.70.
|
|
32
|
+
"@zuplo/core": "6.70.8",
|
|
33
33
|
"@zuplo/editor": "1.0.20821740935",
|
|
34
|
-
"@zuplo/openapi-tools": "6.70.
|
|
35
|
-
"@zuplo/runtime": "6.70.
|
|
34
|
+
"@zuplo/openapi-tools": "6.70.8",
|
|
35
|
+
"@zuplo/runtime": "6.70.8",
|
|
36
36
|
"chalk": "5.4.1",
|
|
37
37
|
"chokidar": "3.5.3",
|
|
38
38
|
"cookie": "1.0.2",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"workerd": "1.20241230.0",
|
|
67
67
|
"yargs": "17.7.2",
|
|
68
68
|
"zod": "3.25.76",
|
|
69
|
-
"@zuplo/graphql": "6.70.
|
|
70
|
-
"@zuplo/otel": "6.70.
|
|
69
|
+
"@zuplo/graphql": "6.70.8",
|
|
70
|
+
"@zuplo/otel": "6.70.8"
|
|
71
71
|
},
|
|
72
72
|
"bundleDependencies": [
|
|
73
73
|
"@fastify/cors",
|