@wundergraph/cosmo-connect 0.74.1 → 0.75.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.
|
@@ -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";
|
|
@@ -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);
|