@wundergraph/cosmo-connect 0.82.1 → 0.83.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.
@@ -483,6 +483,10 @@ export declare class CheckSubgraphSchemaRequest extends Message<CheckSubgraphSch
483
483
  * @generated from field: string namespace = 5;
484
484
  */
485
485
  namespace: string;
486
+ /**
487
+ * @generated from field: optional bool skip_traffic_check = 6;
488
+ */
489
+ skipTrafficCheck?: boolean;
486
490
  constructor(data?: PartialMessage<CheckSubgraphSchemaRequest>);
487
491
  static readonly runtime: typeof proto3;
488
492
  static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaRequest";
@@ -1083,6 +1087,10 @@ export declare class CheckSubgraphSchemaResponse extends Message<CheckSubgraphSc
1083
1087
  * @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneErrors = 11;
1084
1088
  */
1085
1089
  graphPruneErrors: GraphPruningIssue[];
1090
+ /**
1091
+ * @generated from field: optional bool client_traffic_check_skipped = 12;
1092
+ */
1093
+ clientTrafficCheckSkipped?: boolean;
1086
1094
  constructor(data?: PartialMessage<CheckSubgraphSchemaResponse>);
1087
1095
  static readonly runtime: typeof proto3;
1088
1096
  static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaResponse";
@@ -1888,6 +1896,18 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
1888
1896
  * @generated from field: bool hasGraphPruningErrors = 12;
1889
1897
  */
1890
1898
  hasGraphPruningErrors: boolean;
1899
+ /**
1900
+ * @generated from field: bool client_traffic_check_skipped = 13;
1901
+ */
1902
+ clientTrafficCheckSkipped: boolean;
1903
+ /**
1904
+ * @generated from field: bool lint_skipped = 14;
1905
+ */
1906
+ lintSkipped: boolean;
1907
+ /**
1908
+ * @generated from field: bool graph_pruning_skipped = 15;
1909
+ */
1910
+ graphPruningSkipped: boolean;
1891
1911
  constructor(data?: PartialMessage<SchemaCheck>);
1892
1912
  static readonly runtime: typeof proto3;
1893
1913
  static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
@@ -2037,14 +2057,6 @@ export declare class GetCheckSummaryResponse extends Message<GetCheckSummaryResp
2037
2057
  * @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruningIssues = 10;
2038
2058
  */
2039
2059
  graphPruningIssues: GraphPruningIssue[];
2040
- /**
2041
- * @generated from field: bool isLintingEnabled = 11;
2042
- */
2043
- isLintingEnabled: boolean;
2044
- /**
2045
- * @generated from field: bool isGraphPruningEnabled = 12;
2046
- */
2047
- isGraphPruningEnabled: boolean;
2048
2060
  constructor(data?: PartialMessage<GetCheckSummaryResponse>);
2049
2061
  static readonly runtime: typeof proto3;
2050
2062
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckSummaryResponse";
@@ -2120,6 +2132,10 @@ export declare class GetCheckOperationsResponse extends Message<GetCheckOperatio
2120
2132
  * @generated from field: string created_at = 4;
2121
2133
  */
2122
2134
  createdAt: string;
2135
+ /**
2136
+ * @generated from field: bool client_traffic_check_skipped = 5;
2137
+ */
2138
+ clientTrafficCheckSkipped: boolean;
2123
2139
  constructor(data?: PartialMessage<GetCheckOperationsResponse>);
2124
2140
  static readonly runtime: typeof proto3;
