@wundergraph/cosmo-connect 0.82.0 → 0.83.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.
|
@@ -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
|
|
@@ -479,6 +483,10 @@ export declare class CheckSubgraphSchemaRequest extends Message<CheckSubgraphSch
|
|
|
479
483
|
* @generated from field: string namespace = 5;
|
|
480
484
|
*/
|
|
481
485
|
namespace: string;
|
|
486
|
+
/**
|
|
487
|
+
* @generated from field: optional bool skip_traffic_check = 6;
|
|
488
|
+
*/
|
|
489
|
+
skipTrafficCheck?: boolean;
|
|
482
490
|
constructor(data?: PartialMessage<CheckSubgraphSchemaRequest>);
|
|
483
491
|
static readonly runtime: typeof proto3;
|
|
484
492
|
static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaRequest";
|
|
@@ -1079,6 +1087,10 @@ export declare class CheckSubgraphSchemaResponse extends Message<CheckSubgraphSc
|
|
|
1079
1087
|
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneErrors = 11;
|
|
1080
1088
|
*/
|
|
1081
1089
|
graphPruneErrors: GraphPruningIssue[];
|
|
1090
|
+
/**
|
|
1091
|
+
* @generated from field: optional bool client_traffic_check_skipped = 12;
|
|
1092
|
+
*/
|
|
1093
|
+
clientTrafficCheckSkipped?: boolean;
|
|
1082
1094
|
constructor(data?: PartialMessage<CheckSubgraphSchemaResponse>);
|
|
1083
1095
|
static readonly runtime: typeof proto3;
|
|
1084
1096
|
static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaResponse";
|
|
@@ -1884,6 +1896,10 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
|
|
|
1884
1896
|
* @generated from field: bool hasGraphPruningErrors = 12;
|
|
1885
1897
|
*/
|
|
1886
1898
|
hasGraphPruningErrors: boolean;
|
|
1899
|
+
/**
|
|
1900
|
+
* @generated from field: bool client_traffic_check_skipped = 13;
|
|
1901
|
+
*/
|
|
1902
|
+
clientTrafficCheckSkipped: boolean;
|
|
1887
1903
|
constructor(data?: PartialMessage<SchemaCheck>);
|
|
1888
1904
|
static readonly runtime: typeof proto3;
|
|
1889
1905
|
static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
|
|
@@ -2116,6 +2132,10 @@ export declare class GetCheckOperationsResponse extends Message<GetCheckOperatio
|
|
|
2116
2132
|
* @generated from field: string created_at = 4;
|
|
2117
2133
|
*/
|
|
2118
2134
|
createdAt: string;
|
|
2135
|
+
/**
|
|
2136
|
+
* @generated from field: bool client_traffic_check_skipped = 5;
|
|
2137
|
+
*/
|
|
2138
|
+
clientTrafficCheckSkipped: boolean;
|
|
2119
2139
|
constructor(data?: PartialMessage<GetCheckOperationsResponse>);
|
|
2120
2140
|
static readonly runtime: typeof proto3;
|
|
2121
2141
|
static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsResponse";
|
|
@@ -3735,6 +3755,14 @@ export declare class GetTraceRequest extends Message<GetTraceRequest> {
|
|
|
3735
3755
|
* @generated from field: string id = 1;
|
|
3736
3756
|
*/
|
|
3737
3757
|
id: string;
|
|
3758
|
+
/**
|
|
3759
|
+
* @generated from field: string span_id = 2;
|
|
3760
|
+
*/
|
|
3761
|
+
spanId: string;
|
|
3762
|
+
/**
|
|
3763
|
+
* @generated from field: string federated_graph_id = 3;
|
|
3764
|
+
*/
|
|
3765
|
+
federatedGraphId: string;
|
|
3738
3766
|
constructor(data?: PartialMessage<GetTraceRequest>);
|
|
3739
3767
|
static readonly runtime: typeof proto3;
|
|
3740
3768
|
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
|
|
@@ -681,6 +686,10 @@ export class CheckSubgraphSchemaRequest extends Message {
|
|
|
681
686
|
* @generated from field: string namespace = 5;
|
|
682
687
|
*/
|
|
683
688
|
namespace = "";
|
|
689
|
+
/**
|
|
690
|
+
* @generated from field: optional bool skip_traffic_check = 6;
|
|
691
|
+
*/
|
|
692
|
+
skipTrafficCheck;
|
|
684
693
|
constructor(data) {
|
|
685
694
|
super();
|
|
686
695
|
proto3.util.initPartial(data, this);
|
|
@@ -693,6 +702,7 @@ export class CheckSubgraphSchemaRequest extends Message {
|
|
|
693
702
|
{ no: 3, name: "gitInfo", kind: "message", T: GitInfo },
|
|
694
703
|
{ no: 4, name: "delete", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
695
704
|
{ no: 5, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
705
|
+
{ no: 6, name: "skip_traffic_check", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
696
706
|
]);
|
|
697
707
|
static fromBinary(bytes, options) {
|
|
698
708
|
return new CheckSubgraphSchemaRequest().fromBinary(bytes, options);
|
|
@@ -1575,6 +1585,10 @@ export class CheckSubgraphSchemaResponse extends Message {
|
|
|
1575
1585
|
* @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneErrors = 11;
|
|
1576
1586
|
*/
|
|
1577
1587
|
graphPruneErrors = [];
|
|
1588
|
+
/**
|
|
1589
|
+
* @generated from field: optional bool client_traffic_check_skipped = 12;
|
|
1590
|
+
*/
|
|
1591
|
+
clientTrafficCheckSkipped;
|
|
1578
1592
|
constructor(data) {
|
|
1579
1593
|
super();
|
|
1580
1594
|
proto3.util.initPartial(data, this);
|
|
@@ -1593,6 +1607,7 @@ export class CheckSubgraphSchemaResponse extends Message {
|
|
|
1593
1607
|
{ no: 9, name: "lintErrors", kind: "message", T: LintIssue, repeated: true },
|
|
1594
1608
|
{ no: 10, name: "graphPruneWarnings", kind: "message", T: GraphPruningIssue, repeated: true },
|
|
1595
1609
|
{ no: 11, name: "graphPruneErrors", kind: "message", T: GraphPruningIssue, repeated: true },
|
|
1610
|
+
{ no: 12, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
1596
1611
|
]);
|
|
1597
1612
|
static fromBinary(bytes, options) {
|
|
1598
1613
|
return new CheckSubgraphSchemaResponse().fromBinary(bytes, options);
|
|
@@ -2807,6 +2822,10 @@ export class SchemaCheck extends Message {
|
|
|
2807
2822
|
* @generated from field: bool hasGraphPruningErrors = 12;
|
|
2808
2823
|
*/
|
|
2809
2824
|
hasGraphPruningErrors = false;
|
|
2825
|
+
/**
|
|
2826
|
+
* @generated from field: bool client_traffic_check_skipped = 13;
|
|
2827
|
+
*/
|
|
2828
|
+
clientTrafficCheckSkipped = false;
|
|
2810
2829
|
constructor(data) {
|
|
2811
2830
|
super();
|
|
2812
2831
|
proto3.util.initPartial(data, this);
|
|
@@ -2826,6 +2845,7 @@ export class SchemaCheck extends Message {
|
|
|
2826
2845
|
{ no: 10, name: "ghDetails", kind: "message", T: SchemaCheck_GhDetails, opt: true },
|
|
2827
2846
|
{ no: 11, name: "hasLintErrors", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2828
2847
|
{ no: 12, name: "hasGraphPruningErrors", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2848
|
+
{ no: 13, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
2829
2849
|
]);
|
|
2830
2850
|
static fromBinary(bytes, options) {
|
|
2831
2851
|
return new SchemaCheck().fromBinary(bytes, options);
|
|
@@ -3175,6 +3195,10 @@ export class GetCheckOperationsResponse extends Message {
|
|
|
3175
3195
|
* @generated from field: string created_at = 4;
|
|
3176
3196
|
*/
|
|
3177
3197
|
createdAt = "";
|
|
3198
|
+
/**
|
|
3199
|
+
* @generated from field: bool client_traffic_check_skipped = 5;
|
|
3200
|
+
*/
|
|
3201
|
+
clientTrafficCheckSkipped = false;
|
|
3178
3202
|
constructor(data) {
|
|
3179
3203
|
super();
|
|
3180
3204
|
proto3.util.initPartial(data, this);
|
|
@@ -3186,6 +3210,7 @@ export class GetCheckOperationsResponse extends Message {
|
|
|
3186
3210
|
{ no: 2, name: "operations", kind: "message", T: GetCheckOperationsResponse_CheckOperation, repeated: true },
|
|
3187
3211
|
{ no: 3, name: "traffic_check_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3188
3212
|
{ no: 4, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3213
|
+
{ no: 5, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3189
3214
|
]);
|
|
3190
3215
|
static fromBinary(bytes, options) {
|
|
3191
3216
|
return new GetCheckOperationsResponse().fromBinary(bytes, options);
|
|
@@ -5685,6 +5710,14 @@ export class GetTraceRequest extends Message {
|
|
|
5685
5710
|
* @generated from field: string id = 1;
|
|
5686
5711
|
*/
|
|
5687
5712
|
id = "";
|
|
5713
|
+
/**
|
|
5714
|
+
* @generated from field: string span_id = 2;
|
|
5715
|
+
*/
|
|
5716
|
+
spanId = "";
|
|
5717
|
+
/**
|
|
5718
|
+
* @generated from field: string federated_graph_id = 3;
|
|
5719
|
+
*/
|
|
5720
|
+
federatedGraphId = "";
|
|
5688
5721
|
constructor(data) {
|
|
5689
5722
|
super();
|
|
5690
5723
|
proto3.util.initPartial(data, this);
|
|
@@ -5693,6 +5726,8 @@ export class GetTraceRequest extends Message {
|
|
|
5693
5726
|
static typeName = "wg.cosmo.platform.v1.GetTraceRequest";
|
|
5694
5727
|
static fields = proto3.util.newFieldList(() => [
|
|
5695
5728
|
{ no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5729
|
+
{ no: 2, name: "span_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5730
|
+
{ no: 3, name: "federated_graph_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
5696
5731
|
]);
|
|
5697
5732
|
static fromBinary(bytes, options) {
|
|
5698
5733
|
return new GetTraceRequest().fromBinary(bytes, options);
|