diff --git a/clients/ts/package.json b/clients/ts/package.json index eac4c8b..b45d745 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.548" + "version": "1.0.549" } \ 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", }) diff --git a/examples/stream/publish/go/publishAMessage.go b/examples/stream/publish/go/publishAMessage.go index af88ee1..0f33eac 100755 --- a/examples/stream/publish/go/publishAMessage.go +++ b/examples/stream/publish/go/publishAMessage.go @@ -11,9 +11,9 @@ func PublishAmessage() { streamService := stream.NewStreamService(os.Getenv("MICRO_API_TOKEN")) rsp, err := streamService.Publish(&stream.PublishRequest{ Message: map[string]interface{}{ + "user": "john", "id": "1", "type": "signup", - "user": "john", }, Topic: "events", }) diff --git a/gifs/README.md b/gifs/README.md index 2e2eb23..ac1fdf4 100644 --- a/gifs/README.md +++ b/gifs/README.md @@ -4,4 +4,4 @@ Quick and simple GIF search Add GIFs to your project with keyword search and results in multiple sizes and formats. -Powered by [GIPHY](https://giphy.com). +![Powered by Giphy](https://raw.githubusercontent.com/micro/services/master/gifs/assets/PoweredBy_200px-White_HorizLogo.png). diff --git a/gifs/assets/PoweredBy_200px-White_HorizLogo.png b/gifs/assets/PoweredBy_200px-White_HorizLogo.png new file mode 100644 index 0000000..31527b6 Binary files /dev/null and b/gifs/assets/PoweredBy_200px-White_HorizLogo.png differ