@nats-io/obj 3.0.0-7 → 3.0.0-9
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/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/types.d.ts +2 -1
- package/lib/types.js +3 -0
- package/lib/types.js.map +1 -1
- package/package.json +3 -3
package/lib/internal_mod.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export type { ObjectInfo, ObjectResult, ObjectStore, ObjectStoreLink, ObjectStoreMeta, ObjectStoreMetaOptions, ObjectStoreOptions, ObjectStorePutOpts, ObjectStoreStatus, Placement,
|
|
1
|
+
export type { ObjectInfo, ObjectResult, ObjectStore, ObjectStoreLink, ObjectStoreMeta, ObjectStoreMetaOptions, ObjectStoreOptions, ObjectStorePutOpts, ObjectStoreStatus, Placement, } from "./types";
|
|
2
|
+
export { StorageType } from "./types";
|
|
2
3
|
export { Objm } from "./objectstore";
|
package/lib/internal_mod.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Objm = void 0;
|
|
3
|
+
exports.Objm = exports.StorageType = void 0;
|
|
4
|
+
var types_1 = require("./types");
|
|
5
|
+
Object.defineProperty(exports, "StorageType", { enumerable: true, get: function () { return types_1.StorageType; } });
|
|
4
6
|
var objectstore_1 = require("./objectstore");
|
|
5
7
|
Object.defineProperty(exports, "Objm", { enumerable: true, get: function () { return objectstore_1.Objm; } });
|
|
6
8
|
//# sourceMappingURL=internal_mod.js.map
|
package/lib/internal_mod.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"internal_mod.js","sourceRoot":"","sources":["../build/src/internal_mod.ts"],"names":[],"mappings":";;;
|
|
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"}
|
package/lib/mod.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export type { ObjectInfo, ObjectResult, ObjectStore, ObjectStoreLink, ObjectStoreMeta, ObjectStoreMetaOptions, ObjectStoreOptions, ObjectStorePutOpts, ObjectStoreStatus, Placement,
|
|
1
|
+
export type { ObjectInfo, ObjectResult, ObjectStore, ObjectStoreLink, ObjectStoreMeta, ObjectStoreMetaOptions, ObjectStoreOptions, ObjectStorePutOpts, ObjectStoreStatus, Placement, } from "./internal_mod";
|
|
2
|
+
export { StorageType } from "./internal_mod";
|
|
2
3
|
export { Objm } from "./objectstore";
|
package/lib/mod.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Objm = void 0;
|
|
3
|
+
exports.Objm = exports.StorageType = void 0;
|
|
4
|
+
var internal_mod_1 = require("./internal_mod");
|
|
5
|
+
Object.defineProperty(exports, "StorageType", { enumerable: true, get: function () { return internal_mod_1.StorageType; } });
|
|
4
6
|
var objectstore_1 = require("./objectstore");
|
|
5
7
|
Object.defineProperty(exports, "Objm", { enumerable: true, get: function () { return objectstore_1.Objm; } });
|
|
6
8
|
//# sourceMappingURL=mod.js.map
|
package/lib/mod.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mod.js","sourceRoot":"","sources":["../build/src/mod.ts"],"names":[],"mappings":";;;
|
|
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"}
|
package/lib/types.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { Placement, PubAck, PurgeResponse, StorageType, StreamInfo, StreamInfoRequestOptions } from "@nats-io/jetstream";
|
|
2
2
|
import type { MsgHdrs, Nanos, QueuedIterator } from "@nats-io/nats-core";
|
|
3
|
-
export type { Placement
|
|
3
|
+
export type { Placement } from "@nats-io/jetstream";
|
|
4
|
+
export { StorageType } from "@nats-io/jetstream";
|
|
4
5
|
export type ObjectStoreLink = {
|
|
5
6
|
/**
|
|
6
7
|
* name of object store storing the data
|
package/lib/types.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StorageType = void 0;
|
|
4
|
+
var jetstream_1 = require("@nats-io/jetstream");
|
|
5
|
+
Object.defineProperty(exports, "StorageType", { enumerable: true, get: function () { return jetstream_1.StorageType; } });
|
|
3
6
|
//# sourceMappingURL=types.js.map
|
package/lib/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../build/src/types.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../build/src/types.ts"],"names":[],"mappings":";;;AA0BA,gDAAiD;AAAxC,wGAAA,WAAW,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nats-io/obj",
|
|
3
|
-
"version": "3.0.0-
|
|
3
|
+
"version": "3.0.0-9",
|
|
4
4
|
"files": [
|
|
5
5
|
"lib/",
|
|
6
6
|
"LICENSE",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@nats-io/jetstream": "~3.0.0-
|
|
35
|
+
"@nats-io/jetstream": "~3.0.0-11",
|
|
36
36
|
"@nats-io/nats-core": "~3.0.0-27"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -41,4 +41,4 @@
|
|
|
41
41
|
"typedoc": "^0.26.5",
|
|
42
42
|
"typescript": "^5.5.4"
|
|
43
43
|
}
|
|
44
|
-
}
|
|
44
|
+
}
|