@wundergraph/cosmo-connect 0.119.0 → 0.120.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.
|
@@ -11300,6 +11300,10 @@ export declare class CreateProposalResponse extends Message<CreateProposalRespon
|
|
|
11300
11300
|
* @generated from field: optional bool isLinkedPruningCheckFailed = 19;
|
|
11301
11301
|
*/
|
|
11302
11302
|
isLinkedPruningCheckFailed?: boolean;
|
|
11303
|
+
/**
|
|
11304
|
+
* @generated from field: optional bool hasLinkedSchemaChecks = 20;
|
|
11305
|
+
*/
|
|
11306
|
+
hasLinkedSchemaChecks?: boolean;
|
|
11303
11307
|
constructor(data?: PartialMessage<CreateProposalResponse>);
|
|
11304
11308
|
static readonly runtime: typeof proto3;
|
|
11305
11309
|
static readonly typeName = "wg.cosmo.platform.v1.CreateProposalResponse";
|
|
@@ -11625,6 +11629,10 @@ export declare class UpdateProposalResponse extends Message<UpdateProposalRespon
|
|
|
11625
11629
|
* @generated from field: optional bool isLinkedPruningCheckFailed = 16;
|
|
11626
11630
|
*/
|
|
11627
11631
|
isLinkedPruningCheckFailed?: boolean;
|
|
11632
|
+
/**
|
|
11633
|
+
* @generated from field: optional bool hasLinkedSchemaChecks = 17;
|
|
11634
|
+
*/
|
|
11635
|
+
hasLinkedSchemaChecks?: boolean;
|
|
11628
11636
|
constructor(data?: PartialMessage<UpdateProposalResponse>);
|
|
11629
11637
|
static readonly runtime: typeof proto3;
|
|
11630
11638
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateProposalResponse";
|
|
@@ -17657,6 +17657,10 @@ export class CreateProposalResponse extends Message {
|
|
|
17657
17657
|
* @generated from field: optional bool isLinkedPruningCheckFailed = 19;
|
|
17658
17658
|
*/
|
|
17659
17659
|
isLinkedPruningCheckFailed;
|
|
17660
|
+
/**
|
|
17661
|
+
* @generated from field: optional bool hasLinkedSchemaChecks = 20;
|
|
17662
|
+
*/
|
|
17663
|
+
hasLinkedSchemaChecks;
|
|
17660
17664
|
constructor(data) {
|
|
17661
17665
|
super();
|
|
17662
17666
|
proto3.util.initPartial(data, this);
|
|
@@ -17683,6 +17687,7 @@ export class CreateProposalResponse extends Message {
|
|
|
17683
17687
|
{ no: 17, name: "proposalName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
17684
17688
|
{ no: 18, name: "isLinkedTrafficCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
17685
17689
|
{ no: 19, name: "isLinkedPruningCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
17690
|
+
{ no: 20, name: "hasLinkedSchemaChecks", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
17686
17691
|
]);
|
|
17687
17692
|
static fromBinary(bytes, options) {
|
|
17688
17693
|
return new CreateProposalResponse().fromBinary(bytes, options);
|
|
@@ -18135,6 +18140,10 @@ export class UpdateProposalResponse extends Message {
|
|
|
18135
18140
|
* @generated from field: optional bool isLinkedPruningCheckFailed = 16;
|
|
18136
18141
|
*/
|
|
18137
18142
|
isLinkedPruningCheckFailed;
|
|
18143
|
+
/**
|
|
18144
|
+
* @generated from field: optional bool hasLinkedSchemaChecks = 17;
|
|
18145
|
+
*/
|
|
18146
|
+
hasLinkedSchemaChecks;
|
|
18138
18147
|
constructor(data) {
|
|
18139
18148
|
super();
|
|
18140
18149
|
proto3.util.initPartial(data, this);
|
|
@@ -18158,6 +18167,7 @@ export class UpdateProposalResponse extends Message {
|
|
|
18158
18167
|
{ no: 14, name: "checkUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
18159
18168
|
{ no: 15, name: "isLinkedTrafficCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
18160
18169
|
{ no: 16, name: "isLinkedPruningCheckFailed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
18170
|
+
{ no: 17, name: "hasLinkedSchemaChecks", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
18161
18171
|
]);
|
|
18162
18172
|
static fromBinary(bytes, options) {
|
|
18163
18173
|
return new UpdateProposalResponse().fromBinary(bytes, options);
|