@meshsdk/common 1.7.9 → 1.7.10

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/index.d.cts CHANGED
@@ -438,6 +438,7 @@ type Output = {
438
438
  type RefTxIn = {
439
439
  txHash: string;
440
440
  txIndex: number;
441
+ scriptSize?: number;
441
442
  };
442
443
  type TxInParameter = {
443
444
  txHash: string;
package/dist/index.d.ts CHANGED
@@ -438,6 +438,7 @@ type Output = {
438
438
  type RefTxIn = {
439
439
  txHash: string;
440
440
  txIndex: number;
441
+ scriptSize?: number;
441
442
  };
442
443
  type TxInParameter = {
443
444
  txHash: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/common",
3
- "version": "1.7.9",
3
+ "version": "1.7.10",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "browser": "./dist/index.js",
@@ -9,9 +9,9 @@
9
9
  "type": "module",
10
10
  "exports": {
11
11
  ".": {
12
+ "types": "./dist/index.d.ts",
12
13
  "import": "./dist/index.js",
13
- "require": "./dist/index.cjs",
14
- "types": "./dist/index.d.ts"
14
+ "require": "./dist/index.cjs"
15
15
  }
16
16
  },
17
17
  "files": [
@@ -51,4 +51,4 @@
51
51
  "blockchain",
52
52
  "sdk"
53
53
  ]
54
- }
54
+ }