@sentio/api 1.0.3-rc.21 → 1.0.3-rc.23

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;
@@ -3142,6 +3143,8 @@ export declare namespace web_service {
3142
3143
  name?: string;
3143
3144
  dashboardId?: string;
3144
3145
  chart?: Chart;
3146
+ creator?: common.UserInfo;
3147
+ updater?: common.UserInfo;
3145
3148
  };
3146
3149
  type ListDashboardsData = {
3147
3150
  body?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.3-rc.21",
3
+ "version": "1.0.3-rc.23",
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;
@@ -3155,6 +3156,8 @@ export namespace web_service {
3155
3156
  name?: string;
3156
3157
  dashboardId?: string;
3157
3158
  chart?: Chart;
3159
+ creator?: common.UserInfo;
3160
+ updater?: common.UserInfo;
3158
3161
  };
3159
3162
  export type ListDashboardsData = {
3160
3163
  body?: never;