@sentio/api 1.0.3-rc.20 → 1.0.3-rc.22

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.
@@ -2918,6 +2918,7 @@ export declare namespace web_service {
2918
2918
  type ChartConfigDirection = 'HORIZONTAL' | 'VERTICAL';
2919
2919
  type ChartConfigLabelConfig = {
2920
2920
  columns?: Array<ChartConfigLabelConfigColumn>;
2921
+ alias?: string;
2921
2922
  };
2922
2923
  type ChartConfigLabelConfigColumn = {
2923
2924
  name?: string;
@@ -2997,6 +2998,7 @@ export declare namespace web_service {
2997
2998
  maxFractionDigits?: number;
2998
2999
  precision?: number;
2999
3000
  currencySymbol?: string;
3001
+ tooltipTotal?: boolean;
3000
3002
  };
3001
3003
  type ChartConfigValueConfigStyle = 'Standard' | 'Compact' | 'Scientific' | 'Percent' | 'Currency' | 'None';
3002
3004
  type ChartConfigValueFormatter = 'NumberFormatter' | 'DateFormatter' | 'StringFormatter';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.3-rc.20",
3
+ "version": "1.0.3-rc.22",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/types.gen.ts CHANGED
@@ -2931,6 +2931,7 @@ export namespace web_service {
2931
2931
  export type ChartConfigDirection = 'HORIZONTAL' | 'VERTICAL';
2932
2932
  export type ChartConfigLabelConfig = {
2933
2933
  columns?: Array<ChartConfigLabelConfigColumn>;
2934
+ alias?: string;
2934
2935
  };
2935
2936
  export type ChartConfigLabelConfigColumn = {
2936
2937
  name?: string;
@@ -3010,6 +3011,7 @@ export namespace web_service {
3010
3011
  maxFractionDigits?: number;
3011
3012
  precision?: number;
3012
3013
  currencySymbol?: string;
3014
+ tooltipTotal?: boolean;
3013
3015
  };
3014
3016
  export type ChartConfigValueConfigStyle = 'Standard' | 'Compact' | 'Scientific' | 'Percent' | 'Currency' | 'None';
3015
3017
  export type ChartConfigValueFormatter = 'NumberFormatter' | 'DateFormatter' | 'StringFormatter';