Display name (#225)

* add displayname

* Commit from GitHub Actions (Publish APIs & Clients)

Co-authored-by: domwong <domwong@users.noreply.github.com>
This commit is contained in:
Dominic Wong
2021-10-07 14:58:26 +01:00
committed by GitHub
parent c0f28dcfda
commit 901e637687
47 changed files with 85 additions and 51 deletions

View File

@@ -10,7 +10,6 @@ import * as evchargers from "./evchargers";
import * as file from "./file";
import * as forex from "./forex";
import * as geocoding from "./geocoding";
import * as gifs from "./gifs";
import * as helloworld from "./helloworld";
import * as holidays from "./holidays";
import * as id from "./id";
@@ -52,7 +51,6 @@ export class Client {
this.fileService = new file.FileService(token);
this.forexService = new forex.ForexService(token);
this.geocodingService = new geocoding.GeocodingService(token);
this.gifsService = new gifs.GifsService(token);
this.helloworldService = new helloworld.HelloworldService(token);
this.holidaysService = new holidays.HolidaysService(token);
this.idService = new id.IdService(token);
@@ -93,7 +91,6 @@ export class Client {
fileService: file.FileService;
forexService: forex.ForexService;
geocodingService: geocoding.GeocodingService;
gifsService: gifs.GifsService;
helloworldService: helloworld.HelloworldService;
holidaysService: holidays.HolidaysService;
idService: id.IdService;

View File

@@ -65,5 +65,5 @@
},
"type": "module",
"types": "dist/index.d.ts",
"version": "1.0.541"
"version": "1.0.542"
}