mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 04:15:48 -06:00
8b18d22db1
* test(e2e): read shared auth store after onboarding * test(e2e): harden shared auth proof --------- Co-authored-by: Amp <amp@ampcode.com> Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
16 lines
453 B
TypeScript
16 lines
453 B
TypeScript
export type AuthProfileStoreAssertionOptions = {
|
|
missingMessage?: string;
|
|
envRefMessage?: string;
|
|
rawKeyMessage?: string;
|
|
rawKeyNeedle?: string;
|
|
};
|
|
|
|
export declare function readSharedAuthProfileStoreText(stateDir: string): string;
|
|
|
|
export declare function assertNoLegacyPrimaryAuthRows(stateDir: string): void;
|
|
|
|
export declare function assertOpenAiEnvAuthProfileStore(
|
|
storeJson: string,
|
|
options?: AuthProfileStoreAssertionOptions,
|
|
): void;
|