@oceanprotocol/lib 1.1.4 → 1.1.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.
- package/CHANGELOG.md +7 -0
- package/dist/src/@types/Asset.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,14 +4,21 @@ 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.1.5](https://github.com/oceanprotocol/ocean.js/compare/v1.1.4...v1.1.5)
|
|
8
|
+
|
|
9
|
+
- changed consume with orders [`#1540`](https://github.com/oceanprotocol/ocean.js/pull/1540)
|
|
10
|
+
|
|
7
11
|
#### [v1.1.4](https://github.com/oceanprotocol/ocean.js/compare/v1.1.3...v1.1.4)
|
|
8
12
|
|
|
13
|
+
> 29 June 2022
|
|
14
|
+
|
|
9
15
|
- fix conversion [`#1538`](https://github.com/oceanprotocol/ocean.js/pull/1538)
|
|
10
16
|
- Bump release-it from 15.1.0 to 15.1.1 [`#1536`](https://github.com/oceanprotocol/ocean.js/pull/1536)
|
|
11
17
|
- Bump eslint-plugin-prettier from 4.0.0 to 4.1.0 [`#1531`](https://github.com/oceanprotocol/ocean.js/pull/1531)
|
|
12
18
|
- Bump @typescript-eslint/eslint-plugin from 5.29.0 to 5.30.0 [`#1533`](https://github.com/oceanprotocol/ocean.js/pull/1533)
|
|
13
19
|
- Bump typedoc from 0.22.17 to 0.23.2 [`#1535`](https://github.com/oceanprotocol/ocean.js/pull/1535)
|
|
14
20
|
- Bump @typescript-eslint/parser from 5.29.0 to 5.30.0 [`#1534`](https://github.com/oceanprotocol/ocean.js/pull/1534)
|
|
21
|
+
- Release 1.1.4 [`ecc7226`](https://github.com/oceanprotocol/ocean.js/commit/ecc7226781fceaddb45612ef11ad08e36ef08eb2)
|
|
15
22
|
|
|
16
23
|
#### [v1.1.3](https://github.com/oceanprotocol/ocean.js/compare/v1.1.2...v1.1.3)
|
|
17
24
|
|
|
@@ -107,7 +107,7 @@ export interface Asset extends DDO {
|
|
|
107
107
|
* How often an asset was consumed, meaning how often it was either downloaded or used as part of a compute job.
|
|
108
108
|
* @type {string}
|
|
109
109
|
*/
|
|
110
|
-
|
|
110
|
+
orders: number;
|
|
111
111
|
};
|
|
112
112
|
/**
|
|
113
113
|
* Contains information about an asset's purgatory status defined in
|