@opengeni/api-router 2.10.0-canary.1 → 2.10.0-canary.2
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/dist/app.js +1 -1
- package/dist/{chunk-3VUEFGWS.js → chunk-BVX5ASFY.js} +5 -2
- package/dist/chunk-BVX5ASFY.js.map +1 -0
- package/dist/index.js +1 -1
- package/package.json +19 -19
- package/src/app.ts +1 -0
- package/src/mcp/server.ts +6 -1
- package/dist/chunk-3VUEFGWS.js.map +0 -1
package/dist/app.js
CHANGED
|
@@ -25045,7 +25045,9 @@ function registerWorkspaceOrchestrationTools(server, deps, grant, can, callerSes
|
|
|
25045
25045
|
),
|
|
25046
25046
|
instructions: z43.string().min(1).max(SESSION_INSTRUCTIONS_MAX_CHARACTERS).optional(),
|
|
25047
25047
|
goal: z43.unknown().optional(),
|
|
25048
|
-
resources: z43.array(z43.unknown()).optional()
|
|
25048
|
+
resources: z43.array(z43.unknown()).optional().describe(
|
|
25049
|
+
"Omit to inherit parent repositories only. Files are never inherited automatically; explicitly include file resources to attach them. An empty array inherits no resources."
|
|
25050
|
+
),
|
|
25049
25051
|
tools: z43.array(z43.unknown()).optional(),
|
|
25050
25052
|
mcpServers: z43.array(z43.unknown()).optional(),
|
|
25051
25053
|
variableSetId: z43.string().uuid().optional(),
|
|
@@ -70302,6 +70304,7 @@ function createAppComposition(deps) {
|
|
|
70302
70304
|
} : {}
|
|
70303
70305
|
},
|
|
70304
70306
|
productAccessMode: deps.settings.productAccessMode,
|
|
70307
|
+
billingMode: deps.settings.billingMode,
|
|
70305
70308
|
managedAuthSessionSetMode: deps.settings.managedAuthSessionSetMode,
|
|
70306
70309
|
auth: clientAuthConfig(deps.settings),
|
|
70307
70310
|
analytics: clientAnalyticsConfig(deps.settings),
|
|
@@ -71850,4 +71853,4 @@ export {
|
|
|
71850
71853
|
withDefaultEnabledCapabilityMcpTools,
|
|
71851
71854
|
workflowIdForSession4 as workflowIdForSession
|
|
71852
71855
|
};
|
|
71853
|
-
//# sourceMappingURL=chunk-
|
|
71856
|
+
//# sourceMappingURL=chunk-BVX5ASFY.js.map
|