@wundergraph/cosmo-connect 0.74.1 → 0.75.1

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.
@@ -1416,6 +1416,10 @@ export declare class Subgraph extends Message<Subgraph> {
1416
1416
  * @generated from field: bool isEventDrivenGraph = 13;
1417
1417
  */
1418
1418
  isEventDrivenGraph: boolean;
1419
+ /**
1420
+ * @generated from field: string websocketSubprotocol = 14;
1421
+ */
1422
+ websocketSubprotocol: string;
1419
1423
  constructor(data?: PartialMessage<Subgraph>);
1420
1424
  static readonly runtime: typeof proto3;
1421
1425
  static readonly typeName = "wg.cosmo.platform.v1.Subgraph";
@@ -2171,6 +2175,10 @@ export declare class FederatedGraphChangelogOutput extends Message<FederatedGrap
2171
2175
  * @generated from field: repeated wg.cosmo.platform.v1.FederatedGraphChangelog changelogs = 3;
2172
2176
  */
2173
2177
  changelogs: FederatedGraphChangelog[];
2178
+ /**
2179
+ * @generated from field: string compositionId = 4;
2180
+ */
2181
+ compositionId: string;
2174
2182
  constructor(data?: PartialMessage<FederatedGraphChangelogOutput>);
2175
2183
  static readonly runtime: typeof proto3;
2176
2184
  static readonly typeName = "wg.cosmo.platform.v1.FederatedGraphChangelogOutput";
@@ -2099,6 +2099,10 @@ export class Subgraph extends Message {
2099
2099
  * @generated from field: bool isEventDrivenGraph = 13;
2100
2100
  */
2101
2101
  isEventDrivenGraph = false;
2102
+ /**
2103
+ * @generated from field: string websocketSubprotocol = 14;
2104
+ */
2105
+ websocketSubprotocol = "";
2102
2106
  constructor(data) {
2103
2107
  super();
2104
2108
  proto3.util.initPartial(data, this);
@@ -2119,6 +2123,7 @@ export class Subgraph extends Message {
2119
2123
  { no: 11, name: "subscriptionProtocol", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2120
2124
  { no: 12, name: "isV2Graph", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
2121
2125
  { no: 13, name: "isEventDrivenGraph", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
2126
+ { no: 14, name: "websocketSubprotocol", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2122
2127
  ]);
2123
2128
  static fromBinary(bytes, options) {
2124
2129
  return new Subgraph().fromBinary(bytes, options);
@@ -3289,6 +3294,10 @@ export class FederatedGraphChangelogOutput extends Message {
3289
3294
  * @generated from field: repeated wg.cosmo.platform.v1.FederatedGraphChangelog changelogs = 3;
3290
3295
  */
3291
3296
  changelogs = [];
3297
+ /**
3298
+ * @generated from field: string compositionId = 4;
3299
+ */
3300
+ compositionId = "";
3292
3301
  constructor(data) {
3293
3302
  super();
3294
3303
  proto3.util.initPartial(data, this);
@@ -3299,6 +3308,7 @@ export class FederatedGraphChangelogOutput extends Message {
3299
3308
  { no: 1, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3300
3309
  { no: 2, name: "schemaVersionId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3301
3310
  { no: 3, name: "changelogs", kind: "message", T: FederatedGraphChangelog, repeated: true },
3311
+ { no: 4, name: "compositionId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3302
3312
  ]);
3303
3313
  static fromBinary(bytes, options) {
3304
3314
  return new FederatedGraphChangelogOutput().fromBinary(bytes, options);