@primestyleai/tryon 5.10.189 → 5.10.191

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.
@@ -1,4 +1,4 @@
1
- export type SocialProvider = "google" | "apple" | "facebook" | "linkedin";
1
+ export type SocialProvider = "google" | "apple" | "linkedin";
2
2
  export interface ProfileAuthSession {
3
3
  accessToken: string;
4
4
  isNewUser?: boolean;
@@ -10,6 +10,7 @@ export declare function clearProfileLocalStorage(): void;
10
10
  export declare function getProfiles(): Profile[];
11
11
  export declare function saveProfiles(profiles: Profile[]): void;
12
12
  export declare function getActiveProfileId(): string | null;
13
+ export declare function isActiveProfileExplicitlyCleared(): boolean;
13
14
  export declare function setActiveProfileId(id: string | null): void;
14
15
  /** Returns the active profile, or the most recently used one, or null. */
15
16
  export declare function getActiveProfile(): Profile | null;