@sentio/api 1.0.3-rc.33 → 1.0.3-rc.35

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.
@@ -1521,6 +1521,7 @@ export declare namespace common {
1521
1521
  username?: string;
1522
1522
  accountStatus?: UserAccountStatus;
1523
1523
  tier?: Tier;
1524
+ isOrganization?: boolean;
1524
1525
  };
1525
1526
  type UserAccountStatus = 'PENDING' | 'SET_USERNAME' | 'BANNED' | 'ACTIVE';
1526
1527
  /**
@@ -3006,6 +3007,7 @@ export declare namespace web_service {
3006
3007
  labelConfig?: ChartConfigLabelConfig;
3007
3008
  scatterConfig?: ChartConfigScatterConfig;
3008
3009
  seriesConfig?: ChartConfigSeriesConfig;
3010
+ dataConfig?: ChartConfigDataConfig;
3009
3011
  };
3010
3012
  type ChartConfigBarGaugeConfig = {
3011
3013
  direction?: ChartConfigDirection;
@@ -3025,6 +3027,9 @@ export declare namespace web_service {
3025
3027
  type ChartConfigCompareTime = {
3026
3028
  ago?: common.Duration;
3027
3029
  };
3030
+ type ChartConfigDataConfig = {
3031
+ seriesLimit?: number;
3032
+ };
3028
3033
  type ChartConfigDirection = 'HORIZONTAL' | 'VERTICAL';
3029
3034
  type ChartConfigLabelConfig = {
3030
3035
  columns?: Array<ChartConfigLabelConfigColumn>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.3-rc.33",
3
+ "version": "1.0.3-rc.35",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/types.gen.ts CHANGED
@@ -1526,6 +1526,7 @@ export namespace common {
1526
1526
  username?: string;
1527
1527
  accountStatus?: UserAccountStatus;
1528
1528
  tier?: Tier;
1529
+ isOrganization?: boolean;
1529
1530
  };
1530
1531
  export type UserAccountStatus = 'PENDING' | 'SET_USERNAME' | 'BANNED' | 'ACTIVE';
1531
1532
  /**
@@ -3019,6 +3020,7 @@ export namespace web_service {
3019
3020
  labelConfig?: ChartConfigLabelConfig;
3020
3021
  scatterConfig?: ChartConfigScatterConfig;
3021
3022
  seriesConfig?: ChartConfigSeriesConfig;
3023
+ dataConfig?: ChartConfigDataConfig;
3022
3024
  };
3023
3025
  export type ChartConfigBarGaugeConfig = {
3024
3026
  direction?: ChartConfigDirection;
@@ -3038,6 +3040,9 @@ export namespace web_service {
3038
3040
  export type ChartConfigCompareTime = {
3039
3041
  ago?: common.Duration;
3040
3042
  };
3043
+ export type ChartConfigDataConfig = {
3044
+ seriesLimit?: number;
3045
+ };
3041
3046
  export type ChartConfigDirection = 'HORIZONTAL' | 'VERTICAL';
3042
3047
  export type ChartConfigLabelConfig = {
3043
3048
  columns?: Array<ChartConfigLabelConfigColumn>;