@miradorlabs/web-grpc 2.9.0 → 2.11.0
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.
|
@@ -94,6 +94,28 @@ function deserialize_gateway_web_v1_GetDerivedMetricResponse(buffer_arg) {
|
|
|
94
94
|
return proto_gateway_web_v1_derived_metric_gateway_pb.GetDerivedMetricResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
+
function serialize_gateway_web_v1_ListDerivedMetricAttributesRequest(arg) {
|
|
98
|
+
if (!(arg instanceof proto_gateway_web_v1_derived_metric_gateway_pb.ListDerivedMetricAttributesRequest)) {
|
|
99
|
+
throw new Error('Expected argument of type gateway.web.v1.ListDerivedMetricAttributesRequest');
|
|
100
|
+
}
|
|
101
|
+
return Buffer.from(arg.serializeBinary());
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
function deserialize_gateway_web_v1_ListDerivedMetricAttributesRequest(buffer_arg) {
|
|
105
|
+
return proto_gateway_web_v1_derived_metric_gateway_pb.ListDerivedMetricAttributesRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
function serialize_gateway_web_v1_ListDerivedMetricAttributesResponse(arg) {
|
|
109
|
+
if (!(arg instanceof proto_gateway_web_v1_derived_metric_gateway_pb.ListDerivedMetricAttributesResponse)) {
|
|
110
|
+
throw new Error('Expected argument of type gateway.web.v1.ListDerivedMetricAttributesResponse');
|
|
111
|
+
}
|
|
112
|
+
return Buffer.from(arg.serializeBinary());
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function deserialize_gateway_web_v1_ListDerivedMetricAttributesResponse(buffer_arg) {
|
|
116
|
+
return proto_gateway_web_v1_derived_metric_gateway_pb.ListDerivedMetricAttributesResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
117
|
+
}
|
|
118
|
+
|
|
97
119
|
function serialize_gateway_web_v1_ListDerivedMetricsRequest(arg) {
|
|
98
120
|
if (!(arg instanceof proto_gateway_web_v1_derived_metric_gateway_pb.ListDerivedMetricsRequest)) {
|
|
99
121
|
throw new Error('Expected argument of type gateway.web.v1.ListDerivedMetricsRequest');
|
|
@@ -210,6 +232,19 @@ dryRunDerivedMetric: {
|
|
|
210
232
|
responseSerialize: serialize_gateway_web_v1_DryRunDerivedMetricResponse,
|
|
211
233
|
responseDeserialize: deserialize_gateway_web_v1_DryRunDerivedMetricResponse,
|
|
212
234
|
},
|
|
235
|
+
// The authoring catalog: attribute keys, types and sample values observed on recent finished
|
|
236
|
+
// traces -- trace-level and per-event -- so a builder offers real keys instead of free text.
|
|
237
|
+
listDerivedMetricAttributes: {
|
|
238
|
+
path: '/gateway.web.v1.DerivedMetricGatewayService/ListDerivedMetricAttributes',
|
|
239
|
+
requestStream: false,
|
|
240
|
+
responseStream: false,
|
|
241
|
+
requestType: proto_gateway_web_v1_derived_metric_gateway_pb.ListDerivedMetricAttributesRequest,
|
|
242
|
+
responseType: proto_gateway_web_v1_derived_metric_gateway_pb.ListDerivedMetricAttributesResponse,
|
|
243
|
+
requestSerialize: serialize_gateway_web_v1_ListDerivedMetricAttributesRequest,
|
|
244
|
+
requestDeserialize: deserialize_gateway_web_v1_ListDerivedMetricAttributesRequest,
|
|
245
|
+
responseSerialize: serialize_gateway_web_v1_ListDerivedMetricAttributesResponse,
|
|
246
|
+
responseDeserialize: deserialize_gateway_web_v1_ListDerivedMetricAttributesResponse,
|
|
247
|
+
},
|
|
213
248
|
};
|
|
214
249
|
|
|
215
250
|
exports.DerivedMetricGatewayServiceClient = grpc.makeGenericClientConstructor(DerivedMetricGatewayServiceService, 'DerivedMetricGatewayService');
|