From 19582c661fb90cdf2ab5fcdcd0bfadca185185fa Mon Sep 17 00:00:00 2001 From: asim Date: Mon, 4 Oct 2021 13:56:28 +0000 Subject: [PATCH] Commit from GitHub Actions (Publish APIs & Clients) --- clients/ts/package.json | 2 +- examples/db/create/go/createARecord.go | 2 +- examples/db/update/go/updateARecord.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clients/ts/package.json b/clients/ts/package.json index de4c07a..475a4c1 100644 --- a/clients/ts/package.json +++ b/clients/ts/package.json @@ -64,5 +64,5 @@ }, "type": "module", "types": "dist/index.d.ts", - "version": "1.0.535" + "version": "1.0.536" } \ No newline at end of file diff --git a/examples/db/create/go/createARecord.go b/examples/db/create/go/createARecord.go index ed2b1c4..c582849 100755 --- a/examples/db/create/go/createARecord.go +++ b/examples/db/create/go/createARecord.go @@ -11,10 +11,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", }, Table: "users", }) diff --git a/examples/db/update/go/updateARecord.go b/examples/db/update/go/updateARecord.go index d1cad90..4c7b7e9 100755 --- a/examples/db/update/go/updateARecord.go +++ b/examples/db/update/go/updateARecord.go @@ -11,8 +11,8 @@ func UpdateArecord() { dbService := db.NewDbService(os.Getenv("MICRO_API_TOKEN")) rsp, err := dbService.Update(&db.UpdateRequest{ Record: map[string]interface{}{ - "id": "1", "age": 43, + "id": "1", }, Table: "users", })