@vm0/cli 9.145.1 → 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
|
|
@@ -102891,7 +102893,17 @@ var MODEL_PROVIDER_FIREWALL_CONFIGS = {
|
|
|
102891
102893
|
"ChatGPT-Account-ID": "${{ secrets.CHATGPT_ACCOUNT_ID }}"
|
|
102892
102894
|
}
|
|
102893
102895
|
},
|
|
102894
|
-
permissions: [
|
|
102896
|
+
permissions: [
|
|
102897
|
+
{
|
|
102898
|
+
name: "codex:api",
|
|
102899
|
+
rules: [
|
|
102900
|
+
"GET /models",
|
|
102901
|
+
"GET /responses",
|
|
102902
|
+
"POST /responses",
|
|
102903
|
+
"POST /analytics-events/events"
|
|
102904
|
+
]
|
|
102905
|
+
}
|
|
102906
|
+
]
|
|
102895
102907
|
},
|
|
102896
102908
|
{
|
|
102897
102909
|
base: "https://auth.openai.com",
|
|
@@ -118139,6 +118151,15 @@ var resumeSessionSchema = external_exports.object({
|
|
|
118139
118151
|
sessionId: external_exports.string(),
|
|
118140
118152
|
sessionHistory: external_exports.string()
|
|
118141
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
|
+
);
|
|
118142
118163
|
var storedExecutionContextSchema = external_exports.object({
|
|
118143
118164
|
workingDir: external_exports.string(),
|
|
118144
118165
|
storageManifest: storageManifestSchema.nullable(),
|
|
@@ -118148,6 +118169,8 @@ var storedExecutionContextSchema = external_exports.object({
|
|
|
118148
118169
|
// AES-256-GCM encrypted Record<string, string> (secret name → value)
|
|
118149
118170
|
// Maps secret names to OAuth connector types for runtime token refresh (e.g. { "GMAIL_ACCESS_TOKEN": "gmail" })
|
|
118150
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(),
|
|
118151
118174
|
cliAgentType: external_exports.string(),
|
|
118152
118175
|
// Debug flag to force real Claude in mock environments (internal use only)
|
|
118153
118176
|
debugNoMockClaude: external_exports.boolean().optional(),
|
|
@@ -118194,6 +118217,8 @@ var executionContextSchema = external_exports.object({
|
|
|
118194
118217
|
encryptedSecrets: external_exports.string().nullable(),
|
|
118195
118218
|
// Maps secret names to OAuth connector types for runtime token refresh
|
|
118196
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(),
|
|
118197
118222
|
cliAgentType: external_exports.string(),
|
|
118198
118223
|
// Debug flag to force real Claude in mock environments (internal use only)
|
|
118199
118224
|
debugNoMockClaude: external_exports.boolean().optional(),
|
|
@@ -118613,10 +118638,11 @@ var zeroComposesByIdContract = c35.router({
|
|
|
118613
118638
|
path: "/api/zero/composes/:id",
|
|
118614
118639
|
headers: authHeadersSchema,
|
|
118615
118640
|
pathParams: external_exports.object({
|
|
118616
|
-
id: external_exports.string().
|
|
118641
|
+
id: external_exports.string().uuid("Compose ID must be a valid UUID")
|
|
118617
118642
|
}),
|
|
118618
118643
|
responses: {
|
|
118619
118644
|
200: composeResponseSchema,
|
|
118645
|
+
400: apiErrorSchema,
|
|
118620
118646
|
401: apiErrorSchema,
|
|
118621
118647
|
403: apiErrorSchema,
|
|
118622
118648
|
404: apiErrorSchema
|
|
@@ -121977,4 +122003,4 @@ undici/lib/web/fetch/body.js:
|
|
|
121977
122003
|
undici/lib/web/websocket/frame.js:
|
|
121978
122004
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
121979
122005
|
*/
|
|
121980
|
-
//# sourceMappingURL=chunk-
|
|
122006
|
+
//# sourceMappingURL=chunk-JRU5QXBJ.js.map
|