@wundergraph/cosmo-connect 0.53.0 → 0.54.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.
@@ -1392,13 +1392,13 @@ export declare class GetChecksByFederatedGraphNameResponse extends Message<GetCh
1392
1392
  */
1393
1393
  checks: SchemaCheck[];
1394
1394
  /**
1395
- * @generated from field: string checksCountBasedOnDateRange = 3;
1395
+ * @generated from field: int32 checksCountBasedOnDateRange = 3;
1396
1396
  */
1397
- checksCountBasedOnDateRange: string;
1397
+ checksCountBasedOnDateRange: number;
1398
1398
  /**
1399
- * @generated from field: string totalChecksCount = 4;
1399
+ * @generated from field: int32 totalChecksCount = 4;
1400
1400
  */
1401
- totalChecksCount: string;
1401
+ totalChecksCount: number;
1402
1402
  constructor(data?: PartialMessage<GetChecksByFederatedGraphNameResponse>);
1403
1403
  static readonly runtime: typeof proto3;
1404
1404
  static readonly typeName = "wg.cosmo.platform.v1.GetChecksByFederatedGraphNameResponse";
@@ -5362,6 +5362,10 @@ export declare class GetCompositionsResponse extends Message<GetCompositionsResp
5362
5362
  * @generated from field: repeated wg.cosmo.platform.v1.GraphComposition compositions = 2;
5363
5363
  */
5364
5364
  compositions: GraphComposition[];
5365
+ /**
5366
+ * @generated from field: int32 count = 3;
5367
+ */
5368
+ count: number;
5365
5369
  constructor(data?: PartialMessage<GetCompositionsResponse>);
5366
5370
  static readonly runtime: typeof proto3;
5367
5371
  static readonly typeName = "wg.cosmo.platform.v1.GetCompositionsResponse";
@@ -2107,13 +2107,13 @@ export class GetChecksByFederatedGraphNameResponse extends Message {
2107
2107
  */
2108
2108
  checks = [];
2109
2109
  /**
2110
- * @generated from field: string checksCountBasedOnDateRange = 3;
2110
+ * @generated from field: int32 checksCountBasedOnDateRange = 3;
2111
2111
  */
2112
- checksCountBasedOnDateRange = "";
2112
+ checksCountBasedOnDateRange = 0;
2113
2113
  /**
2114
- * @generated from field: string totalChecksCount = 4;
2114
+ * @generated from field: int32 totalChecksCount = 4;
2115
2115
  */
2116
- totalChecksCount = "";
2116
+ totalChecksCount = 0;
2117
2117
  constructor(data) {
2118
2118
  super();
2119
2119
  proto3.util.initPartial(data, this);
@@ -2123,8 +2123,8 @@ export class GetChecksByFederatedGraphNameResponse extends Message {
2123
2123
  static fields = proto3.util.newFieldList(() => [
2124
2124
  { no: 1, name: "response", kind: "message", T: Response },
2125
2125
  { no: 2, name: "checks", kind: "message", T: SchemaCheck, repeated: true },
2126
- { no: 3, name: "checksCountBasedOnDateRange", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2127
- { no: 4, name: "totalChecksCount", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2126
+ { no: 3, name: "checksCountBasedOnDateRange", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2127
+ { no: 4, name: "totalChecksCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2128
2128
  ]);
2129
2129
  static fromBinary(bytes, options) {
2130
2130
  return new GetChecksByFederatedGraphNameResponse().fromBinary(bytes, options);
@@ -8414,6 +8414,10 @@ export class GetCompositionsResponse extends Message {
8414
8414
  * @generated from field: repeated wg.cosmo.platform.v1.GraphComposition compositions = 2;
8415
8415
  */
8416
8416
  compositions = [];
8417
+ /**
8418
+ * @generated from field: int32 count = 3;
8419
+ */
8420
+ count = 0;
8417
8421
  constructor(data) {
8418
8422
  super();
8419
8423
  proto3.util.initPartial(data, this);
@@ -8423,6 +8427,7 @@ export class GetCompositionsResponse extends Message {
8423
8427
  static fields = proto3.util.newFieldList(() => [
8424
8428
  { no: 1, name: "response", kind: "message", T: Response },
8425
8429
  { no: 2, name: "compositions", kind: "message", T: GraphComposition, repeated: true },
8430
+ { no: 3, name: "count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
8426
8431
  ]);
8427
8432
  static fromBinary(bytes, options) {
8428
8433
  return new GetCompositionsResponse().fromBinary(bytes, options);