@harnessio/react-sei-panorama-service-client 0.21.7 → 0.21.8
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.
@@ -1,21 +1,18 @@
|
|
1
1
|
export interface PaginationMetadata {
|
2
2
|
/**
|
3
|
-
* Whether there is a next page
|
4
|
-
*/
|
5
|
-
has_next?: boolean;
|
6
|
-
/**
|
7
|
-
* Current page number (0-based)
|
8
3
|
* @format int32
|
9
4
|
*/
|
10
|
-
|
5
|
+
pageNumber?: number;
|
11
6
|
/**
|
12
|
-
* Page size
|
13
7
|
* @format int32
|
14
8
|
*/
|
15
|
-
|
9
|
+
pageSize?: number;
|
16
10
|
/**
|
17
|
-
* Total count of records
|
18
11
|
* @format int64
|
19
12
|
*/
|
20
|
-
|
13
|
+
totalElements?: number;
|
14
|
+
/**
|
15
|
+
* @format int32
|
16
|
+
*/
|
17
|
+
totalPages?: number;
|
21
18
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@harnessio/react-sei-panorama-service-client",
|
3
|
-
"version": "0.21.
|
3
|
+
"version": "0.21.8",
|
4
4
|
"description": "Harness React sei panorama service client - SEI Panorama APIs integrated with react hooks for Panorama project",
|
5
5
|
"author": "Harness Inc",
|
6
6
|
"license": "MIT",
|