@rsdk/nats.producer.request 6.0.0-next.39 → 6.0.0-next.40

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.
@@ -0,0 +1,3 @@
1
+ const rsdkEslint = require('@rsdk/eslint-plugin');
2
+
3
+ module.exports = rsdkEslint.createConfig({ tsconfigRootDir: __dirname });
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@rsdk/nats.producer.request",
3
- "version": "6.0.0-next.39",
3
+ "role": "library",
4
+ "version": "6.0.0-next.40",
4
5
  "description": "Nats request/reply producer",
5
6
  "license": "Apache License 2.0",
6
7
  "publishConfig": {
@@ -11,27 +12,27 @@
11
12
  },
12
13
  "main": "dist/index.js",
13
14
  "peerDependencies": {
15
+ "@grpc/grpc-js": "^1.10.11",
14
16
  "@nestjs/common": "<=10.4.8",
15
17
  "@nestjs/core": "<=10.4.8",
16
18
  "@nestjs/microservices": "<=10.4.8",
17
- "@rsdk/autodoc.protocol": "*",
18
- "@rsdk/builtin-contract": "*",
19
- "@rsdk/common": "*",
20
- "@rsdk/core": "*",
21
- "@rsdk/events.common": "*",
22
- "@rsdk/grpc.common": "*",
23
- "@rsdk/logging": "*",
24
- "@rsdk/metadata": "*",
25
- "@rsdk/nats.common": "*",
26
- "@rsdk/nats.producer": "*",
19
+ "lodash": "^4.17.21",
20
+ "nats": "^2.29.3",
27
21
  "nice-grpc": "^2.1.10",
28
- "rxjs": "^7.8.1"
22
+ "reflect-metadata": "^0.1.12 || ^0.2.0",
23
+ "rxjs": "^7.8.1",
24
+ "toml": "^4.1.1",
25
+ "type-fest": "^4.29.0"
29
26
  },
30
27
  "dependencies": {
31
- "@grpc/grpc-js": "^1.10.11",
32
- "lodash": "^4.18.1",
33
- "nats": "^2.29.3",
34
- "reflect-metadata": "^0.1.12 || ^0.2.0"
28
+ "@rsdk/autodoc.protocol": "6.0.0-next.40",
29
+ "@rsdk/builtin-contract": "6.0.0-next.40",
30
+ "@rsdk/common": "6.0.0-next.40",
31
+ "@rsdk/core": "6.0.0-next.40",
32
+ "@rsdk/events.common": "6.0.0-next.40",
33
+ "@rsdk/metadata": "6.0.0-next.40",
34
+ "@rsdk/nats.common": "6.0.0-next.40",
35
+ "@rsdk/nats.producer": "6.0.0-next.40"
35
36
  },
36
- "gitHead": "5f69b147fc5e27544356c43087b313c4a7b34392"
37
+ "gitHead": "c220f82159e8e31cf90b2e4078e3570282d01021"
37
38
  }
@@ -47,8 +47,8 @@ export class NatsServers {
47
47
 
48
48
  static extractDefinition<
49
49
  TKeyDeclaration extends NatsServerDeclaration,
50
- TKeyMap extends
51
- NatsServerMap<TKeyDeclaration> = NatsServerMap<TKeyDeclaration>,
50
+ TKeyMap extends NatsServerMap<TKeyDeclaration> =
51
+ NatsServerMap<TKeyDeclaration>,
52
52
  >(keyMap: TKeyMap): NatsServerDefinition[] {
53
53
  const definitions: NatsServerDefinition[] = [];
54
54
 
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": "@rsdk/tsconfig/lint.json",
3
+ "include": ["**/*", "**/.*"]
4
+ }