From ac91317fc2ca29490f804f888edbd2d8c837ae18 Mon Sep 17 00:00:00 2001 From: asim Date: Wed, 27 Oct 2021 15:07:59 +0000 Subject: [PATCH] Commit from GitHub Actions (Generate Clients & Examples) --- clients/ts/package.json | 2 +- examples/db/update/go/updateARecord.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/ts/package.json b/clients/ts/package.json index f8d2caf..71ebd7b 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.579" + "version": "1.0.580" } \ No newline at end of file diff --git a/examples/db/update/go/updateARecord.go b/examples/db/update/go/updateARecord.go index 4517043..1fb0e47 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{}{ - "id": "1", "age": 43, + "id": "1", }, Table: "users", })