@quickbi/bi-types 3.0.42-beta.4 → 3.0.42-beta.5

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.
@@ -87,6 +87,7 @@ export declare enum DsType {
87
87
  hive = "hive",
88
88
  vertica = "vertica",
89
89
  db2 = "db2",
90
+ db2_v10 = "db2_v10",
90
91
  sybase = "sybase",
91
92
  hana = "hana",
92
93
  dla = "dla",
package/cjs/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export { OlapResponseBase, CellMeta, RowColumnMeta, CrossTableColumnType, CrossT
5
5
  export type { CrossTableHeaderMeta } from './cross-table';
6
6
  export type { IEtlMeta } from './etl';
7
7
  export { EtlPublishStatus, EtlScheduleStatus, EtlProductStatus } from './etl';
8
+ export { ResourcePageHeaderGroupEnum } from './ui/page-header';
8
9
  export { CustomEventType } from './open/events/event-props';
9
10
  export type { CustomEventModalPayload, CustomEventPageConfig, CustomEventPropsDispatch, CustomEventProps, } from './open/events/event-props';
10
11
  export type { CustomEventMeta } from './open/events/event-schema';
package/cjs/index.js CHANGED
@@ -108,6 +108,7 @@ __export(src_exports, {
108
108
  ROUTE_TREE: () => ROUTE_TREE,
109
109
  RegionGranularity: () => RegionGranularity,
110
110
  ReportSummaryInsightType: () => ReportSummaryInsightType,
111
+ ResourcePageHeaderGroupEnum: () => ResourcePageHeaderGroupEnum,
111
112
  ResultMode: () => ResultMode,
112
113
  RetainAreaId: () => RetainAreaId,
113
114
  RouteKey: () => RouteKey,
@@ -1262,6 +1263,15 @@ var EtlProductStatus;
1262
1263
  EtlProductStatus2[EtlProductStatus2["Deleted"] = 3] = "Deleted";
1263
1264
  })(EtlProductStatus || (EtlProductStatus = {}));
1264
1265
 
1266
+ // src/basic/bi-types/src/ui/page-header.ts
1267
+ var ResourcePageHeaderGroupEnum;
1268
+ (function(ResourcePageHeaderGroupEnum2) {
1269
+ ResourcePageHeaderGroupEnum2["setting"] = "setting";
1270
+ ResourcePageHeaderGroupEnum2["state"] = "state";
1271
+ ResourcePageHeaderGroupEnum2["action"] = "action";
1272
+ ResourcePageHeaderGroupEnum2["menu"] = "menu";
1273
+ })(ResourcePageHeaderGroupEnum || (ResourcePageHeaderGroupEnum = {}));
1274
+
1265
1275
  // src/basic/bi-types/src/open/common/event-types.ts
1266
1276
  var OpenEventTypeEnum;
1267
1277
  (function(OpenEventTypeEnum2) {
@@ -1785,6 +1795,7 @@ var DsType;
1785
1795
  DsType2["hive"] = "hive";
1786
1796
  DsType2["vertica"] = "vertica";
1787
1797
  DsType2["db2"] = "db2";
1798
+ DsType2["db2_v10"] = "db2_v10";
1788
1799
  DsType2["sybase"] = "sybase";
1789
1800
  DsType2["hana"] = "hana";
1790
1801
  DsType2["dla"] = "dla";
@@ -2104,6 +2115,17 @@ var RouteKey;
2104
2115
  RouteKey2["mobileCustom3"] = "mobileCustom3";
2105
2116
  RouteKey2["mobileCustom4"] = "mobileCustom4";
2106
2117
  RouteKey2["mobileError"] = "mobileError";
2118
+ RouteKey2["openPlatRoot"] = "openPlatRoot";
2119
+ RouteKey2["openPlatHome"] = "openPlatHome";
2120
+ RouteKey2["openPlatSolution"] = "openPlatSolution";
2121
+ RouteKey2["openPlatTemplate"] = "openPlatTemplate";
2122
+ RouteKey2["openPlatTemplateDocs"] = "openPlatTemplateDocs";
2123
+ RouteKey2["digitalDetail"] = "digitalDetail";
2124
+ RouteKey2["digitalRegistration"] = "digitalRegistration";
2125
+ RouteKey2["extendedVisualizationTemplate"] = "extendedVisualizationTemplate";
2126
+ RouteKey2["cardRoot"] = "cardRoot";
2127
+ RouteKey2["cardBoard"] = "cardBoard";
2128
+ RouteKey2["cardShot"] = "cardShot";
2107
2129
  })(RouteKey || (RouteKey = {}));
2108
2130
 
2109
2131
  // src/basic/bi-types/src/router/route-tree.ts
@@ -3166,6 +3188,54 @@ var ROUTE_TREE = {
3166
3188
  path: "/error"
3167
3189
  }
3168
3190
  ]
3191
+ },
3192
+ {
3193
+ key: RouteKey.openPlatRoot,
3194
+ path: "/openplatform",
3195
+ children: [
3196
+ {
3197
+ key: RouteKey.openPlatHome,
3198
+ path: "/openplatform/public/home"
3199
+ },
3200
+ {
3201
+ key: RouteKey.openPlatSolution,
3202
+ path: "/openplatform/public/solutions"
3203
+ },
3204
+ {
3205
+ key: RouteKey.openPlatTemplate,
3206
+ path: "/openplatform/public/template"
3207
+ },
3208
+ {
3209
+ key: RouteKey.openPlatTemplateDocs,
3210
+ path: "/openplatform/public/template/docs"
3211
+ },
3212
+ {
3213
+ key: RouteKey.extendedVisualizationTemplate,
3214
+ path: "/openplatform/public/extendedVisualization"
3215
+ },
3216
+ {
3217
+ key: RouteKey.digitalDetail,
3218
+ path: "/datavisualization/detail"
3219
+ },
3220
+ {
3221
+ key: RouteKey.digitalRegistration,
3222
+ path: "/datavisualization/registration"
3223
+ }
3224
+ ]
3225
+ },
3226
+ {
3227
+ key: RouteKey.cardRoot,
3228
+ path: "/card",
3229
+ children: [
3230
+ {
3231
+ key: RouteKey.cardBoard,
3232
+ path: "/card/board.htm"
3233
+ },
3234
+ {
3235
+ key: RouteKey.cardShot,
3236
+ path: "/card/snapshot.htm"
3237
+ }
3238
+ ]
3169
3239
  }
