@wundergraph/cosmo-connect 0.102.1 → 0.103.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.
|
@@ -532,6 +532,10 @@ export declare class CheckSubgraphSchemaRequest extends Message<CheckSubgraphSch
|
|
|
532
532
|
* @generated from field: optional wg.cosmo.platform.v1.VCSContext vcsContext = 7;
|
|
533
533
|
*/
|
|
534
534
|
vcsContext?: VCSContext;
|
|
535
|
+
/**
|
|
536
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 8;
|
|
537
|
+
*/
|
|
538
|
+
labels: Label[];
|
|
535
539
|
constructor(data?: PartialMessage<CheckSubgraphSchemaRequest>);
|
|
536
540
|
static readonly runtime: typeof proto3;
|
|
537
541
|
static readonly typeName = "wg.cosmo.platform.v1.CheckSubgraphSchemaRequest";
|
|
@@ -2129,6 +2133,10 @@ export declare class SchemaCheck_CheckedSubgraph extends Message<SchemaCheck_Che
|
|
|
2129
2133
|
* @generated from field: bool isNew = 5;
|
|
2130
2134
|
*/
|
|
2131
2135
|
isNew: boolean;
|
|
2136
|
+
/**
|
|
2137
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 6;
|
|
2138
|
+
*/
|
|
2139
|
+
labels: Label[];
|
|
2132
2140
|
constructor(data?: PartialMessage<SchemaCheck_CheckedSubgraph>);
|
|
2133
2141
|
static readonly runtime: typeof proto3;
|
|
2134
2142
|
static readonly typeName = "wg.cosmo.platform.v1.SchemaCheck.CheckedSubgraph";
|
|
@@ -754,6 +754,10 @@ export class CheckSubgraphSchemaRequest extends Message {
|
|
|
754
754
|
* @generated from field: optional wg.cosmo.platform.v1.VCSContext vcsContext = 7;
|
|
755
755
|
*/
|
|
756
756
|
vcsContext;
|
|
757
|
+
/**
|
|
758
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 8;
|
|
759
|
+
*/
|
|
760
|
+
labels = [];
|
|
757
761
|
constructor(data) {
|
|
758
762
|
super();
|
|
759
763
|
proto3.util.initPartial(data, this);
|
|
@@ -768,6 +772,7 @@ export class CheckSubgraphSchemaRequest extends Message {
|
|
|
768
772
|
{ no: 5, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
769
773
|
{ no: 6, name: "skip_traffic_check", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
770
774
|
{ no: 7, name: "vcsContext", kind: "message", T: VCSContext, opt: true },
|
|
775
|
+
{ no: 8, name: "labels", kind: "message", T: Label, repeated: true },
|
|
771
776
|
]);
|
|
772
777
|
static fromBinary(bytes, options) {
|
|
773
778
|
return new CheckSubgraphSchemaRequest().fromBinary(bytes, options);
|
|
@@ -3163,6 +3168,10 @@ export class SchemaCheck_CheckedSubgraph extends Message {
|
|
|
3163
3168
|
* @generated from field: bool isNew = 5;
|
|
3164
3169
|
*/
|
|
3165
3170
|
isNew = false;
|
|
3171
|
+
/**
|
|
3172
|
+
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 6;
|
|
3173
|
+
*/
|
|
3174
|
+
labels = [];
|
|
3166
3175
|
constructor(data) {
|
|
3167
3176
|
super();
|
|
3168
3177
|
proto3.util.initPartial(data, this);
|
|
@@ -3175,6 +3184,7 @@ export class SchemaCheck_CheckedSubgraph extends Message {
|
|
|
3175
3184
|
{ no: 3, name: "subgraphId", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
3176
3185
|
{ no: 4, name: "isDeleted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3177
3186
|
{ no: 5, name: "isNew", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3187
|
+
{ no: 6, name: "labels", kind: "message", T: Label, repeated: true },
|
|
3178
3188
|
]);
|
|
3179
3189
|
static fromBinary(bytes, options) {
|
|
3180
3190
|
return new SchemaCheck_CheckedSubgraph().fromBinary(bytes, options);
|