@rlvt/statistics-openapi-client 1.0.1 → 1.0.2
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/build/definitions.d.ts +2 -0
- package/package.json +1 -1
package/build/definitions.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export declare type Measure = {
|
|
|
3
3
|
name: string;
|
|
4
4
|
format?: "number" | "currency" | "percent";
|
|
5
5
|
unit?: string;
|
|
6
|
+
isVisible: boolean;
|
|
6
7
|
};
|
|
7
8
|
export declare type Dimension = {
|
|
8
9
|
id: string;
|
|
@@ -10,6 +11,7 @@ export declare type Dimension = {
|
|
|
10
11
|
name: string;
|
|
11
12
|
format?: "number" | "currency" | "percent";
|
|
12
13
|
unit?: string;
|
|
14
|
+
isVisible: boolean;
|
|
13
15
|
};
|
|
14
16
|
export declare type Serie = {
|
|
15
17
|
dimensions: {
|
package/package.json
CHANGED