@wundergraph/cosmo-connect 0.83.0 → 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.
@@ -1900,6 +1900,14 @@ export declare class SchemaCheck extends Message<SchemaCheck> {
1900
1900
  * @generated from field: bool client_traffic_check_skipped = 13;
1901
1901
  */
1902
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;
1903
1911
  constructor(data?: PartialMessage<SchemaCheck>);
1904
1912
  static readonly runtime: typeof proto3;
1905
1913
  static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
@@ -2049,14 +2057,6 @@ export declare class GetCheckSummaryResponse extends Message<GetCheckSummaryResp
2049
2057
  * @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruningIssues = 10;
2050
2058
  */
2051
2059
  graphPruningIssues: GraphPruningIssue[];
2052
- /**
2053
- * @generated from field: bool isLintingEnabled = 11;
2054
- */
2055
- isLintingEnabled: boolean;
2056
- /**
2057
- * @generated from field: bool isGraphPruningEnabled = 12;
2058
- */
2059
- isGraphPruningEnabled: boolean;
2060
2060
  constructor(data?: PartialMessage<GetCheckSummaryResponse>);
2061
2061
  static readonly runtime: typeof proto3;
2062
2062
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckSummaryResponse";
@@ -2826,6 +2826,14 @@ export class SchemaCheck extends Message {
2826
2826
  * @generated from field: bool client_traffic_check_skipped = 13;
2827
2827
  */
2828
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;
2829
2837
  constructor(data) {
2830
2838
  super();
2831
2839
  proto3.util.initPartial(data, this);
@@ -2846,6 +2854,8 @@ export class SchemaCheck extends Message {
2846
2854
  { no: 11, name: "hasLintErrors", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2847
2855
  { no: 12, name: "hasGraphPruningErrors", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2848
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 */ },
2849
2859
  ]);
2850
2860
  static fromBinary(bytes, options) {
2851
2861
  return new SchemaCheck().fromBinary(bytes, options);
@@ -3060,14 +3070,6 @@ export class GetCheckSummaryResponse extends Message {
3060
3070
  * @generated from field: repeated wg.cosmo.platform.v1.GraphPruningIssue graphPruningIssues = 10;
3061
3071
  */
3062
3072
  graphPruningIssues = [];
3063
- /**
3064
- * @generated from field: bool isLintingEnabled = 11;
3065
- */
3066
- isLintingEnabled = false;
3067
- /**
3068
- * @generated from field: bool isGraphPruningEnabled = 12;
3069
- */
3070
- isGraphPruningEnabled = false;
3071
3073
  constructor(data) {
3072
3074
  super();
3073
3075
  proto3.util.initPartial(data, this);
@@ -3084,8 +3086,6 @@ export class GetCheckSummaryResponse extends Message {
3084
3086
  { no: 8, name: "traffic_check_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3085
3087
  { no: 9, name: "lintIssues", kind: "message", T: LintIssue, repeated: true },
3086
3088
  { no: 10, name: "graphPruningIssues", kind: "message", T: GraphPruningIssue, repeated: true },
3087
- { no: 11, name: "isLintingEnabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3088
- { no: 12, name: "isGraphPruningEnabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3089
3089
  ]);
3090
3090
  static fromBinary(bytes, options) {
3091
3091
  return new GetCheckSummaryResponse().fromBinary(bytes, options);