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