@vrplatform/api 1.3.1-stage.4708 → 1.3.1-stage.4716
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.
|
@@ -4465,7 +4465,7 @@ export interface paths {
|
|
|
4465
4465
|
cookie?: never;
|
|
4466
4466
|
};
|
|
4467
4467
|
/**
|
|
4468
|
-
* @description Get the current team (singleton: the team in scope via the x-team-id header). Cross-team access uses the plural /teams collection.
|
|
4468
|
+
* @description Get the current team and its dashboard aggregates (singleton: the team in scope via the x-team-id header). Cross-team access uses the plural /teams collection.
|
|
4469
4469
|
*
|
|
4470
4470
|
* Required scope: teams:read
|
|
4471
4471
|
*/
|
|
@@ -4659,7 +4659,7 @@ export interface paths {
|
|
|
4659
4659
|
cookie?: never;
|
|
4660
4660
|
};
|
|
4661
4661
|
/**
|
|
4662
|
-
* @description List accessible teams in one regional data partition. Partner callers can select the partition with x-data-region.
|
|
4662
|
+
* @description List and filter accessible teams in one regional data partition. Billability is always present; includeAggregates opt-in adds partner-dashboard counts. Partner callers can select the partition with x-data-region.
|
|
4663
4663
|
*
|
|
4664
4664
|
* Required scope: teams:read
|
|
4665
4665
|
*/
|
|
@@ -31419,6 +31419,14 @@ export interface operations {
|
|
|
31419
31419
|
/** @enum {string} */
|
|
31420
31420
|
status: "all" | "disabled" | "partially";
|
|
31421
31421
|
}[];
|
|
31422
|
+
isBillable: boolean;
|
|
31423
|
+
aggregates: {
|
|
31424
|
+
activeListings: number;
|
|
31425
|
+
members: number;
|
|
31426
|
+
activeConnections: number;
|
|
31427
|
+
connectionIssues: number;
|
|
31428
|
+
childTeams: number;
|
|
31429
|
+
};
|
|
31422
31430
|
};
|
|
31423
31431
|
};
|
|
31424
31432
|
};
|
|
@@ -31745,6 +31753,14 @@ export interface operations {
|
|
|
31745
31753
|
/** @enum {string} */
|
|
31746
31754
|
status: "all" | "disabled" | "partially";
|
|
31747
31755
|
}[];
|
|
31756
|
+
isBillable: boolean;
|
|
31757
|
+
aggregates: {
|
|
31758
|
+
activeListings: number;
|
|
31759
|
+
members: number;
|
|
31760
|
+
activeConnections: number;
|
|
31761
|
+
connectionIssues: number;
|
|
31762
|
+
childTeams: number;
|
|
31763
|
+
};
|
|
31748
31764
|
};
|
|
31749
31765
|
};
|
|
31750
31766
|
};
|
|
@@ -78308,6 +78324,14 @@ export interface operations {
|
|
|
78308
78324
|
/** @enum {string} */
|
|
78309
78325
|
status: "all" | "disabled" | "partially";
|
|
78310
78326
|
}[];
|
|
78327
|
+
isBillable: boolean;
|
|
78328
|
+
aggregates: {
|
|
78329
|
+
activeListings: number;
|
|
78330
|
+
members: number;
|
|
78331
|
+
activeConnections: number;
|
|
78332
|
+
connectionIssues: number;
|
|
78333
|
+
childTeams: number;
|
|
78334
|
+
};
|
|
78311
78335
|
};
|
|
78312
78336
|
};
|
|
78313
78337
|
};
|
|
@@ -78698,6 +78722,14 @@ export interface operations {
|
|
|
78698
78722
|
/** @enum {string} */
|
|
78699
78723
|
status: "all" | "disabled" | "partially";
|
|
78700
78724
|
}[];
|
|
78725
|
+
isBillable: boolean;
|
|
78726
|
+
aggregates: {
|
|
78727
|
+
activeListings: number;
|
|
78728
|
+
members: number;
|
|
78729
|
+
activeConnections: number;
|
|
78730
|
+
connectionIssues: number;
|
|
78731
|
+
childTeams: number;
|
|
78732
|
+
};
|
|
78701
78733
|
};
|
|
78702
78734
|
};
|
|
78703
78735
|
};
|
|
@@ -79968,6 +80000,14 @@ export interface operations {
|
|
|
79968
80000
|
/** @enum {string} */
|
|
79969
80001
|
status: "all" | "disabled" | "partially";
|
|
79970
80002
|
}[];
|
|
80003
|
+
isBillable: boolean;
|
|
80004
|
+
aggregates: {
|
|
80005
|
+
activeListings: number;
|
|
80006
|
+
members: number;
|
|
80007
|
+
activeConnections: number;
|
|
80008
|
+
connectionIssues: number;
|
|
80009
|
+
childTeams: number;
|
|
80010
|
+
};
|
|
79971
80011
|
};
|
|
79972
80012
|
};
|
|
79973
80013
|
};
|
|
@@ -81134,8 +81174,18 @@ export interface operations {
|
|
|
81134
81174
|
/** @description Comma-separated team IDs. */
|
|
81135
81175
|
ids?: string;
|
|
81136
81176
|
status?: "active" | "inactive";
|
|
81177
|
+
/** @description Filter by onboarding state. */
|
|
81178
|
+
isOnboarding?: boolean;
|
|
81137
81179
|
search?: string;
|
|
81138
81180
|
partnerId?: string;
|
|
81181
|
+
billingPartnerId?: string;
|
|
81182
|
+
billingSubscriptionStatus?: "active" | "pending" | "paused" | "cancelled" | "pendingCancellation" | "draft" | "voided" | "errored" | "missing" | "viaPartner";
|
|
81183
|
+
billingPlan?: string;
|
|
81184
|
+
product?: "vrtrust" | "vrintegrations";
|
|
81185
|
+
/** @description Comma-separated enabled feature IDs. */
|
|
81186
|
+
featureIds?: string;
|
|
81187
|
+
/** @description Include partner-dashboard listing, member, connection, issue, and child-team counts. */
|
|
81188
|
+
includeAggregates?: boolean;
|
|
81139
81189
|
type?: "partner" | "propertyManager";
|
|
81140
81190
|
/** @description Field to sort by */
|
|
81141
81191
|
sortBy?: "created" | "name" | "type";
|
|
@@ -81320,6 +81370,14 @@ export interface operations {
|
|
|
81320
81370
|
/** @enum {string} */
|
|
81321
81371
|
status: "all" | "disabled" | "partially";
|
|
81322
81372
|
}[];
|
|
81373
|
+
isBillable: boolean;
|
|
81374
|
+
aggregates?: {
|
|
81375
|
+
activeListings: number;
|
|
81376
|
+
members: number;
|
|
81377
|
+
activeConnections: number;
|
|
81378
|
+
connectionIssues: number;
|
|
81379
|
+
childTeams: number;
|
|
81380
|
+
};
|
|
81323
81381
|
}[];
|
|
81324
81382
|
pagination: {
|
|
81325
81383
|
/** @default 100 */
|
|
@@ -81705,6 +81763,14 @@ export interface operations {
|
|
|
81705
81763
|
/** @enum {string} */
|
|
81706
81764
|
status: "all" | "disabled" | "partially";
|
|
81707
81765
|
}[];
|
|
81766
|
+
isBillable: boolean;
|
|
81767
|
+
aggregates: {
|
|
81768
|
+
activeListings: number;
|
|
81769
|
+
members: number;
|
|
81770
|
+
activeConnections: number;
|
|
81771
|
+
connectionIssues: number;
|
|
81772
|
+
childTeams: number;
|
|
81773
|
+
};
|
|
81708
81774
|
};
|
|
81709
81775
|
};
|
|
81710
81776
|
};
|
|
@@ -82883,6 +82949,14 @@ export interface operations {
|
|
|
82883
82949
|
/** @enum {string} */
|
|
82884
82950
|
status: "all" | "disabled" | "partially";
|
|
82885
82951
|
}[];
|
|
82952
|
+
isBillable: boolean;
|
|
82953
|
+
aggregates?: {
|
|
82954
|
+
activeListings: number;
|
|
82955
|
+
members: number;
|
|
82956
|
+
activeConnections: number;
|
|
82957
|
+
connectionIssues: number;
|
|
82958
|
+
childTeams: number;
|
|
82959
|
+
};
|
|
82886
82960
|
}[];
|
|
82887
82961
|
pagination: {
|
|
82888
82962
|
/** @default 100 */
|
|
@@ -83203,6 +83277,14 @@ export interface operations {
|
|
|
83203
83277
|
/** @enum {string} */
|
|
83204
83278
|
status: "all" | "disabled" | "partially";
|
|
83205
83279
|
}[];
|
|
83280
|
+
isBillable: boolean;
|
|
83281
|
+
aggregates?: {
|
|
83282
|
+
activeListings: number;
|
|
83283
|
+
members: number;
|
|
83284
|
+
activeConnections: number;
|
|
83285
|
+
connectionIssues: number;
|
|
83286
|
+
childTeams: number;
|
|
83287
|
+
};
|
|
83206
83288
|
/** Format: uri */
|
|
83207
83289
|
apiBaseUrl: string;
|
|
83208
83290
|
};
|