@wundergraph/cosmo-connect 0.66.0 → 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";
@@ -3923,6 +3927,10 @@ export declare class CreateOrganizationWebhookConfigResponse extends Message<Cre
3923
3927
  * @generated from field: wg.cosmo.platform.v1.Response response = 1;
3924
3928
  */
3925
3929
  response?: Response;
3930
+ /**
3931
+ * @generated from field: string webhook_config_id = 2;
3932
+ */
3933
+ webhookConfigId: string;
3926
3934
  constructor(data?: PartialMessage<CreateOrganizationWebhookConfigResponse>);
3927
3935
  static readonly runtime: typeof proto3;
3928
3936
  static readonly typeName = "wg.cosmo.platform.v1.CreateOrganizationWebhookConfigResponse";
@@ -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);
@@ -6059,6 +6064,10 @@ export class CreateOrganizationWebhookConfigResponse extends Message {
6059
6064
  * @generated from field: wg.cosmo.platform.v1.Response response = 1;
6060
6065
  */
6061
6066
  response;
6067
+ /**
6068
+ * @generated from field: string webhook_config_id = 2;
6069
+ */
6070
+ webhookConfigId = "";
6062
6071
  constructor(data) {
6063
6072
  super();
6064
6073
  proto3.util.initPartial(data, this);
@@ -6067,6 +6076,7 @@ export class CreateOrganizationWebhookConfigResponse extends Message {
6067
6076
  static typeName = "wg.cosmo.platform.v1.CreateOrganizationWebhookConfigResponse";
6068
6077
  static fields = proto3.util.newFieldList(() => [
6069
6078
  { no: 1, name: "response", kind: "message", T: Response },
6079
+ { no: 2, name: "webhook_config_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6070
6080
  ]);
6071
6081
  static fromBinary(bytes, options) {
6072
6082
  return new CreateOrganizationWebhookConfigResponse().fromBinary(bytes, options);