@solongate/proxy 0.81.48 → 0.81.50

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.
@@ -8,6 +8,8 @@ export interface SavedAccount {
8
8
  apiUrl: string;
9
9
  project?: string;
10
10
  user?: string;
11
+ /** Owner e-mail — the PRIMARY human-facing label for an account. */
12
+ email?: string;
11
13
  addedAt?: number;
12
14
  }
13
15
  export declare function listAccounts(): SavedAccount[];
@@ -9,6 +9,7 @@ export interface DevicePoll {
9
9
  apiKey?: string;
10
10
  project?: string;
11
11
  user?: string;
12
+ email?: string;
12
13
  }
13
14
  /** Best-effort browser open. No-op on failure (headless / missing opener). */
14
15
  export declare function openBrowser(url: string): void;