@epilot/customer-portal-client 0.38.5 → 0.38.6
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.
- package/dist/openapi.d.ts +6 -6
- package/package.json +1 -1
- package/src/openapi.json +11 -11
package/dist/openapi.d.ts
CHANGED
|
@@ -7803,11 +7803,6 @@ declare namespace Components {
|
|
|
7803
7803
|
*
|
|
7804
7804
|
*/
|
|
7805
7805
|
type_options?: VisualizationTypeOption[];
|
|
7806
|
-
/**
|
|
7807
|
-
* Statistical method already applied to the data the data hook returns. Determines the chart shape used to render the values: `sum` is shown as a bar chart; `min`, `average`, and `max` are shown as a line chart. Defaults to `sum` when omitted.
|
|
7808
|
-
*
|
|
7809
|
-
*/
|
|
7810
|
-
statistical_method?: "sum" | "average" | "min" | "max";
|
|
7811
7806
|
/**
|
|
7812
7807
|
* Intervals supported for the current context. If omitted, all intervals are assumed supported.
|
|
7813
7808
|
*/
|
|
@@ -7826,7 +7821,7 @@ declare namespace Components {
|
|
|
7826
7821
|
[name: string]: string;
|
|
7827
7822
|
};
|
|
7828
7823
|
/**
|
|
7829
|
-
* Optional grouping key. Types in the same `aggregation_group` are visually combined; types in different groups (or without a group) render separately. How they combine depends on `statistical_method`:
|
|
7824
|
+
* Optional grouping key. Types in the same `aggregation_group` are visually combined; types in different groups (or without a group) render separately. How they combine depends on each type's `statistical_method`:
|
|
7830
7825
|
* - bar chart (`sum`): same-group types are stacked into a single bar (e.g. ht/nt
|
|
7831
7826
|
* summed into total consumption); different-group types render side-by-side.
|
|
7832
7827
|
* - line chart (`min` / `average` / `max`): same-group types are rendered as an
|
|
@@ -7834,6 +7829,11 @@ declare namespace Components {
|
|
|
7834
7829
|
*
|
|
7835
7830
|
*/
|
|
7836
7831
|
aggregation_group?: string;
|
|
7832
|
+
/**
|
|
7833
|
+
* Statistical method already applied to this type's data. Determines the chart shape used to render the type's values: `sum` is shown as a bar chart; `min`, `average`, and `max` are shown as a line chart. Each type advertises its own method, so a single visualization can mix bar-shaped types with line-shaped types. Defaults to `sum` when omitted.
|
|
7834
|
+
*
|
|
7835
|
+
*/
|
|
7836
|
+
statistical_method?: "sum" | "average" | "min" | "max";
|
|
7837
7837
|
/**
|
|
7838
7838
|
* Unit shared by all values of this type (e.g. "kWh").
|
|
7839
7839
|
*/
|
package/package.json
CHANGED
package/src/openapi.json
CHANGED
|
@@ -13810,16 +13810,6 @@
|
|
|
13810
13810
|
"$ref": "#/components/schemas/VisualizationTypeOption"
|
|
13811
13811
|
}
|
|
13812
13812
|
},
|
|
13813
|
-
"statistical_method": {
|
|
13814
|
-
"type": "string",
|
|
13815
|
-
"enum": [
|
|
13816
|
-
"sum",
|
|
13817
|
-
"average",
|
|
13818
|
-
"min",
|
|
13819
|
-
"max"
|
|
13820
|
-
],
|
|
13821
|
-
"description": "Statistical method already applied to the data the data hook returns. Determines the chart shape used to render the values: `sum` is shown as a bar chart; `min`, `average`, and `max` are shown as a line chart. Defaults to `sum` when omitted.\n"
|
|
13822
|
-
},
|
|
13823
13813
|
"intervals": {
|
|
13824
13814
|
"type": "array",
|
|
13825
13815
|
"description": "Intervals supported for the current context. If omitted, all intervals are assumed supported.",
|
|
@@ -13854,7 +13844,17 @@
|
|
|
13854
13844
|
},
|
|
13855
13845
|
"aggregation_group": {
|
|
13856
13846
|
"type": "string",
|
|
13857
|
-
"description": "Optional grouping key. Types in the same `aggregation_group` are visually combined; types in different groups (or without a group) render separately. How they combine depends on `statistical_method`:\n - bar chart (`sum`): same-group types are stacked into a single bar (e.g. ht/nt\n summed into total consumption); different-group types render side-by-side.\n - line chart (`min` / `average` / `max`): same-group types are rendered as an\n area chart; different-group types render as separate lines.\n"
|
|
13847
|
+
"description": "Optional grouping key. Types in the same `aggregation_group` are visually combined; types in different groups (or without a group) render separately. How they combine depends on each type's `statistical_method`:\n - bar chart (`sum`): same-group types are stacked into a single bar (e.g. ht/nt\n summed into total consumption); different-group types render side-by-side.\n - line chart (`min` / `average` / `max`): same-group types are rendered as an\n area chart; different-group types render as separate lines.\n"
|
|
13848
|
+
},
|
|
13849
|
+
"statistical_method": {
|
|
13850
|
+
"type": "string",
|
|
13851
|
+
"enum": [
|
|
13852
|
+
"sum",
|
|
13853
|
+
"average",
|
|
13854
|
+
"min",
|
|
13855
|
+
"max"
|
|
13856
|
+
],
|
|
13857
|
+
"description": "Statistical method already applied to this type's data. Determines the chart shape used to render the type's values: `sum` is shown as a bar chart; `min`, `average`, and `max` are shown as a line chart. Each type advertises its own method, so a single visualization can mix bar-shaped types with line-shaped types. Defaults to `sum` when omitted.\n"
|
|
13858
13858
|
},
|
|
13859
13859
|
"unit": {
|
|
13860
13860
|
"type": "string",
|