@meshsdk/core-csl 1.6.12 → 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
@@ -859,6 +859,9 @@ var outputToObj = (output) => {
859
859
  case "Hash":
860
860
  datum = { hash: builderDataToCbor(output.datum.data) };
861
861
  break;
862
+ case "Embedded":
863
+ datum = { embedded: builderDataToCbor(output.datum.data) };
864
+ break;
862
865
  }
863
866
  }
864
867
  const refScript = output.referenceScript;
package/dist/index.js CHANGED
@@ -741,6 +741,9 @@ var outputToObj = (output) => {
741
741
  case "Hash":
742
742
  datum = { hash: builderDataToCbor(output.datum.data) };
743
743
  break;
744
+ case "Embedded":
745
+ datum = { embedded: builderDataToCbor(output.datum.data) };
746
+ break;
744
747
  }
745
748
  }
746
749
  const refScript = output.referenceScript;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshsdk/core-csl",
3
- "version": "1.6.12",
3
+ "version": "1.7.0",
4
4
  "description": "",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
@@ -38,9 +38,9 @@
38
38
  "typescript": "^5.3.3"
39
39
  },
40
40
  "dependencies": {
41
- "@meshsdk/common": "*",
42
- "@sidan-lab/sidan-csl-rs-browser": "0.7.5",
43
- "@sidan-lab/sidan-csl-rs-nodejs": "0.7.5",
41
+ "@meshsdk/common": "1.7.0",
42
+ "@sidan-lab/sidan-csl-rs-browser": "0.8.0",
43
+ "@sidan-lab/sidan-csl-rs-nodejs": "0.8.0",
44
44
  "json-bigint": "^1.0.0"
45
45
  },
46
46
  "prettier": "@meshsdk/configs/prettier",