@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.
|
@@ -2531,7 +2531,7 @@ export interface paths {
|
|
|
2531
2531
|
cookie?: never;
|
|
2532
2532
|
};
|
|
2533
2533
|
/**
|
|
2534
|
-
* @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.
|
|
2534
|
+
* @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.
|
|
2535
2535
|
*
|
|
2536
2536
|
* Required scope: self:read
|
|
2537
2537
|
*/
|
|
@@ -55841,6 +55841,8 @@ export interface operations {
|
|
|
55841
55841
|
getMeTeams: {
|
|
55842
55842
|
parameters: {
|
|
55843
55843
|
query?: {
|
|
55844
|
+
/** @description Comma-separated team IDs. */
|
|
55845
|
+
ids?: string;
|
|
55844
55846
|
search?: string;
|
|
55845
55847
|
status?: "active" | "inactive";
|
|
55846
55848
|
type?: "partner" | "propertyManager";
|
|
@@ -55875,8 +55877,12 @@ export interface operations {
|
|
|
55875
55877
|
/** @enum {string} */
|
|
55876
55878
|
type: "partner" | "propertyManager";
|
|
55877
55879
|
partnerId: string | null;
|
|
55880
|
+
/** @description Effective billing partner ID: the explicit billing partner, otherwise the accounting partner. */
|
|
55881
|
+
billingPartnerId: string | null;
|
|
55878
55882
|
/** @enum {string} */
|
|
55879
55883
|
status: "active" | "inactive";
|
|
55884
|
+
/** @description Whether the team uses General Ledger, derived from its authoritative control-plane storage realm. */
|
|
55885
|
+
isGeneralLedger: boolean;
|
|
55880
55886
|
}[];
|
|
55881
55887
|
pagination: {
|
|
55882
55888
|
/** @default 100 */
|