@cosmwasm/ts-codegen 1.8.1 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -23,7 +23,7 @@ npm install @cosmwasm/ts-codegen
23
23
 
24
24
  The quickest and easiest way to interact with CosmWasm Contracts. `@cosmwasm/ts-codegen` converts your CosmWasm smart contracts into dev-friendly TypeScript classes so you can focus on shipping code.
25
25
 
26
- 🎥 [Checkout our video playlist](https://www.youtube.com/watch?v=D_A5V2PfNLA&list=PL-lMkVv7GZwz1KO3jANwr5W4MoziruXwK) to learn how to use `ts-codegen`!
26
+ 🎥 [Checkout our video playlist](https://cosmology.zone/learn/ts-codegen) to learn how to use `ts-codegen`!
27
27
  ## Table of contents
28
28
 
29
29
  - [@cosmwasm/ts-codegen](#cosmwasmts-codegen)
package/cli.d.ts CHANGED
@@ -1,2 +1 @@
1
- import { MinimistArgs } from '@cosmwasm/ts-codegen-types';
2
1
  export declare const cli: (argv: MinimistArgs) => Promise<void>;
@@ -1,3 +1,2 @@
1
- import { MinimistArgs } from '@cosmwasm/ts-codegen-types';
2
1
  declare const _default: (argv: MinimistArgs) => Promise<never>;
3
2
  export default _default;
@@ -1,3 +1,2 @@
1
- import { MinimistArgs } from '@cosmwasm/ts-codegen-types';
2
1
  declare const _default: (argv: MinimistArgs) => Promise<void>;
3
2
  export default _default;
@@ -1,3 +1,2 @@
1
- import { MinimistArgs } from '@cosmwasm/ts-codegen-types';
2
1
  declare const _default: (argv: MinimistArgs) => Promise<void>;
3
2
  export default _default;
@@ -1,3 +1,2 @@
1
1
  import { BuilderFile, TSBuilderInput } from "../builder";
2
- import { BuilderContext } from "@cosmwasm/ts-codegen-ast";
3
2
  export declare const createHelpers: (input: TSBuilderInput, builderContext: BuilderContext) => BuilderFile[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmwasm/ts-codegen",
3
- "version": "1.8.1",
3
+ "version": "1.9.0",
4
4
  "description": "@cosmwasm/ts-codegen converts your CosmWasm smart contracts into dev-friendly TypeScript classes so you can focus on shipping code.",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmwasm/ts-codegen",
@@ -35,7 +35,7 @@
35
35
  "url": "https://github.com/cosmwasm/ts-codegen/issues"
36
36
  },
37
37
  "devDependencies": {
38
- "@cosmjs/cosmwasm-stargate": "0.30.1",
38
+ "@cosmjs/cosmwasm-stargate": "0.32.3",
39
39
  "ast-stringify": "0.1.0"
40
40
  },
41
41
  "dependencies": {
@@ -66,5 +66,5 @@
66
66
  "smart contracts",
67
67
  "codegen"
68
68
  ],
69
- "gitHead": "7c8ccc3f6066feecc46d3cb16148cd4ae057213f"
69
+ "gitHead": "f25cc410b30af114b6147e3fc264158b1976e362"
70
70
  }
@@ -1,2 +1 @@
1
- import { ContractInfo } from "@cosmwasm/ts-codegen-ast";
2
1
  export declare const createDefaultContractInfo: () => ContractInfo;
@@ -1,5 +1,5 @@
1
1
  import { ContractInfo } from '@cosmwasm/ts-codegen-ast';
2
- import { ExecuteMsg, JSONSchema, QueryMsg } from '@cosmwasm/ts-codegen-types';
2
+ import { JSONSchema } from '@cosmwasm/ts-codegen-types';
3
3
  interface ReadSchemaOpts {
4
4
  schemaDir: string;
5
5
  clean?: boolean;