@wundergraph/cosmo-connect 0.127.2 → 0.128.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.
@@ -662,6 +662,10 @@ export declare class CheckSubgraphSchemaRequest extends Message<CheckSubgraphSch
662
662
  * @generated from field: optional bool disable_resolvability_validation = 9;
663
663
  */
664
664
  disableResolvabilityValidation?: boolean;
665
+ /**
666
+ * @generated from field: optional int32 limit = 10;
667
+ */
668
+ limit?: number;
665
669
  constructor(data?: PartialMessage<CheckSubgraphSchemaRequest>);
666
670
  static readonly runtime: typeof proto3;
667
671
  static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaRequest";
@@ -1351,6 +1355,10 @@ export declare class CheckSubgraphSchemaResponse extends Message<CheckSubgraphSc
1351
1355
  * @generated from field: optional string checkExtensionErrorMessage = 18;
1352
1356
  */
1353
1357
  checkExtensionErrorMessage?: string;
1358
+ /**
1359
+ * @generated from field: optional wg.cosmo.platform.v1.SchemaCheckCounts counts = 19;
1360
+ */
1361
+ counts?: SchemaCheckCounts;
1354
1362
  constructor(data?: PartialMessage<CheckSubgraphSchemaResponse>);
1355
1363
  static readonly runtime: typeof proto3;
1356
1364
  static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaResponse";
@@ -1360,6 +1368,51 @@ export declare class CheckSubgraphSchemaResponse extends Message<CheckSubgraphSc
1360
1368
  static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CheckSubgraphSchemaResponse;
1361
1369
  static equals(a: CheckSubgraphSchemaResponse | PlainMessage<CheckSubgraphSchemaResponse> | undefined, b: CheckSubgraphSchemaResponse | PlainMessage<CheckSubgraphSchemaResponse> | undefined): boolean;
1362
1370
  }
1371
+ /**
1372
+ * @generated from message wg.cosmo.platform.v1.SchemaCheckCounts
1373
+ */
1374
+ export declare class SchemaCheckCounts extends Message<SchemaCheckCounts> {
1375
+ /**
1376
+ * @generated from field: int32 lintWarnings = 1;
1377
+ */
1378
+ lintWarnings: number;
1379
+ /**
1380
+ * @generated from field: int32 lintErrors = 2;
1381
+ */
1382
+ lintErrors: number;
1383
+ /**
1384
+ * @generated from field: int32 breakingChanges = 3;
1385
+ */
1386
+ breakingChanges: number;
1387
+ /**
1388
+ * @generated from field: int32 nonBreakingChanges = 4;
1389
+ */
1390
+ nonBreakingChanges: number;
1391
+ /**
1392
+ * @generated from field: int32 compositionErrors = 5;
1393
+ */
1394
+ compositionErrors: number;
1395
+ /**
1396
+ * @generated from field: int32 compositionWarnings = 6;
1397
+ */
1398
+ compositionWarnings: number;
1399
+ /**
1400
+ * @generated from field: int32 graphPruneErrors = 7;
1401
+ */
1402
+ graphPruneErrors: number;
1403
+ /**
1404
+ * @generated from field: int32 graphPruneWarnings = 8;
1405
+ */
1406
+ graphPruneWarnings: number;
1407
+ constructor(data?: PartialMessage<SchemaCheckCounts>);
1408
+ static readonly runtime: typeof proto3;
1409
+ static readonly typeName = "wg.cosmo.platform.v1.SchemaCheckCounts";
1410
+ static readonly fields: FieldList;
1411
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SchemaCheckCounts;
1412
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SchemaCheckCounts;
1413
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SchemaCheckCounts;
1414
+ static equals(a: SchemaCheckCounts | PlainMessage<SchemaCheckCounts> | undefined, b: SchemaCheckCounts | PlainMessage<SchemaCheckCounts> | undefined): boolean;
1415
+ }
1363
1416
  /**
1364
1417
  * @generated from message wg.cosmo.platform.v1.FixSubgraphSchemaResponse
1365
1418
  */
