@ningboyz/types 1.6.26 → 1.6.28

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.6.26",
4
+ "version": "1.6.28",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -29,6 +29,7 @@ export interface IAntvCnfgResponse {
29
29
  notiName: string;
30
30
  notiBody: string;
31
31
  sql4Data: string;
32
+ sql4Text: string;
32
33
  cnfgName: string;
33
34
  cnfgMemo: string;
34
35
  }
@@ -64,6 +65,7 @@ export class TAntvCnfgResponse implements IAntvCnfgResponse {
64
65
  notiName: string = "";
65
66
  notiBody: string = "";
66
67
  sql4Data: string = "";
68
+ sql4Text: string = "";
67
69
  cnfgName: string = "";
68
70
  cnfgMemo: string = "";
69
71
  }
@@ -193,5 +193,7 @@ export enum TButtonType {
193
193
  /** 导入查询*/
194
194
  importQuery = "importQuery",
195
195
  /** 查看账单明细*/
196
- billDetail = "billDetail"
196
+ billDetail = "billDetail",
197
+ /** 导出一体化指标*/
198
+ exportIntegratedMetrics = "exportIntegratedMetrics",
197
199
  }