3170
3240
  ]
3171
3241
  };
@@ -496,5 +496,28 @@ export declare enum RouteKey {
496
496
  /** 移动端微应用-自定义tab页 */
497
497
  mobileCustom4 = "mobileCustom4",
498
498
  /** 移动端微应用-错误页 */
499
- mobileError = "mobileError"
499
+ mobileError = "mobileError",
500
+ /** ---------------------------------------------------- 开放App —---------------------------------------------------- */
501
+ /** 开放平台App */
502
+ openPlatRoot = "openPlatRoot",
503
+ /** 开放平台App-首页 */
504
+ openPlatHome = "openPlatHome",
505
+ /** 开放平台App-解决方案 */
506
+ openPlatSolution = "openPlatSolution",
507
+ /** 开放平台App-模板共创 */
508
+ openPlatTemplate = "openPlatTemplate",
509
+ /** 开放平台App-模板文档-文档 */
510
+ openPlatTemplateDocs = "openPlatTemplateDocs",
511
+ /** 数智大赛-详情页 */
512
+ digitalDetail = "digitalDetail",
513
+ /** 数智大赛-报名页 */
514
+ digitalRegistration = "digitalRegistration",
515
+ /** 免登页 展示ued可视化模版的mock页面 */
516
+ extendedVisualizationTemplate = "extendedVisualizationTemplate",
517
+ /** ---------------------------------------------------- 卡片看板 —---------------------------------------------------- */
518
+ cardRoot = "cardRoot",
519
+ /** 卡片看板页 */
520
+ cardBoard = "cardBoard",
521
+ /** 单卡片快照分享 */
522
+ cardShot = "cardShot"
500
523
  }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * 头部相关的类型定义
