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