@taqueria/plugin-contract-types 0.23.23-rc → 0.23.24-rc

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taqueria/plugin-contract-types",
3
- "version": "0.23.23-rc",
3
+ "version": "0.23.24-rc",
4
4
  "main": "index.cjs",
5
5
  "module": "index.js",
6
6
  "source": "index.ts",
@@ -35,7 +35,7 @@
35
35
  "typescript": "^4.7.2"
36
36
  },
37
37
  "dependencies": {
38
- "@taqueria/node-sdk": "^0.23.23-rc",
38
+ "@taqueria/node-sdk": "^0.23.24-rc",
39
39
  "@taquito/michel-codec": "^13.0.1",
40
40
  "@taquito/signer": "^13.0.1",
41
41
  "@taquito/taquito": "^13.0.1",
@@ -2,18 +2,18 @@ import * as M from '@taquito/michel-codec';
2
2
 
3
3
  declare const normalizeContractName: (text: string) => string;
4
4
 
5
- declare type TypedStorage = {
5
+ type TypedStorage = {
6
6
  storage: TypedType;
7
7
  };
8
- declare type TypedMethod = {
8
+ type TypedMethod = {
9
9
  name: string;
10
10
  args: TypedVar[];
11
11
  };
12
- declare type TypedVar = {
12
+ type TypedVar = {
13
13
  name?: string;
14
14
  type: TypedType;
15
15
  };
16
- declare type TypedType = {
16
+ type TypedType = {
17
17
  raw: M.MichelsonType;
18
18
  optional?: boolean;
19
19
  } & ({
@@ -52,7 +52,7 @@ declare type TypedType = {
52
52
  };
53
53
  });
54
54
 
55
- declare type CodeGenerationFormatting = {
55
+ type CodeGenerationFormatting = {
56
56
  indent?: number;
57
57
  useSemicolons?: boolean;
58
58
  };