@twin.org/nft-rest-client 0.0.1-next.3 → 0.0.1-next.5

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.
@@ -41,7 +41,7 @@ class NftClient extends apiCore.BaseRestClient {
41
41
  namespace
42
42
  }
43
43
  });
44
- return response.headers.Location;
44
+ return response.headers.location;
45
45
  }
46
46
  /**
47
47
  * Resolve an NFT.
@@ -39,7 +39,7 @@ class NftClient extends BaseRestClient {
39
39
  namespace
40
40
  }
41
41
  });
42
- return response.headers.Location;
42
+ return response.headers.location;
43
43
  }
44
44
  /**
45
45
  * Resolve an NFT.
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/nft-rest-client - Changelog
2
2
 
3
- ## v0.0.1-next.3
3
+ ## v0.0.1-next.5
4
4
 
5
5
  - Initial Release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/nft-rest-client",
3
- "version": "0.0.1-next.3",
3
+ "version": "0.0.1-next.5",
4
4
  "description": "NFT contract implementation which can connect to REST endpoints",
5
5
  "repository": {
6
6
  "type": "git",
@@ -13,39 +13,13 @@
13
13
  "engines": {
14
14
  "node": ">=20.0.0"
15
15
  },
16
- "scripts": {
17
- "clean": "rimraf dist coverage docs/reference",
18
- "build": "tspc",
19
- "test": "vitest --run --config ./vitest.config.ts --no-cache",
20
- "coverage": "vitest --run --coverage --config ./vitest.config.ts --no-cache",
21
- "bundle:esm": "rollup --config rollup.config.mjs --environment MODULE:esm",
22
- "bundle:cjs": "rollup --config rollup.config.mjs --environment MODULE:cjs",
23
- "bundle": "npm run bundle:esm && npm run bundle:cjs",
24
- "docs:clean": "rimraf docs/reference",
25
- "docs:generate": "typedoc",
26
- "docs": "npm run docs:clean && npm run docs:generate",
27
- "dist": "npm run clean && npm run build && npm run test && npm run bundle && npm run docs"
28
- },
29
16
  "dependencies": {
30
- "@twin.org/api-models": "next",
31
17
  "@twin.org/api-core": "next",
18
+ "@twin.org/api-models": "next",
32
19
  "@twin.org/core": "next",
33
20
  "@twin.org/entity": "next",
34
21
  "@twin.org/nameof": "next",
35
- "@twin.org/nft-models": "0.0.1-next.3"
36
- },
37
- "devDependencies": {
38
- "@twin.org/nameof-transformer": "next",
39
- "@vitest/coverage-v8": "2.1.1",
40
- "copyfiles": "2.4.1",
41
- "rimraf": "6.0.1",
42
- "rollup": "4.22.0",
43
- "rollup-plugin-typescript2": "0.36.0",
44
- "ts-patch": "3.2.1",
45
- "typedoc": "0.26.7",
46
- "typedoc-plugin-markdown": "4.2.7",
47
- "typescript": "5.6.2",
48
- "vitest": "2.1.1"
22
+ "@twin.org/nft-models": "0.0.1-next.5"
49
23
  },
50
24
  "main": "./dist/cjs/index.cjs",
51
25
  "module": "./dist/esm/index.mjs",