@oceanprotocol/lib 1.0.0-next.24 → 1.0.0-next.25
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/CHANGELOG.md +18 -0
- package/README.md +11 -31
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +1 -1
- package/dist/lib.modern.js +1 -1
- package/dist/lib.modern.js.map +1 -1
- package/dist/lib.module.js +1 -1
- package/dist/lib.module.js.map +1 -1
- package/dist/lib.umd.js +1 -1
- package/dist/lib.umd.js.map +1 -1
- package/dist/src/@types/DDO/Service.d.ts +5 -0
- package/package.json +11 -11
|
@@ -121,4 +121,9 @@ export interface Service {
|
|
|
121
121
|
* @type {ServiceComputeOptions}
|
|
122
122
|
*/
|
|
123
123
|
compute?: ServiceComputeOptions;
|
|
124
|
+
/**
|
|
125
|
+
* Stores service specific additional information, this is customizable by publisher
|
|
126
|
+
* @type {any}
|
|
127
|
+
*/
|
|
128
|
+
additionalInformation?: any;
|
|
124
129
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oceanprotocol/lib",
|
|
3
3
|
"source": "./src/index.ts",
|
|
4
|
-
"version": "1.0.0-next.
|
|
4
|
+
"version": "1.0.0-next.25",
|
|
5
5
|
"description": "JavaScript client library for Ocean Protocol",
|
|
6
6
|
"main": "./dist/lib.js",
|
|
7
7
|
"umd:main": "dist/lib.umd.js",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://github.com/oceanprotocol/ocean.js#readme",
|
|
56
56
|
"peerDependencies": {
|
|
57
|
-
"web3": "^1.7.
|
|
57
|
+
"web3": "^1.7.1"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@oceanprotocol/contracts": "1.0.0-alpha.21",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"cross-fetch": "^3.1.5",
|
|
63
63
|
"crypto-js": "^4.1.1",
|
|
64
64
|
"decimal.js": "^10.3.1",
|
|
65
|
-
"web3": "^1.7.
|
|
66
|
-
"web3-core": "^1.7.
|
|
67
|
-
"web3-eth-contract": "^1.7.
|
|
65
|
+
"web3": "^1.7.1",
|
|
66
|
+
"web3-core": "^1.7.1",
|
|
67
|
+
"web3-eth-contract": "^1.7.1"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
70
|
"@truffle/hdwallet-provider": "^2.0.3",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"@types/chai-spies": "^1.0.3",
|
|
73
73
|
"@types/crypto-js": "^4.1.1",
|
|
74
74
|
"@types/mocha": "^9.1.0",
|
|
75
|
-
"@types/node": "^17.0.
|
|
75
|
+
"@types/node": "^17.0.21",
|
|
76
76
|
"@types/node-fetch": "^3.0.3",
|
|
77
77
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
78
78
|
"@typescript-eslint/parser": "^4.33.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"cross-env": "^7.0.3",
|
|
83
83
|
"eslint": "^7.17.0",
|
|
84
84
|
"eslint-config-oceanprotocol": "^1.5.0",
|
|
85
|
-
"eslint-config-prettier": "^8.
|
|
85
|
+
"eslint-config-prettier": "^8.5.0",
|
|
86
86
|
"eslint-plugin-prettier": "^4.0.0",
|
|
87
87
|
"fs": "0.0.1-security",
|
|
88
88
|
"microbundle": "^0.14.2",
|
|
@@ -91,12 +91,12 @@
|
|
|
91
91
|
"nyc": "^15.1.0",
|
|
92
92
|
"ora": "5.4.1",
|
|
93
93
|
"prettier": "^2.3.1",
|
|
94
|
-
"release-it": "^14.12.
|
|
94
|
+
"release-it": "^14.12.5",
|
|
95
95
|
"source-map-support": "^0.5.19",
|
|
96
|
-
"ts-node": "^10.
|
|
96
|
+
"ts-node": "^10.7.0",
|
|
97
97
|
"ts-node-register": "^1.0.0",
|
|
98
|
-
"typedoc": "0.22.
|
|
99
|
-
"typescript": "^4.
|
|
98
|
+
"typedoc": "0.22.13",
|
|
99
|
+
"typescript": "^4.6.2"
|
|
100
100
|
},
|
|
101
101
|
"nyc": {
|
|
102
102
|
"include": [
|