@wundergraph/cosmo-connect 0.148.0 → 0.149.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.
|
@@ -10278,6 +10278,10 @@ export declare class UpdateFeatureFlagResponse extends Message<UpdateFeatureFlag
|
|
|
10278
10278
|
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
10279
10279
|
*/
|
|
10280
10280
|
compositionWarnings: CompositionWarning[];
|
|
10281
|
+
/**
|
|
10282
|
+
* @generated from field: optional bool has_changed = 5;
|
|
10283
|
+
*/
|
|
10284
|
+
hasChanged?: boolean;
|
|
10281
10285
|
constructor(data?: PartialMessage<UpdateFeatureFlagResponse>);
|
|
10282
10286
|
static readonly runtime: typeof proto3;
|
|
10283
10287
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateFeatureFlagResponse";
|
|
@@ -15998,6 +15998,10 @@ export class UpdateFeatureFlagResponse extends Message {
|
|
|
15998
15998
|
* @generated from field: repeated wg.cosmo.platform.v1.CompositionWarning compositionWarnings = 4;
|
|
15999
15999
|
*/
|
|
16000
16000
|
compositionWarnings = [];
|
|
16001
|
+
/**
|
|
16002
|
+
* @generated from field: optional bool has_changed = 5;
|
|
16003
|
+
*/
|
|
16004
|
+
hasChanged;
|
|
16001
16005
|
constructor(data) {
|
|
16002
16006
|
super();
|
|
16003
16007
|
proto3.util.initPartial(data, this);
|
|
@@ -16009,6 +16013,7 @@ export class UpdateFeatureFlagResponse extends Message {
|
|
|
16009
16013
|
{ no: 2, name: "composition_errors", kind: "message", T: CompositionError, repeated: true },
|
|
16010
16014
|
{ no: 3, name: "deployment_errors", kind: "message", T: DeploymentError, repeated: true },
|
|
16011
16015
|
{ no: 4, name: "compositionWarnings", kind: "message", T: CompositionWarning, repeated: true },
|
|
16016
|
+
{ no: 5, name: "has_changed", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
16012
16017
|
]);
|
|
16013
16018
|
static fromBinary(bytes, options) {
|
|
16014
16019
|
return new UpdateFeatureFlagResponse().fromBinary(bytes, options);
|