@taquito/michelson-encoder 16.1.2-beta-RC.0 → 16.2.0-beta-RC.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/dist/lib/tokens/option.js +5 -4
- package/dist/lib/tokens/option.js.map +1 -1
- package/dist/lib/version.js +2 -2
- package/dist/taquito-michelson-encoder.es6.js +7 -6
- package/dist/taquito-michelson-encoder.es6.js.map +1 -1
- package/dist/taquito-michelson-encoder.umd.js +7 -6
- package/dist/taquito-michelson-encoder.umd.js.map +1 -1
- package/dist/types/tokens/option.d.ts +9 -3
- package/package.json +4 -5
|
@@ -19,17 +19,23 @@ export declare class OptionToken extends ComparableToken {
|
|
|
19
19
|
annot(): string;
|
|
20
20
|
Encode(args: any): any;
|
|
21
21
|
EncodeObject(args: any, semantic?: SemanticEncoding): any;
|
|
22
|
-
Execute(val: any, semantics?: Semantic):
|
|
22
|
+
Execute(val: any, semantics?: Semantic): {
|
|
23
|
+
Some: any;
|
|
24
|
+
} | null;
|
|
23
25
|
/**
|
|
24
26
|
* @deprecated ExtractSchema has been deprecated in favor of generateSchema
|
|
25
27
|
*
|
|
26
28
|
*/
|
|
27
|
-
ExtractSchema():
|
|
29
|
+
ExtractSchema(): {
|
|
30
|
+
Some: any;
|
|
31
|
+
};
|
|
28
32
|
generateSchema(): OptionTokenSchema;
|
|
29
33
|
ExtractSignature(): any[][];
|
|
30
34
|
get KeySchema(): ComparableToken;
|
|
31
35
|
compare(val1: any, val2: any): number;
|
|
32
|
-
ToKey(val: any):
|
|
36
|
+
ToKey(val: any): {
|
|
37
|
+
Some: any;
|
|
38
|
+
} | null;
|
|
33
39
|
ToBigMapKey(val: any): {
|
|
34
40
|
key: any;
|
|
35
41
|
type: Pick<import("@taquito/rpc").MichelsonV1ExpressionExtended, "prim" | "args">;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/michelson-encoder",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.2.0-beta-RC.0",
|
|
4
4
|
"description": "converts michelson data and types into convenient JS/TS objects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -68,13 +68,12 @@
|
|
|
68
68
|
]
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@taquito/rpc": "^16.
|
|
72
|
-
"@taquito/utils": "^16.
|
|
71
|
+
"@taquito/rpc": "^16.2.0-beta-RC.0",
|
|
72
|
+
"@taquito/utils": "^16.2.0-beta-RC.0",
|
|
73
73
|
"bignumber.js": "^9.1.0",
|
|
74
74
|
"fast-json-stable-stringify": "^2.1.0"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@taquito/rpc": "^14.0.0-beta-RC.0",
|
|
78
77
|
"@types/bluebird": "^3.5.36",
|
|
79
78
|
"@types/jest": "^26.0.23",
|
|
80
79
|
"@types/node": "^16",
|
|
@@ -102,5 +101,5 @@
|
|
|
102
101
|
"ts-toolbelt": "^9.6.0",
|
|
103
102
|
"typescript": "~4.1.5"
|
|
104
103
|
},
|
|
105
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "a909a1e61a626eb5a2e9ad269a80a96aceff4e28"
|
|
106
105
|
}
|