@taqueria/plugin-contract-types 0.24.1 → 0.24.2
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 +1 -1
- package/_readme.eta +1 -1
- package/package.json +2 -2
- package/src/generator/testing-code-generator.d.ts +5 -5
package/README.md
CHANGED
package/_readme.eta
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taqueria/plugin-contract-types",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.2",
|
|
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.24.
|
|
38
|
+
"@taqueria/node-sdk": "^0.24.2",
|
|
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
|
-
|
|
5
|
+
type TypedStorage = {
|
|
6
6
|
storage: TypedType;
|
|
7
7
|
};
|
|
8
|
-
|
|
8
|
+
type TypedMethod = {
|
|
9
9
|
name: string;
|
|
10
10
|
args: TypedVar[];
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
type TypedVar = {
|
|
13
13
|
name?: string;
|
|
14
14
|
type: TypedType;
|
|
15
15
|
};
|
|
16
|
-
|
|
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
|
-
|
|
55
|
+
type CodeGenerationFormatting = {
|
|
56
56
|
indent?: number;
|
|
57
57
|
useSemicolons?: boolean;
|
|
58
58
|
};
|