@oceanprotocol/lib 4.0.0-next.0 → 4.0.0-next.1
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 +10 -0
- package/ComputeExamples.md +2 -2
- 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/types/@types/Compute.d.ts +31 -0
- package/dist/types/services/Provider.d.ts +26 -3
- package/docs/classes/Provider.md +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,18 @@ 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
|
+
#### [v4.0.0-next.1](https://github.com/oceanprotocol/ocean.js/compare/v4.0.0-next.0...v4.0.0-next.1)
|
|
8
|
+
|
|
9
|
+
- add datasets on ComputeAsset, new start compute fn [`8563429`](https://github.com/oceanprotocol/ocean.js/commit/85634293306fca9aaa3ab5ae06a114149ccc8911)
|
|
10
|
+
- support for consumer signature on initialize compute [`71c5923`](https://github.com/oceanprotocol/ocean.js/commit/71c59230db99a08a6c28df66c26e32ca61c71089)
|
|
11
|
+
- add file object types [`cd936c2`](https://github.com/oceanprotocol/ocean.js/commit/cd936c24a989633d3d8e71b908a375802d2e2970)
|
|
12
|
+
|
|
7
13
|
#### [v4.0.0-next.0](https://github.com/oceanprotocol/ocean.js/compare/v3.4.3...v4.0.0-next.0)
|
|
8
14
|
|
|
15
|
+
> 12 November 2024
|
|
16
|
+
|
|
17
|
+
- Release 4.0.0-next.0 [`658cfe8`](https://github.com/oceanprotocol/ocean.js/commit/658cfe83ff855a83eb97e3cbf1276bed6022a1a6)
|
|
18
|
+
|
|
9
19
|
#### [v3.4.3](https://github.com/oceanprotocol/ocean.js/compare/v3.4.2...v3.4.3)
|
|
10
20
|
|
|
11
21
|
> 5 November 2024
|
package/ComputeExamples.md
CHANGED
|
@@ -627,7 +627,7 @@ Let's have 5 minute of compute access
|
|
|
627
627
|
computeEnv.id,
|
|
628
628
|
computeValidUntil,
|
|
629
629
|
providerUrl,
|
|
630
|
-
|
|
630
|
+
consumerAccount
|
|
631
631
|
)
|
|
632
632
|
```
|
|
633
633
|
<!--
|
|
@@ -655,7 +655,7 @@ Let's have 5 minute of compute access
|
|
|
655
655
|
providerUrl,
|
|
656
656
|
consumerAccount,
|
|
657
657
|
computeEnv.id,
|
|
658
|
-
assets
|
|
658
|
+
assets,
|
|
659
659
|
algo
|
|
660
660
|
)
|
|
661
661
|
|