@vm0/cli 9.145.2 → 9.145.3
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.
|
@@ -74083,7 +74083,7 @@ if (DSN) {
|
|
|
74083
74083
|
init2({
|
|
74084
74084
|
dsn: DSN,
|
|
74085
74085
|
environment: process.env.SENTRY_ENVIRONMENT ?? "production",
|
|
74086
|
-
release: "9.145.
|
|
74086
|
+
release: "9.145.3",
|
|
74087
74087
|
sendDefaultPii: false,
|
|
74088
74088
|
tracesSampleRate: 0,
|
|
74089
74089
|
shutdownTimeout: 500,
|
|
@@ -74102,7 +74102,7 @@ if (DSN) {
|
|
|
74102
74102
|
}
|
|
74103
74103
|
});
|
|
74104
74104
|
setContext("cli", {
|
|
74105
|
-
version: "9.145.
|
|
74105
|
+
version: "9.145.3",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -93212,10 +93212,11 @@ var composesByIdContract = c.router({
|
|
|
93212
93212
|
path: "/api/agent/composes/:id",
|
|
93213
93213
|
headers: authHeadersSchema,
|
|
93214
93214
|
pathParams: external_exports.object({
|
|
93215
|
-
id: external_exports.string().
|
|
93215
|
+
id: external_exports.string().uuid("Compose ID must be a valid UUID")
|
|
93216
93216
|
}),
|
|
93217
93217
|
responses: {
|
|
93218
93218
|
200: composeResponseSchema,
|
|
93219
|
+
400: apiErrorSchema,
|
|
93219
93220
|
401: apiErrorSchema,
|
|
93220
93221
|
403: apiErrorSchema,
|
|
93221
93222
|
404: apiErrorSchema
|
|
@@ -93344,10 +93345,11 @@ var composesInstructionsContract = c.router({
|
|
|
93344
93345
|
path: "/api/agent/composes/:id/instructions",
|
|
93345
93346
|
headers: authHeadersSchema,
|
|
93346
93347
|
pathParams: external_exports.object({
|
|
93347
|
-
id: external_exports.string().
|
|
93348
|
+
id: external_exports.string().uuid("Compose ID must be a valid UUID")
|
|
93348
93349
|
}),
|
|
93349
93350
|
responses: {
|
|
93350
93351
|
200: composeInstructionsResponseSchema,
|
|
93352
|
+
400: apiErrorSchema,
|
|
93351
93353
|
401: apiErrorSchema,
|
|
93352
93354
|
403: apiErrorSchema,
|
|
93353
93355
|
404: apiErrorSchema
|
|
@@ -118149,6 +118151,15 @@ var resumeSessionSchema = external_exports.object({
|
|
|
118149
118151
|
sessionId: external_exports.string(),
|
|
118150
118152
|
sessionHistory: external_exports.string()
|
|
118151
118153
|
});
|
|
118154
|
+
var secretConnectorMetadataSchema = external_exports.object({
|
|
118155
|
+
sourceType: external_exports.enum(["connector", "model-provider"]),
|
|
118156
|
+
sourceUserId: external_exports.string().optional(),
|
|
118157
|
+
metadataKey: external_exports.string().optional()
|
|
118158
|
+
});
|
|
118159
|
+
var secretConnectorMetadataMapSchema = external_exports.record(
|
|
118160
|
+
external_exports.string(),
|
|
118161
|
+
secretConnectorMetadataSchema
|
|
118162
|
+
);
|
|
118152
118163
|
var storedExecutionContextSchema = external_exports.object({
|
|
118153
118164
|
workingDir: external_exports.string(),
|
|
118154
118165
|
storageManifest: storageManifestSchema.nullable(),
|
|
@@ -118158,6 +118169,8 @@ var storedExecutionContextSchema = external_exports.object({
|
|
|
118158
118169
|
// AES-256-GCM encrypted Record<string, string> (secret name → value)
|
|
118159
118170
|
// Maps secret names to OAuth connector types for runtime token refresh (e.g. { "GMAIL_ACCESS_TOKEN": "gmail" })
|
|
118160
118171
|
secretConnectorMap: external_exports.record(external_exports.string(), external_exports.string()).nullable().optional(),
|
|
118172
|
+
// Per-secret refresh metadata, used when a handler needs owner-specific storage (e.g. personal model providers)
|
|
118173
|
+
secretConnectorMetadataMap: secretConnectorMetadataMapSchema.nullable().optional(),
|
|
118161
118174
|
cliAgentType: external_exports.string(),
|
|
118162
118175
|
// Debug flag to force real Claude in mock environments (internal use only)
|
|
118163
118176
|
debugNoMockClaude: external_exports.boolean().optional(),
|
|
@@ -118204,6 +118217,8 @@ var executionContextSchema = external_exports.object({
|
|
|
118204
118217
|
encryptedSecrets: external_exports.string().nullable(),
|
|
118205
118218
|
// Maps secret names to OAuth connector types for runtime token refresh
|
|
118206
118219
|
secretConnectorMap: external_exports.record(external_exports.string(), external_exports.string()).nullable().optional(),
|
|
118220
|
+
// Per-secret refresh metadata, used when a handler needs owner-specific storage (e.g. personal model providers)
|
|
118221
|
+
secretConnectorMetadataMap: secretConnectorMetadataMapSchema.nullable().optional(),
|
|
118207
118222
|
cliAgentType: external_exports.string(),
|
|
118208
118223
|
// Debug flag to force real Claude in mock environments (internal use only)
|
|
118209
118224
|
debugNoMockClaude: external_exports.boolean().optional(),
|
|
@@ -118623,10 +118638,11 @@ var zeroComposesByIdContract = c35.router({
|
|
|
118623
118638
|
path: "/api/zero/composes/:id",
|
|
118624
118639
|
headers: authHeadersSchema,
|
|
118625
118640
|
pathParams: external_exports.object({
|
|
118626
|
-
id: external_exports.string().
|
|
118641
|
+
id: external_exports.string().uuid("Compose ID must be a valid UUID")
|
|
118627
118642
|
}),
|
|
118628
118643
|
responses: {
|
|
118629
118644
|
200: composeResponseSchema,
|
|
118645
|
+
400: apiErrorSchema,
|
|
118630
118646
|
401: apiErrorSchema,
|
|
118631
118647
|
403: apiErrorSchema,
|
|
118632
118648
|
404: apiErrorSchema
|
|
@@ -121987,4 +122003,4 @@ undici/lib/web/fetch/body.js:
|
|
|
121987
122003
|
undici/lib/web/websocket/frame.js:
|
|
121988
122004
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
121989
122005
|
*/
|
|
121990
|
-
//# sourceMappingURL=chunk-
|
|
122006
|
+
//# sourceMappingURL=chunk-JRU5QXBJ.js.map
|