3
+ */
4
+ /** 各个资源页头部按钮组别枚举 */
5
+ export declare enum ResourcePageHeaderGroupEnum {
6
+ /** 设置操作按钮组 例如 页面设置、全局参数、替换数据集 */
7
+ setting = "setting",
8
+ /** 状态操作按钮组 例如 预览、保存、发布 */
9
+ state = "state",
10
+ /** 动作操作按钮组 例如 分享、导出 */
11
+ action = "action",
12
+ /** 收进更多的操作按钮 */
13
+ menu = "menu"
14
+ }
@@ -87,6 +87,7 @@ export declare enum DsType {
87
87
  hive = "hive",
88
88
  vertica = "vertica",
89
89
  db2 = "db2",
90
+ db2_v10 = "db2_v10",
90
91
  sybase = "sybase",
91
92
  hana = "hana",
92
93
  dla = "dla",
package/esm/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export { OlapResponseBase, CellMeta, RowColumnMeta, CrossTableColumnType, CrossT
5
5
  export type { CrossTableHeaderMeta } from './cross-table';
6
6
  export type { IEtlMeta } from './etl';
7
7
  export { EtlPublishStatus, EtlScheduleStatus, EtlProductStatus } from './etl';
8
+ export { ResourcePageHeaderGroupEnum } from './ui/page-header';
8
9
  export { CustomEventType } from './open/events/event-props';
9
10
  export type { CustomEventModalPayload, CustomEventPageConfig, CustomEventPropsDispatch, CustomEventProps, } from './open/events/event-props';
10
11
  export type { CustomEventMeta } from './open/events/event-schema';
package/esm/index.mjs CHANGED
@@ -1129,6 +1129,15 @@ var EtlProductStatus;
1129
1129
  EtlProductStatus2[EtlProductStatus2["Deleted"] = 3] = "Deleted";
1130
1130
  })(EtlProductStatus || (EtlProductStatus = {}));
1131
1131
 
1132
+ // src/basic/bi-types/src/ui/page-header.ts
1133
+ var ResourcePageHeaderGroupEnum;
1134
+ (function(ResourcePageHeaderGroupEnum2) {
1135
+ ResourcePageHeaderGroupEnum2["setting"] = "setting";
1136
+ ResourcePageHeaderGroupEnum2["state"] = "state";
1137
+ ResourcePageHeaderGroupEnum2["action"] = "action";
1138
+ ResourcePageHeaderGroupEnum2["menu"] = "menu";
1139
+ })(ResourcePageHeaderGroupEnum || (ResourcePageHeaderGroupEnum = {}));
1140
+
1132
1141
  // src/basic/bi-types/src/open/common/event-types.ts
1133
1142
  var OpenEventTypeEnum;
1134
1143
  (function(OpenEventTypeEnum2) {
@@ -1652,6 +1661,7 @@ var DsType;
1652
1661
  DsType2["hive"] = "hive";
1653
1662
  DsType2["vertica"] = "vertica";
1654
1663
  DsType2["db2"] = "db2";
1664
+ DsType2["db2_v10"] = "db2_v10";
1655
1665
  DsType2["sybase"] = "sybase";
1656
1666
  DsType2["hana"] = "hana";
1657
1667
  DsType2["dla"] = "dla";
@@ -1971,6 +1981,17 @@ var RouteKey;
1971
1981
  RouteKey2["mobileCustom3"] = "mobileCustom3";
1972
1982
  RouteKey2["mobileCustom4"] = "mobileCustom4";
1973
1983
  RouteKey2["mobileError"] = "mobileError";
1984
+ RouteKey2["openPlatRoot"] = "openPlatRoot";
1985
+ RouteKey2["openPlatHome"] = "openPlatHome";
1986
+ RouteKey2["openPlatSolution"] = "openPlatSolution";
1987
+ RouteKey2["openPlatTemplate"] = "openPlatTemplate";
1988
+ RouteKey2["openPlatTemplateDocs"] = "openPlatTemplateDocs";
1989
+ RouteKey2["digitalDetail"] = "digitalDetail";
1990
+ RouteKey2["digitalRegistration"] = "digitalRegistration";
1991
+ RouteKey2["extendedVisualizationTemplate"] = "extendedVisualizationTemplate";
1992
+ RouteKey2["cardRoot"] = "cardRoot";
1993
+ RouteKey2["cardBoard"] = "cardBoard";
1994
+ RouteKey2["cardShot"] = "cardShot";
1974
1995
  })(RouteKey || (RouteKey = {}));
1975
1996
 
1976
1997
  // src/basic/bi-types/src/router/route-tree.ts
@@ -3033,6 +3054,54 @@ var ROUTE_TREE = {
3033
3054
  path: "/error"
3034
3055
  }
3035
3056
  ]
