Skip to content

Commit c9eba69

Browse files
committed
Update dependencies
1 parent 26dad00 commit c9eba69

File tree

3 files changed

+18
-14
lines changed

3 files changed

+18
-14
lines changed

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"url": "https://github.com/gawsoftpl/grpc-js-reflection-api-client.git"
2828
},
2929
"dependencies": {
30-
"@grpc/grpc-js": "^1.12.5",
31-
"@types/lodash": "^4.17.13",
30+
"@grpc/grpc-js": "^1.12.6",
31+
"@types/lodash": "^4.17.15",
3232
"lodash": "^4.17.21",
3333
"protobufjs": "^7.4.0"
3434
},

src/GrpcReflection.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import {
99
FileDescriptorProto,
1010
} from 'protobufjs/ext/descriptor';
1111
import { set } from 'lodash';
12-
import {ListMethodsType} from "./Types/ListMethodsType";
13-
import {MethodDefinition, ServiceClient} from "@grpc/grpc-js/build/src/make-client";
12+
import { ListMethodsType } from "./Types/ListMethodsType";
13+
import { MethodDefinition, ServiceClient } from "@grpc/grpc-js/build/src/make-client";
1414
import * as v1 from "./Proto/v1";
1515
import * as v1alpha from "./Proto/v1alpha";
1616

@@ -101,8 +101,10 @@ export class GrpcReflection {
101101
* Find a proto file by the file name.
102102
* eg: examples/helloworld/helloworld/helloworld.proto
103103
* eg: helloworld.proto
104+
*
104105
* @throws ReflectionRequestException ReflectionException
105106
* @param file_name
107+
* @param options
106108
*/
107109
async getDescriptorByFileName(file_name: string, options: grpc.CallOptions = {}): Promise<Descriptor>
108110
{
@@ -173,6 +175,7 @@ export class GrpcReflection {
173175
/**
174176
* @copyright https://github.com/redhoyasa/grpc-reflection-js
175177
* @param fileDescriptorProtoBytes
178+
* @param options
176179
* @private
177180
*/
178181
private async resolveFileDescriptorSet(
@@ -192,6 +195,7 @@ export class GrpcReflection {
192195
/**
193196
* @copyright https://github.com/redhoyasa/grpc-reflection-js
194197
* @param fileDescriptorProtoBytes
198+
* @param options
195199
* @private
196200
*/
197201
private async resolveDescriptorRecursive(

0 commit comments

Comments
 (0)