@rsdk/nats.object-storage 5.4.0-next.2 → 5.4.0-next.4

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [5.4.0-next.4](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.3...v5.4.0-next.4) (2024-11-27)
7
+
8
+ ### Bug Fixes
9
+
10
+ * export kv/os injection token functions + inject nats config ([#308](https://github.com/R-Vision/rsdk/issues/308)) ([d12e88c](https://github.com/R-Vision/rsdk/commit/d12e88c86bc922df94a9784f29443d8938cc57db))
11
+
12
+ ## [5.4.0-next.3](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.2...v5.4.0-next.3) (2024-11-25)
13
+
14
+ **Note:** Version bump only for package @rsdk/nats.object-storage
15
+
6
16
  ## [5.4.0-next.2](https://github.com/R-Vision/rsdk/compare/v5.4.0-next.1...v5.4.0-next.2) (2024-11-25)
7
17
 
8
18
  ### Features
package/dist/index.d.ts CHANGED
@@ -3,3 +3,4 @@ export { WatchObjectStorage, type ObjectStorageWatcher, } from './watch-object-s
3
3
  export { NatsObjectStorageModule } from './nats-object-storage.module';
4
4
  export { ObjectStorage } from './object-storage';
5
5
  export * from './inject-object-storage-service.decorator';
6
+ export * from './tokens.fn';
package/dist/index.js CHANGED
@@ -24,4 +24,5 @@ Object.defineProperty(exports, "NatsObjectStorageModule", { enumerable: true, ge
24
24
  var object_storage_1 = require("./object-storage");
25
25
  Object.defineProperty(exports, "ObjectStorage", { enumerable: true, get: function () { return object_storage_1.ObjectStorage; } });
26
26
  __exportStar(require("./inject-object-storage-service.decorator"), exports);
27
+ __exportStar(require("./tokens.fn"), exports);
27
28
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,6EAAyE;AAAhE,uIAAA,wBAAwB,OAAA;AACjC,mFAG0C;AAFxC,oIAAA,kBAAkB,OAAA;AAGpB,2EAAuE;AAA9D,qIAAA,uBAAuB,OAAA;AAChC,mDAAiD;AAAxC,+GAAA,aAAa,OAAA;AACtB,4EAA0D"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,6EAAyE;AAAhE,uIAAA,wBAAwB,OAAA;AACjC,mFAG0C;AAFxC,oIAAA,kBAAkB,OAAA;AAGpB,2EAAuE;AAA9D,qIAAA,uBAAuB,OAAA;AAChC,mDAAiD;AAAxC,+GAAA,aAAa,OAAA;AACtB,4EAA0D;AAC1D,8CAA4B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsdk/nats.object-storage",
3
- "version": "5.4.0-next.2",
3
+ "version": "5.4.0-next.4",
4
4
  "description": "Nats NestJS object storage",
5
5
  "main": "dist/index.js",
6
6
  "license": "Apache License 2.0",
@@ -38,5 +38,5 @@
38
38
  "rxjs": "^7.8.1"
39
39
  },
40
40
  "nx": {},
41
- "gitHead": "be4deac03b38b3f923a08116e1dc2b55838905b0"
41
+ "gitHead": "6f7d6802d4dc34620f3c0e8c8ec73887df36a647"
42
42
  }
package/src/index.ts CHANGED
@@ -6,3 +6,4 @@ export {
6
6
  export { NatsObjectStorageModule } from './nats-object-storage.module';
7
7
  export { ObjectStorage } from './object-storage';
8
8
  export * from './inject-object-storage-service.decorator';
9
+ export * from './tokens.fn';