@wundergraph/cosmo-connect 0.107.0 → 0.108.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.
|
@@ -11309,6 +11309,10 @@ export declare class GetOperationsRequest extends Message<GetOperationsRequest>
|
|
|
11309
11309
|
* @generated from field: string namespace = 2;
|
|
11310
11310
|
*/
|
|
11311
11311
|
namespace: string;
|
|
11312
|
+
/**
|
|
11313
|
+
* @generated from field: optional string clientName = 3;
|
|
11314
|
+
*/
|
|
11315
|
+
clientName?: string;
|
|
11312
11316
|
constructor(data?: PartialMessage<GetOperationsRequest>);
|
|
11313
11317
|
static readonly runtime: typeof proto3;
|
|
11314
11318
|
static readonly typeName = "wg.cosmo.platform.v1.GetOperationsRequest";
|
|
@@ -17736,6 +17736,10 @@ export class GetOperationsRequest extends Message {
|
|
|
17736
17736
|
* @generated from field: string namespace = 2;
|
|
17737
17737
|
*/
|
|
17738
17738
|
namespace = "";
|
|
17739
|
+
/**
|
|
17740
|
+
* @generated from field: optional string clientName = 3;
|
|
17741
|
+
*/
|
|
17742
|
+
clientName;
|
|
17739
17743
|
constructor(data) {
|
|
17740
17744
|
super();
|
|
17741
17745
|
proto3.util.initPartial(data, this);
|
|
@@ -17745,6 +17749,7 @@ export class GetOperationsRequest extends Message {
|
|
|
17745
17749
|
static fields = proto3.util.newFieldList(() => [
|
|
17746
17750
|
{ no: 1, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17747
17751
|
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17752
|
+
{ no: 3, name: "clientName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
17748
17753
|
]);
|
|
17749
17754
|
static fromBinary(bytes, options) {
|
|
17750
17755
|
return new GetOperationsRequest().fromBinary(bytes, options);
|