@hapl/api-queries 0.1.137 → 0.1.138

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.
@@ -21,7 +21,7 @@ export declare type FindRealtiesParams = {
21
21
  };
22
22
  sorting?: {
23
23
  direction: 'asc' | 'desc';
24
- type: 'createdAt' | 'id';
24
+ type: 'createdAt' | 'id' | 'params.price';
25
25
  };
26
26
  };
27
27
  export declare type FindRealtiesData = AxiosResponse<ResultData>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.137",
2
+ "version": "0.1.138",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -12,7 +12,7 @@ export type FindRealtiesHeaders = { 'x-auth-hc': string };
12
12
  export type FindRealtiesParams = {
13
13
  filter?: { id?: number | number[] };
14
14
  limits?: { page?: number; count?: number | 'all' };
15
- sorting?: { direction: 'asc' | 'desc'; type: 'createdAt' | 'id' };
15
+ sorting?: { direction: 'asc' | 'desc'; type: 'createdAt' | 'id' | 'params.price' };
16
16
  };
17
17
  export type FindRealtiesData = AxiosResponse<ResultData>;
18
18
  export type FindRealtiesError = AxiosError<ResultError>;