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