Commit from GitHub Actions (Publish APIs & Clients)

This commit is contained in:
domwong
2021-10-19 16:47:36 +00:00
parent d6df706c96
commit 36b705930f
2 changed files with 3 additions and 3 deletions

View File

@@ -66,5 +66,5 @@
},
"type": "module",
"types": "dist/index.d.ts",
"version": "1.0.553"
"version": "1.0.554"
}

View File

@@ -11,10 +11,10 @@ func CreateArecord() {
dbService := db.NewDbService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := dbService.Create(&db.CreateRequest{
Record: map[string]interface{}{
"age": 42,
"isActive": true,
"id": "1",
"name": "Jane",
"age": 42,
"isActive": true,
},
Table: "users",
})