From 5cb3a51ecb707577d149bf53427c0482e3fc3b0d Mon Sep 17 00:00:00 2001 From: domwong Date: Tue, 26 Oct 2021 09:09:24 +0000 Subject: [PATCH] Commit from GitHub Actions (Publish APIs & Clients) --- clients/go/gifs/gifs.go | 2 +- clients/go/m3o.go | 3 +++ clients/ts/index.ts | 3 +++ clients/ts/package.json | 2 +- examples/db/create/go/createARecord.go | 4 ++-- examples/db/update/go/updateARecord.go | 2 +- examples/gifs/search/go/search.go | 5 +++-- examples/gifs/search/node/search.js | 10 +++++----- 8 files changed, 19 insertions(+), 12 deletions(-) diff --git a/clients/go/gifs/gifs.go b/clients/go/gifs/gifs.go index 897082d..b669f34 100755 --- a/clients/go/gifs/gifs.go +++ b/clients/go/gifs/gifs.go @@ -16,7 +16,7 @@ type GifsService struct { client *client.Client } -// Search for a gif +// Search for a GIF func (t *GifsService) Search(request *SearchRequest) (*SearchResponse, error) { rsp := &SearchResponse{} return rsp, t.client.Call("gifs", "Search", request, rsp) diff --git a/clients/go/m3o.go b/clients/go/m3o.go index 074a11d..ce3091d 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/google" "github.com/micro/services/clients/go/helloworld" "github.com/micro/services/clients/go/holidays" @@ -61,6 +62,7 @@ func NewClient(token string) *Client { ForexService: forex.NewForexService(token), FunctionService: function.NewFunctionService(token), GeocodingService: geocoding.NewGeocodingService(token), + GifsService: gifs.NewGifsService(token), GoogleService: google.NewGoogleService(token), HelloworldService: helloworld.NewHelloworldService(token), HolidaysService: holidays.NewHolidaysService(token), @@ -108,6 +110,7 @@ type Client struct { ForexService *forex.ForexService FunctionService *function.FunctionService GeocodingService *geocoding.GeocodingService + GifsService *gifs.GifsService GoogleService *google.GoogleService HelloworldService *helloworld.HelloworldService HolidaysService *holidays.HolidaysService diff --git a/clients/ts/index.ts b/clients/ts/index.ts index 2c776ad..8ceeb54 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 google from "./google"; import * as helloworld from "./helloworld"; import * as holidays from "./holidays"; @@ -55,6 +56,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.googleService = new google.GoogleService(token); this.helloworldService = new helloworld.HelloworldService(token); this.holidaysService = new holidays.HolidaysService(token); @@ -98,6 +100,7 @@ export class Client { forexService: forex.ForexService; functionService: fx.FunctionService; geocodingService: geocoding.GeocodingService; + gifsService: gifs.GifsService; googleService: google.GoogleService; helloworldService: helloworld.HelloworldService; holidaysService: holidays.HolidaysService; diff --git a/clients/ts/package.json b/clients/ts/package.json index 1b278de..8db5393 100644 --- a/clients/ts/package.json +++ b/clients/ts/package.json @@ -76,5 +76,5 @@ "prepare": "npm run build" }, "types": "index.d.ts", - "version": "1.0.564" + "version": "1.0.565" } \ No newline at end of file diff --git a/examples/db/create/go/createARecord.go b/examples/db/create/go/createARecord.go index 283dd5d..08be46f 100755 --- a/examples/db/create/go/createARecord.go +++ b/examples/db/create/go/createARecord.go @@ -12,10 +12,10 @@ func CreateArecord() { dbService := db.NewDbService(os.Getenv("MICRO_API_TOKEN")) rsp, err := dbService.Create(&db.CreateRequest{ Record: map[string]interface{}{ - "id": "1", - "name": "Jane", "age": 42, "isActive": true, + "id": "1", + "name": "Jane", }, Table: "users", }) diff --git a/examples/db/update/go/updateARecord.go b/examples/db/update/go/updateARecord.go index 1fb0e47..4517043 100755 --- a/examples/db/update/go/updateARecord.go +++ b/examples/db/update/go/updateARecord.go @@ -12,8 +12,8 @@ func UpdateArecord() { dbService := db.NewDbService(os.Getenv("MICRO_API_TOKEN")) rsp, err := dbService.Update(&db.UpdateRequest{ Record: map[string]interface{}{ - "age": 43, "id": "1", + "age": 43, }, Table: "users", }) diff --git a/examples/gifs/search/go/search.go b/examples/gifs/search/go/search.go index daa1356..0c80cfb 100755 --- a/examples/gifs/search/go/search.go +++ b/examples/gifs/search/go/search.go @@ -2,11 +2,12 @@ package example import ( "fmt" - "github.com/micro/services/clients/go/gifs" "os" + + "github.com/micro/services/clients/go/gifs" ) -// Search for a gif +// Search for a GIF func Search() { gifsService := gifs.NewGifsService(os.Getenv("MICRO_API_TOKEN")) rsp, err := gifsService.Search(&gifs.SearchRequest{ diff --git a/examples/gifs/search/node/search.js b/examples/gifs/search/node/search.js index ec09b18..cd57145 100755 --- a/examples/gifs/search/node/search.js +++ b/examples/gifs/search/node/search.js @@ -1,8 +1,8 @@ -import * as gifs from "m3o/gifs"; +const { GifsService } = require("m3o/gifs"); -// Search for a gif -async function Search() { - let gifsService = new gifs.GifsService(process.env.MICRO_API_TOKEN); +// Search for a GIF +async function search() { + let gifsService = new GifsService(process.env.MICRO_API_TOKEN); let rsp = await gifsService.search({ limit: 2, query: "dogs", @@ -10,4 +10,4 @@ async function Search() { console.log(rsp); } -await Search(); +search();