@vrplatform/api 1.3.1-stage.4473 → 1.3.1-stage.4476
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.
|
@@ -1839,7 +1839,7 @@ export interface paths {
|
|
|
1839
1839
|
path?: never;
|
|
1840
1840
|
cookie?: never;
|
|
1841
1841
|
};
|
|
1842
|
-
/** @description UI bootstrap call: the authenticated user plus the resolved team (embedded-session team, x-team-id header, or the oldest active membership), including membership, owner access, effective feature IDs, issue counts, and frontend setup context */
|
|
1842
|
+
/** @description UI bootstrap call: the authenticated user plus the resolved team (embedded-session team, x-team-id header, or the oldest active membership), including membership, owner access, effective feature IDs, issue counts, and frontend setup context. Embedded identities use sub instead of email, so user.email is null for them. */
|
|
1843
1843
|
get: operations["getMe"];
|
|
1844
1844
|
put?: never;
|
|
1845
1845
|
post?: never;
|
|
@@ -49130,7 +49130,7 @@ export interface operations {
|
|
|
49130
49130
|
type: "admin" | "user" | "owner";
|
|
49131
49131
|
firstName?: string;
|
|
49132
49132
|
lastName?: string;
|
|
49133
|
-
email: string;
|
|
49133
|
+
email: string | null;
|
|
49134
49134
|
secondaryEmails: string[];
|
|
49135
49135
|
phone?: string;
|
|
49136
49136
|
/** Format: uuid */
|