@arcblock/nft 1.29.5 → 1.29.6

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/esm/issuer.d.mts CHANGED
@@ -37,7 +37,7 @@ declare class NFTIssuer {
37
37
  url?: string;
38
38
  logo?: string;
39
39
  did: string;
40
- pk: any;
40
+ pk: string;
41
41
  };
42
42
  }
43
43
  //#endregion
@@ -33,7 +33,7 @@ declare class NFTRecipient {
33
33
  name: string;
34
34
  location?: string;
35
35
  did: string;
36
- pk: any;
36
+ pk: string;
37
37
  };
38
38
  }
39
39
  //#endregion
package/lib/issuer.d.cts CHANGED
@@ -37,7 +37,7 @@ declare class NFTIssuer {
37
37
  url?: string;
38
38
  logo?: string;
39
39
  did: string;
40
- pk: any;
40
+ pk: string;
41
41
  };
42
42
  }
43
43
  //#endregion
@@ -33,7 +33,7 @@ declare class NFTRecipient {
33
33
  name: string;
34
34
  location?: string;
35
35
  did: string;
36
- pk: any;
36
+ pk: string;
37
37
  };
38
38
  }
39
39
  //#endregion
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcblock/nft",
3
3
  "description": "Utility to create standard asset on forge powered blockchain",
4
- "version": "1.29.5",
4
+ "version": "1.29.6",
5
5
  "author": {
6
6
  "name": "wangshijun",
7
7
  "email": "shijun@arcblock.io",
@@ -43,20 +43,20 @@
43
43
  "esm"
44
44
  ],
45
45
  "dependencies": {
46
- "@arcblock/did-util": "1.29.5",
47
- "@arcblock/vc": "1.29.5",
48
- "@ocap/client": "1.29.5",
49
- "@ocap/tx-protocols": "1.29.5",
50
- "@ocap/tx-util": "1.29.5",
51
- "@ocap/util": "1.29.5",
52
- "@ocap/wallet": "1.29.5",
46
+ "@arcblock/did-util": "1.29.6",
47
+ "@arcblock/vc": "1.29.6",
48
+ "@ocap/client": "1.29.6",
49
+ "@ocap/tx-protocols": "1.29.6",
50
+ "@ocap/tx-util": "1.29.6",
51
+ "@ocap/util": "1.29.6",
52
+ "@ocap/wallet": "1.29.6",
53
53
  "debug": "^4.4.3",
54
54
  "json-stable-stringify": "^1.0.1",
55
55
  "lodash": "^4.17.23",
56
56
  "pako": "^1.0.11"
57
57
  },
58
58
  "devDependencies": {
59
- "@ocap/e2e-test": "1.29.5",
59
+ "@ocap/e2e-test": "1.29.6",
60
60
  "@types/debug": "^4.1.12",
61
61
  "@types/json-stable-stringify": "^1.0.36",
62
62
  "@types/lodash": "^4.17.13",
@@ -96,7 +96,8 @@
96
96
  "gen-docs": "jsdoc2md lib/index.js > docs/README.md",
97
97
  "format-docs": "remark . -o",
98
98
  "test": "bun test",
99
- "coverage": "npm run test -- --coverage"
99
+ "coverage": "npm run test -- --coverage",
100
+ "clean": "rm -rf lib esm"
100
101
  },
101
102
  "gitHead": "87990c8b5e215107fc587c1ced0d6b3e2cd2483e"
102
103
  }