@cosmwasm/ts-codegen-types
Advanced tools
Comparing version 1.2.0 to 1.3.0
@@ -1,2 +0,2 @@ | ||
import { ExecuteMsg, JSONSchema, QueryMsg } from "./types"; | ||
import { ExecuteMsg, JSONSchema, QueryMsg } from './types'; | ||
export interface KeyedSchema { | ||
@@ -3,0 +3,0 @@ [key: string]: JSONSchema; |
{ | ||
"name": "@cosmwasm/ts-codegen-types", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"description": "CosmWasm TSCodegen Types", | ||
@@ -17,5 +17,6 @@ "author": "Dan Lynch <pyramation@gmail.com>", | ||
"copy": "copyfiles -f LICENSE-Apache LICENSE-MIT README.md package.json dist", | ||
"clean": "del dist/**", | ||
"clean": "rimraf dist/**", | ||
"prepare": "npm run build", | ||
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy", | ||
"lint": "eslint . --fix", | ||
"test": "jest --passWithNoTests", | ||
@@ -32,3 +33,3 @@ "test:watch": "jest --watch --passWithNoTests" | ||
}, | ||
"gitHead": "d63f67e0ee4e6494545751a2579e4d17a755bb66" | ||
"gitHead": "4784715eecf71b22f273bd260abcbbfd82f1b140" | ||
} |
@@ -13,3 +13,3 @@ export declare type fieldType = 'Long' | 'Coin' | 'Duration' | 'Height' | string; | ||
$schema: string; | ||
title: "QueryMsg"; | ||
title: 'QueryMsg'; | ||
oneOf?: any; | ||
@@ -21,3 +21,3 @@ allOf?: any; | ||
$schema: string; | ||
title: "ExecuteMsg" | "ExecuteMsg_for_Empty"; | ||
title: 'ExecuteMsg' | 'ExecuteMsg_for_Empty'; | ||
oneOf?: any; | ||
@@ -24,0 +24,0 @@ allOf?: any; |
18206