@vrplatform/api 1.3.1-stage.4553 → 1.3.1-stage.4555
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
|
@@ -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;
|
|
@@ -39792,7 +39792,17 @@ export interface operations {
|
|
|
39792
39792
|
};
|
|
39793
39793
|
getPartnerOwnerStatements: {
|
|
39794
39794
|
parameters: {
|
|
39795
|
-
query?:
|
|
39795
|
+
query?: {
|
|
39796
|
+
/** @description Filter by team name */
|
|
39797
|
+
search?: string;
|
|
39798
|
+
/** @description Owner statement status count to sort by */
|
|
39799
|
+
sortBy?: "draft" | "inReview" | "published";
|
|
39800
|
+
/** @description Sort direction, defaults to asc */
|
|
39801
|
+
sortDirection?: "asc" | "desc";
|
|
39802
|
+
limit?: number;
|
|
39803
|
+
page?: number;
|
|
39804
|
+
offset?: number;
|
|
39805
|
+
};
|
|
39796
39806
|
header?: {
|
|
39797
39807
|
/** @description Selects the regional data partition for this partner portfolio read. It does not change the authenticated team context. */
|
|
39798
39808
|
"x-data-region"?: "ap" | "crunchy" | "eu" | "hostaway" | "us";
|
|
@@ -39826,6 +39836,15 @@ export interface operations {
|
|
|
39826
39836
|
published: number;
|
|
39827
39837
|
};
|
|
39828
39838
|
}[];
|
|
39839
|
+
pagination: {
|
|
39840
|
+
/** @default 100 */
|
|
39841
|
+
limit: number;
|
|
39842
|
+
/** @default 1 */
|
|
39843
|
+
page: number;
|
|
39844
|
+
total: number;
|
|
39845
|
+
totalPage: number;
|
|
39846
|
+
nextPage?: number;
|
|
39847
|
+
};
|
|
39829
39848
|
};
|
|
39830
39849
|
};
|
|
39831
39850
|
};
|