Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed May 16, 2023
1 parent d2edba3 commit 4dac35d
Show file tree
Hide file tree
Showing 7 changed files with 151 additions and 412 deletions.
58 changes: 58 additions & 0 deletions __fixtures__/issues/103/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"contract_name": "cw1-whitelist",
"contract_version": "0.3.0",
"idl_version": "1.0.0",
"instantiate": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "InstantiateMsg",
"type": "object",
"required": [
"admins",
"mutable"
],
"properties": {
"admins": {
"type": "array",
"items": {
"type": "string"
}
},
"mutable": {
"type": "boolean"
}
}
},
"execute": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ExecuteMsg",
"anyOf": [
{
"$ref": "#/definitions/ExecMsg"
}
],
"definitions": {
"ExecMsg": {
"type": "string",
"enum": []
}
}
},
"query": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "QueryMsg",
"anyOf": [
{
"$ref": "#/definitions/QueryMsg"
}
],
"definitions": {
"QueryMsg": {
"type": "string",
"enum": []
}
}
},
"migrate": null,
"sudo": null,
"responses": {}
}
247 changes: 0 additions & 247 deletions __fixtures__/issues/98/out/98.client.ts

This file was deleted.

50 changes: 0 additions & 50 deletions __fixtures__/issues/98/out/98.react-query.ts

This file was deleted.

Loading

0 comments on commit 4dac35d

Please sign in to comment.