@vrplatform/api 1.3.1-4468 → 1.3.1-4475
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;
|
|
@@ -35250,7 +35250,7 @@ export interface operations {
|
|
|
35250
35250
|
type: "admin" | "user" | "owner";
|
|
35251
35251
|
firstName?: string;
|
|
35252
35252
|
lastName?: string;
|
|
35253
|
-
email: string;
|
|
35253
|
+
email: string | null;
|
|
35254
35254
|
secondaryEmails: string[];
|
|
35255
35255
|
phone?: string;
|
|
35256
35256
|
/** Format: uuid */
|