Files
openclaw/src/commands/onboard-core-auth-flags.ts
2026-03-27 12:26:01 +00:00

14 lines
416 B
TypeScript

import type { AuthChoice, OnboardOptions } from "./onboard-types.js";
type OnboardCoreAuthOptionKey = keyof Pick<OnboardOptions, "litellmApiKey">;
export type OnboardCoreAuthFlag = {
optionKey: OnboardCoreAuthOptionKey;
authChoice: AuthChoice;
cliFlag: `--${string}`;
cliOption: `--${string} <key>`;
description: string;
};
export const CORE_ONBOARD_AUTH_FLAGS: ReadonlyArray<OnboardCoreAuthFlag> = [];