@nats-io/obj 3.0.2 → 3.1.0-2
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/README.md +6 -3
- package/lib/types.d.ts +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|

|
|
3
3
|
[](https://nats-io.github.io/nats.js/obj/index.html)
|
|
4
4
|
|
|
5
|
-
[](https://jsr.io/@nats-io/obj)
|
|
6
|
+
[](https://jsr.io/@nats-io/obj)
|
|
7
7
|
|
|
8
8
|
[](https://www.npmjs.com/package/@nats-io/obj)
|
|
9
9
|

|
|
@@ -19,6 +19,9 @@ familiar to many application developers.
|
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
21
|
|
|
22
|
+
For a quick overview of the libraries and how to install them, see
|
|
23
|
+
[runtimes.md](../runtimes.md).
|
|
24
|
+
|
|
22
25
|
Note that this library is distributed in two different registries:
|
|
23
26
|
|
|
24
27
|
- npm a node-specific library supporting CJS (`require`) and ESM (`import`)
|
|
@@ -43,7 +46,7 @@ The JSR registry hosts the EMS-only [@nats-io/obj](https://jsr.io/@nats-io/obj)
|
|
|
43
46
|
version of the library.
|
|
44
47
|
|
|
45
48
|
```bash
|
|
46
|
-
deno add
|
|
49
|
+
deno add jsr:@nats-io/obj
|
|
47
50
|
```
|
|
48
51
|
|
|
49
52
|
```bash
|
package/lib/types.d.ts
CHANGED
|
@@ -192,7 +192,7 @@ export type ObjectResult = {
|
|
|
192
192
|
};
|
|
193
193
|
export type ObjectStorePutOpts = {
|
|
194
194
|
/**
|
|
195
|
-
*
|
|
195
|
+
* Maximum number of milliseconds for each chunk's PUT request to succeed.
|
|
196
196
|
*/
|
|
197
197
|
timeout?: number;
|
|
198
198
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nats-io/obj",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0-2",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib/",
|
|
6
6
|
"LICENSE",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
},
|
|
34
34
|
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@nats-io/jetstream": "3.0
|
|
37
|
-
"@nats-io/nats-core": "3.0
|
|
38
|
-
"js-sha256": "^0.11.
|
|
36
|
+
"@nats-io/jetstream": "3.1.0-2",
|
|
37
|
+
"@nats-io/nats-core": "3.1.0-2",
|
|
38
|
+
"js-sha256": "^0.11.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/node": "^
|
|
42
|
-
"shx": "^0.
|
|
43
|
-
"typescript": "^5.8.
|
|
41
|
+
"@types/node": "^24.0.11",
|
|
42
|
+
"shx": "^0.4.0",
|
|
43
|
+
"typescript": "^5.8.3"
|
|
44
44
|
}
|
|
45
45
|
}
|