@oceanprotocol/lib 1.0.0-next.20 → 1.0.0-next.21
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
CHANGED
|
@@ -4,12 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [v1.0.0-next.21](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.20...v1.0.0-next.21)
|
|
8
|
+
|
|
9
|
+
- Update contracts [`#1297`](https://github.com/oceanprotocol/ocean.js/pull/1297)
|
|
10
|
+
|
|
7
11
|
#### [v1.0.0-next.20](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.19...v1.0.0-next.20)
|
|
8
12
|
|
|
13
|
+
> 16 February 2022
|
|
14
|
+
|
|
9
15
|
- bump to contracts alpha.20 [`#1295`](https://github.com/oceanprotocol/ocean.js/pull/1295)
|
|
10
16
|
- use barge addresses for unit tests [`#1291`](https://github.com/oceanprotocol/ocean.js/pull/1291)
|
|
11
17
|
- Bump @types/node from 17.0.17 to 17.0.18 [`#1290`](https://github.com/oceanprotocol/ocean.js/pull/1290)
|
|
12
18
|
- Bump @types/crypto-js from 4.1.0 to 4.1.1 [`#1289`](https://github.com/oceanprotocol/ocean.js/pull/1289)
|
|
19
|
+
- Release 1.0.0-next.20 [`cb8b52c`](https://github.com/oceanprotocol/ocean.js/commit/cb8b52c6e1a73444b8170a762822e4ba15bf244e)
|
|
13
20
|
|
|
14
21
|
#### [v1.0.0-next.19](https://github.com/oceanprotocol/ocean.js/compare/v1.0.0-next.18...v1.0.0-next.19)
|
|
15
22
|
|
|
@@ -86,11 +86,15 @@ export interface Metadata {
|
|
|
86
86
|
*/
|
|
87
87
|
links?: string[];
|
|
88
88
|
/**
|
|
89
|
-
*
|
|
90
|
-
* Links may be to either a URL or another asset.
|
|
89
|
+
* Array of keywords or tags used to describe this content. Empty by default.
|
|
91
90
|
* @type {string[]}
|
|
92
91
|
*/
|
|
93
92
|
tags?: string[];
|
|
93
|
+
/**
|
|
94
|
+
* Array of categories associated to the asset. Note: recommended to use tags instead of this.
|
|
95
|
+
* @type {string[]}
|
|
96
|
+
*/
|
|
97
|
+
categories?: string[];
|
|
94
98
|
/**
|
|
95
99
|
* The party holding the legal copyright. Empty by default.
|
|
96
100
|
* @type {string}
|
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.21",
|
|
5
5
|
"description": "JavaScript client library for Ocean Protocol",
|
|
6
6
|
"main": "./dist/lib.js",
|
|
7
7
|
"umd:main": "dist/lib.umd.js",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"web3": "^1.7.0"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@oceanprotocol/contracts": "1.0.0-alpha.
|
|
60
|
+
"@oceanprotocol/contracts": "1.0.0-alpha.21",
|
|
61
61
|
"bignumber.js": "^9.0.2",
|
|
62
62
|
"cross-fetch": "^3.1.5",
|
|
63
63
|
"crypto-js": "^4.1.1",
|