@wundergraph/cosmo-connect 0.115.0 → 0.115.2

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.
@@ -2508,6 +2508,14 @@ export declare class GetOperationContentRequest extends Message<GetOperationCont
2508
2508
  * @generated from field: string hash = 1;
2509
2509
  */
2510
2510
  hash: string;
2511
+ /**
2512
+ * @generated from field: string federated_graph_name = 2;
2513
+ */
2514
+ federatedGraphName: string;
2515
+ /**
2516
+ * @generated from field: string namespace = 3;
2517
+ */
2518
+ namespace: string;
2511
2519
  constructor(data?: PartialMessage<GetOperationContentRequest>);
2512
2520
  static readonly runtime: typeof proto3;
2513
2521
  static readonly typeName = "wg.cosmo.platform.v1.GetOperationContentRequest";
@@ -11414,6 +11422,10 @@ export declare class GetOperationsRequest extends Message<GetOperationsRequest>
11414
11422
  * @generated from field: optional string clientName = 3;
11415
11423
  */
11416
11424
  clientName?: string;
11425
+ /**
11426
+ * @generated from field: optional int32 limit = 4;
11427
+ */
11428
+ limit?: number;
11417
11429
  constructor(data?: PartialMessage<GetOperationsRequest>);
11418
11430
  static readonly runtime: typeof proto3;
11419
11431
  static readonly typeName = "wg.cosmo.platform.v1.GetOperationsRequest";
@@ -3731,6 +3731,14 @@ export class GetOperationContentRequest extends Message {
3731
3731
  * @generated from field: string hash = 1;
3732
3732
  */
3733
3733
  hash = "";
3734
+ /**
3735
+ * @generated from field: string federated_graph_name = 2;
3736
+ */
3737
+ federatedGraphName = "";
3738
+ /**
3739
+ * @generated from field: string namespace = 3;
3740
+ */
3741
+ namespace = "";
3734
3742
  constructor(data) {
3735
3743
  super();
3736
3744
  proto3.util.initPartial(data, this);
@@ -3739,6 +3747,8 @@ export class GetOperationContentRequest extends Message {
3739
3747
  static typeName = "wg.cosmo.platform.v1.GetOperationContentRequest";
3740
3748
  static fields = proto3.util.newFieldList(() => [
3741
3749
  { no: 1, name: "hash", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3750
+ { no: 2, name: "federated_graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3751
+ { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3742
3752
  ]);
3743
3753
  static fromBinary(bytes, options) {
3744
3754
  return new GetOperationContentRequest().fromBinary(bytes, options);
@@ -17868,6 +17878,10 @@ export class GetOperationsRequest extends Message {
17868
17878
  * @generated from field: optional string clientName = 3;
17869
17879
  */
17870
17880
  clientName;
17881
+ /**
17882
+ * @generated from field: optional int32 limit = 4;
17883
+ */
17884
+ limit;
17871
17885
  constructor(data) {
17872
17886
  super();
17873
17887
  proto3.util.initPartial(data, this);
@@ -17878,6 +17892,7 @@ export class GetOperationsRequest extends Message {
17878
17892
  { no: 1, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17879
17893
  { no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17880
17894
  { no: 3, name: "clientName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
17895
+ { no: 4, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
17881
17896
  ]);
17882
17897
  static fromBinary(bytes, options) {
17883
17898
  return new GetOperationsRequest().fromBinary(bytes, options);