@wundergraph/cosmo-connect 0.115.0 → 0.115.1
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.
|
@@ -11414,6 +11414,10 @@ export declare class GetOperationsRequest extends Message<GetOperationsRequest>
|
|
|
11414
11414
|
* @generated from field: optional string clientName = 3;
|
|
11415
11415
|
*/
|
|
11416
11416
|
clientName?: string;
|
|
11417
|
+
/**
|
|
11418
|
+
* @generated from field: optional int32 limit = 4;
|
|
11419
|
+
*/
|
|
11420
|
+
limit?: number;
|
|
11417
11421
|
constructor(data?: PartialMessage<GetOperationsRequest>);
|
|
11418
11422
|
static readonly runtime: typeof proto3;
|
|
11419
11423
|
static readonly typeName = "wg.cosmo.platform.v1.GetOperationsRequest";
|
|
@@ -17868,6 +17868,10 @@ export class GetOperationsRequest extends Message {
|
|
|
17868
17868
|
* @generated from field: optional string clientName = 3;
|
|
17869
17869
|
*/
|
|
17870
17870
|
clientName;
|
|
17871
|
+
/**
|
|
17872
|
+
* @generated from field: optional int32 limit = 4;
|
|
17873
|
+
*/
|
|
17874
|
+
limit;
|
|
17871
17875
|
constructor(data) {
|
|
17872
17876
|
super();
|
|
17873
17877
|
proto3.util.initPartial(data, this);
|
|
@@ -17878,6 +17882,7 @@ export class GetOperationsRequest extends Message {
|
|
|
17878
17882
|
{ no: 1, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17879
17883
|
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17880
17884
|
{ no: 3, name: "clientName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
17885
|
+
{ no: 4, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
|
|
17881
17886
|
]);
|
|
17882
17887
|
static fromBinary(bytes, options) {
|
|
17883
17888
|
return new GetOperationsRequest().fromBinary(bytes, options);
|