@vrplatform/api 1.3.1-stage.4375 → 1.3.1-stage.4376

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.
@@ -2211,7 +2211,7 @@ export interface paths {
2211
2211
  path?: never;
2212
2212
  cookie?: never;
2213
2213
  };
2214
- /** @description List members of the partner itself (not its child teams) */
2214
+ /** @description List members of the partner itself with their child-team memberships */
2215
2215
  get: operations["getPartnerMembers"];
2216
2216
  put?: never;
2217
2217
  post?: never;
@@ -34775,21 +34775,24 @@ export interface operations {
34775
34775
  data: {
34776
34776
  /** Format: uuid */
34777
34777
  id: string;
34778
- /** Format: uuid */
34779
- userId: string;
34780
- /** Format: uuid */
34781
- tenantId: string;
34782
34778
  /** Format: email */
34783
34779
  email: string;
34784
34780
  secondaryEmails: string[];
34785
- /** @enum {string} */
34786
- role: "admin" | "user";
34787
- status: ("active" | "inactive" | "unconfirmed") | null;
34788
- lastInvitedAt: string | null;
34789
34781
  partnerId: string | null;
34790
34782
  name: string | null;
34791
34783
  firstName: string | null;
34792
34784
  lastName: string | null;
34785
+ lastSeen: string | null;
34786
+ memberships: {
34787
+ tenant: {
34788
+ /** Format: uuid */
34789
+ id: string;
34790
+ name: string;
34791
+ };
34792
+ role?: string | null;
34793
+ status?: string | null;
34794
+ lastInvitedAt: string | null;
34795
+ }[];
34793
34796
  }[];
34794
34797
  };
34795
34798
  };
@@ -34939,9 +34942,11 @@ export interface operations {
34939
34942
  data: {
34940
34943
  /** Format: uuid */
34941
34944
  id: string;
34942
- name?: string | null;
34945
+ firstName: string | null;
34946
+ lastName: string | null;
34943
34947
  /** Format: email */
34944
34948
  email: string;
34949
+ secondaryEmails: string[];
34945
34950
  /** @description User kind (e.g. user, owner) */
34946
34951
  type?: string | null;
34947
34952
  lastSeen: string | null;
@@ -34952,6 +34957,7 @@ export interface operations {
34952
34957
  teamName: string;
34953
34958
  role?: string | null;
34954
34959
  status?: string | null;
34960
+ lastInvitedAt: string | null;
34955
34961
  }[];
34956
34962
  ownerAccesses: {
34957
34963
  /** Format: uuid */
@@ -35107,9 +35113,11 @@ export interface operations {
35107
35113
  "application/json": {
35108
35114
  /** Format: uuid */
35109
35115
  id: string;
35110
- name?: string | null;
35116
+ firstName: string | null;
35117
+ lastName: string | null;
35111
35118
  /** Format: email */
35112
35119
  email: string;
35120
+ secondaryEmails: string[];
35113
35121
  /** @description User kind (e.g. user, owner) */
35114
35122
  type?: string | null;
35115
35123
  lastSeen: string | null;
@@ -35120,6 +35128,7 @@ export interface operations {
35120
35128
  teamName: string;
35121
35129
  role?: string | null;
35122
35130
  status?: string | null;
35131
+ lastInvitedAt: string | null;
35123
35132
  }[];
35124
35133
  ownerAccesses: {
35125
35134
  /** Format: uuid */