@mamindom/contracts 1.0.67 → 1.0.68
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/dist/gen/common.d.ts +2 -0
- package/dist/proto/common.proto +5 -3
- package/gen/common.ts +2 -0
- package/package.json +1 -1
- package/proto/common.proto +5 -3
package/dist/gen/common.d.ts
CHANGED
package/dist/proto/common.proto
CHANGED
|
@@ -17,8 +17,10 @@ message PaginationRequest {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
message PaginationMeta {
|
|
20
|
-
|
|
21
|
-
int32 total_pages = 2;
|
|
20
|
+
int32 total_items = 1;
|
|
21
|
+
int32 total_pages = 2;
|
|
22
22
|
int32 current_page = 3;
|
|
23
|
-
int32 per_page = 4;
|
|
23
|
+
int32 per_page = 4;
|
|
24
|
+
optional double price_min = 5;
|
|
25
|
+
optional double price_max = 6;
|
|
24
26
|
}
|
package/gen/common.ts
CHANGED
package/package.json
CHANGED
package/proto/common.proto
CHANGED
|
@@ -17,8 +17,10 @@ message PaginationRequest {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
message PaginationMeta {
|
|
20
|
-
|
|
21
|
-
int32 total_pages = 2;
|
|
20
|
+
int32 total_items = 1;
|
|
21
|
+
int32 total_pages = 2;
|
|
22
22
|
int32 current_page = 3;
|
|
23
|
-
int32 per_page = 4;
|
|
23
|
+
int32 per_page = 4;
|
|
24
|
+
optional double price_min = 5;
|
|
25
|
+
optional double price_max = 6;
|
|
24
26
|
}
|