Skip to content

Commit

Permalink
Merge pull request #343 from OnroerendErfgoed/develop
Browse files Browse the repository at this point in the history
Release 0.27.3
  • Loading branch information
yannickkuypers authored Jul 12, 2023
2 parents 1f476b0 + b7cfe6d commit 1f475b3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/commonjs/services/adresregister.api-service.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export declare class AdresregisterService {
getPostinfo(gemeente: string): Promise<IPostinfo[]>;
getStraten(gemeente: string): Promise<IStraat[]>;
getAdressen(straat: string, huisnummer?: string): Promise<IAdresregisterAdres[]>;
suggestLocatie(value: string): Promise<ILocatieSuggest | []>;
suggestLocatie(value: string): Promise<ILocatieSuggest[]>;
geolocate(value: number): Promise<IGeolocationResponse>;
private crabGet;
}
2 changes: 1 addition & 1 deletion dist/commonjs/services/adresregister.api-service.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export declare class AdresregisterService {
getPostinfo(gemeente: string): Promise<IPostinfo[]>;
getStraten(gemeente: string): Promise<IStraat[]>;
getAdressen(straat: string, huisnummer?: string): Promise<IAdresregisterAdres[]>;
suggestLocatie(value: string): Promise<ILocatieSuggest | []>;
suggestLocatie(value: string): Promise<ILocatieSuggest[]>;
geolocate(value: number): Promise<IGeolocationResponse>;
private crabGet;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oerelia",
"description": "Onroerend Erfgoed Aurelia component library",
"version": "0.27.2",
"version": "0.27.3",
"repository": {
"type": "git",
"url": "https://github.com/OnroerendErfgoed/oerelia.git"
Expand Down
2 changes: 1 addition & 1 deletion src/services/adresregister.api-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export class AdresregisterService {
return this.crabGet<IAdresregisterAdres[]>(`adressenregister/straten/${straat}/adressen`);
}

async suggestLocatie(value: string): Promise<ILocatieSuggest | []> {
async suggestLocatie(value: string): Promise<ILocatieSuggest[]> {
if (value === '') {
return [];
}
Expand Down

0 comments on commit 1f475b3

Please sign in to comment.