2125
2141
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsResponse";
@@ -686,6 +686,10 @@ export class CheckSubgraphSchemaRequest extends Message {
686
686
  * @generated from field: string namespace = 5;
687
687
  */
688
688
  namespace = "";
689
+ /**
690
+ * @generated from field: optional bool skip_traffic_check = 6;
691
+ */
692
+ skipTrafficCheck;
689
693
  constructor(data) {
690
694
  super();
691
695
  proto3.util.initPartial(data, this);
@@ -698,6 +702,7 @@ export class CheckSubgraphSchemaRequest extends Message {
698
702
  { no: 3, name: "gitInfo", kind: "message", T: GitInfo },
699
703
  { no: 4, name: "delete", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
700
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 },
701
706
  ]);
702
707
  static fromBinary(bytes, options) {
703
708
  return new CheckSubgraphSchemaRequest().fromBinary(bytes, options);
@@ -1580,6 +1585,10 @@ export class CheckSubgraphSchemaResponse extends Message {
1580
1585
  * @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruneErrors = 11;
1581
1586
  */
1582
1587
  graphPruneErrors = [];
1588
+ /**
1589
+ * @generated from field: optional bool client_traffic_check_skipped = 12;
1590
+ */
1591
+ clientTrafficCheckSkipped;
1583
1592
  constructor(data) {
1584
1593
  super();
1585
1594
  proto3.util.initPartial(data, this);
@@ -1598,6 +1607,7 @@ export class CheckSubgraphSchemaResponse extends Message {
1598
1607
  { no: 9, name: "lintErrors", kind: "message", T: LintIssue, repeated: true },
1599
1608
  { no: 10, name: "graphPruneWarnings", kind: "message", T: GraphPruningIssue, repeated: true },
1600
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 },
1601
1611
  ]);
1602
1612
  static fromBinary(bytes, options) {
1603
1613
  return new CheckSubgraphSchemaResponse().fromBinary(bytes, options);
@@ -2812,6 +2822,18 @@ export class SchemaCheck extends Message {
2812
2822
  * @generated from field: bool hasGraphPruningErrors = 12;
2813
2823
  */
2814
2824
  hasGraphPruningErrors = false;
2825
+ /**
2826
+ * @generated from field: bool client_traffic_check_skipped = 13;
2827
+ */
2828
+ clientTrafficCheckSkipped = false;
2829
+ /**
2830
+ * @generated from field: bool lint_skipped = 14;
2831
+ */
2832
+ lintSkipped = false;
2833
+ /**
2834
+ * @generated from field: bool graph_pruning_skipped = 15;
2835
+ */
2836
+ graphPruningSkipped = false;
2815
2837
  constructor(data) {
2816
2838
  super();
2817
2839
  proto3.util.initPartial(data, this);
@@ -2831,6 +2853,9 @@ export class SchemaCheck extends Message {
2831
2853
  { no: 10, name: "ghDetails", kind: "message", T: SchemaCheck_GhDetails, opt: true },
2832
2854
  { no: 11, name: "hasLintErrors", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2833
2855
  { no: 12, name: "hasGraphPruningErrors", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2856
+ { no: 13, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2857
+ { no: 14, name: "lint_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2858
+ { no: 15, name: "graph_pruning_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2834
2859
  ]);
2835
2860
  static fromBinary(bytes, options) {
2836
2861
  return new SchemaCheck().fromBinary(bytes, options);
@@ -3045,14 +3070,6 @@ export class GetCheckSummaryResponse extends Message {
3045
3070
  * @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruningIssues = 10;
3046
3071
  */
3047
3072
  graphPruningIssues = [];
3048
- /**
3049
- * @generated from field: bool isLintingEnabled = 11;
3050
- */
3051
- isLintingEnabled = false;
3052
- /**
3053
- * @generated from field: bool isGraphPruningEnabled = 12;
3054
- */
3055
- isGraphPruningEnabled = false;
3056
3073
  constructor(data) {
3057
3074
  super();
3058
3075
  proto3.util.initPartial(data, this);
@@ -3069,8 +3086,6 @@ export class GetCheckSummaryResponse extends Message {
3069
3086
  { no: 8, name: "traffic_check_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3070
3087
  { no: 9, name: "lintIssues", kind: "message", T: LintIssue, repeated: true },
3071
3088
  { no: 10, name: "graphPruningIssues", kind: "message", T: GraphPruningIssue, repeated: true },
3072
- { no: 11, name: "isLintingEnabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3073
- { no: 12, name: "isGraphPruningEnabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3074
3089
  ]);
3075
3090
  static fromBinary(bytes, options) {
3076
3091
  return new GetCheckSummaryResponse().fromBinary(bytes, options);
@@ -3180,6 +3195,10 @@ export class GetCheckOperationsResponse extends Message {
3180
3195
  * @generated from field: string created_at = 4;
3181
3196
  */
3182
3197
  createdAt = "";
3198
+ /**
3199
+ * @generated from field: bool client_traffic_check_skipped = 5;
3200
+ */
3201
+ clientTrafficCheckSkipped = false;
3183
3202
  constructor(data) {
3184
3203
  super();
3185
3204
  proto3.util.initPartial(data, this);
@@ -3191,6 +3210,7 @@ export class GetCheckOperationsResponse extends Message {
3191
3210
  { no: 2, name: "operations", kind: "message", T: GetCheckOperationsResponse_CheckOperation, repeated: true },
3192
3211
  { no: 3, name: "traffic_check_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3193
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 */ },
3194
3214
  ]);
3195
3215
  static fromBinary(bytes, options) {
3196
3216
  return new GetCheckOperationsResponse().fromBinary(bytes, options);