@@ -3217,6 +3270,10 @@ export declare class CheckFederatedGraphRequest extends Message<CheckFederatedGr
3217
3270
  * @generated from field: optional bool disable_resolvability_validation = 4;
3218
3271
  */
3219
3272
  disableResolvabilityValidation?: boolean;
3273
+ /**
3274
+ * @generated from field: optional int32 limit = 5;
3275
+ */
3276
+ limit?: number;
3220
3277
  constructor(data?: PartialMessage<CheckFederatedGraphRequest>);
3221
3278
  static readonly runtime: typeof proto3;
3222
3279
  static readonly typeName = "wg.cosmo.platform.v1.CheckFederatedGraphRequest";
@@ -3246,6 +3303,10 @@ export declare class CheckFederatedGraphResponse extends Message<CheckFederatedG
3246
3303
  * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
3247
3304
  */
3248
3305
  compositionWarnings: CompositionWarning[];
3306
+ /**
3307
+ * @generated from field: optional wg.cosmo.platform.v1.SchemaCheckCounts counts = 5;
3308
+ */
3309
+ counts?: SchemaCheckCounts;
3249
3310
  constructor(data?: PartialMessage<CheckFederatedGraphResponse>);
3250
3311
  static readonly runtime: typeof proto3;
3251
3312
  static readonly typeName = "wg.cosmo.platform.v1.CheckFederatedGraphResponse";