3057
+ },
3058
+ {
3059
+ key: RouteKey.openPlatRoot,
3060
+ path: "/openplatform",
3061
+ children: [
3062
+ {
3063
+ key: RouteKey.openPlatHome,
3064
+ path: "/openplatform/public/home"
3065
+ },
3066
+ {
3067
+ key: RouteKey.openPlatSolution,
3068
+ path: "/openplatform/public/solutions"
3069
+ },
3070
+ {
3071
+ key: RouteKey.openPlatTemplate,
3072
+ path: "/openplatform/public/template"
3073
+ },
3074
+ {
3075
+ key: RouteKey.openPlatTemplateDocs,
3076
+ path: "/openplatform/public/template/docs"
3077
+ },
3078
+ {
3079
+ key: RouteKey.extendedVisualizationTemplate,
3080
+ path: "/openplatform/public/extendedVisualization"
3081
+ },
3082
+ {
3083
+ key: RouteKey.digitalDetail,
3084
+ path: "/datavisualization/detail"
3085
+ },
3086
+ {
3087
+ key: RouteKey.digitalRegistration,
3088
+ path: "/datavisualization/registration"
3089
+ }
3090
+ ]
3091
+ },
3092
+ {
3093
+ key: RouteKey.cardRoot,
3094
+ path: "/card",
3095
+ children: [
3096
+ {
3097
+ key: RouteKey.cardBoard,
3098
+ path: "/card/board.htm"
3099
+ },
3100
+ {
3101
+ key: RouteKey.cardShot,
3102
+ path: "/card/snapshot.htm"
3103
+ }
3104
+ ]
3036
3105
  }
3037
3106
  ]
3038
3107
  };
@@ -3140,6 +3209,7 @@ export {
3140
3209
  ROUTE_TREE,
3141
3210
  RegionGranularity,
3142
3211
  ReportSummaryInsightType,
3212
+ ResourcePageHeaderGroupEnum,
3143
3213
  ResultMode,
3144
3214
  RetainAreaId,
3145
3215
  RouteKey,
@@ -496,5 +496,28 @@ export declare enum RouteKey {
496
496
  /** 移动端微应用-自定义tab页 */
497
497
  mobileCustom4 = "mobileCustom4",
498
498
  /** 移动端微应用-错误页 */
499
- mobileError = "mobileError"
499
+ mobileError = "mobileError",
500
+ /** ---------------------------------------------------- 开放App —---------------------------------------------------- */
501
+ /** 开放平台App */
502
+ openPlatRoot = "openPlatRoot",
503
+ /** 开放平台App-首页 */
504
+ openPlatHome = "openPlatHome",
505
+ /** 开放平台App-解决方案 */
506
+ openPlatSolution = "openPlatSolution",
507
+ /** 开放平台App-模板共创 */
508
+ openPlatTemplate = "openPlatTemplate",
509
+ /** 开放平台App-模板文档-文档 */
510
+ openPlatTemplateDocs = "openPlatTemplateDocs",
511
+ /** 数智大赛-详情页 */
512
+ digitalDetail = "digitalDetail",
513
+ /** 数智大赛-报名页 */
514
+ digitalRegistration = "digitalRegistration",
515
+ /** 免登页 展示ued可视化模版的mock页面 */
516
+ extendedVisualizationTemplate = "extendedVisualizationTemplate",
517
+ /** ---------------------------------------------------- 卡片看板 —---------------------------------------------------- */
518
+ cardRoot = "cardRoot",
519
+ /** 卡片看板页 */
520
+ cardBoard = "cardBoard",
521
+ /** 单卡片快照分享 */
522
+ cardShot = "cardShot"
500
523
  }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * 头部相关的类型定义
3
+ */
4
+ /** 各个资源页头部按钮组别枚举 */
5
+ export declare enum ResourcePageHeaderGroupEnum {
6
+ /** 设置操作按钮组 例如 页面设置、全局参数、替换数据集 */
7
+ setting = "setting",
8
+ /** 状态操作按钮组 例如 预览、保存、发布 */
9
+ state = "state",
10
+ /** 动作操作按钮组 例如 分享、导出 */
11
+ action = "action",
12
+ /** 收进更多的操作按钮 */
13
+ menu = "menu"
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quickbi/bi-types",
3
- "version": "3.0.42-beta.4",
3
+ "version": "3.0.42-beta.5",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"