@wundergraph/cosmo-connect 0.102.0 → 0.103.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.
@@ -532,6 +532,10 @@ export declare class CheckSubgraphSchemaRequest extends Message<CheckSubgraphSch
532
532
  * @generated from field: optional wg.cosmo.platform.v1.VCSContext vcsContext = 7;
533
533
  */
534
534
  vcsContext?: VCSContext;
535
+ /**
536
+ * @generated from field: repeated wg.cosmo.platform.v1.Label labels = 8;
537
+ */
538
+ labels: Label[];
535
539
  constructor(data?: PartialMessage<CheckSubgraphSchemaRequest>);
536
540
  static readonly runtime: typeof proto3;
537
541
  static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaRequest";
@@ -2129,6 +2133,10 @@ export declare class SchemaCheck_CheckedSubgraph extends Message<SchemaCheck_Che
2129
2133
  * @generated from field: bool isNew = 5;
2130
2134
  */
2131
2135
  isNew: boolean;
2136
+ /**
2137
+ * @generated from field: repeated wg.cosmo.platform.v1.Label labels = 6;
2138
+ */
2139
+ labels: Label[];
2132
2140
  constructor(data?: PartialMessage<SchemaCheck_CheckedSubgraph>);
2133
2141
  static readonly runtime: typeof proto3;
2134
2142
  static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck.CheckedSubgraph";
@@ -2154,10 +2162,6 @@ export declare class GetChecksByFederatedGraphNameResponse extends Message<GetCh
2154
2162
  * @generated from field: int32 checksCountBasedOnDateRange = 3;
2155
2163
  */
2156
2164
  checksCountBasedOnDateRange: number;
2157
- /**
2158
- * @generated from field: int32 totalChecksCount = 4;
2159
- */
2160
- totalChecksCount: number;
2161
2165
  constructor(data?: PartialMessage<GetChecksByFederatedGraphNameResponse>);
2162
2166
  static readonly runtime: typeof proto3;
2163
2167
  static readonly typeName = "wg.cosmo.platform.v1.GetChecksByFederatedGraphNameResponse";
@@ -754,6 +754,10 @@ export class CheckSubgraphSchemaRequest extends Message {
754
754
  * @generated from field: optional wg.cosmo.platform.v1.VCSContext vcsContext = 7;
755
755
  */
756
756
  vcsContext;
757
+ /**
758
+ * @generated from field: repeated wg.cosmo.platform.v1.Label labels = 8;
759
+ */
760
+ labels = [];
757
761
  constructor(data) {
758
762
  super();
759
763
  proto3.util.initPartial(data, this);
@@ -768,6 +772,7 @@ export class CheckSubgraphSchemaRequest extends Message {
768
772
  { no: 5, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
769
773
  { no: 6, name: "skip_traffic_check", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
770
774
  { no: 7, name: "vcsContext", kind: "message", T: VCSContext, opt: true },
775
+ { no: 8, name: "labels", kind: "message", T: Label, repeated: true },
771
776
  ]);
772
777
  static fromBinary(bytes, options) {
773
778
  return new CheckSubgraphSchemaRequest().fromBinary(bytes, options);
@@ -3163,6 +3168,10 @@ export class SchemaCheck_CheckedSubgraph extends Message {
3163
3168
  * @generated from field: bool isNew = 5;
3164
3169
  */
3165
3170
  isNew = false;
3171
+ /**
3172
+ * @generated from field: repeated wg.cosmo.platform.v1.Label labels = 6;
3173
+ */
3174
+ labels = [];
3166
3175
  constructor(data) {
3167
3176
  super();
3168
3177
  proto3.util.initPartial(data, this);
@@ -3175,6 +3184,7 @@ export class SchemaCheck_CheckedSubgraph extends Message {
3175
3184
  { no: 3, name: "subgraphId", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
3176
3185
  { no: 4, name: "isDeleted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3177
3186
  { no: 5, name: "isNew", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3187
+ { no: 6, name: "labels", kind: "message", T: Label, repeated: true },
3178
3188
  ]);
3179
3189
  static fromBinary(bytes, options) {
3180
3190
  return new SchemaCheck_CheckedSubgraph().fromBinary(bytes, options);
@@ -3205,10 +3215,6 @@ export class GetChecksByFederatedGraphNameResponse extends Message {
3205
3215
  * @generated from field: int32 checksCountBasedOnDateRange = 3;
3206
3216
  */
3207
3217
  checksCountBasedOnDateRange = 0;
3208
- /**
3209
- * @generated from field: int32 totalChecksCount = 4;
3210
- */
3211
- totalChecksCount = 0;
3212
3218
  constructor(data) {
3213
3219
  super();
3214
3220
  proto3.util.initPartial(data, this);
@@ -3219,7 +3225,6 @@ export class GetChecksByFederatedGraphNameResponse extends Message {
3219
3225
  { no: 1, name: "response", kind: "message", T: Response },
3220
3226
  { no: 2, name: "checks", kind: "message", T: SchemaCheck, repeated: true },
3221
3227
  { no: 3, name: "checksCountBasedOnDateRange", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3222
- { no: 4, name: "totalChecksCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3223
3228
  ]);
3224
3229
  static fromBinary(bytes, options) {
3225
3230
  return new GetChecksByFederatedGraphNameResponse().fromBinary(bytes, options);