mirror of https://github.com/openclaw/openclaw.git
25 lines
407 B
TypeScript
25 lines
407 B
TypeScript
export const VALID_EXEC_SECRET_REF_IDS = [
|
|
"vault/openai/api-key",
|
|
"vault:secret/mykey",
|
|
"providers/openai/apiKey",
|
|
"a..b/c",
|
|
"a/.../b",
|
|
"a/.well-known/key",
|
|
`a/${"b".repeat(254)}`,
|
|
] as const;
|
|
|
|
export const INVALID_EXEC_SECRET_REF_IDS = [
|
|
"",
|
|
" ",
|
|
"a/../b",
|
|
"a/./b",
|
|
"../b",
|
|
"./b",
|
|
"a/..",
|
|
"a/.",
|
|
"/absolute/path",
|
|
"bad id",
|
|
"a\\b",
|
|
`a${"b".repeat(256)}`,
|
|
] as const;
|