@meshsdk/common 1.6.13 → 1.7.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/index.cjs CHANGED
@@ -1220,7 +1220,7 @@ var MeshValue = class _MeshValue {
1220
1220
  * @returns boolean
1221
1221
  */
1222
1222
  leq = (other) => {
1223
- return Object.keys(other.value).every((key) => this.leqUnit(key, other));
1223
+ return Object.keys(this.value).every((key) => this.leqUnit(key, other));
1224
1224
  };
1225
1225
  /**
1226
1226
  * Check if the specific unit of value is less than or equal to that unit of another value
package/dist/index.d.cts CHANGED
@@ -430,7 +430,7 @@ type Output = {
430
430
  address: string;
431
431
  amount: Asset[];
432
432
  datum?: {
433
- type: "Hash" | "Inline";
433
+ type: "Hash" | "Inline" | "Embedded";
434
434
  data: BuilderData;
435
435
  };
436
436
  referenceScript?: PlutusScript;
package/dist/index.d.ts CHANGED
@@ -430,7 +430,7 @@ type Output = {
430
430
  address: string;
431
431
  amount: Asset[];
432
432
  datum?: {
433
- type: "Hash" | "Inline";
433
+ type: "Hash" | "Inline" | "Embedded";
434
434
  data: BuilderData;
435
435
  };
436
436
  referenceScript?: PlutusScript;
package/dist/index.js CHANGED
@@ -1091,7 +1091,7 @@ var MeshValue = class _MeshValue {
1091
1091
  * @returns boolean
1092
1092
  */
1093
1093
  leq = (other) => {
1094
- return Object.keys(other.value).every((key) => this.leqUnit(key, other));
1094
+ return Object.keys(this.value).every((key) => this.leqUnit(key, other));
1095
1095
  };
1096
1096
  /**
1097
1097
  * Check if the specific unit of value is less than or equal to that unit of another value
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/common",
3
- "version": "1.6.13",
3
+ "version": "1.7.0",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",