@wundergraph/cosmo-connect 0.66.1 → 0.66.3

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";
@@ -3210,6 +3214,10 @@ export declare class CreateAPIKeyRequest extends Message<CreateAPIKeyRequest> {
3210
3214
  * @generated from field: repeated string permissions = 6;
3211
3215
  */
3212
3216
  permissions: string[];
3217
+ /**
3218
+ * @generated from field: bool allowAllResources = 7;
3219
+ */
3220
+ allowAllResources: boolean;
3213
3221
  constructor(data?: PartialMessage<CreateAPIKeyRequest>);
3214
3222
  static readonly runtime: typeof proto3;
3215
3223
  static readonly typeName = "wg.cosmo.platform.v1.CreateAPIKeyRequest";
@@ -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);
@@ -4895,6 +4900,10 @@ export class CreateAPIKeyRequest extends Message {
4895
4900
  * @generated from field: repeated string permissions = 6;
4896
4901
  */
4897
4902
  permissions = [];
4903
+ /**
4904
+ * @generated from field: bool allowAllResources = 7;
4905
+ */
4906
+ allowAllResources = false;
4898
4907
  constructor(data) {
4899
4908
  super();
4900
4909
  proto3.util.initPartial(data, this);
@@ -4908,6 +4917,7 @@ export class CreateAPIKeyRequest extends Message {
4908
4917
  { no: 4, name: "federatedGraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
4909
4918
  { no: 5, name: "subgraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
4910
4919
  { no: 6, name: "permissions", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
4920
+ { no: 7, name: "allowAllResources", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
4911
4921
  ]);
4912
4922
  static fromBinary(bytes, options) {
4913
4923
  return new CreateAPIKeyRequest().fromBinary(bytes, options);