@bpd-library/utilities 1.3.8 → 1.3.9-beta.2
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/api-utilities/api-utilities.types.d.ts +4 -4
- package/dist/api-utilities/api-utilities.types.js.map +1 -1
- package/dist/api-utilities/find-filter.d.ts +12 -30
- package/dist/api-utilities/find-filter.js.map +1 -1
- package/dist/api-utilities/get/layer-raster.d.ts +2 -2
- package/dist/api-utilities/get/layer-raster.js.map +1 -1
- package/dist/extended-api-models/extended-area.js.map +1 -1
- package/dist/extended-api-models/status/construction-number-status.js +7 -1
- package/dist/extended-api-models/status/construction-number-status.js.map +1 -1
- package/dist/generated/bpd-client.d.ts +605 -589
- package/dist/generated/bpd-client.js +2 -0
- package/dist/generated/bpd-client.js.map +1 -1
- package/package.json +3 -3
|
@@ -4,47 +4,6 @@ export interface ActivationEngineModel {
|
|
|
4
4
|
customerJourneyPhase?: string | null;
|
|
5
5
|
constructionNumberIds?: string[] | null;
|
|
6
6
|
}
|
|
7
|
-
export interface ProblemDetails {
|
|
8
|
-
type?: string | null;
|
|
9
|
-
title?: string | null;
|
|
10
|
-
status?: number | null;
|
|
11
|
-
detail?: string | null;
|
|
12
|
-
instance?: string | null;
|
|
13
|
-
}
|
|
14
|
-
export interface ResourceModel {
|
|
15
|
-
title?: string | null;
|
|
16
|
-
url?: string | null;
|
|
17
|
-
resourceType?: string | null;
|
|
18
|
-
contentType?: string | null;
|
|
19
|
-
mediaNodeId?: string | null;
|
|
20
|
-
lastUpdatedUtc?: string;
|
|
21
|
-
metadata?: {
|
|
22
|
-
[key: string]: string;
|
|
23
|
-
} | null;
|
|
24
|
-
}
|
|
25
|
-
export interface PolygonModel {
|
|
26
|
-
coordinates?: number[][] | null;
|
|
27
|
-
}
|
|
28
|
-
export interface ApartmentBuildingViewPointer {
|
|
29
|
-
type?: string | null;
|
|
30
|
-
coordinates?: number[] | null;
|
|
31
|
-
constructionNumberId?: string | null;
|
|
32
|
-
linkToViewId?: string | null;
|
|
33
|
-
label?: string | null;
|
|
34
|
-
alignment?: string | null;
|
|
35
|
-
compassDirection?: string | null;
|
|
36
|
-
}
|
|
37
|
-
export interface ApartmentBuildingView {
|
|
38
|
-
id?: string | null;
|
|
39
|
-
imageUrl?: string | null;
|
|
40
|
-
type?: string | null;
|
|
41
|
-
sourceUrl?: string | null;
|
|
42
|
-
label?: string | null;
|
|
43
|
-
buttonLabel?: string | null;
|
|
44
|
-
rotateLeftViewId?: string | null;
|
|
45
|
-
rotateRightViewId?: string | null;
|
|
46
|
-
pointers?: ApartmentBuildingViewPointer[] | null;
|
|
47
|
-
}
|
|
48
7
|
export interface ApartmentBuildingModel {
|
|
49
8
|
areaProjectId?: string | null;
|
|
50
9
|
projectPhaseId?: string | null;
|
|
@@ -59,103 +18,25 @@ export interface ApartmentBuildingModel {
|
|
|
59
18
|
views?: ApartmentBuildingView[] | null;
|
|
60
19
|
id: string;
|
|
61
20
|
}
|
|
62
|
-
export interface
|
|
63
|
-
ownerId?: string | null;
|
|
64
|
-
ownerType?: string | null;
|
|
65
|
-
isMainResource?: boolean | null;
|
|
66
|
-
}
|
|
67
|
-
export interface UpdateResourceModel {
|
|
68
|
-
title?: string | null;
|
|
69
|
-
url?: string | null;
|
|
70
|
-
resourceType?: string | null;
|
|
71
|
-
contentType?: string | null;
|
|
72
|
-
sortIndex?: number;
|
|
73
|
-
references?: ResourceReference[] | null;
|
|
74
|
-
metadata?: {
|
|
75
|
-
[key: string]: string;
|
|
76
|
-
} | null;
|
|
77
|
-
}
|
|
78
|
-
export interface UpdateApartmentBuildingModel {
|
|
79
|
-
districtId?: string | null;
|
|
80
|
-
alias?: string | null;
|
|
81
|
-
displayName?: string | null;
|
|
82
|
-
description?: string | null;
|
|
83
|
-
propertyTypeIds?: string[] | null;
|
|
84
|
-
sortIndex?: number;
|
|
85
|
-
views?: ApartmentBuildingView[] | null;
|
|
86
|
-
image?: UpdateResourceModel;
|
|
87
|
-
}
|
|
88
|
-
export declare type WebchatType = 'None' | 'UnifiedCommunications' | 'Salesforce';
|
|
89
|
-
export interface Time {
|
|
90
|
-
hour?: number;
|
|
91
|
-
minute?: number;
|
|
92
|
-
}
|
|
93
|
-
export interface TimeRange {
|
|
94
|
-
from?: Time;
|
|
95
|
-
to?: Time;
|
|
96
|
-
}
|
|
97
|
-
export declare type HolidayFrequency = 'Once' | 'Monthly' | 'Yearly';
|
|
98
|
-
export interface OpeningHoursHoliday {
|
|
99
|
-
name?: string | null;
|
|
100
|
-
startDate?: string;
|
|
101
|
-
endDate?: string | null;
|
|
102
|
-
openingHours?: TimeRange;
|
|
103
|
-
frequency?: HolidayFrequency;
|
|
104
|
-
}
|
|
105
|
-
export interface OpeningHours {
|
|
106
|
-
name?: string | null;
|
|
107
|
-
isActive?: boolean;
|
|
108
|
-
isDefault?: boolean;
|
|
109
|
-
monday?: TimeRange;
|
|
110
|
-
tuesday?: TimeRange;
|
|
111
|
-
wednesday?: TimeRange;
|
|
112
|
-
thursday?: TimeRange;
|
|
113
|
-
friday?: TimeRange;
|
|
114
|
-
saturday?: TimeRange;
|
|
115
|
-
sunday?: TimeRange;
|
|
116
|
-
holidays?: OpeningHoursHoliday[] | null;
|
|
21
|
+
export interface ApartmentBuildingView {
|
|
117
22
|
id?: string | null;
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
webchatChannelMenuName?: string | null;
|
|
127
|
-
phoneNumber?: string | null;
|
|
128
|
-
emailAddress?: string | null;
|
|
129
|
-
facebookUrl?: string | null;
|
|
130
|
-
pinterestUrl?: string | null;
|
|
131
|
-
twitterUrl?: string | null;
|
|
132
|
-
caseViaEmail?: boolean;
|
|
133
|
-
openingHours?: OpeningHours;
|
|
134
|
-
openingHoursWeekdays?: TimeRange;
|
|
135
|
-
openingHoursSaturday?: TimeRange;
|
|
136
|
-
openingHoursSunday?: TimeRange;
|
|
137
|
-
isClosedToday?: boolean;
|
|
23
|
+
imageUrl?: string | null;
|
|
24
|
+
type?: string | null;
|
|
25
|
+
sourceUrl?: string | null;
|
|
26
|
+
label?: string | null;
|
|
27
|
+
buttonLabel?: string | null;
|
|
28
|
+
rotateLeftViewId?: string | null;
|
|
29
|
+
rotateRightViewId?: string | null;
|
|
30
|
+
pointers?: ApartmentBuildingViewPointer[] | null;
|
|
138
31
|
}
|
|
139
|
-
export interface
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
[key: string]: string;
|
|
148
|
-
} | null;
|
|
149
|
-
secondLevelNavigationButtonLabelPlural?: {
|
|
150
|
-
[key: string]: string;
|
|
151
|
-
} | null;
|
|
152
|
-
secondLevelNavigationLabelSingular?: string | null;
|
|
153
|
-
secondLevelNavigationLabelPlural?: string | null;
|
|
154
|
-
skinName?: string | null;
|
|
155
|
-
contactDetails?: WebsiteContactModel;
|
|
156
|
-
showOnCorporateSite?: boolean;
|
|
157
|
-
channelMenuId?: string | null;
|
|
158
|
-
isMyEnvironment2022Enabled?: boolean;
|
|
32
|
+
export interface ApartmentBuildingViewPointer {
|
|
33
|
+
type?: string | null;
|
|
34
|
+
coordinates?: number[] | null;
|
|
35
|
+
constructionNumberId?: string | null;
|
|
36
|
+
linkToViewId?: string | null;
|
|
37
|
+
label?: string | null;
|
|
38
|
+
alignment?: string | null;
|
|
39
|
+
compassDirection?: string | null;
|
|
159
40
|
}
|
|
160
41
|
export interface AreaProjectModel {
|
|
161
42
|
name?: string | null;
|
|
@@ -166,6 +47,7 @@ export interface AreaProjectModel {
|
|
|
166
47
|
url?: string | null;
|
|
167
48
|
isSingleProject?: boolean;
|
|
168
49
|
isCompleted?: boolean;
|
|
50
|
+
status?: AreaStatus;
|
|
169
51
|
image?: ResourceModel;
|
|
170
52
|
location?: number[] | null;
|
|
171
53
|
geometry?: PolygonModel[] | null;
|
|
@@ -177,11 +59,25 @@ export interface AreaProjectModel {
|
|
|
177
59
|
website?: WebsiteModel;
|
|
178
60
|
id: string;
|
|
179
61
|
}
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
62
|
+
export declare type AreaStatus = 'InPreparation' | 'OnSale' | 'Sold';
|
|
63
|
+
export declare type CRSType = 'unspecified' | 'name' | 'link';
|
|
64
|
+
export interface CaseFormModel {
|
|
65
|
+
areaProjectId?: string | null;
|
|
66
|
+
districtId?: string | null;
|
|
67
|
+
projectId?: string | null;
|
|
68
|
+
propertyTypeId?: string | null;
|
|
69
|
+
regionId?: string | null;
|
|
70
|
+
firstName?: string | null;
|
|
71
|
+
lastName?: string | null;
|
|
72
|
+
lastNamePrefix?: string | null;
|
|
73
|
+
email: string;
|
|
74
|
+
message: string;
|
|
75
|
+
contactReason?: string | null;
|
|
76
|
+
phoneNumber?: string | null;
|
|
77
|
+
webcareSubject?: string | null;
|
|
78
|
+
chatUrl?: string | null;
|
|
79
|
+
mailTo?: string | null;
|
|
80
|
+
referringUrl?: string | null;
|
|
185
81
|
}
|
|
186
82
|
export interface CityModel {
|
|
187
83
|
countryId?: string | null;
|
|
@@ -192,21 +88,40 @@ export interface CityModel {
|
|
|
192
88
|
seoText?: SeoText;
|
|
193
89
|
id: string;
|
|
194
90
|
}
|
|
195
|
-
export
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
91
|
+
export interface ConstructionNumberModel {
|
|
92
|
+
areaProjectId?: string | null;
|
|
93
|
+
districtId?: string | null;
|
|
94
|
+
projectPhaseId?: string | null;
|
|
95
|
+
projectPhaseName?: string | null;
|
|
96
|
+
propertyTypeId?: string | null;
|
|
97
|
+
propertyTypeName?: string | null;
|
|
98
|
+
apartmentBuildingId?: string | null;
|
|
99
|
+
identifier?: string | null;
|
|
100
|
+
serviceCostsPerMonth?: number;
|
|
101
|
+
security?: number | null;
|
|
102
|
+
wishlistItemCount?: number;
|
|
103
|
+
numberOfReserveCandidates?: number;
|
|
104
|
+
availabilityStatus?: ConstructionNumberStatus;
|
|
105
|
+
shortDescription?: string | null;
|
|
106
|
+
longDescription?: string | null;
|
|
107
|
+
houseSubType?: string | null;
|
|
108
|
+
deliveryDate?: string | null;
|
|
109
|
+
geometry?: PolygonModel[] | null;
|
|
110
|
+
resources?: ResourceModel[] | null;
|
|
111
|
+
groundLease?: GroundLease;
|
|
112
|
+
mainImage?: ResourceModel;
|
|
113
|
+
specifications?: ConstructionNumberSpecifications;
|
|
114
|
+
salesPrice?: PropertySalesPrice;
|
|
115
|
+
rentalPrice?: PropertyRentalPrice;
|
|
116
|
+
landRegistration?: LandRegistrationDetails;
|
|
117
|
+
extraSpecifications?: ExtraSpecifications;
|
|
118
|
+
numberOfFloors?: number | null;
|
|
119
|
+
mainFloorNumber?: string | null;
|
|
120
|
+
floors?: Floor[] | null;
|
|
121
|
+
gardens?: GardenModel[] | null;
|
|
122
|
+
outsideSpace?: OutsideSpaceModel[] | null;
|
|
123
|
+
outbuildings?: Outbuilding[] | null;
|
|
124
|
+
id: string;
|
|
210
125
|
}
|
|
211
126
|
export interface ConstructionNumberSpecifications {
|
|
212
127
|
nonLivingArea?: DecimalRange;
|
|
@@ -221,58 +136,68 @@ export interface ConstructionNumberSpecifications {
|
|
|
221
136
|
plotArea?: DecimalRange;
|
|
222
137
|
volume?: DecimalRange;
|
|
223
138
|
}
|
|
224
|
-
export declare type
|
|
225
|
-
export
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
priceType?: PriceType;
|
|
232
|
-
priceTypeFunda?: string | null;
|
|
233
|
-
monthlyServiceCosts?: number | null;
|
|
139
|
+
export declare type ConstructionNumberStatus = 'Available' | 'InOption' | 'Sold' | 'Reserved';
|
|
140
|
+
export interface CountryModel {
|
|
141
|
+
isoCode?: string | null;
|
|
142
|
+
name?: string | null;
|
|
143
|
+
englishName?: string | null;
|
|
144
|
+
seoText?: SeoText;
|
|
145
|
+
id: string;
|
|
234
146
|
}
|
|
235
|
-
export interface
|
|
236
|
-
|
|
237
|
-
amount?: DecimalRange;
|
|
238
|
-
priceType?: PriceType;
|
|
239
|
-
priceTypeFunda?: string | null;
|
|
240
|
-
monthlyServiceCosts?: number | null;
|
|
147
|
+
export interface CountryQuery {
|
|
148
|
+
[key: string]: any;
|
|
241
149
|
}
|
|
242
|
-
export interface
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
area?: number | null;
|
|
257
|
-
section?: string | null;
|
|
258
|
-
type?: string | null;
|
|
259
|
-
fixedVariable?: string | null;
|
|
260
|
-
propertyTypeType?: string | null;
|
|
261
|
-
propertyType?: string | null;
|
|
262
|
-
plot?: string | null;
|
|
150
|
+
export interface DecimalRange {
|
|
151
|
+
from?: number;
|
|
152
|
+
to?: number | null;
|
|
153
|
+
}
|
|
154
|
+
export interface DigitalBrochureModel {
|
|
155
|
+
dateCreated?: string;
|
|
156
|
+
data?: string | null;
|
|
157
|
+
pageUrl?: string | null;
|
|
158
|
+
id: string;
|
|
159
|
+
}
|
|
160
|
+
export interface DigitalBrochureRequestModel {
|
|
161
|
+
projectId?: string | null;
|
|
162
|
+
areaId?: string | null;
|
|
163
|
+
propertyId?: string | null;
|
|
263
164
|
constructionNumberId?: string | null;
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
165
|
+
firstName?: string | null;
|
|
166
|
+
sufix?: string | null;
|
|
167
|
+
lastName?: string | null;
|
|
168
|
+
email?: string | null;
|
|
169
|
+
data?: string | null;
|
|
170
|
+
pageUrl?: string | null;
|
|
171
|
+
documentName?: string | null;
|
|
267
172
|
}
|
|
268
|
-
export interface
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
173
|
+
export interface DistrictModel {
|
|
174
|
+
areaProjectId?: string | null;
|
|
175
|
+
name?: string | null;
|
|
176
|
+
url?: string | null;
|
|
177
|
+
location?: number[] | null;
|
|
178
|
+
geometry?: PolygonModel[] | null;
|
|
179
|
+
isSold?: boolean;
|
|
180
|
+
enableWishlist?: boolean;
|
|
181
|
+
descriptionTitle?: string | null;
|
|
182
|
+
description?: string | null;
|
|
183
|
+
image?: ResourceModel;
|
|
184
|
+
id: string;
|
|
185
|
+
}
|
|
186
|
+
export interface DocumentModel {
|
|
187
|
+
projectPhaseId?: string | null;
|
|
188
|
+
filename?: string | null;
|
|
189
|
+
publicationDate?: string | null;
|
|
190
|
+
title?: string | null;
|
|
191
|
+
contentType?: string | null;
|
|
192
|
+
url?: string | null;
|
|
193
|
+
id: string;
|
|
194
|
+
}
|
|
195
|
+
export interface DynamicFormModel {
|
|
196
|
+
objectName?: string | null;
|
|
197
|
+
mailTo?: string | null;
|
|
198
|
+
fields?: {
|
|
199
|
+
[key: string]: string | null;
|
|
200
|
+
} | null;
|
|
276
201
|
}
|
|
277
202
|
export interface ExtraSpecifications {
|
|
278
203
|
quality?: string | null;
|
|
@@ -300,17 +225,21 @@ export interface ExtraSpecifications {
|
|
|
300
225
|
maintenanceOutside?: string | null;
|
|
301
226
|
vve?: Vve;
|
|
302
227
|
}
|
|
303
|
-
export interface
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
228
|
+
export interface Feature {
|
|
229
|
+
type?: GeoJSONObjectType;
|
|
230
|
+
id?: string | null;
|
|
231
|
+
geometry: IGeometryObject;
|
|
232
|
+
properties: {
|
|
233
|
+
[key: string]: any;
|
|
234
|
+
} | null;
|
|
235
|
+
bbox?: number[] | null;
|
|
236
|
+
crs?: ICRSObject;
|
|
237
|
+
}
|
|
238
|
+
export interface FeatureCollection {
|
|
239
|
+
type?: GeoJSONObjectType;
|
|
240
|
+
features: Feature[];
|
|
241
|
+
bbox?: number[] | null;
|
|
242
|
+
crs?: ICRSObject;
|
|
314
243
|
}
|
|
315
244
|
export interface Floor {
|
|
316
245
|
name?: string | null;
|
|
@@ -323,134 +252,96 @@ export interface Floor {
|
|
|
323
252
|
dbCreateTimestamp?: number | null;
|
|
324
253
|
dbUpdateTimestamp?: number | null;
|
|
325
254
|
}
|
|
326
|
-
export interface
|
|
327
|
-
type?: string | null;
|
|
328
|
-
position?: string | null;
|
|
329
|
-
length?: number | null;
|
|
330
|
-
width?: number | null;
|
|
331
|
-
area?: number | null;
|
|
332
|
-
hasBackEntrance?: boolean | null;
|
|
333
|
-
isMain?: boolean;
|
|
255
|
+
export interface GardenModel {
|
|
334
256
|
id?: string | null;
|
|
335
|
-
dbCreateTimestamp?: number | null;
|
|
336
|
-
dbUpdateTimestamp?: number | null;
|
|
337
|
-
}
|
|
338
|
-
export interface OutsideSpace {
|
|
339
257
|
type?: string | null;
|
|
340
258
|
position?: string | null;
|
|
341
259
|
length?: number | null;
|
|
342
260
|
width?: number | null;
|
|
343
261
|
area?: number | null;
|
|
344
262
|
hasBackEntrance?: boolean | null;
|
|
345
|
-
|
|
346
|
-
dbCreateTimestamp?: number | null;
|
|
347
|
-
dbUpdateTimestamp?: number | null;
|
|
263
|
+
isMain?: boolean;
|
|
348
264
|
}
|
|
349
265
|
export declare type GeoJSONObjectType = 'Point' | 'MultiPoint' | 'LineString' | 'MultiLineString' | 'Polygon' | 'MultiPolygon' | 'GeometryCollection' | 'Feature' | 'FeatureCollection';
|
|
350
|
-
export interface
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
export interface Feature {
|
|
358
|
-
type?: GeoJSONObjectType;
|
|
359
|
-
id?: string | null;
|
|
360
|
-
geometry: IGeometryObject;
|
|
361
|
-
properties: {
|
|
362
|
-
[key: string]: any;
|
|
363
|
-
} | null;
|
|
364
|
-
bbox?: number[] | null;
|
|
365
|
-
crs?: ICRSObject;
|
|
366
|
-
}
|
|
367
|
-
export interface FeatureCollection {
|
|
368
|
-
type?: GeoJSONObjectType;
|
|
369
|
-
features: Feature[];
|
|
370
|
-
bbox?: number[] | null;
|
|
371
|
-
crs?: ICRSObject;
|
|
266
|
+
export interface GrantModel {
|
|
267
|
+
displayOnMap?: boolean;
|
|
268
|
+
projectName?: string | null;
|
|
269
|
+
cityName?: string | null;
|
|
270
|
+
location?: number[] | null;
|
|
271
|
+
status?: GrantStatus;
|
|
272
|
+
id: string;
|
|
372
273
|
}
|
|
373
|
-
export
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
facilitiesRemarks?: string | null;
|
|
385
|
-
situation?: string | null;
|
|
386
|
-
capacity?: number | null;
|
|
387
|
-
id?: string | null;
|
|
388
|
-
dbCreateTimestamp?: number | null;
|
|
389
|
-
dbUpdateTimestamp?: number | null;
|
|
274
|
+
export declare type GrantStatus = 'NotActive' | 'ApplicationGranted';
|
|
275
|
+
export interface GroundLease {
|
|
276
|
+
priceWithCanonDecimal?: number | null;
|
|
277
|
+
canonPercentageYearly?: number | null;
|
|
278
|
+
canonAmountYearlyDecimal?: number | null;
|
|
279
|
+
canonPercentage10Year?: number | null;
|
|
280
|
+
canonAmount10YearDecimal?: number | null;
|
|
281
|
+
canonPercentage25Year?: number | null;
|
|
282
|
+
canonAmount25YearDecimal?: number | null;
|
|
283
|
+
buyOffAmountDecimal?: number | null;
|
|
284
|
+
priceWithBuyOffDecimal?: number | null;
|
|
390
285
|
}
|
|
391
|
-
export
|
|
286
|
+
export declare type HolidayFrequency = 'Once' | 'Monthly' | 'Yearly';
|
|
287
|
+
export interface HouseSelectorModel {
|
|
392
288
|
areaProjectId?: string | null;
|
|
393
289
|
districtId?: string | null;
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
apartmentBuildingId?: string | null;
|
|
399
|
-
identifier?: string | null;
|
|
400
|
-
serviceCostsPerMonth?: number;
|
|
401
|
-
security?: number | null;
|
|
402
|
-
wishlistItemCount?: number;
|
|
403
|
-
numberOfReserveCandidates?: number;
|
|
404
|
-
availabilityStatus?: ConstructionNumberStatus;
|
|
405
|
-
shortDescription?: string | null;
|
|
406
|
-
longDescription?: string | null;
|
|
407
|
-
houseSubType?: string | null;
|
|
408
|
-
deliveryDate?: string | null;
|
|
409
|
-
geometry?: PolygonModel[] | null;
|
|
410
|
-
resources?: ResourceModel[] | null;
|
|
411
|
-
groundLease?: GroundLease;
|
|
412
|
-
mainImage?: ResourceModel;
|
|
413
|
-
specifications?: ConstructionNumberSpecifications;
|
|
414
|
-
salesPrice?: PropertySalesPrice;
|
|
415
|
-
rentalPrice?: PropertyRentalPrice;
|
|
416
|
-
landRegistration?: LandRegistrationDetails;
|
|
417
|
-
extraSpecifications?: ExtraSpecifications;
|
|
418
|
-
floors?: Floor[] | null;
|
|
419
|
-
gardens?: Garden[] | null;
|
|
420
|
-
outsideSpace?: OutsideSpace[] | null;
|
|
421
|
-
outbuildings?: Outbuilding[] | null;
|
|
290
|
+
displayName?: string | null;
|
|
291
|
+
alias?: string | null;
|
|
292
|
+
nodeId?: string | null;
|
|
293
|
+
views?: HouseSelectorView[] | null;
|
|
422
294
|
id: string;
|
|
423
295
|
}
|
|
424
|
-
export interface
|
|
425
|
-
|
|
296
|
+
export interface HouseSelectorObject {
|
|
297
|
+
objectType?: string | null;
|
|
298
|
+
objectId?: string | null;
|
|
299
|
+
point?: Point;
|
|
300
|
+
polygon?: Point[] | null;
|
|
301
|
+
linkToViewId?: string | null;
|
|
302
|
+
label?: string | null;
|
|
303
|
+
url?: string | null;
|
|
304
|
+
iconName?: string | null;
|
|
305
|
+
}
|
|
306
|
+
export interface HouseSelectorView {
|
|
307
|
+
id?: string | null;
|
|
426
308
|
name?: string | null;
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
309
|
+
imageUrl?: string | null;
|
|
310
|
+
imageMediaId?: number;
|
|
311
|
+
objects?: HouseSelectorObject[] | null;
|
|
430
312
|
}
|
|
431
|
-
export interface
|
|
432
|
-
|
|
313
|
+
export interface ICRSObject {
|
|
314
|
+
type?: CRSType;
|
|
433
315
|
}
|
|
434
|
-
export interface
|
|
435
|
-
|
|
436
|
-
data?: string | null;
|
|
437
|
-
pageUrl?: string | null;
|
|
438
|
-
id: string;
|
|
316
|
+
export interface IGeometryObject {
|
|
317
|
+
type?: GeoJSONObjectType;
|
|
439
318
|
}
|
|
440
|
-
export interface
|
|
441
|
-
areaProjectId?: string | null;
|
|
319
|
+
export interface LandRegistrationDetails {
|
|
442
320
|
name?: string | null;
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
321
|
+
proportion?: string | null;
|
|
322
|
+
purchaseOption?: boolean | null;
|
|
323
|
+
dateOfRequest?: string | null;
|
|
324
|
+
durationOfLeaseHold?: string | null;
|
|
325
|
+
isPermanentlyBought?: boolean | null;
|
|
326
|
+
leaseHoldProvider?: string | null;
|
|
327
|
+
leaseHoldPerYear?: number | null;
|
|
328
|
+
cityHall?: string | null;
|
|
329
|
+
municipalityId?: string | null;
|
|
330
|
+
municipalityCode?: string | null;
|
|
331
|
+
number?: string | null;
|
|
332
|
+
scope?: string | null;
|
|
333
|
+
area?: number | null;
|
|
334
|
+
section?: string | null;
|
|
335
|
+
type?: string | null;
|
|
336
|
+
fixedVariable?: string | null;
|
|
337
|
+
propertyTypeType?: string | null;
|
|
338
|
+
propertyType?: string | null;
|
|
339
|
+
plot?: string | null;
|
|
340
|
+
constructionNumberId?: string | null;
|
|
341
|
+
id?: string | null;
|
|
342
|
+
dbCreateTimestamp?: number | null;
|
|
343
|
+
dbUpdateTimestamp?: number | null;
|
|
452
344
|
}
|
|
453
|
-
export declare type Salutation = 'Undefined' | 'Mr' | 'Mrs' | 'Ms';
|
|
454
345
|
export interface LeadFormModel {
|
|
455
346
|
city?: string | null;
|
|
456
347
|
phone?: string | null;
|
|
@@ -476,43 +367,71 @@ export interface LeadFormModel {
|
|
|
476
367
|
houseNumberAddition?: string | null;
|
|
477
368
|
postalCode?: string | null;
|
|
478
369
|
}
|
|
479
|
-
export interface
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
mailTo?: string | null;
|
|
495
|
-
referringUrl?: string | null;
|
|
370
|
+
export interface OpeningHours {
|
|
371
|
+
name?: string | null;
|
|
372
|
+
isActive?: boolean;
|
|
373
|
+
isDefault?: boolean;
|
|
374
|
+
monday?: TimeRange;
|
|
375
|
+
tuesday?: TimeRange;
|
|
376
|
+
wednesday?: TimeRange;
|
|
377
|
+
thursday?: TimeRange;
|
|
378
|
+
friday?: TimeRange;
|
|
379
|
+
saturday?: TimeRange;
|
|
380
|
+
sunday?: TimeRange;
|
|
381
|
+
holidays?: OpeningHoursHoliday[] | null;
|
|
382
|
+
id?: string | null;
|
|
383
|
+
dbCreateTimestamp?: number | null;
|
|
384
|
+
dbUpdateTimestamp?: number | null;
|
|
496
385
|
}
|
|
497
|
-
export interface
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
386
|
+
export interface OpeningHoursHoliday {
|
|
387
|
+
name?: string | null;
|
|
388
|
+
startDate?: string;
|
|
389
|
+
endDate?: string | null;
|
|
390
|
+
openingHours?: TimeRange;
|
|
391
|
+
frequency?: HolidayFrequency;
|
|
392
|
+
}
|
|
393
|
+
export interface Outbuilding {
|
|
394
|
+
typeCode?: string | null;
|
|
395
|
+
name?: string | null;
|
|
396
|
+
geometry?: FeatureCollection;
|
|
397
|
+
type?: string | null;
|
|
398
|
+
outbuildingType?: string | null;
|
|
399
|
+
length?: number | null;
|
|
400
|
+
width?: number | null;
|
|
401
|
+
area?: number | null;
|
|
402
|
+
isolation?: string[] | null;
|
|
403
|
+
facilities?: string[] | null;
|
|
404
|
+
facilitiesRemarks?: string | null;
|
|
405
|
+
situation?: string | null;
|
|
406
|
+
capacity?: number | null;
|
|
407
|
+
id?: string | null;
|
|
408
|
+
dbCreateTimestamp?: number | null;
|
|
409
|
+
dbUpdateTimestamp?: number | null;
|
|
410
|
+
}
|
|
411
|
+
export interface OutsideSpaceModel {
|
|
412
|
+
id?: string | null;
|
|
413
|
+
type?: string | null;
|
|
414
|
+
position?: string | null;
|
|
415
|
+
length?: number | null;
|
|
416
|
+
width?: number | null;
|
|
417
|
+
area?: number | null;
|
|
418
|
+
hasBackEntrance?: boolean | null;
|
|
419
|
+
}
|
|
420
|
+
export interface Point {
|
|
421
|
+
x?: number;
|
|
422
|
+
y?: number;
|
|
503
423
|
}
|
|
504
|
-
export interface
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
documentName?: string | null;
|
|
424
|
+
export interface PolygonModel {
|
|
425
|
+
coordinates?: number[][] | null;
|
|
426
|
+
}
|
|
427
|
+
export declare type PriceCondition = 'VrijOpNaam' | 'KostenKoper';
|
|
428
|
+
export declare type PriceType = 'ExactSum' | 'AskingPrice' | 'StartsFrom' | 'Indication' | 'Circa' | 'PriceOnRequest';
|
|
429
|
+
export interface ProblemDetails {
|
|
430
|
+
type?: string | null;
|
|
431
|
+
title?: string | null;
|
|
432
|
+
status?: number | null;
|
|
433
|
+
detail?: string | null;
|
|
434
|
+
instance?: string | null;
|
|
516
435
|
}
|
|
517
436
|
export interface ProjectModel {
|
|
518
437
|
id?: string | null;
|
|
@@ -527,73 +446,6 @@ export interface ProjectModel {
|
|
|
527
446
|
gwnProjectVersion?: string | null;
|
|
528
447
|
isAdmin?: boolean;
|
|
529
448
|
}
|
|
530
|
-
export interface SerializedFeature {
|
|
531
|
-
featureId?: string | null;
|
|
532
|
-
featureJson?: string | null;
|
|
533
|
-
}
|
|
534
|
-
export interface SerializedObjectFeatures {
|
|
535
|
-
objectId?: string | null;
|
|
536
|
-
features?: SerializedFeature[] | null;
|
|
537
|
-
}
|
|
538
|
-
export interface SerializedFeatures {
|
|
539
|
-
objectFeatures?: SerializedObjectFeatures[] | null;
|
|
540
|
-
}
|
|
541
|
-
export declare type GrantStatus = 'NotActive' | 'ApplicationGranted';
|
|
542
|
-
export interface GrantModel {
|
|
543
|
-
displayOnMap?: boolean;
|
|
544
|
-
projectName?: string | null;
|
|
545
|
-
cityName?: string | null;
|
|
546
|
-
location?: number[] | null;
|
|
547
|
-
status?: GrantStatus;
|
|
548
|
-
id: string;
|
|
549
|
-
}
|
|
550
|
-
export interface Point {
|
|
551
|
-
x?: number;
|
|
552
|
-
y?: number;
|
|
553
|
-
}
|
|
554
|
-
export interface HouseSelectorObject {
|
|
555
|
-
objectType?: string | null;
|
|
556
|
-
objectId?: string | null;
|
|
557
|
-
point?: Point;
|
|
558
|
-
polygon?: Point[] | null;
|
|
559
|
-
linkToViewId?: string | null;
|
|
560
|
-
label?: string | null;
|
|
561
|
-
iconName?: string | null;
|
|
562
|
-
}
|
|
563
|
-
export interface HouseSelectorView {
|
|
564
|
-
id?: string | null;
|
|
565
|
-
name?: string | null;
|
|
566
|
-
imageUrl?: string | null;
|
|
567
|
-
imageMediaId?: number;
|
|
568
|
-
objects?: HouseSelectorObject[] | null;
|
|
569
|
-
}
|
|
570
|
-
export interface HouseSelectorModel {
|
|
571
|
-
areaProjectId?: string | null;
|
|
572
|
-
districtId?: string | null;
|
|
573
|
-
displayName?: string | null;
|
|
574
|
-
alias?: string | null;
|
|
575
|
-
nodeId?: string | null;
|
|
576
|
-
views?: HouseSelectorView[] | null;
|
|
577
|
-
id: string;
|
|
578
|
-
}
|
|
579
|
-
export interface UpdateHouseSelectorBaseModel {
|
|
580
|
-
districtId?: string | null;
|
|
581
|
-
displayName?: string | null;
|
|
582
|
-
description?: string | null;
|
|
583
|
-
alias?: string | null;
|
|
584
|
-
}
|
|
585
|
-
export interface UpdateHouseSelectorViewsModel {
|
|
586
|
-
views?: HouseSelectorView[] | null;
|
|
587
|
-
}
|
|
588
|
-
export declare type ProjectPhaseStatus = 'InPreparation' | 'OnSale' | 'Sold' | 'ForRent' | 'Rented' | 'NotActive';
|
|
589
|
-
export interface PropertySpecifications {
|
|
590
|
-
rooms?: DecimalRange;
|
|
591
|
-
bedrooms?: DecimalRange;
|
|
592
|
-
livingArea?: DecimalRange;
|
|
593
|
-
livingRoomArea?: DecimalRange;
|
|
594
|
-
plotArea?: DecimalRange;
|
|
595
|
-
volume?: DecimalRange;
|
|
596
|
-
}
|
|
597
449
|
export interface ProjectPhaseModel {
|
|
598
450
|
areaProjectId?: string | null;
|
|
599
451
|
areaProjectName?: string | null;
|
|
@@ -628,6 +480,30 @@ export interface ProjectPhaseModel {
|
|
|
628
480
|
houseTypes?: string[] | null;
|
|
629
481
|
id: string;
|
|
630
482
|
}
|
|
483
|
+
export declare type ProjectPhaseStatus = 'InPreparation' | 'OnSale' | 'Sold' | 'ForRent' | 'Rented' | 'NotActive';
|
|
484
|
+
export interface PropertyRentalPrice {
|
|
485
|
+
deposit?: number | null;
|
|
486
|
+
amount?: DecimalRange;
|
|
487
|
+
priceType?: PriceType;
|
|
488
|
+
priceTypeFunda?: string | null;
|
|
489
|
+
monthlyServiceCosts?: number | null;
|
|
490
|
+
}
|
|
491
|
+
export interface PropertySalesPrice {
|
|
492
|
+
condition?: PriceCondition;
|
|
493
|
+
saleSpecification?: SaleSpecification;
|
|
494
|
+
amount?: DecimalRange;
|
|
495
|
+
priceType?: PriceType;
|
|
496
|
+
priceTypeFunda?: string | null;
|
|
497
|
+
monthlyServiceCosts?: number | null;
|
|
498
|
+
}
|
|
499
|
+
export interface PropertySpecifications {
|
|
500
|
+
rooms?: DecimalRange;
|
|
501
|
+
bedrooms?: DecimalRange;
|
|
502
|
+
livingArea?: DecimalRange;
|
|
503
|
+
livingRoomArea?: DecimalRange;
|
|
504
|
+
plotArea?: DecimalRange;
|
|
505
|
+
volume?: DecimalRange;
|
|
506
|
+
}
|
|
631
507
|
export interface PropertyTypeModel {
|
|
632
508
|
areaProjectId?: string | null;
|
|
633
509
|
districtId?: string | null;
|
|
@@ -655,9 +531,11 @@ export interface PropertyTypeModel {
|
|
|
655
531
|
rentalPrice?: PropertyRentalPrice;
|
|
656
532
|
canShowPrice?: boolean;
|
|
657
533
|
extraSpecifications?: ExtraSpecifications;
|
|
534
|
+
numberOfFloors?: number | null;
|
|
535
|
+
mainFloorNumber?: string | null;
|
|
658
536
|
floors?: Floor[] | null;
|
|
659
|
-
gardens?:
|
|
660
|
-
outsideSpace?:
|
|
537
|
+
gardens?: GardenModel[] | null;
|
|
538
|
+
outsideSpace?: OutsideSpaceModel[] | null;
|
|
661
539
|
outbuildings?: Outbuilding[] | null;
|
|
662
540
|
usp1Title?: string | null;
|
|
663
541
|
usp1Text?: string | null;
|
|
@@ -676,258 +554,396 @@ export interface RegionModel {
|
|
|
676
554
|
name?: string | null;
|
|
677
555
|
id: string;
|
|
678
556
|
}
|
|
557
|
+
export interface ResourceModel {
|
|
558
|
+
title?: string | null;
|
|
559
|
+
url?: string | null;
|
|
560
|
+
resourceType?: string | null;
|
|
561
|
+
contentType?: string | null;
|
|
562
|
+
mediaNodeId?: string | null;
|
|
563
|
+
lastUpdatedUtc?: string;
|
|
564
|
+
metadata?: {
|
|
565
|
+
[key: string]: string | null;
|
|
566
|
+
} | null;
|
|
567
|
+
}
|
|
568
|
+
export interface ResourceReference {
|
|
569
|
+
ownerId?: string | null;
|
|
570
|
+
ownerType?: string | null;
|
|
571
|
+
isMainResource?: boolean | null;
|
|
572
|
+
}
|
|
573
|
+
export interface Room {
|
|
574
|
+
name?: string | null;
|
|
575
|
+
type?: string | null;
|
|
576
|
+
hasStairs?: boolean | null;
|
|
577
|
+
length?: number | null;
|
|
578
|
+
width?: number | null;
|
|
579
|
+
height?: number | null;
|
|
580
|
+
area?: number | null;
|
|
581
|
+
volume?: number | null;
|
|
582
|
+
renewedIn?: string | null;
|
|
583
|
+
facilities?: string[] | null;
|
|
584
|
+
}
|
|
585
|
+
export declare type SaleSpecification = 'ExclusiefBouwrente' | 'BtwBelast' | 'InclusiefBtw';
|
|
586
|
+
export declare type Salutation = 'Undefined' | 'Mr' | 'Mrs' | 'Ms';
|
|
587
|
+
export interface SeoText {
|
|
588
|
+
saleTitle?: string | null;
|
|
589
|
+
saleText?: string | null;
|
|
590
|
+
rentalTitle?: string | null;
|
|
591
|
+
rentalText?: string | null;
|
|
592
|
+
}
|
|
593
|
+
export interface SerializedFeature {
|
|
594
|
+
featureId?: string | null;
|
|
595
|
+
featureJson?: string | null;
|
|
596
|
+
}
|
|
597
|
+
export interface SerializedFeatures {
|
|
598
|
+
objectFeatures?: SerializedObjectFeatures[] | null;
|
|
599
|
+
}
|
|
600
|
+
export interface SerializedObjectFeatures {
|
|
601
|
+
objectId?: string | null;
|
|
602
|
+
features?: SerializedFeature[] | null;
|
|
603
|
+
}
|
|
604
|
+
export interface Time {
|
|
605
|
+
hour?: number;
|
|
606
|
+
minute?: number;
|
|
607
|
+
}
|
|
608
|
+
export interface TimeRange {
|
|
609
|
+
from?: Time;
|
|
610
|
+
to?: Time;
|
|
611
|
+
}
|
|
612
|
+
export interface UpdateApartmentBuildingModel {
|
|
613
|
+
districtId?: string | null;
|
|
614
|
+
alias?: string | null;
|
|
615
|
+
displayName?: string | null;
|
|
616
|
+
description?: string | null;
|
|
617
|
+
propertyTypeIds?: string[] | null;
|
|
618
|
+
sortIndex?: number;
|
|
619
|
+
views?: ApartmentBuildingView[] | null;
|
|
620
|
+
image?: UpdateResourceModel;
|
|
621
|
+
}
|
|
622
|
+
export interface UpdateHouseSelectorBaseModel {
|
|
623
|
+
districtId?: string | null;
|
|
624
|
+
displayName?: string | null;
|
|
625
|
+
description?: string | null;
|
|
626
|
+
alias?: string | null;
|
|
627
|
+
}
|
|
628
|
+
export interface UpdateHouseSelectorViewsModel {
|
|
629
|
+
views?: HouseSelectorView[] | null;
|
|
630
|
+
}
|
|
631
|
+
export interface UpdateResourceModel {
|
|
632
|
+
title?: string | null;
|
|
633
|
+
url?: string | null;
|
|
634
|
+
resourceType?: string | null;
|
|
635
|
+
contentType?: string | null;
|
|
636
|
+
sortIndex?: number;
|
|
637
|
+
references?: ResourceReference[] | null;
|
|
638
|
+
metadata?: {
|
|
639
|
+
[key: string]: string | null;
|
|
640
|
+
} | null;
|
|
641
|
+
}
|
|
642
|
+
export interface Vve {
|
|
643
|
+
vveContribution?: number | null;
|
|
644
|
+
hasMaintenanceForecast?: boolean | null;
|
|
645
|
+
hasPeriodicContribution?: boolean | null;
|
|
646
|
+
isRegisteredInKvK?: boolean | null;
|
|
647
|
+
hasHomeInsurance?: boolean | null;
|
|
648
|
+
hasReserveFunds?: boolean | null;
|
|
649
|
+
hasMeetings?: boolean | null;
|
|
650
|
+
}
|
|
651
|
+
export declare type WebchatType = 'None' | 'UnifiedCommunications' | 'Salesforce';
|
|
652
|
+
export interface WebsiteContactModel {
|
|
653
|
+
enableWebchat?: boolean;
|
|
654
|
+
webchatType?: WebchatType;
|
|
655
|
+
webchatServer?: string | null;
|
|
656
|
+
webchatUcc?: string | null;
|
|
657
|
+
webchatChannelMenuName?: string | null;
|
|
658
|
+
phoneNumber?: string | null;
|
|
659
|
+
emailAddress?: string | null;
|
|
660
|
+
facebookUrl?: string | null;
|
|
661
|
+
pinterestUrl?: string | null;
|
|
662
|
+
twitterUrl?: string | null;
|
|
663
|
+
caseViaEmail?: boolean;
|
|
664
|
+
openingHours?: OpeningHours;
|
|
665
|
+
}
|
|
666
|
+
export interface WebsiteModel {
|
|
667
|
+
mapboxTilesetId?: string | null;
|
|
668
|
+
mapboxDatasetId?: string | null;
|
|
669
|
+
url?: string | null;
|
|
670
|
+
enableCustomerCommunity?: boolean;
|
|
671
|
+
enableFavourites?: boolean;
|
|
672
|
+
enableMortgageCalculator?: boolean;
|
|
673
|
+
secondLevelNavigationLabelSingular?: string | null;
|
|
674
|
+
secondLevelNavigationLabelPlural?: string | null;
|
|
675
|
+
skinName?: string | null;
|
|
676
|
+
contactDetails?: WebsiteContactModel;
|
|
677
|
+
showOnCorporateSite?: boolean;
|
|
678
|
+
channelMenuId?: string | null;
|
|
679
|
+
isMyEnvironment2022Enabled?: boolean;
|
|
680
|
+
}
|
|
679
681
|
export interface ActivationEngineGetProfileQueryParams {
|
|
680
|
-
areaId?: string
|
|
681
|
-
projectId?: string
|
|
682
|
+
areaId?: string;
|
|
683
|
+
projectId?: string;
|
|
682
684
|
}
|
|
683
685
|
export interface ApartmentBuildingQueryQueryParams {
|
|
684
|
-
AreaProjectId?: string
|
|
685
|
-
ProjectPhaseId?: string
|
|
686
|
-
include?: string
|
|
687
|
-
lang?: string
|
|
686
|
+
AreaProjectId?: string;
|
|
687
|
+
ProjectPhaseId?: string;
|
|
688
|
+
include?: string;
|
|
689
|
+
lang?: string;
|
|
688
690
|
}
|
|
689
691
|
export interface ApartmentBuildingUpdateApartmentBuildingQueryParams {
|
|
690
|
-
origin?: string
|
|
692
|
+
origin?: string;
|
|
691
693
|
}
|
|
692
694
|
export interface ApartmentBuildingDeleteApartmentBuildingQueryParams {
|
|
693
|
-
origin?: string
|
|
695
|
+
origin?: string;
|
|
694
696
|
}
|
|
695
697
|
export interface ApartmentBuildingGetByExternalIdQueryParams {
|
|
696
|
-
include?: string
|
|
697
|
-
lang?: string
|
|
698
|
+
include?: string;
|
|
699
|
+
lang?: string;
|
|
698
700
|
}
|
|
699
701
|
export interface AreaProjectGetByIdQueryParams {
|
|
700
|
-
include?: string
|
|
701
|
-
lang?: string
|
|
702
|
+
include?: string;
|
|
703
|
+
lang?: string;
|
|
702
704
|
}
|
|
703
705
|
export interface AreaProjectQueryQueryParams {
|
|
704
|
-
CountryIsoCode?: string
|
|
705
|
-
HasLocationData?: boolean
|
|
706
|
-
CorporateSite?: boolean
|
|
707
|
-
include?: string
|
|
708
|
-
lang?: string
|
|
706
|
+
CountryIsoCode?: string;
|
|
707
|
+
HasLocationData?: boolean;
|
|
708
|
+
CorporateSite?: boolean;
|
|
709
|
+
include?: string;
|
|
710
|
+
lang?: string;
|
|
709
711
|
}
|
|
710
712
|
export interface CityGetByNameQueryParams {
|
|
711
|
-
include?: string
|
|
712
|
-
lang?: string
|
|
713
|
+
include?: string;
|
|
714
|
+
lang?: string;
|
|
713
715
|
}
|
|
714
716
|
export interface CityGetByIdQueryParams {
|
|
715
|
-
include?: string
|
|
716
|
-
lang?: string
|
|
717
|
+
include?: string;
|
|
718
|
+
lang?: string;
|
|
717
719
|
}
|
|
718
720
|
export interface CityQueryQueryParams {
|
|
719
|
-
CountryIsoCode?: string
|
|
720
|
-
include?: string
|
|
721
|
-
lang?: string
|
|
721
|
+
CountryIsoCode?: string;
|
|
722
|
+
include?: string;
|
|
723
|
+
lang?: string;
|
|
722
724
|
}
|
|
723
725
|
export interface ConstructionNumberGetByIdQueryParams {
|
|
724
|
-
include?: string
|
|
725
|
-
lang?: string
|
|
726
|
+
include?: string;
|
|
727
|
+
lang?: string;
|
|
726
728
|
}
|
|
727
729
|
export interface ConstructionNumberQueryQueryParams {
|
|
728
|
-
AreaProjectId?: string
|
|
729
|
-
DistrictId?: string
|
|
730
|
-
ProjectPhaseId?: string
|
|
731
|
-
PropertyTypeId?: string
|
|
732
|
-
MinPrice?: number
|
|
733
|
-
MaxPrice?: number
|
|
734
|
-
IncludeInactive?: boolean
|
|
735
|
-
include?: string
|
|
736
|
-
lang?: string
|
|
730
|
+
AreaProjectId?: string;
|
|
731
|
+
DistrictId?: string;
|
|
732
|
+
ProjectPhaseId?: string;
|
|
733
|
+
PropertyTypeId?: string;
|
|
734
|
+
MinPrice?: number;
|
|
735
|
+
MaxPrice?: number;
|
|
736
|
+
IncludeInactive?: boolean;
|
|
737
|
+
include?: string;
|
|
738
|
+
lang?: string;
|
|
737
739
|
}
|
|
738
740
|
export interface CountryGetByIsoCodeQueryParams {
|
|
739
|
-
include?: string
|
|
740
|
-
lang?: string
|
|
741
|
+
include?: string;
|
|
742
|
+
lang?: string;
|
|
741
743
|
}
|
|
742
744
|
export interface CountryGetByIdQueryParams {
|
|
743
|
-
include?: string
|
|
744
|
-
lang?: string
|
|
745
|
+
include?: string;
|
|
746
|
+
lang?: string;
|
|
745
747
|
}
|
|
746
748
|
export interface CountryQueryQueryParams {
|
|
747
749
|
query?: CountryQuery;
|
|
748
|
-
include?: string
|
|
749
|
-
lang?: string
|
|
750
|
+
include?: string;
|
|
751
|
+
lang?: string;
|
|
750
752
|
}
|
|
751
753
|
export interface DistrictGetByIdQueryParams {
|
|
752
|
-
include?: string
|
|
753
|
-
lang?: string
|
|
754
|
+
include?: string;
|
|
755
|
+
lang?: string;
|
|
754
756
|
}
|
|
755
757
|
export interface DistrictQueryQueryParams {
|
|
756
|
-
AreaProjectId?: string
|
|
757
|
-
include?: string
|
|
758
|
-
lang?: string
|
|
758
|
+
AreaProjectId?: string;
|
|
759
|
+
include?: string;
|
|
760
|
+
lang?: string;
|
|
761
|
+
}
|
|
762
|
+
export interface DocumentQueryQueryParams {
|
|
763
|
+
ProjectPhaseId?: string;
|
|
764
|
+
include?: string;
|
|
765
|
+
lang?: string;
|
|
766
|
+
}
|
|
767
|
+
export interface DocumentGetByIdQueryParams {
|
|
768
|
+
include?: string;
|
|
769
|
+
lang?: string;
|
|
759
770
|
}
|
|
760
771
|
export interface FundaQueryQueryParams {
|
|
761
|
-
regionId?: string
|
|
762
|
-
query?: string
|
|
763
|
-
userType?: string
|
|
772
|
+
regionId?: string;
|
|
773
|
+
query?: string;
|
|
774
|
+
userType?: string;
|
|
764
775
|
isAdmin?: boolean;
|
|
765
|
-
allowedRegionIds?: string
|
|
776
|
+
allowedRegionIds?: string;
|
|
766
777
|
}
|
|
767
778
|
export interface FundaGetQueryParams {
|
|
768
|
-
id?: string
|
|
779
|
+
id?: string;
|
|
769
780
|
isAdmin?: boolean;
|
|
770
|
-
userType?: string
|
|
781
|
+
userType?: string;
|
|
771
782
|
}
|
|
772
783
|
export interface FundaSubmitQueryParams {
|
|
773
|
-
id?: string
|
|
784
|
+
id?: string;
|
|
774
785
|
incrementVersion?: boolean;
|
|
775
786
|
}
|
|
776
787
|
export interface FundaSubmitRouteQueryParams {
|
|
777
788
|
incrementVersion?: boolean;
|
|
778
789
|
}
|
|
779
790
|
export interface FundaValidateQueryParams {
|
|
780
|
-
id?: string
|
|
791
|
+
id?: string;
|
|
781
792
|
}
|
|
782
793
|
export interface FundaShowLastSubmittedProjectQueryParams {
|
|
783
|
-
projectCrmId?: string
|
|
794
|
+
projectCrmId?: string;
|
|
784
795
|
}
|
|
785
796
|
export interface FundaShowConvertedFundaObjectQueryParams {
|
|
786
|
-
projectCrmId?: string
|
|
797
|
+
projectCrmId?: string;
|
|
787
798
|
}
|
|
788
799
|
export interface FundaCompareFundaObjectRevisionChangesQueryParams {
|
|
789
|
-
projectCrmId?: string
|
|
800
|
+
projectCrmId?: string;
|
|
790
801
|
gwnId?: number;
|
|
791
802
|
}
|
|
792
803
|
export interface FundaShowFundaProjectLogsQueryParams {
|
|
793
|
-
projectCrmId?: string
|
|
804
|
+
projectCrmId?: string;
|
|
794
805
|
}
|
|
795
806
|
export interface FundaGetAllGwnVersionsByProjectIdQueryParams {
|
|
796
|
-
projectCrmId?: string
|
|
807
|
+
projectCrmId?: string;
|
|
797
808
|
}
|
|
798
809
|
export interface FundaRemoveVersionFromGwnQueryParams {
|
|
799
|
-
projectId?: string
|
|
810
|
+
projectId?: string;
|
|
800
811
|
projectFundaId?: number;
|
|
801
|
-
projectCode?: string
|
|
802
|
-
nvmId?: string
|
|
812
|
+
projectCode?: string;
|
|
813
|
+
nvmId?: string;
|
|
803
814
|
}
|
|
804
815
|
export interface GrantGetByIdQueryParams {
|
|
805
|
-
include?: string
|
|
806
|
-
lang?: string
|
|
816
|
+
include?: string;
|
|
817
|
+
lang?: string;
|
|
807
818
|
}
|
|
808
819
|
export interface GrantQueryQueryParams {
|
|
809
|
-
ProjectName?: string
|
|
810
|
-
include?: string
|
|
811
|
-
lang?: string
|
|
820
|
+
ProjectName?: string;
|
|
821
|
+
include?: string;
|
|
822
|
+
lang?: string;
|
|
812
823
|
}
|
|
813
824
|
export interface HouseSelectorQueryQueryParams {
|
|
814
|
-
AreaProjectId?: string
|
|
815
|
-
DistrictId?: string
|
|
816
|
-
include?: string
|
|
817
|
-
lang?: string
|
|
825
|
+
AreaProjectId?: string;
|
|
826
|
+
DistrictId?: string;
|
|
827
|
+
include?: string;
|
|
828
|
+
lang?: string;
|
|
829
|
+
}
|
|
830
|
+
export interface HouseSelectorDeleteHouseSelectorQueryParams {
|
|
831
|
+
deleteDraft?: boolean;
|
|
818
832
|
}
|
|
819
833
|
export interface HouseSelectorGetByExternalIdQueryParams {
|
|
820
|
-
include?: string
|
|
821
|
-
lang?: string
|
|
834
|
+
include?: string;
|
|
835
|
+
lang?: string;
|
|
822
836
|
}
|
|
823
837
|
export interface HouseSelectorGetDraftByExternalIdQueryParams {
|
|
824
|
-
lang?: string
|
|
838
|
+
lang?: string;
|
|
825
839
|
}
|
|
826
840
|
export interface ProjectPhaseGetByIdQueryParams {
|
|
827
|
-
include?: string
|
|
828
|
-
lang?: string
|
|
841
|
+
include?: string;
|
|
842
|
+
lang?: string;
|
|
829
843
|
}
|
|
830
844
|
export interface ProjectPhaseQueryQueryParams {
|
|
831
|
-
CountryIsoCode?: string
|
|
832
|
-
AreaProjectId?: string
|
|
833
|
-
IncludeInactive?: boolean
|
|
834
|
-
include?: string
|
|
835
|
-
lang?: string
|
|
845
|
+
CountryIsoCode?: string;
|
|
846
|
+
AreaProjectId?: string;
|
|
847
|
+
IncludeInactive?: boolean;
|
|
848
|
+
include?: string;
|
|
849
|
+
lang?: string;
|
|
836
850
|
}
|
|
837
851
|
export interface PropertyTypeGetByIdQueryParams {
|
|
838
|
-
include?: string
|
|
839
|
-
lang?: string
|
|
852
|
+
include?: string;
|
|
853
|
+
lang?: string;
|
|
840
854
|
}
|
|
841
855
|
export interface PropertyTypeQueryQueryParams {
|
|
842
|
-
AreaProjectId?: string
|
|
843
|
-
DistrictId?: string
|
|
844
|
-
ProjectPhaseId?: string
|
|
845
|
-
IncludeInactive?: boolean
|
|
846
|
-
include?: string
|
|
847
|
-
lang?: string
|
|
856
|
+
AreaProjectId?: string;
|
|
857
|
+
DistrictId?: string;
|
|
858
|
+
ProjectPhaseId?: string;
|
|
859
|
+
IncludeInactive?: boolean;
|
|
860
|
+
include?: string;
|
|
861
|
+
lang?: string;
|
|
848
862
|
}
|
|
849
863
|
export interface ProvinceGetByNameQueryParams {
|
|
850
|
-
include?: string
|
|
851
|
-
lang?: string
|
|
864
|
+
include?: string;
|
|
865
|
+
lang?: string;
|
|
852
866
|
}
|
|
853
867
|
export interface ProvinceGetByIdQueryParams {
|
|
854
|
-
include?: string
|
|
855
|
-
lang?: string
|
|
868
|
+
include?: string;
|
|
869
|
+
lang?: string;
|
|
856
870
|
}
|
|
857
871
|
export interface ProvinceQueryQueryParams {
|
|
858
|
-
CountryIsoCode?: string
|
|
859
|
-
include?: string
|
|
860
|
-
lang?: string
|
|
872
|
+
CountryIsoCode?: string;
|
|
873
|
+
include?: string;
|
|
874
|
+
lang?: string;
|
|
861
875
|
}
|
|
862
876
|
export interface RedirectAreaNewsletterHeaderRedirectQueryParams {
|
|
863
|
-
width?: string
|
|
864
|
-
height?: string
|
|
865
|
-
mode?: string
|
|
866
|
-
quality?: string
|
|
877
|
+
width?: string;
|
|
878
|
+
height?: string;
|
|
879
|
+
mode?: string;
|
|
880
|
+
quality?: string;
|
|
867
881
|
}
|
|
868
882
|
export interface RedirectAreaLogoRedirectQueryParams {
|
|
869
|
-
width?: string
|
|
870
|
-
height?: string
|
|
871
|
-
mode?: string
|
|
872
|
-
quality?: string
|
|
883
|
+
width?: string;
|
|
884
|
+
height?: string;
|
|
885
|
+
mode?: string;
|
|
886
|
+
quality?: string;
|
|
873
887
|
}
|
|
874
888
|
export interface RedirectProjectNewsletterHeaderRedirectQueryParams {
|
|
875
|
-
width?: string
|
|
876
|
-
height?: string
|
|
877
|
-
mode?: string
|
|
878
|
-
quality?: string
|
|
889
|
+
width?: string;
|
|
890
|
+
height?: string;
|
|
891
|
+
mode?: string;
|
|
892
|
+
quality?: string;
|
|
879
893
|
}
|
|
880
894
|
export interface RedirectProjectImageRedirectQueryParams {
|
|
881
|
-
width?: string
|
|
882
|
-
height?: string
|
|
883
|
-
mode?: string
|
|
884
|
-
quality?: string
|
|
895
|
+
width?: string;
|
|
896
|
+
height?: string;
|
|
897
|
+
mode?: string;
|
|
898
|
+
quality?: string;
|
|
885
899
|
}
|
|
886
900
|
export interface RedirectPropertyTypeImageRedirectQueryParams {
|
|
887
|
-
width?: string
|
|
888
|
-
height?: string
|
|
889
|
-
mode?: string
|
|
890
|
-
quality?: string
|
|
901
|
+
width?: string;
|
|
902
|
+
height?: string;
|
|
903
|
+
mode?: string;
|
|
904
|
+
quality?: string;
|
|
891
905
|
}
|
|
892
906
|
export interface RedirectConstructionNumberImageRedirectQueryParams {
|
|
893
|
-
width?: string
|
|
894
|
-
height?: string
|
|
895
|
-
mode?: string
|
|
896
|
-
quality?: string
|
|
907
|
+
width?: string;
|
|
908
|
+
height?: string;
|
|
909
|
+
mode?: string;
|
|
910
|
+
quality?: string;
|
|
897
911
|
}
|
|
898
912
|
export interface RegionGetByIdQueryParams {
|
|
899
|
-
include?: string
|
|
900
|
-
lang?: string
|
|
913
|
+
include?: string;
|
|
914
|
+
lang?: string;
|
|
901
915
|
}
|
|
902
916
|
export interface RegionQueryQueryParams {
|
|
903
|
-
AllowedRegionIds?: string
|
|
904
|
-
include?: string
|
|
905
|
-
lang?: string
|
|
917
|
+
AllowedRegionIds?: string;
|
|
918
|
+
include?: string;
|
|
919
|
+
lang?: string;
|
|
906
920
|
}
|
|
907
921
|
export interface ResourceUpdateResourceQueryParams {
|
|
908
|
-
projectId?: string
|
|
922
|
+
projectId?: string;
|
|
909
923
|
}
|
|
910
924
|
export interface ResourceDeleteResourceQueryParams {
|
|
911
|
-
projectId?: string
|
|
925
|
+
projectId?: string;
|
|
912
926
|
}
|
|
913
|
-
export declare const activationEngineGetProfile: (clientId: string
|
|
927
|
+
export declare const activationEngineGetProfile: (clientId: string, params?: ActivationEngineGetProfileQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ActivationEngineModel>;
|
|
914
928
|
export declare const apartmentBuildingQuery: (params?: ApartmentBuildingQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ApartmentBuildingModel[]>;
|
|
915
|
-
export declare const apartmentBuildingUpdateApartmentBuilding: (nodeId: string
|
|
916
|
-
export declare const apartmentBuildingDeleteApartmentBuilding: (nodeId: string
|
|
917
|
-
export declare const apartmentBuildingGetByExternalId: (nodeId: string
|
|
918
|
-
export declare const areaProjectGetById: (id: string
|
|
929
|
+
export declare const apartmentBuildingUpdateApartmentBuilding: (nodeId: string, body: UpdateApartmentBuildingModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
930
|
+
export declare const apartmentBuildingDeleteApartmentBuilding: (nodeId: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
931
|
+
export declare const apartmentBuildingGetByExternalId: (nodeId: string, params?: ApartmentBuildingGetByExternalIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ApartmentBuildingModel>;
|
|
932
|
+
export declare const areaProjectGetById: (id: string, params?: AreaProjectGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<AreaProjectModel>;
|
|
919
933
|
export declare const areaProjectQuery: (params?: AreaProjectQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<AreaProjectModel[]>;
|
|
920
|
-
export declare const cityGetByName: (name: string
|
|
921
|
-
export declare const cityGetById: (id: string
|
|
934
|
+
export declare const cityGetByName: (name: string, params?: CityGetByNameQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CityModel>;
|
|
935
|
+
export declare const cityGetById: (id: string, params?: CityGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CityModel>;
|
|
922
936
|
export declare const cityQuery: (params?: CityQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CityModel[]>;
|
|
923
|
-
export declare const constructionNumberGetById: (id: string
|
|
937
|
+
export declare const constructionNumberGetById: (id: string, params?: ConstructionNumberGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ConstructionNumberModel>;
|
|
924
938
|
export declare const constructionNumberQuery: (params?: ConstructionNumberQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ConstructionNumberModel[]>;
|
|
925
|
-
export declare const countryGetByIsoCode: (isoCode: string
|
|
926
|
-
export declare const countryGetById: (id: string
|
|
939
|
+
export declare const countryGetByIsoCode: (isoCode: string, params?: CountryGetByIsoCodeQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CountryModel>;
|
|
940
|
+
export declare const countryGetById: (id: string, params?: CountryGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CountryModel>;
|
|
927
941
|
export declare const countryQuery: (params?: CountryQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CountryModel[]>;
|
|
928
|
-
export declare const digitalBrochureGetById: (id: string
|
|
929
|
-
export declare const districtGetById: (id: string
|
|
942
|
+
export declare const digitalBrochureGetById: (id: string, params?: any, config?: RequestConfig | undefined) => Promise<DigitalBrochureModel>;
|
|
943
|
+
export declare const districtGetById: (id: string, params?: DistrictGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DistrictModel>;
|
|
930
944
|
export declare const districtQuery: (params?: DistrictQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DistrictModel[]>;
|
|
945
|
+
export declare const documentQuery: (params?: DocumentQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DocumentModel[]>;
|
|
946
|
+
export declare const documentGetById: (id: string, params?: DocumentGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DocumentModel>;
|
|
931
947
|
export declare const formLead: (body: LeadFormModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
932
948
|
export declare const formCase: (body: CaseFormModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
933
949
|
export declare const formDynamic: (body: DynamicFormModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
@@ -935,7 +951,7 @@ export declare const formDigitalBrochure: (body: DigitalBrochureRequestModel, co
|
|
|
935
951
|
export declare const fundaQuery: (params?: FundaQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProjectModel[]>;
|
|
936
952
|
export declare const fundaGet: (params?: FundaGetQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
937
953
|
export declare const fundaSubmit: (body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
938
|
-
export declare const fundaSubmitRoute: (id: string
|
|
954
|
+
export declare const fundaSubmitRoute: (id: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
939
955
|
export declare const fundaRunTransactionCheck: (params?: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
940
956
|
export declare const fundaValidate: (body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
941
957
|
export declare const fundaShowLastSubmittedProject: (params?: FundaShowLastSubmittedProjectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
@@ -946,33 +962,33 @@ export declare const fundaExecuteFundaPublisher: (params?: any, config?: Request
|
|
|
946
962
|
export declare const fundaGetAllGwnVersionsByProjectId: (params?: FundaGetAllGwnVersionsByProjectIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
947
963
|
export declare const fundaRemoveVersionFromGwn: (params?: FundaRemoveVersionFromGwnQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
948
964
|
export declare const fundaGetActiveBrokersInGateway: (params?: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
949
|
-
export declare const geoFeatureUpsertGeoFeature: (areaId: string
|
|
950
|
-
export declare const geoFeatureUpsertAreaFeatures: (areaId: string
|
|
951
|
-
export declare const geoFeatureDeleteGeoFeature: (areaId: string
|
|
952
|
-
export declare const grantGetById: (id: string
|
|
965
|
+
export declare const geoFeatureUpsertGeoFeature: (areaId: string, objectId: string, body: SerializedFeature, config?: RequestConfig | undefined) => Promise<void>;
|
|
966
|
+
export declare const geoFeatureUpsertAreaFeatures: (areaId: string, body: SerializedFeatures, config?: RequestConfig | undefined) => Promise<void>;
|
|
967
|
+
export declare const geoFeatureDeleteGeoFeature: (areaId: string, objectId: string, featureId: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
968
|
+
export declare const grantGetById: (id: string, params?: GrantGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<GrantModel>;
|
|
953
969
|
export declare const grantQuery: (params?: GrantQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<GrantModel[]>;
|
|
954
970
|
export declare const houseSelectorQuery: (params?: HouseSelectorQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<HouseSelectorModel[]>;
|
|
955
|
-
export declare const houseSelectorUpdateHouseSelector: (nodeId: string
|
|
956
|
-
export declare const houseSelectorDeleteHouseSelector: (nodeId: string
|
|
957
|
-
export declare const houseSelectorGetByExternalId: (nodeId: string
|
|
958
|
-
export declare const houseSelectorPublishHouseSelector: (nodeId: string
|
|
959
|
-
export declare const houseSelectorUpdateHouseSelectorViews: (nodeId: string
|
|
960
|
-
export declare const houseSelectorGetDraftByExternalId: (nodeId: string
|
|
961
|
-
export declare const projectPhaseGetById: (id: string
|
|
971
|
+
export declare const houseSelectorUpdateHouseSelector: (nodeId: string, body: UpdateHouseSelectorBaseModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
972
|
+
export declare const houseSelectorDeleteHouseSelector: (nodeId: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
973
|
+
export declare const houseSelectorGetByExternalId: (nodeId: string, params?: HouseSelectorGetByExternalIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<HouseSelectorModel>;
|
|
974
|
+
export declare const houseSelectorPublishHouseSelector: (nodeId: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
975
|
+
export declare const houseSelectorUpdateHouseSelectorViews: (nodeId: string, body: UpdateHouseSelectorViewsModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
976
|
+
export declare const houseSelectorGetDraftByExternalId: (nodeId: string, params?: HouseSelectorGetDraftByExternalIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<HouseSelectorModel>;
|
|
977
|
+
export declare const projectPhaseGetById: (id: string, params?: ProjectPhaseGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProjectPhaseModel>;
|
|
962
978
|
export declare const projectPhaseQuery: (params?: ProjectPhaseQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProjectPhaseModel[]>;
|
|
963
|
-
export declare const propertyTypeGetById: (id: string
|
|
979
|
+
export declare const propertyTypeGetById: (id: string, params?: PropertyTypeGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<PropertyTypeModel>;
|
|
964
980
|
export declare const propertyTypeQuery: (params?: PropertyTypeQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<PropertyTypeModel[]>;
|
|
965
|
-
export declare const provinceGetByName: (name: string
|
|
966
|
-
export declare const provinceGetById: (id: string
|
|
981
|
+
export declare const provinceGetByName: (name: string, params?: ProvinceGetByNameQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProvinceModel>;
|
|
982
|
+
export declare const provinceGetById: (id: string, params?: ProvinceGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProvinceModel>;
|
|
967
983
|
export declare const provinceQuery: (params?: ProvinceQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProvinceModel[]>;
|
|
968
|
-
export declare const redirectAreaNewsletterHeaderRedirect: (areaId: string
|
|
969
|
-
export declare const redirectAreaLogoRedirect: (areaId: string
|
|
970
|
-
export declare const redirectProjectNewsletterHeaderRedirect: (projectId: string
|
|
971
|
-
export declare const redirectProjectImageRedirect: (projectId: string
|
|
972
|
-
export declare const redirectPropertyTypeImageRedirect: (propertyTypeId: string
|
|
973
|
-
export declare const redirectConstructionNumberImageRedirect: (constructionNumberId: string
|
|
984
|
+
export declare const redirectAreaNewsletterHeaderRedirect: (areaId: string, extension: string, params?: RedirectAreaNewsletterHeaderRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
985
|
+
export declare const redirectAreaLogoRedirect: (areaId: string, extension: string, params?: RedirectAreaLogoRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
986
|
+
export declare const redirectProjectNewsletterHeaderRedirect: (projectId: string, extension: string, params?: RedirectProjectNewsletterHeaderRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
987
|
+
export declare const redirectProjectImageRedirect: (projectId: string, extension: string, params?: RedirectProjectImageRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
988
|
+
export declare const redirectPropertyTypeImageRedirect: (propertyTypeId: string, extension: string, params?: RedirectPropertyTypeImageRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
989
|
+
export declare const redirectConstructionNumberImageRedirect: (constructionNumberId: string, extension: string, params?: RedirectConstructionNumberImageRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
974
990
|
export declare const redirectRelationsListRedirect: (params?: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
975
|
-
export declare const regionGetById: (id: string
|
|
991
|
+
export declare const regionGetById: (id: string, params?: RegionGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<RegionModel>;
|
|
976
992
|
export declare const regionQuery: (params?: RegionQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<RegionModel[]>;
|
|
977
|
-
export declare const resourceUpdateResource: (mediaId: string
|
|
978
|
-
export declare const resourceDeleteResource: (mediaId: string
|
|
993
|
+
export declare const resourceUpdateResource: (mediaId: string, body: UpdateResourceModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
994
|
+
export declare const resourceDeleteResource: (mediaId: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|