Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
asim
2021-10-25 11:21:28 +00:00
parent 0bfe1e3c19
commit c6debbaf8a
9 changed files with 93 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ forex
function
geocoding
gifs
google
helloworld
holidays
id

View File

@@ -11,6 +11,7 @@ import * as file from "./file";
import * as forex from "./forex";
import * as fx from "./function";
import * as geocoding from "./geocoding";
import * as google from "./google";
import * as helloworld from "./helloworld";
import * as holidays from "./holidays";
import * as id from "./id";
@@ -54,6 +55,7 @@ export class Client {
this.forexService = new forex.ForexService(token);
this.functionService = new fx.FunctionService(token);
this.geocodingService = new geocoding.GeocodingService(token);
this.googleService = new google.GoogleService(token);
this.helloworldService = new helloworld.HelloworldService(token);
this.holidaysService = new holidays.HolidaysService(token);
this.idService = new id.IdService(token);
@@ -96,6 +98,7 @@ export class Client {
forexService: forex.ForexService;
functionService: fx.FunctionService;
geocodingService: geocoding.GeocodingService;
googleService: google.GoogleService;
helloworldService: helloworld.HelloworldService;
holidaysService: holidays.HolidaysService;
idService: id.IdService;

View File

@@ -31,6 +31,7 @@
"function",
"geocoding",
"gifs",
"google",
"helloworld",
"holidays",
"id",
@@ -75,5 +76,5 @@
"prepare": "npm run build"
},
"types": "index.d.ts",
"version": "1.0.560"
"version": "1.0.561"
}