From bc6267a92d3b4ed963915a00a18f801963e10a8c Mon Sep 17 00:00:00 2001 From: domwong Date: Mon, 18 Oct 2021 11:11:37 +0000 Subject: [PATCH] Commit from GitHub Actions (Publish APIs & Clients) --- clients/go/m3o.go | 3 +++ clients/ts/index.ts | 3 +++ clients/ts/package.json | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/clients/go/m3o.go b/clients/go/m3o.go index 422499d..329b2e4 100755 --- a/clients/go/m3o.go +++ b/clients/go/m3o.go @@ -14,6 +14,7 @@ import ( "github.com/micro/services/clients/go/forex" "github.com/micro/services/clients/go/function" "github.com/micro/services/clients/go/geocoding" + "github.com/micro/services/clients/go/gifs" "github.com/micro/services/clients/go/helloworld" "github.com/micro/services/clients/go/holidays" "github.com/micro/services/clients/go/id" @@ -59,6 +60,7 @@ func NewClient(token string) *Client { ForexService: forex.NewForexService(token), FunctionService: function.NewFunctionService(token), GeocodingService: geocoding.NewGeocodingService(token), + GifsService: gifs.NewGifsService(token), HelloworldService: helloworld.NewHelloworldService(token), HolidaysService: holidays.NewHolidaysService(token), IdService: id.NewIdService(token), @@ -104,6 +106,7 @@ type Client struct { ForexService *forex.ForexService FunctionService *function.FunctionService GeocodingService *geocoding.GeocodingService + GifsService *gifs.GifsService HelloworldService *helloworld.HelloworldService HolidaysService *holidays.HolidaysService IdService *id.IdService diff --git a/clients/ts/index.ts b/clients/ts/index.ts index 11543a8..a12582f 100755 --- a/clients/ts/index.ts +++ b/clients/ts/index.ts @@ -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 gifs from "./gifs"; import * as helloworld from "./helloworld"; import * as holidays from "./holidays"; import * as id from "./id"; @@ -53,6 +54,7 @@ export class Client { this.forexService = new forex.ForexService(token); this.functionService = new fx.FunctionService(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); @@ -94,6 +96,7 @@ export class Client { forexService: forex.ForexService; functionService: fx.FunctionService; geocodingService: geocoding.GeocodingService; + gifsService: gifs.GifsService; helloworldService: helloworld.HelloworldService; holidaysService: holidays.HolidaysService; idService: id.IdService; diff --git a/clients/ts/package.json b/clients/ts/package.json index b45d745..a660dfe 100644 --- a/clients/ts/package.json +++ b/clients/ts/package.json @@ -66,5 +66,5 @@ }, "type": "module", "types": "dist/index.d.ts", - "version": "1.0.549" + "version": "1.0.550" } \ No newline at end of file