@bpd-library/utilities 1.3.7-beta.0 → 1.3.7-beta.1

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.
@@ -547,6 +547,44 @@ export interface GrantModel {
547
547
  status?: GrantStatus;
548
548
  id: string;
549
549
  }
550
+ export interface Point {
551
+ x?: number;
552
+ y?: number;
553
+ }
554
+ export interface HouseSelectorObject {
555
+ objectType?: string | null;
556
+ objectId?: string | null;
557
+ point?: Point;
558
+ polygon?: Point[] | null;
559
+ linkToViewId?: string | null;
560
+ label?: string | null;
561
+ iconName?: string | null;
562
+ }
563
+ export interface HouseSelectorView {
564
+ id?: string | null;
565
+ name?: string | null;
566
+ imageUrl?: string | null;
567
+ imageMediaId?: number;
568
+ objects?: HouseSelectorObject[] | null;
569
+ }
570
+ export interface HouseSelectorModel {
571
+ areaProjectId?: string | null;
572
+ districtId?: string | null;
573
+ displayName?: string | null;
574
+ alias?: string | null;
575
+ nodeId?: string | null;
576
+ views?: HouseSelectorView[] | null;
577
+ id: string;
578
+ }
579
+ export interface UpdateHouseSelectorBaseModel {
580
+ districtId?: string | null;
581
+ displayName?: string | null;
582
+ description?: string | null;
583
+ alias?: string | null;
584
+ }
585
+ export interface UpdateHouseSelectorViewsModel {
586
+ views?: HouseSelectorView[] | null;
587
+ }
550
588
  export declare type ProjectPhaseStatus = 'InPreparation' | 'OnSale' | 'Sold' | 'ForRent' | 'Rented' | 'NotActive';
