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