@wundergraph/cosmo-connect 0.66.2 → 0.67.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.
@@ -1345,6 +1345,14 @@ export declare class Subgraph extends Message<Subgraph> {
1345
1345
  * @generated from field: string namespace = 10;
1346
1346
  */
1347
1347
  namespace: string;
1348
+ /**
1349
+ * @generated from field: string subscriptionProtocol = 11;
1350
+ */
1351
+ subscriptionProtocol: string;
1352
+ /**
1353
+ * @generated from field: optional bool isV2Graph = 12;
1354
+ */
1355
+ isV2Graph?: boolean;
1348
1356
  constructor(data?: PartialMessage<Subgraph>);
1349
1357
  static readonly runtime: typeof proto3;
1350
1358
  static readonly typeName = "wg.cosmo.platform.v1.Subgraph";
@@ -3214,6 +3222,10 @@ export declare class CreateAPIKeyRequest extends Message<CreateAPIKeyRequest> {
3214
3222
  * @generated from field: repeated string permissions = 6;
3215
3223
  */
3216
3224
  permissions: string[];
3225
+ /**
3226
+ * @generated from field: bool allowAllResources = 7;
3227
+ */
3228
+ allowAllResources: boolean;
3217
3229
  constructor(data?: PartialMessage<CreateAPIKeyRequest>);
3218
3230
  static readonly runtime: typeof proto3;
3219
3231
  static readonly typeName = "wg.cosmo.platform.v1.CreateAPIKeyRequest";
@@ -2005,6 +2005,14 @@ export class Subgraph extends Message {
2005
2005
  * @generated from field: string namespace = 10;
2006
2006
  */
2007
2007
  namespace = "";
2008
+ /**
2009
+ * @generated from field: string subscriptionProtocol = 11;
2010
+ */
2011
+ subscriptionProtocol = "";
2012
+ /**
2013
+ * @generated from field: optional bool isV2Graph = 12;
2014
+ */
2015
+ isV2Graph;
2008
2016
  constructor(data) {
2009
2017
  super();
2010
2018
  proto3.util.initPartial(data, this);
@@ -2022,6 +2030,8 @@ export class Subgraph extends Message {
2022
2030
  { no: 8, name: "subscriptionUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2023
2031
  { no: 9, name: "target_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2024
2032
  { no: 10, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2033
+ { no: 11, name: "subscriptionProtocol", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2034
+ { no: 12, name: "isV2Graph", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
2025
2035
  ]);
2026
2036
  static fromBinary(bytes, options) {
2027
2037
  return new Subgraph().fromBinary(bytes, options);
@@ -4900,6 +4910,10 @@ export class CreateAPIKeyRequest extends Message {
4900
4910
  * @generated from field: repeated string permissions = 6;
4901
4911
  */
4902
4912
  permissions = [];
4913
+ /**
4914
+ * @generated from field: bool allowAllResources = 7;
4915
+ */
4916
+ allowAllResources = false;
4903
4917
  constructor(data) {
4904
4918
  super();
4905
4919
  proto3.util.initPartial(data, this);
@@ -4913,6 +4927,7 @@ export class CreateAPIKeyRequest extends Message {
4913
4927
  { no: 4, name: "federatedGraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
4914
4928
  { no: 5, name: "subgraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
4915
4929
  { no: 6, name: "permissions", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
4930
+ { no: 7, name: "allowAllResources", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
4916
4931
  ]);
4917
4932
  static fromBinary(bytes, options) {
4918
4933
  return new CreateAPIKeyRequest().fromBinary(bytes, options);