@sentio/api 1.0.4-rc.12 → 1.0.4-rc.13

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.
@@ -3402,7 +3402,7 @@ export declare namespace web_service {
3402
3402
  type NoteVerticalAlignment = 'TOP' | 'MIDDLE' | 'BOTTOM';
3403
3403
  /**
3404
3404
  * An additional graph overlaid on the primary chart, with its own queries
3405
- * and Y-axis configuration. Chart type is inherited from the parent chart.
3405
+ * and Y-axis configuration. Chart type defaults to the parent chart type.
3406
3406
  */
3407
3407
  type OverlayGraph = {
3408
3408
  insightsQueries?: Array<insights_service.QueryRequestQuery>;
@@ -3415,6 +3415,7 @@ export declare namespace web_service {
3415
3415
  sqlQuery?: string;
3416
3416
  sqlQueryId?: string;
3417
3417
  sqlExecuteEngine?: analytic_service.ExecuteEngine;
3418
+ chartType?: ChartType2;
3418
3419
  };
3419
3420
  type Panel = {
3420
3421
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.4-rc.12",
3
+ "version": "1.0.4-rc.13",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/types.gen.ts CHANGED
@@ -3416,7 +3416,7 @@ export namespace web_service {
3416
3416
  export type NoteVerticalAlignment = 'TOP' | 'MIDDLE' | 'BOTTOM';
3417
3417
  /**
3418
3418
  * An additional graph overlaid on the primary chart, with its own queries
3419
- * and Y-axis configuration. Chart type is inherited from the parent chart.
3419
+ * and Y-axis configuration. Chart type defaults to the parent chart type.
3420
3420
  */
3421
3421
  export type OverlayGraph = {
3422
3422
  insightsQueries?: Array<insights_service.QueryRequestQuery>;
@@ -3429,6 +3429,7 @@ export namespace web_service {
3429
3429
  sqlQuery?: string;
3430
3430
  sqlQueryId?: string;
3431
3431
  sqlExecuteEngine?: analytic_service.ExecuteEngine;
3432
+ chartType?: ChartType2;
3432
3433
  };
3433
3434
  export type Panel = {
3434
3435
  id?: string;