@hapl/api-queries 0.1.176--canary.104.023c930.0 → 0.1.176

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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v0.1.176 (Wed Jul 20 2022)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - FE-1362: для realty V2 добавлен новый include `priceHistory` [#104](https://github.com/homeappcorporate/api-queries/pull/104) ([@abd2561024](https://github.com/abd2561024))
6
+
7
+ #### Authors: 1
8
+
9
+ - Andrey Romashin ([@abd2561024](https://github.com/abd2561024))
10
+
11
+ ---
12
+
1
13
  # v0.1.175 (Tue Jul 12 2022)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -4,6 +4,6 @@ export declare type PriceHistory = {
4
4
  attributes: {
5
5
  oldPrice: number;
6
6
  newPrice: number;
7
- dateCreated: 'string';
7
+ dateCreated: string;
8
8
  };
9
9
  };
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.176--canary.104.023c930.0",
2
+ "version": "0.1.176",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -4,6 +4,6 @@ export type PriceHistory = {
4
4
  attributes: {
5
5
  oldPrice: number;
6
6
  newPrice: number;
7
- dateCreated: 'string';
7
+ dateCreated: string;
8
8
  };
9
9
  };