@wundergraph/cosmo-connect 0.56.1 → 0.57.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.
@@ -279,6 +279,10 @@ export declare class PublishFederatedSubgraphRequest extends Message<PublishFede
279
279
  * @generated from field: string namespace = 8;
280
280
  */
281
281
  namespace: string;
282
+ /**
283
+ * @generated from field: optional bool unset_labels = 9;
284
+ */
285
+ unsetLabels?: boolean;
282
286
  constructor(data?: PartialMessage<PublishFederatedSubgraphRequest>);
283
287
  static readonly runtime: typeof proto3;
284
288
  static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphRequest";
@@ -1834,6 +1838,10 @@ export declare class UpdateSubgraphRequest extends Message<UpdateSubgraphRequest
1834
1838
  * @generated from field: string namespace = 8;
1835
1839
  */
1836
1840
  namespace: string;
1841
+ /**
1842
+ * @generated from field: optional bool unset_labels = 9;
1843
+ */
1844
+ unsetLabels?: boolean;
1837
1845
  constructor(data?: PartialMessage<UpdateSubgraphRequest>);
1838
1846
  static readonly runtime: typeof proto3;
1839
1847
  static readonly typeName = "wg.cosmo.platform.v1.UpdateSubgraphRequest";
@@ -1888,6 +1896,10 @@ export declare class UpdateFederatedGraphRequest extends Message<UpdateFederated
1888
1896
  * @generated from field: string namespace = 5;
1889
1897
  */
1890
1898
  namespace: string;
1899
+ /**
1900
+ * @generated from field: optional bool unset_label_matchers = 6;
1901
+ */
1902
+ unsetLabelMatchers?: boolean;
1891
1903
  constructor(data?: PartialMessage<UpdateFederatedGraphRequest>);
1892
1904
  static readonly runtime: typeof proto3;
1893
1905
  static readonly typeName = "wg.cosmo.platform.v1.UpdateFederatedGraphRequest";
@@ -378,6 +378,10 @@ export class PublishFederatedSubgraphRequest extends Message {
378
378
  * @generated from field: string namespace = 8;
379
379
  */
380
380
  namespace = "";
381
+ /**
382
+ * @generated from field: optional bool unset_labels = 9;
383
+ */
384
+ unsetLabels;
381
385
  constructor(data) {
382
386
  super();
383
387
  proto3.util.initPartial(data, this);
@@ -393,6 +397,7 @@ export class PublishFederatedSubgraphRequest extends Message {
393
397
  { no: 6, name: "subscription_protocol", kind: "enum", T: proto3.getEnumType(GraphQLSubscriptionProtocol), opt: true },
394
398
  { no: 7, name: "subscription_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
395
399
  { no: 8, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
400
+ { no: 9, name: "unset_labels", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
396
401
  ]);
397
402
  static fromBinary(bytes, options) {
398
403
  return new PublishFederatedSubgraphRequest().fromBinary(bytes, options);
@@ -2784,6 +2789,10 @@ export class UpdateSubgraphRequest extends Message {
2784
2789
  * @generated from field: string namespace = 8;
2785
2790
  */
2786
2791
  namespace = "";
2792
+ /**
2793
+ * @generated from field: optional bool unset_labels = 9;
2794
+ */
2795
+ unsetLabels;
2787
2796
  constructor(data) {
2788
2797
  super();
2789
2798
  proto3.util.initPartial(data, this);
@@ -2799,6 +2808,7 @@ export class UpdateSubgraphRequest extends Message {
2799
2808
  { no: 6, name: "subscription_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
2800
2809
  { no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
2801
2810
  { no: 8, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2811
+ { no: 9, name: "unset_labels", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
2802
2812
  ]);
2803
2813
  static fromBinary(bytes, options) {
2804
2814
  return new UpdateSubgraphRequest().fromBinary(bytes, options);
@@ -2872,6 +2882,10 @@ export class UpdateFederatedGraphRequest extends Message {
2872
2882
  * @generated from field: string namespace = 5;
2873
2883
  */
2874
2884
  namespace = "";
2885
+ /**
2886
+ * @generated from field: optional bool unset_label_matchers = 6;
2887
+ */
2888
+ unsetLabelMatchers;
2875
2889
  constructor(data) {
2876
2890
  super();
2877
2891
  proto3.util.initPartial(data, this);
@@ -2884,6 +2898,7 @@ export class UpdateFederatedGraphRequest extends Message {
2884
2898
  { no: 3, name: "label_matchers", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
2885
2899
  { no: 4, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
2886
2900
  { no: 5, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
2901
+ { no: 6, name: "unset_label_matchers", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
2887
2902
  ]);
2888
2903
  static fromBinary(bytes, options) {
2889
2904
  return new UpdateFederatedGraphRequest().fromBinary(bytes, options);