@taqueria/plugin-contract-types 0.50.8 → 0.50.11
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 +5 -5
- package/src/type-aliases.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taqueria/plugin-contract-types",
|
|
3
|
-
"version": "0.50.
|
|
3
|
+
"version": "0.50.11",
|
|
4
4
|
"main": "index.cjs",
|
|
5
5
|
"module": "index.js",
|
|
6
6
|
"source": "index.ts",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"typescript": "^5.3.3"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@taqueria/node-sdk": "^0.50.
|
|
38
|
-
"@taquito/michel-codec": "^19.
|
|
39
|
-
"@taquito/signer": "^19.
|
|
40
|
-
"@taquito/taquito": "^19.
|
|
37
|
+
"@taqueria/node-sdk": "^0.50.11",
|
|
38
|
+
"@taquito/michel-codec": "^19.2.0",
|
|
39
|
+
"@taquito/signer": "^19.2.0",
|
|
40
|
+
"@taquito/taquito": "^19.2.0",
|
|
41
41
|
"bignumber.js": "^9.1.2",
|
|
42
42
|
"fast-glob": "^3.3.2"
|
|
43
43
|
},
|
package/src/type-aliases.ts
CHANGED
|
@@ -27,7 +27,7 @@ export type MapKey = Array<any> | object | string | boolean | number;
|
|
|
27
27
|
export type MMap<K extends MapKey, V> = Omit<MichelsonMap<K, V>, 'get'> & { get: (key: K) => V };
|
|
28
28
|
export type BigMap<K extends MapKey, V> = Omit<MichelsonMap<K, V>, 'get'> & { get: (key: K) => Promise<V> };
|
|
29
29
|
|
|
30
|
-
export type chest =
|
|
30
|
+
export type chest = bytes & { __type: 'chest' };
|
|
31
31
|
export type chest_key = string & { __type: 'chest_key' };
|
|
32
32
|
|
|
33
33
|
export const createStringTypeTas = <T extends string>() => {
|