grpc-js-reflection-client 1.0.2 → 1.1.1
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/Readme.md +40 -24
- package/dist/{src/Descriptor.d.ts → Descriptor.d.ts} +4 -2
- package/dist/{src/Descriptor.js → Descriptor.js} +3 -3
- package/dist/Descriptor.js.map +1 -0
- package/dist/Exceptions/ReflectionException.js.map +1 -0
- package/dist/Exceptions/ReflectionRequestException.d.ts +2 -0
- package/dist/Exceptions/ReflectionRequestException.js +7 -0
- package/dist/Exceptions/ReflectionRequestException.js.map +1 -0
- package/dist/Exceptions/index.d.ts +2 -0
- package/dist/Exceptions/index.js +19 -0
- package/dist/Exceptions/index.js.map +1 -0
- package/dist/GrpcReflection.d.ts +19 -0
- package/dist/GrpcReflection.js +100 -0
- package/dist/GrpcReflection.js.map +1 -0
- package/dist/Types/getAllExtensionNumbersOfTypeType.d.ts +4 -0
- package/dist/Types/getAllExtensionNumbersOfTypeType.js +3 -0
- package/dist/Types/getAllExtensionNumbersOfTypeType.js.map +1 -0
- package/dist/Types/index.d.ts +1 -0
- package/dist/Types/index.js +18 -0
- package/dist/Types/index.js.map +1 -0
- package/dist/{src/index.d.ts → index.d.ts} +2 -1
- package/dist/{src/index.js → index.js} +2 -1
- package/dist/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/getProtoObj.ts +3 -2
- package/examples/helloworld.js +43 -0
- package/examples/list-services.js +15 -0
- package/package.json +12 -7
- package/proto/reflection.proto +136 -0
- package/dist/examples/getProtoObj.d.ts +0 -1
- package/dist/examples/getProtoObj.js +0 -28
- package/dist/examples/getProtoObj.js.map +0 -1
- package/dist/examples/listServices.d.ts +0 -1
- package/dist/examples/listServices.js +0 -14
- package/dist/examples/listServices.js.map +0 -1
- package/dist/examples/otherMethods.d.ts +0 -1
- package/dist/examples/otherMethods.js +0 -21
- package/dist/examples/otherMethods.js.map +0 -1
- package/dist/src/Descriptor.js.map +0 -1
- package/dist/src/GrpcReflection.d.ts +0 -8
- package/dist/src/GrpcReflection.js +0 -18
- package/dist/src/GrpcReflection.js.map +0 -1
- package/dist/src/ReflectionException.js.map +0 -1
- package/dist/src/index.js.map +0 -1
- /package/dist/{src → Exceptions}/ReflectionException.d.ts +0 -0
- /package/dist/{src → Exceptions}/ReflectionException.js +0 -0
package/Readme.md
CHANGED
|
@@ -19,15 +19,15 @@ yarn add grpc-js-reflection-client
|
|
|
19
19
|
|
|
20
20
|
### List services
|
|
21
21
|
```js
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
const { GrpcReflection } = require('grpc-js-reflection-client');
|
|
23
|
+
const grpc = require('@grpc/grpc-js');
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* List services
|
|
27
27
|
*/
|
|
28
28
|
try {
|
|
29
29
|
(async () => {
|
|
30
|
-
const c = new GrpcReflection('0.0.0.0:
|
|
30
|
+
const c = new GrpcReflection('0.0.0.0:50051', grpc.credentials.createInsecure());
|
|
31
31
|
console.log(await c.listServices());
|
|
32
32
|
})();
|
|
33
33
|
|
|
@@ -38,51 +38,67 @@ try {
|
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
### Download proto from reflection and execute executor
|
|
41
|
+
|
|
42
|
+
1. Download golang grpc reflection server
|
|
43
|
+
```sh
|
|
44
|
+
wget https://github.com/gawsoftpl/grpc-js-reflection-api-client/raw/main/tests/e2e/grpc-go-server-reflection/grpc-reflection-server
|
|
45
|
+
chmod +x grpc-reflection-server
|
|
46
|
+
./grpc-reflection-server
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
2. Write grpc reflection client in nodejs
|
|
41
50
|
```js
|
|
42
|
-
|
|
43
|
-
|
|
51
|
+
cat <<EOF > script.js
|
|
52
|
+
const { GrpcReflection } = require('grpc-js-reflection-client');
|
|
53
|
+
const grpc = require('@grpc/grpc-js');
|
|
44
54
|
|
|
45
55
|
/**
|
|
46
56
|
* Get proto descriptor from reflection grpc api and get in @grpc/grpc-js format
|
|
47
57
|
*
|
|
48
58
|
* */
|
|
49
59
|
try {
|
|
50
|
-
(async
|
|
51
|
-
// Connect with grpc reflection
|
|
52
|
-
const
|
|
60
|
+
(async()=>{
|
|
61
|
+
// Connect with grpc server reflection
|
|
62
|
+
const client = new GrpcReflection('0.0.0.0:50051', grpc.credentials.createInsecure());
|
|
53
63
|
|
|
54
|
-
//
|
|
55
|
-
const descriptor = await
|
|
64
|
+
// Get services without proto file for specific symbol or file name
|
|
65
|
+
const descriptor = await client.getDescriptorBySymbol('helloworld.Greeter');
|
|
66
|
+
//const descriptor = await client.getDescriptorByFileName('examples/helloworld/helloworld/helloworld.proto');
|
|
56
67
|
|
|
57
|
-
//
|
|
68
|
+
// Create package services
|
|
58
69
|
const packageObject = descriptor.getPackageObject({
|
|
59
70
|
keepCase: true,
|
|
60
71
|
enums: String,
|
|
61
72
|
longs: String
|
|
62
73
|
});
|
|
63
74
|
|
|
64
|
-
//
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
grpc.credentials.createInsecure()
|
|
75
|
+
// Send request over grpc
|
|
76
|
+
const proto = new packageObject.helloworld.Greeter(
|
|
77
|
+
"localhost:50051",
|
|
78
|
+
grpc.credentials.createInsecure(),
|
|
68
79
|
);
|
|
69
80
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
81
|
+
proto.SayHello({
|
|
82
|
+
name: "abc"
|
|
83
|
+
},(err,data)=>{
|
|
84
|
+
if(err) {
|
|
85
|
+
console.log(err);
|
|
86
|
+
}else{
|
|
87
|
+
console.log(data);
|
|
88
|
+
}
|
|
74
89
|
|
|
75
|
-
proto.ChekUser({"user_id":"A"}, (d)=>{
|
|
76
|
-
console.log(d);
|
|
77
90
|
});
|
|
78
|
-
|
|
79
91
|
})();
|
|
80
|
-
|
|
81
92
|
}catch(e){
|
|
82
93
|
console.log(e);
|
|
83
94
|
}
|
|
84
|
-
|
|
95
|
+
EOF
|
|
85
96
|
```
|
|
97
|
+
3. Run script
|
|
98
|
+
```sh
|
|
99
|
+
node script.js
|
|
100
|
+
```
|
|
101
|
+
|
|
86
102
|
|
|
87
103
|
## Nodejs Grpc reflection server
|
|
88
104
|
If you want to use grpc reflection server in NodeJS/Typescript use below package:
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { Root } from 'protobufjs';
|
|
2
2
|
import * as protoLoader from '@grpc/proto-loader';
|
|
3
|
+
import * as grpc from '@grpc/grpc-js';
|
|
4
|
+
import { PackageDefinition } from "@grpc/proto-loader";
|
|
3
5
|
export declare class Descriptor {
|
|
4
6
|
private root;
|
|
5
7
|
constructor(protoBufJsRoot: Root);
|
|
6
8
|
getProtobufJsRoot(): Root;
|
|
7
9
|
getDescriptorMessage(protoVersion?: string): import("protobufjs").Message<import("protobufjs/ext/descriptor").IFileDescriptorSet> & import("protobufjs/ext/descriptor").IFileDescriptorSet;
|
|
8
10
|
getBuffer(protoVersion?: string): Uint8Array;
|
|
9
|
-
getPackageDefinition(options?: protoLoader.Options, protoVersion?: string):
|
|
10
|
-
getPackageObject(options?: protoLoader.Options):
|
|
11
|
+
getPackageDefinition(options?: protoLoader.Options, protoVersion?: string): PackageDefinition;
|
|
12
|
+
getPackageObject(options?: protoLoader.Options): grpc.GrpcObject;
|
|
11
13
|
}
|
|
@@ -11,13 +11,13 @@ class Descriptor {
|
|
|
11
11
|
getProtobufJsRoot() {
|
|
12
12
|
return this.root;
|
|
13
13
|
}
|
|
14
|
-
getDescriptorMessage(protoVersion = "
|
|
14
|
+
getDescriptorMessage(protoVersion = "proto3") {
|
|
15
15
|
return this.root.toDescriptor(protoVersion);
|
|
16
16
|
}
|
|
17
|
-
getBuffer(protoVersion = "
|
|
17
|
+
getBuffer(protoVersion = "proto3") {
|
|
18
18
|
return descriptor_1.FileDescriptorSet.encode(this.getDescriptorMessage(protoVersion)).finish();
|
|
19
19
|
}
|
|
20
|
-
getPackageDefinition(options, protoVersion = "
|
|
20
|
+
getPackageDefinition(options, protoVersion = "proto3") {
|
|
21
21
|
return protoLoader.loadFileDescriptorSetFromObject(this.getDescriptorMessage(protoVersion), options);
|
|
22
22
|
}
|
|
23
23
|
getPackageObject(options) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Descriptor.js","sourceRoot":"","sources":["../src/Descriptor.ts"],"names":[],"mappings":";;;AACA,0DAEmC;AACnC,kDAAkD;AAClD,sCAAsC;AAGtC,MAAa,UAAU;IAInB,YAAY,cAAoB;QAC5B,IAAI,CAAC,IAAI,GAAG,cAAc,CAAC;IAC/B,CAAC;IAED,iBAAiB;QACb,OAAO,IAAI,CAAC,IAAI,CAAC;IACrB,CAAC;IAED,oBAAoB,CAAC,eAAuB,QAAQ;QAChD,OAAO,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;IAChD,CAAC;IAED,SAAS,CAAC,eAAuB,QAAQ;QACrC,OAAO,8BAAiB,CAAC,MAAM,CAAC,IAAI,CAAC,oBAAoB,CAAC,YAAY,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACtF,CAAC;IAED,oBAAoB,CAAC,OAA6B,EAAE,eAAuB,QAAQ;QAC/E,OAAO,WAAW,CAAC,+BAA+B,CAC9C,IAAI,CAAC,oBAAoB,CAAC,YAAY,CAAC,EACvC,OAAO,CACV,CAAC;IACN,CAAC;IAED,gBAAgB,CAAC,OAA6B;QAC1C,OAAO,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1E,CAAC;CAEJ;AA/BD,gCA+BC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReflectionException.js","sourceRoot":"","sources":["../../src/Exceptions/ReflectionException.ts"],"names":[],"mappings":";;;AAAA,MAAa,mBAAoB,SAAQ,KAAK;CAAE;AAAhD,kDAAgD"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ReflectionRequestException = void 0;
|
|
4
|
+
class ReflectionRequestException extends Error {
|
|
5
|
+
}
|
|
6
|
+
exports.ReflectionRequestException = ReflectionRequestException;
|
|
7
|
+
//# sourceMappingURL=ReflectionRequestException.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ReflectionRequestException.js","sourceRoot":"","sources":["../../src/Exceptions/ReflectionRequestException.ts"],"names":[],"mappings":";;;AAAA,MAAa,0BAA2B,SAAQ,KAAK;CAAE;AAAvD,gEAAuD"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./ReflectionException"), exports);
|
|
18
|
+
__exportStar(require("./ReflectionRequestException"), exports);
|
|
19
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Exceptions/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,wDAAsC;AACtC,+DAA6C"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as grpc from '@grpc/grpc-js';
|
|
2
|
+
import { Descriptor } from "./Descriptor";
|
|
3
|
+
import { GetAllExtensionNumbersOfType } from "./Types";
|
|
4
|
+
export declare class GrpcReflection {
|
|
5
|
+
private serverReflectionPackageObj;
|
|
6
|
+
private serverReflectionPackageDefinition;
|
|
7
|
+
private client;
|
|
8
|
+
constructor(host: string, credentials: grpc.ChannelCredentials);
|
|
9
|
+
listServices(prefix?: string): Promise<Array<string>>;
|
|
10
|
+
getDescriptorByFileName(file_name: string): Promise<Descriptor>;
|
|
11
|
+
getDescriptorBySymbol(symbol: string): Promise<Descriptor>;
|
|
12
|
+
getAllExtensionNumbersOfType(package_type: string): Promise<GetAllExtensionNumbersOfType>;
|
|
13
|
+
private request;
|
|
14
|
+
private resolveFileDescriptorSet;
|
|
15
|
+
private resolveDescriptorRecursive;
|
|
16
|
+
private getProtoDescriptorBySymbol;
|
|
17
|
+
private getProtoDescriptorByFileName;
|
|
18
|
+
private getProtoReflectionPath;
|
|
19
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GrpcReflection = void 0;
|
|
4
|
+
const grpc = require("@grpc/grpc-js");
|
|
5
|
+
const protoLoader = require("@grpc/proto-loader");
|
|
6
|
+
const path = require("path");
|
|
7
|
+
const Exceptions_1 = require("./Exceptions");
|
|
8
|
+
const protobufjs = require("protobufjs");
|
|
9
|
+
const Descriptor_1 = require("./Descriptor");
|
|
10
|
+
const descriptor_1 = require("protobufjs/ext/descriptor");
|
|
11
|
+
const lodash_1 = require("lodash");
|
|
12
|
+
class GrpcReflection {
|
|
13
|
+
constructor(host, credentials) {
|
|
14
|
+
this.serverReflectionPackageObj = protoLoader.loadSync(this.getProtoReflectionPath());
|
|
15
|
+
this.serverReflectionPackageDefinition = grpc.loadPackageDefinition(this.serverReflectionPackageObj);
|
|
16
|
+
this.client = new this.serverReflectionPackageDefinition.grpc.reflection.v1alpha.ServerReflection(host, credentials);
|
|
17
|
+
}
|
|
18
|
+
async listServices(prefix = '*') {
|
|
19
|
+
const response = await this.request({
|
|
20
|
+
listServices: prefix
|
|
21
|
+
});
|
|
22
|
+
return response.listServicesResponse.service.map(service => service.name);
|
|
23
|
+
}
|
|
24
|
+
async getDescriptorByFileName(file_name) {
|
|
25
|
+
const descriptor = await this.getProtoDescriptorByFileName(file_name);
|
|
26
|
+
return await this.resolveFileDescriptorSet(descriptor);
|
|
27
|
+
}
|
|
28
|
+
async getDescriptorBySymbol(symbol) {
|
|
29
|
+
const descriptor = await this.getProtoDescriptorBySymbol(symbol);
|
|
30
|
+
return await this.resolveFileDescriptorSet(descriptor);
|
|
31
|
+
}
|
|
32
|
+
async getAllExtensionNumbersOfType(package_type) {
|
|
33
|
+
const response = await this.request({
|
|
34
|
+
allExtensionNumbersOfType: package_type
|
|
35
|
+
});
|
|
36
|
+
return {
|
|
37
|
+
base_type_name: response.allExtensionNumbersResponse.baseTypeName,
|
|
38
|
+
extension_number: typeof (response.allExtensionNumbersResponse.extensionNumber) !== "undefined" ? response.allExtensionNumbersResponse.extensionNumber : []
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
async request(payload) {
|
|
42
|
+
return new Promise((resolve, reject) => {
|
|
43
|
+
const call = this.client.ServerReflectionInfo();
|
|
44
|
+
call.on('data', (data) => {
|
|
45
|
+
if (data.errorResponse) {
|
|
46
|
+
reject(new Exceptions_1.ReflectionRequestException(data.errorResponse.errorMessage));
|
|
47
|
+
return;
|
|
48
|
+
}
|
|
49
|
+
resolve(data);
|
|
50
|
+
});
|
|
51
|
+
call.on('end', () => { });
|
|
52
|
+
call.write(payload);
|
|
53
|
+
call.end();
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
async resolveFileDescriptorSet(fileDescriptorProtoBytes) {
|
|
57
|
+
const fileDescriptorSet = descriptor_1.FileDescriptorSet.create();
|
|
58
|
+
const fileDescriptorProtos = await this.resolveDescriptorRecursive(fileDescriptorProtoBytes);
|
|
59
|
+
(0, lodash_1.set)(fileDescriptorSet, 'file', Array.from(fileDescriptorProtos.values()));
|
|
60
|
+
return new Descriptor_1.Descriptor(protobufjs.Root.fromDescriptor(fileDescriptorSet));
|
|
61
|
+
}
|
|
62
|
+
async resolveDescriptorRecursive(fileDescriptorProtoBytes) {
|
|
63
|
+
let fileDescriptorProtos = new Map();
|
|
64
|
+
for (const item of fileDescriptorProtoBytes) {
|
|
65
|
+
const fileDescriptorProto = descriptor_1.FileDescriptorProto.decode(item);
|
|
66
|
+
if (fileDescriptorProto.dependency) {
|
|
67
|
+
const dependencies = fileDescriptorProto.dependency;
|
|
68
|
+
for (const dep of dependencies) {
|
|
69
|
+
const depProtoBytes = await this.getProtoDescriptorByFileName(dep);
|
|
70
|
+
const protoDependencies = await this.resolveDescriptorRecursive(depProtoBytes);
|
|
71
|
+
fileDescriptorProtos = new Map([
|
|
72
|
+
...fileDescriptorProtos,
|
|
73
|
+
...protoDependencies,
|
|
74
|
+
]);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
if (!fileDescriptorProtos.has(fileDescriptorProto.name)) {
|
|
78
|
+
fileDescriptorProtos.set(fileDescriptorProto.name, fileDescriptorProto);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
return fileDescriptorProtos;
|
|
82
|
+
}
|
|
83
|
+
async getProtoDescriptorBySymbol(symbol) {
|
|
84
|
+
const response = await this.request({
|
|
85
|
+
fileContainingSymbol: symbol
|
|
86
|
+
});
|
|
87
|
+
return response.fileDescriptorResponse.fileDescriptorProto;
|
|
88
|
+
}
|
|
89
|
+
async getProtoDescriptorByFileName(file_name) {
|
|
90
|
+
const response = await this.request({
|
|
91
|
+
fileByFilename: file_name
|
|
92
|
+
});
|
|
93
|
+
return response.fileDescriptorResponse.fileDescriptorProto;
|
|
94
|
+
}
|
|
95
|
+
getProtoReflectionPath() {
|
|
96
|
+
return `${path.resolve(__dirname)}/../proto/reflection.proto`;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.GrpcReflection = GrpcReflection;
|
|
100
|
+
//# sourceMappingURL=GrpcReflection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GrpcReflection.js","sourceRoot":"","sources":["../src/GrpcReflection.ts"],"names":[],"mappings":";;;AAAA,sCAAsC;AACtC,kDAAkD;AAClD,6BAA6B;AAC7B,6CAA0D;AAC1D,yCAAyC;AACzC,6CAA0C;AAE1C,0DAImC;AACnC,mCAA6B;AAG7B,MAAa,cAAc;IAMvB,YACI,IAAY,EACZ,WAAoC;QAEpC,IAAI,CAAC,0BAA0B,GAAG,WAAW,CAAC,QAAQ,CAAC,IAAI,CAAC,sBAAsB,EAAE,CAAC,CAAC;QAEtF,IAAI,CAAC,iCAAiC,GAAG,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC;QACrG,IAAI,CAAC,MAAM,GAAG,IAAI,IAAI,CAAC,iCAAiC,CAAC,IAAI,CAAC,UAAU,CAAC,OAAO,CAAC,gBAAgB,CAC7F,IAAI,EACJ,WAAW,CACd,CAAC;IACN,CAAC;IAOD,KAAK,CAAC,YAAY,CAAC,SAAiB,GAAG;QACnC,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC;YAChC,YAAY,EAAE,MAAM;SACvB,CAAC,CAAC;QACH,OAAO,QAAQ,CAAC,oBAAoB,CAAC,OAAO,CAAC,GAAG,CAAC,OAAO,CAAC,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9E,CAAC;IASD,KAAK,CAAC,uBAAuB,CAAC,SAAiB;QAE3C,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,4BAA4B,CAAC,SAAS,CAAC,CAAC;QACtE,OAAO,MAAM,IAAI,CAAC,wBAAwB,CAAC,UAAU,CAAC,CAAC;IAC3D,CAAC;IAQD,KAAK,CAAC,qBAAqB,CAAC,MAAc;QAEtC,MAAM,UAAU,GAAG,MAAM,IAAI,CAAC,0BAA0B,CAAC,MAAM,CAAC,CAAC;QACjE,OAAO,MAAM,IAAI,CAAC,wBAAwB,CAAC,UAAU,CAAC,CAAC;IAC3D,CAAC;IAOD,KAAK,CAAC,4BAA4B,CAAC,YAAoB;QACnD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC;YAChC,yBAAyB,EAAE,YAAY;SAC1C,CAAC,CAAC;QAEH,OAAO;YACH,cAAc,EAAE,QAAQ,CAAC,2BAA2B,CAAC,YAAY;YACjE,gBAAgB,EAAE,OAAM,CAAC,QAAQ,CAAC,2BAA2B,CAAC,eAAe,CAAC,KAAK,WAAW,CAAC,CAAC,CAAC,QAAQ,CAAC,2BAA2B,CAAC,eAAe,CAAC,CAAC,CAAC,EAAE;SAC7J,CAAC;IAEN,CAAC;IASO,KAAK,CAAC,OAAO,CACjB,OAA4B;QAE5B,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACnC,MAAM,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,oBAAoB,EAAE,CAAC;YAChD,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,EAAE;gBAErB,IAAI,IAAI,CAAC,aAAa,EAAC;oBACnB,MAAM,CAAC,IAAI,uCAA0B,CAAC,IAAI,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CAAC;oBACxE,OAAO;iBACV;gBACD,OAAO,CAAC,IAAI,CAAC,CAAC;YAClB,CAAC,CAAC,CAAC;YAEH,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,GAAE,CAAC,CAAC,CAAC;YACzB,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;YACpB,IAAI,CAAC,GAAG,EAAE,CAAC;QACf,CAAC,CAAC,CAAC;IACP,CAAC;IAOO,KAAK,CAAC,wBAAwB,CAClC,wBAAgE;QAEhE,MAAM,iBAAiB,GAAG,8BAAiB,CAAC,MAAM,EAAE,CAAC;QACrD,MAAM,oBAAoB,GAAG,MAAM,IAAI,CAAC,0BAA0B,CAC9D,wBAAsD,CACzD,CAAC;QACF,IAAA,YAAG,EAAC,iBAAiB,EAAE,MAAM,EAAE,KAAK,CAAC,IAAI,CAAC,oBAAoB,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC;QAE1E,OAAO,IAAI,uBAAU,CAAC,UAAU,CAAC,IAAI,CAAC,cAAc,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAC7E,CAAC;IAOO,KAAK,CAAC,0BAA0B,CACpC,wBAAoD;QAEpD,IAAI,oBAAoB,GAAsC,IAAI,GAAG,EAAE,CAAC;QAExE,KAAI,MAAM,IAAI,IAAI,wBAAwB,EAAC;YACvC,MAAM,mBAAmB,GAAG,gCAAmB,CAAC,MAAM,CAClD,IAAkB,CACG,CAAC;YAE1B,IAAI,mBAAmB,CAAC,UAAU,EAAE;gBAChC,MAAM,YAAY,GAAG,mBAAmB,CAAC,UAA2B,CAAC;gBACrE,KAAK,MAAM,GAAG,IAAI,YAAY,EAAE;oBAC5B,MAAM,aAAa,GAAG,MAAM,IAAI,CAAC,4BAA4B,CAAC,GAAG,CAAC,CAAC;oBACnE,MAAM,iBAAiB,GAAG,MAAM,IAAI,CAAC,0BAA0B,CAC3D,aAA2C,CAC9C,CAAC;oBACF,oBAAoB,GAAG,IAAI,GAAG,CAAC;wBAC3B,GAAG,oBAAoB;wBACvB,GAAG,iBAAiB;qBACvB,CAAC,CAAC;iBACN;aACJ;YAED,IAAI,CAAC,oBAAoB,CAAC,GAAG,CAAC,mBAAmB,CAAC,IAAc,CAAC,EAAE;gBAC/D,oBAAoB,CAAC,GAAG,CACpB,mBAAmB,CAAC,IAAc,EAClC,mBAAmB,CACtB,CAAC;aACL;SACJ;QACD,OAAO,oBAAoB,CAAC;IAChC,CAAC;IAEO,KAAK,CAAC,0BAA0B,CAAC,MAAc;QAEnD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC;YAChC,oBAAoB,EAAE,MAAM;SAC/B,CAAC,CAAC;QACH,OAAO,QAAQ,CAAC,sBAAsB,CAAC,mBAAmB,CAAC;IAC/D,CAAC;IAGO,KAAK,CAAC,4BAA4B,CAAC,SAAiB;QAExD,MAAM,QAAQ,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC;YAChC,cAAc,EAAE,SAAS;SAC5B,CAAC,CAAC;QACH,OAAO,QAAQ,CAAC,sBAAsB,CAAC,mBAAmB,CAAA;IAC9D,CAAC;IAGO,sBAAsB;QAE1B,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,CAAC,4BAA4B,CAAC;IAClE,CAAC;CAEJ;AAnLD,wCAmLC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getAllExtensionNumbersOfTypeType.js","sourceRoot":"","sources":["../../src/Types/getAllExtensionNumbersOfTypeType.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './getAllExtensionNumbersOfTypeType';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./getAllExtensionNumbersOfTypeType"), exports);
|
|
18
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,qEAAmD"}
|
|
@@ -16,5 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./Descriptor"), exports);
|
|
18
18
|
__exportStar(require("./GrpcReflection"), exports);
|
|
19
|
-
__exportStar(require("./
|
|
19
|
+
__exportStar(require("./Exceptions"), exports);
|
|
20
|
+
__exportStar(require("./Types"), exports);
|
|
20
21
|
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B;AAC7B,mDAAiC;AACjC,+CAA6B;AAC7B,0CAAwB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@grpc/grpc-js/build/src/metadata.d.ts","../node_modules/@grpc/grpc-js/build/src/call-credentials.d.ts","../node_modules/@grpc/grpc-js/build/src/constants.d.ts","../node_modules/@grpc/grpc-js/build/src/filter.d.ts","../node_modules/@grpc/grpc-js/build/src/filter-stack.d.ts","../node_modules/@grpc/grpc-js/build/src/channel-credentials.d.ts","../node_modules/@grpc/grpc-js/build/src/compression-algorithms.d.ts","../node_modules/@grpc/grpc-js/build/src/channel-options.d.ts","../node_modules/@grpc/grpc-js/build/src/client-interceptors.d.ts","../node_modules/@grpc/grpc-js/build/src/client.d.ts","../node_modules/@grpc/grpc-js/build/src/server-credentials.d.ts","../node_modules/@grpc/grpc-js/build/src/connectivity-state.d.ts","../node_modules/protobufjs/index.d.ts","../node_modules/protobufjs/ext/descriptor/index.d.ts","../node_modules/@grpc/proto-loader/build/src/util.d.ts","../node_modules/@types/long/index.d.ts","../node_modules/@grpc/proto-loader/build/src/index.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Timestamp.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelRef.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SubchannelRef.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTraceEvent.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTrace.d.ts","../node_modules/@grpc/grpc-js/build/src/subchannel-address.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelConnectivityState.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelData.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketRef.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channel.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerRef.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerData.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Server.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Int64Value.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Any.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOption.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketData.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Address.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Security.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Socket.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Subchannel.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channelz.d.ts","../node_modules/@grpc/grpc-js/build/src/channelz.d.ts","../node_modules/@grpc/grpc-js/build/src/server.d.ts","../node_modules/@grpc/grpc-js/build/src/make-client.d.ts","../node_modules/@grpc/grpc-js/build/src/events.d.ts","../node_modules/@grpc/grpc-js/build/src/object-stream.d.ts","../node_modules/@grpc/grpc-js/build/src/server-call.d.ts","../node_modules/@grpc/grpc-js/build/src/channel.d.ts","../node_modules/@grpc/grpc-js/build/src/uri-parser.d.ts","../node_modules/@grpc/grpc-js/build/src/subchannel-interface.d.ts","../node_modules/@grpc/grpc-js/build/src/subchannel.d.ts","../node_modules/@grpc/grpc-js/build/src/call-stream.d.ts","../node_modules/@grpc/grpc-js/build/src/call.d.ts","../node_modules/@grpc/grpc-js/build/src/status-builder.d.ts","../node_modules/@grpc/grpc-js/build/src/admin.d.ts","../node_modules/@grpc/grpc-js/build/src/logging.d.ts","../node_modules/@grpc/grpc-js/build/src/duration.d.ts","../node_modules/@grpc/grpc-js/build/src/picker.d.ts","../node_modules/@grpc/grpc-js/build/src/load-balancer.d.ts","../node_modules/@grpc/grpc-js/build/src/service-config.d.ts","../node_modules/@grpc/grpc-js/build/src/resolver.d.ts","../node_modules/@grpc/grpc-js/build/src/backoff-timeout.d.ts","../node_modules/@grpc/grpc-js/build/src/load-balancer-child-handler.d.ts","../node_modules/@grpc/grpc-js/build/src/load-balancer-outlier-detection.d.ts","../node_modules/@grpc/grpc-js/build/src/experimental.d.ts","../node_modules/@grpc/grpc-js/build/src/index.d.ts","../node_modules/grpc-reflection-js/build/src/reflection_pb.d.ts","../node_modules/grpc-reflection-js/build/src/reflection_grpc_pb.d.ts","../node_modules/grpc-reflection-js/node_modules/protobufjs/index.d.ts","../node_modules/grpc-reflection-js/build/src/client.d.ts","../node_modules/grpc-reflection-js/build/src/index.d.ts","../src/Descriptor.ts","../src/GrpcReflection.ts","../examples/getProtoObj.ts","../examples/listServices.ts","../examples/otherMethods.ts","../src/ReflectionException.ts","../src/index.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/google-protobuf/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../node_modules/@types/lodash.set/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../../../../../../../node_modules/@types/chai/index.d.ts","../../../../../../../node_modules/@types/jasmine/index.d.ts","../../../../../../../node_modules/@types/mocha/index.d.ts","../../../../../../../node_modules/@types/prop-types/index.d.ts","../../../../../../../node_modules/@types/react/global.d.ts","../../../../../../../node_modules/csstype/index.d.ts","../../../../../../../node_modules/@types/scheduler/tracing.d.ts","../../../../../../../node_modules/@types/react/index.d.ts","../../../../../../../node_modules/@types/react-dom/index.d.ts","../../../../../../../node_modules/@types/scheduler/index.d.ts","../../../../../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3a0c45fe95e8f0e2c5247d48acf3a522d2ef29f1ab0effb3c59a9c4fdd5edbcd","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","0fac2b483246d890f74e4050c8651f43b4569519c386082d4c3838cd42f39a7c","d2f5c67858e65ebb932c2f4bd2af646f5764e8ad7f1e4fbe942a0b5ea05dc0e7","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"11c8be5993cd30dbb5310d95ba6c54dbb8724221eed0c4b2e4a7d6a4f9a032dd","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","0e1b73efb8ce3afd418f04f59e26134f46418d2033dff332446fe0ee762b884a","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"3a4c859c27b2aaedcd27173220d66590fa7da27ee45d84e365fb0fe7f2c2f72c","6f94f6a1e29e9bb5e8c899c8d0ce1b7409656e94b2a40823ec49b7d4592a53cb","3c0a3b2401dfd932551257b4cff1fe61e36da660ed359c565a56db1877773a77","181694d1f7a579e57c55efb1418904efc513ebce0b08601e94f288674104359e","f26f7ce74fc73d3176941bb4172450cd97e34787ae584de49c2d16c191cb37fc","e7f5e282da2ddeee8bbc6671459c35dd3144e0ab23a0abaaf77db598cfa896ee","4801a5fb4f8b7f0897189c79cd6d3fedb99a43a4604e9dd76c0cd92d4eb269ee","eed0cfbd238f0f9def37d26d793393c8cfb59afe28ecd1a4639a58905abdadf1","79cda812e4d3e249cbf90015a050ab333aaa41af08f143276aa0862dde976dbe","9a12e92309c84ef3d701bb9d01813e4bdb1a850136710be03f745fdc77df7ff3","1f4b26b6651d390085bc11e982a36d21e57a0fb34ad9e2910041851f47a02773","93b6c52c6e42184dae94619aeda58da74219cbef411e2aca4301c8da7647340b","416eec23b202526964d0f5ebf0ca9e0d8c08e4260bc0946143b66f1a1e17b787","ce745cfe173b4b533cdc2c43dcec9c770dfb14f4cf5f60b050a0282c6b5638b8","f17c007d95f666ecf664ff13ca8efc196980597c4ca152a0baaa82b2525e2328","02ff761f690163463a4e7594d666e4c73995c4f72746a5967b3477d9ecf62c4e","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","473d9269f1f277be1e222b80b5912b26f924efe13c1f418e569617ec34342720","f5b284ceadf71472a8fbf555dbd91079cce0ce7ba54f65dd63d18deec84cd11d","11f848107bc2f7535adccd37b55f018a0f18abbf5a1cd276f5776779618c37ed","8f47ed340254a8ccdf37035d9cba70f53a4d899804da840b47f4c3b07a7b2063","e5bd26052c0f4b600728cc41f03f00c20776d5dc53e8226600e0bf1dbcd66220","50b54f6dac82c34e8c12b35eac220ccc178f51e84813179826da0e3e96283af9","0c112f7206883caa95fa6b4558f3d05141d61910c05379660e1493b716a88656","6fd6fcadeab3b973ea52c2dbfcc960f23e086ea3bc07aaa0e1c6d0d690f8e776","6dbc7c87a2dfb95c594c5da54f7a8081f3019bb1bf6dcd72eeb6239ee0e243cb","a59fdd5525468b9afe1fef2238f5b990c640723bd430c589b4c963d576209be8","23c0f554c1fab508370678aca41cf9b1d6a6a00069e499d803d43387067fea9d","016f140691ab5fea3357a89c6a254ff8ada91173d22d36921bb8295fe5d828ab","ee219b4332439451cbf9ee34584e8a7e67be35d8ed3d1b292769a09483a102ce","305c2373ff739ceca5780a204766c76617e74b551f6fc646a358b5f687a77333","61c5821b70e113b15f24593e7061e6302635448ae700d813f06560ca5f140727","1e127052ae269b7f278b828978b962eb93bbc6134c0bda8b03e3f39df5c3865d","716cb84b8b410c52de9e7b310b2125cbc390a7c59e929a5c0a29514345b9ba9f","edabf50cfd2310b9af7214ecb821e0af6c43f66d8b5fb297d532f27bba242088","1687d528ca6c51a635f9a4022973f472221700464be83810788238a595cb588c","32162214c3f25748f784283a3f6059ad3d09d845faccc52b5c2cf521eace6bd6","4a13f78f265e7deb260bd0cc9063b9927a39f99f7cc8bb62b0310aa3a1df3efd","c04c509a58cc86b654326592aca64d7ceab81a208735c391dd171ca438114ea9","74c6a2352b00e41d352cc23e98e8d6313d5631738a5ea734f1c7bff0192b0f47","fc94bcfb823846ba8b4c1727520a3d509c9f517d4e803dfb45e6a71b41000eb8","93f9f2f55cc8393683048c720e30bc416bc3589a5d3f04a24d8bdc2d29c08589","e4c09f8a818679f80931fae1d0ca3dec192708c510c9f33fe56d71abe8337c59","b1cc0dfdc0455283ccf003185dbbc51e2c15299aff343413310eaf45c4572323","196f3c5da872983f8f0d2242c2cecc4fae85684d887ae1eef6be6b13b4138233","970c9e6d3c4184ca0c36d86dc29cc3e7b151d6aa4c1f2185fb97650b05a07055","af4beeac0e879b673f8b874e5fe013bdebfb17f0213142e5037ac90aea86d636","c620ccd98c18e71d7e39a79bea47b4f4724c3a1f30f78d2cdd03cf707ae64e4d","150f375c7f5c01a15d531c961468f1a04a1c21dc4e4a372ca4661700d66cc9c2","8aabc7d8676ba6098fc30c95eca03a331df41ac4c08213207a9329998f32d1b0","9d8464e1c6b7f30c4121d28b11c112da81c496c65e65948fbc7d5b5f23b50cdc","6b88a632af960a4140730527eb670c3d3e6eae0da573f0df2849909d9bb3e5f3","ab2f4f2d874d18918f0abb55e5a89a36ab875e01e3e9efa6e19efbd65295800b","2212906ab48ae8891080a68a19ba3ab53a4927d360feb34120051aff4ae980ae","57fb7ca63631577603d247484cb716a44aaef2fed76ff4d39db23391fc469695","ccc635892c2121c569281e8605f63b964d9067d8c560fdd0d8c0305aa3436b0a","56abe182c8ac81afc695eeefc9dbf6a637c8a8365b672053746678a3bfc6ca7c","df4b5e6fe2a91140a1ed2f8f94e01d4c836a069cee23a2d0a83a00cf649f8505","a43ee2d0bc49ad3cdc9a12c9e284adca7ecd30688dbffdbbd4b75244af498231","480afcb2c1ea07d5a33101f39ee49c4e433df5279bcc901c86299ed51df066c7","58add5da26530fecb38667d08702a6ce8c0387ebb1d685f35caba5559d365bc5","9bbcda8e62203eae2ff2f7ff61fb443222974c125f6e0e8a280ab8765d55b5f3","1cd3a865010365344f689258ccc229341c5610bd036cdf51a0369e78a2cc297f","2babba65e6d8e6b0303d5e7ba9ad221c89bda004d2e703eebb8884e342bfba27","52946a32d09191026f3c889bdfc1e0fce88dda141472a8d8a60aef9d83502b7f","2300d5812cfd6747c34de25950a11a84c0cb93dd5613b46a74cf1422d61d3c9f","febbe46be2865dfc342fc690fc91311eacf3f4f6c4f83fa9ca32c27581c016bf","f64fff46fcd20e44ed057398a9872269bb547d85eb6a40050f8b6794d2ef093f","bc5626a4f279345cc49bca110c83adb6885d74044f818abcfdc11802c569ba1b","baef294f6ea8cfd7e45932669b7cbc6aa1621d3ae6d2c9515acc3ea484fb4be0","7e6aa4667eefa889cbd66fa1cc50f432f674d32a6e9f58a7d2beedd34c9f44a6","c97e0165511e0fa9e4da49681b649c9b846200811da3101d41876c1df166287a","3fb1a6b4a14f2a08fc360d0891db68a4643b393262af448a0811d4acd150490b","79c15e25133240ab56678614a2705cba30578b93c0c2ea6c07e86d87c7ce26d1","fde15ccf34319bfbbd71a8453a9121f4161908668caf13740fa38af176e41a00","76ead0d03259ad18a7263ffbc74f38f74799ee98d46dbaabbb2db35f15d0adae","64377a93588b37bc8e0a09166b7078e7ddfa59010b15710941c3c29475728097","e2ac01d9d3742f9514c692d9ebe96af7f7c7df07ca38f40e456d214f72f475db","a7022bab77511e11e629442479fb478b3433ae15af2b70d02d5d4fdb1f2a38d1","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","d160508809c6a9d4e9a9dfa351d79c2a6c4ad90a10f650bec620a2a76e83a8cf","1558c642e03689d42843e7b047b9c20e77ee09ab388ff854484db5dcfbed11da","8560a7a2a571a1804d331693255658da6535935a3ac8cf431ff7f6d0d5620868","19c98fbfb2d572a070484699cd125fa1a2db1743d6a6fb49975ae17dd387e5b5",{"version":"57ff875b41e64bdc5ba81d9156a42f882faf23c6e0c1125843a9d3779c6301f9","signature":"4e7b3544dcb92cbd40ebd537a2eb78eba4050b876c877d5c5ec94d192d9ef069"},{"version":"374d001e0f8c2718213461a44c448c948be385703eb206d2e83bd60d9d3a4379","signature":"70432921191a853e95008208659147c91b155767b2a177d2aed19d878c995f5b"},{"version":"52e411c130475972a021d694a929eb7174d3e0f5b7c2bc99ce0b3317eb4008e6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2a6e80ff1e683c7ec9973b48f4e569a8ec9ff6c09da2c963838409c396e370a7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"b37f07a44e6f38697829b0c806bdf5d58d909ad8e4c695ddee40a7d69c13aaf7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ad6f740c9c346d0725317b5deddf8b8fdef7d4ff133e83071595f1893bbb6844","signature":"eb6d4a166b8a5493866d8f6aa842d2b1c4442e8be9ab458a00ca4e683877c542"},{"version":"716303b2743d0148d8f9d6c0c57802075e901954bf1983f6d0b7031ee290c6db","signature":"7259684490d213bc2e15276a19de8a45279611b426b6d0fbac15e945e035ef71"},"ef178bff7cb17db8a2f3535f947f54cf6c22de8f87f9727cb340754c56c212ec","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","c7597e9b1b1eac80e5bca7d136321ab80804ff37f026bc84a8a8553904db9847","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","2aa56385346f3f1abbfde3ca055ca5d80d3dd6a5e73899da739880d007c339d3","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"8d32c047d18ca6222c30a66648f4bfa21a0dddeb42459f81ed7c17a8bf17585f","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438",{"version":"3a15910b7f45dfc393f010ee8f913580b08d65752800fc48147ea13445acd5f7","affectsGlobalScope":true},{"version":"ead8cd125d2c92993ec86f60fd88ab821275e7cd902d65650cc27146c9d5225a","affectsGlobalScope":true},{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},"6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"0bca3a2542a695559b16feba84fffa590ec45eb64f2bbe0ee5e303f7bade01b1","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":true,"strictNullChecks":false,"target":4},"fileIdsList":[[90,175,182],[90,188],[90],[90,152,153],[90,98],[65,90,97,98,99,100,101,102,156,157,160],[61,78,90,97,98,106,154,155,161],[86,90,97,99],[90,104],[90,98,103,105,109,151,156,161],[90,97,109,119,120,150],[90,98,99,100,107,153,157,161],[90,97,98,99,103,105,106,153,156,157,161,162],[90,101,102,120,158,159,161,164,165,166,167,168,169,170,171,172,173],[90,97,98,101,161],[90,97,98,161],[90,97,114],[90,114],[90,97,138],[90,116,117,123,124],[90,114,115,119,122],[90,114,115,118],[90,115,116,117],[90,114,121,126,127,131,132,133,134,135,136,144,145,147,148,149,175],[90,125],[90,130],[90,124],[90,143],[90,146],[90,124,128,129],[90,114,115,119],[90,124,140,141,142],[90,114,115,137,139],[90,138],[90,97,98,99,100,103,104,105,106,107,108,109,151,152,153,156,157,161,162,163,164,174],[90,120,168],[90,120,168,174],[90,105,109,120,151,159,167],[90,97,100],[90,97,103,105,107,152],[65,90,97],[78,90,97,154],[90,98,101,159,161,168],[90,98,100,101,105,120,158,161,169],[61,65,78,90,97,98,105,153,155,161],[90,105,108,151,153,156],[90,166,168],[90,98,100,161],[90,109,151,160],[90,98,101,103,105,109,120,151,158,159,161],[90,97,110,111,112,113,114],[90,110,114],[90,188,189,190,191,192],[90,188,190],[62,90,97],[90,196],[90,197],[90,202,207],[90,221],[90,209,211,212,213,214,215,216,217,218,219,220,221],[90,209,210,212,213,214,215,216,217,218,219,220,221],[90,210,211,212,213,214,215,216,217,218,219,220,221],[90,209,210,211,213,214,215,216,217,218,219,220,221],[90,209,210,211,212,214,215,216,217,218,219,220,221],[90,209,210,211,212,213,215,216,217,218,219,220,221],[90,209,210,211,212,213,214,216,217,218,219,220,221],[90,209,210,211,212,213,214,215,217,218,219,220,221],[90,209,210,211,212,213,214,215,216,218,219,220,221],[90,209,210,211,212,213,214,215,216,217,219,220,221],[90,209,210,211,212,213,214,215,216,217,218,220,221],[90,209,210,211,212,213,214,215,216,217,218,219,221],[90,209,210,211,212,213,214,215,216,217,218,219,220],[46,90],[49,90],[50,55,90],[51,61,62,69,78,89,90],[51,52,61,69,90],[53,90],[54,55,62,70,90],[55,78,86,90],[56,58,61,69,90],[57,90],[58,59,90],[60,61,90],[61,90],[61,62,63,78,89,90],[61,62,63,78,90],[64,69,78,89,90],[61,62,64,65,69,78,86,89,90],[64,66,78,86,89,90],[46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96],[61,67,90],[68,89,90],[58,61,69,78,90],[70,90],[71,90],[49,72,90],[73,88,90,94],[74,90],[75,90],[61,76,90],[76,77,90,92],[61,78,79,80,90],[78,80,90],[78,79,90],[81,90],[82,90],[61,84,85,90],[84,85,90],[55,69,86,90],[87,90],[69,88,90],[50,64,75,89,90],[55,90],[78,90,91],[90,92],[90,93],[50,55,61,63,72,78,89,90,92,94],[78,90,95],[90,225],[90,175,177,178],[90,179],[90,153,176],[90,200,203],[90,200,203,204,205],[90,202],[90,199,206],[90,201],[90,110,111,114,175],[90,175,180,181],[90,181,182,186],[90,234],[90,230,231,232,233],[61,78,90,97],[110,111,114],[175,181],[181,182,186]],"referencedMap":[[183,1],[184,1],[185,1],[190,2],[188,3],[164,4],[171,3],[99,5],[161,6],[162,7],[103,8],[105,9],[157,10],[151,11],[106,12],[107,13],[104,3],[109,3],[100,3],[166,3],[154,3],[174,14],[102,15],[101,16],[138,17],[137,18],[115,18],[141,19],[125,20],[122,3],[123,21],[116,18],[119,22],[118,23],[150,24],[121,18],[126,25],[127,18],[131,26],[132,18],[133,27],[134,18],[135,26],[136,18],[144,28],[145,18],[147,29],[148,18],[149,25],[142,19],[130,30],[129,31],[128,18],[143,32],[140,33],[139,34],[124,18],[146,20],[117,18],[175,35],[172,36],[173,37],[168,38],[165,39],[153,40],[98,41],[155,42],[167,43],[170,44],[156,45],[108,41],[152,46],[169,47],[163,48],[120,3],[159,49],[160,50],[158,3],[114,51],[112,52],[193,53],[189,2],[191,54],[192,2],[194,3],[195,55],[196,3],[197,56],[198,57],[208,58],[222,59],[210,60],[211,61],[209,62],[212,63],[213,64],[214,65],[215,66],[216,67],[217,68],[218,69],[219,70],[220,71],[221,72],[113,3],[46,73],[47,73],[49,74],[50,75],[51,76],[52,77],[53,78],[54,79],[55,80],[56,81],[57,82],[58,83],[59,83],[60,84],[61,85],[62,86],[63,87],[48,3],[96,3],[64,88],[65,89],[66,90],[97,91],[67,92],[68,93],[69,94],[70,95],[71,96],[72,97],[73,98],[74,99],[75,100],[76,101],[77,102],[78,103],[80,104],[79,105],[81,106],[82,107],[83,3],[84,108],[85,109],[86,110],[87,111],[88,112],[89,113],[90,114],[91,115],[92,116],[93,117],[94,118],[95,119],[223,3],[224,3],[225,3],[226,120],[199,3],[179,121],[180,122],[177,123],[176,3],[178,3],[200,3],[204,124],[206,125],[205,124],[203,126],[207,127],[202,128],[201,3],[111,52],[110,3],[8,3],[9,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[4,3],[45,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[33,3],[34,3],[35,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[1,3],[44,3],[11,3],[10,3],[181,129],[182,130],[186,3],[187,131],[227,3],[228,3],[229,3],[230,3],[235,132],[231,3],[234,133],[236,3],[233,3],[237,134],[232,3]],"exportedModulesMap":[[190,2],[188,3],[164,4],[171,3],[99,5],[161,6],[162,7],[103,8],[105,9],[157,10],[151,11],[106,12],[107,13],[104,3],[109,3],[100,3],[166,3],[154,3],[174,14],[102,15],[101,16],[138,17],[137,18],[115,18],[141,19],[125,20],[122,3],[123,21],[116,18],[119,22],[118,23],[150,24],[121,18],[126,25],[127,18],[131,26],[132,18],[133,27],[134,18],[135,26],[136,18],[144,28],[145,18],[147,29],[148,18],[149,25],[142,19],[130,30],[129,31],[128,18],[143,32],[140,33],[139,34],[124,18],[146,20],[117,18],[175,35],[172,36],[173,37],[168,38],[165,39],[153,40],[98,41],[155,42],[167,43],[170,44],[156,45],[108,41],[152,46],[169,47],[163,48],[120,3],[159,49],[160,50],[158,3],[114,51],[112,52],[193,53],[189,2],[191,54],[192,2],[194,3],[195,55],[196,3],[197,56],[198,57],[208,58],[222,59],[210,60],[211,61],[209,62],[212,63],[213,64],[214,65],[215,66],[216,67],[217,68],[218,69],[219,70],[220,71],[221,72],[113,3],[46,73],[47,73],[49,74],[50,75],[51,76],[52,77],[53,78],[54,79],[55,80],[56,81],[57,82],[58,83],[59,83],[60,84],[61,85],[62,86],[63,87],[48,3],[96,3],[64,88],[65,89],[66,90],[97,91],[67,92],[68,93],[69,94],[70,95],[71,96],[72,97],[73,98],[74,99],[75,100],[76,101],[77,102],[78,103],[80,104],[79,105],[81,106],[82,107],[83,3],[84,108],[85,109],[86,110],[87,111],[88,112],[89,113],[90,114],[91,115],[92,116],[93,117],[94,118],[95,119],[223,3],[224,3],[225,3],[226,120],[199,3],[179,121],[180,122],[177,123],[176,3],[178,3],[200,3],[204,124],[206,125],[205,124],[203,126],[207,127],[202,128],[201,3],[111,52],[110,3],[8,3],[9,3],[13,3],[12,3],[2,3],[14,3],[15,3],[16,3],[17,3],[18,3],[19,3],[20,3],[21,3],[3,3],[4,3],[45,3],[25,3],[22,3],[23,3],[24,3],[26,3],[27,3],[28,3],[5,3],[29,3],[30,3],[31,3],[32,3],[6,3],[33,3],[34,3],[35,3],[36,3],[7,3],[37,3],[42,3],[43,3],[38,3],[39,3],[40,3],[41,3],[1,3],[44,3],[11,3],[10,3],[181,135],[182,136],[187,137],[227,3],[228,3],[229,3],[230,3],[235,132],[231,3],[234,133],[236,3],[233,3],[237,134],[232,3]],"semanticDiagnosticsPerFile":[183,184,185,190,188,164,171,99,161,162,103,105,157,151,106,107,104,109,100,166,154,174,102,101,138,137,115,141,125,122,123,116,119,118,150,121,126,127,131,132,133,134,135,136,144,145,147,148,149,142,130,129,128,143,140,139,124,146,117,175,172,173,168,165,153,98,155,167,170,156,108,152,169,163,120,159,160,158,114,112,193,189,191,192,194,195,196,197,198,208,222,210,211,209,212,213,214,215,216,217,218,219,220,221,113,46,47,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,48,96,64,65,66,97,67,68,69,70,71,72,73,74,75,76,77,78,80,79,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,223,224,225,226,199,179,180,177,176,178,200,204,206,205,203,207,202,201,111,110,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,45,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10,181,182,186,187,227,228,229,230,235,231,234,236,233,237,232]},"version":"4.7.4"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../node_modules/protobufjs/index.d.ts","../node_modules/protobufjs/ext/descriptor/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@grpc/proto-loader/build/src/util.d.ts","../node_modules/@types/long/index.d.ts","../node_modules/@grpc/proto-loader/build/src/index.d.ts","../node_modules/@grpc/grpc-js/build/src/metadata.d.ts","../node_modules/@grpc/grpc-js/build/src/call-credentials.d.ts","../node_modules/@grpc/grpc-js/build/src/constants.d.ts","../node_modules/@grpc/grpc-js/build/src/deadline.d.ts","../node_modules/@grpc/grpc-js/build/src/channel-credentials.d.ts","../node_modules/@grpc/grpc-js/build/src/compression-algorithms.d.ts","../node_modules/@grpc/grpc-js/build/src/channel-options.d.ts","../node_modules/@grpc/grpc-js/build/src/connectivity-state.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Timestamp.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelRef.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SubchannelRef.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTraceEvent.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelTrace.d.ts","../node_modules/@grpc/grpc-js/build/src/subchannel-address.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelConnectivityState.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ChannelData.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketRef.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channel.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetChannelResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerRef.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/ServerData.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Server.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServerSocketsResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetServersResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Int64Value.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/Any.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketOption.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/SocketData.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Address.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Security.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Socket.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSocketResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Subchannel.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetSubchannelResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsRequest.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/GetTopChannelsResponse.d.ts","../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/Channelz.d.ts","../node_modules/@grpc/grpc-js/build/src/channelz.d.ts","../node_modules/@grpc/grpc-js/build/src/channel.d.ts","../node_modules/@grpc/grpc-js/build/src/client-interceptors.d.ts","../node_modules/@grpc/grpc-js/build/src/client.d.ts","../node_modules/@grpc/grpc-js/build/src/server-credentials.d.ts","../node_modules/@grpc/grpc-js/build/src/server.d.ts","../node_modules/@grpc/grpc-js/build/src/make-client.d.ts","../node_modules/@grpc/grpc-js/build/src/events.d.ts","../node_modules/@grpc/grpc-js/build/src/object-stream.d.ts","../node_modules/@grpc/grpc-js/build/src/server-call.d.ts","../node_modules/@grpc/grpc-js/build/src/call-interface.d.ts","../node_modules/@grpc/grpc-js/build/src/call.d.ts","../node_modules/@grpc/grpc-js/build/src/status-builder.d.ts","../node_modules/@grpc/grpc-js/build/src/admin.d.ts","../node_modules/@grpc/grpc-js/build/src/logging.d.ts","../node_modules/@grpc/grpc-js/build/src/duration.d.ts","../node_modules/@grpc/grpc-js/build/src/uri-parser.d.ts","../node_modules/@grpc/grpc-js/build/src/transport.d.ts","../node_modules/@grpc/grpc-js/build/src/subchannel-call.d.ts","../node_modules/@grpc/grpc-js/build/src/subchannel.d.ts","../node_modules/@grpc/grpc-js/build/src/subchannel-interface.d.ts","../node_modules/@grpc/grpc-js/build/src/picker.d.ts","../node_modules/@grpc/grpc-js/build/src/load-balancer.d.ts","../node_modules/@grpc/grpc-js/build/src/service-config.d.ts","../node_modules/@grpc/grpc-js/build/src/filter.d.ts","../node_modules/@grpc/grpc-js/build/src/resolver.d.ts","../node_modules/@grpc/grpc-js/build/src/backoff-timeout.d.ts","../node_modules/@grpc/grpc-js/build/src/load-balancer-child-handler.d.ts","../node_modules/@grpc/grpc-js/build/src/filter-stack.d.ts","../node_modules/@grpc/grpc-js/build/src/load-balancer-outlier-detection.d.ts","../node_modules/@grpc/grpc-js/build/src/experimental.d.ts","../node_modules/@grpc/grpc-js/build/src/index.d.ts","../src/Descriptor.ts","../src/Exceptions/ReflectionException.ts","../src/Exceptions/ReflectionRequestException.ts","../src/Exceptions/index.ts","../src/Types/getAllExtensionNumbersOfTypeType.ts","../src/Types/index.ts","../src/GrpcReflection.ts","../src/index.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/eslint/helpers.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/eslint/index.d.ts","../node_modules/@types/eslint-scope/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/chalk/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","688c9dfd2b7114f5f01022abb5b179659f990d5af5924f185c2644ca99fe7b77","f17c007d95f666ecf664ff13ca8efc196980597c4ca152a0baaa82b2525e2328","4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"b934b72617b1474639ef1886668032537a2ed5dcc875c303dc33f207c64daac1","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"20c1718aee3e4975b90a9ba3b0877ab3ce6681111df8b425723335ffa2d866a5","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","67458ffec915caad7ead57f00786c301b37ce7ff1a90506b797f4691337c536c","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","73e88763806a21b32aff5a66d4930124606bc5e77f796ea3ff8b6878ff787fa8","18f177e442b4cdbc5efb82e7c344201a11e4a4342ff1f19f8765b849e254e2ec","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"0abf83c652b6317fae51a1cb7573251f87f208ecd77fbf2bb8a09b1c70f26d04","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","8e2dd46692f03737289f1b23fc90ad329d726a8b234f756a1453d61a39587356","0034f55fd438f31ba1f0b340dceef3b77d9a89f5218e5875a990b4eff2a5714d","288dd0c774a5c6e3964084c7a2bc8cc6b746d70f44a9892d028d04f915cf7ebc","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"f7011a8d17a06e60dc591fd89b7bf40507d36a5a4d5913fa0eff4e18da001759","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","77f7b6094b3422cc09eb2e919493287ed02380cff73d0452e17149d40dbf157d","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","196aeae43911b66bac5d87d7eba460c4d27561257737931f5a1e6e1babcf55a6","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"88003d9ab15507806f41b120be6d407c1afe566c2f6689ebe3a034dd5ec0c8dc","02ff761f690163463a4e7594d666e4c73995c4f72746a5967b3477d9ecf62c4e","0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70","473d9269f1f277be1e222b80b5912b26f924efe13c1f418e569617ec34342720","b044eadc49ce3587849c0e9aa8bfb88e0cb82c5e44b54d793a3a715d03bc9b07","3d9b6574d545031d5a81185737938625b11029e7add4028b00373c290757c048","181694d1f7a579e57c55efb1418904efc513ebce0b08601e94f288674104359e","934afd20b0dcaab7841bd89262bda9ecd2c827edb60b4fcccdcd8b2680b7971d","b7b92b4a7b90cdfef8b8dd04f9f5596d37808cee9b00d4085c8a3f7112395315","eed0cfbd238f0f9def37d26d793393c8cfb59afe28ecd1a4639a58905abdadf1","bbf3739cc3f56bf737b786df3ba7b3f612f2a14036e63ffec759812d575b1e8e","416eec23b202526964d0f5ebf0ca9e0d8c08e4260bc0946143b66f1a1e17b787","f5b284ceadf71472a8fbf555dbd91079cce0ce7ba54f65dd63d18deec84cd11d","11f848107bc2f7535adccd37b55f018a0f18abbf5a1cd276f5776779618c37ed","8f47ed340254a8ccdf37035d9cba70f53a4d899804da840b47f4c3b07a7b2063","dfdfc935e9c67294aba4c4225b80f41f6fae35a769981906a78480e28e0cd703","50b54f6dac82c34e8c12b35eac220ccc178f51e84813179826da0e3e96283af9","5d21e7bc9dfa62a5ef87c2a2d39636ea936b9f2f1b2dd754993c8c9cab203532","6fd6fcadeab3b973ea52c2dbfcc960f23e086ea3bc07aaa0e1c6d0d690f8e776","7eed214004cc8d86022792c07075758fe61847c70c6c360235f3960492fd6155","a59fdd5525468b9afe1fef2238f5b990c640723bd430c589b4c963d576209be8","23c0f554c1fab508370678aca41cf9b1d6a6a00069e499d803d43387067fea9d","016f140691ab5fea3357a89c6a254ff8ada91173d22d36921bb8295fe5d828ab","ee219b4332439451cbf9ee34584e8a7e67be35d8ed3d1b292769a09483a102ce","305c2373ff739ceca5780a204766c76617e74b551f6fc646a358b5f687a77333","61c5821b70e113b15f24593e7061e6302635448ae700d813f06560ca5f140727","1e127052ae269b7f278b828978b962eb93bbc6134c0bda8b03e3f39df5c3865d","716cb84b8b410c52de9e7b310b2125cbc390a7c59e929a5c0a29514345b9ba9f","edabf50cfd2310b9af7214ecb821e0af6c43f66d8b5fb297d532f27bba242088","1687d528ca6c51a635f9a4022973f472221700464be83810788238a595cb588c","32162214c3f25748f784283a3f6059ad3d09d845faccc52b5c2cf521eace6bd6","4a13f78f265e7deb260bd0cc9063b9927a39f99f7cc8bb62b0310aa3a1df3efd","c04c509a58cc86b654326592aca64d7ceab81a208735c391dd171ca438114ea9","74c6a2352b00e41d352cc23e98e8d6313d5631738a5ea734f1c7bff0192b0f47","fc94bcfb823846ba8b4c1727520a3d509c9f517d4e803dfb45e6a71b41000eb8","b8b1b9330d78f4544e1224d5e16d1223a6b1c1505ef96c17dd08de2519dd8779","e4c09f8a818679f80931fae1d0ca3dec192708c510c9f33fe56d71abe8337c59","b1cc0dfdc0455283ccf003185dbbc51e2c15299aff343413310eaf45c4572323","196f3c5da872983f8f0d2242c2cecc4fae85684d887ae1eef6be6b13b4138233","970c9e6d3c4184ca0c36d86dc29cc3e7b151d6aa4c1f2185fb97650b05a07055","af4beeac0e879b673f8b874e5fe013bdebfb17f0213142e5037ac90aea86d636","c620ccd98c18e71d7e39a79bea47b4f4724c3a1f30f78d2cdd03cf707ae64e4d","150f375c7f5c01a15d531c961468f1a04a1c21dc4e4a372ca4661700d66cc9c2","8aabc7d8676ba6098fc30c95eca03a331df41ac4c08213207a9329998f32d1b0","9d8464e1c6b7f30c4121d28b11c112da81c496c65e65948fbc7d5b5f23b50cdc","6b88a632af960a4140730527eb670c3d3e6eae0da573f0df2849909d9bb3e5f3","ab2f4f2d874d18918f0abb55e5a89a36ab875e01e3e9efa6e19efbd65295800b","2212906ab48ae8891080a68a19ba3ab53a4927d360feb34120051aff4ae980ae","f9928adb17e93216521f6dec26bb4686337e92265fbfaf7f1407cbc59eb4e24e","81a0ad19fcbd10a0652056c53d7914beaf329c8256e2ae1eee8a71d50f7b3099","cf6bbb6d0fa5fd968bed4428fb7185e941858bd58c40a52f29e6de486fc86036","0e8a156ae510f4cb5012c1daf7fb0b1d0b2207a7af4e069831d5236e8648c869","9a7a72c4c13b166e980bcc538ffb67b9b9d0ef02f6a7a4fd5045435e2a2dab73","7743f9d58e65d1e14733f890ce7cbe166603d0a930b0985d61af29ed059299c7","4aee50d73be34729affea3590111c093a8952c9accd9b3ee939aeb7331594225","df4b5e6fe2a91140a1ed2f8f94e01d4c836a069cee23a2d0a83a00cf649f8505","dd6273b4dbd75493f71fbe03b4f7c2091514d5fa2f688f62d3372a5f0dc865e9","9d5b9efdedf7930cbfdd6465428f9ac8b74acacf5349832ca5156d9999e442b5","b9903fedd67f359fb4411855369d0fb634512a27ad18930d066f44865ace82df","3ca6d1c1cd7e39a18ca650310c3573737e26879ae4f8c4587e73c9d8d2a3354d","fb0d83c2e2dc390a2a0f5c55834a301fe1cbc1021062d75a27059893f307bcc5","f64fff46fcd20e44ed057398a9872269bb547d85eb6a40050f8b6794d2ef093f","401fa7edce893a618c09a1bbf3828e688057e4e46ffe020113ce9552cb6bc2d0","baef294f6ea8cfd7e45932669b7cbc6aa1621d3ae6d2c9515acc3ea484fb4be0","9bbcda8e62203eae2ff2f7ff61fb443222974c125f6e0e8a280ab8765d55b5f3","30410d909eb55b67b101277d47e0220542b3bf982ad24b315e678edfe2841e7c","3d7400439bc24011d5b3813db31f5dbf96bafc0552417ec17ddb4d82b6062c9c","7824f82db84266b72e22a7e60c11fe3ee80c04256ab44c1e09b0a6da52a7cfc5","0b1f5e6257ae032f9146a5618e5f3b7da8256ad8d505f73cef3fd54eea3f5deb","b45d7abfb3966a0199c1e7fa16203a870221a4ea08a78bcd898d0c3b036227b9","c97e0165511e0fa9e4da49681b649c9b846200811da3101d41876c1df166287a","d591b1029fa0902cc776a4051bed1050d65472114a30add547a7d925b2e22b66","67ebbe06bae6819c3d2abee9d3efc1a85cbc679ab47191ef2550afa3f83be390","cdba59aaec0da2d8a87a5f1a456e9a2b3baac395fb05ddd39f69acfaf4dde7ce","fde15ccf34319bfbbd71a8453a9121f4161908668caf13740fa38af176e41a00","76ead0d03259ad18a7263ffbc74f38f74799ee98d46dbaabbb2db35f15d0adae","cb42bb5910401cb6734da885ed03a5d96d4ff7d6db73c3d4b28d8915ceac04e7","64377a93588b37bc8e0a09166b7078e7ddfa59010b15710941c3c29475728097","d0cf0861427285a5cae484c11c01d05422e8073bd16ee057c6d429e7e5d4cbed","050ccf8c6dc35d143a162a931fb75056b99c6bc4e21a35cf0a1693306154048a",{"version":"d7019218a09fc2d8be922b2791d005a8add7a04d8b8fee7649ff396f53a8233f","signature":"d561dc52303d6545d86d9b807d242bd718e25b426c17ebcf2e6958a616905c12"},{"version":"ad6f740c9c346d0725317b5deddf8b8fdef7d4ff133e83071595f1893bbb6844","signature":"eb6d4a166b8a5493866d8f6aa842d2b1c4442e8be9ab458a00ca4e683877c542"},{"version":"feaf8bb7bf97122f4f16f1e49b2af55ebbbbe8a57b6e9ae5def057f732c32a08","signature":"825d2a045f20d87ca8f94d048185232b57e364021981c4fbe015cf66d2e25ef7"},{"version":"f123f0b1a959fb681c8cbdc6c6f4928a9dbeb7a49a50257df01844c3a44618bf","signature":"f056b28a9b56b39d4146d4fc5000c7db59c821812c488a87e41ded3691fdda16"},{"version":"6f94df5e0d702df90317b1f02bee9493f639dc11c7a488a91f6480b29c0c4be2","signature":"897aa5f3b38fc7b0d658a61461180908657bc9f8ab8e30033ea7fdf5453e10f7"},"de64f6a852d4c6efd9598e3ff983a04a54e1de50b9422c0fffb4fdafdfc7ac65",{"version":"4b0846b7154edba4c37cec3ef52c9022088369bffeb6b9174c50b3d300f2fce5","signature":"618d11ce4847f81fbd877b85afd8fec8def3ea00a51b2d842ecc8db2105f4d3a"},{"version":"f4362ab0d22f4e91b0d238bd139109d3af0f2326733e720ada6bc8a5b239a434","signature":"d1f4fe565198de7fc22b0c7e6379333a7c8283f8a2b61b110f0a08a59a8f0642"},"a20fc1fcd9cd7c2b79d5f00d14802c1d58c3848e09ee4f84b350591af88b7636","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","dae3d1adc67ac3dbd1cd471889301339ec439837b5df565982345be20c8fca9a","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"bee89e1eb6425eb49894f3f25e4562dc2564e84e5aa7610b7e13d8ecddf8f5db","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","dea2650c477f53d503a27f78ed17b13d7184c2f922eb4d3367ccf52634765467","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"bc88e4049153bc4dddb4503ed7e624eb141edfa9064b3659d6c86e900fe9e621","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","149ebd778196c03e9c75b630866543501e0e9e62a146c1a17ce91ade4cdfb0ba"],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":true,"strictBindCallApply":false,"strictNullChecks":false,"target":4},"fileIdsList":[[93,188],[93],[93,153,154],[93,104],[93,100,104,105,106,107,157],[64,81,93,100,104,150,155,156,158],[89,93,100,105],[93,109],[93,107,108,110,111,148,157,158],[93,100,111,116,117,147],[93,104,106,149,151,154,158],[93,100,104,105,107,108,110,149,150,154,157,159],[93,117,158,161,162,163,164,168,169,170,171,172,173,174,175,176,177],[93,100,104,158,172],[93,100,104,158],[93,100,103],[93,103],[93,100,135],[93,113,114,120,121],[93,103,112,116,119],[93,103,112,115],[93,112,113,114],[93,103,118,123,124,128,129,130,131,132,133,141,142,144,145,146,179],[93,122],[93,127],[93,121],[93,140],[93,143],[93,121,125,126],[93,103,112,116],[93,121,137,138,139],[93,103,112,134,136],[93,135],[93,104,105,106,107,108,109,110,111,148,149,150,151,152,153,154,157,158,159,160,161,178],[93,117,170],[93,117,170,178],[93,110,111,117,148,168,169],[93,106],[93,100,108,110,151,153],[68,93,100],[81,93,100,155],[93,104,106,158,168,170],[93,104,106,110,117,158,164,171,172],[64,68,81,93,100,104,107,110,154,156,158],[93,110,148,152,154,157],[93,106,163,170],[93,104,106,158],[68,93,100,106,158,165],[93,111,148,167],[93,104,108,110,111,117,148,164,165,166,168],[68,93,100,104,108,110,117,148,158,164,166],[47,48,93,100,101,102,103],[47,93,103],[93,188,189,190,191,192],[93,188,190],[93,195,197],[93,194,195,196],[65,93,100],[93,200],[93,201],[93,206,211],[49,93],[52,93],[53,58,84,93],[54,64,65,72,81,92,93],[54,55,64,72,93],[56,93],[57,58,65,73,93],[58,81,89,93],[59,61,64,72,93],[60,93],[61,62,93],[63,64,93],[64,93],[64,65,66,81,92,93],[64,65,66,81,93],[64,67,72,81,92,93],[64,65,67,68,72,81,89,92,93],[67,69,81,89,92,93],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[64,70,93],[71,92,93],[61,64,72,81,93],[73,93],[74,93],[52,75,93],[76,91,93,97],[77,93],[78,93],[64,79,93],[79,80,93,95],[53,64,81,82,83,93],[53,81,83,93],[81,82,93],[84,93],[85,93],[64,87,88,93],[87,88,93],[58,72,89,93],[90,93],[72,91,93],[53,67,78,92,93],[58,93],[81,93,94],[93,95],[93,96],[53,58,64,66,75,81,92,93,95,97],[81,93,98],[93,215],[93,204,207],[93,204,207,208,209],[93,206],[93,203,210],[93,205],[47,48,93,103,179],[93,181,182],[47,48,74,93,103,179,180,183,185],[93,184],[93,180,183,185,186],[47,48,103,179],[181,182],[179,180,185],[180,183,185,186]],"referencedMap":[[190,1],[188,2],[161,3],[174,2],[105,4],[158,5],[159,6],[108,7],[110,8],[149,9],[148,10],[150,11],[151,12],[109,2],[111,2],[106,2],[107,2],[163,2],[155,2],[178,13],[176,14],[172,15],[135,16],[134,17],[112,17],[138,18],[122,19],[119,2],[120,20],[113,17],[116,21],[115,22],[147,23],[118,17],[123,24],[124,17],[128,25],[129,17],[130,26],[131,17],[132,25],[133,17],[141,27],[142,17],[144,28],[145,17],[146,24],[139,18],[127,29],[126,30],[125,17],[140,31],[137,32],[136,33],[121,17],[143,19],[114,17],[179,34],[175,35],[177,36],[170,37],[162,38],[154,39],[104,40],[156,41],[169,42],[173,43],[157,44],[152,40],[153,45],[171,46],[160,47],[117,2],[166,48],[168,49],[167,50],[165,51],[164,2],[103,52],[101,53],[193,54],[189,1],[191,55],[192,1],[198,56],[194,2],[197,57],[195,2],[199,58],[200,2],[201,59],[202,60],[212,61],[196,2],[102,2],[49,62],[50,62],[52,63],[53,64],[54,65],[55,66],[56,67],[57,68],[58,69],[59,70],[60,71],[61,72],[62,72],[63,73],[64,74],[65,75],[66,76],[51,2],[99,2],[67,77],[68,78],[69,79],[100,80],[70,81],[71,82],[72,83],[73,84],[74,85],[75,86],[76,87],[77,88],[78,89],[79,90],[80,91],[81,92],[83,93],[82,94],[84,95],[85,96],[86,2],[87,97],[88,98],[89,99],[90,100],[91,101],[92,102],[93,103],[94,104],[95,105],[96,106],[97,107],[98,108],[213,2],[214,2],[215,2],[216,109],[203,2],[204,2],[208,110],[210,111],[209,110],[207,112],[211,113],[206,114],[205,2],[48,53],[47,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[46,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[180,115],[181,2],[182,2],[183,116],[186,117],[184,2],[185,118],[187,119]],"exportedModulesMap":[[190,1],[188,2],[161,3],[174,2],[105,4],[158,5],[159,6],[108,7],[110,8],[149,9],[148,10],[150,11],[151,12],[109,2],[111,2],[106,2],[107,2],[163,2],[155,2],[178,13],[176,14],[172,15],[135,16],[134,17],[112,17],[138,18],[122,19],[119,2],[120,20],[113,17],[116,21],[115,22],[147,23],[118,17],[123,24],[124,17],[128,25],[129,17],[130,26],[131,17],[132,25],[133,17],[141,27],[142,17],[144,28],[145,17],[146,24],[139,18],[127,29],[126,30],[125,17],[140,31],[137,32],[136,33],[121,17],[143,19],[114,17],[179,34],[175,35],[177,36],[170,37],[162,38],[154,39],[104,40],[156,41],[169,42],[173,43],[157,44],[152,40],[153,45],[171,46],[160,47],[117,2],[166,48],[168,49],[167,50],[165,51],[164,2],[103,52],[101,53],[193,54],[189,1],[191,55],[192,1],[198,56],[194,2],[197,57],[195,2],[199,58],[200,2],[201,59],[202,60],[212,61],[196,2],[102,2],[49,62],[50,62],[52,63],[53,64],[54,65],[55,66],[56,67],[57,68],[58,69],[59,70],[60,71],[61,72],[62,72],[63,73],[64,74],[65,75],[66,76],[51,2],[99,2],[67,77],[68,78],[69,79],[100,80],[70,81],[71,82],[72,83],[73,84],[74,85],[75,86],[76,87],[77,88],[78,89],[79,90],[80,91],[81,92],[83,93],[82,94],[84,95],[85,96],[86,2],[87,97],[88,98],[89,99],[90,100],[91,101],[92,102],[93,103],[94,104],[95,105],[96,106],[97,107],[98,108],[213,2],[214,2],[215,2],[216,109],[203,2],[204,2],[208,110],[210,111],[209,110],[207,112],[211,113],[206,114],[205,2],[48,53],[47,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[46,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[180,120],[183,121],[186,122],[185,118],[187,123]],"semanticDiagnosticsPerFile":[190,188,161,174,105,158,159,108,110,149,148,150,151,109,111,106,107,163,155,178,176,172,135,134,112,138,122,119,120,113,116,115,147,118,123,124,128,129,130,131,132,133,141,142,144,145,146,139,127,126,125,140,137,136,121,143,114,179,175,177,170,162,154,104,156,169,173,157,152,153,171,160,117,166,168,167,165,164,103,101,193,189,191,192,198,194,197,195,199,200,201,202,212,196,102,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,51,99,67,68,69,100,70,71,72,73,74,75,76,77,78,79,80,81,83,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,213,214,215,216,203,204,208,210,209,207,211,206,205,48,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,46,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,180,181,182,183,186,184,185,187]},"version":"4.9.5"}
|
package/examples/getProtoObj.ts
CHANGED
|
@@ -8,10 +8,10 @@ import * as grpc from '@grpc/grpc-js';
|
|
|
8
8
|
* */
|
|
9
9
|
try {
|
|
10
10
|
(async () => {
|
|
11
|
-
const
|
|
11
|
+
const client = new GrpcReflection('0.0.0.0:3000', grpc.credentials.createInsecure());
|
|
12
12
|
|
|
13
13
|
// Find protobufjs descriptor by symbol in grpc reflection server
|
|
14
|
-
const descriptor = await
|
|
14
|
+
const descriptor = await client.getDescriptorBySymbol('apidata');
|
|
15
15
|
|
|
16
16
|
// Get @grpc/grpc-js package object
|
|
17
17
|
const packageObject = descriptor.getPackageObject({
|
|
@@ -21,6 +21,7 @@ try {
|
|
|
21
21
|
});
|
|
22
22
|
|
|
23
23
|
// Connect with service packageObject.<packageName>.<serviceName>
|
|
24
|
+
//@ts-ignore
|
|
24
25
|
var proto = new packageObject.apidata.ApiKeyService(
|
|
25
26
|
'0.0.0.0:3000',
|
|
26
27
|
grpc.credentials.createInsecure()
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
const { GrpcReflection } = require('grpc-js-reflection-client');
|
|
2
|
+
const grpc = require('@grpc/grpc-js');
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Get proto descriptor from reflection grpc api and get in @grpc/grpc-js format
|
|
6
|
+
*
|
|
7
|
+
* */
|
|
8
|
+
try {
|
|
9
|
+
(async()=>{
|
|
10
|
+
// Connect with grpc server reflection
|
|
11
|
+
const client = new GrpcReflection('0.0.0.0:50051', grpc.credentials.createInsecure());
|
|
12
|
+
|
|
13
|
+
// Get services without proto file for specific symbol or file name
|
|
14
|
+
const descriptor = await client.getDescriptorBySymbol('helloworld.Greeter');
|
|
15
|
+
//const descriptor = await client.getDescriptorByFileName('examples/helloworld/helloworld/helloworld.proto');
|
|
16
|
+
|
|
17
|
+
// Create package services
|
|
18
|
+
const packageObject = descriptor.getPackageObject({
|
|
19
|
+
keepCase: true,
|
|
20
|
+
enums: String,
|
|
21
|
+
longs: String
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
// Send request over grpc
|
|
25
|
+
const proto = new packageObject.helloworld.Greeter(
|
|
26
|
+
"localhost:50051",
|
|
27
|
+
grpc.credentials.createInsecure(),
|
|
28
|
+
);
|
|
29
|
+
|
|
30
|
+
proto.SayHello({
|
|
31
|
+
name: "abc"
|
|
32
|
+
},(err,data)=>{
|
|
33
|
+
if(err) {
|
|
34
|
+
console.log(err);
|
|
35
|
+
}else{
|
|
36
|
+
console.log(data);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
});
|
|
40
|
+
})();
|
|
41
|
+
}catch(e){
|
|
42
|
+
console.log(e);
|
|
43
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const { GrpcReflection } = require('grpc-js-reflection-client');
|
|
2
|
+
const grpc = require('@grpc/grpc-js');
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* List services
|
|
6
|
+
*/
|
|
7
|
+
try {
|
|
8
|
+
(async () => {
|
|
9
|
+
const c = new GrpcReflection('0.0.0.0:50051', grpc.credentials.createInsecure());
|
|
10
|
+
console.log(await c.listServices());
|
|
11
|
+
})();
|
|
12
|
+
|
|
13
|
+
}catch(e){
|
|
14
|
+
console.log(e);
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "grpc-js-reflection-client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Package use Grpc reflection api to download gprc proto descriptor. Now you don't have to add proto file to each package. Simple direct download proto package from example microservice without any files.",
|
|
5
5
|
"author": "gawsoft.pl",
|
|
6
|
-
"main": "dist/
|
|
6
|
+
"main": "dist/index.js",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
10
|
+
"proto",
|
|
10
11
|
"examples"
|
|
11
12
|
],
|
|
12
13
|
"scripts": {
|
|
13
14
|
"prebuild": "rimraf dist",
|
|
14
15
|
"build": "tsc",
|
|
15
|
-
"start
|
|
16
|
+
"test:start-node-server": "ts-node tests/e2e/grpc-node-server-reflection/server.ts",
|
|
17
|
+
"test": "jest --config ./tests/jest-unit.json --forceExit",
|
|
18
|
+
"test:e2e": "jest --config ./tests/jest-e2e.json --forceExit",
|
|
19
|
+
"start:dev": "nodemon --watch './**/*.ts' --exec 'ts-node' src/test.ts"
|
|
16
20
|
},
|
|
17
21
|
"homepage": "https://gawsoft.pl",
|
|
18
22
|
"repository": {
|
|
@@ -20,13 +24,14 @@
|
|
|
20
24
|
"url": "https://github.com/gawsoftpl/grpc-js-reflection-api-client.git"
|
|
21
25
|
},
|
|
22
26
|
"dependencies": {
|
|
23
|
-
"@grpc/grpc-js": "^1.
|
|
24
|
-
"
|
|
25
|
-
"protobufjs": "^7.
|
|
27
|
+
"@grpc/grpc-js": "^1.8.14",
|
|
28
|
+
"lodash.set": "^4.3.2",
|
|
29
|
+
"protobufjs": "^7.2.3"
|
|
26
30
|
},
|
|
27
31
|
"devDependencies": {
|
|
28
32
|
"@types/jest": "^27.0.3",
|
|
29
33
|
"@types/node": "^16.0.0",
|
|
34
|
+
"grpc-node-server-reflection": "^1.0.2",
|
|
30
35
|
"jest": "^27.2.5",
|
|
31
36
|
"reflect-metadata": "^0.1.13",
|
|
32
37
|
"rimraf": "^3.0.2",
|
|
@@ -42,7 +47,7 @@
|
|
|
42
47
|
"ts"
|
|
43
48
|
],
|
|
44
49
|
"rootDir": "tests",
|
|
45
|
-
"testRegex": "
|
|
50
|
+
"testRegex": "unit/.*\\.test\\.ts$",
|
|
46
51
|
"transform": {
|
|
47
52
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
48
53
|
},
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
// Copyright 2016 gRPC authors.
|
|
2
|
+
//
|
|
3
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
// you may not use this file except in compliance with the License.
|
|
5
|
+
// You may obtain a copy of the License at
|
|
6
|
+
//
|
|
7
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
//
|
|
9
|
+
// Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
// See the License for the specific language governing permissions and
|
|
13
|
+
// limitations under the License.
|
|
14
|
+
|
|
15
|
+
// Service exported by server reflection
|
|
16
|
+
|
|
17
|
+
syntax = "proto3";
|
|
18
|
+
|
|
19
|
+
package grpc.reflection.v1alpha;
|
|
20
|
+
|
|
21
|
+
service ServerReflection {
|
|
22
|
+
// The reflection service is structured as a bidirectional stream, ensuring
|
|
23
|
+
// all related requests go to a single server.
|
|
24
|
+
rpc ServerReflectionInfo(stream ServerReflectionRequest)
|
|
25
|
+
returns (stream ServerReflectionResponse);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// The message sent by the client when calling ServerReflectionInfo method.
|
|
29
|
+
message ServerReflectionRequest {
|
|
30
|
+
string host = 1;
|
|
31
|
+
// To use reflection service, the client should set one of the following
|
|
32
|
+
// fields in message_request. The server distinguishes requests by their
|
|
33
|
+
// defined field and then handles them using corresponding methods.
|
|
34
|
+
oneof message_request {
|
|
35
|
+
// Find a proto file by the file name.
|
|
36
|
+
string file_by_filename = 3;
|
|
37
|
+
|
|
38
|
+
// Find the proto file that declares the given fully-qualified symbol name.
|
|
39
|
+
// This field should be a fully-qualified symbol name
|
|
40
|
+
// (e.g. <package>.<service>[.<method>] or <package>.<type>).
|
|
41
|
+
string file_containing_symbol = 4;
|
|
42
|
+
|
|
43
|
+
// Find the proto file which defines an extension extending the given
|
|
44
|
+
// message type with the given field number.
|
|
45
|
+
ExtensionRequest file_containing_extension = 5;
|
|
46
|
+
|
|
47
|
+
// Finds the tag numbers used by all known extensions of the given message
|
|
48
|
+
// type, and appends them to ExtensionNumberResponse in an undefined order.
|
|
49
|
+
// Its corresponding method is best-effort: it's not guaranteed that the
|
|
50
|
+
// reflection service will implement this method, and it's not guaranteed
|
|
51
|
+
// that this method will provide all extensions. Returns
|
|
52
|
+
// StatusCode::UNIMPLEMENTED if it's not implemented.
|
|
53
|
+
// This field should be a fully-qualified type name. The format is
|
|
54
|
+
// <package>.<type>
|
|
55
|
+
string all_extension_numbers_of_type = 6;
|
|
56
|
+
|
|
57
|
+
// List the full names of registered services. The content will not be
|
|
58
|
+
// checked.
|
|
59
|
+
string list_services = 7;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// The type name and extension number sent by the client when requesting
|
|
64
|
+
// file_containing_extension.
|
|
65
|
+
message ExtensionRequest {
|
|
66
|
+
// Fully-qualified type name. The format should be <package>.<type>
|
|
67
|
+
string containing_type = 1;
|
|
68
|
+
int32 extension_number = 2;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// The message sent by the server to answer ServerReflectionInfo method.
|
|
72
|
+
message ServerReflectionResponse {
|
|
73
|
+
string valid_host = 1;
|
|
74
|
+
ServerReflectionRequest original_request = 2;
|
|
75
|
+
// The server set one of the following fields accroding to the message_request
|
|
76
|
+
// in the request.
|
|
77
|
+
oneof message_response {
|
|
78
|
+
// This message is used to answer file_by_filename, file_containing_symbol,
|
|
79
|
+
// file_containing_extension requests with transitive dependencies. As
|
|
80
|
+
// the repeated label is not allowed in oneof fields, we use a
|
|
81
|
+
// FileDescriptorResponse message to encapsulate the repeated fields.
|
|
82
|
+
// The reflection service is allowed to avoid sending FileDescriptorProtos
|
|
83
|
+
// that were previously sent in response to earlier requests in the stream.
|
|
84
|
+
FileDescriptorResponse file_descriptor_response = 4;
|
|
85
|
+
|
|
86
|
+
// This message is used to answer all_extension_numbers_of_type requst.
|
|
87
|
+
ExtensionNumberResponse all_extension_numbers_response = 5;
|
|
88
|
+
|
|
89
|
+
// This message is used to answer list_services request.
|
|
90
|
+
ListServiceResponse list_services_response = 6;
|
|
91
|
+
|
|
92
|
+
// This message is used when an error occurs.
|
|
93
|
+
ErrorResponse error_response = 7;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// Serialized FileDescriptorProto messages sent by the server answering
|
|
98
|
+
// a file_by_filename, file_containing_symbol, or file_containing_extension
|
|
99
|
+
// request.
|
|
100
|
+
message FileDescriptorResponse {
|
|
101
|
+
// Serialized FileDescriptorProto messages. We avoid taking a dependency on
|
|
102
|
+
// descriptor.proto, which uses proto2 only features, by making them opaque
|
|
103
|
+
// bytes instead.
|
|
104
|
+
repeated bytes file_descriptor_proto = 1;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// A list of extension numbers sent by the server answering
|
|
108
|
+
// all_extension_numbers_of_type request.
|
|
109
|
+
message ExtensionNumberResponse {
|
|
110
|
+
// Full name of the base type, including the package name. The format
|
|
111
|
+
// is <package>.<type>
|
|
112
|
+
string base_type_name = 1;
|
|
113
|
+
repeated int32 extension_number = 2;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// A list of ServiceResponse sent by the server answering list_services request.
|
|
117
|
+
message ListServiceResponse {
|
|
118
|
+
// The information of each service may be expanded in the future, so we use
|
|
119
|
+
// ServiceResponse message to encapsulate it.
|
|
120
|
+
repeated ServiceResponse service = 1;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// The information of a single service used by ListServiceResponse to answer
|
|
124
|
+
// list_services request.
|
|
125
|
+
message ServiceResponse {
|
|
126
|
+
// Full name of a registered service, including its package name. The format
|
|
127
|
+
// is <package>.<service>
|
|
128
|
+
string name = 1;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
// The error code and error message sent by the server when an error occurs.
|
|
132
|
+
message ErrorResponse {
|
|
133
|
+
// This field uses the error codes defined in grpc::StatusCode.
|
|
134
|
+
int32 error_code = 1;
|
|
135
|
+
string error_message = 2;
|
|
136
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const GrpcReflection_1 = require("../src/GrpcReflection");
|
|
4
|
-
const grpc = require("@grpc/grpc-js");
|
|
5
|
-
try {
|
|
6
|
-
(async () => {
|
|
7
|
-
const c = new GrpcReflection_1.GrpcReflection('0.0.0.0:3000', grpc.credentials.createInsecure());
|
|
8
|
-
const descriptor = await c.getDescriptorBySymbol('apidata');
|
|
9
|
-
const packageObject = descriptor.getPackageObject({
|
|
10
|
-
keepCase: true,
|
|
11
|
-
enums: String,
|
|
12
|
-
longs: String
|
|
13
|
-
});
|
|
14
|
-
var proto = new packageObject.apidata.ApiKeyService('0.0.0.0:3000', grpc.credentials.createInsecure());
|
|
15
|
-
var metadata = new grpc.Metadata();
|
|
16
|
-
metadata.add('authorization', "abc");
|
|
17
|
-
proto.Add({ "user_id": "A" }, metadata, (d) => {
|
|
18
|
-
console.log(d);
|
|
19
|
-
});
|
|
20
|
-
proto.Add({ "user_id": "A" }, metadata, (d) => {
|
|
21
|
-
console.log(d);
|
|
22
|
-
});
|
|
23
|
-
})();
|
|
24
|
-
}
|
|
25
|
-
catch (e) {
|
|
26
|
-
console.log(e);
|
|
27
|
-
}
|
|
28
|
-
//# sourceMappingURL=getProtoObj.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"getProtoObj.js","sourceRoot":"","sources":["../../examples/getProtoObj.ts"],"names":[],"mappings":";;AACA,0DAAuD;AACvD,sCAAsC;AAMtC,IAAI;IACA,CAAC,KAAK,IAAI,EAAE;QACR,MAAM,CAAC,GAAG,IAAI,+BAAc,CAAC,cAAc,EAAE,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC;QAGhF,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;QAG5D,MAAM,aAAa,GAAG,UAAU,CAAC,gBAAgB,CAAC;YAC9C,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,MAAM;YACb,KAAK,EAAE,MAAM;SAChB,CAAC,CAAC;QAGH,IAAI,KAAK,GAAG,IAAI,aAAa,CAAC,OAAO,CAAC,aAAa,CAC/C,cAAc,EACd,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CACpC,CAAC;QAGF,IAAI,QAAQ,GAAG,IAAI,IAAI,CAAC,QAAQ,EAAE,CAAC;QACnC,QAAQ,CAAC,GAAG,CAAC,eAAe,EAAE,KAAK,CAAC,CAAC;QAGrC,KAAK,CAAC,GAAG,CAAC,EAAC,SAAS,EAAC,GAAG,EAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAC,EAAE;YACtC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACnB,CAAC,CAAC,CAAC;QAEH,KAAK,CAAC,GAAG,CAAC,EAAC,SAAS,EAAC,GAAG,EAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAC,EAAE;YACtC,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;QACnB,CAAC,CAAC,CAAC;IAEP,CAAC,CAAC,EAAE,CAAC;CAER;AAAA,OAAM,CAAC,EAAC;IACL,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAClB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const GrpcReflection_1 = require("../src/GrpcReflection");
|
|
4
|
-
const grpc = require("@grpc/grpc-js");
|
|
5
|
-
try {
|
|
6
|
-
(async () => {
|
|
7
|
-
const c = new GrpcReflection_1.GrpcReflection('0.0.0.0:3000', grpc.credentials.createInsecure());
|
|
8
|
-
console.log(await c.listServices());
|
|
9
|
-
})();
|
|
10
|
-
}
|
|
11
|
-
catch (e) {
|
|
12
|
-
console.log(e);
|
|
13
|
-
}
|
|
14
|
-
//# sourceMappingURL=listServices.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"listServices.js","sourceRoot":"","sources":["../../examples/listServices.ts"],"names":[],"mappings":";;AACA,0DAAuD;AAEvD,sCAAsC;AAKtC,IAAI;IACA,CAAC,KAAK,IAAI,EAAE;QACR,MAAM,CAAC,GAAG,IAAI,+BAAc,CAAC,cAAc,EAAE,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC;QAChF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC,YAAY,EAAE,CAAC,CAAC;IACxC,CAAC,CAAC,EAAE,CAAC;CAER;AAAA,OAAM,CAAC,EAAC;IACL,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAClB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const GrpcReflection_1 = require("../src/GrpcReflection");
|
|
4
|
-
const grpc = require("@grpc/grpc-js");
|
|
5
|
-
try {
|
|
6
|
-
(async () => {
|
|
7
|
-
const c = new GrpcReflection_1.GrpcReflection('0.0.0.0:3000', grpc.credentials.createInsecure());
|
|
8
|
-
const descriptor = await c.getDescriptorBySymbol('apidata');
|
|
9
|
-
const descriptorMessage = descriptor.getDescriptorMessage();
|
|
10
|
-
console.log(descriptorMessage);
|
|
11
|
-
const packageDefinition = descriptor.getPackageDefinition({
|
|
12
|
-
keepCase: true,
|
|
13
|
-
enums: String
|
|
14
|
-
});
|
|
15
|
-
const buffer = descriptor.getBuffer();
|
|
16
|
-
})();
|
|
17
|
-
}
|
|
18
|
-
catch (e) {
|
|
19
|
-
console.log(e);
|
|
20
|
-
}
|
|
21
|
-
//# sourceMappingURL=otherMethods.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"otherMethods.js","sourceRoot":"","sources":["../../examples/otherMethods.ts"],"names":[],"mappings":";;AACA,0DAAuD;AACvD,sCAAsC;AAKtC,IAAI;IACA,CAAC,KAAK,IAAI,EAAE;QACR,MAAM,CAAC,GAAG,IAAI,+BAAc,CAAC,cAAc,EAAE,IAAI,CAAC,WAAW,CAAC,cAAc,EAAE,CAAC,CAAC;QAGhF,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,qBAAqB,CAAC,SAAS,CAAC,CAAC;QAG5D,MAAM,iBAAiB,GAAG,UAAU,CAAC,oBAAoB,EAAE,CAAC;QAC5D,OAAO,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;QAG/B,MAAM,iBAAiB,GAAG,UAAU,CAAC,oBAAoB,CAAC;YACtD,QAAQ,EAAE,IAAI;YACd,KAAK,EAAE,MAAM;SAChB,CAAC,CAAC;QAIH,MAAM,MAAM,GAAG,UAAU,CAAC,SAAS,EAAE,CAAC;IAG1C,CAAC,CAAC,EAAE,CAAC;CAER;AAAA,OAAM,CAAC,EAAC;IACL,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAClB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Descriptor.js","sourceRoot":"","sources":["../../src/Descriptor.ts"],"names":[],"mappings":";;;AACA,0DAEmC;AACnC,kDAAkD;AAClD,sCAAsC;AAEtC,MAAa,UAAU;IAInB,YAAY,cAAoB;QAC5B,IAAI,CAAC,IAAI,GAAG,cAAc,CAAC;IAC/B,CAAC;IAED,iBAAiB;QACb,OAAO,IAAI,CAAC,IAAI,CAAC;IACrB,CAAC;IAED,oBAAoB,CAAC,eAAuB,QAAQ;QAChD,OAAO,IAAI,CAAC,IAAI,CAAC,YAAY,CAAC,YAAY,CAAC,CAAC;IAChD,CAAC;IAED,SAAS,CAAC,eAAuB,QAAQ;QACrC,OAAO,8BAAiB,CAAC,MAAM,CAAC,IAAI,CAAC,oBAAoB,CAAC,YAAY,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACtF,CAAC;IAED,oBAAoB,CAAC,OAA6B,EAAE,eAAuB,QAAQ;QAC/E,OAAO,WAAW,CAAC,+BAA+B,CAAC,IAAI,CAAC,oBAAoB,CAAC,YAAY,CAAC,EAAE,OAAO,CAAC,CAAC;IACzG,CAAC;IAED,gBAAgB,CAAC,OAA6B;QAC1C,OAAO,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,oBAAoB,CAAC,OAAO,CAAC,CAAC,CAAC;IAC1E,CAAC;CAGJ;AA7BD,gCA6BC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as grpc from '@grpc/grpc-js';
|
|
2
|
-
import { Descriptor } from "./Descriptor";
|
|
3
|
-
export declare class GrpcReflection {
|
|
4
|
-
private reflectionClient;
|
|
5
|
-
constructor(host: string, credentials: grpc.ChannelCredentials);
|
|
6
|
-
listServices(): Promise<any>;
|
|
7
|
-
getDescriptorBySymbol(symbol: string): Promise<Descriptor>;
|
|
8
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GrpcReflection = void 0;
|
|
4
|
-
const grpcReflection = require("grpc-reflection-js");
|
|
5
|
-
const Descriptor_1 = require("./Descriptor");
|
|
6
|
-
class GrpcReflection {
|
|
7
|
-
constructor(host, credentials) {
|
|
8
|
-
this.reflectionClient = new grpcReflection.Client(host, credentials);
|
|
9
|
-
}
|
|
10
|
-
async listServices() {
|
|
11
|
-
return await this.reflectionClient.listServices();
|
|
12
|
-
}
|
|
13
|
-
async getDescriptorBySymbol(symbol) {
|
|
14
|
-
return new Descriptor_1.Descriptor(await this.reflectionClient.fileContainingSymbol(symbol));
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
exports.GrpcReflection = GrpcReflection;
|
|
18
|
-
//# sourceMappingURL=GrpcReflection.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GrpcReflection.js","sourceRoot":"","sources":["../../src/GrpcReflection.ts"],"names":[],"mappings":";;;AACA,qDAAqD;AACrD,6CAAwC;AAExC,MAAa,cAAc;IAIvB,YAAY,IAAY,EAAE,WAAoC;QAC1D,IAAI,CAAC,gBAAgB,GAAG,IAAI,cAAc,CAAC,MAAM,CAC7C,IAAI,EACJ,WAAW,CACd,CAAC;IACN,CAAC;IAED,KAAK,CAAC,YAAY;QACd,OAAO,MAAM,IAAI,CAAC,gBAAgB,CAAC,YAAY,EAAE,CAAC;IACtD,CAAC;IAED,KAAK,CAAC,qBAAqB,CAAC,MAAc;QACtC,OAAO,IAAI,uBAAU,CAAC,MAAM,IAAI,CAAC,gBAAgB,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC,CAAC;IACpF,CAAC;CAEJ;AAnBD,wCAmBC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ReflectionException.js","sourceRoot":"","sources":["../../src/ReflectionException.ts"],"names":[],"mappings":";;;AAAA,MAAa,mBAAoB,SAAQ,KAAK;CAAE;AAAhD,kDAAgD"}
|
package/dist/src/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B;AAC7B,mDAAiC;AACjC,wDAAsC"}
|
|
File without changes
|
|
File without changes
|