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