wasm-ast-types 1.3.0 → 1.4.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.
@@ -37,7 +37,7 @@ exports.defaultOptions = {
37
37
  camelize: true,
38
38
  queryKeys: false
39
39
  },
40
- useContractHooks: {
40
+ useContractsHook: {
41
41
  enabled: false
42
42
  }
43
43
  };
@@ -31,7 +31,7 @@ export const defaultOptions = {
31
31
  camelize: true,
32
32
  queryKeys: false
33
33
  },
34
- useContractHooks: {
34
+ useContractsHook: {
35
35
  enabled: false
36
36
  }
37
37
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wasm-ast-types",
3
- "version": "1.3.0",
3
+ "version": "1.4.0",
4
4
  "description": "CosmWasm TypeScript AST generation",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmwasm/ts-codegen/tree/master/packages/ast#readme",
@@ -39,5 +39,5 @@
39
39
  "case": "1.6.3",
40
40
  "deepmerge": "4.2.2"
41
41
  },
42
- "gitHead": "43cbdf2257bd5a86b5fc1bfa577a78a9f18ec7cd"
42
+ "gitHead": "88b543457c35e7aea831687c31e4169582093aa8"
43
43
  }
@@ -13,7 +13,7 @@ export interface RenderOptions {
13
13
  messageBuilder?: MessageBuilderOptions;
14
14
  client?: TSClientOptions;
15
15
  reactQuery?: ReactQueryOptions;
16
- useContractHooks?: UseContractsOptions;
16
+ useContractsHook?: UseContractsOptions;
17
17
  }
18
18
  export interface ProviderInfo {
19
19
  classname: string;