@wundergraph/cosmo-connect 0.82.0 → 0.82.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.
|
@@ -80,7 +80,11 @@ export declare enum Unit {
|
|
|
80
80
|
/**
|
|
81
81
|
* @generated from enum value: TraceID = 6;
|
|
82
82
|
*/
|
|
83
|
-
TraceID = 6
|
|
83
|
+
TraceID = 6,
|
|
84
|
+
/**
|
|
85
|
+
* @generated from enum value: SpanID = 7;
|
|
86
|
+
*/
|
|
87
|
+
SpanID = 7
|
|
84
88
|
}
|
|
85
89
|
/**
|
|
86
90
|
* @generated from enum wg.cosmo.platform.v1.AnalyticsViewFilterOperator
|
|
@@ -3735,6 +3739,14 @@ export declare class GetTraceRequest extends Message<GetTraceRequest> {
|
|
|
3735
3739
|
* @generated from field: string id = 1;
|
|
3736
3740
|
*/
|
|
3737
3741
|
id: string;
|
|
3742
|
+
/**
|
|
3743
|
+
* @generated from field: string span_id = 2;
|
|
3744
|
+
*/
|
|
3745
|
+
spanId: string;
|
|
3746
|
+
/**
|
|
3747
|
+
* @generated from field: string federated_graph_id = 3;
|
|
3748
|
+
*/
|
|
3749
|
+
federatedGraphId: string;
|
|
3738
3750
|
constructor(data?: PartialMessage<GetTraceRequest>);
|
|
3739
3751
|
static readonly runtime: typeof proto3;
|
|
3740
3752
|
static readonly typeName = "wg.cosmo.platform.v1.GetTraceRequest";
|
|
@@ -102,6 +102,10 @@ export var Unit;
|
|
|
102
102
|
* @generated from enum value: TraceID = 6;
|
|
103
103
|
*/
|
|
104
104
|
Unit[Unit["TraceID"] = 6] = "TraceID";
|
|
105
|
+
/**
|
|
106
|
+
* @generated from enum value: SpanID = 7;
|
|
107
|
+
*/
|
|
108
|
+
Unit[Unit["SpanID"] = 7] = "SpanID";
|
|
105
109
|
})(Unit || (Unit = {}));
|
|
106
110
|
// Retrieve enum metadata with: proto3.getEnumType(Unit)
|
|
107
111
|
proto3.util.setEnumType(Unit, "wg.cosmo.platform.v1.Unit", [
|
|
@@ -112,6 +116,7 @@ proto3.util.setEnumType(Unit, "wg.cosmo.platform.v1.Unit", [
|
|
|
112
116
|
{ no: 4, name: "CodeBlock" },
|
|
113
117
|
{ no: 5, name: "StatusCode" },
|
|
114
118
|
{ no: 6, name: "TraceID" },
|
|
119
|
+
{ no: 7, name: "SpanID" },
|
|
115
120
|
]);
|
|
116
121
|
/**
|
|
117
122
|
* @generated from enum wg.cosmo.platform.v1.AnalyticsViewFilterOperator
|
|
@@ -5685,6 +5690,14 @@ export class GetTraceRequest extends Message {
|
|
|
5685
5690
|
* @generated from field: string id = 1;
|
|
5686
5691
|
*/
|
|
5687
5692
|
id = "";
|
|
5693
|
+
/**
|
|
5694
|
+
* @generated from field: string span_id = 2;
|
|
5695
|
+
*/
|
|
5696
|
+
spanId = "";
|
|
5697
|
+
/**
|
|
5698
|
+
* @generated from field: string federated_graph_id = 3;
|
|
5699
|
+
*/
|
|
5700
|
+
federatedGraphId = "";
|
|
5688
5701
|
constructor(data) {
|
|
5689
5702
|
super();
|
|
5690
5703
|
proto3.util.initPartial(data, this);
|
|
@@ -5693,6 +5706,8 @@ export class GetTraceRequest extends Message {
|
|
|
5693
5706
|
static typeName = "wg.cosmo.platform.v1.GetTraceRequest";
|
|
5694
5707
|
static fields = proto3.util.newFieldList(() => [
|
|
5695
5708
|
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5709
|
+
{ no: 2, name: "span_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5710
|
+
{ no: 3, name: "federated_graph_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5696
5711
|
]);
|
|
5697
5712
|
static fromBinary(bytes, options) {
|
|
5698
5713
|
return new GetTraceRequest().fromBinary(bytes, options);
|