@vrplatform/api 1.3.1-stage.6180 → 1.3.1-stage.6184
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.
|
@@ -2684,7 +2684,7 @@ export interface paths {
|
|
|
2684
2684
|
cookie?: never;
|
|
2685
2685
|
};
|
|
2686
2686
|
/**
|
|
2687
|
-
* @description UI bootstrap call: the authenticated user plus the resolved team (embedded-session team, x-team-id header, or the oldest active membership), including placement, partner managed-team region discovery, 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.
|
|
2687
|
+
* @description UI bootstrap call: the authenticated user plus the resolved team (embedded-session team, x-team-id header, or the oldest active membership), including placement, partner managed-team region discovery, membership accessSource (direct or partnerDerived), effective permissions, 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.
|
|
2688
2688
|
*
|
|
2689
2689
|
* Required scope: self:read
|
|
2690
2690
|
*/
|
|
@@ -2736,7 +2736,7 @@ export interface paths {
|
|
|
2736
2736
|
cookie?: never;
|
|
2737
2737
|
};
|
|
2738
2738
|
/**
|
|
2739
|
-
* @description List teams available to the authenticated user from the control plane. VRPlatform admins receive all teams regardless of membership.
|
|
2739
|
+
* @description List teams available to the authenticated user from the control plane. VRPlatform admins receive all teams regardless of membership. Direct memberships are always included. When UI Permission Roles is enabled for a managed team, partner membership adds that team only when managedTeamAccess is all; assigned access requires a direct child-team membership. Legacy authorization mode retains broad partner-derived team access. Supports comma-separated team IDs, team-name search, lifecycle and type filters, deterministic sorting, and pagination across regions. ID filtering never expands the authenticated access scope.
|
|
2740
2740
|
*
|
|
2741
2741
|
* Required scope: self:read
|
|
2742
2742
|
*/
|
|
@@ -3350,7 +3350,7 @@ export interface paths {
|
|
|
3350
3350
|
cookie?: never;
|
|
3351
3351
|
};
|
|
3352
3352
|
/**
|
|
3353
|
-
* @description List members of the partner itself with
|
|
3353
|
+
* @description List members of the partner itself with partner permission bundles, managed-team access mode, role, status, invitation timestamp, and child-team memberships including their permission bundles
|
|
3354
3354
|
*
|
|
3355
3355
|
* Required scope: team-members:read
|
|
3356
3356
|
*/
|
|
@@ -3393,7 +3393,7 @@ export interface paths {
|
|
|
3393
3393
|
};
|
|
3394
3394
|
get?: never;
|
|
3395
3395
|
/**
|
|
3396
|
-
* @description
|
|
3396
|
+
* @description Update a partner member's managed-team access mode and replace their explicit child-team assignments. Omitted managedTeamAccess preserves the current mode. Listed teams are upserted with the given compatibility role (admin | user), unlisted child-team memberships are removed, and partner/owner memberships are never touched. Assigned access may contain zero teams; all access makes every managed team available while preserving explicit assignments for a later switch back to assigned.
|
|
3397
3397
|
*
|
|
3398
3398
|
* Required scope: partner-memberships:manage
|
|
3399
3399
|
*/
|
|
@@ -5569,7 +5569,7 @@ export interface paths {
|
|
|
5569
5569
|
get?: never;
|
|
5570
5570
|
put?: never;
|
|
5571
5571
|
/**
|
|
5572
|
-
* @description Invite a property-manager member to the current team. Emails already used by owner accounts are rejected as bad requests. Provider-suppressed email addresses are rejected as bad requests with a copy-link alternative.
|
|
5572
|
+
* @description Invite a property-manager member to the current team. Re-inviting an existing membership with the same role preserves its complete permissionBundles array. Requesting a different role replaces the complete permissionBundles array with the compatibility defaults. The authoritative membership and authorization cache update before retryable email delivery begins. A delivery failure returns an error without rolling back the committed membership change. Emails already used by owner accounts are rejected as bad requests. Provider-suppressed email addresses are rejected as bad requests with a copy-link alternative.
|
|
5573
5573
|
*
|
|
5574
5574
|
* Required scope: team-members:manage
|
|
5575
5575
|
*/
|
|
@@ -5589,7 +5589,7 @@ export interface paths {
|
|
|
5589
5589
|
};
|
|
5590
5590
|
get?: never;
|
|
5591
5591
|
/**
|
|
5592
|
-
* @description Update a property-manager member legacy role and synchronized permission bundles for the current team. UI Permission Roles prevents demoting the last direct access manager.
|
|
5592
|
+
* @description Update a property-manager member legacy role and synchronized permission bundles for the current team. Submitting the member's existing role preserves the complete permissionBundles array. Changing the role replaces the complete permissionBundles array with the compatibility defaults. UI Permission Roles prevents demoting the last direct access manager.
|
|
5593
5593
|
*
|
|
5594
5594
|
* Required scope: team-member-roles:manage
|
|
5595
5595
|
*/
|
|
@@ -50189,6 +50189,8 @@ export interface operations {
|
|
|
50189
50189
|
membership?: {
|
|
50190
50190
|
/** Format: uuid */
|
|
50191
50191
|
tenantId: string;
|
|
50192
|
+
/** @enum {string} */
|
|
50193
|
+
managedTeamAccess?: "all" | "assigned";
|
|
50192
50194
|
/**
|
|
50193
50195
|
* @default user
|
|
50194
50196
|
* @enum {string}
|
|
@@ -50472,6 +50474,8 @@ export interface operations {
|
|
|
50472
50474
|
membership?: {
|
|
50473
50475
|
/** Format: uuid */
|
|
50474
50476
|
tenantId: string;
|
|
50477
|
+
/** @enum {string} */
|
|
50478
|
+
managedTeamAccess?: "all" | "assigned";
|
|
50475
50479
|
/**
|
|
50476
50480
|
* @default user
|
|
50477
50481
|
* @enum {string}
|
|
@@ -51003,6 +51007,8 @@ export interface operations {
|
|
|
51003
51007
|
"application/json": {
|
|
51004
51008
|
lastInvitedAt?: string | null;
|
|
51005
51009
|
/** @enum {string} */
|
|
51010
|
+
managedTeamAccess?: "all" | "assigned";
|
|
51011
|
+
/** @enum {string} */
|
|
51006
51012
|
role?: "admin" | "user" | "owner";
|
|
51007
51013
|
/** @enum {string} */
|
|
51008
51014
|
status?: "active" | "inactive" | "unconfirmed";
|
|
@@ -58373,6 +58379,8 @@ export interface operations {
|
|
|
58373
58379
|
cancelledAt: string | null;
|
|
58374
58380
|
} | null;
|
|
58375
58381
|
membership: {
|
|
58382
|
+
/** @enum {string} */
|
|
58383
|
+
accessSource: "direct" | "partnerDerived";
|
|
58376
58384
|
/** @enum {string} */
|
|
58377
58385
|
role: "admin" | "user" | "owner" | "partner";
|
|
58378
58386
|
permissionBundles: string[];
|
|
@@ -67567,6 +67575,9 @@ export interface operations {
|
|
|
67567
67575
|
/** Format: email */
|
|
67568
67576
|
email: string;
|
|
67569
67577
|
secondaryEmails: string[];
|
|
67578
|
+
permissionBundles: string[];
|
|
67579
|
+
/** @enum {string} */
|
|
67580
|
+
managedTeamAccess: "all" | "assigned";
|
|
67570
67581
|
/** @enum {string} */
|
|
67571
67582
|
role: "admin" | "user";
|
|
67572
67583
|
status: ("active" | "inactive" | "unconfirmed") | null;
|
|
@@ -67582,6 +67593,7 @@ export interface operations {
|
|
|
67582
67593
|
id: string;
|
|
67583
67594
|
name: string;
|
|
67584
67595
|
};
|
|
67596
|
+
permissionBundles: string[];
|
|
67585
67597
|
role?: string | null;
|
|
67586
67598
|
status?: string | null;
|
|
67587
67599
|
lastInvitedAt: string | null;
|
|
@@ -68081,6 +68093,11 @@ export interface operations {
|
|
|
68081
68093
|
requestBody?: {
|
|
68082
68094
|
content: {
|
|
68083
68095
|
"application/json": {
|
|
68096
|
+
/**
|
|
68097
|
+
* @description Partner-level child-team access mode. Omit to preserve the member's current mode.
|
|
68098
|
+
* @enum {string}
|
|
68099
|
+
*/
|
|
68100
|
+
managedTeamAccess?: "all" | "assigned";
|
|
68084
68101
|
/** @description Replace semantics across the partner CHILD teams: listed teams are upserted with the given role, unlisted child-team memberships are removed. The partner-tenant membership itself and owner-role memberships are never touched. */
|
|
68085
68102
|
memberships: {
|
|
68086
68103
|
/** Format: uuid */
|
|
@@ -69474,6 +69491,11 @@ export interface operations {
|
|
|
69474
69491
|
requestBody?: {
|
|
69475
69492
|
content: {
|
|
69476
69493
|
"application/json": {
|
|
69494
|
+
/**
|
|
69495
|
+
* @description Partner-level child-team access mode. Omit to preserve the member's current mode.
|
|
69496
|
+
* @enum {string}
|
|
69497
|
+
*/
|
|
69498
|
+
managedTeamAccess?: "all" | "assigned";
|
|
69477
69499
|
/** @description Replace semantics across the partner CHILD teams: listed teams are upserted with the given role, unlisted child-team memberships are removed. The partner-tenant membership itself and owner-role memberships are never touched. */
|
|
69478
69500
|
memberships: {
|
|
69479
69501
|
/** Format: uuid */
|