@vrplatform/api 1.3.1-stage.4554 → 1.3.1-stage.4556

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.
@@ -2245,7 +2245,7 @@ export interface paths {
2245
2245
  path?: never;
2246
2246
  cookie?: never;
2247
2247
  };
2248
- /** @description List members of the partner itself with their child-team memberships */
2248
+ /** @description List members of the partner itself with their partner-team role, status, invitation timestamp, and child-team memberships */
2249
2249
  get: operations["getPartnerMembers"];
2250
2250
  put?: never;
2251
2251
  post?: never;
@@ -2296,7 +2296,7 @@ export interface paths {
2296
2296
  path?: never;
2297
2297
  cookie?: never;
2298
2298
  };
2299
- /** @description List VRT teams in one regional partition of the partner portfolio with owner statement counts by status. Select the partition with x-data-region. */
2299
+ /** @description List VRT teams in one regional partition of the partner portfolio with owner statement counts by status. Supports team-name search, pagination, and ordering by each status count. Select the partition with x-data-region. */
2300
2300
  get: operations["getPartnerOwnerStatements"];
2301
2301
  put?: never;
2302
2302
  post?: never;
@@ -39303,6 +39303,10 @@ export interface operations {
39303
39303
  /** Format: email */
39304
39304
  email: string;
39305
39305
  secondaryEmails: string[];
39306
+ /** @enum {string} */
39307
+ role: "admin" | "user";
39308
+ status: ("active" | "inactive" | "unconfirmed") | null;
39309
+ lastInvitedAt: string | null;
39306
39310
  partnerId: string | null;
39307
39311
  name: string | null;
39308
39312
  firstName: string | null;
@@ -39791,7 +39795,17 @@ export interface operations {
39791
39795
  };
39792
39796
  getPartnerOwnerStatements: {
39793
39797
  parameters: {
39794
- query?: never;
39798
+ query?: {
39799
+ /** @description Filter by team name */
39800
+ search?: string;
39801
+ /** @description Owner statement status count to sort by */
39802
+ sortBy?: "draft" | "inReview" | "published";
39803
+ /** @description Sort direction, defaults to asc */
39804
+ sortDirection?: "asc" | "desc";
39805
+ limit?: number;
39806
+ page?: number;
39807
+ offset?: number;
39808
+ };
39795
39809
  header?: {
39796
39810
  /** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
39797
39811
  "x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
@@ -39825,6 +39839,15 @@ export interface operations {
39825
39839
  published: number;
39826
39840
  };
39827
39841
  }[];
39842
+ pagination: {
39843
+ /** @default 100 */
39844
+ limit: number;
39845
+ /** @default 1 */
39846
+ page: number;
39847
+ total: number;
39848
+ totalPage: number;
39849
+ nextPage?: number;
39850
+ };
39828
39851
  };
39829
39852
  };
39830
39853
  };