@@ -4459,6 +4520,14 @@ export declare class APIKey_Group extends Message<APIKey_Group> {
4459
4520
  * @generated from message wg.cosmo.platform.v1.GetAPIKeysRequest
4460
4521
  */
4461
4522
  export declare class GetAPIKeysRequest extends Message<GetAPIKeysRequest> {
4523
+ /**
4524
+ * @generated from field: int32 limit = 1;
4525
+ */
4526
+ limit: number;
4527
+ /**
4528
+ * @generated from field: int32 offset = 2;
4529
+ */
4530
+ offset: number;
4462
4531
  constructor(data?: PartialMessage<GetAPIKeysRequest>);
4463
4532
  static readonly runtime: typeof proto3;
4464
4533
  static readonly typeName = "wg.cosmo.platform.v1.GetAPIKeysRequest";
@@ -4480,6 +4549,10 @@ export declare class GetAPIKeysResponse extends Message<GetAPIKeysResponse> {
4480
4549
  * @generated from field: repeated wg.cosmo.platform.v1.APIKey apiKeys = 2;
4481
4550
  */
4482
4551
  apiKeys: APIKey[];
4552
+ /**
4553
+ * @generated from field: int32 count = 3;
4554
+ */
4555
+ count: number;
4483
4556
  constructor(data?: PartialMessage<GetAPIKeysResponse>);
4484
4557
  static readonly runtime: typeof proto3;
4485
4558
  static readonly typeName = "wg.cosmo.platform.v1.GetAPIKeysResponse";
@@ -937,6 +937,10 @@ export class CheckSubgraphSchemaRequest extends Message {
937
937
  * @generated from field: optional bool disable_resolvability_validation = 9;
938
938
  */
939
939
  disableResolvabilityValidation;
940
+ /**
941
+ * @generated from field: optional int32 limit = 10;
942
+ */
943
+ limit;
940
944
  constructor(data) {
941
945
  super();
942
946
  proto3.util.initPartial(data, this);
@@ -953,6 +957,7 @@ export class CheckSubgraphSchemaRequest extends Message {
953
957
  { no: 7, name: "vcsContext", kind: "message", T: VCSContext, opt: true },
954
958
  { no: 8, name: "labels", kind: "message", T: Label, repeated: true },
955
959
  { no: 9, name: "disable_resolvability_validation", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
960
+ { no: 10, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
956
961
  ]);
957
962
  static fromBinary(bytes, options) {
958
963
  return new CheckSubgraphSchemaRequest().fromBinary(bytes, options);
@@ -1947,6 +1952,10 @@ export class CheckSubgraphSchemaResponse extends Message {
1947
1952
  * @generated from field: optional string checkExtensionErrorMessage = 18;
1948
1953
  */
1949
1954
  checkExtensionErrorMessage;
1955
+ /**
1956
+ * @generated from field: optional wg.cosmo.platform.v1.SchemaCheckCounts counts = 19;
1957
+ */
1958
+ counts;
1950
1959
  constructor(data) {
1951
1960
  super();
1952
1961
  proto3.util.initPartial(data, this);
@@ -1972,6 +1981,7 @@ export class CheckSubgraphSchemaResponse extends Message {
1972
1981
  { no: 16, name: "isLinkedPruningCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1973
1982
  { no: 17, name: "isCheckExtensionSkipped", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1974
1983
  { no: 18, name: "checkExtensionErrorMessage", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1984
+ { no: 19, name: "counts", kind: "message", T: SchemaCheckCounts, opt: true },
1975
1985
  ]);
1976
1986
  static fromBinary(bytes, options) {
1977
1987
  return new CheckSubgraphSchemaResponse().fromBinary(bytes, options);
@@ -1986,6 +1996,71 @@ export class CheckSubgraphSchemaResponse extends Message {
1986
1996
  return proto3.util.equals(CheckSubgraphSchemaResponse, a, b);
1987
1997
  }
1988
1998
  }
1999
+ /**
2000
+ * @generated from message wg.cosmo.platform.v1.SchemaCheckCounts
2001
+ */
2002
+ export class SchemaCheckCounts extends Message {
2003
+ /**
2004
+ * @generated from field: int32 lintWarnings = 1;
2005
+ */
2006
+ lintWarnings = 0;
2007
+ /**
2008
+ * @generated from field: int32 lintErrors = 2;
2009
+ */
2010
+ lintErrors = 0;
2011
+ /**
2012
+ * @generated from field: int32 breakingChanges = 3;
2013
+ */
2014
+ breakingChanges = 0;
2015
+ /**
2016
+ * @generated from field: int32 nonBreakingChanges = 4;
2017
+ */
2018
+ nonBreakingChanges = 0;
2019
+ /**
2020
+ * @generated from field: int32 compositionErrors = 5;
2021
+ */
2022
+ compositionErrors = 0;
2023
+ /**
2024
+ * @generated from field: int32 compositionWarnings = 6;
2025
+ */
2026
+ compositionWarnings = 0;
2027
+ /**
2028
+ * @generated from field: int32 graphPruneErrors = 7;
2029
+ */
2030
+ graphPruneErrors = 0;
2031
+ /**
2032
+ * @generated from field: int32 graphPruneWarnings = 8;
2033
+ */
2034
+ graphPruneWarnings = 0;
2035
+ constructor(data) {
2036
+ super();
2037
+ proto3.util.initPartial(data, this);
2038
+ }
2039
+ static runtime = proto3;
2040
+ static typeName = "wg.cosmo.platform.v1.SchemaCheckCounts";
2041
+ static fields = proto3.util.newFieldList(() => [
2042
+ { no: 1, name: "lintWarnings", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2043
+ { no: 2, name: "lintErrors", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2044
+ { no: 3, name: "breakingChanges", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2045
+ { no: 4, name: "nonBreakingChanges", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2046
+ { no: 5, name: "compositionErrors", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2047
+ { no: 6, name: "compositionWarnings", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2048
+ { no: 7, name: "graphPruneErrors", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2049
+ { no: 8, name: "graphPruneWarnings", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
2050
+ ]);
2051
+ static fromBinary(bytes, options) {
2052
+ return new SchemaCheckCounts().fromBinary(bytes, options);
2053
+ }
2054
+ static fromJson(jsonValue, options) {
2055
+ return new SchemaCheckCounts().fromJson(jsonValue, options);
2056
+ }
2057
+ static fromJsonString(jsonString, options) {
2058
+ return new SchemaCheckCounts().fromJsonString(jsonString, options);
2059
+ }
2060
+ static equals(a, b) {
2061
+ return proto3.util.equals(SchemaCheckCounts, a, b);
2062
+ }
2063
+ }
1989
2064
  /**
1990
2065
  * @generated from message wg.cosmo.platform.v1.FixSubgraphSchemaResponse
1991
2066
  */
@@ -4772,6 +4847,10 @@ export class CheckFederatedGraphRequest extends Message {
4772
4847
  * @generated from field: optional bool disable_resolvability_validation = 4;
4773
4848
  */
4774
4849
  disableResolvabilityValidation;
4850
+ /**
4851
+ * @generated from field: optional int32 limit = 5;
4852
+ */
4853
+ limit;
4775
4854
  constructor(data) {
4776
4855
  super();
4777
4856
  proto3.util.initPartial(data, this);
@@ -4783,6 +4862,7 @@ export class CheckFederatedGraphRequest extends Message {
4783
4862
  { no: 2, name: "label_matchers", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
4784
4863
  { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
4785
4864
  { no: 4, name: "disable_resolvability_validation", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
4865
+ { no: 5, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
4786
4866
  ]);
4787
4867
  static fromBinary(bytes, options) {
4788
4868
  return new CheckFederatedGraphRequest().fromBinary(bytes, options);
@@ -4817,6 +4897,10 @@ export class CheckFederatedGraphResponse extends Message {
4817
4897
  * @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
4818
4898
  */
4819
4899
  compositionWarnings = [];
4900
+ /**
4901
+ * @generated from field: optional wg.cosmo.platform.v1.SchemaCheckCounts counts = 5;
4902
+ */
4903
+ counts;
4820
4904
  constructor(data) {
4821
4905
  super();
4822
4906
  proto3.util.initPartial(data, this);
@@ -4828,6 +4912,7 @@ export class CheckFederatedGraphResponse extends Message {
4828
4912
  { no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
4829
4913
  { no: 3, name: "subgraphs", kind: "message", T: Subgraph, repeated: true },
4830
4914
  { no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
4915
+ { no: 5, name: "counts", kind: "message", T: SchemaCheckCounts, opt: true },
4831
4916
  ]);
4832
4917
  static fromBinary(bytes, options) {
4833
4918
  return new CheckFederatedGraphResponse().fromBinary(bytes, options);
@@ -6719,13 +6804,24 @@ export class APIKey_Group extends Message {
6719
6804
  * @generated from message wg.cosmo.platform.v1.GetAPIKeysRequest
6720
6805
  */
6721
6806
  export class GetAPIKeysRequest extends Message {
6807
+ /**
6808
+ * @generated from field: int32 limit = 1;
6809
+ */
6810
+ limit = 0;
6811
+ /**
6812
+ * @generated from field: int32 offset = 2;
6813
+ */
6814
+ offset = 0;
6722
6815
  constructor(data) {
6723
6816
  super();
6724
6817
  proto3.util.initPartial(data, this);
6725
6818
  }
6726
6819
  static runtime = proto3;
6727
6820
  static typeName = "wg.cosmo.platform.v1.GetAPIKeysRequest";
6728
- static fields = proto3.util.newFieldList(() => []);
6821
+ static fields = proto3.util.newFieldList(() => [
6822
+ { no: 1, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
6823
+ { no: 2, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
6824
+ ]);
6729
6825
  static fromBinary(bytes, options) {
6730
6826
  return new GetAPIKeysRequest().fromBinary(bytes, options);
6731
6827
  }
@@ -6751,6 +6847,10 @@ export class GetAPIKeysResponse extends Message {
6751
6847
  * @generated from field: repeated wg.cosmo.platform.v1.APIKey apiKeys = 2;
6752
6848
  */
6753
6849
  apiKeys = [];
6850
+ /**
6851
+ * @generated from field: int32 count = 3;
6852
+ */
6853
+ count = 0;
6754
6854
  constructor(data) {
6755
6855
  super();
6756
6856
  proto3.util.initPartial(data, this);
@@ -6760,6 +6860,7 @@ export class GetAPIKeysResponse extends Message {
6760
6860
  static fields = proto3.util.newFieldList(() => [
6761
6861
  { no: 1, name: "response", kind: "message", T: Response },
6762
6862
  { no: 2, name: "apiKeys", kind: "message", T: APIKey, repeated: true },
6863
+ { no: 3, name: "count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
6763
6864
  ]);
6764
6865
  static fromBinary(bytes, options) {
6765
6866
  return new GetAPIKeysResponse().fromBinary(bytes, options);