@nats-io/obj 3.0.0-17 → 3.0.0-19

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.
@@ -1,3 +1,3 @@
1
- export type { ObjectInfo, ObjectResult, ObjectStore, ObjectStoreLink, ObjectStoreMeta, ObjectStoreMetaOptions, ObjectStoreOptions, ObjectStorePutOpts, ObjectStoreStatus, Placement, } from "./types";
1
+ export type { ObjectInfo, ObjectResult, ObjectStore, ObjectStoreLink, ObjectStoreMeta, ObjectStoreMetaOptions, ObjectStoreOptions, ObjectStorePutOpts, ObjectStoreStatus, ObjectWatchInfo, Placement, } from "./types";
2
2
  export { StorageType } from "./types";
3
3
  export { Objm } from "./objectstore";
@@ -1 +1 @@
1
- {"version":3,"file":"internal_mod.js","sourceRoot":"","sources":["../build/src/internal_mod.ts"],"names":[],"mappings":";;;AAaA,iCAAsC;AAA7B,oGAAA,WAAW,OAAA;AAEpB,6CAAqC;AAA5B,mGAAA,IAAI,OAAA"}
1
+ {"version":3,"file":"internal_mod.js","sourceRoot":"","sources":["../build/src/internal_mod.ts"],"names":[],"mappings":";;;AAcA,iCAAsC;AAA7B,oGAAA,WAAW,OAAA;AAEpB,6CAAqC;AAA5B,mGAAA,IAAI,OAAA"}
package/lib/mod.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export type { ObjectInfo, ObjectResult, ObjectStore, ObjectStoreLink, ObjectStoreMeta, ObjectStoreMetaOptions, ObjectStoreOptions, ObjectStorePutOpts, ObjectStoreStatus, Placement, } from "./internal_mod";
1
+ export type { ObjectInfo, ObjectResult, ObjectStore, ObjectStoreLink, ObjectStoreMeta, ObjectStoreMetaOptions, ObjectStoreOptions, ObjectStorePutOpts, ObjectStoreStatus, ObjectWatchInfo, Placement, } from "./internal_mod";
2
2
  export { StorageType } from "./internal_mod";
3
3
  export { Objm } from "./objectstore";
package/lib/mod.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"mod.js","sourceRoot":"","sources":["../build/src/mod.ts"],"names":[],"mappings":";;;AAaA,+CAA6C;AAApC,2GAAA,WAAW,OAAA;AAEpB,6CAAqC;AAA5B,mGAAA,IAAI,OAAA"}
1
+ {"version":3,"file":"mod.js","sourceRoot":"","sources":["../build/src/mod.ts"],"names":[],"mappings":";;;AAcA,+CAA6C;AAApC,2GAAA,WAAW,OAAA;AAEpB,6CAAqC;AAA5B,mGAAA,IAAI,OAAA"}
package/lib/types.d.ts CHANGED
@@ -133,10 +133,6 @@ export type ObjectStoreStatus = {
133
133
  */
134
134
  compression: boolean;
135
135
  };
136
- /**
137
- * @deprecated {@link ObjectStoreStatus}
138
- */
139
- export type ObjectStoreInfo = ObjectStoreStatus;
140
136
  export type ObjectStoreOptions = {
141
137
  /**
142
138
  * A description for the object store
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nats-io/obj",
3
- "version": "3.0.0-17",
3
+ "version": "3.0.0-19",
4
4
  "files": [
5
5
  "lib/",
6
6
  "LICENSE",
@@ -23,7 +23,7 @@
23
23
  "pre-process": "npm run clean && deno run -A ../bin/cjs-fix-imports.ts -o ./build/src ./src",
24
24
  "build-cjs": "npm run pre-process && tsc",
25
25
  "build": "npm run build-cjs",
26
- "doc": "npm run build && node_modules/.bin/typedoc --out ../docs/obj && touch ../docs/obj/.nojekyll",
26
+ "doc": "npm run build && typedoc --out ../docs/obj && touch ../docs/obj/.nojekyll",
27
27
  "prepack": "npm run build",
28
28
  "bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
29
29
  "bump-release": "npm version patch --no-commit-hooks --no-git-tag-version"
@@ -34,8 +34,8 @@
34
34
  },
35
35
  "description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
36
36
  "dependencies": {
37
- "@nats-io/jetstream": "3.0.0-21",
38
- "@nats-io/nats-core": "3.0.0-34"
37
+ "@nats-io/jetstream": "3.0.0-24",
38
+ "@nats-io/nats-core": "3.0.0-36"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@types/node": "^22.7.6",