@vm0/cli 9.145.11 → 9.145.13
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.13",
|
|
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.13",
|
|
74106
74106
|
command: process.argv.slice(2).join(" ")
|
|
74107
74107
|
});
|
|
74108
74108
|
setContext("runtime", {
|
|
@@ -102628,6 +102628,34 @@ var MODEL_PROVIDER_TYPES = {
|
|
|
102628
102628
|
label: "ChatGPT (Codex)",
|
|
102629
102629
|
helpText: "Run `codex login` on your machine, then paste the resulting ~/.codex/auth.json contents to authorize ChatGPT (Plus / Pro / Business / Edu / Enterprise) for Codex.",
|
|
102630
102630
|
authMethods: {
|
|
102631
|
+
oauth: {
|
|
102632
|
+
label: "OpenAI OAuth",
|
|
102633
|
+
helpText: "Sign in with OpenAI to authorize ChatGPT (Plus / Pro / Business / Edu / Enterprise) for Codex.",
|
|
102634
|
+
secrets: {
|
|
102635
|
+
CHATGPT_ACCESS_TOKEN: {
|
|
102636
|
+
label: "CHATGPT_ACCESS_TOKEN",
|
|
102637
|
+
required: true,
|
|
102638
|
+
derived: true
|
|
102639
|
+
},
|
|
102640
|
+
CHATGPT_REFRESH_TOKEN: {
|
|
102641
|
+
label: "CHATGPT_REFRESH_TOKEN",
|
|
102642
|
+
required: true,
|
|
102643
|
+
serverOnly: true,
|
|
102644
|
+
derived: true
|
|
102645
|
+
},
|
|
102646
|
+
CHATGPT_ACCOUNT_ID: {
|
|
102647
|
+
label: "CHATGPT_ACCOUNT_ID",
|
|
102648
|
+
required: true,
|
|
102649
|
+
derived: true
|
|
102650
|
+
},
|
|
102651
|
+
CHATGPT_ID_TOKEN: {
|
|
102652
|
+
label: "CHATGPT_ID_TOKEN",
|
|
102653
|
+
required: true,
|
|
102654
|
+
serverOnly: true,
|
|
102655
|
+
derived: true
|
|
102656
|
+
}
|
|
102657
|
+
}
|
|
102658
|
+
},
|
|
102631
102659
|
// Paste-based auth: client posts CODEX_AUTH_JSON, server parses it via
|
|
102632
102660
|
// codex-auth-json-parser.ts and persists the four derived CHATGPT_*
|
|
102633
102661
|
// fields. The raw blob is NEVER stored. The wire-shape secret
|
|
@@ -119240,6 +119268,7 @@ var zeroBillingInvoicesContract = c41.router({
|
|
|
119240
119268
|
responses: {
|
|
119241
119269
|
200: billingInvoicesResponseSchema,
|
|
119242
119270
|
401: apiErrorSchema,
|
|
119271
|
+
403: apiErrorSchema,
|
|
119243
119272
|
500: apiErrorSchema
|
|
119244
119273
|
},
|
|
119245
119274
|
summary: "Get invoices for current org"
|
|
@@ -120736,8 +120765,9 @@ var FEATURE_SWITCHES = {
|
|
|
120736
120765
|
},
|
|
120737
120766
|
["modelFirstModelProvider" /* ModelFirstModelProvider */]: {
|
|
120738
120767
|
maintainer: "lancy@vm0.ai",
|
|
120739
|
-
description: "Gate the model-first model provider selection foundation. When off, all provider-first resolver, UI, CLI, and legacy model provider defaults remain unchanged. When on, follow-up work can use org model policies, canonical models, and member-scoped OAuth credentials.
|
|
120740
|
-
enabled: false
|
|
120768
|
+
description: "Gate the model-first model provider selection foundation. When off, all provider-first resolver, UI, CLI, and legacy model provider defaults remain unchanged. When on, follow-up work can use org model policies, canonical models, and member-scoped OAuth credentials. Staff-only during rollout; per-user toggle via Lab.",
|
|
120769
|
+
enabled: false,
|
|
120770
|
+
enabledOrgIdHashes: STAFF_ORG_ID_HASHES
|
|
120741
120771
|
},
|
|
120742
120772
|
["voiceChatRealtimeBilling" /* VoiceChatRealtimeBilling */]: {
|
|
120743
120773
|
maintainer: "lancy@vm0.ai",
|
|
@@ -122216,4 +122246,4 @@ undici/lib/web/fetch/body.js:
|
|
|
122216
122246
|
undici/lib/web/websocket/frame.js:
|
|
122217
122247
|
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
|
122218
122248
|
*/
|
|
122219
|
-
//# sourceMappingURL=chunk-
|
|
122249
|
+
//# sourceMappingURL=chunk-FQ7FOJMC.js.map
|