@wundergraph/cosmo-connect 0.66.1 → 0.66.2

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.
@@ -399,6 +399,10 @@ export declare class PublishFederatedSubgraphResponse extends Message<PublishFed
399
399
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
400
400
  */
401
401
  deploymentErrors: DeploymentError[];
402
+ /**
403
+ * @generated from field: optional bool hasChanged = 4;
404
+ */
405
+ hasChanged?: boolean;
402
406
  constructor(data?: PartialMessage<PublishFederatedSubgraphResponse>);
403
407
  static readonly runtime: typeof proto3;
404
408
  static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphResponse";
@@ -567,6 +567,10 @@ export class PublishFederatedSubgraphResponse extends Message {
567
567
  * @generated from field: repeated wg.cosmo.platform.v1.DeploymentError deploymentErrors = 3;
568
568
  */
569
569
  deploymentErrors = [];
570
+ /**
571
+ * @generated from field: optional bool hasChanged = 4;
572
+ */
573
+ hasChanged;
570
574
  constructor(data) {
571
575
  super();
572
576
  proto3.util.initPartial(data, this);
@@ -577,6 +581,7 @@ export class PublishFederatedSubgraphResponse extends Message {
577
581
  { no: 1, name: "response", kind: "message", T: Response },
578
582
  { no: 2, name: "compositionErrors", kind: "message", T: CompositionError, repeated: true },
579
583
  { no: 3, name: "deploymentErrors", kind: "message", T: DeploymentError, repeated: true },
584
+ { no: 4, name: "hasChanged", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
580
585
  ]);
581
586
  static fromBinary(bytes, options) {
582
587
  return new PublishFederatedSubgraphResponse().fromBinary(bytes, options);