@ningboyz/types 1.4.65 → 1.4.67

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.4.65",
4
+ "version": "1.4.67",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -144,6 +144,8 @@ export enum TButtonType {
144
144
  revoke = "revoke",
145
145
  /**归档 */
146
146
  archive = "archive",
147
+ /** 解锁 */
148
+ unlock = "unlock",
147
149
  /** 取消预约*/
148
150
  cancelBook = "cancelBook",
149
151
  }
@@ -125,6 +125,7 @@ export interface IViewCtrlResponseWithParaConv {
125
125
  changeUUID?: string;
126
126
  interfaceUUID?: string; //其他页面的UUID
127
127
  pathId?: string; // 附件的dictindx
128
+ isShowSealName?: boolean;
128
129
  }
129
130
 
130
131
  export class TViewCtrlResponseWithParaConv implements IViewCtrlResponseWithParaConv {
@@ -145,4 +146,5 @@ export class TViewCtrlResponseWithParaConv implements IViewCtrlResponseWithParaC
145
146
  changeUUID?: string = "";
146
147
  interfaceUUID?: string = ""; //其他页面的UUID
147
148
  pathId?: string = ""; // 附件的dictindx
149
+ isShowSealName?: boolean = false;
148
150
  }