@bpd-library/utilities 1.4.3 → 1.5.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.
|
@@ -92,6 +92,7 @@ export interface ConstructionNumberModel {
|
|
|
92
92
|
areaProjectId?: string | null;
|
|
93
93
|
districtId?: string | null;
|
|
94
94
|
projectPhaseId?: string | null;
|
|
95
|
+
bisproNumber?: string | null;
|
|
95
96
|
projectPhaseName?: string | null;
|
|
96
97
|
propertyTypeId?: string | null;
|
|
97
98
|
propertyTypeName?: string | null;
|
|
@@ -185,14 +186,15 @@ export interface DistrictModel {
|
|
|
185
186
|
id: string;
|
|
186
187
|
}
|
|
187
188
|
export interface DocumentModel {
|
|
188
|
-
|
|
189
|
+
projectBisproNumber?: string | null;
|
|
189
190
|
filename?: string | null;
|
|
190
191
|
publicationDate?: string | null;
|
|
191
192
|
title?: string | null;
|
|
192
193
|
contentType?: string | null;
|
|
193
194
|
documentType?: string | null;
|
|
194
|
-
|
|
195
|
-
|
|
195
|
+
documentSubtype?: string | null;
|
|
196
|
+
constructionBisproNumbers?: string[] | null;
|
|
197
|
+
isConcept?: boolean;
|
|
196
198
|
url?: string | null;
|
|
197
199
|
id: string;
|
|
198
200
|
}
|
|
@@ -453,6 +455,7 @@ export interface ProjectModel {
|
|
|
453
455
|
}
|
|
454
456
|
export interface ProjectPhaseModel {
|
|
455
457
|
areaProjectId?: string | null;
|
|
458
|
+
bisproNumber?: string | null;
|
|
456
459
|
areaProjectName?: string | null;
|
|
457
460
|
districtId?: string | null;
|
|
458
461
|
name?: string | null;
|
|
@@ -473,6 +476,7 @@ export interface ProjectPhaseModel {
|
|
|
473
476
|
constructionStartDate?: string | null;
|
|
474
477
|
isRental?: boolean;
|
|
475
478
|
isDigitalBrochureEnabled?: boolean;
|
|
479
|
+
isNewDocumentsEnabled?: boolean;
|
|
476
480
|
indicationServiceCosts?: number | null;
|
|
477
481
|
indicationSecurity?: number | null;
|
|
478
482
|
location?: number[] | null;
|
|
@@ -595,17 +599,6 @@ export interface SeoText {
|
|
|
595
599
|
rentalTitle?: string | null;
|
|
596
600
|
rentalText?: string | null;
|
|
597
601
|
}
|
|
598
|
-
export interface SerializedFeature {
|
|
599
|
-
featureId?: string | null;
|
|
600
|
-
featureJson?: string | null;
|
|
601
|
-
}
|
|
602
|
-
export interface SerializedFeatures {
|
|
603
|
-
objectFeatures?: SerializedObjectFeatures[] | null;
|
|
604
|
-
}
|
|
605
|
-
export interface SerializedObjectFeatures {
|
|
606
|
-
objectId?: string | null;
|
|
607
|
-
features?: SerializedFeature[] | null;
|
|
608
|
-
}
|
|
609
602
|
export interface Time {
|
|
610
603
|
hour?: number;
|
|
611
604
|
minute?: number;
|
|
@@ -681,9 +674,8 @@ export interface WebsiteModel {
|
|
|
681
674
|
skinName?: string | null;
|
|
682
675
|
contactDetails?: WebsiteContactModel;
|
|
683
676
|
showOnCorporateSite?: boolean;
|
|
684
|
-
channelMenuId?: string | null;
|
|
685
|
-
isMyEnvironment2022Enabled?: boolean;
|
|
686
677
|
isMyEnvironmentIframeEnabled?: boolean;
|
|
678
|
+
isNewDocumentsEnabled?: boolean;
|
|
687
679
|
}
|
|
688
680
|
export interface ActivationEngineGetProfileQueryParams {
|
|
689
681
|
areaId?: string;
|
|
@@ -696,9 +688,11 @@ export interface ApartmentBuildingQueryQueryParams {
|
|
|
696
688
|
lang?: string;
|
|
697
689
|
}
|
|
698
690
|
export interface ApartmentBuildingUpdateApartmentBuildingQueryParams {
|
|
691
|
+
apiKey?: string;
|
|
699
692
|
origin?: string;
|
|
700
693
|
}
|
|
701
694
|
export interface ApartmentBuildingDeleteApartmentBuildingQueryParams {
|
|
695
|
+
apiKey?: string;
|
|
702
696
|
origin?: string;
|
|
703
697
|
}
|
|
704
698
|
export interface ApartmentBuildingGetByExternalIdQueryParams {
|
|
@@ -771,13 +765,14 @@ export interface DocumentGetByIdQueryParams {
|
|
|
771
765
|
lang?: string;
|
|
772
766
|
}
|
|
773
767
|
export interface DocumentQueryQueryParams {
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
768
|
+
ProjectBisproNumber?: string;
|
|
769
|
+
ProjectBisproNumbers?: string;
|
|
770
|
+
ConstructionBisproNumbers?: string;
|
|
777
771
|
include?: string;
|
|
778
772
|
lang?: string;
|
|
779
773
|
}
|
|
780
774
|
export interface FundaQueryQueryParams {
|
|
775
|
+
apiKey?: string;
|
|
781
776
|
regionId?: string;
|
|
782
777
|
query?: string;
|
|
783
778
|
userType?: string;
|
|
@@ -785,42 +780,61 @@ export interface FundaQueryQueryParams {
|
|
|
785
780
|
allowedRegionIds?: string;
|
|
786
781
|
}
|
|
787
782
|
export interface FundaGetQueryParams {
|
|
783
|
+
apiKey?: string;
|
|
788
784
|
id?: string;
|
|
789
785
|
isAdmin?: boolean;
|
|
790
786
|
userType?: string;
|
|
791
787
|
}
|
|
792
788
|
export interface FundaSubmitQueryParams {
|
|
789
|
+
apiKey?: string;
|
|
793
790
|
id?: string;
|
|
794
791
|
incrementVersion?: boolean;
|
|
795
792
|
}
|
|
796
793
|
export interface FundaSubmitRouteQueryParams {
|
|
794
|
+
apiKey?: string;
|
|
797
795
|
incrementVersion?: boolean;
|
|
798
796
|
}
|
|
797
|
+
export interface FundaRunTransactionCheckQueryParams {
|
|
798
|
+
apiKey?: string;
|
|
799
|
+
}
|
|
799
800
|
export interface FundaValidateQueryParams {
|
|
801
|
+
apiKey?: string;
|
|
800
802
|
id?: string;
|
|
801
803
|
}
|
|
802
804
|
export interface FundaShowLastSubmittedProjectQueryParams {
|
|
805
|
+
apiKey?: string;
|
|
803
806
|
projectCrmId?: string;
|
|
804
807
|
}
|
|
805
808
|
export interface FundaShowConvertedFundaObjectQueryParams {
|
|
809
|
+
apiKey?: string;
|
|
806
810
|
projectCrmId?: string;
|
|
807
811
|
}
|
|
808
812
|
export interface FundaCompareFundaObjectRevisionChangesQueryParams {
|
|
813
|
+
apiKey?: string;
|
|
809
814
|
projectCrmId?: string;
|
|
810
815
|
gwnId?: number;
|
|
811
816
|
}
|
|
812
817
|
export interface FundaShowFundaProjectLogsQueryParams {
|
|
818
|
+
apiKey?: string;
|
|
813
819
|
projectCrmId?: string;
|
|
814
820
|
}
|
|
821
|
+
export interface FundaExecuteFundaPublisherQueryParams {
|
|
822
|
+
apiKey?: string;
|
|
823
|
+
}
|
|
815
824
|
export interface FundaGetAllGwnVersionsByProjectIdQueryParams {
|
|
825
|
+
apiKey?: string;
|
|
816
826
|
projectCrmId?: string;
|
|
817
827
|
}
|
|
818
828
|
export interface FundaRemoveVersionFromGwnQueryParams {
|
|
829
|
+
apiKey?: string;
|
|
819
830
|
projectId?: string;
|
|
820
831
|
projectFundaId?: number;
|
|
821
832
|
projectCode?: string;
|
|
822
833
|
nvmId?: string;
|
|
823
834
|
}
|
|
835
|
+
export interface FundaGetActiveBrokersInGatewayQueryParams {
|
|
836
|
+
apiKey?: string;
|
|
837
|
+
}
|
|
824
838
|
export interface GrantGetByIdQueryParams {
|
|
825
839
|
include?: string;
|
|
826
840
|
lang?: string;
|
|
@@ -836,14 +850,25 @@ export interface HouseSelectorQueryQueryParams {
|
|
|
836
850
|
include?: string;
|
|
837
851
|
lang?: string;
|
|
838
852
|
}
|
|
853
|
+
export interface HouseSelectorUpdateHouseSelectorQueryParams {
|
|
854
|
+
apiKey?: string;
|
|
855
|
+
}
|
|
839
856
|
export interface HouseSelectorDeleteHouseSelectorQueryParams {
|
|
857
|
+
apiKey?: string;
|
|
840
858
|
deleteDraft?: boolean;
|
|
841
859
|
}
|
|
842
860
|
export interface HouseSelectorGetByExternalIdQueryParams {
|
|
843
861
|
include?: string;
|
|
844
862
|
lang?: string;
|
|
845
863
|
}
|
|
864
|
+
export interface HouseSelectorPublishHouseSelectorQueryParams {
|
|
865
|
+
apiKey?: string;
|
|
866
|
+
}
|
|
867
|
+
export interface HouseSelectorUpdateHouseSelectorViewsQueryParams {
|
|
868
|
+
apiKey?: string;
|
|
869
|
+
}
|
|
846
870
|
export interface HouseSelectorGetDraftByExternalIdQueryParams {
|
|
871
|
+
apiKey?: string;
|
|
847
872
|
lang?: string;
|
|
848
873
|
}
|
|
849
874
|
export interface ProjectPhaseGetByIdQueryParams {
|
|
@@ -928,9 +953,11 @@ export interface RegionQueryQueryParams {
|
|
|
928
953
|
lang?: string;
|
|
929
954
|
}
|
|
930
955
|
export interface ResourceUpdateResourceQueryParams {
|
|
956
|
+
apiKey?: string;
|
|
931
957
|
projectId?: string;
|
|
932
958
|
}
|
|
933
959
|
export interface ResourceDeleteResourceQueryParams {
|
|
960
|
+
apiKey?: string;
|
|
934
961
|
projectId?: string;
|
|
935
962
|
}
|
|
936
963
|
export declare const activationEngineGetProfile: (clientId: string, params?: ActivationEngineGetProfileQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ActivationEngineModel>;
|
|
@@ -952,6 +979,7 @@ export declare const digitalBrochureGetById: (id: string, params?: any, config?:
|
|
|
952
979
|
export declare const districtGetById: (id: string, params?: DistrictGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DistrictModel>;
|
|
953
980
|
export declare const districtQuery: (params?: DistrictQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DistrictModel[]>;
|
|
954
981
|
export declare const documentDownload: (id: string, fileName: string, params?: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
982
|
+
export declare const documentDownloadZip: (projectBisproNumber: string, constructionBisproNumber: string, params?: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
955
983
|
export declare const documentGetById: (id: string, params?: DocumentGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DocumentModel>;
|
|
956
984
|
export declare const documentQuery: (params?: DocumentQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<DocumentModel[]>;
|
|
957
985
|
export declare const formLead: (body: LeadFormModel, config?: RequestConfig | undefined) => Promise<void>;
|
|
@@ -962,19 +990,16 @@ export declare const fundaQuery: (params?: FundaQueryQueryParams | undefined, co
|
|
|
962
990
|
export declare const fundaGet: (params?: FundaGetQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
963
991
|
export declare const fundaSubmit: (body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
964
992
|
export declare const fundaSubmitRoute: (id: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
965
|
-
export declare const fundaRunTransactionCheck: (params?:
|
|
993
|
+
export declare const fundaRunTransactionCheck: (params?: FundaRunTransactionCheckQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
966
994
|
export declare const fundaValidate: (body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
967
995
|
export declare const fundaShowLastSubmittedProject: (params?: FundaShowLastSubmittedProjectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
968
996
|
export declare const fundaShowConvertedFundaObject: (params?: FundaShowConvertedFundaObjectQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
969
997
|
export declare const fundaCompareFundaObjectRevisionChanges: (params?: FundaCompareFundaObjectRevisionChangesQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
970
998
|
export declare const fundaShowFundaProjectLogs: (params?: FundaShowFundaProjectLogsQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
971
|
-
export declare const fundaExecuteFundaPublisher: (params?:
|
|
999
|
+
export declare const fundaExecuteFundaPublisher: (params?: FundaExecuteFundaPublisherQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
972
1000
|
export declare const fundaGetAllGwnVersionsByProjectId: (params?: FundaGetAllGwnVersionsByProjectIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
973
1001
|
export declare const fundaRemoveVersionFromGwn: (params?: FundaRemoveVersionFromGwnQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
974
|
-
export declare const fundaGetActiveBrokersInGateway: (params?:
|
|
975
|
-
export declare const geoFeatureUpsertGeoFeature: (areaId: string, objectId: string, body: SerializedFeature, config?: RequestConfig | undefined) => Promise<void>;
|
|
976
|
-
export declare const geoFeatureUpsertAreaFeatures: (areaId: string, body: SerializedFeatures, config?: RequestConfig | undefined) => Promise<void>;
|
|
977
|
-
export declare const geoFeatureDeleteGeoFeature: (areaId: string, objectId: string, featureId: string, body: any, config?: RequestConfig | undefined) => Promise<void>;
|
|
1002
|
+
export declare const fundaGetActiveBrokersInGateway: (params?: FundaGetActiveBrokersInGatewayQueryParams | undefined, config?: RequestConfig | undefined) => Promise<void>;
|
|
978
1003
|
export declare const grantGetById: (id: string, params?: GrantGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<GrantModel>;
|
|
979
1004
|
export declare const grantQuery: (params?: GrantQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<GrantModel[]>;
|
|
980
1005
|
export declare const houseSelectorQuery: (params?: HouseSelectorQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<HouseSelectorModel[]>;
|
|
@@ -18,6 +18,7 @@ export const digitalBrochureGetById = (id, params, config) => APIClient.get(`/ap
|
|
|
18
18
|
export const districtGetById = (id, params, config) => APIClient.get(`/api/districts/${id}`, params, config).then((res) => res);
|
|
19
19
|
export const districtQuery = (params, config) => APIClient.get(`/api/districts`, params, config).then((res) => res);
|
|
20
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);
|
|
21
22
|
export const documentGetById = (id, params, config) => APIClient.get(`/api/documents/${id}`, params, config).then((res) => res);
|
|
22
23
|
export const documentQuery = (params, config) => APIClient.get(`/api/documents`, params, config).then((res) => res);
|
|
23
24
|
export const formLead = (body, config) => APIClient.post(`/api/forms/lead`, body, config).then((res) => res);
|
|
@@ -38,9 +39,6 @@ export const fundaExecuteFundaPublisher = (params, config) => APIClient.get(`/ap
|
|
|
38
39
|
export const fundaGetAllGwnVersionsByProjectId = (params, config) => APIClient.get(`/api/funda/GetAllGwnVersionsByProjectId`, params, config).then((res) => res);
|
|
39
40
|
export const fundaRemoveVersionFromGwn = (params, config) => APIClient.get(`/api/funda/RemoveVersionFromGwn`, params, config).then((res) => res);
|
|
40
41
|
export const fundaGetActiveBrokersInGateway = (params, config) => APIClient.get(`/api/funda/GetActiveBrokersInGateway`, params, config).then((res) => res);
|
|
41
|
-
export const geoFeatureUpsertGeoFeature = (areaId, objectId, body, config) => APIClient.put(`/api/geofeature/${areaId}/${objectId}`, body, config).then((res) => res);
|
|
42
|
-
export const geoFeatureUpsertAreaFeatures = (areaId, body, config) => APIClient.put(`/api/geofeature/${areaId}`, body, config).then((res) => res);
|
|
43
|
-
export const geoFeatureDeleteGeoFeature = (areaId, objectId, featureId, body, config) => APIClient.delete(`/api/geofeature/${areaId}/${objectId}/${featureId}`, body, config).then((res) => res);
|
|
44
42
|
export const grantGetById = (id, params, config) => APIClient.get(`/api/grants/${id}`, params, config).then((res) => res);
|
|
45
43
|
export const grantQuery = (params, config) => APIClient.get(`/api/grants`, params, config).then((res) => res);
|
|
46
44
|
export const houseSelectorQuery = (params, config) => APIClient.get(`/api/houseselectors`, params, config).then((res) => res);
|
|
@@ -1 +1 @@
|
|
|
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 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 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 projectPhaseId?: string | null;\n filename?: string | null;\n publicationDate?: string | null;\n title?: string | null;\n contentType?: string | null;\n documentType?: string | null;\n constructionNumbers?: string[] | null;\n constructionNumberIds?: string[] | null;\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 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 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 SerializedFeature {\n featureId?: string | null;\n featureJson?: string | null;\n}\n\nexport interface SerializedFeatures {\n objectFeatures?: SerializedObjectFeatures[] | null;\n}\n\nexport interface SerializedObjectFeatures {\n objectId?: string | null;\n features?: SerializedFeature[] | 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 channelMenuId?: string | null;\n isMyEnvironment2022Enabled?: boolean;\n isMyEnvironmentIframeEnabled?: 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 origin?: string;\n}\n\nexport interface ApartmentBuildingDeleteApartmentBuildingQueryParams {\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 ProjectPhaseId?: string;\n ProjectPhaseIds?: string;\n ConstructionNumberNames?: string;\n include?: string;\n lang?: string;\n}\n\nexport interface FundaQueryQueryParams {\n regionId?: string;\n query?: string;\n userType?: string;\n isAdmin?: boolean;\n allowedRegionIds?: string;\n}\n\nexport interface FundaGetQueryParams {\n id?: string;\n isAdmin?: boolean;\n userType?: string;\n}\n\nexport interface FundaSubmitQueryParams {\n id?: string;\n incrementVersion?: boolean;\n}\n\nexport interface FundaSubmitRouteQueryParams {\n incrementVersion?: boolean;\n}\n\nexport interface FundaValidateQueryParams {\n id?: string;\n}\n\nexport interface FundaShowLastSubmittedProjectQueryParams {\n projectCrmId?: string;\n}\n\nexport interface FundaShowConvertedFundaObjectQueryParams {\n projectCrmId?: string;\n}\n\nexport interface FundaCompareFundaObjectRevisionChangesQueryParams {\n projectCrmId?: string;\n gwnId?: number;\n}\n\nexport interface FundaShowFundaProjectLogsQueryParams {\n projectCrmId?: string;\n}\n\nexport interface FundaGetAllGwnVersionsByProjectIdQueryParams {\n projectCrmId?: string;\n}\n\nexport interface FundaRemoveVersionFromGwnQueryParams {\n projectId?: string;\n projectFundaId?: number;\n projectCode?: string;\n nvmId?: 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 HouseSelectorDeleteHouseSelectorQueryParams {\n deleteDraft?: boolean;\n}\n\nexport interface HouseSelectorGetByExternalIdQueryParams {\n include?: string;\n lang?: string;\n}\n\nexport interface HouseSelectorGetDraftByExternalIdQueryParams {\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 projectId?: string;\n}\n\nexport interface ResourceDeleteResourceQueryParams {\n projectId?: string;\n}\n\nexport const activationEngineGetProfile = (\n clientId: string,\n params?: ActivationEngineGetProfileQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ActivationEngineModel>(\n `/api/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[]>(`/api/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>(`/api/apartmentbuildings/${nodeId}`, body, config).then((res) => res!);\n\nexport const apartmentBuildingDeleteApartmentBuilding = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.delete<void>(`/api/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>(`/api/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>(`/api/areaprojects/${id}`, params, config).then((res) => res!);\n\nexport const areaProjectQuery = (params?: AreaProjectQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<AreaProjectModel[]>(`/api/areaprojects`, params, config).then((res) => res!);\n\nexport const cityGetByName = (\n name: string,\n params?: CityGetByNameQueryParams,\n config?: RequestConfig,\n) => APIClient.get<CityModel>(`/api/cities/name/${name}`, params, config).then((res) => res!);\n\nexport const cityGetById = (id: string, params?: CityGetByIdQueryParams, config?: RequestConfig) =>\n APIClient.get<CityModel>(`/api/cities/${id}`, params, config).then((res) => res!);\n\nexport const cityQuery = (params?: CityQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<CityModel[]>(`/api/cities`, params, config).then((res) => res!);\n\nexport const constructionNumberGetById = (\n id: string,\n params?: ConstructionNumberGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberModel>(`/api/constructionnumbers/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const constructionNumberQuery = (\n params?: ConstructionNumberQueryQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberModel[]>(`/api/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>(`/api/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>(`/api/countries/${id}`, params, config).then((res) => res!);\n\nexport const countryQuery = (params?: CountryQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<CountryModel[]>(`/api/countries`, params, config).then((res) => res!);\n\nexport const digitalBrochureGetById = (id: string, params?: any, config?: RequestConfig) =>\n APIClient.get<DigitalBrochureModel>(`/api/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>(`/api/districts/${id}`, params, config).then((res) => res!);\n\nexport const districtQuery = (params?: DistrictQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<DistrictModel[]>(`/api/districts`, params, config).then((res) => res!);\n\nexport const documentDownload = (\n id: string,\n fileName: string,\n params?: any,\n config?: RequestConfig,\n) => APIClient.get<void>(`/documents/${id}/${fileName}`, params, config).then((res) => res!);\n\nexport const documentGetById = (\n id: string,\n params?: DocumentGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<DocumentModel>(`/api/documents/${id}`, params, config).then((res) => res!);\n\nexport const documentQuery = (params?: DocumentQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<DocumentModel[]>(`/api/documents`, params, config).then((res) => res!);\n\nexport const formLead = (body: LeadFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/api/forms/lead`, body, config).then((res) => res!);\n\nexport const formCase = (body: CaseFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/api/forms/case`, body, config).then((res) => res!);\n\nexport const formDynamic = (body: DynamicFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/api/forms/dynamic`, body, config).then((res) => res!);\n\nexport const formDigitalBrochure = (body: DigitalBrochureRequestModel, config?: RequestConfig) =>\n APIClient.post<void>(`/api/forms/digital-brochure`, body, config).then((res) => res!);\n\nexport const fundaQuery = (params?: FundaQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProjectModel[]>(`/api/funda/query`, params, config).then((res) => res!);\n\nexport const fundaGet = (params?: FundaGetQueryParams, config?: RequestConfig) =>\n APIClient.get<void>(`/api/funda`, params, config).then((res) => res!);\n\nexport const fundaSubmit = (body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/api/funda/submit`, body, config).then((res) => res!);\n\nexport const fundaSubmitRoute = (id: string, body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/api/funda/submit/${id}`, body, config).then((res) => res!);\n\nexport const fundaRunTransactionCheck = (params?: any, config?: RequestConfig) =>\n APIClient.get<void>(`/api/funda/check`, params, config).then((res) => res!);\n\nexport const fundaValidate = (body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/api/funda/validate`, body, config).then((res) => res!);\n\nexport const fundaShowLastSubmittedProject = (\n params?: FundaShowLastSubmittedProjectQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/ShowLastSubmittedProject`, params, config).then((res) => res!);\n\nexport const fundaShowConvertedFundaObject = (\n params?: FundaShowConvertedFundaObjectQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/ShowConvertedFundaObject`, params, config).then((res) => res!);\n\nexport const fundaCompareFundaObjectRevisionChanges = (\n params?: FundaCompareFundaObjectRevisionChangesQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/api/funda/CompareFundaObjectRevisionChanges`, params, config).then(\n (res) => res!,\n );\n\nexport const fundaShowFundaProjectLogs = (\n params?: FundaShowFundaProjectLogsQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/ShowFundaProjectLogs`, params, config).then((res) => res!);\n\nexport const fundaExecuteFundaPublisher = (params?: any, config?: RequestConfig) =>\n APIClient.get<void>(`/api/funda/ExecuteFundaPublisher`, params, config).then((res) => res!);\n\nexport const fundaGetAllGwnVersionsByProjectId = (\n params?: FundaGetAllGwnVersionsByProjectIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/api/funda/GetAllGwnVersionsByProjectId`, params, config).then(\n (res) => res!,\n );\n\nexport const fundaRemoveVersionFromGwn = (\n params?: FundaRemoveVersionFromGwnQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/RemoveVersionFromGwn`, params, config).then((res) => res!);\n\nexport const fundaGetActiveBrokersInGateway = (params?: any, config?: RequestConfig) =>\n APIClient.get<void>(`/api/funda/GetActiveBrokersInGateway`, params, config).then((res) => res!);\n\nexport const geoFeatureUpsertGeoFeature = (\n areaId: string,\n objectId: string,\n body: SerializedFeature,\n config?: RequestConfig,\n) => APIClient.put<void>(`/api/geofeature/${areaId}/${objectId}`, body, config).then((res) => res!);\n\nexport const geoFeatureUpsertAreaFeatures = (\n areaId: string,\n body: SerializedFeatures,\n config?: RequestConfig,\n) => APIClient.put<void>(`/api/geofeature/${areaId}`, body, config).then((res) => res!);\n\nexport const geoFeatureDeleteGeoFeature = (\n areaId: string,\n objectId: string,\n featureId: string,\n body: any,\n config?: RequestConfig,\n) =>\n APIClient.delete<void>(`/api/geofeature/${areaId}/${objectId}/${featureId}`, body, config).then(\n (res) => res!,\n );\n\nexport const grantGetById = (\n id: string,\n params?: GrantGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<GrantModel>(`/api/grants/${id}`, params, config).then((res) => res!);\n\nexport const grantQuery = (params?: GrantQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<GrantModel[]>(`/api/grants`, params, config).then((res) => res!);\n\nexport const houseSelectorQuery = (\n params?: HouseSelectorQueryQueryParams,\n config?: RequestConfig,\n) => APIClient.get<HouseSelectorModel[]>(`/api/houseselectors`, params, config).then((res) => res!);\n\nexport const houseSelectorUpdateHouseSelector = (\n nodeId: string,\n body: UpdateHouseSelectorBaseModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/api/houseselectors/${nodeId}`, body, config).then((res) => res!);\n\nexport const houseSelectorDeleteHouseSelector = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.delete<void>(`/api/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>(`/api/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>(`/api/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>(`/api/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>(`/api/houseselectors/${nodeId}/draft`, params, config).then(\n (res) => res!,\n );\n\nexport const projectPhaseGetById = (\n id: string,\n params?: ProjectPhaseGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ProjectPhaseModel>(`/api/projectphases/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const projectPhaseQuery = (params?: ProjectPhaseQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProjectPhaseModel[]>(`/api/projectphases`, params, config).then((res) => res!);\n\nexport const propertyTypeGetById = (\n id: string,\n params?: PropertyTypeGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<PropertyTypeModel>(`/api/propertytypes/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const propertyTypeQuery = (params?: PropertyTypeQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<PropertyTypeModel[]>(`/api/propertytypes`, params, config).then((res) => res!);\n\nexport const provinceGetByName = (\n name: string,\n params?: ProvinceGetByNameQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ProvinceModel>(`/api/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>(`/api/provinces/${id}`, params, config).then((res) => res!);\n\nexport const provinceQuery = (params?: ProvinceQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProvinceModel[]>(`/api/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/api/resource/relations`, params, config).then(\n (res) => res!,\n );\n\nexport const regionGetById = (\n id: string,\n params?: RegionGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<RegionModel>(`/api/region/${id}`, params, config).then((res) => res!);\n\nexport const regionQuery = (params?: RegionQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<RegionModel[]>(`/api/region`, params, config).then((res) => res!);\n\nexport const resourceUpdateResource = (\n mediaId: string,\n body: UpdateResourceModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/api/resources/${mediaId}`, body, config).then((res) => res!);\n\nexport const resourceDeleteResource = (mediaId: string, body: any, config?: RequestConfig) =>\n APIClient.delete<void>(`/api/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 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 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 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 `/api/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[]>(`/api/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>(`/api/apartmentbuildings/${nodeId}`, body, config).then((res) => res!);\n\nexport const apartmentBuildingDeleteApartmentBuilding = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.delete<void>(`/api/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>(`/api/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>(`/api/areaprojects/${id}`, params, config).then((res) => res!);\n\nexport const areaProjectQuery = (params?: AreaProjectQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<AreaProjectModel[]>(`/api/areaprojects`, params, config).then((res) => res!);\n\nexport const cityGetByName = (\n name: string,\n params?: CityGetByNameQueryParams,\n config?: RequestConfig,\n) => APIClient.get<CityModel>(`/api/cities/name/${name}`, params, config).then((res) => res!);\n\nexport const cityGetById = (id: string, params?: CityGetByIdQueryParams, config?: RequestConfig) =>\n APIClient.get<CityModel>(`/api/cities/${id}`, params, config).then((res) => res!);\n\nexport const cityQuery = (params?: CityQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<CityModel[]>(`/api/cities`, params, config).then((res) => res!);\n\nexport const constructionNumberGetById = (\n id: string,\n params?: ConstructionNumberGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberModel>(`/api/constructionnumbers/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const constructionNumberQuery = (\n params?: ConstructionNumberQueryQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ConstructionNumberModel[]>(`/api/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>(`/api/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>(`/api/countries/${id}`, params, config).then((res) => res!);\n\nexport const countryQuery = (params?: CountryQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<CountryModel[]>(`/api/countries`, params, config).then((res) => res!);\n\nexport const digitalBrochureGetById = (id: string, params?: any, config?: RequestConfig) =>\n APIClient.get<DigitalBrochureModel>(`/api/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>(`/api/districts/${id}`, params, config).then((res) => res!);\n\nexport const districtQuery = (params?: DistrictQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<DistrictModel[]>(`/api/districts`, params, config).then((res) => res!);\n\nexport const documentDownload = (\n id: string,\n fileName: string,\n params?: any,\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>(`/api/documents/${id}`, params, config).then((res) => res!);\n\nexport const documentQuery = (params?: DocumentQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<DocumentModel[]>(`/api/documents`, params, config).then((res) => res!);\n\nexport const formLead = (body: LeadFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/api/forms/lead`, body, config).then((res) => res!);\n\nexport const formCase = (body: CaseFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/api/forms/case`, body, config).then((res) => res!);\n\nexport const formDynamic = (body: DynamicFormModel, config?: RequestConfig) =>\n APIClient.post<void>(`/api/forms/dynamic`, body, config).then((res) => res!);\n\nexport const formDigitalBrochure = (body: DigitalBrochureRequestModel, config?: RequestConfig) =>\n APIClient.post<void>(`/api/forms/digital-brochure`, body, config).then((res) => res!);\n\nexport const fundaQuery = (params?: FundaQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProjectModel[]>(`/api/funda/query`, params, config).then((res) => res!);\n\nexport const fundaGet = (params?: FundaGetQueryParams, config?: RequestConfig) =>\n APIClient.get<void>(`/api/funda`, params, config).then((res) => res!);\n\nexport const fundaSubmit = (body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/api/funda/submit`, body, config).then((res) => res!);\n\nexport const fundaSubmitRoute = (id: string, body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/api/funda/submit/${id}`, body, config).then((res) => res!);\n\nexport const fundaRunTransactionCheck = (\n params?: FundaRunTransactionCheckQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/check`, params, config).then((res) => res!);\n\nexport const fundaValidate = (body: any, config?: RequestConfig) =>\n APIClient.post<void>(`/api/funda/validate`, body, config).then((res) => res!);\n\nexport const fundaShowLastSubmittedProject = (\n params?: FundaShowLastSubmittedProjectQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/ShowLastSubmittedProject`, params, config).then((res) => res!);\n\nexport const fundaShowConvertedFundaObject = (\n params?: FundaShowConvertedFundaObjectQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/ShowConvertedFundaObject`, params, config).then((res) => res!);\n\nexport const fundaCompareFundaObjectRevisionChanges = (\n params?: FundaCompareFundaObjectRevisionChangesQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/api/funda/CompareFundaObjectRevisionChanges`, params, config).then(\n (res) => res!,\n );\n\nexport const fundaShowFundaProjectLogs = (\n params?: FundaShowFundaProjectLogsQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/ShowFundaProjectLogs`, params, config).then((res) => res!);\n\nexport const fundaExecuteFundaPublisher = (\n params?: FundaExecuteFundaPublisherQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/ExecuteFundaPublisher`, params, config).then((res) => res!);\n\nexport const fundaGetAllGwnVersionsByProjectId = (\n params?: FundaGetAllGwnVersionsByProjectIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/api/funda/GetAllGwnVersionsByProjectId`, params, config).then(\n (res) => res!,\n );\n\nexport const fundaRemoveVersionFromGwn = (\n params?: FundaRemoveVersionFromGwnQueryParams,\n config?: RequestConfig,\n) => APIClient.get<void>(`/api/funda/RemoveVersionFromGwn`, params, config).then((res) => res!);\n\nexport const fundaGetActiveBrokersInGateway = (\n params?: FundaGetActiveBrokersInGatewayQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<void>(`/api/funda/GetActiveBrokersInGateway`, params, config).then((res) => res!);\n\nexport const grantGetById = (\n id: string,\n params?: GrantGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<GrantModel>(`/api/grants/${id}`, params, config).then((res) => res!);\n\nexport const grantQuery = (params?: GrantQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<GrantModel[]>(`/api/grants`, params, config).then((res) => res!);\n\nexport const houseSelectorQuery = (\n params?: HouseSelectorQueryQueryParams,\n config?: RequestConfig,\n) => APIClient.get<HouseSelectorModel[]>(`/api/houseselectors`, params, config).then((res) => res!);\n\nexport const houseSelectorUpdateHouseSelector = (\n nodeId: string,\n body: UpdateHouseSelectorBaseModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/api/houseselectors/${nodeId}`, body, config).then((res) => res!);\n\nexport const houseSelectorDeleteHouseSelector = (\n nodeId: string,\n body: any,\n config?: RequestConfig,\n) => APIClient.delete<void>(`/api/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>(`/api/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>(`/api/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>(`/api/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>(`/api/houseselectors/${nodeId}/draft`, params, config).then(\n (res) => res!,\n );\n\nexport const projectPhaseGetById = (\n id: string,\n params?: ProjectPhaseGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ProjectPhaseModel>(`/api/projectphases/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const projectPhaseQuery = (params?: ProjectPhaseQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProjectPhaseModel[]>(`/api/projectphases`, params, config).then((res) => res!);\n\nexport const propertyTypeGetById = (\n id: string,\n params?: PropertyTypeGetByIdQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<PropertyTypeModel>(`/api/propertytypes/${id}`, params, config).then(\n (res) => res!,\n );\n\nexport const propertyTypeQuery = (params?: PropertyTypeQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<PropertyTypeModel[]>(`/api/propertytypes`, params, config).then((res) => res!);\n\nexport const provinceGetByName = (\n name: string,\n params?: ProvinceGetByNameQueryParams,\n config?: RequestConfig,\n) =>\n APIClient.get<ProvinceModel>(`/api/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>(`/api/provinces/${id}`, params, config).then((res) => res!);\n\nexport const provinceQuery = (params?: ProvinceQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<ProvinceModel[]>(`/api/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/api/resource/relations`, params, config).then(\n (res) => res!,\n );\n\nexport const regionGetById = (\n id: string,\n params?: RegionGetByIdQueryParams,\n config?: RequestConfig,\n) => APIClient.get<RegionModel>(`/api/region/${id}`, params, config).then((res) => res!);\n\nexport const regionQuery = (params?: RegionQueryQueryParams, config?: RequestConfig) =>\n APIClient.get<RegionModel[]>(`/api/region`, params, config).then((res) => res!);\n\nexport const resourceUpdateResource = (\n mediaId: string,\n body: UpdateResourceModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/api/resources/${mediaId}`, body, config).then((res) => res!);\n\nexport const resourceDeleteResource = (mediaId: string, body: any, config?: RequestConfig) =>\n APIClient.delete<void>(`/api/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": "1.
|
|
3
|
+
"version": "1.5.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": "35ea3f6124f610dd1de5c2322d44b8b72a882516",
|
|
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": "^1.
|
|
54
|
+
"@bpd-library/types": "^1.5.0",
|
|
55
55
|
"qs": "^6.9.4",
|
|
56
56
|
"query-string": "5"
|
|
57
57
|
}
|