Skip to content

Commit

Permalink
Merge branch 'master' into bl-blocking-fn-email
Browse files Browse the repository at this point in the history
  • Loading branch information
blidd-google authored Oct 21, 2024
2 parents 643d40d + 4a2819d commit f1f6c65
Show file tree
Hide file tree
Showing 16 changed files with 796 additions and 313 deletions.
10 changes: 10 additions & 0 deletions firebase-vscode/common/messaging/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export interface WebviewToExtensionParamsMap {
*/
getInitialData: {};
getInitialHasFdcConfigs: void;
getInitialFirebaseConfigList: void;

addUser: {};
logout: { email: string };
Expand All @@ -43,6 +44,9 @@ export interface WebviewToExtensionParamsMap {
/** Trigger project selection */
selectProject: {};

/** When 2+ firebase.json are detected, the user can manually pick one */
selectFirebaseConfig: string;

/**
* Prompt user for text input
*/
Expand Down Expand Up @@ -123,6 +127,12 @@ export interface ExtensionToWebviewParamsMap {
infos?: RunningEmulatorInfo | undefined;
};

/** Lists all firebase.json in the workspace */
notifyFirebaseConfigListChanged: {
values: string[];
selected: string | undefined;
};

notifyEmulatorsHanging: boolean;

/** Triggered when new environment variables values are found. */
Expand Down
Loading

0 comments on commit f1f6c65

Please sign in to comment.