Skip to content

Commit

Permalink
Update types
Browse files Browse the repository at this point in the history
  • Loading branch information
shanev committed Apr 15, 2022
1 parent 5c3660a commit bc8d030
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
20 changes: 20 additions & 0 deletions contracts/marketplace/schema/query_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,26 @@
},
"additionalProperties": false
},
{
"type": "object",
"required": [
"ask_count"
],
"properties": {
"ask_count": {
"type": "object",
"required": [
"collection"
],
"properties": {
"collection": {
"type": "string"
}
}
}
},
"additionalProperties": false
},
{
"type": "object",
"required": [
Expand Down
5 changes: 5 additions & 0 deletions types/contracts/marketplace/query_msg.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ start_after?: (number | null)
[k: string]: unknown
}
} | {
ask_count: {
collection: string
[k: string]: unknown
}
} | {
asks_by_seller: {
seller: string
[k: string]: unknown
Expand Down

0 comments on commit bc8d030

Please sign in to comment.