@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 CHANGED
@@ -2,8 +2,8 @@
2
2
  ![jetstream](https://github.com/nats-io/nats.js/actions/workflows/obj.yml/badge.svg)
3
3
  [![JSDoc](https://img.shields.io/badge/JSDoc-reference-blue)](https://nats-io.github.io/nats.js/obj/index.html)
4
4
 
5
- [![JSR](https://jsr.io/badges/@nats-io/kv)](https://jsr.io/@nats-io/obj)
6
- [![JSR](https://jsr.io/badges/@nats-io/kv/score)](https://jsr.io/@nats-io/obj)
5
+ [![JSR](https://jsr.io/badges/@nats-io/obj)](https://jsr.io/@nats-io/obj)
6
+ [![JSR](https://jsr.io/badges/@nats-io/obj/score)](https://jsr.io/@nats-io/obj)
7
7
 
8
8
  [![NPM Version](https://img.shields.io/npm/v/%40nats-io%2Fobj)](https://www.npmjs.com/package/@nats-io/obj)
9
9
  ![NPM Downloads](https://img.shields.io/npm/dt/%40nats-io%2Fobj)
@@ -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 @nats-io/obj
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
- * maximum number of millis for the put requests to succeed
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.2",
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.2",
37
- "@nats-io/nats-core": "3.0.2",
38
- "js-sha256": "^0.11.0"
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": "^22.10.10",
42
- "shx": "^0.3.4",
43
- "typescript": "^5.8.2"
41
+ "@types/node": "^24.0.11",
42
+ "shx": "^0.4.0",
43
+ "typescript": "^5.8.3"
44
44
  }
45
45
  }