@wundergraph/cosmo-connect 0.57.0 → 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
  */
@@ -2223,9 +2236,9 @@ export declare class AnalyticsViewResultFilter extends Message<AnalyticsViewResu
2223
2236
  */
2224
2237
  options: AnalyticsViewResultFilterOption[];
2225
2238
  /**
2226
- * @generated from field: optional bool custom_options = 4;
2239
+ * @generated from field: optional wg.cosmo.platform.v1.CustomOptions custom_options = 4;
2227
2240
  */
2228
- customOptions?: boolean;
2241
+ customOptions?: CustomOptions;
2229
2242
  constructor(data?: PartialMessage<AnalyticsViewResultFilter>);
2230
2243
  static readonly runtime: typeof proto3;
2231
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
  */
@@ -3395,7 +3414,7 @@ export class AnalyticsViewResultFilter extends Message {
3395
3414
  */
3396
3415
  options = [];
3397
3416
  /**
3398
- * @generated from field: optional bool custom_options = 4;
3417
+ * @generated from field: optional wg.cosmo.platform.v1.CustomOptions custom_options = 4;
3399
3418
  */
3400
3419
  customOptions;
3401
3420
  constructor(data) {
@@ -3408,7 +3427,7 @@ export class AnalyticsViewResultFilter extends Message {
3408
3427
  { no: 1, name: "columnName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3409
3428
  { no: 2, name: "title", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3410
3429
  { no: 3, name: "options", kind: "message", T: AnalyticsViewResultFilterOption, repeated: true },
3411
- { no: 4, name: "custom_options", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
3430
+ { no: 4, name: "custom_options", kind: "enum", T: proto3.getEnumType(CustomOptions), opt: true },
3412
3431
  ]);
3413
3432
  static fromBinary(bytes, options) {
3414
3433
  return new AnalyticsViewResultFilter().fromBinary(bytes, options);