Spaces:
Runtime error
Runtime error
File size: 8,584 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | import { z } from "zod";
import {
ACCOUNT_FALLBACK_STRATEGY_VALUES,
ROUTING_STRATEGY_VALUES,
} from "@/shared/constants/routingStrategies";
import { SUPPORTED_BATCH_ENDPOINTS } from "@/shared/constants/batchEndpoints";
import { MAX_REQUEST_BODY_LIMIT_MB, MIN_REQUEST_BODY_LIMIT_MB } from "@/shared/constants/bodySize";
import { COMBO_CONFIG_MODES } from "@/shared/constants/comboConfigMode";
import { providerAllowsOptionalApiKey } from "@/shared/constants/providers";
import { HIDEABLE_SIDEBAR_ITEM_IDS } from "@/shared/constants/sidebarVisibility";
import {
isForbiddenUpstreamHeaderName,
isForbiddenCustomHeaderName,
} from "@/shared/constants/upstreamHeaders";
import { MAX_TIMER_TIMEOUT_MS } from "@/shared/utils/runtimeTimeouts";
import { confirmedAccountSchema } from "./misc.ts";
// ββββ Codex Import Schema ββββ
export const importCodexAuthSchema = z.object({
source: z.discriminatedUnion("kind", [
z.object({ kind: z.literal("json"), json: z.unknown() }),
z.object({
kind: z.literal("text"),
text: z.string().max(256 * 1024, "Paste content must be under 256 KB"),
}),
]),
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
overwriteExisting: z.boolean().optional(),
});
// ββββ Codex Import Bulk Schema ββββ
export const importCodexAuthBulkSchema = z.object({
entries: z
.array(
z.object({
json: z.unknown(),
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
})
)
.min(1, "At least one entry is required")
.max(50, "At most 50 entries per bulk import"),
overwriteExisting: z.boolean().optional(),
});
// ββββ Claude Auth Import Schema ββββ
export const importClaudeAuthSchema = z.object({
source: z.discriminatedUnion("kind", [
z.object({ kind: z.literal("json"), json: z.unknown() }),
z.object({
kind: z.literal("text"),
text: z.string().max(256 * 1024, "Paste content must be under 256 KB"),
}),
]),
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
overwriteExisting: z.boolean().optional(),
});
// ββββ Claude Auth Import Bulk Schema ββββ
export const importClaudeAuthBulkSchema = z.object({
entries: z
.array(
z.object({
json: z.unknown(),
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
})
)
.min(1, "At least one entry is required")
.max(50, "At most 50 entries per bulk import"),
overwriteExisting: z.boolean().optional(),
});
// ββββ Gemini CLI Auth Import Schema ββββ
export const importGeminiAuthSchema = z.object({
source: z.discriminatedUnion("kind", [
z.object({ kind: z.literal("json"), json: z.unknown() }),
z.object({
kind: z.literal("text"),
text: z.string().max(256 * 1024, "oauth_creds.json content exceeds 256KB"),
}),
]),
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
overwriteExisting: z.boolean().optional(),
});
// ββββ Antigravity CLI (`agy`) Auth Import Schema ββββ
// Same source/options shape as gemini-cli; the parser handles the agy-specific token JSON.
export const importAgyAuthSchema = z.object({
source: z.discriminatedUnion("kind", [
z.object({ kind: z.literal("json"), json: z.unknown() }),
z.object({
kind: z.literal("text"),
text: z.string().max(256 * 1024, "agy token file content exceeds 256KB"),
}),
]),
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
overwriteExisting: z.boolean().optional(),
});
// ββββ Antigravity CLI (`agy`) auto-detect local login Schema ββββ
// No `source`: the route reads the token from the local agy CLI data dir on disk.
export const applyLocalAgyAuthSchema = z.object({
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
overwriteExisting: z.boolean().optional(),
});
// ββββ Gemini CLI Auth Import Bulk Schema ββββ
export const importGeminiAuthBulkSchema = z.object({
entries: z
.array(
z.object({
json: z.unknown(),
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
})
)
.min(1, "At least one entry is required")
.max(50, "At most 50 entries per bulk import"),
overwriteExisting: z.boolean().optional(),
});
// ββββ Antigravity CLI (`agy`) Auth Import Bulk Schema ββββ
export const importAgyAuthBulkSchema = z.object({
entries: z
.array(
z.object({
json: z.unknown(),
name: z.string().min(1).max(200).optional(),
email: z.string().email("Must be a valid email").optional(),
})
)
.min(1, "At least one entry is required")
.max(50, "At most 50 entries per bulk import"),
overwriteExisting: z.boolean().optional(),
});
export const oauthExchangeSchema = z.object({
code: z.string().trim().min(1),
redirectUri: z.string().trim().min(1),
codeVerifier: z.string().trim().min(1).optional(),
state: z.string().nullable().optional(),
});
export const oauthPollSchema = z.object({
deviceCode: z.string().trim().min(1),
codeVerifier: z.string().optional(),
extraData: z.unknown().optional(),
});
/** Import a raw API token (e.g. WINDSURF_API_KEY) without going through the browser OAuth flow. */
export const oauthImportTokenSchema = z.object({
token: z.string().trim().min(1, "Token is required"),
connectionId: z.string().optional(),
});
/**
* Persist tokens obtained out-of-band by the browser-driven Codex device flow.
* The browser performs the full device authorization + token exchange against
* auth.openai.com (the server cannot β its datacenter IP is blocked by Cloudflare),
* then ships the final tokens here for mapping + persistence. Token fields use the
* snake_case shape returned by the OAuth token endpoint (consumed directly by
* each provider's mapTokens).
*/
export const oauthDeviceCompleteSchema = z.object({
access_token: z.string().trim().min(1, "access_token is required"),
refresh_token: z.string().trim().optional(),
id_token: z.string().trim().optional(),
expires_in: z.number().int().positive().optional(),
connectionId: z.string().optional(),
});
/**
* Persist credentials obtained by the local remote-login helper. Google's
* `firstparty/nativeapp` consent only releases the auth code when the loopback
* redirect is reachable, which never happens on a remote VPS install β so the
* helper (`omniroute login antigravity`) runs the OAuth on the user's own machine
* and emits a single-line credential blob. The dashboard pastes that blob here;
* the server decodes + finalizes + persists. See src/lib/oauth/credentialBlob.ts.
*/
export const oauthPasteCredentialsSchema = z.object({
blob: z.string().trim().min(1, "credential blob is required"),
connectionId: z.string().optional(),
});
export const cursorImportSchema = z.object({
accessToken: z.string().trim().min(1, "Access token is required"),
machineId: z.string().trim().optional(),
});
export const traeImportSchema = z.object({
accessToken: z.string().trim().min(1, "Cloud-IDE-JWT access token is required"),
webId: z.string().trim().optional(),
bizUserId: z.string().trim().optional(),
userUniqueId: z.string().trim().optional(),
scope: z.string().trim().optional(),
tenant: z.string().trim().optional(),
region: z.string().trim().optional(),
});
export const kiroImportSchema = z.object({
refreshToken: z.string().trim().min(1, "Refresh token is required"),
region: z.string().trim().default("us-east-1"),
// IDC (organization) token fields β present when auto-detected from an IDC SSO
// cache token with a clientIdHash (#2059). Optional for backward compatibility.
clientId: z.string().optional(),
clientSecret: z.string().optional(),
authMethod: z.string().optional(),
profileArn: z.string().optional(),
});
export const kiroSocialExchangeSchema = z.object({
code: z.string().trim().min(1, "Code is required"),
codeVerifier: z.string().trim().min(1, "Code verifier is required"),
provider: z.enum(["google", "github"]),
});
export const zedImportSchema = z.object({
confirmedAccounts: z.array(confirmedAccountSchema),
});
|