@wundergraph/cosmo-connect 0.77.1 → 0.78.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.
@@ -374,6 +374,14 @@ export declare class PublishFederatedSubgraphRequest extends Message<PublishFede
374
374
  * @generated from field: optional wg.cosmo.common.GraphQLWebsocketSubprotocol websocket_subprotocol = 9;
375
375
  */
376
376
  websocketSubprotocol?: GraphQLWebsocketSubprotocol;
377
+ /**
378
+ * @generated from field: optional bool is_feature_subgraph = 10;
379
+ */
380
+ isFeatureSubgraph?: boolean;
381
+ /**
382
+ * @generated from field: optional string base_subgraph_name = 11;
383
+ */
384
+ baseSubgraphName?: string;
377
385
  constructor(data?: PartialMessage<PublishFederatedSubgraphRequest>);
378
386
  static readonly runtime: typeof proto3;
379
387
  static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphRequest";
@@ -522,6 +522,14 @@ export class PublishFederatedSubgraphRequest extends Message {
522
522
  * @generated from field: optional wg.cosmo.common.GraphQLWebsocketSubprotocol websocket_subprotocol = 9;
523
523
  */
524
524
  websocketSubprotocol;
525
+ /**
526
+ * @generated from field: optional bool is_feature_subgraph = 10;
527
+ */
528
+ isFeatureSubgraph;
529
+ /**
530
+ * @generated from field: optional string base_subgraph_name = 11;
531
+ */
532
+ baseSubgraphName;
525
533
  constructor(data) {
526
534
  super();
527
535
  proto3.util.initPartial(data, this);
@@ -537,6 +545,8 @@ export class PublishFederatedSubgraphRequest extends Message {
537
545
  { no: 7, name: "subscription_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
538
546
  { no: 8, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
539
547
  { no: 9, name: "websocket_subprotocol", kind: "enum", T: proto3.getEnumType(GraphQLWebsocketSubprotocol), opt: true },
548
+ { no: 10, name: "is_feature_subgraph", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
549
+ { no: 11, name: "base_subgraph_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
540
550
  ]);
541
551
  static fromBinary(bytes, options) {
542
552
  return new PublishFederatedSubgraphRequest().fromBinary(bytes, options);