@nats-io/obj 3.0.0-1 → 3.0.0-10
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/LICENSE +201 -0
- package/README.md +3 -3
- package/lib/internal_mod.d.ts +2 -1
- package/lib/internal_mod.js +3 -1
- package/lib/internal_mod.js.map +1 -1
- package/lib/mod.d.ts +2 -1
- package/lib/mod.js +3 -1
- package/lib/mod.js.map +1 -1
- package/lib/objectstore.d.ts +2 -2
- package/lib/objectstore.js +50 -49
- package/lib/objectstore.js.map +1 -1
- package/lib/types.d.ts +6 -1
- package/lib/types.js +3 -0
- package/lib/types.js.map +1 -1
- package/package.json +19 -11
- package/build/src/internal_mod.ts +0 -13
- package/build/src/mod.ts +0 -13
- package/build/src/objectstore.ts +0 -922
- package/build/src/types.ts +0 -340
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nats-io/obj",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-10",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib/",
|
|
6
|
-
"
|
|
6
|
+
"LICENSE",
|
|
7
|
+
"README.md"
|
|
7
8
|
],
|
|
8
9
|
"types": "./lib/mod.d.js",
|
|
9
10
|
"exports": {
|
|
@@ -11,14 +12,21 @@
|
|
|
11
12
|
"./internal": "./lib/internal_mod.js"
|
|
12
13
|
},
|
|
13
14
|
"license": "Apache-2.0",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/nats-io/nats.js"
|
|
18
|
+
},
|
|
14
19
|
"private": false,
|
|
15
20
|
"scripts": {
|
|
16
|
-
"clean": "shx rm -Rf ./
|
|
21
|
+
"real-clean": "npm run clean && shx rm -Rf ./node_modules",
|
|
22
|
+
"clean": "shx rm -Rf ./build ./lib",
|
|
17
23
|
"pre-process": "npm run clean && deno run -A ../bin/cjs-fix-imports.ts -o ./build/src ./src",
|
|
18
24
|
"build-cjs": "npm run pre-process && tsc",
|
|
19
25
|
"build": "npm run build-cjs",
|
|
20
|
-
"doc": "npm run build && node_modules/.bin/typedoc --out
|
|
21
|
-
"prepack": "npm run build"
|
|
26
|
+
"doc": "npm run build && node_modules/.bin/typedoc --out ../docs/obj && touch ../docs/obj/.nojekyll",
|
|
27
|
+
"prepack": "npm run build",
|
|
28
|
+
"bump-qualifier": "npm version prerelease --no-commit-hooks --no-git-tag-version",
|
|
29
|
+
"bump-release": "npm version patch --no-commit-hooks --no-git-tag-version"
|
|
22
30
|
},
|
|
23
31
|
"keywords": [],
|
|
24
32
|
"author": {
|
|
@@ -26,13 +34,13 @@
|
|
|
26
34
|
},
|
|
27
35
|
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
|
|
28
36
|
"dependencies": {
|
|
29
|
-
"@nats-io/
|
|
30
|
-
"@nats-io/
|
|
37
|
+
"@nats-io/jetstream": "~3.0.0-13",
|
|
38
|
+
"@nats-io/nats-core": "~3.0.0-28"
|
|
31
39
|
},
|
|
32
40
|
"devDependencies": {
|
|
33
|
-
"@types/node": "^
|
|
34
|
-
"typedoc": "^0.25.12",
|
|
41
|
+
"@types/node": "^22.0.0",
|
|
35
42
|
"shx": "^0.3.4",
|
|
36
|
-
"
|
|
43
|
+
"typedoc": "^0.26.5",
|
|
44
|
+
"typescript": "^5.5.4"
|
|
37
45
|
}
|
|
38
|
-
}
|
|
46
|
+
}
|
package/build/src/mod.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export type {
|
|
2
|
-
ObjectInfo,
|
|
3
|
-
ObjectResult,
|
|
4
|
-
ObjectStore,
|
|
5
|
-
ObjectStoreLink,
|
|
6
|
-
ObjectStoreMeta,
|
|
7
|
-
ObjectStoreMetaOptions,
|
|
8
|
-
ObjectStoreOptions,
|
|
9
|
-
ObjectStorePutOpts,
|
|
10
|
-
ObjectStoreStatus,
|
|
11
|
-
} from "./internal_mod";
|
|
12
|
-
|
|
13
|
-
export { Objm } from "./objectstore";
|