@cosmwasm/ts-codegen 1.7.2 → 1.8.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/cli.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- import { MinimistArgs } from '@cosmology/ts-codegen-types';
1
+ import { MinimistArgs } from '@cosmwasm/ts-codegen-types';
2
2
  export declare const cli: (argv: MinimistArgs) => Promise<void>;
@@ -1,3 +1,3 @@
1
- import { MinimistArgs } from '@cosmology/ts-codegen-types';
1
+ import { MinimistArgs } from '@cosmwasm/ts-codegen-types';
2
2
  declare const _default: (argv: MinimistArgs) => Promise<never>;
3
3
  export default _default;
@@ -1,3 +1,3 @@
1
- import { MinimistArgs } from '@cosmology/ts-codegen-types';
1
+ import { MinimistArgs } from '@cosmwasm/ts-codegen-types';
2
2
  declare const _default: (argv: MinimistArgs) => Promise<void>;
3
3
  export default _default;
@@ -1,3 +1,3 @@
1
- import { MinimistArgs } from '@cosmology/ts-codegen-types';
1
+ import { MinimistArgs } from '@cosmwasm/ts-codegen-types';
2
2
  declare const _default: (argv: MinimistArgs) => Promise<void>;
3
3
  export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmwasm/ts-codegen",
3
- "version": "1.7.2",
3
+ "version": "1.8.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",
@@ -42,7 +42,7 @@
42
42
  "@babel/generator": "7.24.4",
43
43
  "@babel/traverse": "7.24.1",
44
44
  "@babel/types": "7.24.0",
45
- "@cosmology/ts-codegen-types": "^1.1.1",
45
+ "@cosmwasm/ts-codegen-types": "^1.2.0",
46
46
  "@pyramation/json-schema-to-typescript": " 11.0.4",
47
47
  "@types/rimraf": "3.0.2",
48
48
  "@types/shelljs": "0.8.15",
@@ -58,7 +58,7 @@
58
58
  "parse-package-name": "1.0.0",
59
59
  "rimraf": "3.0.2",
60
60
  "shelljs": "0.8.5",
61
- "wasm-ast-types": "^1.4.1"
61
+ "wasm-ast-types": "^1.5.0"
62
62
  },
63
63
  "keywords": [
64
64
  "cosmwasm",
@@ -66,5 +66,5 @@
66
66
  "smart contracts",
67
67
  "codegen"
68
68
  ],
69
- "gitHead": "fa841ef169b04dd982a3615326777d1f9a9a3420"
69
+ "gitHead": "d63f67e0ee4e6494545751a2579e4d17a755bb66"
70
70
  }
@@ -1,5 +1,5 @@
1
1
  import { ContractInfo } from 'wasm-ast-types';
2
- import { ExecuteMsg, JSONSchema, QueryMsg } from '@cosmology/ts-codegen-types';
2
+ import { ExecuteMsg, JSONSchema, QueryMsg } from '@cosmwasm/ts-codegen-types';
3
3
  interface ReadSchemaOpts {
4
4
  schemaDir: string;
5
5
  clean?: boolean;