@bpd-library/utilities 2.0.9 → 2.0.11-beta.0
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/config/oats-generator.config.js +1 -1
- package/dist/extended-api-models/extended-area-projects.js +1 -1
- package/dist/extended-api-models/extended-area-projects.js.map +1 -1
- package/dist/generated/bpd-client.d.ts +115 -55
- package/dist/generated/bpd-client.js +8 -9
- package/dist/generated/bpd-client.js.map +1 -1
- package/package.json +3 -3
|
@@ -26,7 +26,7 @@ function customGenerator({ componentName, verb, route, typeNames, paramsTypes })
|
|
|
26
26
|
|
|
27
27
|
module.exports = {
|
|
28
28
|
studienet: {
|
|
29
|
-
url: 'https://
|
|
29
|
+
file: 'src/api/swagger.json', // copy the API spec from this url: 'https://api-direct.test.bpd.nl/swagger/v1/swagger.json'
|
|
30
30
|
output: 'src/generated/bpd-client.ts',
|
|
31
31
|
customOperationNameGenerator: ({ verb, route }) => {
|
|
32
32
|
const words = route.replace('/api/v1/', '').split('/');
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extended-area-projects.js","sourceRoot":"","sources":["../../src/extended-api-models/extended-area-projects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"extended-area-projects.js","sourceRoot":"","sources":["../../src/extended-api-models/extended-area-projects.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAC;AAC/E,OAAO,EAAoB,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAElE,MAAM,mBAAmB,GAAU;IAC/B,MAAM;IACN,OAAO;IACP,KAAK;IACL,kBAAkB;IAClB,aAAa;IACb,UAAU;IACV,UAAU;CACb,CAAC;AAWF,MAAM,0BAA0B,GAAG,KAAK,IAAsC,EAAE;IAC5E,MAAM,YAAY,GAAG,CAAC,MAAM,gBAAgB,CAAC;QACzC,OAAO,EAAE,oBAAoB,CAAC,CAAC,GAAG,mBAAmB,CAAC,CAAC;KAC1D,CAAC,CAA4B,CAAC;IAE/B,YAAY,CAAC,OAAO,CAAC,CAAC,WAAW,EAAE,EAAE;QACjC,WAAW,CAAC,UAAU,GAAG,aAAa,CAAC;IAC3C,CAAC,CAAC,CAAC;IAEH,OAAO,YAAY,CAAC;AACxB,CAAC,CAAC;AAEF,OAAO,EAAE,0BAA0B,EAAE,CAAC","sourcesContent":["import { composeIncludeString } from '../api-utilities/compose-include-string';\nimport { AreaProjectModel, areaProjectQuery } from '../generated';\n\nconst INCLUDED_PROPERTIES = <const>[\n 'name',\n 'image',\n 'url',\n 'shortDescription',\n 'isCompleted',\n 'location',\n 'geometry',\n];\n\ninterface AreaProjectEssentials\n extends Pick<AreaProjectModel, 'id' | typeof INCLUDED_PROPERTIES[number]> {\n objectType: 'areaProject';\n}\n\n/**\n * @description Returns an array of all areaProjects extended.\n * @return {*} {Promise<ExtendedAreaProject[]>}\n */\nconst getAreaProjectsLightweight = async (): Promise<AreaProjectEssentials[]> => {\n const areaProjects = (await areaProjectQuery({\n include: composeIncludeString([...INCLUDED_PROPERTIES]),\n })) as AreaProjectEssentials[];\n\n areaProjects.forEach((areaProject) => {\n areaProject.objectType = 'areaProject';\n });\n\n return areaProjects;\n};\n\nexport { getAreaProjectsLightweight };\n"]}
|
|
@@ -4,6 +4,13 @@ export interface ActivationEngineModel {
|
|
|
4
4
|
customerJourneyPhase?: string | null;
|
|
5
5
|
constructionNumberIds?: string[] | null;
|
|
6
6
|
}
|
|
7
|
+
export interface AddressLight {
|
|
8
|
+
street?: string | null;
|
|
9
|
+
number?: string | null;
|
|
10
|
+
numberSuffix?: string | null;
|
|
11
|
+
postalCode?: string | null;
|
|
12
|
+
city?: string | null;
|
|
13
|
+
}
|
|
7
14
|
export interface ApartmentBuildingModel {
|
|
8
15
|
areaProjectId?: string | null;
|
|
9
16
|
projectPhaseId?: string | null;
|
|
@@ -75,6 +82,7 @@ export interface CaseFormModel {
|
|
|
75
82
|
contactReason?: string | null;
|
|
76
83
|
phoneNumber?: string | null;
|
|
77
84
|
webcareSubject?: string | null;
|
|
85
|
+
complaintCategory?: string | null;
|
|
78
86
|
chatUrl?: string | null;
|
|
79
87
|
mailTo?: string | null;
|
|
80
88
|
referringUrl?: string | null;
|
|
@@ -88,11 +96,36 @@ export interface CityModel {
|
|
|
88
96
|
seoText?: SeoText;
|
|
89
97
|
id: string;
|
|
90
98
|
}
|
|
99
|
+
export interface ConstructionNumberLight {
|
|
100
|
+
id?: string | null;
|
|
101
|
+
propertyId?: string | null;
|
|
102
|
+
propertyName?: string | null;
|
|
103
|
+
number?: string | null;
|
|
104
|
+
specification?: string | null;
|
|
105
|
+
description?: string | null;
|
|
106
|
+
status?: string | null;
|
|
107
|
+
underConstruction?: boolean;
|
|
108
|
+
salesPrice?: number | null;
|
|
109
|
+
priceCondition?: string | null;
|
|
110
|
+
priceType?: string | null;
|
|
111
|
+
livingArea?: number | null;
|
|
112
|
+
volume?: number | null;
|
|
113
|
+
lotArea?: number | null;
|
|
114
|
+
plotArea?: number | null;
|
|
115
|
+
numberOfRooms?: number | null;
|
|
116
|
+
numberOfBedooms?: number | null;
|
|
117
|
+
address?: AddressLight;
|
|
118
|
+
gardens?: GardenLight[] | null;
|
|
119
|
+
mainFloorNumber?: string | null;
|
|
120
|
+
floors?: FloorLight[] | null;
|
|
121
|
+
}
|
|
91
122
|
export interface ConstructionNumberModel {
|
|
92
123
|
areaProjectId?: string | null;
|
|
93
124
|
districtId?: string | null;
|
|
94
125
|
projectPhaseId?: string | null;
|
|
95
126
|
bisproNumber?: string | null;
|
|
127
|
+
projectBisproNumber?: string | null;
|
|
128
|
+
organizationBisproNumber?: string | null;
|
|
96
129
|
projectPhaseName?: string | null;
|
|
97
130
|
propertyTypeId?: string | null;
|
|
98
131
|
propertyTypeName?: string | null;
|
|
@@ -149,6 +182,13 @@ export interface CountryModel {
|
|
|
149
182
|
export interface CountryQuery {
|
|
150
183
|
[key: string]: any;
|
|
151
184
|
}
|
|
185
|
+
export interface CustomerJourneyMilestone {
|
|
186
|
+
type?: CustomerJourneyMilestoneType;
|
|
187
|
+
date?: string;
|
|
188
|
+
nodeId?: string | null;
|
|
189
|
+
url?: string | null;
|
|
190
|
+
}
|
|
191
|
+
export declare type CustomerJourneyMilestoneType = 'None' | 'NewPhaseAnnouncement' | 'SalesProcess' | 'ConceptAi' | 'ConstructionNumbersOnline' | 'FinalImages' | 'FinalPrices' | 'StartSaleAnnouncement' | 'WhatsIncluded' | 'StartSale' | 'ConstructionAwarded';
|
|
152
192
|
export interface DecimalRange {
|
|
153
193
|
from?: number;
|
|
154
194
|
to?: number | null;
|
|
@@ -260,6 +300,18 @@ export interface Floor {
|
|
|
260
300
|
dbCreateTimestamp?: number | null;
|
|
261
301
|
dbUpdateTimestamp?: number | null;
|
|
262
302
|
}
|
|
303
|
+
export interface FloorLight {
|
|
304
|
+
name?: string | null;
|
|
305
|
+
type?: string | null;
|
|
306
|
+
floorNumber?: string | null;
|
|
307
|
+
}
|
|
308
|
+
export interface GardenLight {
|
|
309
|
+
type?: string | null;
|
|
310
|
+
position?: string | null;
|
|
311
|
+
size?: number | null;
|
|
312
|
+
hasBackEntrance?: boolean | null;
|
|
313
|
+
isMain?: boolean;
|
|
314
|
+
}
|
|
263
315
|
export interface GardenModel {
|
|
264
316
|
id?: string | null;
|
|
265
317
|
type?: string | null;
|
|
@@ -351,13 +403,6 @@ export interface LandRegistrationDetails {
|
|
|
351
403
|
dbUpdateTimestamp?: number | null;
|
|
352
404
|
}
|
|
353
405
|
export interface LeadFormModel {
|
|
354
|
-
city?: string | null;
|
|
355
|
-
phone?: string | null;
|
|
356
|
-
mobilePhone?: string | null;
|
|
357
|
-
email?: string | null;
|
|
358
|
-
countryId?: string | null;
|
|
359
|
-
brochureId?: string | null;
|
|
360
|
-
comment?: string | null;
|
|
361
406
|
projectId?: string | null;
|
|
362
407
|
propertyTypeId?: string | null;
|
|
363
408
|
constructionNumberId?: string | null;
|
|
@@ -374,6 +419,16 @@ export interface LeadFormModel {
|
|
|
374
419
|
houseNumber?: string | null;
|
|
375
420
|
houseNumberAddition?: string | null;
|
|
376
421
|
postalCode?: string | null;
|
|
422
|
+
city?: string | null;
|
|
423
|
+
phone?: string | null;
|
|
424
|
+
mobilePhone?: string | null;
|
|
425
|
+
email?: string | null;
|
|
426
|
+
countryId?: string | null;
|
|
427
|
+
brochureId?: string | null;
|
|
428
|
+
comment?: string | null;
|
|
429
|
+
intendedUsage?: string | null;
|
|
430
|
+
purchaseTimeframe?: string | null;
|
|
431
|
+
financialCheck?: string | null;
|
|
377
432
|
}
|
|
378
433
|
export interface OpeningHours {
|
|
379
434
|
name?: string | null;
|
|
@@ -425,6 +480,16 @@ export interface OutsideSpaceModel {
|
|
|
425
480
|
area?: number | null;
|
|
426
481
|
hasBackEntrance?: boolean | null;
|
|
427
482
|
}
|
|
483
|
+
export interface PipelineProjectModel {
|
|
484
|
+
name?: string | null;
|
|
485
|
+
status?: PipelineProjectStatus;
|
|
486
|
+
isActive?: boolean;
|
|
487
|
+
id: string;
|
|
488
|
+
}
|
|
489
|
+
export interface PipelineProjectQuery {
|
|
490
|
+
[key: string]: any;
|
|
491
|
+
}
|
|
492
|
+
export declare type PipelineProjectStatus = 'InPreparation' | 'UnderConstruction' | 'Finished' | 'SoonForRent' | 'ForRent' | 'Rented';
|
|
428
493
|
export interface Point {
|
|
429
494
|
x?: number;
|
|
430
495
|
y?: number;
|
|
@@ -457,6 +522,7 @@ export interface ProjectModel {
|
|
|
457
522
|
export interface ProjectPhaseModel {
|
|
458
523
|
areaProjectId?: string | null;
|
|
459
524
|
bisproNumber?: string | null;
|
|
525
|
+
organisationBisproNumber?: string | null;
|
|
460
526
|
areaProjectName?: string | null;
|
|
461
527
|
districtId?: string | null;
|
|
462
528
|
name?: string | null;
|
|
@@ -465,9 +531,11 @@ export interface ProjectPhaseModel {
|
|
|
465
531
|
shortDescription?: string | null;
|
|
466
532
|
longDescription?: string | null;
|
|
467
533
|
status?: ProjectPhaseStatus;
|
|
534
|
+
estimatedSaleStartDate?: string | null;
|
|
468
535
|
saleStartDate?: string | null;
|
|
469
536
|
saleEndDate?: string | null;
|
|
470
537
|
allocationDate?: string | null;
|
|
538
|
+
awardDate?: string | null;
|
|
471
539
|
cityName?: string | null;
|
|
472
540
|
municipalityName?: string | null;
|
|
473
541
|
provinceName?: string | null;
|
|
@@ -488,9 +556,31 @@ export interface ProjectPhaseModel {
|
|
|
488
556
|
propertyPurchasePrice?: PropertySalesPrice;
|
|
489
557
|
propertyRentalPrice?: PropertyRentalPrice;
|
|
490
558
|
houseTypes?: string[] | null;
|
|
559
|
+
customerJourneyMilestones?: CustomerJourneyMilestone[] | null;
|
|
491
560
|
id: string;
|
|
492
561
|
}
|
|
493
562
|
export declare type ProjectPhaseStatus = 'InPreparation' | 'OnSale' | 'Sold' | 'ForRent' | 'Rented' | 'NotActive';
|
|
563
|
+
export interface PropertyLight {
|
|
564
|
+
id?: string | null;
|
|
565
|
+
projectId?: string | null;
|
|
566
|
+
areaId?: string | null;
|
|
567
|
+
name?: string | null;
|
|
568
|
+
description?: string | null;
|
|
569
|
+
salesPriceFrom?: number | null;
|
|
570
|
+
salesPriceTo?: number | null;
|
|
571
|
+
livingAreaFrom?: number | null;
|
|
572
|
+
livingAreaTo?: number | null;
|
|
573
|
+
lotAreaFrom?: number | null;
|
|
574
|
+
lotAreaTo?: number | null;
|
|
575
|
+
volumeFrom?: number | null;
|
|
576
|
+
volumeTo?: number | null;
|
|
577
|
+
numberOfRoomsFrom?: number | null;
|
|
578
|
+
numberOfRoomsTo?: number | null;
|
|
579
|
+
numberOfBedroomsFrom?: number | null;
|
|
580
|
+
numberOfBedroomsTo?: number | null;
|
|
581
|
+
imageUrl?: string | null;
|
|
582
|
+
url?: string | null;
|
|
583
|
+
}
|
|
494
584
|
export interface PropertyRentalPrice {
|
|
495
585
|
deposit?: number | null;
|
|
496
586
|
amount?: DecimalRange;
|
|
@@ -761,14 +851,12 @@ export interface DistrictQueryQueryParams {
|
|
|
761
851
|
include?: string;
|
|
762
852
|
lang?: string;
|
|
763
853
|
}
|
|
764
|
-
export interface DocumentDownloadQueryParams {
|
|
765
|
-
returnUrl?: string;
|
|
766
|
-
}
|
|
767
854
|
export interface DocumentGetByIdQueryParams {
|
|
768
855
|
include?: string;
|
|
769
856
|
lang?: string;
|
|
770
857
|
}
|
|
771
858
|
export interface DocumentQueryQueryParams {
|
|
859
|
+
OrganizationBisproNumber?: string;
|
|
772
860
|
ProjectBisproNumber?: string;
|
|
773
861
|
ProjectBisproNumbers?: string;
|
|
774
862
|
ConstructionBisproNumbers?: string;
|
|
@@ -875,6 +963,15 @@ export interface HouseSelectorGetDraftByExternalIdQueryParams {
|
|
|
875
963
|
apiKey?: string;
|
|
876
964
|
lang?: string;
|
|
877
965
|
}
|
|
966
|
+
export interface PipelineProjectGetByIdQueryParams {
|
|
967
|
+
include?: string;
|
|
968
|
+
lang?: string;
|
|
969
|
+
}
|
|
970
|
+
export interface PipelineProjectQueryQueryParams {
|
|
971
|
+
query?: PipelineProjectQuery;
|
|
972
|
+
include?: string;
|
|
973
|
+
lang?: string;
|
|
974
|
+
}
|
|
878
975
|
export interface ProjectPhaseGetByIdQueryParams {
|
|
879
976
|
include?: string;
|
|
880
977
|
lang?: string;
|
|
@@ -911,42 +1008,6 @@ export interface ProvinceQueryQueryParams {
|
|
|
911
1008
|
include?: string;
|
|
912
1009
|
lang?: string;
|
|
913
1010
|
}
|
|
914
|
-
export interface RedirectAreaNewsletterHeaderRedirectQueryParams {
|
|
915
|
-
width?: string;
|
|
916
|
-
height?: string;
|
|
917
|
-
mode?: string;
|
|
918
|
-
quality?: string;
|
|
919
|
-
}
|
|
920
|
-
export interface RedirectAreaLogoRedirectQueryParams {
|
|
921
|
-
width?: string;
|
|
922
|
-
height?: string;
|
|
923
|
-
mode?: string;
|
|
924
|
-
quality?: string;
|
|
925
|
-
}
|
|
926
|
-
export interface RedirectProjectNewsletterHeaderRedirectQueryParams {
|
|
927
|
-
width?: string;
|
|
928
|
-
height?: string;
|
|
929
|
-
mode?: string;
|
|
930
|
-
quality?: string;
|
|
931
|
-
}
|
|
932
|
-
export interface RedirectProjectImageRedirectQueryParams {
|
|
933
|
-
width?: string;
|
|
934
|
-
height?: string;
|
|
935
|
-
mode?: string;
|
|
936
|
-
quality?: string;
|
|
937
|
-
}
|
|
938
|
-
export interface RedirectPropertyTypeImageRedirectQueryParams {
|
|
939
|
-
width?: string;
|
|
940
|
-
height?: string;
|
|
941
|
-
mode?: string;
|
|
942
|
-
quality?: string;
|
|
943
|
-
}
|
|
944
|
-
export interface RedirectConstructionNumberImageRedirectQueryParams {
|
|
945
|
-
width?: string;
|
|
946
|
-
height?: string;
|
|
947
|
-
mode?: string;
|
|
948
|
-
quality?: string;
|
|
949
|
-
}
|
|
950
1011
|
export interface RegionGetByIdQueryParams {
|
|
951
1012
|
include?: string;
|
|
952
1013
|
lang?: string;
|
|
@@ -976,14 +1037,14 @@ export declare const cityGetById: (id: string, params?: CityGetByIdQueryParams |
|
|
|
976
1037
|
export declare const cityQuery: (params?: CityQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CityModel[]>;
|
|
977
1038
|
export declare const constructionNumberGetById: (id: string, params?: ConstructionNumberGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ConstructionNumberModel>;
|
|
978
1039
|
export declare const constructionNumberQuery: (params?: ConstructionNumberQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ConstructionNumberModel[]>;
|
|
1040
|
+
export declare const constructionNumberGet: (projectId: string, constructionNumber: string, params?: any, config?: RequestConfig | undefined) => Promise<ConstructionNumberLight>;
|
|
1041
|
+
export declare const constructionNumberList: (projectId: string, params?: any, config?: RequestConfig | undefined) => Promise<ConstructionNumberLight>;
|
|
979
1042
|
export declare const countryGetByIsoCode: (isoCode: string, params?: CountryGetByIsoCodeQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CountryModel>;
|
|
980
1043
|
export declare const countryGetById: (id: string, params?: CountryGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CountryModel>;
|
|
981
1044
|
export declare const countryQuery: (params?: CountryQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<CountryModel[]>;
|
|
982
1045
|
export declare const digitalBrochureGetById: (id: string, params?: any, config?: RequestConfig | undefined) => Promise<DigitalBrochureModel>;
|
|
983
1046
|
export declare const districtGetById: (id: string, params?: DistrictGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DistrictModel>;
|
|
984
1047
|
export declare const districtQuery: (params?: DistrictQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DistrictModel[]>;
|
|
985
|
-
export declare const documentDownload: (id: string, fileName: string, params?: DocumentDownloadQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
986
|
-
export declare const documentDownloadZip: (projectBisproNumber: string, constructionBisproNumber: string, params?: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
987
1048
|
export declare const documentGetById: (id: string, params?: DocumentGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DocumentModel>;
|
|
988
1049
|
export declare const documentQuery: (params?: DocumentQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DocumentModel[]>;
|
|
989
1050
|
export declare const formLead: (body: LeadFormModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
@@ -1013,20 +1074,19 @@ export declare const houseSelectorGetByExternalId: (nodeId: string, params?: Hou
|
|
|
1013
1074
|
export declare const houseSelectorPublishHouseSelector: (nodeId: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
1014
1075
|
export declare const houseSelectorUpdateHouseSelectorViews: (nodeId: string, body: UpdateHouseSelectorViewsModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
1015
1076
|
export declare const houseSelectorGetDraftByExternalId: (nodeId: string, params?: HouseSelectorGetDraftByExternalIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<HouseSelectorModel>;
|
|
1077
|
+
export declare const pipelineProjectGetById: (id: string, params?: PipelineProjectGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<PipelineProjectModel>;
|
|
1078
|
+
export declare const pipelineProjectQuery: (params?: PipelineProjectQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<PipelineProjectModel[]>;
|
|
1079
|
+
export declare const projectPhaseSetCustomerJourneyMilestone: (id: string, body: CustomerJourneyMilestone, config?: RequestConfig | undefined) => Promise<void>;
|
|
1080
|
+
export declare const projectPhaseDeleteCustomerJourneyMilestone: (id: string, nodeId: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
1016
1081
|
export declare const projectPhaseGetById: (id: string, params?: ProjectPhaseGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProjectPhaseModel>;
|
|
1017
1082
|
export declare const projectPhaseQuery: (params?: ProjectPhaseQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProjectPhaseModel[]>;
|
|
1083
|
+
export declare const propertyGetPublicProperties: (params?: any, config?: RequestConfig | undefined) => Promise<PropertyLight>;
|
|
1084
|
+
export declare const propertyList: (projectId: string, params?: any, config?: RequestConfig | undefined) => Promise<PropertyLight>;
|
|
1018
1085
|
export declare const propertyTypeGetById: (id: string, params?: PropertyTypeGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<PropertyTypeModel>;
|
|
1019
1086
|
export declare const propertyTypeQuery: (params?: PropertyTypeQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<PropertyTypeModel[]>;
|
|
1020
1087
|
export declare const provinceGetByName: (name: string, params?: ProvinceGetByNameQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProvinceModel>;
|
|
1021
1088
|
export declare const provinceGetById: (id: string, params?: ProvinceGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProvinceModel>;
|
|
1022
1089
|
export declare const provinceQuery: (params?: ProvinceQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProvinceModel[]>;
|
|
1023
|
-
export declare const redirectAreaNewsletterHeaderRedirect: (areaId: string, extension: string, params?: RedirectAreaNewsletterHeaderRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
1024
|
-
export declare const redirectAreaLogoRedirect: (areaId: string, extension: string, params?: RedirectAreaLogoRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
1025
|
-
export declare const redirectProjectNewsletterHeaderRedirect: (projectId: string, extension: string, params?: RedirectProjectNewsletterHeaderRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
1026
|
-
export declare const redirectProjectImageRedirect: (projectId: string, extension: string, params?: RedirectProjectImageRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
1027
|
-
export declare const redirectPropertyTypeImageRedirect: (propertyTypeId: string, extension: string, params?: RedirectPropertyTypeImageRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
1028
|
-
export declare const redirectConstructionNumberImageRedirect: (constructionNumberId: string, extension: string, params?: RedirectConstructionNumberImageRedirectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
1029
|
-
export declare const redirectRelationsListRedirect: (params?: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
1030
1090
|
export declare const regionGetById: (id: string, params?: RegionGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<RegionModel>;
|
|
1031
1091
|
export declare const regionQuery: (params?: RegionQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<RegionModel[]>;
|
|
1032
1092
|
export declare const resourceUpdateResource: (mediaId: string, body: UpdateResourceModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
@@ -11,14 +11,14 @@ export const cityGetById = (id, params, config) => APIClient.get(`/cities/${id}`
|
|
|
11
11
|
export const cityQuery = (params, config) => APIClient.get(`/cities`, params, config).then((res) => res);
|
|
12
12
|
export const constructionNumberGetById = (id, params, config) => APIClient.get(`/constructionnumbers/${id}`, params, config).then((res) => res);
|
|
13
13
|
export const constructionNumberQuery = (params, config) => APIClient.get(`/constructionnumbers`, params, config).then((res) => res);
|
|
14
|
+
export const constructionNumberGet = (projectId, constructionNumber, params, config) => APIClient.get(`/light/projects/${projectId}/constructionnumbers/${constructionNumber}`, params, config).then((res) => res);
|
|
15
|
+
export const constructionNumberList = (projectId, params, config) => APIClient.get(`/light/projects/${projectId}/constructionnumbers`, params, config).then((res) => res);
|
|
14
16
|
export const countryGetByIsoCode = (isoCode, params, config) => APIClient.get(`/countries/isoCode/${isoCode}`, params, config).then((res) => res);
|
|
15
17
|
export const countryGetById = (id, params, config) => APIClient.get(`/countries/${id}`, params, config).then((res) => res);
|
|
16
18
|
export const countryQuery = (params, config) => APIClient.get(`/countries`, params, config).then((res) => res);
|
|
17
19
|
export const digitalBrochureGetById = (id, params, config) => APIClient.get(`/digital-brochures/${id}`, params, config).then((res) => res);
|
|
18
20
|
export const districtGetById = (id, params, config) => APIClient.get(`/districts/${id}`, params, config).then((res) => res);
|
|
19
21
|
export const districtQuery = (params, config) => APIClient.get(`/districts`, params, config).then((res) => res);
|
|
20
|
-
export const documentDownload = (id, fileName, params, config) => APIClient.get(`/documents/${id}/${fileName}`, params, config).then((res) => res);
|
|
21
|
-
export const documentDownloadZip = (projectBisproNumber, constructionBisproNumber, params, config) => APIClient.get(`/documents/zip/${projectBisproNumber}/${constructionBisproNumber}`, params, config).then((res) => res);
|
|
22
22
|
export const documentGetById = (id, params, config) => APIClient.get(`/documents/${id}`, params, config).then((res) => res);
|
|
23
23
|
export const documentQuery = (params, config) => APIClient.get(`/documents`, params, config).then((res) => res);
|
|
24
24
|
export const formLead = (body, config) => APIClient.post(`/forms/lead`, body, config).then((res) => res);
|
|
@@ -48,20 +48,19 @@ export const houseSelectorGetByExternalId = (nodeId, params, config) => APIClien
|
|
|
48
48
|
export const houseSelectorPublishHouseSelector = (nodeId, body, config) => APIClient.put(`/houseselectors/${nodeId}/publish`, body, config).then((res) => res);
|
|
49
49
|
export const houseSelectorUpdateHouseSelectorViews = (nodeId, body, config) => APIClient.put(`/houseselectors/${nodeId}/views`, body, config).then((res) => res);
|
|
50
50
|
export const houseSelectorGetDraftByExternalId = (nodeId, params, config) => APIClient.get(`/houseselectors/${nodeId}/draft`, params, config).then((res) => res);
|
|
51
|
+
export const pipelineProjectGetById = (id, params, config) => APIClient.get(`/pipelineprojects/${id}`, params, config).then((res) => res);
|
|
52
|
+
export const pipelineProjectQuery = (params, config) => APIClient.get(`/pipelineprojects`, params, config).then((res) => res);
|
|
53
|
+
export const projectPhaseSetCustomerJourneyMilestone = (id, body, config) => APIClient.put(`/projectphases/${id}/milestone`, body, config).then((res) => res);
|
|
54
|
+
export const projectPhaseDeleteCustomerJourneyMilestone = (id, nodeId, body, config) => APIClient.delete(`/projectphases/${id}/milestone/${nodeId}`, body, config).then((res) => res);
|
|
51
55
|
export const projectPhaseGetById = (id, params, config) => APIClient.get(`/projectphases/${id}`, params, config).then((res) => res);
|
|
52
56
|
export const projectPhaseQuery = (params, config) => APIClient.get(`/projectphases`, params, config).then((res) => res);
|
|
57
|
+
export const propertyGetPublicProperties = (params, config) => APIClient.get(`/light/properties`, params, config).then((res) => res);
|
|
58
|
+
export const propertyList = (projectId, params, config) => APIClient.get(`/light/projects/${projectId}/properties`, params, config).then((res) => res);
|
|
53
59
|
export const propertyTypeGetById = (id, params, config) => APIClient.get(`/propertytypes/${id}`, params, config).then((res) => res);
|
|
54
60
|
export const propertyTypeQuery = (params, config) => APIClient.get(`/propertytypes`, params, config).then((res) => res);
|
|
55
61
|
export const provinceGetByName = (name, params, config) => APIClient.get(`/provinces/name/${name}`, params, config).then((res) => res);
|
|
56
62
|
export const provinceGetById = (id, params, config) => APIClient.get(`/provinces/${id}`, params, config).then((res) => res);
|
|
57
63
|
export const provinceQuery = (params, config) => APIClient.get(`/provinces`, params, config).then((res) => res);
|
|
58
|
-
export const redirectAreaNewsletterHeaderRedirect = (areaId, extension, params, config) => APIClient.get(`/redirect/media/area/${areaId}.${extension}`, params, config).then((res) => res);
|
|
59
|
-
export const redirectAreaLogoRedirect = (areaId, extension, params, config) => APIClient.get(`/redirect/media/logo/${areaId}.${extension}`, params, config).then((res) => res);
|
|
60
|
-
export const redirectProjectNewsletterHeaderRedirect = (projectId, extension, params, config) => APIClient.get(`/redirect/media/newsletter/${projectId}.${extension}`, params, config).then((res) => res);
|
|
61
|
-
export const redirectProjectImageRedirect = (projectId, extension, params, config) => APIClient.get(`/redirect/media/project/${projectId}.${extension}`, params, config).then((res) => res);
|
|
62
|
-
export const redirectPropertyTypeImageRedirect = (propertyTypeId, extension, params, config) => APIClient.get(`/redirect/media/woningtype/${propertyTypeId}.${extension}`, params, config).then((res) => res);
|
|
63
|
-
export const redirectConstructionNumberImageRedirect = (constructionNumberId, extension, params, config) => APIClient.get(`/redirect/media/bouwnummer/${constructionNumberId}.${extension}`, params, config).then((res) => res);
|
|
64
|
-
export const redirectRelationsListRedirect = (params, config) => APIClient.get(`/redirect/media/resource/relations`, params, config).then((res) => res);
|
|
65
64
|
export const regionGetById = (id, params, config) => APIClient.get(`/region/${id}`, params, config).then((res) => res);
|
|
66
65
|
export const regionQuery = (params, config) => APIClient.get(`/region`, params, config).then((res) => res);
|
|
67
66
|
export const resourceUpdateResource = (mediaId, body, config) => APIClient.put(`/resources/${mediaId}`, body, config).then((res) => res);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bpd-client.js","sourceRoot":"","sources":["../../src/generated/bpd-client.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAC;AA8lCnC,MAAM,CAAC,MAAM,0BAA0B,GAAG,CACtC,QAAgB,EAChB,MAA8C,EAC9C,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CACT,6BAA6B,QAAQ,EAAE,EACvC,MAAM,EACN,MAAM,CACT,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1B,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAClC,MAA0C,EAC1C,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAA2B,qBAAqB,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAC/E,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,wCAAwC,GAAG,CACpD,MAAc,EACd,IAAkC,EAClC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,uBAAuB,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE5F,MAAM,CAAC,MAAM,wCAAwC,GAAG,CACpD,MAAc,EACd,IAAS,EACT,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,MAAM,CAAO,uBAAuB,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE/F,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAC5C,MAAc,EACd,MAAoD,EACpD,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAAyB,uBAAuB,MAAM,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CACvF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAC9B,EAAU,EACV,MAAsC,EACtC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAmB,iBAAiB,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEhG,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,MAAoC,EAAE,MAAsB,EAAE,EAAE,CAC7F,SAAS,CAAC,GAAG,CAAqB,eAAe,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE3F,MAAM,CAAC,MAAM,aAAa,GAAG,CACzB,IAAY,EACZ,MAAiC,EACjC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAY,gBAAgB,IAAI,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1F,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,EAAU,EAAE,MAA+B,EAAE,MAAsB,EAAE,EAAE,CAC/F,SAAS,CAAC,GAAG,CAAY,WAAW,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAElF,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,MAA6B,EAAE,MAAsB,EAAE,EAAE,CAC/E,SAAS,CAAC,GAAG,CAAc,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE9E,MAAM,CAAC,MAAM,yBAAyB,GAAG,CACrC,EAAU,EACV,MAA6C,EAC7C,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAA0B,wBAAwB,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CACrF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACnC,MAA2C,EAC3C,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAA4B,sBAAsB,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CACjF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAC/B,OAAe,EACf,MAAuC,EACvC,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAAe,sBAAsB,OAAO,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAC7E,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,cAAc,GAAG,CAC1B,EAAU,EACV,MAAkC,EAClC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAe,cAAc,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEzF,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,MAAgC,EAAE,MAAsB,EAAE,EAAE,CACrF,SAAS,CAAC,GAAG,CAAiB,YAAY,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEpF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,EAAU,EAAE,MAAY,EAAE,MAAsB,EAAE,EAAE,CACvF,SAAS,CAAC,GAAG,CAAuB,sBAAsB,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAChF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,eAAe,GAAG,CAC3B,EAAU,EACV,MAAmC,EACnC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAgB,cAAc,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1F,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,MAAiC,EAAE,MAAsB,EAAE,EAAE,CACvF,SAAS,CAAC,GAAG,CAAkB,YAAY,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAErF,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAC5B,EAAU,EACV,QAAgB,EAChB,MAAoC,EACpC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,cAAc,EAAE,IAAI,QAAQ,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE7F,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAC/B,mBAA2B,EAC3B,wBAAgC,EAChC,MAAY,EACZ,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CACT,kBAAkB,mBAAmB,IAAI,wBAAwB,EAAE,EACnE,MAAM,EACN,MAAM,CACT,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1B,MAAM,CAAC,MAAM,eAAe,GAAG,CAC3B,EAAU,EACV,MAAmC,EACnC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAgB,cAAc,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1F,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,MAAiC,EAAE,MAAsB,EAAE,EAAE,CACvF,SAAS,CAAC,GAAG,CAAkB,YAAY,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAErF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,IAAmB,EAAE,MAAsB,EAAE,EAAE,CACpE,SAAS,CAAC,IAAI,CAAO,aAAa,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1E,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,IAAmB,EAAE,MAAsB,EAAE,EAAE,CACpE,SAAS,CAAC,IAAI,CAAO,aAAa,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1E,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,IAAsB,EAAE,MAAsB,EAAE,EAAE,CAC1E,SAAS,CAAC,IAAI,CAAO,gBAAgB,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE7E,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,IAAiC,EAAE,MAAsB,EAAE,EAAE,CAC7F,SAAS,CAAC,IAAI,CAAO,yBAAyB,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEtF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,MAA8B,EAAE,MAAsB,EAAE,EAAE,CACjF,SAAS,CAAC,GAAG,CAAiB,cAAc,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEtF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,MAA4B,EAAE,MAAsB,EAAE,EAAE,CAC7E,SAAS,CAAC,GAAG,CAAO,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEtE,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,IAAS,EAAE,MAAsB,EAAE,EAAE,CAC7D,SAAS,CAAC,IAAI,CAAO,eAAe,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE5E,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,EAAU,EAAE,IAAS,EAAE,MAAsB,EAAE,EAAE,CAC9E,SAAS,CAAC,IAAI,CAAO,iBAAiB,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAElF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CACpC,MAA4C,EAC5C,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,cAAc,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE7E,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,IAAS,EAAE,MAAsB,EAAE,EAAE,CAC/D,SAAS,CAAC,IAAI,CAAO,iBAAiB,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE9E,MAAM,CAAC,MAAM,6BAA6B,GAAG,CACzC,MAAiD,EACjD,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,iCAAiC,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEhG,MAAM,CAAC,MAAM,6BAA6B,GAAG,CACzC,MAAiD,EACjD,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,iCAAiC,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEhG,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAClD,MAA0D,EAC1D,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAAO,0CAA0C,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAChF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,yBAAyB,GAAG,CACrC,MAA6C,EAC7C,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,6BAA6B,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE5F,MAAM,CAAC,MAAM,0BAA0B,GAAG,CACtC,MAA8C,EAC9C,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,8BAA8B,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE7F,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAC7C,MAAqD,EACrD,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,qCAAqC,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEpG,MAAM,CAAC,MAAM,yBAAyB,GAAG,CACrC,MAA6C,EAC7C,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,6BAA6B,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE5F,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAC1C,MAAkD,EAClD,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,kCAAkC,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEjG,MAAM,CAAC,MAAM,YAAY,GAAG,CACxB,EAAU,EACV,MAAgC,EAChC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAa,WAAW,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEpF,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,MAA8B,EAAE,MAAsB,EAAE,EAAE,CACjF,SAAS,CAAC,GAAG,CAAe,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE/E,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAC9B,MAAsC,EACtC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAuB,iBAAiB,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEhG,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAC5C,MAAc,EACd,IAAkC,EAClC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,mBAAmB,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAExF,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAC5C,MAAc,EACd,IAAS,EACT,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,MAAM,CAAO,mBAAmB,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE3F,MAAM,CAAC,MAAM,4BAA4B,GAAG,CACxC,MAAc,EACd,MAAgD,EAChD,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAAqB,mBAAmB,MAAM,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAC/E,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAC7C,MAAc,EACd,IAAS,EACT,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,mBAAmB,MAAM,UAAU,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEhG,MAAM,CAAC,MAAM,qCAAqC,GAAG,CACjD,MAAc,EACd,IAAmC,EACnC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,mBAAmB,MAAM,QAAQ,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE9F,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAC7C,MAAc,EACd,MAAqD,EACrD,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAAqB,mBAAmB,MAAM,QAAQ,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CACrF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAC/B,EAAU,EACV,MAAuC,EACvC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAoB,kBAAkB,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAElG,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,MAAqC,EAAE,MAAsB,EAAE,EAAE,CAC/F,SAAS,CAAC,GAAG,CAAsB,gBAAgB,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE7F,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAC/B,EAAU,EACV,MAAuC,EACvC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAoB,kBAAkB,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAElG,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,MAAqC,EAAE,MAAsB,EAAE,EAAE,CAC/F,SAAS,CAAC,GAAG,CAAsB,gBAAgB,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE7F,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAC7B,IAAY,EACZ,MAAqC,EACrC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAgB,mBAAmB,IAAI,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEjG,MAAM,CAAC,MAAM,eAAe,GAAG,CAC3B,EAAU,EACV,MAAmC,EACnC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAgB,cAAc,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1F,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,MAAiC,EAAE,MAAsB,EAAE,EAAE,CACvF,SAAS,CAAC,GAAG,CAAkB,YAAY,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAErF,MAAM,CAAC,MAAM,oCAAoC,GAAG,CAChD,MAAc,EACd,SAAiB,EACjB,MAAwD,EACxD,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAAO,wBAAwB,MAAM,IAAI,SAAS,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CACnF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,wBAAwB,GAAG,CACpC,MAAc,EACd,SAAiB,EACjB,MAA4C,EAC5C,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAAO,wBAAwB,MAAM,IAAI,SAAS,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CACnF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,uCAAuC,GAAG,CACnD,SAAiB,EACjB,SAAiB,EACjB,MAA2D,EAC3D,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CACT,8BAA8B,SAAS,IAAI,SAAS,EAAE,EACtD,MAAM,EACN,MAAM,CACT,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1B,MAAM,CAAC,MAAM,4BAA4B,GAAG,CACxC,SAAiB,EACjB,SAAiB,EACjB,MAAgD,EAChD,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CAAO,2BAA2B,SAAS,IAAI,SAAS,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CACzF,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAChB,CAAC;AAEN,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAC7C,cAAsB,EACtB,SAAiB,EACjB,MAAqD,EACrD,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CACT,8BAA8B,cAAc,IAAI,SAAS,EAAE,EAC3D,MAAM,EACN,MAAM,CACT,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1B,MAAM,CAAC,MAAM,uCAAuC,GAAG,CACnD,oBAA4B,EAC5B,SAAiB,EACjB,MAA2D,EAC3D,MAAsB,EACxB,EAAE,CACA,SAAS,CAAC,GAAG,CACT,8BAA8B,oBAAoB,IAAI,SAAS,EAAE,EACjE,MAAM,EACN,MAAM,CACT,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAE1B,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC,MAAY,EAAE,MAAsB,EAAE,EAAE,CAClF,SAAS,CAAC,GAAG,CAAO,oCAAoC,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAElG,MAAM,CAAC,MAAM,aAAa,GAAG,CACzB,EAAU,EACV,MAAiC,EACjC,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAc,WAAW,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAErF,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,MAA+B,EAAE,MAAsB,EAAE,EAAE,CACnF,SAAS,CAAC,GAAG,CAAgB,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEhF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAClC,OAAe,EACf,IAAyB,EACzB,MAAsB,EACxB,EAAE,CAAC,SAAS,CAAC,GAAG,CAAO,cAAc,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC;AAEpF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,OAAe,EAAE,IAAS,EAAE,MAAsB,EAAE,EAAE,CACzF,SAAS,CAAC,MAAM,CAAO,cAAc,OAAO,EAAE,EAAE,IAAI,EAAE,MAAM,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAI,CAAC,CAAC","sourcesContent":["/* Generated by oats-generator */\n\n/* eslint-disable @typescript-eslint/interface-name-prefix */\n\nimport { APIClient } from '../api';\nimport { RequestConfig } from '../api/http';\n\nexport interface ActivationEngineModel {\n areaPhase?: string | null;\n customerJourneyPhase?: string | null;\n constructionNumberIds?: string[] | null;\n}\n\nexport interface ApartmentBuildingModel {\n areaProjectId?: string | null;\n projectPhaseId?: string | null;\n projectPhaseName?: string | null;\n displayName?: string | null;\n alias?: string | null;\n nodeId?: string | null;\n propertyTypeIds?: string[] | null;\n constructionNumberIds?: string[] | null;\n image?: ResourceModel;\n geometry?: PolygonModel[] | null;\n views?: ApartmentBuildingView[] | null;\n id: string;\n}\n\nexport interface ApartmentBuildingView {\n id?: string | null;\n imageUrl?: string | null;\n type?: string | null;\n sourceUrl?: string | null;\n label?: string | null;\n buttonLabel?: string | null;\n rotateLeftViewId?: string | null;\n rotateRightViewId?: string | null;\n pointers?: ApartmentBuildingViewPointer[] | null;\n}\n\nexport interface ApartmentBuildingViewPointer {\n type?: string | null;\n coordinates?: number[] | null;\n constructionNumberId?: string | null;\n linkToViewId?: string | null;\n label?: string | null;\n alignment?: string | null;\n compassDirection?: string | null;\n}\n\nexport interface AreaProjectModel {\n name?: string | null;\n shortDescription?: string | null;\n regionId?: string | null;\n countryName?: string | null;\n municipalityName?: string | null;\n url?: string | null;\n isSingleProject?: boolean;\n isCompleted?: boolean;\n status?: AreaStatus;\n image?: ResourceModel;\n location?: number[] | null;\n geometry?: PolygonModel[] | null;\n sustainabilitySubjects?: string[] | null;\n sustainabilityInfoText?: string | null;\n mapboxDatasetId?: string | null;\n mapboxTilesetId?: string | null;\n caseViaEmail?: boolean;\n website?: WebsiteModel;\n id: string;\n}\n\nexport type AreaStatus = 'InPreparation' | 'OnSale' | 'Sold';\n\nexport type CRSType = 'unspecified' | 'name' | 'link';\n\nexport interface CaseFormModel {\n areaProjectId?: string | null;\n districtId?: string | null;\n projectId?: string | null;\n propertyTypeId?: string | null;\n regionId?: string | null;\n firstName?: string | null;\n lastName?: string | null;\n lastNamePrefix?: string | null;\n email: string;\n message: string;\n contactReason?: string | null;\n phoneNumber?: string | null;\n webcareSubject?: string | null;\n chatUrl?: string | null;\n mailTo?: string | null;\n referringUrl?: string | null;\n}\n\nexport interface CityModel {\n countryId?: string | null;\n countryIsoCode?: string | null;\n provinceId?: string | null;\n name?: string | null;\n municipalityName?: string | null;\n seoText?: SeoText;\n id: string;\n}\n\nexport interface ConstructionNumberModel {\n areaProjectId?: string | null;\n districtId?: string | null;\n projectPhaseId?: string | null;\n bisproNumber?: string | null;\n projectPhaseName?: string | null;\n propertyTypeId?: string | null;\n propertyTypeName?: string | null;\n apartmentBuildingId?: string | null;\n identifier?: string | null;\n serviceCostsPerMonth?: number;\n security?: number | null;\n wishlistItemCount?: number;\n numberOfReserveCandidates?: number;\n availabilityStatus?: ConstructionNumberStatus;\n shortDescription?: string | null;\n longDescription?: string | null;\n houseSubType?: string | null;\n deliveryDate?: string | null;\n geometry?: PolygonModel[] | null;\n resources?: ResourceModel[] | null;\n groundLease?: GroundLease;\n mainImage?: ResourceModel;\n specifications?: ConstructionNumberSpecifications;\n salesPrice?: PropertySalesPrice;\n rentalPrice?: PropertyRentalPrice;\n landRegistration?: LandRegistrationDetails;\n extraSpecifications?: ExtraSpecifications;\n isEnergyNeutral?: boolean;\n numberOfFloors?: number | null;\n mainFloorNumber?: string | null;\n floors?: Floor[] | null;\n gardens?: GardenModel[] | null;\n outsideSpace?: OutsideSpaceModel[] | null;\n outbuildings?: Outbuilding[] | null;\n id: string;\n}\n\nexport interface ConstructionNumberSpecifications {\n nonLivingArea?: DecimalRange;\n buildingRelatedExternalSpace?: DecimalRange;\n externalStorage?: DecimalRange;\n characteristic?: string | null;\n sunDirection?: string | null;\n rooms?: DecimalRange;\n bedrooms?: DecimalRange;\n livingArea?: DecimalRange;\n livingRoomArea?: DecimalRange;\n plotArea?: DecimalRange;\n volume?: DecimalRange;\n}\n\nexport type ConstructionNumberStatus = 'Available' | 'InOption' | 'Sold' | 'Reserved';\n\nexport interface CountryModel {\n isoCode?: string | null;\n name?: string | null;\n englishName?: string | null;\n seoText?: SeoText;\n id: string;\n}\n\nexport interface CountryQuery {\n [key: string]: any;\n}\n\nexport interface DecimalRange {\n from?: number;\n to?: number | null;\n}\n\nexport interface DigitalBrochureModel {\n dateCreated?: string;\n data?: string | null;\n pageUrl?: string | null;\n id: string;\n}\n\nexport interface DigitalBrochureRequestModel {\n projectId?: string | null;\n areaId?: string | null;\n propertyId?: string | null;\n constructionNumberId?: string | null;\n firstName?: string | null;\n sufix?: string | null;\n lastName?: string | null;\n email?: string | null;\n data?: string | null;\n pageUrl?: string | null;\n documentName?: string | null;\n}\n\nexport interface DistrictModel {\n areaProjectId?: string | null;\n name?: string | null;\n url?: string | null;\n location?: number[] | null;\n geometry?: PolygonModel[] | null;\n isSold?: boolean;\n enableWishlist?: boolean;\n descriptionTitle?: string | null;\n description?: string | null;\n image?: ResourceModel;\n id: string;\n}\n\nexport interface DocumentModel {\n projectBisproNumber?: string | null;\n filename?: string | null;\n publicationDate?: string | null;\n title?: string | null;\n contentType?: string | null;\n documentType?: string | null;\n documentSubtype?: string | null;\n constructionBisproNumbers?: string[] | null;\n organizationBisproNumber?: string | null;\n isConcept?: boolean;\n url?: string | null;\n id: string;\n}\n\nexport interface DynamicFormModel {\n objectName?: string | null;\n mailTo?: string | null;\n fields?: {\n [key: string]: string | null;\n } | null;\n}\n\nexport interface ExtraSpecifications {\n quality?: string | null;\n isPermanentResidence?: boolean | null;\n isRecreationalResidence?: boolean | null;\n isInPark?: boolean | null;\n isPractice?: boolean | null;\n hasExternalStorage?: boolean | null;\n hasVveChecklist?: boolean | null;\n hasOpenPorch?: boolean | null;\n location?: string[] | null;\n certifications?: string[] | null;\n hotWater?: string[] | null;\n facilities?: string[] | null;\n isolation?: string[] | null;\n heating?: string[] | null;\n cooling?: string[] | null;\n energyPerformance?: string[] | null;\n remarks?: string[] | null;\n additionalConditions?: string[] | null;\n roofMaterial?: string | null;\n roofType?: string | null;\n roofRemarks?: string | null;\n energyLabel?: string | null;\n maintenanceInside?: string | null;\n maintenanceOutside?: string | null;\n vve?: Vve;\n}\n\nexport interface Feature {\n type?: GeoJSONObjectType;\n id?: string | null;\n geometry: IGeometryObject;\n properties: { [key: string]: any } | null;\n bbox?: number[] | null;\n crs?: ICRSObject;\n}\n\nexport interface FeatureCollection {\n type?: GeoJSONObjectType;\n features: Feature[];\n bbox?: number[] | null;\n crs?: ICRSObject;\n}\n\nexport interface Floor {\n name?: string | null;\n type?: string | null;\n floorNumber?: string | null;\n totalNumberOfRooms?: number | null;\n totalNumberOfBedrooms?: number | null;\n rooms?: Room[] | null;\n id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface GardenModel {\n id?: string | null;\n type?: string | null;\n position?: string | null;\n length?: number | null;\n width?: number | null;\n area?: number | null;\n hasBackEntrance?: boolean | null;\n isMain?: boolean;\n}\n\nexport type GeoJSONObjectType =\n | 'Point'\n | 'MultiPoint'\n | 'LineString'\n | 'MultiLineString'\n | 'Polygon'\n | 'MultiPolygon'\n | 'GeometryCollection'\n | 'Feature'\n | 'FeatureCollection';\n\nexport interface GrantModel {\n displayOnMap?: boolean;\n projectName?: string | null;\n cityName?: string | null;\n location?: number[] | null;\n status?: GrantStatus;\n id: string;\n}\n\nexport type GrantStatus = 'NotActive' | 'ApplicationGranted';\n\nexport interface GroundLease {\n priceWithCanonDecimal?: number | null;\n canonPercentageYearly?: number | null;\n canonAmountYearlyDecimal?: number | null;\n canonPercentage10Year?: number | null;\n canonAmount10YearDecimal?: number | null;\n canonPercentage25Year?: number | null;\n canonAmount25YearDecimal?: number | null;\n buyOffAmountDecimal?: number | null;\n priceWithBuyOffDecimal?: number | null;\n}\n\nexport type HolidayFrequency = 'Once' | 'Monthly' | 'Yearly';\n\nexport interface HouseSelectorModel {\n areaProjectId?: string | null;\n districtId?: string | null;\n displayName?: string | null;\n alias?: string | null;\n nodeId?: string | null;\n views?: HouseSelectorView[] | null;\n id: string;\n}\n\nexport interface HouseSelectorObject {\n objectType?: string | null;\n objectId?: string | null;\n point?: Point;\n polygon?: Point[] | null;\n linkToViewId?: string | null;\n label?: string | null;\n url?: string | null;\n iconName?: string | null;\n}\n\nexport interface HouseSelectorView {\n id?: string | null;\n name?: string | null;\n imageUrl?: string | null;\n imageMediaId?: number;\n objects?: HouseSelectorObject[] | null;\n}\n\nexport interface ICRSObject {\n type?: CRSType;\n}\n\nexport interface IGeometryObject {\n type?: GeoJSONObjectType;\n}\n\nexport interface LandRegistrationDetails {\n name?: string | null;\n proportion?: string | null;\n purchaseOption?: boolean | null;\n dateOfRequest?: string | null;\n durationOfLeaseHold?: string | null;\n isPermanentlyBought?: boolean | null;\n leaseHoldProvider?: string | null;\n leaseHoldPerYear?: number | null;\n cityHall?: string | null;\n municipalityId?: string | null;\n municipalityCode?: string | null;\n number?: string | null;\n scope?: string | null;\n area?: number | null;\n section?: string | null;\n type?: string | null;\n fixedVariable?: string | null;\n propertyTypeType?: string | null;\n propertyType?: string | null;\n plot?: string | null;\n constructionNumberId?: string | null;\n id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface LeadFormModel {\n city?: string | null;\n phone?: string | null;\n mobilePhone?: string | null;\n email?: string | null;\n countryId?: string | null;\n brochureId?: string | null;\n comment?: string | null;\n projectId?: string | null;\n propertyTypeId?: string | null;\n constructionNumberId?: string | null;\n areaProjectId?: string | null;\n districtId?: string | null;\n leadSource?: string | null;\n referringUrl?: string | null;\n salutation?: Salutation;\n initials?: string | null;\n firstName?: string | null;\n lastName?: string | null;\n lastNamePrefix?: string | null;\n street?: string | null;\n houseNumber?: string | null;\n houseNumberAddition?: string | null;\n postalCode?: string | null;\n}\n\nexport interface OpeningHours {\n name?: string | null;\n isActive?: boolean;\n isDefault?: boolean;\n monday?: TimeRange;\n tuesday?: TimeRange;\n wednesday?: TimeRange;\n thursday?: TimeRange;\n friday?: TimeRange;\n saturday?: TimeRange;\n sunday?: TimeRange;\n holidays?: OpeningHoursHoliday[] | null;\n id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface OpeningHoursHoliday {\n name?: string | null;\n startDate?: string;\n endDate?: string | null;\n openingHours?: TimeRange;\n frequency?: HolidayFrequency;\n}\n\nexport interface Outbuilding {\n typeCode?: string | null;\n name?: string | null;\n geometry?: FeatureCollection;\n type?: string | null;\n outbuildingType?: string | null;\n length?: number | null;\n width?: number | null;\n area?: number | null;\n isolation?: string[] | null;\n facilities?: string[] | null;\n facilitiesRemarks?: string | null;\n situation?: string | null;\n capacity?: number | null;\n id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface OutsideSpaceModel {\n id?: string | null;\n type?: string | null;\n position?: string | null;\n length?: number | null;\n width?: number | null;\n area?: number | null;\n hasBackEntrance?: boolean | null;\n}\n\nexport interface Point {\n x?: number;\n y?: number;\n}\n\nexport interface PolygonModel {\n coordinates?: number[][] | null;\n}\n\nexport type PriceCondition = 'VrijOpNaam' | 'KostenKoper';\n\nexport type PriceType =\n | 'ExactSum'\n | 'AskingPrice'\n | 'StartsFrom'\n | 'Indication'\n | 'Circa'\n | 'PriceOnRequest';\n\nexport interface ProblemDetails {\n type?: string | null;\n title?: string | null;\n status?: number | null;\n detail?: string | null;\n instance?: string | null;\n}\n\nexport interface ProjectModel {\n id?: string | null;\n name?: string | null;\n cityName?: string | null;\n fundaStatus?: string | null;\n fundaLastSyncDate?: string | null;\n fundaGatewayTransactionId?: number | null;\n fundaId?: number | null;\n connectionVersion?: string | null;\n userType?: string | null;\n gwnProjectVersion?: string | null;\n isAdmin?: boolean;\n}\n\nexport interface ProjectPhaseModel {\n areaProjectId?: string | null;\n bisproNumber?: string | null;\n areaProjectName?: string | null;\n districtId?: string | null;\n name?: string | null;\n url?: string | null;\n districtUrl?: string | null;\n shortDescription?: string | null;\n longDescription?: string | null;\n status?: ProjectPhaseStatus;\n saleStartDate?: string | null;\n saleEndDate?: string | null;\n allocationDate?: string | null;\n cityName?: string | null;\n municipalityName?: string | null;\n provinceName?: string | null;\n sortIndex?: number | null;\n environmentTypes?: string[] | null;\n deliveryStartDate?: string | null;\n constructionStartDate?: string | null;\n isRental?: boolean;\n isDigitalBrochureEnabled?: boolean;\n isNewDocumentsEnabled?: boolean;\n indicationServiceCosts?: number | null;\n indicationSecurity?: number | null;\n location?: number[] | null;\n geometry?: PolygonModel[] | null;\n resources?: ResourceModel[] | null;\n mainImage?: ResourceModel;\n propertySpecifications?: PropertySpecifications;\n propertyPurchasePrice?: PropertySalesPrice;\n propertyRentalPrice?: PropertyRentalPrice;\n houseTypes?: string[] | null;\n id: string;\n}\n\nexport type ProjectPhaseStatus =\n | 'InPreparation'\n | 'OnSale'\n | 'Sold'\n | 'ForRent'\n | 'Rented'\n | 'NotActive';\n\nexport interface PropertyRentalPrice {\n deposit?: number | null;\n amount?: DecimalRange;\n priceType?: PriceType;\n priceTypeFunda?: string | null;\n monthlyServiceCosts?: number | null;\n}\n\nexport interface PropertySalesPrice {\n condition?: PriceCondition;\n saleSpecification?: SaleSpecification;\n amount?: DecimalRange;\n priceType?: PriceType;\n priceTypeFunda?: string | null;\n monthlyServiceCosts?: number | null;\n}\n\nexport interface PropertySpecifications {\n rooms?: DecimalRange;\n bedrooms?: DecimalRange;\n livingArea?: DecimalRange;\n livingRoomArea?: DecimalRange;\n plotArea?: DecimalRange;\n volume?: DecimalRange;\n}\n\nexport interface PropertyTypeModel {\n areaProjectId?: string | null;\n districtId?: string | null;\n projectPhaseId?: string | null;\n projectPhaseName?: string | null;\n name?: string | null;\n shortDescription?: string | null;\n longDescription?: string | null;\n houseType?: string | null;\n houseSubType?: string | null;\n sortIndex?: number | null;\n environmentTypes?: string[] | null;\n hasBalcony?: boolean;\n isRental?: boolean;\n groundLease?: GroundLease;\n geometry?: PolygonModel[] | null;\n resources?: ResourceModel[] | null;\n mainImage?: ResourceModel;\n deliveryStartDate?: string | null;\n constructionStartDate?: string | null;\n indicationServiceCosts?: number | null;\n indicationSecurity?: number | null;\n specifications?: PropertySpecifications;\n salesPrice?: PropertySalesPrice;\n rentalPrice?: PropertyRentalPrice;\n canShowPrice?: boolean;\n extraSpecifications?: ExtraSpecifications;\n numberOfFloors?: number | null;\n mainFloorNumber?: string | null;\n floors?: Floor[] | null;\n gardens?: GardenModel[] | null;\n outsideSpace?: OutsideSpaceModel[] | null;\n outbuildings?: Outbuilding[] | null;\n usp1Title?: string | null;\n usp1Text?: string | null;\n usp2Title?: string | null;\n usp2Text?: string | null;\n id: string;\n}\n\nexport interface ProvinceModel {\n countryId?: string | null;\n countryIsoCode?: string | null;\n name?: string | null;\n seoText?: SeoText;\n id: string;\n}\n\nexport interface RegionModel {\n name?: string | null;\n id: string;\n}\n\nexport interface ResourceModel {\n title?: string | null;\n url?: string | null;\n resourceType?: string | null;\n contentType?: string | null;\n mediaNodeId?: string | null;\n lastUpdatedUtc?: string;\n metadata?: {\n [key: string]: string | null;\n } | null;\n}\n\nexport interface ResourceReference {\n ownerId?: string | null;\n ownerType?: string | null;\n isMainResource?: boolean | null;\n}\n\nexport interface Room {\n name?: string | null;\n type?: string | null;\n hasStairs?: boolean | null;\n length?: number | null;\n width?: number | null;\n height?: number | null;\n area?: number | null;\n volume?: number | null;\n renewedIn?: string | null;\n facilities?: string[] | null;\n}\n\nexport type SaleSpecification = 'ExclusiefBouwrente' | 'BtwBelast' | 'InclusiefBtw';\n\nexport type Salutation = 'Undefined' | 'Mr' | 'Mrs' | 'Ms';\n\nexport interface SeoText {\n saleTitle?: string | null;\n saleText?: string | null;\n rentalTitle?: string | null;\n rentalText?: string | null;\n}\n\nexport interface Time {\n hour?: number;\n minute?: number;\n}\n\nexport interface TimeRange {\n from?: Time;\n to?: Time;\n}\n\nexport interface UpdateApartmentBuildingModel {\n districtId?: string | null;\n alias?: string | null;\n displayName?: string | null;\n description?: string | null;\n propertyTypeIds?: string[] | null;\n sortIndex?: number;\n views?: ApartmentBuildingView[] | null;\n image?: UpdateResourceModel;\n}\n\nexport interface UpdateHouseSelectorBaseModel {\n districtId?: string | null;\n displayName?: string | null;\n description?: string | null;\n alias?: string | null;\n}\n\nexport interface UpdateHouseSelectorViewsModel {\n views?: HouseSelectorView[] | null;\n}\n\nexport interface UpdateResourceModel {\n title?: string | null;\n url?: string | null;\n resourceType?: string | null;\n contentType?: string | null;\n sortIndex?: number;\n references?: ResourceReference[] | null;\n metadata?: {\n [key: string]: string | null;\n } | null;\n}\n\nexport interface Vve {\n vveContribution?: number | null;\n hasMaintenanceForecast?: boolean | null;\n hasPeriodicContribution?: boolean | null;\n isRegisteredInKvK?: boolean | null;\n hasHomeInsurance?: boolean | null;\n hasReserveFunds?: boolean | null;\n hasMeetings?: boolean | null;\n}\n\nexport type WebchatType = 'None' | 'UnifiedCommunications' | 'Salesforce';\n\nexport interface WebsiteContactModel {\n enableWebchat?: boolean;\n webchatType?: WebchatType;\n webchatServer?: string | null;\n webchatUcc?: string | null;\n webchatChannelMenuName?: string | null;\n phoneNumber?: string | null;\n emailAddress?: string | null;\n facebookUrl?: string | null;\n pinterestUrl?: string | null;\n twitterUrl?: string | null;\n caseViaEmail?: boolean;\n openingHours?: OpeningHours;\n}\n\nexport interface WebsiteModel {\n mapboxTilesetId?: string | null;\n mapboxDatasetId?: string | null;\n url?: string | null;\n disablePropertyComparison?: boolean;\n enableCustomerCommunity?: boolean;\n enableFavourites?: boolean;\n enableMortgageCalculator?: boolean;\n secondLevelNavigationLabelSingular?: string | null;\n secondLevelNavigationLabelPlural?: string | null;\n skinName?: string | null;\n contactDetails?: WebsiteContactModel;\n showOnCorporateSite?: boolean;\n isMyEnvironmentIframeEnabled?: boolean;\n isNewDocumentsEnabled?: boolean;\n}\n\nexport interface ActivationEngineGetProfileQueryParams {\n areaId?: string;\n projectId?: string;\n}\n\nexport interface ApartmentBuildingQueryQueryParams {\n AreaProjectId?: string;\n ProjectPhaseId?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface ApartmentBuildingUpdateApartmentBuildingQueryParams {\n apiKey?: string;\n origin?: string;\n}\n\nexport interface ApartmentBuildingDeleteApartmentBuildingQueryParams {\n apiKey?: string;\n origin?: string;\n}\n\nexport interface ApartmentBuildingGetByExternalIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface AreaProjectGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface AreaProjectQueryQueryParams {\n CountryIsoCode?: string;\n HasLocationData?: boolean;\n CorporateSite?: boolean;\n include?: string;\n lang?: string;\n}\n\nexport interface CityGetByNameQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface CityGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface CityQueryQueryParams {\n CountryIsoCode?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface ConstructionNumberGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface ConstructionNumberQueryQueryParams {\n AreaProjectId?: string;\n DistrictId?: string;\n ProjectPhaseId?: string;\n PropertyTypeId?: string;\n MinPrice?: number;\n MaxPrice?: number;\n IncludeInactive?: boolean;\n include?: string;\n lang?: string;\n}\n\nexport interface CountryGetByIsoCodeQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface CountryGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface CountryQueryQueryParams {\n query?: CountryQuery;\n include?: string;\n lang?: string;\n}\n\nexport interface DistrictGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface DistrictQueryQueryParams {\n AreaProjectId?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface DocumentDownloadQueryParams {\n returnUrl?: string;\n}\n\nexport interface DocumentGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface DocumentQueryQueryParams {\n ProjectBisproNumber?: string;\n ProjectBisproNumbers?: string;\n ConstructionBisproNumbers?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface FundaQueryQueryParams {\n apiKey?: string;\n regionId?: string;\n query?: string;\n userType?: string;\n isAdmin?: boolean;\n allowedRegionIds?: string;\n}\n\nexport interface FundaGetQueryParams {\n apiKey?: string;\n id?: string;\n isAdmin?: boolean;\n userType?: string;\n}\n\nexport interface FundaSubmitQueryParams {\n apiKey?: string;\n id?: string;\n incrementVersion?: boolean;\n}\n\nexport interface FundaSubmitRouteQueryParams {\n apiKey?: string;\n incrementVersion?: boolean;\n}\n\nexport interface FundaRunTransactionCheckQueryParams {\n apiKey?: string;\n}\n\nexport interface FundaValidateQueryParams {\n apiKey?: string;\n id?: string;\n}\n\nexport interface FundaShowLastSubmittedProjectQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n}\n\nexport interface FundaShowConvertedFundaObjectQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n}\n\nexport interface FundaCompareFundaObjectRevisionChangesQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n gwnId?: number;\n}\n\nexport interface FundaShowFundaProjectLogsQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n}\n\nexport interface FundaExecuteFundaPublisherQueryParams {\n apiKey?: string;\n}\n\nexport interface FundaGetAllGwnVersionsByProjectIdQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n}\n\nexport interface FundaRemoveVersionFromGwnQueryParams {\n apiKey?: string;\n projectId?: string;\n projectFundaId?: number;\n projectCode?: string;\n nvmId?: string;\n}\n\nexport interface FundaGetActiveBrokersInGatewayQueryParams {\n apiKey?: string;\n}\n\nexport interface GrantGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface GrantQueryQueryParams {\n ProjectName?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface HouseSelectorQueryQueryParams {\n AreaProjectId?: string;\n DistrictId?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface HouseSelectorUpdateHouseSelectorQueryParams {\n apiKey?: string;\n}\n\nexport interface HouseSelectorDeleteHouseSelectorQueryParams {\n apiKey?: string;\n deleteDraft?: boolean;\n}\n\nexport interface HouseSelectorGetByExternalIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface HouseSelectorPublishHouseSelectorQueryParams {\n apiKey?: string;\n}\n\nexport interface HouseSelectorUpdateHouseSelectorViewsQueryParams {\n apiKey?: string;\n}\n\nexport interface HouseSelectorGetDraftByExternalIdQueryParams {\n apiKey?: string;\n lang?: string;\n}\n\nexport interface ProjectPhaseGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface ProjectPhaseQueryQueryParams {\n CountryIsoCode?: string;\n AreaProjectId?: string;\n IncludeInactive?: boolean;\n include?: string;\n lang?: string;\n}\n\nexport interface PropertyTypeGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface PropertyTypeQueryQueryParams {\n AreaProjectId?: string;\n DistrictId?: string;\n ProjectPhaseId?: string;\n IncludeInactive?: boolean;\n include?: string;\n lang?: string;\n}\n\nexport interface ProvinceGetByNameQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface ProvinceGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface ProvinceQueryQueryParams {\n CountryIsoCode?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface RedirectAreaNewsletterHeaderRedirectQueryParams {\n width?: string;\n height?: string;\n mode?: string;\n quality?: string;\n}\n\nexport interface RedirectAreaLogoRedirectQueryParams {\n width?: string;\n height?: string;\n mode?: string;\n quality?: string;\n}\n\nexport interface RedirectProjectNewsletterHeaderRedirectQueryParams {\n width?: string;\n height?: string;\n mode?: string;\n quality?: string;\n}\n\nexport interface RedirectProjectImageRedirectQueryParams {\n width?: string;\n height?: string;\n mode?: string;\n quality?: string;\n}\n\nexport interface RedirectPropertyTypeImageRedirectQueryParams {\n width?: string;\n height?: string;\n mode?: string;\n quality?: string;\n}\n\nexport interface RedirectConstructionNumberImageRedirectQueryParams {\n width?: string;\n height?: string;\n mode?: string;\n quality?: string;\n}\n\nexport interface RegionGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface RegionQueryQueryParams {\n AllowedRegionIds?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface ResourceUpdateResourceQueryParams {\n apiKey?: string;\n projectId?: string;\n}\n\nexport interface ResourceDeleteResourceQueryParams {\n apiKey?: string;\n projectId?: string;\n}\n\nexport const activationEngineGetProfile = (\n clientId: string,\n params?: ActivationEngineGetProfileQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ActivationEngineModel>(\n `/activationengine/profile/${clientId}`,\n params,\n config,\n ).then((res) => res!);\n\nexport const apartmentBuildingQuery = (\n params?: ApartmentBuildingQueryQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ApartmentBuildingModel[]>(`/apartmentbuildings`, params, config).then(\n (res) => res!,\n );\n\nexport const apartmentBuildingUpdateApartmentBuilding = (\n nodeId: string,\n body: UpdateApartmentBuildingModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/apartmentbuildings/${nodeId}`, body, config).then((res) => res!);\n\nexport const apartmentBuildingDeleteApartmentBuilding = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.delete<void>(`/apartmentbuildings/${nodeId}`, body, config).then((res) => res!);\n\nexport const apartmentBuildingGetByExternalId = (\n nodeId: string,\n params?: ApartmentBuildingGetByExternalIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ApartmentBuildingModel>(`/apartmentbuildings/${nodeId}`, params, config).then(\n (res) => res!,\n );\n\nexport const areaProjectGetById = (\n id: string,\n params?: AreaProjectGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<AreaProjectModel>(`/areaprojects/${id}`, params, config).then((res) => res!);\n\nexport const areaProjectQuery = (params?: AreaProjectQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<AreaProjectModel[]>(`/areaprojects`, params, config).then((res) => res!);\n\nexport const cityGetByName = (\n name: string,\n params?: CityGetByNameQueryParams,\n config?: RequestConfig,\n) => APIClient.get<CityModel>(`/cities/name/${name}`, params, config).then((res) => res!);\n\nexport const cityGetById = (id: string, params?: CityGetByIdQueryParams, config?: RequestConfig) =>\n APIClient.get<CityModel>(`/cities/${id}`, params, config).then((res) => res!);\n\nexport const cityQuery = (params?: CityQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<CityModel[]>(`/cities`, params, config).then((res) => res!);\n\nexport const constructionNumberGetById = (\n id: string,\n params?: ConstructionNumberGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberModel>(`/constructionnumbers/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const constructionNumberQuery = (\n params?: ConstructionNumberQueryQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberModel[]>(`/constructionnumbers`, params, config).then(\n (res) => res!,\n );\n\nexport const countryGetByIsoCode = (\n isoCode: string,\n params?: CountryGetByIsoCodeQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<CountryModel>(`/countries/isoCode/${isoCode}`, params, config).then(\n (res) => res!,\n );\n\nexport const countryGetById = (\n id: string,\n params?: CountryGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<CountryModel>(`/countries/${id}`, params, config).then((res) => res!);\n\nexport const countryQuery = (params?: CountryQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<CountryModel[]>(`/countries`, params, config).then((res) => res!);\n\nexport const digitalBrochureGetById = (id: string, params?: any, config?: RequestConfig) =>\n APIClient.get<DigitalBrochureModel>(`/digital-brochures/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const districtGetById = (\n id: string,\n params?: DistrictGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<DistrictModel>(`/districts/${id}`, params, config).then((res) => res!);\n\nexport const districtQuery = (params?: DistrictQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<DistrictModel[]>(`/districts`, params, config).then((res) => res!);\n\nexport const documentDownload = (\n id: string,\n fileName: string,\n params?: DocumentDownloadQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/documents/${id}/${fileName}`, params, config).then((res) => res!);\n\nexport const documentDownloadZip = (\n projectBisproNumber: string,\n constructionBisproNumber: string,\n params?: any,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(\n `/documents/zip/${projectBisproNumber}/${constructionBisproNumber}`,\n params,\n config,\n ).then((res) => res!);\n\nexport const documentGetById = (\n id: string,\n params?: DocumentGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<DocumentModel>(`/documents/${id}`, params, config).then((res) => res!);\n\nexport const documentQuery = (params?: DocumentQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<DocumentModel[]>(`/documents`, params, config).then((res) => res!);\n\nexport const formLead = (body: LeadFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/forms/lead`, body, config).then((res) => res!);\n\nexport const formCase = (body: CaseFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/forms/case`, body, config).then((res) => res!);\n\nexport const formDynamic = (body: DynamicFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/forms/dynamic`, body, config).then((res) => res!);\n\nexport const formDigitalBrochure = (body: DigitalBrochureRequestModel, config?: RequestConfig) =>\n APIClient.post<void>(`/forms/digital-brochure`, body, config).then((res) => res!);\n\nexport const fundaQuery = (params?: FundaQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProjectModel[]>(`/funda/query`, params, config).then((res) => res!);\n\nexport const fundaGet = (params?: FundaGetQueryParams, config?: RequestConfig) =>\n APIClient.get<void>(`/funda`, params, config).then((res) => res!);\n\nexport const fundaSubmit = (body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/funda/submit`, body, config).then((res) => res!);\n\nexport const fundaSubmitRoute = (id: string, body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/funda/submit/${id}`, body, config).then((res) => res!);\n\nexport const fundaRunTransactionCheck = (\n params?: FundaRunTransactionCheckQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/check`, params, config).then((res) => res!);\n\nexport const fundaValidate = (body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/funda/validate`, body, config).then((res) => res!);\n\nexport const fundaShowLastSubmittedProject = (\n params?: FundaShowLastSubmittedProjectQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/ShowLastSubmittedProject`, params, config).then((res) => res!);\n\nexport const fundaShowConvertedFundaObject = (\n params?: FundaShowConvertedFundaObjectQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/ShowConvertedFundaObject`, params, config).then((res) => res!);\n\nexport const fundaCompareFundaObjectRevisionChanges = (\n params?: FundaCompareFundaObjectRevisionChangesQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/funda/CompareFundaObjectRevisionChanges`, params, config).then(\n (res) => res!,\n );\n\nexport const fundaShowFundaProjectLogs = (\n params?: FundaShowFundaProjectLogsQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/ShowFundaProjectLogs`, params, config).then((res) => res!);\n\nexport const fundaExecuteFundaPublisher = (\n params?: FundaExecuteFundaPublisherQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/ExecuteFundaPublisher`, params, config).then((res) => res!);\n\nexport const fundaGetAllGwnVersionsByProjectId = (\n params?: FundaGetAllGwnVersionsByProjectIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/GetAllGwnVersionsByProjectId`, params, config).then((res) => res!);\n\nexport const fundaRemoveVersionFromGwn = (\n params?: FundaRemoveVersionFromGwnQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/RemoveVersionFromGwn`, params, config).then((res) => res!);\n\nexport const fundaGetActiveBrokersInGateway = (\n params?: FundaGetActiveBrokersInGatewayQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/GetActiveBrokersInGateway`, params, config).then((res) => res!);\n\nexport const grantGetById = (\n id: string,\n params?: GrantGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<GrantModel>(`/grants/${id}`, params, config).then((res) => res!);\n\nexport const grantQuery = (params?: GrantQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<GrantModel[]>(`/grants`, params, config).then((res) => res!);\n\nexport const houseSelectorQuery = (\n params?: HouseSelectorQueryQueryParams,\n config?: RequestConfig,\n) => APIClient.get<HouseSelectorModel[]>(`/houseselectors`, params, config).then((res) => res!);\n\nexport const houseSelectorUpdateHouseSelector = (\n nodeId: string,\n body: UpdateHouseSelectorBaseModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/houseselectors/${nodeId}`, body, config).then((res) => res!);\n\nexport const houseSelectorDeleteHouseSelector = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.delete<void>(`/houseselectors/${nodeId}`, body, config).then((res) => res!);\n\nexport const houseSelectorGetByExternalId = (\n nodeId: string,\n params?: HouseSelectorGetByExternalIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<HouseSelectorModel>(`/houseselectors/${nodeId}`, params, config).then(\n (res) => res!,\n );\n\nexport const houseSelectorPublishHouseSelector = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.put<void>(`/houseselectors/${nodeId}/publish`, body, config).then((res) => res!);\n\nexport const houseSelectorUpdateHouseSelectorViews = (\n nodeId: string,\n body: UpdateHouseSelectorViewsModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/houseselectors/${nodeId}/views`, body, config).then((res) => res!);\n\nexport const houseSelectorGetDraftByExternalId = (\n nodeId: string,\n params?: HouseSelectorGetDraftByExternalIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<HouseSelectorModel>(`/houseselectors/${nodeId}/draft`, params, config).then(\n (res) => res!,\n );\n\nexport const projectPhaseGetById = (\n id: string,\n params?: ProjectPhaseGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<ProjectPhaseModel>(`/projectphases/${id}`, params, config).then((res) => res!);\n\nexport const projectPhaseQuery = (params?: ProjectPhaseQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProjectPhaseModel[]>(`/projectphases`, params, config).then((res) => res!);\n\nexport const propertyTypeGetById = (\n id: string,\n params?: PropertyTypeGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<PropertyTypeModel>(`/propertytypes/${id}`, params, config).then((res) => res!);\n\nexport const propertyTypeQuery = (params?: PropertyTypeQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<PropertyTypeModel[]>(`/propertytypes`, params, config).then((res) => res!);\n\nexport const provinceGetByName = (\n name: string,\n params?: ProvinceGetByNameQueryParams,\n config?: RequestConfig,\n) => APIClient.get<ProvinceModel>(`/provinces/name/${name}`, params, config).then((res) => res!);\n\nexport const provinceGetById = (\n id: string,\n params?: ProvinceGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<ProvinceModel>(`/provinces/${id}`, params, config).then((res) => res!);\n\nexport const provinceQuery = (params?: ProvinceQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProvinceModel[]>(`/provinces`, params, config).then((res) => res!);\n\nexport const redirectAreaNewsletterHeaderRedirect = (\n areaId: string,\n extension: string,\n params?: RedirectAreaNewsletterHeaderRedirectQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/redirect/media/area/${areaId}.${extension}`, params, config).then(\n (res) => res!,\n );\n\nexport const redirectAreaLogoRedirect = (\n areaId: string,\n extension: string,\n params?: RedirectAreaLogoRedirectQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/redirect/media/logo/${areaId}.${extension}`, params, config).then(\n (res) => res!,\n );\n\nexport const redirectProjectNewsletterHeaderRedirect = (\n projectId: string,\n extension: string,\n params?: RedirectProjectNewsletterHeaderRedirectQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(\n `/redirect/media/newsletter/${projectId}.${extension}`,\n params,\n config,\n ).then((res) => res!);\n\nexport const redirectProjectImageRedirect = (\n projectId: string,\n extension: string,\n params?: RedirectProjectImageRedirectQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/redirect/media/project/${projectId}.${extension}`, params, config).then(\n (res) => res!,\n );\n\nexport const redirectPropertyTypeImageRedirect = (\n propertyTypeId: string,\n extension: string,\n params?: RedirectPropertyTypeImageRedirectQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(\n `/redirect/media/woningtype/${propertyTypeId}.${extension}`,\n params,\n config,\n ).then((res) => res!);\n\nexport const redirectConstructionNumberImageRedirect = (\n constructionNumberId: string,\n extension: string,\n params?: RedirectConstructionNumberImageRedirectQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(\n `/redirect/media/bouwnummer/${constructionNumberId}.${extension}`,\n params,\n config,\n ).then((res) => res!);\n\nexport const redirectRelationsListRedirect = (params?: any, config?: RequestConfig) =>\n APIClient.get<void>(`/redirect/media/resource/relations`, params, config).then((res) => res!);\n\nexport const regionGetById = (\n id: string,\n params?: RegionGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<RegionModel>(`/region/${id}`, params, config).then((res) => res!);\n\nexport const regionQuery = (params?: RegionQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<RegionModel[]>(`/region`, params, config).then((res) => res!);\n\nexport const resourceUpdateResource = (\n mediaId: string,\n body: UpdateResourceModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/resources/${mediaId}`, body, config).then((res) => res!);\n\nexport const resourceDeleteResource = (mediaId: string, body: any, config?: RequestConfig) =>\n APIClient.delete<void>(`/resources/${mediaId}`, body, config).then((res) => res!);\n"]}
|
|
1
|
+
{"version":3,"file":"bpd-client.js","sourceRoot":"","sources":["../../src/generated/bpd-client.ts"],"names":[],"mappings":"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","sourcesContent":["/* Generated by oats-generator */\n\n/* eslint-disable @typescript-eslint/interface-name-prefix */\n\nimport { APIClient } from '../api';\nimport { RequestConfig } from '../api/http';\n\nexport interface ActivationEngineModel {\n areaPhase?: string | null;\n customerJourneyPhase?: string | null;\n constructionNumberIds?: string[] | null;\n}\n\nexport interface AddressLight {\n street?: string | null;\n number?: string | null;\n numberSuffix?: string | null;\n postalCode?: string | null;\n city?: string | null;\n}\n\nexport interface ApartmentBuildingModel {\n areaProjectId?: string | null;\n projectPhaseId?: string | null;\n projectPhaseName?: string | null;\n displayName?: string | null;\n alias?: string | null;\n nodeId?: string | null;\n propertyTypeIds?: string[] | null;\n constructionNumberIds?: string[] | null;\n image?: ResourceModel;\n geometry?: PolygonModel[] | null;\n views?: ApartmentBuildingView[] | null;\n id: string;\n}\n\nexport interface ApartmentBuildingView {\n id?: string | null;\n imageUrl?: string | null;\n type?: string | null;\n sourceUrl?: string | null;\n label?: string | null;\n buttonLabel?: string | null;\n rotateLeftViewId?: string | null;\n rotateRightViewId?: string | null;\n pointers?: ApartmentBuildingViewPointer[] | null;\n}\n\nexport interface ApartmentBuildingViewPointer {\n type?: string | null;\n coordinates?: number[] | null;\n constructionNumberId?: string | null;\n linkToViewId?: string | null;\n label?: string | null;\n alignment?: string | null;\n compassDirection?: string | null;\n}\n\nexport interface AreaProjectModel {\n name?: string | null;\n shortDescription?: string | null;\n regionId?: string | null;\n countryName?: string | null;\n municipalityName?: string | null;\n url?: string | null;\n isSingleProject?: boolean;\n isCompleted?: boolean;\n status?: AreaStatus;\n image?: ResourceModel;\n location?: number[] | null;\n geometry?: PolygonModel[] | null;\n sustainabilitySubjects?: string[] | null;\n sustainabilityInfoText?: string | null;\n mapboxDatasetId?: string | null;\n mapboxTilesetId?: string | null;\n caseViaEmail?: boolean;\n website?: WebsiteModel;\n id: string;\n}\n\nexport type AreaStatus = 'InPreparation' | 'OnSale' | 'Sold';\n\nexport type CRSType = 'unspecified' | 'name' | 'link';\n\nexport interface CaseFormModel {\n areaProjectId?: string | null;\n districtId?: string | null;\n projectId?: string | null;\n propertyTypeId?: string | null;\n regionId?: string | null;\n firstName?: string | null;\n lastName?: string | null;\n lastNamePrefix?: string | null;\n email: string;\n message: string;\n contactReason?: string | null;\n phoneNumber?: string | null;\n webcareSubject?: string | null;\n complaintCategory?: string | null;\n chatUrl?: string | null;\n mailTo?: string | null;\n referringUrl?: string | null;\n}\n\nexport interface CityModel {\n countryId?: string | null;\n countryIsoCode?: string | null;\n provinceId?: string | null;\n name?: string | null;\n municipalityName?: string | null;\n seoText?: SeoText;\n id: string;\n}\n\nexport interface ConstructionNumberLight {\n id?: string | null;\n propertyId?: string | null;\n propertyName?: string | null;\n number?: string | null;\n specification?: string | null;\n description?: string | null;\n status?: string | null;\n underConstruction?: boolean;\n salesPrice?: number | null;\n priceCondition?: string | null;\n priceType?: string | null;\n livingArea?: number | null;\n volume?: number | null;\n lotArea?: number | null;\n plotArea?: number | null;\n numberOfRooms?: number | null;\n numberOfBedooms?: number | null;\n address?: AddressLight;\n gardens?: GardenLight[] | null;\n mainFloorNumber?: string | null;\n floors?: FloorLight[] | null;\n}\n\nexport interface ConstructionNumberModel {\n areaProjectId?: string | null;\n districtId?: string | null;\n projectPhaseId?: string | null;\n bisproNumber?: string | null;\n projectBisproNumber?: string | null;\n organizationBisproNumber?: string | null;\n projectPhaseName?: string | null;\n propertyTypeId?: string | null;\n propertyTypeName?: string | null;\n apartmentBuildingId?: string | null;\n identifier?: string | null;\n serviceCostsPerMonth?: number;\n security?: number | null;\n wishlistItemCount?: number;\n numberOfReserveCandidates?: number;\n availabilityStatus?: ConstructionNumberStatus;\n shortDescription?: string | null;\n longDescription?: string | null;\n houseSubType?: string | null;\n deliveryDate?: string | null;\n geometry?: PolygonModel[] | null;\n resources?: ResourceModel[] | null;\n groundLease?: GroundLease;\n mainImage?: ResourceModel;\n specifications?: ConstructionNumberSpecifications;\n salesPrice?: PropertySalesPrice;\n rentalPrice?: PropertyRentalPrice;\n landRegistration?: LandRegistrationDetails;\n extraSpecifications?: ExtraSpecifications;\n isEnergyNeutral?: boolean;\n numberOfFloors?: number | null;\n mainFloorNumber?: string | null;\n floors?: Floor[] | null;\n gardens?: GardenModel[] | null;\n outsideSpace?: OutsideSpaceModel[] | null;\n outbuildings?: Outbuilding[] | null;\n id: string;\n}\n\nexport interface ConstructionNumberSpecifications {\n nonLivingArea?: DecimalRange;\n buildingRelatedExternalSpace?: DecimalRange;\n externalStorage?: DecimalRange;\n characteristic?: string | null;\n sunDirection?: string | null;\n rooms?: DecimalRange;\n bedrooms?: DecimalRange;\n livingArea?: DecimalRange;\n livingRoomArea?: DecimalRange;\n plotArea?: DecimalRange;\n volume?: DecimalRange;\n}\n\nexport type ConstructionNumberStatus = 'Available' | 'InOption' | 'Sold' | 'Reserved';\n\nexport interface CountryModel {\n isoCode?: string | null;\n name?: string | null;\n englishName?: string | null;\n seoText?: SeoText;\n id: string;\n}\n\nexport interface CountryQuery {\n [key: string]: any;\n}\n\nexport interface CustomerJourneyMilestone {\n type?: CustomerJourneyMilestoneType;\n date?: string;\n nodeId?: string | null;\n url?: string | null;\n}\n\nexport type CustomerJourneyMilestoneType =\n | 'None'\n | 'NewPhaseAnnouncement'\n | 'SalesProcess'\n | 'ConceptAi'\n | 'ConstructionNumbersOnline'\n | 'FinalImages'\n | 'FinalPrices'\n | 'StartSaleAnnouncement'\n | 'WhatsIncluded'\n | 'StartSale'\n | 'ConstructionAwarded';\n\nexport interface DecimalRange {\n from?: number;\n to?: number | null;\n}\n\nexport interface DigitalBrochureModel {\n dateCreated?: string;\n data?: string | null;\n pageUrl?: string | null;\n id: string;\n}\n\nexport interface DigitalBrochureRequestModel {\n projectId?: string | null;\n areaId?: string | null;\n propertyId?: string | null;\n constructionNumberId?: string | null;\n firstName?: string | null;\n sufix?: string | null;\n lastName?: string | null;\n email?: string | null;\n data?: string | null;\n pageUrl?: string | null;\n documentName?: string | null;\n}\n\nexport interface DistrictModel {\n areaProjectId?: string | null;\n name?: string | null;\n url?: string | null;\n location?: number[] | null;\n geometry?: PolygonModel[] | null;\n isSold?: boolean;\n enableWishlist?: boolean;\n descriptionTitle?: string | null;\n description?: string | null;\n image?: ResourceModel;\n id: string;\n}\n\nexport interface DocumentModel {\n projectBisproNumber?: string | null;\n filename?: string | null;\n publicationDate?: string | null;\n title?: string | null;\n contentType?: string | null;\n documentType?: string | null;\n documentSubtype?: string | null;\n constructionBisproNumbers?: string[] | null;\n organizationBisproNumber?: string | null;\n isConcept?: boolean;\n url?: string | null;\n id: string;\n}\n\nexport interface DynamicFormModel {\n objectName?: string | null;\n mailTo?: string | null;\n fields?: {\n [key: string]: string | null;\n } | null;\n}\n\nexport interface ExtraSpecifications {\n quality?: string | null;\n isPermanentResidence?: boolean | null;\n isRecreationalResidence?: boolean | null;\n isInPark?: boolean | null;\n isPractice?: boolean | null;\n hasExternalStorage?: boolean | null;\n hasVveChecklist?: boolean | null;\n hasOpenPorch?: boolean | null;\n location?: string[] | null;\n certifications?: string[] | null;\n hotWater?: string[] | null;\n facilities?: string[] | null;\n isolation?: string[] | null;\n heating?: string[] | null;\n cooling?: string[] | null;\n energyPerformance?: string[] | null;\n remarks?: string[] | null;\n additionalConditions?: string[] | null;\n roofMaterial?: string | null;\n roofType?: string | null;\n roofRemarks?: string | null;\n energyLabel?: string | null;\n maintenanceInside?: string | null;\n maintenanceOutside?: string | null;\n vve?: Vve;\n}\n\nexport interface Feature {\n type?: GeoJSONObjectType;\n id?: string | null;\n geometry: IGeometryObject;\n properties: { [key: string]: any } | null;\n bbox?: number[] | null;\n crs?: ICRSObject;\n}\n\nexport interface FeatureCollection {\n type?: GeoJSONObjectType;\n features: Feature[];\n bbox?: number[] | null;\n crs?: ICRSObject;\n}\n\nexport interface Floor {\n name?: string | null;\n type?: string | null;\n floorNumber?: string | null;\n totalNumberOfRooms?: number | null;\n totalNumberOfBedrooms?: number | null;\n rooms?: Room[] | null;\n id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface FloorLight {\n name?: string | null;\n type?: string | null;\n floorNumber?: string | null;\n}\n\nexport interface GardenLight {\n type?: string | null;\n position?: string | null;\n size?: number | null;\n hasBackEntrance?: boolean | null;\n isMain?: boolean;\n}\n\nexport interface GardenModel {\n id?: string | null;\n type?: string | null;\n position?: string | null;\n length?: number | null;\n width?: number | null;\n area?: number | null;\n hasBackEntrance?: boolean | null;\n isMain?: boolean;\n}\n\nexport type GeoJSONObjectType =\n | 'Point'\n | 'MultiPoint'\n | 'LineString'\n | 'MultiLineString'\n | 'Polygon'\n | 'MultiPolygon'\n | 'GeometryCollection'\n | 'Feature'\n | 'FeatureCollection';\n\nexport interface GrantModel {\n displayOnMap?: boolean;\n projectName?: string | null;\n cityName?: string | null;\n location?: number[] | null;\n status?: GrantStatus;\n id: string;\n}\n\nexport type GrantStatus = 'NotActive' | 'ApplicationGranted';\n\nexport interface GroundLease {\n priceWithCanonDecimal?: number | null;\n canonPercentageYearly?: number | null;\n canonAmountYearlyDecimal?: number | null;\n canonPercentage10Year?: number | null;\n canonAmount10YearDecimal?: number | null;\n canonPercentage25Year?: number | null;\n canonAmount25YearDecimal?: number | null;\n buyOffAmountDecimal?: number | null;\n priceWithBuyOffDecimal?: number | null;\n}\n\nexport type HolidayFrequency = 'Once' | 'Monthly' | 'Yearly';\n\nexport interface HouseSelectorModel {\n areaProjectId?: string | null;\n districtId?: string | null;\n displayName?: string | null;\n alias?: string | null;\n nodeId?: string | null;\n views?: HouseSelectorView[] | null;\n id: string;\n}\n\nexport interface HouseSelectorObject {\n objectType?: string | null;\n objectId?: string | null;\n point?: Point;\n polygon?: Point[] | null;\n linkToViewId?: string | null;\n label?: string | null;\n url?: string | null;\n iconName?: string | null;\n}\n\nexport interface HouseSelectorView {\n id?: string | null;\n name?: string | null;\n imageUrl?: string | null;\n imageMediaId?: number;\n objects?: HouseSelectorObject[] | null;\n}\n\nexport interface ICRSObject {\n type?: CRSType;\n}\n\nexport interface IGeometryObject {\n type?: GeoJSONObjectType;\n}\n\nexport interface LandRegistrationDetails {\n name?: string | null;\n proportion?: string | null;\n purchaseOption?: boolean | null;\n dateOfRequest?: string | null;\n durationOfLeaseHold?: string | null;\n isPermanentlyBought?: boolean | null;\n leaseHoldProvider?: string | null;\n leaseHoldPerYear?: number | null;\n cityHall?: string | null;\n municipalityId?: string | null;\n municipalityCode?: string | null;\n number?: string | null;\n scope?: string | null;\n area?: number | null;\n section?: string | null;\n type?: string | null;\n fixedVariable?: string | null;\n propertyTypeType?: string | null;\n propertyType?: string | null;\n plot?: string | null;\n constructionNumberId?: string | null;\n id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface LeadFormModel {\n projectId?: string | null;\n propertyTypeId?: string | null;\n constructionNumberId?: string | null;\n areaProjectId?: string | null;\n districtId?: string | null;\n leadSource?: string | null;\n referringUrl?: string | null;\n salutation?: Salutation;\n initials?: string | null;\n firstName?: string | null;\n lastName?: string | null;\n lastNamePrefix?: string | null;\n street?: string | null;\n houseNumber?: string | null;\n houseNumberAddition?: string | null;\n postalCode?: string | null;\n city?: string | null;\n phone?: string | null;\n mobilePhone?: string | null;\n email?: string | null;\n countryId?: string | null;\n brochureId?: string | null;\n comment?: string | null;\n intendedUsage?: string | null;\n purchaseTimeframe?: string | null;\n financialCheck?: string | null;\n}\n\nexport interface OpeningHours {\n name?: string | null;\n isActive?: boolean;\n isDefault?: boolean;\n monday?: TimeRange;\n tuesday?: TimeRange;\n wednesday?: TimeRange;\n thursday?: TimeRange;\n friday?: TimeRange;\n saturday?: TimeRange;\n sunday?: TimeRange;\n holidays?: OpeningHoursHoliday[] | null;\n id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface OpeningHoursHoliday {\n name?: string | null;\n startDate?: string;\n endDate?: string | null;\n openingHours?: TimeRange;\n frequency?: HolidayFrequency;\n}\n\nexport interface Outbuilding {\n typeCode?: string | null;\n name?: string | null;\n geometry?: FeatureCollection;\n type?: string | null;\n outbuildingType?: string | null;\n length?: number | null;\n width?: number | null;\n area?: number | null;\n isolation?: string[] | null;\n facilities?: string[] | null;\n facilitiesRemarks?: string | null;\n situation?: string | null;\n capacity?: number | null;\n id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface OutsideSpaceModel {\n id?: string | null;\n type?: string | null;\n position?: string | null;\n length?: number | null;\n width?: number | null;\n area?: number | null;\n hasBackEntrance?: boolean | null;\n}\n\nexport interface PipelineProjectModel {\n name?: string | null;\n status?: PipelineProjectStatus;\n isActive?: boolean;\n id: string;\n}\n\nexport interface PipelineProjectQuery {\n [key: string]: any;\n}\n\nexport type PipelineProjectStatus =\n | 'InPreparation'\n | 'UnderConstruction'\n | 'Finished'\n | 'SoonForRent'\n | 'ForRent'\n | 'Rented';\n\nexport interface Point {\n x?: number;\n y?: number;\n}\n\nexport interface PolygonModel {\n coordinates?: number[][] | null;\n}\n\nexport type PriceCondition = 'VrijOpNaam' | 'KostenKoper';\n\nexport type PriceType =\n | 'ExactSum'\n | 'AskingPrice'\n | 'StartsFrom'\n | 'Indication'\n | 'Circa'\n | 'PriceOnRequest';\n\nexport interface ProblemDetails {\n type?: string | null;\n title?: string | null;\n status?: number | null;\n detail?: string | null;\n instance?: string | null;\n}\n\nexport interface ProjectModel {\n id?: string | null;\n name?: string | null;\n cityName?: string | null;\n fundaStatus?: string | null;\n fundaLastSyncDate?: string | null;\n fundaGatewayTransactionId?: number | null;\n fundaId?: number | null;\n connectionVersion?: string | null;\n userType?: string | null;\n gwnProjectVersion?: string | null;\n isAdmin?: boolean;\n}\n\nexport interface ProjectPhaseModel {\n areaProjectId?: string | null;\n bisproNumber?: string | null;\n organisationBisproNumber?: string | null;\n areaProjectName?: string | null;\n districtId?: string | null;\n name?: string | null;\n url?: string | null;\n districtUrl?: string | null;\n shortDescription?: string | null;\n longDescription?: string | null;\n status?: ProjectPhaseStatus;\n estimatedSaleStartDate?: string | null;\n saleStartDate?: string | null;\n saleEndDate?: string | null;\n allocationDate?: string | null;\n awardDate?: string | null;\n cityName?: string | null;\n municipalityName?: string | null;\n provinceName?: string | null;\n sortIndex?: number | null;\n environmentTypes?: string[] | null;\n deliveryStartDate?: string | null;\n constructionStartDate?: string | null;\n isRental?: boolean;\n isDigitalBrochureEnabled?: boolean;\n isNewDocumentsEnabled?: boolean;\n indicationServiceCosts?: number | null;\n indicationSecurity?: number | null;\n location?: number[] | null;\n geometry?: PolygonModel[] | null;\n resources?: ResourceModel[] | null;\n mainImage?: ResourceModel;\n propertySpecifications?: PropertySpecifications;\n propertyPurchasePrice?: PropertySalesPrice;\n propertyRentalPrice?: PropertyRentalPrice;\n houseTypes?: string[] | null;\n customerJourneyMilestones?: CustomerJourneyMilestone[] | null;\n id: string;\n}\n\nexport type ProjectPhaseStatus =\n | 'InPreparation'\n | 'OnSale'\n | 'Sold'\n | 'ForRent'\n | 'Rented'\n | 'NotActive';\n\nexport interface PropertyLight {\n id?: string | null;\n projectId?: string | null;\n areaId?: string | null;\n name?: string | null;\n description?: string | null;\n salesPriceFrom?: number | null;\n salesPriceTo?: number | null;\n livingAreaFrom?: number | null;\n livingAreaTo?: number | null;\n lotAreaFrom?: number | null;\n lotAreaTo?: number | null;\n volumeFrom?: number | null;\n volumeTo?: number | null;\n numberOfRoomsFrom?: number | null;\n numberOfRoomsTo?: number | null;\n numberOfBedroomsFrom?: number | null;\n numberOfBedroomsTo?: number | null;\n imageUrl?: string | null;\n url?: string | null;\n}\n\nexport interface PropertyRentalPrice {\n deposit?: number | null;\n amount?: DecimalRange;\n priceType?: PriceType;\n priceTypeFunda?: string | null;\n monthlyServiceCosts?: number | null;\n}\n\nexport interface PropertySalesPrice {\n condition?: PriceCondition;\n saleSpecification?: SaleSpecification;\n amount?: DecimalRange;\n priceType?: PriceType;\n priceTypeFunda?: string | null;\n monthlyServiceCosts?: number | null;\n}\n\nexport interface PropertySpecifications {\n rooms?: DecimalRange;\n bedrooms?: DecimalRange;\n livingArea?: DecimalRange;\n livingRoomArea?: DecimalRange;\n plotArea?: DecimalRange;\n volume?: DecimalRange;\n}\n\nexport interface PropertyTypeModel {\n areaProjectId?: string | null;\n districtId?: string | null;\n projectPhaseId?: string | null;\n projectPhaseName?: string | null;\n name?: string | null;\n shortDescription?: string | null;\n longDescription?: string | null;\n houseType?: string | null;\n houseSubType?: string | null;\n sortIndex?: number | null;\n environmentTypes?: string[] | null;\n hasBalcony?: boolean;\n isRental?: boolean;\n groundLease?: GroundLease;\n geometry?: PolygonModel[] | null;\n resources?: ResourceModel[] | null;\n mainImage?: ResourceModel;\n deliveryStartDate?: string | null;\n constructionStartDate?: string | null;\n indicationServiceCosts?: number | null;\n indicationSecurity?: number | null;\n specifications?: PropertySpecifications;\n salesPrice?: PropertySalesPrice;\n rentalPrice?: PropertyRentalPrice;\n canShowPrice?: boolean;\n extraSpecifications?: ExtraSpecifications;\n numberOfFloors?: number | null;\n mainFloorNumber?: string | null;\n floors?: Floor[] | null;\n gardens?: GardenModel[] | null;\n outsideSpace?: OutsideSpaceModel[] | null;\n outbuildings?: Outbuilding[] | null;\n usp1Title?: string | null;\n usp1Text?: string | null;\n usp2Title?: string | null;\n usp2Text?: string | null;\n id: string;\n}\n\nexport interface ProvinceModel {\n countryId?: string | null;\n countryIsoCode?: string | null;\n name?: string | null;\n seoText?: SeoText;\n id: string;\n}\n\nexport interface RegionModel {\n name?: string | null;\n id: string;\n}\n\nexport interface ResourceModel {\n title?: string | null;\n url?: string | null;\n resourceType?: string | null;\n contentType?: string | null;\n mediaNodeId?: string | null;\n lastUpdatedUtc?: string;\n metadata?: {\n [key: string]: string | null;\n } | null;\n}\n\nexport interface ResourceReference {\n ownerId?: string | null;\n ownerType?: string | null;\n isMainResource?: boolean | null;\n}\n\nexport interface Room {\n name?: string | null;\n type?: string | null;\n hasStairs?: boolean | null;\n length?: number | null;\n width?: number | null;\n height?: number | null;\n area?: number | null;\n volume?: number | null;\n renewedIn?: string | null;\n facilities?: string[] | null;\n}\n\nexport type SaleSpecification = 'ExclusiefBouwrente' | 'BtwBelast' | 'InclusiefBtw';\n\nexport type Salutation = 'Undefined' | 'Mr' | 'Mrs' | 'Ms';\n\nexport interface SeoText {\n saleTitle?: string | null;\n saleText?: string | null;\n rentalTitle?: string | null;\n rentalText?: string | null;\n}\n\nexport interface Time {\n hour?: number;\n minute?: number;\n}\n\nexport interface TimeRange {\n from?: Time;\n to?: Time;\n}\n\nexport interface UpdateApartmentBuildingModel {\n districtId?: string | null;\n alias?: string | null;\n displayName?: string | null;\n description?: string | null;\n propertyTypeIds?: string[] | null;\n sortIndex?: number;\n views?: ApartmentBuildingView[] | null;\n image?: UpdateResourceModel;\n}\n\nexport interface UpdateHouseSelectorBaseModel {\n districtId?: string | null;\n displayName?: string | null;\n description?: string | null;\n alias?: string | null;\n}\n\nexport interface UpdateHouseSelectorViewsModel {\n views?: HouseSelectorView[] | null;\n}\n\nexport interface UpdateResourceModel {\n title?: string | null;\n url?: string | null;\n resourceType?: string | null;\n contentType?: string | null;\n sortIndex?: number;\n references?: ResourceReference[] | null;\n metadata?: {\n [key: string]: string | null;\n } | null;\n}\n\nexport interface Vve {\n vveContribution?: number | null;\n hasMaintenanceForecast?: boolean | null;\n hasPeriodicContribution?: boolean | null;\n isRegisteredInKvK?: boolean | null;\n hasHomeInsurance?: boolean | null;\n hasReserveFunds?: boolean | null;\n hasMeetings?: boolean | null;\n}\n\nexport type WebchatType = 'None' | 'UnifiedCommunications' | 'Salesforce';\n\nexport interface WebsiteContactModel {\n enableWebchat?: boolean;\n webchatType?: WebchatType;\n webchatServer?: string | null;\n webchatUcc?: string | null;\n webchatChannelMenuName?: string | null;\n phoneNumber?: string | null;\n emailAddress?: string | null;\n facebookUrl?: string | null;\n pinterestUrl?: string | null;\n twitterUrl?: string | null;\n caseViaEmail?: boolean;\n openingHours?: OpeningHours;\n}\n\nexport interface WebsiteModel {\n mapboxTilesetId?: string | null;\n mapboxDatasetId?: string | null;\n url?: string | null;\n disablePropertyComparison?: boolean;\n enableCustomerCommunity?: boolean;\n enableFavourites?: boolean;\n enableMortgageCalculator?: boolean;\n secondLevelNavigationLabelSingular?: string | null;\n secondLevelNavigationLabelPlural?: string | null;\n skinName?: string | null;\n contactDetails?: WebsiteContactModel;\n showOnCorporateSite?: boolean;\n isMyEnvironmentIframeEnabled?: boolean;\n isNewDocumentsEnabled?: boolean;\n}\n\nexport interface ActivationEngineGetProfileQueryParams {\n areaId?: string;\n projectId?: string;\n}\n\nexport interface ApartmentBuildingQueryQueryParams {\n AreaProjectId?: string;\n ProjectPhaseId?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface ApartmentBuildingUpdateApartmentBuildingQueryParams {\n apiKey?: string;\n origin?: string;\n}\n\nexport interface ApartmentBuildingDeleteApartmentBuildingQueryParams {\n apiKey?: string;\n origin?: string;\n}\n\nexport interface ApartmentBuildingGetByExternalIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface AreaProjectGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface AreaProjectQueryQueryParams {\n CountryIsoCode?: string;\n HasLocationData?: boolean;\n CorporateSite?: boolean;\n include?: string;\n lang?: string;\n}\n\nexport interface CityGetByNameQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface CityGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface CityQueryQueryParams {\n CountryIsoCode?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface ConstructionNumberGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface ConstructionNumberQueryQueryParams {\n AreaProjectId?: string;\n DistrictId?: string;\n ProjectPhaseId?: string;\n PropertyTypeId?: string;\n MinPrice?: number;\n MaxPrice?: number;\n IncludeInactive?: boolean;\n include?: string;\n lang?: string;\n}\n\nexport interface CountryGetByIsoCodeQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface CountryGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface CountryQueryQueryParams {\n query?: CountryQuery;\n include?: string;\n lang?: string;\n}\n\nexport interface DistrictGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface DistrictQueryQueryParams {\n AreaProjectId?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface DocumentGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface DocumentQueryQueryParams {\n OrganizationBisproNumber?: string;\n ProjectBisproNumber?: string;\n ProjectBisproNumbers?: string;\n ConstructionBisproNumbers?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface FundaQueryQueryParams {\n apiKey?: string;\n regionId?: string;\n query?: string;\n userType?: string;\n isAdmin?: boolean;\n allowedRegionIds?: string;\n}\n\nexport interface FundaGetQueryParams {\n apiKey?: string;\n id?: string;\n isAdmin?: boolean;\n userType?: string;\n}\n\nexport interface FundaSubmitQueryParams {\n apiKey?: string;\n id?: string;\n incrementVersion?: boolean;\n}\n\nexport interface FundaSubmitRouteQueryParams {\n apiKey?: string;\n incrementVersion?: boolean;\n}\n\nexport interface FundaRunTransactionCheckQueryParams {\n apiKey?: string;\n}\n\nexport interface FundaValidateQueryParams {\n apiKey?: string;\n id?: string;\n}\n\nexport interface FundaShowLastSubmittedProjectQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n}\n\nexport interface FundaShowConvertedFundaObjectQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n}\n\nexport interface FundaCompareFundaObjectRevisionChangesQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n gwnId?: number;\n}\n\nexport interface FundaShowFundaProjectLogsQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n}\n\nexport interface FundaExecuteFundaPublisherQueryParams {\n apiKey?: string;\n}\n\nexport interface FundaGetAllGwnVersionsByProjectIdQueryParams {\n apiKey?: string;\n projectCrmId?: string;\n}\n\nexport interface FundaRemoveVersionFromGwnQueryParams {\n apiKey?: string;\n projectId?: string;\n projectFundaId?: number;\n projectCode?: string;\n nvmId?: string;\n}\n\nexport interface FundaGetActiveBrokersInGatewayQueryParams {\n apiKey?: string;\n}\n\nexport interface GrantGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface GrantQueryQueryParams {\n ProjectName?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface HouseSelectorQueryQueryParams {\n AreaProjectId?: string;\n DistrictId?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface HouseSelectorUpdateHouseSelectorQueryParams {\n apiKey?: string;\n}\n\nexport interface HouseSelectorDeleteHouseSelectorQueryParams {\n apiKey?: string;\n deleteDraft?: boolean;\n}\n\nexport interface HouseSelectorGetByExternalIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface HouseSelectorPublishHouseSelectorQueryParams {\n apiKey?: string;\n}\n\nexport interface HouseSelectorUpdateHouseSelectorViewsQueryParams {\n apiKey?: string;\n}\n\nexport interface HouseSelectorGetDraftByExternalIdQueryParams {\n apiKey?: string;\n lang?: string;\n}\n\nexport interface PipelineProjectGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface PipelineProjectQueryQueryParams {\n query?: PipelineProjectQuery;\n include?: string;\n lang?: string;\n}\n\nexport interface ProjectPhaseGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface ProjectPhaseQueryQueryParams {\n CountryIsoCode?: string;\n AreaProjectId?: string;\n IncludeInactive?: boolean;\n include?: string;\n lang?: string;\n}\n\nexport interface PropertyTypeGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface PropertyTypeQueryQueryParams {\n AreaProjectId?: string;\n DistrictId?: string;\n ProjectPhaseId?: string;\n IncludeInactive?: boolean;\n include?: string;\n lang?: string;\n}\n\nexport interface ProvinceGetByNameQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface ProvinceGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface ProvinceQueryQueryParams {\n CountryIsoCode?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface RegionGetByIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface RegionQueryQueryParams {\n AllowedRegionIds?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface ResourceUpdateResourceQueryParams {\n apiKey?: string;\n projectId?: string;\n}\n\nexport interface ResourceDeleteResourceQueryParams {\n apiKey?: string;\n projectId?: string;\n}\n\nexport const activationEngineGetProfile = (\n clientId: string,\n params?: ActivationEngineGetProfileQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ActivationEngineModel>(\n `/activationengine/profile/${clientId}`,\n params,\n config,\n ).then((res) => res!);\n\nexport const apartmentBuildingQuery = (\n params?: ApartmentBuildingQueryQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ApartmentBuildingModel[]>(`/apartmentbuildings`, params, config).then(\n (res) => res!,\n );\n\nexport const apartmentBuildingUpdateApartmentBuilding = (\n nodeId: string,\n body: UpdateApartmentBuildingModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/apartmentbuildings/${nodeId}`, body, config).then((res) => res!);\n\nexport const apartmentBuildingDeleteApartmentBuilding = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.delete<void>(`/apartmentbuildings/${nodeId}`, body, config).then((res) => res!);\n\nexport const apartmentBuildingGetByExternalId = (\n nodeId: string,\n params?: ApartmentBuildingGetByExternalIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ApartmentBuildingModel>(`/apartmentbuildings/${nodeId}`, params, config).then(\n (res) => res!,\n );\n\nexport const areaProjectGetById = (\n id: string,\n params?: AreaProjectGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<AreaProjectModel>(`/areaprojects/${id}`, params, config).then((res) => res!);\n\nexport const areaProjectQuery = (params?: AreaProjectQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<AreaProjectModel[]>(`/areaprojects`, params, config).then((res) => res!);\n\nexport const cityGetByName = (\n name: string,\n params?: CityGetByNameQueryParams,\n config?: RequestConfig,\n) => APIClient.get<CityModel>(`/cities/name/${name}`, params, config).then((res) => res!);\n\nexport const cityGetById = (id: string, params?: CityGetByIdQueryParams, config?: RequestConfig) =>\n APIClient.get<CityModel>(`/cities/${id}`, params, config).then((res) => res!);\n\nexport const cityQuery = (params?: CityQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<CityModel[]>(`/cities`, params, config).then((res) => res!);\n\nexport const constructionNumberGetById = (\n id: string,\n params?: ConstructionNumberGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberModel>(`/constructionnumbers/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const constructionNumberQuery = (\n params?: ConstructionNumberQueryQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberModel[]>(`/constructionnumbers`, params, config).then(\n (res) => res!,\n );\n\nexport const constructionNumberGet = (\n projectId: string,\n constructionNumber: string,\n params?: any,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberLight>(\n `/light/projects/${projectId}/constructionnumbers/${constructionNumber}`,\n params,\n config,\n ).then((res) => res!);\n\nexport const constructionNumberList = (projectId: string, params?: any, config?: RequestConfig) =>\n APIClient.get<ConstructionNumberLight>(\n `/light/projects/${projectId}/constructionnumbers`,\n params,\n config,\n ).then((res) => res!);\n\nexport const countryGetByIsoCode = (\n isoCode: string,\n params?: CountryGetByIsoCodeQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<CountryModel>(`/countries/isoCode/${isoCode}`, params, config).then(\n (res) => res!,\n );\n\nexport const countryGetById = (\n id: string,\n params?: CountryGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<CountryModel>(`/countries/${id}`, params, config).then((res) => res!);\n\nexport const countryQuery = (params?: CountryQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<CountryModel[]>(`/countries`, params, config).then((res) => res!);\n\nexport const digitalBrochureGetById = (id: string, params?: any, config?: RequestConfig) =>\n APIClient.get<DigitalBrochureModel>(`/digital-brochures/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const districtGetById = (\n id: string,\n params?: DistrictGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<DistrictModel>(`/districts/${id}`, params, config).then((res) => res!);\n\nexport const districtQuery = (params?: DistrictQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<DistrictModel[]>(`/districts`, params, config).then((res) => res!);\n\nexport const documentGetById = (\n id: string,\n params?: DocumentGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<DocumentModel>(`/documents/${id}`, params, config).then((res) => res!);\n\nexport const documentQuery = (params?: DocumentQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<DocumentModel[]>(`/documents`, params, config).then((res) => res!);\n\nexport const formLead = (body: LeadFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/forms/lead`, body, config).then((res) => res!);\n\nexport const formCase = (body: CaseFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/forms/case`, body, config).then((res) => res!);\n\nexport const formDynamic = (body: DynamicFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/forms/dynamic`, body, config).then((res) => res!);\n\nexport const formDigitalBrochure = (body: DigitalBrochureRequestModel, config?: RequestConfig) =>\n APIClient.post<void>(`/forms/digital-brochure`, body, config).then((res) => res!);\n\nexport const fundaQuery = (params?: FundaQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProjectModel[]>(`/funda/query`, params, config).then((res) => res!);\n\nexport const fundaGet = (params?: FundaGetQueryParams, config?: RequestConfig) =>\n APIClient.get<void>(`/funda`, params, config).then((res) => res!);\n\nexport const fundaSubmit = (body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/funda/submit`, body, config).then((res) => res!);\n\nexport const fundaSubmitRoute = (id: string, body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/funda/submit/${id}`, body, config).then((res) => res!);\n\nexport const fundaRunTransactionCheck = (\n params?: FundaRunTransactionCheckQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/check`, params, config).then((res) => res!);\n\nexport const fundaValidate = (body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/funda/validate`, body, config).then((res) => res!);\n\nexport const fundaShowLastSubmittedProject = (\n params?: FundaShowLastSubmittedProjectQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/ShowLastSubmittedProject`, params, config).then((res) => res!);\n\nexport const fundaShowConvertedFundaObject = (\n params?: FundaShowConvertedFundaObjectQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/ShowConvertedFundaObject`, params, config).then((res) => res!);\n\nexport const fundaCompareFundaObjectRevisionChanges = (\n params?: FundaCompareFundaObjectRevisionChangesQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/funda/CompareFundaObjectRevisionChanges`, params, config).then(\n (res) => res!,\n );\n\nexport const fundaShowFundaProjectLogs = (\n params?: FundaShowFundaProjectLogsQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/ShowFundaProjectLogs`, params, config).then((res) => res!);\n\nexport const fundaExecuteFundaPublisher = (\n params?: FundaExecuteFundaPublisherQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/ExecuteFundaPublisher`, params, config).then((res) => res!);\n\nexport const fundaGetAllGwnVersionsByProjectId = (\n params?: FundaGetAllGwnVersionsByProjectIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/GetAllGwnVersionsByProjectId`, params, config).then((res) => res!);\n\nexport const fundaRemoveVersionFromGwn = (\n params?: FundaRemoveVersionFromGwnQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/RemoveVersionFromGwn`, params, config).then((res) => res!);\n\nexport const fundaGetActiveBrokersInGateway = (\n params?: FundaGetActiveBrokersInGatewayQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/funda/GetActiveBrokersInGateway`, params, config).then((res) => res!);\n\nexport const grantGetById = (\n id: string,\n params?: GrantGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<GrantModel>(`/grants/${id}`, params, config).then((res) => res!);\n\nexport const grantQuery = (params?: GrantQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<GrantModel[]>(`/grants`, params, config).then((res) => res!);\n\nexport const houseSelectorQuery = (\n params?: HouseSelectorQueryQueryParams,\n config?: RequestConfig,\n) => APIClient.get<HouseSelectorModel[]>(`/houseselectors`, params, config).then((res) => res!);\n\nexport const houseSelectorUpdateHouseSelector = (\n nodeId: string,\n body: UpdateHouseSelectorBaseModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/houseselectors/${nodeId}`, body, config).then((res) => res!);\n\nexport const houseSelectorDeleteHouseSelector = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.delete<void>(`/houseselectors/${nodeId}`, body, config).then((res) => res!);\n\nexport const houseSelectorGetByExternalId = (\n nodeId: string,\n params?: HouseSelectorGetByExternalIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<HouseSelectorModel>(`/houseselectors/${nodeId}`, params, config).then(\n (res) => res!,\n );\n\nexport const houseSelectorPublishHouseSelector = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.put<void>(`/houseselectors/${nodeId}/publish`, body, config).then((res) => res!);\n\nexport const houseSelectorUpdateHouseSelectorViews = (\n nodeId: string,\n body: UpdateHouseSelectorViewsModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/houseselectors/${nodeId}/views`, body, config).then((res) => res!);\n\nexport const houseSelectorGetDraftByExternalId = (\n nodeId: string,\n params?: HouseSelectorGetDraftByExternalIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<HouseSelectorModel>(`/houseselectors/${nodeId}/draft`, params, config).then(\n (res) => res!,\n );\n\nexport const pipelineProjectGetById = (\n id: string,\n params?: PipelineProjectGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<PipelineProjectModel>(`/pipelineprojects/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const pipelineProjectQuery = (\n params?: PipelineProjectQueryQueryParams,\n config?: RequestConfig,\n) => APIClient.get<PipelineProjectModel[]>(`/pipelineprojects`, params, config).then((res) => res!);\n\nexport const projectPhaseSetCustomerJourneyMilestone = (\n id: string,\n body: CustomerJourneyMilestone,\n config?: RequestConfig,\n) => APIClient.put<void>(`/projectphases/${id}/milestone`, body, config).then((res) => res!);\n\nexport const projectPhaseDeleteCustomerJourneyMilestone = (\n id: string,\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) =>\n APIClient.delete<void>(`/projectphases/${id}/milestone/${nodeId}`, body, config).then(\n (res) => res!,\n );\n\nexport const projectPhaseGetById = (\n id: string,\n params?: ProjectPhaseGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<ProjectPhaseModel>(`/projectphases/${id}`, params, config).then((res) => res!);\n\nexport const projectPhaseQuery = (params?: ProjectPhaseQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProjectPhaseModel[]>(`/projectphases`, params, config).then((res) => res!);\n\nexport const propertyGetPublicProperties = (params?: any, config?: RequestConfig) =>\n APIClient.get<PropertyLight>(`/light/properties`, params, config).then((res) => res!);\n\nexport const propertyList = (projectId: string, params?: any, config?: RequestConfig) =>\n APIClient.get<PropertyLight>(`/light/projects/${projectId}/properties`, params, config).then(\n (res) => res!,\n );\n\nexport const propertyTypeGetById = (\n id: string,\n params?: PropertyTypeGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<PropertyTypeModel>(`/propertytypes/${id}`, params, config).then((res) => res!);\n\nexport const propertyTypeQuery = (params?: PropertyTypeQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<PropertyTypeModel[]>(`/propertytypes`, params, config).then((res) => res!);\n\nexport const provinceGetByName = (\n name: string,\n params?: ProvinceGetByNameQueryParams,\n config?: RequestConfig,\n) => APIClient.get<ProvinceModel>(`/provinces/name/${name}`, params, config).then((res) => res!);\n\nexport const provinceGetById = (\n id: string,\n params?: ProvinceGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<ProvinceModel>(`/provinces/${id}`, params, config).then((res) => res!);\n\nexport const provinceQuery = (params?: ProvinceQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProvinceModel[]>(`/provinces`, params, config).then((res) => res!);\n\nexport const regionGetById = (\n id: string,\n params?: RegionGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<RegionModel>(`/region/${id}`, params, config).then((res) => res!);\n\nexport const regionQuery = (params?: RegionQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<RegionModel[]>(`/region`, params, config).then((res) => res!);\n\nexport const resourceUpdateResource = (\n mediaId: string,\n body: UpdateResourceModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/resources/${mediaId}`, body, config).then((res) => res!);\n\nexport const resourceDeleteResource = (mediaId: string, body: any, config?: RequestConfig) =>\n APIClient.delete<void>(`/resources/${mediaId}`, body, config).then((res) => res!);\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpd-library/utilities",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11-beta.0",
|
|
4
4
|
"description": "Description",
|
|
5
5
|
"url": "https://github.com/{repo name}",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "ecae7b0bf096d1defba6b7983b439dd3d7eb2375",
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@atomify/core": "2.4.1",
|
|
51
51
|
"@atomify/hooks": "1.1.11",
|
|
52
52
|
"@atomify/jsx": "1.7.1",
|
|
53
53
|
"@atomify/kit": "1.1.11",
|
|
54
|
-
"@bpd-library/types": "^2.0.
|
|
54
|
+
"@bpd-library/types": "^2.0.11-beta.0",
|
|
55
55
|
"qs": "^6.9.4",
|
|
56
56
|
"query-string": "5"
|
|
57
57
|
}
|