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