@wundergraph/cosmo-connect 0.107.0 → 0.109.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.
|
@@ -10849,6 +10849,10 @@ export declare class CreateProposalResponse extends Message<CreateProposalRespon
|
|
|
10849
10849
|
* @generated from field: string checkUrl = 15;
|
|
10850
10850
|
*/
|
|
10851
10851
|
checkUrl: string;
|
|
10852
|
+
/**
|
|
10853
|
+
* @generated from field: string proposalUrl = 16;
|
|
10854
|
+
*/
|
|
10855
|
+
proposalUrl: string;
|
|
10852
10856
|
constructor(data?: PartialMessage<CreateProposalResponse>);
|
|
10853
10857
|
static readonly runtime: typeof proto3;
|
|
10854
10858
|
static readonly typeName = "wg.cosmo.platform.v1.CreateProposalResponse";
|
|
@@ -11309,6 +11313,10 @@ export declare class GetOperationsRequest extends Message<GetOperationsRequest>
|
|
|
11309
11313
|
* @generated from field: string namespace = 2;
|
|
11310
11314
|
*/
|
|
11311
11315
|
namespace: string;
|
|
11316
|
+
/**
|
|
11317
|
+
* @generated from field: optional string clientName = 3;
|
|
11318
|
+
*/
|
|
11319
|
+
clientName?: string;
|
|
11312
11320
|
constructor(data?: PartialMessage<GetOperationsRequest>);
|
|
11313
11321
|
static readonly runtime: typeof proto3;
|
|
11314
11322
|
static readonly typeName = "wg.cosmo.platform.v1.GetOperationsRequest";
|
|
@@ -17017,6 +17017,10 @@ export class CreateProposalResponse extends Message {
|
|
|
17017
17017
|
* @generated from field: string checkUrl = 15;
|
|
17018
17018
|
*/
|
|
17019
17019
|
checkUrl = "";
|
|
17020
|
+
/**
|
|
17021
|
+
* @generated from field: string proposalUrl = 16;
|
|
17022
|
+
*/
|
|
17023
|
+
proposalUrl = "";
|
|
17020
17024
|
constructor(data) {
|
|
17021
17025
|
super();
|
|
17022
17026
|
proto3.util.initPartial(data, this);
|
|
@@ -17039,6 +17043,7 @@ export class CreateProposalResponse extends Message {
|
|
|
17039
17043
|
{ no: 13, name: "lintingSkipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
17040
17044
|
{ no: 14, name: "graphPruningSkipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
17041
17045
|
{ no: 15, name: "checkUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17046
|
+
{ no: 16, name: "proposalUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17042
17047
|
]);
|
|
17043
17048
|
static fromBinary(bytes, options) {
|
|
17044
17049
|
return new CreateProposalResponse().fromBinary(bytes, options);
|
|
@@ -17736,6 +17741,10 @@ export class GetOperationsRequest extends Message {
|
|
|
17736
17741
|
* @generated from field: string namespace = 2;
|
|
17737
17742
|
*/
|
|
17738
17743
|
namespace = "";
|
|
17744
|
+
/**
|
|
17745
|
+
* @generated from field: optional string clientName = 3;
|
|
17746
|
+
*/
|
|
17747
|
+
clientName;
|
|
17739
17748
|
constructor(data) {
|
|
17740
17749
|
super();
|
|
17741
17750
|
proto3.util.initPartial(data, this);
|
|
@@ -17745,6 +17754,7 @@ export class GetOperationsRequest extends Message {
|
|
|
17745
17754
|
static fields = proto3.util.newFieldList(() => [
|
|
17746
17755
|
{ no: 1, name: "federatedGraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17747
17756
|
{ no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17757
|
+
{ no: 3, name: "clientName", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
17748
17758
|
]);
|
|
17749
17759
|
static fromBinary(bytes, options) {
|
|
17750
17760
|
return new GetOperationsRequest().fromBinary(bytes, options);
|