@wundergraph/cosmo-connect 0.82.1 → 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.
@@ -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,10 @@ 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;
1891
1903
  constructor(data?: PartialMessage<SchemaCheck>);
1892
1904
  static readonly runtime: typeof proto3;
1893
1905
  static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck";
@@ -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,10 @@ 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;
2815
2829
  constructor(data) {
2816
2830
  super();
2817
2831
  proto3.util.initPartial(data, this);
@@ -2831,6 +2845,7 @@ export class SchemaCheck extends Message {
2831
2845
  { no: 10, name: "ghDetails", kind: "message", T: SchemaCheck_GhDetails, opt: true },
2832
2846
  { no: 11, name: "hasLintErrors", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2833
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 */ },
2834
2849
  ]);
2835
2850
  static fromBinary(bytes, options) {
2836
2851
  return new SchemaCheck().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);