@hapl/api-queries 0.1.153--canary.81.1e3ed0f.0 → 0.1.153
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.153 (Thu Mar 31 2022)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- FE-1261: добавлены ручки запроса ЖК и комплексов ЖК V2 [#81](https://github.com/homeappcorporate/api-queries/pull/81) ([@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.152 (Fri Mar 25 2022)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export declare type
|
|
1
|
+
export declare type ComplexRelationships = {
|
|
2
2
|
complexHousing: {
|
|
3
|
-
data: {
|
|
3
|
+
data: Array<{
|
|
4
4
|
id: string;
|
|
5
5
|
type: 'complexHousing';
|
|
6
|
-
}
|
|
6
|
+
}>;
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
9
|
export declare type Complex = {
|
|
@@ -13,5 +13,5 @@ export declare type Complex = {
|
|
|
13
13
|
name: string;
|
|
14
14
|
fullName?: string;
|
|
15
15
|
};
|
|
16
|
-
relationships:
|
|
16
|
+
relationships: ComplexRelationships;
|
|
17
17
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare type
|
|
1
|
+
export declare type ComplexHousingRelationships = {
|
|
2
2
|
complex: {
|
|
3
3
|
data: {
|
|
4
4
|
id: string;
|
|
@@ -12,5 +12,5 @@ export declare type ComplexHousing = {
|
|
|
12
12
|
attributes: {
|
|
13
13
|
name: string;
|
|
14
14
|
};
|
|
15
|
-
relationships:
|
|
15
|
+
relationships: ComplexHousingRelationships;
|
|
16
16
|
};
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export type
|
|
2
|
-
complexHousing: { data: { id: string; type: 'complexHousing' } };
|
|
1
|
+
export type ComplexRelationships = {
|
|
2
|
+
complexHousing: { data: Array<{ id: string; type: 'complexHousing' }> };
|
|
3
3
|
};
|
|
4
4
|
|
|
5
5
|
export type Complex = {
|
|
@@ -9,5 +9,5 @@ export type Complex = {
|
|
|
9
9
|
name: string;
|
|
10
10
|
fullName?: string;
|
|
11
11
|
};
|
|
12
|
-
relationships:
|
|
12
|
+
relationships: ComplexRelationships;
|
|
13
13
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export type ComplexHousingRelationships = {
|
|
2
2
|
complex: { data: { id: string; type: 'complex' } };
|
|
3
3
|
};
|
|
4
4
|
|
|
@@ -8,5 +8,5 @@ export type ComplexHousing = {
|
|
|
8
8
|
attributes: {
|
|
9
9
|
name: string;
|
|
10
10
|
};
|
|
11
|
-
relationships:
|
|
11
|
+
relationships: ComplexHousingRelationships;
|
|
12
12
|
};
|