@vrplatform/api 1.3.1-stage.4985 → 1.3.1-stage.4986
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
|
@@ -2532,7 +2532,7 @@ export interface paths {
|
|
|
2532
2532
|
cookie?: never;
|
|
2533
2533
|
};
|
|
2534
2534
|
/**
|
|
2535
|
-
* @description List teams available to the authenticated user from the control plane. VRPlatform admins receive all teams regardless of membership. Other users receive directly assigned teams and child teams of assigned partners. Supports team-name search, lifecycle and type filters, deterministic sorting, and pagination across regions.
|
|
2535
|
+
* @description List teams available to the authenticated user from the control plane. VRPlatform admins receive all teams regardless of membership. Other users receive directly assigned teams and child teams of assigned partners. 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.
|
|
2536
2536
|
*
|
|
2537
2537
|
* Required scope: self:read
|
|
2538
2538
|
*/
|
|
@@ -55842,6 +55842,8 @@ export interface operations {
|
|
|
55842
55842
|
getMeTeams: {
|
|
55843
55843
|
parameters: {
|
|
55844
55844
|
query?: {
|
|
55845
|
+
/** @description Comma-separated team IDs. */
|
|
55846
|
+
ids?: string;
|
|
55845
55847
|
search?: string;
|
|
55846
55848
|
status?: "active" | "inactive";
|
|
55847
55849
|
type?: "partner" | "propertyManager";
|
|
@@ -55876,8 +55878,12 @@ export interface operations {
|
|
|
55876
55878
|
/** @enum {string} */
|
|
55877
55879
|
type: "partner" | "propertyManager";
|
|
55878
55880
|
partnerId: string | null;
|
|
55881
|
+
/** @description Effective billing partner ID: the explicit billing partner, otherwise the accounting partner. */
|
|
55882
|
+
billingPartnerId: string | null;
|
|
55879
55883
|
/** @enum {string} */
|
|
55880
55884
|
status: "active" | "inactive";
|
|
55885
|
+
/** @description Whether the team uses General Ledger, derived from its authoritative control-plane storage realm. */
|
|
55886
|
+
isGeneralLedger: boolean;
|
|
55881
55887
|
}[];
|
|
55882
55888
|
pagination: {
|
|
55883
55889
|
/** @default 100 */
|