builder.io 1.11.50 → 1.11.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -50,3 +50,4 @@ export declare function getFigmaAuth(sys: DevToolsSys): Promise<FigmaAuth>;
50
50
  export declare function getBuilderCodegenUsage(builderPublicKey: string, builderPrivateKey: string): Promise<BuilderCodegenUsage>;
51
51
  export declare function getBuilderAuth(sys: DevToolsSys, preferSpaceId?: string): Promise<BuilderAuth>;
52
52
  export declare function storeCredentials(sys: DevToolsSys, credentials: Credentials): void;
53
+ export declare function clearCredentials(sys: DevToolsSys): boolean;
@@ -92,4 +92,6 @@ export interface CLIArgs {
92
92
  disableMcp?: boolean;
93
93
  /** Enable privacy mode for codegen */
94
94
  privacyMode?: boolean;
95
+ /** Clear all stored credentials (logout) */
96
+ reset?: boolean;
95
97
  }