@wundergraph/cosmo-connect 0.56.1 → 0.58.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.
|
@@ -23,6 +23,19 @@ export declare enum AnalyticsViewGroupName {
|
|
|
23
23
|
*/
|
|
24
24
|
HttpStatusCode = 3
|
|
25
25
|
}
|
|
26
|
+
/**
|
|
27
|
+
* @generated from enum wg.cosmo.platform.v1.CustomOptions
|
|
28
|
+
*/
|
|
29
|
+
export declare enum CustomOptions {
|
|
30
|
+
/**
|
|
31
|
+
* @generated from enum value: Text = 0;
|
|
32
|
+
*/
|
|
33
|
+
Text = 0,
|
|
34
|
+
/**
|
|
35
|
+
* @generated from enum value: Range = 1;
|
|
36
|
+
*/
|
|
37
|
+
Range = 1
|
|
38
|
+
}
|
|
26
39
|
/**
|
|
27
40
|
* @generated from enum wg.cosmo.platform.v1.Unit
|
|
28
41
|
*/
|
|
@@ -279,6 +292,10 @@ export declare class PublishFederatedSubgraphRequest extends Message<PublishFede
|
|
|
279
292
|
* @generated from field: string namespace = 8;
|
|
280
293
|
*/
|
|
281
294
|
namespace: string;
|
|
295
|
+
/**
|
|
296
|
+
* @generated from field: optional bool unset_labels = 9;
|
|
297
|
+
*/
|
|
298
|
+
unsetLabels?: boolean;
|
|
282
299
|
constructor(data?: PartialMessage<PublishFederatedSubgraphRequest>);
|
|
283
300
|
static readonly runtime: typeof proto3;
|
|
284
301
|
static readonly typeName = "wg.cosmo.platform.v1.PublishFederatedSubgraphRequest";
|
|
@@ -1834,6 +1851,10 @@ export declare class UpdateSubgraphRequest extends Message<UpdateSubgraphRequest
|
|
|
1834
1851
|
* @generated from field: string namespace = 8;
|
|
1835
1852
|
*/
|
|
1836
1853
|
namespace: string;
|
|
1854
|
+
/**
|
|
1855
|
+
* @generated from field: optional bool unset_labels = 9;
|
|
1856
|
+
*/
|
|
1857
|
+
unsetLabels?: boolean;
|
|
1837
1858
|
constructor(data?: PartialMessage<UpdateSubgraphRequest>);
|
|
1838
1859
|
static readonly runtime: typeof proto3;
|
|
1839
1860
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateSubgraphRequest";
|
|
@@ -1888,6 +1909,10 @@ export declare class UpdateFederatedGraphRequest extends Message<UpdateFederated
|
|
|
1888
1909
|
* @generated from field: string namespace = 5;
|
|
1889
1910
|
*/
|
|
1890
1911
|
namespace: string;
|
|
1912
|
+
/**
|
|
1913
|
+
* @generated from field: optional bool unset_label_matchers = 6;
|
|
1914
|
+
*/
|
|
1915
|
+
unsetLabelMatchers?: boolean;
|
|
1891
1916
|
constructor(data?: PartialMessage<UpdateFederatedGraphRequest>);
|
|
1892
1917
|
static readonly runtime: typeof proto3;
|
|
1893
1918
|
static readonly typeName = "wg.cosmo.platform.v1.UpdateFederatedGraphRequest";
|
|
@@ -2211,9 +2236,9 @@ export declare class AnalyticsViewResultFilter extends Message<AnalyticsViewResu
|
|
|
2211
2236
|
*/
|
|
2212
2237
|
options: AnalyticsViewResultFilterOption[];
|
|
2213
2238
|
/**
|
|
2214
|
-
* @generated from field: optional
|
|
2239
|
+
* @generated from field: optional wg.cosmo.platform.v1.CustomOptions custom_options = 4;
|
|
2215
2240
|
*/
|
|
2216
|
-
customOptions?:
|
|
2241
|
+
customOptions?: CustomOptions;
|
|
2217
2242
|
constructor(data?: PartialMessage<AnalyticsViewResultFilter>);
|
|
2218
2243
|
static readonly runtime: typeof proto3;
|
|
2219
2244
|
static readonly typeName = "wg.cosmo.platform.v1.AnalyticsViewResultFilter";
|
|
@@ -31,6 +31,25 @@ proto3.util.setEnumType(AnalyticsViewGroupName, "wg.cosmo.platform.v1.AnalyticsV
|
|
|
31
31
|
{ no: 2, name: "Client" },
|
|
32
32
|
{ no: 3, name: "HttpStatusCode" },
|
|
33
33
|
]);
|
|
34
|
+
/**
|
|
35
|
+
* @generated from enum wg.cosmo.platform.v1.CustomOptions
|
|
36
|
+
*/
|
|
37
|
+
export var CustomOptions;
|
|
38
|
+
(function (CustomOptions) {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from enum value: Text = 0;
|
|
41
|
+
*/
|
|
42
|
+
CustomOptions[CustomOptions["Text"] = 0] = "Text";
|
|
43
|
+
/**
|
|
44
|
+
* @generated from enum value: Range = 1;
|
|
45
|
+
*/
|
|
46
|
+
CustomOptions[CustomOptions["Range"] = 1] = "Range";
|
|
47
|
+
})(CustomOptions || (CustomOptions = {}));
|
|
48
|
+
// Retrieve enum metadata with: proto3.getEnumType(CustomOptions)
|
|
49
|
+
proto3.util.setEnumType(CustomOptions, "wg.cosmo.platform.v1.CustomOptions", [
|
|
50
|
+
{ no: 0, name: "Text" },
|
|
51
|
+
{ no: 1, name: "Range" },
|
|
52
|
+
]);
|
|
34
53
|
/**
|
|
35
54
|
* @generated from enum wg.cosmo.platform.v1.Unit
|
|
36
55
|
*/
|
|
@@ -378,6 +397,10 @@ export class PublishFederatedSubgraphRequest extends Message {
|
|
|
378
397
|
* @generated from field: string namespace = 8;
|
|
379
398
|
*/
|
|
380
399
|
namespace = "";
|
|
400
|
+
/**
|
|
401
|
+
* @generated from field: optional bool unset_labels = 9;
|
|
402
|
+
*/
|
|
403
|
+
unsetLabels;
|
|
381
404
|
constructor(data) {
|
|
382
405
|
super();
|
|
383
406
|
proto3.util.initPartial(data, this);
|
|
@@ -393,6 +416,7 @@ export class PublishFederatedSubgraphRequest extends Message {
|
|
|
393
416
|
{ no: 6, name: "subscription_protocol", kind: "enum", T: proto3.getEnumType(GraphQLSubscriptionProtocol), opt: true },
|
|
394
417
|
{ no: 7, name: "subscription_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
395
418
|
{ no: 8, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
419
|
+
{ no: 9, name: "unset_labels", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
396
420
|
]);
|
|
397
421
|
static fromBinary(bytes, options) {
|
|
398
422
|
return new PublishFederatedSubgraphRequest().fromBinary(bytes, options);
|
|
@@ -2784,6 +2808,10 @@ export class UpdateSubgraphRequest extends Message {
|
|
|
2784
2808
|
* @generated from field: string namespace = 8;
|
|
2785
2809
|
*/
|
|
2786
2810
|
namespace = "";
|
|
2811
|
+
/**
|
|
2812
|
+
* @generated from field: optional bool unset_labels = 9;
|
|
2813
|
+
*/
|
|
2814
|
+
unsetLabels;
|
|
2787
2815
|
constructor(data) {
|
|
2788
2816
|
super();
|
|
2789
2817
|
proto3.util.initPartial(data, this);
|
|
@@ -2799,6 +2827,7 @@ export class UpdateSubgraphRequest extends Message {
|
|
|
2799
2827
|
{ no: 6, name: "subscription_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2800
2828
|
{ no: 7, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2801
2829
|
{ no: 8, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2830
|
+
{ no: 9, name: "unset_labels", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
2802
2831
|
]);
|
|
2803
2832
|
static fromBinary(bytes, options) {
|
|
2804
2833
|
return new UpdateSubgraphRequest().fromBinary(bytes, options);
|
|
@@ -2872,6 +2901,10 @@ export class UpdateFederatedGraphRequest extends Message {
|
|
|
2872
2901
|
* @generated from field: string namespace = 5;
|
|
2873
2902
|
*/
|
|
2874
2903
|
namespace = "";
|
|
2904
|
+
/**
|
|
2905
|
+
* @generated from field: optional bool unset_label_matchers = 6;
|
|
2906
|
+
*/
|
|
2907
|
+
unsetLabelMatchers;
|
|
2875
2908
|
constructor(data) {
|
|
2876
2909
|
super();
|
|
2877
2910
|
proto3.util.initPartial(data, this);
|
|
@@ -2884,6 +2917,7 @@ export class UpdateFederatedGraphRequest extends Message {
|
|
|
2884
2917
|
{ no: 3, name: "label_matchers", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
2885
2918
|
{ no: 4, name: "readme", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
2886
2919
|
{ no: 5, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
2920
|
+
{ no: 6, name: "unset_label_matchers", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
|
|
2887
2921
|
]);
|
|
2888
2922
|
static fromBinary(bytes, options) {
|
|
2889
2923
|
return new UpdateFederatedGraphRequest().fromBinary(bytes, options);
|
|
@@ -3380,7 +3414,7 @@ export class AnalyticsViewResultFilter extends Message {
|
|
|
3380
3414
|
*/
|
|
3381
3415
|
options = [];
|
|
3382
3416
|
/**
|
|
3383
|
-
* @generated from field: optional
|
|
3417
|
+
* @generated from field: optional wg.cosmo.platform.v1.CustomOptions custom_options = 4;
|
|
3384
3418
|
*/
|
|
3385
3419
|
customOptions;
|
|
3386
3420
|
constructor(data) {
|
|
@@ -3393,7 +3427,7 @@ export class AnalyticsViewResultFilter extends Message {
|
|
|
3393
3427
|
{ no: 1, name: "columnName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3394
3428
|
{ no: 2, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3395
3429
|
{ no: 3, name: "options", kind: "message", T: AnalyticsViewResultFilterOption, repeated: true },
|
|
3396
|
-
{ no: 4, name: "custom_options", kind: "
|
|
3430
|
+
{ no: 4, name: "custom_options", kind: "enum", T: proto3.getEnumType(CustomOptions), opt: true },
|
|
3397
3431
|
]);
|
|
3398
3432
|
static fromBinary(bytes, options) {
|
|
3399
3433
|
return new AnalyticsViewResultFilter().fromBinary(bytes, options);
|