@sentio/api 1.0.3-rc.32 → 1.0.3-rc.34

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.
@@ -1095,6 +1095,9 @@ export declare namespace common {
1095
1095
  type CommunityProject = {
1096
1096
  dashAlias?: string;
1097
1097
  curated?: boolean;
1098
+ chain?: {
1099
+ [key: string]: StringList;
1100
+ };
1098
1101
  };
1099
1102
  type ComputeStats = {
1100
1103
  computedAt?: string;
@@ -3003,6 +3006,7 @@ export declare namespace web_service {
3003
3006
  labelConfig?: ChartConfigLabelConfig;
3004
3007
  scatterConfig?: ChartConfigScatterConfig;
3005
3008
  seriesConfig?: ChartConfigSeriesConfig;
3009
+ dataConfig?: ChartConfigDataConfig;
3006
3010
  };
3007
3011
  type ChartConfigBarGaugeConfig = {
3008
3012
  direction?: ChartConfigDirection;
@@ -3022,6 +3026,9 @@ export declare namespace web_service {
3022
3026
  type ChartConfigCompareTime = {
3023
3027
  ago?: common.Duration;
3024
3028
  };
3029
+ type ChartConfigDataConfig = {
3030
+ seriesLimit?: number;
3031
+ };
3025
3032
  type ChartConfigDirection = 'HORIZONTAL' | 'VERTICAL';
3026
3033
  type ChartConfigLabelConfig = {
3027
3034
  columns?: Array<ChartConfigLabelConfigColumn>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.3-rc.32",
3
+ "version": "1.0.3-rc.34",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/types.gen.ts CHANGED
@@ -1100,6 +1100,9 @@ export namespace common {
1100
1100
  export type CommunityProject = {
1101
1101
  dashAlias?: string;
1102
1102
  curated?: boolean;
1103
+ chain?: {
1104
+ [key: string]: StringList;
1105
+ };
1103
1106
  };
1104
1107
  export type ComputeStats = {
1105
1108
  computedAt?: string;
@@ -3016,6 +3019,7 @@ export namespace web_service {
3016
3019
  labelConfig?: ChartConfigLabelConfig;
3017
3020
  scatterConfig?: ChartConfigScatterConfig;
3018
3021
  seriesConfig?: ChartConfigSeriesConfig;
3022
+ dataConfig?: ChartConfigDataConfig;
3019
3023
  };
3020
3024
  export type ChartConfigBarGaugeConfig = {
3021
3025
  direction?: ChartConfigDirection;
@@ -3035,6 +3039,9 @@ export namespace web_service {
3035
3039
  export type ChartConfigCompareTime = {
3036
3040
  ago?: common.Duration;
3037
3041
  };
3042
+ export type ChartConfigDataConfig = {
3043
+ seriesLimit?: number;
3044
+ };
3038
3045
  export type ChartConfigDirection = 'HORIZONTAL' | 'VERTICAL';
3039
3046
  export type ChartConfigLabelConfig = {
3040
3047
  columns?: Array<ChartConfigLabelConfigColumn>;