@hazeljs/grpc 2.0.4 → 2.0.6
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/dist/decorators/grpc-method.decorator.test.d.ts +1 -1
- package/dist/decorators/grpc-method.decorator.test.d.ts.map +1 -1
- package/dist/decorators/grpc-method.decorator.test.js +0 -1
- package/dist/grpc.client.test.d.ts +1 -1
- package/dist/grpc.client.test.d.ts.map +1 -1
- package/dist/grpc.client.test.js +0 -1
- package/dist/grpc.server.test.d.ts +1 -1
- package/dist/grpc.server.test.d.ts.map +1 -1
- package/dist/grpc.server.test.js +0 -1
- package/package.json +2 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
export {};
|
|
2
2
|
//# sourceMappingURL=grpc-method.decorator.test.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grpc-method.decorator.test.d.ts","sourceRoot":"","sources":["../../src/decorators/grpc-method.decorator.test.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"grpc-method.decorator.test.d.ts","sourceRoot":"","sources":["../../src/decorators/grpc-method.decorator.test.ts"],"names":[],"mappings":""}
|
|
@@ -9,7 +9,6 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
require("reflect-metadata");
|
|
13
12
|
const grpc_method_decorator_1 = require("./grpc-method.decorator");
|
|
14
13
|
describe('GrpcMethod decorator', () => {
|
|
15
14
|
it('should define GRPC_METHOD_METADATA_KEY', () => {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
export {};
|
|
2
2
|
//# sourceMappingURL=grpc.client.test.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grpc.client.test.d.ts","sourceRoot":"","sources":["../src/grpc.client.test.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"grpc.client.test.d.ts","sourceRoot":"","sources":["../src/grpc.client.test.ts"],"names":[],"mappings":""}
|
package/dist/grpc.client.test.js
CHANGED
|
@@ -37,7 +37,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
37
37
|
};
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
39
|
/// <reference types="jest" />
|
|
40
|
-
require("reflect-metadata");
|
|
41
40
|
const path_1 = __importDefault(require("path"));
|
|
42
41
|
const grpc = __importStar(require("@grpc/grpc-js"));
|
|
43
42
|
const grpc_client_1 = require("./grpc.client");
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
export {};
|
|
2
2
|
//# sourceMappingURL=grpc.server.test.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grpc.server.test.d.ts","sourceRoot":"","sources":["../src/grpc.server.test.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"grpc.server.test.d.ts","sourceRoot":"","sources":["../src/grpc.server.test.ts"],"names":[],"mappings":""}
|
package/dist/grpc.server.test.js
CHANGED
|
@@ -45,7 +45,6 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
45
45
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
46
46
|
};
|
|
47
47
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
|
-
require("reflect-metadata");
|
|
49
48
|
const core_1 = require("@hazeljs/core");
|
|
50
49
|
const grpc_server_1 = require("./grpc.server");
|
|
51
50
|
const grpc_method_decorator_1 = require("./decorators/grpc-method.decorator");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hazeljs/grpc",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "gRPC module for HazelJS framework - RPC server and client support with decorators",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"typescript": "^6.0.3"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@hazeljs/core": "^2.0.
|
|
32
|
+
"@hazeljs/core": "^2.0.6"
|
|
33
33
|
},
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|