Files
openclaw/scripts/e2e/lib/auth-profile-store-assertions.d.mts
Peter Steinberger 8b18d22db1 test(e2e): share canonical auth store reader (#126960)
* 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>
2026-08-23 18:00:36 -07:00

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;