551
589
  export interface PropertySpecifications {
552
590
  rooms?: DecimalRange;
@@ -772,6 +810,19 @@ export interface GrantQueryQueryParams {
772
810
  include?: string | null;
773
811
  lang?: string | null;
774
812
  }
813
+ export interface HouseSelectorQueryQueryParams {
814
+ AreaProjectId?: string | null;
815
+ DistrictId?: string | null;
816
+ include?: string | null;
817
+ lang?: string | null;
818
+ }
819
+ export interface HouseSelectorGetByExternalIdQueryParams {
820
+ include?: string | null;
821
+ lang?: string | null;
822
+ }
823
+ export interface HouseSelectorGetDraftByExternalIdQueryParams {
824
+ lang?: string | null;
825
+ }
775
826
  export interface ProjectPhaseGetByIdQueryParams {
776
827
  include?: string | null;
777
828
  lang?: string | null;
@@ -900,6 +951,13 @@ export declare const geoFeatureUpsertAreaFeatures: (areaId: string | null, body:
900
951
  export declare const geoFeatureDeleteGeoFeature: (areaId: string | null, objectId: string | null, featureId: string | null, body: any, config?: RequestConfig | undefined) => Promise<void>;
901
952
  export declare const grantGetById: (id: string | null, params?: GrantGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<GrantModel>;
902
953
  export declare const grantQuery: (params?: GrantQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<GrantModel[]>;
954
+ export declare const houseSelectorQuery: (params?: HouseSelectorQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<HouseSelectorModel[]>;
955
+ export declare const houseSelectorUpdateHouseSelector: (nodeId: string | null, body: UpdateHouseSelectorBaseModel, config?: RequestConfig | undefined) => Promise<void>;
956
+ export declare const houseSelectorDeleteHouseSelector: (nodeId: string | null, body: any, config?: RequestConfig | undefined) => Promise<void>;
957
+ export declare const houseSelectorGetByExternalId: (nodeId: string | null, params?: HouseSelectorGetByExternalIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<HouseSelectorModel>;
958
+ export declare const houseSelectorPublishHouseSelector: (nodeId: string | null, body: any, config?: RequestConfig | undefined) => Promise<void>;
959
+ export declare const houseSelectorUpdateHouseSelectorViews: (nodeId: string | null, body: UpdateHouseSelectorViewsModel, config?: RequestConfig | undefined) => Promise<void>;
960
+ export declare const houseSelectorGetDraftByExternalId: (nodeId: string | null, params?: HouseSelectorGetDraftByExternalIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<HouseSelectorModel>;
903
961
  export declare const projectPhaseGetById: (id: string | null, params?: ProjectPhaseGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProjectPhaseModel>;
904
962
  export declare const projectPhaseQuery: (params?: ProjectPhaseQueryQueryParams | undefined, config?: RequestConfig | undefined) => Promise<ProjectPhaseModel[]>;
905
963
  export declare const propertyTypeGetById: (id: string | null, params?: PropertyTypeGetByIdQueryParams | undefined, config?: RequestConfig | undefined) => Promise<PropertyTypeModel>;
@@ -40,6 +40,13 @@ export const geoFeatureUpsertAreaFeatures = (areaId, body, config) => APIClient.
40
40
  export const geoFeatureDeleteGeoFeature = (areaId, objectId, featureId, body, config) => APIClient.delete(`/api/geofeature/${areaId}/${objectId}/${featureId}`, body, config).then((res) => res);
41
41
  export const grantGetById = (id, params, config) => APIClient.get(`/api/grants/${id}`, params, config).then((res) => res);
42
42
  export const grantQuery = (params, config) => APIClient.get(`/api/grants`, params, config).then((res) => res);
43
+ export const houseSelectorQuery = (params, config) => APIClient.get(`/api/houseselectors`, params, config).then((res) => res);
44
+ export const houseSelectorUpdateHouseSelector = (nodeId, body, config) => APIClient.put(`/api/houseselectors/${nodeId}`, body, config).then((res) => res);
45
+ export const houseSelectorDeleteHouseSelector = (nodeId, body, config) => APIClient.delete(`/api/houseselectors/${nodeId}`, body, config).then((res) => res);
46
+ export const houseSelectorGetByExternalId = (nodeId, params, config) => APIClient.get(`/api/houseselectors/${nodeId}`, params, config).then((res) => res);
47
+ export const houseSelectorPublishHouseSelector = (nodeId, body, config) => APIClient.put(`/api/houseselectors/${nodeId}/publish`, body, config).then((res) => res);
48
+ export const houseSelectorUpdateHouseSelectorViews = (nodeId, body, config) => APIClient.put(`/api/houseselectors/${nodeId}/views`, body, config).then((res) => res);
49
+ export const houseSelectorGetDraftByExternalId = (nodeId, params, config) => APIClient.get(`/api/houseselectors/${nodeId}/draft`, params, config).then((res) => res);
43
50
  export const projectPhaseGetById = (id, params, config) => APIClient.get(`/api/projectphases/${id}`, params, config).then((res) => res);
44
51
  export const projectPhaseQuery = (params, config) => APIClient.get(`/api/projectphases`, params, config).then((res) => res);
45
52
  export const propertyTypeGetById = (id, params, config) => APIClient.get(`/api/propertytypes/${id}`, 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 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 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;\n } | null;\n}\n\nexport interface PolygonModel {\n coordinates?: number[][] | 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 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 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 ResourceReference {\n ownerId?: string | null;\n ownerType?: string | null;\n isMainResource?: boolean | 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;\n } | null;\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 type WebchatType = 'None' | 'UnifiedCommunications' | 'Salesforce';\n\nexport interface Time {\n hour?: number;\n minute?: number;\n}\n\nexport interface TimeRange {\n from?: Time;\n to?: Time;\n}\n\nexport type HolidayFrequency = 'Once' | 'Monthly' | 'Yearly';\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 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 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 openingHoursWeekdays?: TimeRange;\n openingHoursSaturday?: TimeRange;\n openingHoursSunday?: TimeRange;\n isClosedToday?: boolean;\n}\n\nexport interface WebsiteModel {\n mapboxTilesetId?: string | null;\n mapboxDatasetId?: string | null;\n url?: string | null;\n enableCustomerCommunity?: boolean;\n enableFavourites?: boolean;\n enableMortgageCalculator?: boolean;\n secondLevelNavigationButtonLabelSingular?: {\n [key: string]: string;\n } | null;\n secondLevelNavigationButtonLabelPlural?: {\n [key: string]: string;\n } | null;\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}\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 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 interface SeoText {\n saleTitle?: string | null;\n saleText?: string | null;\n rentalTitle?: string | null;\n rentalText?: 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 type ConstructionNumberStatus = 'Available' | 'InOption' | 'Sold' | 'Reserved';\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 interface DecimalRange {\n from?: number;\n to?: number | null;\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 PriceCondition = 'VrijOpNaam' | 'KostenKoper';\n\nexport type SaleSpecification = 'ExclusiefBouwrente' | 'BtwBelast' | 'InclusiefBtw';\n\nexport type PriceType =\n | 'ExactSum'\n | 'AskingPrice'\n | 'StartsFrom'\n | 'Indication'\n | 'Circa'\n | 'PriceOnRequest';\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 PropertyRentalPrice {\n deposit?: number | null;\n amount?: DecimalRange;\n priceType?: PriceType;\n priceTypeFunda?: string | null;\n monthlyServiceCosts?: number | null;\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 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 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 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 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 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 Garden {\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 id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface OutsideSpace {\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 id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\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 IGeometryObject {\n type?: GeoJSONObjectType;\n}\n\nexport type CRSType = 'unspecified' | 'name' | 'link';\n\nexport interface ICRSObject {\n type?: CRSType;\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 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 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 floors?: Floor[] | null;\n gardens?: Garden[] | null;\n outsideSpace?: OutsideSpace[] | null;\n outbuildings?: Outbuilding[] | null;\n id: string;\n}\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 DigitalBrochureModel {\n dateCreated?: string;\n data?: string | null;\n pageUrl?: string | null;\n id: string;\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 type Salutation = 'Undefined' | 'Mr' | 'Mrs' | 'Ms';\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 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 DynamicFormModel {\n objectName?: string | null;\n mailTo?: string | null;\n fields?: {\n [key: string]: string;\n } | null;\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 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 SerializedFeature {\n featureId?: string | null;\n featureJson?: string | null;\n}\n\nexport interface SerializedObjectFeatures {\n objectId?: string | null;\n features?: SerializedFeature[] | null;\n}\n\nexport interface SerializedFeatures {\n objectFeatures?: SerializedObjectFeatures[] | null;\n}\n\nexport type GrantStatus = 'NotActive' | 'ApplicationGranted';\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 ProjectPhaseStatus =\n | 'InPreparation'\n | 'OnSale'\n | 'Sold'\n | 'ForRent'\n | 'Rented'\n | 'NotActive';\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 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 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 floors?: Floor[] | null;\n gardens?: Garden[] | null;\n outsideSpace?: OutsideSpace[] | 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 ActivationEngineGetProfileQueryParams {\n areaId?: string | null;\n projectId?: string | null;\n}\n\nexport interface ApartmentBuildingQueryQueryParams {\n AreaProjectId?: string | null;\n ProjectPhaseId?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ApartmentBuildingUpdateApartmentBuildingQueryParams {\n origin?: string | null;\n}\n\nexport interface ApartmentBuildingDeleteApartmentBuildingQueryParams {\n origin?: string | null;\n}\n\nexport interface ApartmentBuildingGetByExternalIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface AreaProjectGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface AreaProjectQueryQueryParams {\n CountryIsoCode?: string | null;\n HasLocationData?: boolean | null;\n CorporateSite?: boolean | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CityGetByNameQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CityGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CityQueryQueryParams {\n CountryIsoCode?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ConstructionNumberGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ConstructionNumberQueryQueryParams {\n AreaProjectId?: string | null;\n DistrictId?: string | null;\n ProjectPhaseId?: string | null;\n PropertyTypeId?: string | null;\n MinPrice?: number | null;\n MaxPrice?: number | null;\n IncludeInactive?: boolean | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CountryGetByIsoCodeQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CountryGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CountryQueryQueryParams {\n query?: CountryQuery;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface DistrictGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface DistrictQueryQueryParams {\n AreaProjectId?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface FundaQueryQueryParams {\n regionId?: string | null;\n query?: string | null;\n userType?: string | null;\n isAdmin?: boolean;\n allowedRegionIds?: string | null;\n}\n\nexport interface FundaGetQueryParams {\n id?: string | null;\n isAdmin?: boolean;\n userType?: string | null;\n}\n\nexport interface FundaSubmitQueryParams {\n id?: string | null;\n incrementVersion?: boolean;\n}\n\nexport interface FundaSubmitRouteQueryParams {\n incrementVersion?: boolean;\n}\n\nexport interface FundaValidateQueryParams {\n id?: string | null;\n}\n\nexport interface FundaShowLastSubmittedProjectQueryParams {\n projectCrmId?: string | null;\n}\n\nexport interface FundaShowConvertedFundaObjectQueryParams {\n projectCrmId?: string | null;\n}\n\nexport interface FundaCompareFundaObjectRevisionChangesQueryParams {\n projectCrmId?: string | null;\n gwnId?: number;\n}\n\nexport interface FundaShowFundaProjectLogsQueryParams {\n projectCrmId?: string | null;\n}\n\nexport interface FundaGetAllGwnVersionsByProjectIdQueryParams {\n projectCrmId?: string | null;\n}\n\nexport interface FundaRemoveVersionFromGwnQueryParams {\n projectId?: string | null;\n projectFundaId?: number;\n projectCode?: string | null;\n nvmId?: string | null;\n}\n\nexport interface GrantGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface GrantQueryQueryParams {\n ProjectName?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProjectPhaseGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProjectPhaseQueryQueryParams {\n CountryIsoCode?: string | null;\n AreaProjectId?: string | null;\n IncludeInactive?: boolean | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface PropertyTypeGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface PropertyTypeQueryQueryParams {\n AreaProjectId?: string | null;\n DistrictId?: string | null;\n ProjectPhaseId?: string | null;\n IncludeInactive?: boolean | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProvinceGetByNameQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProvinceGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProvinceQueryQueryParams {\n CountryIsoCode?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface RedirectAreaNewsletterHeaderRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectAreaLogoRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectProjectNewsletterHeaderRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectProjectImageRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectPropertyTypeImageRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectConstructionNumberImageRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RegionGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface RegionQueryQueryParams {\n AllowedRegionIds?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ResourceUpdateResourceQueryParams {\n projectId?: string | null;\n}\n\nexport interface ResourceDeleteResourceQueryParams {\n projectId?: string | null;\n}\n\nexport const activationEngineGetProfile = (\n clientId: string | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\n params?: CityGetByNameQueryParams,\n config?: RequestConfig,\n) => APIClient.get<CityModel>(`/api/cities/name/${name}`, params, config).then((res) => res!);\n\nexport const cityGetById = (\n id: string | null,\n params?: CityGetByIdQueryParams,\n 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 | null,\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 | null,\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 | null,\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 | null, 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 | null,\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 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 | null, 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 | null,\n objectId: string | null,\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 | null,\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 | null,\n objectId: string | null,\n featureId: string | null,\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 | null,\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 projectPhaseGetById = (\n id: string | null,\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 | null,\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 | null,\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 | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\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 | null,\n body: UpdateResourceModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/api/resources/${mediaId}`, body, config).then((res) => res!);\n\nexport const resourceDeleteResource = (mediaId: string | null, 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 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 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;\n } | null;\n}\n\nexport interface PolygonModel {\n coordinates?: number[][] | 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 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 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 ResourceReference {\n ownerId?: string | null;\n ownerType?: string | null;\n isMainResource?: boolean | 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;\n } | null;\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 type WebchatType = 'None' | 'UnifiedCommunications' | 'Salesforce';\n\nexport interface Time {\n hour?: number;\n minute?: number;\n}\n\nexport interface TimeRange {\n from?: Time;\n to?: Time;\n}\n\nexport type HolidayFrequency = 'Once' | 'Monthly' | 'Yearly';\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 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 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 openingHoursWeekdays?: TimeRange;\n openingHoursSaturday?: TimeRange;\n openingHoursSunday?: TimeRange;\n isClosedToday?: boolean;\n}\n\nexport interface WebsiteModel {\n mapboxTilesetId?: string | null;\n mapboxDatasetId?: string | null;\n url?: string | null;\n enableCustomerCommunity?: boolean;\n enableFavourites?: boolean;\n enableMortgageCalculator?: boolean;\n secondLevelNavigationButtonLabelSingular?: {\n [key: string]: string;\n } | null;\n secondLevelNavigationButtonLabelPlural?: {\n [key: string]: string;\n } | null;\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}\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 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 interface SeoText {\n saleTitle?: string | null;\n saleText?: string | null;\n rentalTitle?: string | null;\n rentalText?: 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 type ConstructionNumberStatus = 'Available' | 'InOption' | 'Sold' | 'Reserved';\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 interface DecimalRange {\n from?: number;\n to?: number | null;\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 PriceCondition = 'VrijOpNaam' | 'KostenKoper';\n\nexport type SaleSpecification = 'ExclusiefBouwrente' | 'BtwBelast' | 'InclusiefBtw';\n\nexport type PriceType =\n | 'ExactSum'\n | 'AskingPrice'\n | 'StartsFrom'\n | 'Indication'\n | 'Circa'\n | 'PriceOnRequest';\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 PropertyRentalPrice {\n deposit?: number | null;\n amount?: DecimalRange;\n priceType?: PriceType;\n priceTypeFunda?: string | null;\n monthlyServiceCosts?: number | null;\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 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 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 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 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 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 Garden {\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 id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\n}\n\nexport interface OutsideSpace {\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 id?: string | null;\n dbCreateTimestamp?: number | null;\n dbUpdateTimestamp?: number | null;\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 IGeometryObject {\n type?: GeoJSONObjectType;\n}\n\nexport type CRSType = 'unspecified' | 'name' | 'link';\n\nexport interface ICRSObject {\n type?: CRSType;\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 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 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 floors?: Floor[] | null;\n gardens?: Garden[] | null;\n outsideSpace?: OutsideSpace[] | null;\n outbuildings?: Outbuilding[] | null;\n id: string;\n}\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 DigitalBrochureModel {\n dateCreated?: string;\n data?: string | null;\n pageUrl?: string | null;\n id: string;\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 type Salutation = 'Undefined' | 'Mr' | 'Mrs' | 'Ms';\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 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 DynamicFormModel {\n objectName?: string | null;\n mailTo?: string | null;\n fields?: {\n [key: string]: string;\n } | null;\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 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 SerializedFeature {\n featureId?: string | null;\n featureJson?: string | null;\n}\n\nexport interface SerializedObjectFeatures {\n objectId?: string | null;\n features?: SerializedFeature[] | null;\n}\n\nexport interface SerializedFeatures {\n objectFeatures?: SerializedObjectFeatures[] | null;\n}\n\nexport type GrantStatus = 'NotActive' | 'ApplicationGranted';\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 interface Point {\n x?: number;\n y?: number;\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 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 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 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 type ProjectPhaseStatus =\n | 'InPreparation'\n | 'OnSale'\n | 'Sold'\n | 'ForRent'\n | 'Rented'\n | 'NotActive';\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 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 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 floors?: Floor[] | null;\n gardens?: Garden[] | null;\n outsideSpace?: OutsideSpace[] | 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 ActivationEngineGetProfileQueryParams {\n areaId?: string | null;\n projectId?: string | null;\n}\n\nexport interface ApartmentBuildingQueryQueryParams {\n AreaProjectId?: string | null;\n ProjectPhaseId?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ApartmentBuildingUpdateApartmentBuildingQueryParams {\n origin?: string | null;\n}\n\nexport interface ApartmentBuildingDeleteApartmentBuildingQueryParams {\n origin?: string | null;\n}\n\nexport interface ApartmentBuildingGetByExternalIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface AreaProjectGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface AreaProjectQueryQueryParams {\n CountryIsoCode?: string | null;\n HasLocationData?: boolean | null;\n CorporateSite?: boolean | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CityGetByNameQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CityGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CityQueryQueryParams {\n CountryIsoCode?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ConstructionNumberGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ConstructionNumberQueryQueryParams {\n AreaProjectId?: string | null;\n DistrictId?: string | null;\n ProjectPhaseId?: string | null;\n PropertyTypeId?: string | null;\n MinPrice?: number | null;\n MaxPrice?: number | null;\n IncludeInactive?: boolean | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CountryGetByIsoCodeQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CountryGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface CountryQueryQueryParams {\n query?: CountryQuery;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface DistrictGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface DistrictQueryQueryParams {\n AreaProjectId?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface FundaQueryQueryParams {\n regionId?: string | null;\n query?: string | null;\n userType?: string | null;\n isAdmin?: boolean;\n allowedRegionIds?: string | null;\n}\n\nexport interface FundaGetQueryParams {\n id?: string | null;\n isAdmin?: boolean;\n userType?: string | null;\n}\n\nexport interface FundaSubmitQueryParams {\n id?: string | null;\n incrementVersion?: boolean;\n}\n\nexport interface FundaSubmitRouteQueryParams {\n incrementVersion?: boolean;\n}\n\nexport interface FundaValidateQueryParams {\n id?: string | null;\n}\n\nexport interface FundaShowLastSubmittedProjectQueryParams {\n projectCrmId?: string | null;\n}\n\nexport interface FundaShowConvertedFundaObjectQueryParams {\n projectCrmId?: string | null;\n}\n\nexport interface FundaCompareFundaObjectRevisionChangesQueryParams {\n projectCrmId?: string | null;\n gwnId?: number;\n}\n\nexport interface FundaShowFundaProjectLogsQueryParams {\n projectCrmId?: string | null;\n}\n\nexport interface FundaGetAllGwnVersionsByProjectIdQueryParams {\n projectCrmId?: string | null;\n}\n\nexport interface FundaRemoveVersionFromGwnQueryParams {\n projectId?: string | null;\n projectFundaId?: number;\n projectCode?: string | null;\n nvmId?: string | null;\n}\n\nexport interface GrantGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface GrantQueryQueryParams {\n ProjectName?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface HouseSelectorQueryQueryParams {\n AreaProjectId?: string | null;\n DistrictId?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface HouseSelectorGetByExternalIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface HouseSelectorGetDraftByExternalIdQueryParams {\n lang?: string | null;\n}\n\nexport interface ProjectPhaseGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProjectPhaseQueryQueryParams {\n CountryIsoCode?: string | null;\n AreaProjectId?: string | null;\n IncludeInactive?: boolean | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface PropertyTypeGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface PropertyTypeQueryQueryParams {\n AreaProjectId?: string | null;\n DistrictId?: string | null;\n ProjectPhaseId?: string | null;\n IncludeInactive?: boolean | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProvinceGetByNameQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProvinceGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ProvinceQueryQueryParams {\n CountryIsoCode?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface RedirectAreaNewsletterHeaderRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectAreaLogoRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectProjectNewsletterHeaderRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectProjectImageRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectPropertyTypeImageRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RedirectConstructionNumberImageRedirectQueryParams {\n width?: string | null;\n height?: string | null;\n mode?: string | null;\n quality?: string | null;\n}\n\nexport interface RegionGetByIdQueryParams {\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface RegionQueryQueryParams {\n AllowedRegionIds?: string | null;\n include?: string | null;\n lang?: string | null;\n}\n\nexport interface ResourceUpdateResourceQueryParams {\n projectId?: string | null;\n}\n\nexport interface ResourceDeleteResourceQueryParams {\n projectId?: string | null;\n}\n\nexport const activationEngineGetProfile = (\n clientId: string | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\n params?: CityGetByNameQueryParams,\n config?: RequestConfig,\n) => APIClient.get<CityModel>(`/api/cities/name/${name}`, params, config).then((res) => res!);\n\nexport const cityGetById = (\n id: string | null,\n params?: CityGetByIdQueryParams,\n 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 | null,\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 | null,\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 | null,\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 | null, 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 | null,\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 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 | null, 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 | null,\n objectId: string | null,\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 | null,\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 | null,\n objectId: string | null,\n featureId: string | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\n extension: string | null,\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 | null,\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 | null,\n body: UpdateResourceModel,\n config?: RequestConfig,\n) => APIClient.put<void>(`/api/resources/${mediaId}`, body, config).then((res) => res!);\n\nexport const resourceDeleteResource = (mediaId: string | null, 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.7-beta.0",
3
+ "version": "1.3.7-beta.1",
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": "be624dbf3f57c7d895a7647ef2d0cb5d7d5307b5",
48
+ "gitHead": "60d0026cc0e3d00eea893ece384df893e9f2d9da",
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.3.7-beta.0",
54
+ "@bpd-library/types": "^1.3.7-beta.1",
55
55
  "qs": "^6.9.4",
56
56
  "query-string": "5"
57
57
  }