@twin.org/immutable-proof-rest-client 0.0.1-next.10 → 0.0.1-next.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.
@@ -43,7 +43,7 @@ class ImmutableProofClient extends apiCore.BaseRestClient {
43
43
  */
44
44
  async get(id) {
45
45
  core.Guards.stringValue(this.CLASS_NAME, "id", id);
46
- const response = await this.fetch("/:id/:entryId", "GET", {
46
+ const response = await this.fetch("/:id", "GET", {
47
47
  headers: {
48
48
  [web.HeaderTypes.Accept]: web.MimeTypes.JsonLd
49
49
  },
@@ -41,7 +41,7 @@ class ImmutableProofClient extends BaseRestClient {
41
41
  */
42
42
  async get(id) {
43
43
  Guards.stringValue(this.CLASS_NAME, "id", id);
44
- const response = await this.fetch("/:id/:entryId", "GET", {
44
+ const response = await this.fetch("/:id", "GET", {
45
45
  headers: {
46
46
  [HeaderTypes.Accept]: MimeTypes.JsonLd
47
47
  },
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/immutable-proof-rest-client - Changelog
2
2
 
3
- ## v0.0.1-next.10
3
+ ## v0.0.1-next.11
4
4
 
5
5
  - Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/immutable-proof-rest-client",
3
- "version": "0.0.1-next.10",
3
+ "version": "0.0.1-next.11",
4
4
  "description": "Immutable Proof contract implementation which can connect to REST endpoints",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,7 +19,7 @@
19
19
  "@twin.org/core": "next",
20
20
  "@twin.org/data-json-ld": "next",
21
21
  "@twin.org/entity": "next",
22
- "@twin.org/immutable-proof-models": "0.0.1-next.10",
22
+ "@twin.org/immutable-proof-models": "0.0.1-next.11",
23
23
  "@twin.org/nameof": "next",
24
24
  "@twin.org/web": "next"
25
25
  },