@rsdk/builtin-contract 3.5.0 → 4.0.0-next.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/README.md +14 -7
- package/dist/descriptor.d.ts +2 -0
- package/dist/descriptor.js +5 -0
- package/dist/descriptor.js.map +1 -0
- package/dist/google/protobuf/struct.d.ts +24 -271
- package/dist/google/protobuf/struct.js +49 -43
- package/dist/google/protobuf/struct.js.map +1 -1
- package/dist/grpc/error/v1/error.d.ts +14 -34
- package/dist/grpc/error/v1/error.js +16 -7
- package/dist/grpc/error/v1/error.js.map +1 -1
- package/dist/grpc/health/v1/health.d.ts +31 -61
- package/dist/grpc/health/v1/health.js +12 -21
- package/dist/grpc/health/v1/health.js.map +1 -1
- package/dist/grpc/metrics/v1/metrics.d.ts +25 -25
- package/dist/grpc/metrics/v1/metrics.js +6 -2
- package/dist/grpc/metrics/v1/metrics.js.map +1 -1
- package/dist/grpc/reflection/v1/reflection.d.ts +277 -0
- package/dist/grpc/reflection/v1/reflection.js +818 -0
- package/dist/grpc/reflection/v1/reflection.js.map +1 -0
- package/dist/grpc/reflection/v1alpha/reflection.d.ts +277 -0
- package/dist/grpc/reflection/v1alpha/reflection.js +818 -0
- package/dist/grpc/reflection/v1alpha/reflection.js.map +1 -0
- package/dist/grpc.error.v1.js +2 -2
- package/dist/grpc.health.v1.d.ts +23 -34
- package/dist/grpc.health.v1.js +4 -2
- package/dist/grpc.health.v1.js.map +1 -1
- package/dist/grpc.metrics.v1.d.ts +10 -11
- package/dist/grpc.metrics.v1.js +4 -2
- package/dist/grpc.metrics.v1.js.map +1 -1
- package/dist/grpc.reflection.v1.d.ts +273 -0
- package/dist/grpc.reflection.v1.js +75 -0
- package/dist/grpc.reflection.v1.js.map +1 -0
- package/dist/grpc.reflection.v1alpha.d.ts +273 -0
- package/dist/grpc.reflection.v1alpha.js +75 -0
- package/dist/grpc.reflection.v1alpha.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.google.d.ts +1 -0
- package/dist/index.google.js +29 -0
- package/dist/index.google.js.map +1 -0
- package/dist/index.google.protobuf.d.ts +1 -0
- package/dist/index.google.protobuf.js +19 -0
- package/dist/index.google.protobuf.js.map +1 -0
- package/dist/index.grpc.d.ts +4 -0
- package/dist/index.grpc.error.d.ts +1 -0
- package/dist/index.grpc.error.js +29 -0
- package/dist/index.grpc.error.js.map +1 -0
- package/dist/index.grpc.error.v1.d.ts +1 -0
- package/dist/index.grpc.error.v1.js +18 -0
- package/dist/index.grpc.error.v1.js.map +1 -0
- package/dist/index.grpc.health.d.ts +1 -0
- package/dist/index.grpc.health.js +29 -0
- package/dist/index.grpc.health.js.map +1 -0
- package/dist/index.grpc.health.v1.d.ts +1 -0
- package/dist/index.grpc.health.v1.js +18 -0
- package/dist/index.grpc.health.v1.js.map +1 -0
- package/dist/index.grpc.js +32 -0
- package/dist/index.grpc.js.map +1 -0
- package/dist/index.grpc.metrics.d.ts +1 -0
- package/dist/index.grpc.metrics.js +29 -0
- package/dist/index.grpc.metrics.js.map +1 -0
- package/dist/index.grpc.metrics.v1.d.ts +1 -0
- package/dist/index.grpc.metrics.v1.js +18 -0
- package/dist/index.grpc.metrics.v1.js.map +1 -0
- package/dist/index.grpc.reflection.d.ts +2 -0
- package/dist/index.grpc.reflection.js +30 -0
- package/dist/index.grpc.reflection.js.map +1 -0
- package/dist/index.grpc.reflection.v1.d.ts +1 -0
- package/dist/index.grpc.reflection.v1.js +18 -0
- package/dist/index.grpc.reflection.v1.js.map +1 -0
- package/dist/index.grpc.reflection.v1alpha.d.ts +1 -0
- package/dist/index.grpc.reflection.v1alpha.js +18 -0
- package/dist/index.grpc.reflection.v1alpha.js.map +1 -0
- package/dist/index.js +30 -0
- package/dist/index.js.map +1 -0
- package/docs/README.md +391 -0
- package/docs/schemas/ServerReflection.dot +26 -0
- package/docs/schemas/ServerReflection.png +0 -0
- package/docs/schemas/ServerReflection.svg +305 -0
- package/package.json +5 -4
- package/ppm.json +1 -1
- package/proto/grpc/reflection/v1/reflection.proto +155 -0
- package/proto/grpc/reflection/v1alpha/reflection.proto +145 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
20
|
+
if (mod && mod.__esModule) return mod;
|
|
21
|
+
var result = {};
|
|
22
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
23
|
+
__setModuleDefault(result, mod);
|
|
24
|
+
return result;
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.reflection = exports.metrics = exports.health = exports.error = void 0;
|
|
28
|
+
exports.error = __importStar(require("./index.grpc.error"));
|
|
29
|
+
exports.health = __importStar(require("./index.grpc.health"));
|
|
30
|
+
exports.metrics = __importStar(require("./index.grpc.metrics"));
|
|
31
|
+
exports.reflection = __importStar(require("./index.grpc.reflection"));
|
|
32
|
+
//# sourceMappingURL=index.grpc.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.grpc.js","sourceRoot":"","sources":["../.generated/index.grpc.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;AAEpB,4DAA4C;AAC5C,8DAA8C;AAC9C,gEAAgD;AAChD,sEAAsD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as v1 from "./index.grpc.metrics.v1";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
20
|
+
if (mod && mod.__esModule) return mod;
|
|
21
|
+
var result = {};
|
|
22
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
23
|
+
__setModuleDefault(result, mod);
|
|
24
|
+
return result;
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.v1 = void 0;
|
|
28
|
+
exports.v1 = __importStar(require("./index.grpc.metrics.v1"));
|
|
29
|
+
//# sourceMappingURL=index.grpc.metrics.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.grpc.metrics.js","sourceRoot":"","sources":["../.generated/index.grpc.metrics.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;AAEpB,8DAA8C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./grpc.metrics.v1";
|
|
@@ -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("./grpc.metrics.v1"), exports);
|
|
18
|
+
//# sourceMappingURL=index.grpc.metrics.v1.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.grpc.metrics.v1.js","sourceRoot":"","sources":["../.generated/index.grpc.metrics.v1.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
20
|
+
if (mod && mod.__esModule) return mod;
|
|
21
|
+
var result = {};
|
|
22
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
23
|
+
__setModuleDefault(result, mod);
|
|
24
|
+
return result;
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.v1alpha = exports.v1 = void 0;
|
|
28
|
+
exports.v1 = __importStar(require("./index.grpc.reflection.v1"));
|
|
29
|
+
exports.v1alpha = __importStar(require("./index.grpc.reflection.v1alpha"));
|
|
30
|
+
//# sourceMappingURL=index.grpc.reflection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.grpc.reflection.js","sourceRoot":"","sources":["../.generated/index.grpc.reflection.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;AAEpB,iEAAiD;AACjD,2EAA2D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./grpc.reflection.v1";
|
|
@@ -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("./grpc.reflection.v1"), exports);
|
|
18
|
+
//# sourceMappingURL=index.grpc.reflection.v1.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.grpc.reflection.v1.js","sourceRoot":"","sources":["../.generated/index.grpc.reflection.v1.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./grpc.reflection.v1alpha";
|
|
@@ -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("./grpc.reflection.v1alpha"), exports);
|
|
18
|
+
//# sourceMappingURL=index.grpc.reflection.v1alpha.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.grpc.reflection.v1alpha.js","sourceRoot":"","sources":["../.generated/index.grpc.reflection.v1alpha.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
20
|
+
if (mod && mod.__esModule) return mod;
|
|
21
|
+
var result = {};
|
|
22
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
23
|
+
__setModuleDefault(result, mod);
|
|
24
|
+
return result;
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.grpc = exports.google = void 0;
|
|
28
|
+
exports.google = __importStar(require("./index.google"));
|
|
29
|
+
exports.grpc = __importStar(require("./index.grpc"));
|
|
30
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../.generated/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;AAEpB,yDAAyC;AACzC,qDAAqC"}
|
package/docs/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
## Table of Contents
|
|
5
5
|
|
|
6
|
+
- [grpc/error/v1/error.proto](#grpc_error_v1_error-proto)
|
|
7
|
+
- [Status](#grpc-error-v1-Status)
|
|
8
|
+
|
|
6
9
|
- [grpc/health/v1/health.proto](#grpc_health_v1_health-proto)
|
|
7
10
|
- [HealthCheckRequest](#grpc-health-v1-HealthCheckRequest)
|
|
8
11
|
- [HealthCheckResponse](#grpc-health-v1-HealthCheckResponse)
|
|
@@ -17,10 +20,68 @@
|
|
|
17
20
|
|
|
18
21
|
- [Metrics](#grpc-metrics-v1-Metrics)
|
|
19
22
|
|
|
23
|
+
- [grpc/reflection/v1/reflection.proto](#grpc_reflection_v1_reflection-proto)
|
|
24
|
+
- [ErrorResponse](#grpc-reflection-v1-ErrorResponse)
|
|
25
|
+
- [ExtensionNumberResponse](#grpc-reflection-v1-ExtensionNumberResponse)
|
|
26
|
+
- [ExtensionRequest](#grpc-reflection-v1-ExtensionRequest)
|
|
27
|
+
- [FileDescriptorResponse](#grpc-reflection-v1-FileDescriptorResponse)
|
|
28
|
+
- [ListServiceResponse](#grpc-reflection-v1-ListServiceResponse)
|
|
29
|
+
- [ServerReflectionRequest](#grpc-reflection-v1-ServerReflectionRequest)
|
|
30
|
+
- [ServerReflectionResponse](#grpc-reflection-v1-ServerReflectionResponse)
|
|
31
|
+
- [ServiceResponse](#grpc-reflection-v1-ServiceResponse)
|
|
32
|
+
|
|
33
|
+
- [ServerReflection](#grpc-reflection-v1-ServerReflection)
|
|
34
|
+
|
|
35
|
+
- [grpc/reflection/v1alpha/reflection.proto](#grpc_reflection_v1alpha_reflection-proto)
|
|
36
|
+
- [ErrorResponse](#grpc-reflection-v1alpha-ErrorResponse)
|
|
37
|
+
- [ExtensionNumberResponse](#grpc-reflection-v1alpha-ExtensionNumberResponse)
|
|
38
|
+
- [ExtensionRequest](#grpc-reflection-v1alpha-ExtensionRequest)
|
|
39
|
+
- [FileDescriptorResponse](#grpc-reflection-v1alpha-FileDescriptorResponse)
|
|
40
|
+
- [ListServiceResponse](#grpc-reflection-v1alpha-ListServiceResponse)
|
|
41
|
+
- [ServerReflectionRequest](#grpc-reflection-v1alpha-ServerReflectionRequest)
|
|
42
|
+
- [ServerReflectionResponse](#grpc-reflection-v1alpha-ServerReflectionResponse)
|
|
43
|
+
- [ServiceResponse](#grpc-reflection-v1alpha-ServiceResponse)
|
|
44
|
+
|
|
45
|
+
- [ServerReflection](#grpc-reflection-v1alpha-ServerReflection)
|
|
46
|
+
|
|
20
47
|
- [Scalar Value Types](#scalar-value-types)
|
|
21
48
|
|
|
22
49
|
|
|
23
50
|
|
|
51
|
+
<a name="grpc_error_v1_error-proto"></a>
|
|
52
|
+
<p align="right"><a href="#top">Top</a></p>
|
|
53
|
+
|
|
54
|
+
## grpc/error/v1/error.proto
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
<a name="grpc-error-v1-Status"></a>
|
|
59
|
+
|
|
60
|
+
### Status
|
|
61
|
+
Status
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
| Field | Type | Label | Description |
|
|
65
|
+
| ----- | ---- | ----- | ----------- |
|
|
66
|
+
| code | [int32](#int32) | | The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code]. |
|
|
67
|
+
| message | [string](#string) | | A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client. |
|
|
68
|
+
| details | [google.protobuf.Struct](#google-protobuf-Struct) | optional | A list of messages that carry the error details. There is a common set of message types for APIs to use. |
|
|
69
|
+
| exception_code | [string](#string) | optional | exception_code https://github.com/R-Vision/rsdk/blob/078fad7c8fdbb419f3a351e4da6792e163c52cf5/packages/core/src/exceptions/base/platform-exception.absract.ts#L7 |
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
24
85
|
<a name="grpc_health_v1_health-proto"></a>
|
|
25
86
|
<p align="right"><a href="#top">Top</a></p>
|
|
26
87
|
|
|
@@ -145,6 +206,336 @@ buf:lint:ignore SERVICE_SUFFIX
|
|
|
145
206
|
|
|
146
207
|
|
|
147
208
|
|
|
209
|
+
<a name="grpc_reflection_v1_reflection-proto"></a>
|
|
210
|
+
<p align="right"><a href="#top">Top</a></p>
|
|
211
|
+
|
|
212
|
+
## grpc/reflection/v1/reflection.proto
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
<a name="grpc-reflection-v1-ErrorResponse"></a>
|
|
217
|
+
|
|
218
|
+
### ErrorResponse
|
|
219
|
+
The error code and error message sent by the server when an error occurs.
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
| Field | Type | Label | Description |
|
|
223
|
+
| ----- | ---- | ----- | ----------- |
|
|
224
|
+
| error_code | [int32](#int32) | | This field uses the error codes defined in grpc::StatusCode. |
|
|
225
|
+
| error_message | [string](#string) | | error_message |
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
<a name="grpc-reflection-v1-ExtensionNumberResponse"></a>
|
|
233
|
+
|
|
234
|
+
### ExtensionNumberResponse
|
|
235
|
+
A list of extension numbers sent by the server answering
|
|
236
|
+
all_extension_numbers_of_type request.
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
| Field | Type | Label | Description |
|
|
240
|
+
| ----- | ---- | ----- | ----------- |
|
|
241
|
+
| base_type_name | [string](#string) | | Full name of the base type, including the package name. The format is <package>.<type> |
|
|
242
|
+
| extension_number | [int32](#int32) | repeated | extension_number |
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
<a name="grpc-reflection-v1-ExtensionRequest"></a>
|
|
250
|
+
|
|
251
|
+
### ExtensionRequest
|
|
252
|
+
The type name and extension number sent by the client when requesting
|
|
253
|
+
file_containing_extension.
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
| Field | Type | Label | Description |
|
|
257
|
+
| ----- | ---- | ----- | ----------- |
|
|
258
|
+
| containing_type | [string](#string) | | Fully-qualified type name. The format should be <package>.<type> |
|
|
259
|
+
| extension_number | [int32](#int32) | | extension_number |
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
<a name="grpc-reflection-v1-FileDescriptorResponse"></a>
|
|
267
|
+
|
|
268
|
+
### FileDescriptorResponse
|
|
269
|
+
Serialized FileDescriptorProto messages sent by the server answering
|
|
270
|
+
a file_by_filename, file_containing_symbol, or file_containing_extension
|
|
271
|
+
request.
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
| Field | Type | Label | Description |
|
|
275
|
+
| ----- | ---- | ----- | ----------- |
|
|
276
|
+
| file_descriptor_proto | [bytes](#bytes) | repeated | Serialized FileDescriptorProto messages. We avoid taking a dependency on descriptor.proto, which uses proto2 only features, by making them opaque bytes instead. |
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
<a name="grpc-reflection-v1-ListServiceResponse"></a>
|
|
284
|
+
|
|
285
|
+
### ListServiceResponse
|
|
286
|
+
A list of ServiceResponse sent by the server answering list_services request.
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
| Field | Type | Label | Description |
|
|
290
|
+
| ----- | ---- | ----- | ----------- |
|
|
291
|
+
| service | [ServiceResponse](#grpc-reflection-v1-ServiceResponse) | repeated | The information of each service may be expanded in the future, so we use ServiceResponse message to encapsulate it. |
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
<a name="grpc-reflection-v1-ServerReflectionRequest"></a>
|
|
299
|
+
|
|
300
|
+
### ServerReflectionRequest
|
|
301
|
+
The message sent by the client when calling ServerReflectionInfo method.
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
| Field | Type | Label | Description |
|
|
305
|
+
| ----- | ---- | ----- | ----------- |
|
|
306
|
+
| host | [string](#string) | | host |
|
|
307
|
+
| file_by_filename | [string](#string) | | Find a proto file by the file name. |
|
|
308
|
+
| file_containing_symbol | [string](#string) | | Find the proto file that declares the given fully-qualified symbol name. This field should be a fully-qualified symbol name (e.g. <package>.<service>[.<method>] or <package>.<type>). |
|
|
309
|
+
| file_containing_extension | [ExtensionRequest](#grpc-reflection-v1-ExtensionRequest) | | Find the proto file which defines an extension extending the given message type with the given field number. |
|
|
310
|
+
| all_extension_numbers_of_type | [string](#string) | | Finds the tag numbers used by all known extensions of the given message type, and appends them to ExtensionNumberResponse in an undefined order. Its corresponding method is best-effort: it's not guaranteed that the reflection service will implement this method, and it's not guaranteed that this method will provide all extensions. Returns StatusCode::UNIMPLEMENTED if it's not implemented. This field should be a fully-qualified type name. The format is <package>.<type> |
|
|
311
|
+
| list_services | [string](#string) | | List the full names of registered services. The content will not be checked. |
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
<a name="grpc-reflection-v1-ServerReflectionResponse"></a>
|
|
319
|
+
|
|
320
|
+
### ServerReflectionResponse
|
|
321
|
+
The message sent by the server to answer ServerReflectionInfo method.
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
| Field | Type | Label | Description |
|
|
325
|
+
| ----- | ---- | ----- | ----------- |
|
|
326
|
+
| valid_host | [string](#string) | | valid_host |
|
|
327
|
+
| original_request | [ServerReflectionRequest](#grpc-reflection-v1-ServerReflectionRequest) | | original_request |
|
|
328
|
+
| file_descriptor_response | [FileDescriptorResponse](#grpc-reflection-v1-FileDescriptorResponse) | | This message is used to answer file_by_filename, file_containing_symbol, file_containing_extension requests with transitive dependencies. As the repeated label is not allowed in oneof fields, we use a FileDescriptorResponse message to encapsulate the repeated fields. The reflection service is allowed to avoid sending FileDescriptorProtos that were previously sent in response to earlier requests in the stream. |
|
|
329
|
+
| all_extension_numbers_response | [ExtensionNumberResponse](#grpc-reflection-v1-ExtensionNumberResponse) | | This message is used to answer all_extension_numbers_of_type requests. |
|
|
330
|
+
| list_services_response | [ListServiceResponse](#grpc-reflection-v1-ListServiceResponse) | | This message is used to answer list_services requests. |
|
|
331
|
+
| error_response | [ErrorResponse](#grpc-reflection-v1-ErrorResponse) | | This message is used when an error occurs. |
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
<a name="grpc-reflection-v1-ServiceResponse"></a>
|
|
339
|
+
|
|
340
|
+
### ServiceResponse
|
|
341
|
+
The information of a single service used by ListServiceResponse to answer
|
|
342
|
+
list_services request.
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
| Field | Type | Label | Description |
|
|
346
|
+
| ----- | ---- | ----- | ----------- |
|
|
347
|
+
| name | [string](#string) | | Full name of a registered service, including its package name. The format is <package>.<service> |
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
<a name="grpc-reflection-v1-ServerReflection"></a>
|
|
361
|
+
|
|
362
|
+
### ServerReflection
|
|
363
|
+
ServerReflection
|
|
364
|
+
buf:lint:ignore SERVICE_SUFFIX
|
|
365
|
+
|
|
366
|
+
| Method Name | Request Type | Response Type | Description |
|
|
367
|
+
| ----------- | ------------ | ------------- | ------------|
|
|
368
|
+
| ServerReflectionInfo | [ServerReflectionRequest](#grpc-reflection-v1-ServerReflectionRequest) stream | [ServerReflectionResponse](#grpc-reflection-v1-ServerReflectionResponse) stream | The reflection service is structured as a bidirectional stream, ensuring all related requests go to a single server. buf:lint:ignore RPC_REQUEST_STANDARD_NAME buf:lint:ignore RPC_RESPONSE_STANDARD_NAME |
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
<a name="grpc_reflection_v1alpha_reflection-proto"></a>
|
|
375
|
+
<p align="right"><a href="#top">Top</a></p>
|
|
376
|
+
|
|
377
|
+
## grpc/reflection/v1alpha/reflection.proto
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
<a name="grpc-reflection-v1alpha-ErrorResponse"></a>
|
|
382
|
+
|
|
383
|
+
### ErrorResponse
|
|
384
|
+
The error code and error message sent by the server when an error occurs.
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
| Field | Type | Label | Description |
|
|
388
|
+
| ----- | ---- | ----- | ----------- |
|
|
389
|
+
| error_code | [int32](#int32) | | This field uses the error codes defined in grpc::StatusCode. |
|
|
390
|
+
| error_message | [string](#string) | | error_message |
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
<a name="grpc-reflection-v1alpha-ExtensionNumberResponse"></a>
|
|
398
|
+
|
|
399
|
+
### ExtensionNumberResponse
|
|
400
|
+
A list of extension numbers sent by the server answering
|
|
401
|
+
all_extension_numbers_of_type request.
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
| Field | Type | Label | Description |
|
|
405
|
+
| ----- | ---- | ----- | ----------- |
|
|
406
|
+
| base_type_name | [string](#string) | | Full name of the base type, including the package name. The format is <package>.<type> |
|
|
407
|
+
| extension_number | [int32](#int32) | repeated | extension_number |
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
<a name="grpc-reflection-v1alpha-ExtensionRequest"></a>
|
|
415
|
+
|
|
416
|
+
### ExtensionRequest
|
|
417
|
+
The type name and extension number sent by the client when requesting
|
|
418
|
+
file_containing_extension.
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
| Field | Type | Label | Description |
|
|
422
|
+
| ----- | ---- | ----- | ----------- |
|
|
423
|
+
| containing_type | [string](#string) | | Fully-qualified type name. The format should be <package>.<type> |
|
|
424
|
+
| extension_number | [int32](#int32) | | extension_number |
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
<a name="grpc-reflection-v1alpha-FileDescriptorResponse"></a>
|
|
432
|
+
|
|
433
|
+
### FileDescriptorResponse
|
|
434
|
+
Serialized FileDescriptorProto messages sent by the server answering
|
|
435
|
+
a file_by_filename, file_containing_symbol, or file_containing_extension
|
|
436
|
+
request.
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
| Field | Type | Label | Description |
|
|
440
|
+
| ----- | ---- | ----- | ----------- |
|
|
441
|
+
| file_descriptor_proto | [bytes](#bytes) | repeated | Serialized FileDescriptorProto messages. We avoid taking a dependency on descriptor.proto, which uses proto2 only features, by making them opaque bytes instead. |
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
<a name="grpc-reflection-v1alpha-ListServiceResponse"></a>
|
|
449
|
+
|
|
450
|
+
### ListServiceResponse
|
|
451
|
+
A list of ServiceResponse sent by the server answering list_services request.
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
| Field | Type | Label | Description |
|
|
455
|
+
| ----- | ---- | ----- | ----------- |
|
|
456
|
+
| service | [ServiceResponse](#grpc-reflection-v1alpha-ServiceResponse) | repeated | The information of each service may be expanded in the future, so we use ServiceResponse message to encapsulate it. |
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
<a name="grpc-reflection-v1alpha-ServerReflectionRequest"></a>
|
|
464
|
+
|
|
465
|
+
### ServerReflectionRequest
|
|
466
|
+
The message sent by the client when calling ServerReflectionInfo method.
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
| Field | Type | Label | Description |
|
|
470
|
+
| ----- | ---- | ----- | ----------- |
|
|
471
|
+
| host | [string](#string) | | host |
|
|
472
|
+
| file_by_filename | [string](#string) | | Find a proto file by the file name. |
|
|
473
|
+
| file_containing_symbol | [string](#string) | | Find the proto file that declares the given fully-qualified symbol name. This field should be a fully-qualified symbol name (e.g. <package>.<service>[.<method>] or <package>.<type>). |
|
|
474
|
+
| file_containing_extension | [ExtensionRequest](#grpc-reflection-v1alpha-ExtensionRequest) | | Find the proto file which defines an extension extending the given message type with the given field number. |
|
|
475
|
+
| all_extension_numbers_of_type | [string](#string) | | Finds the tag numbers used by all known extensions of the given message type, and appends them to ExtensionNumberResponse in an undefined order. Its corresponding method is best-effort: it's not guaranteed that the reflection service will implement this method, and it's not guaranteed that this method will provide all extensions. Returns StatusCode::UNIMPLEMENTED if it's not implemented. This field should be a fully-qualified type name. The format is <package>.<type> |
|
|
476
|
+
| list_services | [string](#string) | | List the full names of registered services. The content will not be checked. |
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
<a name="grpc-reflection-v1alpha-ServerReflectionResponse"></a>
|
|
484
|
+
|
|
485
|
+
### ServerReflectionResponse
|
|
486
|
+
The message sent by the server to answer ServerReflectionInfo method.
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
| Field | Type | Label | Description |
|
|
490
|
+
| ----- | ---- | ----- | ----------- |
|
|
491
|
+
| valid_host | [string](#string) | | valid_host |
|
|
492
|
+
| original_request | [ServerReflectionRequest](#grpc-reflection-v1alpha-ServerReflectionRequest) | | original_request |
|
|
493
|
+
| file_descriptor_response | [FileDescriptorResponse](#grpc-reflection-v1alpha-FileDescriptorResponse) | | This message is used to answer file_by_filename, file_containing_symbol, file_containing_extension requests with transitive dependencies. As the repeated label is not allowed in oneof fields, we use a FileDescriptorResponse message to encapsulate the repeated fields. The reflection service is allowed to avoid sending FileDescriptorProtos that were previously sent in response to earlier requests in the stream. |
|
|
494
|
+
| all_extension_numbers_response | [ExtensionNumberResponse](#grpc-reflection-v1alpha-ExtensionNumberResponse) | | This message is used to answer all_extension_numbers_of_type requst. |
|
|
495
|
+
| list_services_response | [ListServiceResponse](#grpc-reflection-v1alpha-ListServiceResponse) | | This message is used to answer list_services request. |
|
|
496
|
+
| error_response | [ErrorResponse](#grpc-reflection-v1alpha-ErrorResponse) | | This message is used when an error occurs. |
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
<a name="grpc-reflection-v1alpha-ServiceResponse"></a>
|
|
504
|
+
|
|
505
|
+
### ServiceResponse
|
|
506
|
+
The information of a single service used by ListServiceResponse to answer
|
|
507
|
+
list_services request.
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
| Field | Type | Label | Description |
|
|
511
|
+
| ----- | ---- | ----- | ----------- |
|
|
512
|
+
| name | [string](#string) | | Full name of a registered service, including its package name. The format is <package>.<service> |
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
<a name="grpc-reflection-v1alpha-ServerReflection"></a>
|
|
526
|
+
|
|
527
|
+
### ServerReflection
|
|
528
|
+
ServerReflection
|
|
529
|
+
buf:lint:ignore SERVICE_SUFFIX
|
|
530
|
+
|
|
531
|
+
| Method Name | Request Type | Response Type | Description |
|
|
532
|
+
| ----------- | ------------ | ------------- | ------------|
|
|
533
|
+
| ServerReflectionInfo | [ServerReflectionRequest](#grpc-reflection-v1alpha-ServerReflectionRequest) stream | [ServerReflectionResponse](#grpc-reflection-v1alpha-ServerReflectionResponse) stream | The reflection service is structured as a bidirectional stream, ensuring all related requests go to a single server. buf:lint:ignore RPC_REQUEST_STANDARD_NAME buf:lint:ignore RPC_RESPONSE_STANDARD_NAME |
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
|
|
148
539
|
## Scalar Value Types
|
|
149
540
|
|
|
150
541
|
| .proto Type | Notes | C++ | Java | Python | Go | C# | PHP | Ruby |
|