Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Fix schema (#23)
Browse files Browse the repository at this point in the history
* Fix orderstatus
* Bump versions
  • Loading branch information
phoebe-lew authored Sep 14, 2023
1 parent 42aa218 commit 43a6f62
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/http-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tbdex/http-client",
"version": "0.5.0",
"version": "0.6.0",
"type": "module",
"description": "Http client that can be used to send tbdex messages",
"license": "Apache-2.0",
@@ -49,7 +49,7 @@
}
},
"dependencies": {
"@tbdex/protocol": "0.12.0",
"@tbdex/protocol": "0.13.0",
"@web5/dids": "0.2.0",
"query-string": "8.1.0"
},
6 changes: 3 additions & 3 deletions packages/http-server/package.json
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@
},
"license": "Apache-2.0",
"type": "module",
"version": "0.0.10",
"version": "0.0.11",
"module": "./dist/main.js",
"types": "./dist/types/main.d.ts",
"files": ["./dist", "./src"],
@@ -18,8 +18,8 @@
"import": "./dist/main.js"
},
"dependencies": {
"@tbdex/protocol": "0.12.0",
"@tbdex/http-client": "0.5.0",
"@tbdex/protocol": "0.13.0",
"@tbdex/http-client": "0.6.0",
"@web5/dids": "0.2.0",
"cors": "2.8.5",
"express": "4.18.2"
2 changes: 1 addition & 1 deletion packages/protocol/json-schemas/message.schema.json
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
},
"kind": {
"type": "string",
"enum": ["rfq", "quote", "order", "orderStatus", "close"],
"enum": ["rfq", "quote", "order", "orderstatus", "close"],
"description": "The message kind (e.g. rfq, quote)"
},
"id": {
2 changes: 1 addition & 1 deletion packages/protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tbdex/protocol",
"version": "0.12.0",
"version": "0.13.0",
"type": "module",
"description": "Library that includes type definitions for tbdex messages",
"license": "Apache-2.0",

0 comments on commit 43a6f62

Please sign in to comment.