@certd/lib-server 1.39.16 → 1.40.1

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.
@@ -38,6 +38,7 @@ export declare class SysPublicSettings extends BaseSettings {
38
38
  type: string;
39
39
  title: string;
40
40
  addonId: number;
41
+ icon?: string;
41
42
  }>;
42
43
  notice?: string;
43
44
  adminMode?: "enterprise" | "saas";
@@ -179,6 +180,12 @@ export declare class SysSuiteSetting extends BaseSettings {
179
180
  };
180
181
  intro?: string;
181
182
  }
183
+ export declare class SysAutoFixSetting extends BaseSettings {
184
+ static __title__: string;
185
+ static __key__: string;
186
+ static __access__: string;
187
+ fixed: Record<string, boolean>;
188
+ }
182
189
  export type SiteHidden = {
183
190
  enabled: boolean;
184
191
  openPath?: string;
@@ -158,6 +158,12 @@ export class SysSuiteSetting extends BaseSettings {
158
158
  registerGift;
159
159
  intro;
160
160
  }
161
+ export class SysAutoFixSetting extends BaseSettings {
162
+ static __title__ = '自动修复记录';
163
+ static __key__ = 'sys.auto.fix';
164
+ static __access__ = 'private';
165
+ fixed = {};
166
+ }
161
167
  export class SysSafeSetting extends BaseSettings {
162
168
  static __title__ = '站点安全设置';
163
169
  static __key__ = 'sys.safe';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certd/lib-server",
3
- "version": "1.39.16",
3
+ "version": "1.40.1",
4
4
  "description": "midway with flyway, sql upgrade way ",
5
5
  "private": false,
6
6
  "type": "module",
@@ -9,7 +9,7 @@
9
9
  "types": "./dist/index.d.ts",
10
10
  "scripts": {
11
11
  "before-build": "rimraf dist && rimraf tsconfig.tsbuildinfo && rimraf .rollup.cache",
12
- "build": "npm run before-build && tsc --skipLibCheck",
12
+ "build": "npm run before-build && tsc -p tsconfig.build.json --skipLibCheck",
13
13
  "dev-build": "npm run build",
14
14
  "test": "midway-bin test --ts -V",
15
15
  "test:unit": "cross-env NODE_ENV=unittest mocha --no-config --node-option no-warnings --node-option loader=ts-node/esm \"src/**/*.test.ts\"",
@@ -29,11 +29,11 @@
29
29
  ],
30
30
  "license": "AGPL",
31
31
  "dependencies": {
32
- "@certd/acme-client": "^1.39.16",
33
- "@certd/basic": "^1.39.16",
34
- "@certd/pipeline": "^1.39.16",
35
- "@certd/plugin-lib": "^1.39.16",
36
- "@certd/plus-core": "^1.39.16",
32
+ "@certd/acme-client": "^1.40.1",
33
+ "@certd/basic": "^1.40.1",
34
+ "@certd/pipeline": "^1.40.1",
35
+ "@certd/plugin-lib": "^1.40.1",
36
+ "@certd/plus-core": "^1.40.1",
37
37
  "@midwayjs/cache": "3.14.0",
38
38
  "@midwayjs/core": "3.20.11",
39
39
  "@midwayjs/i18n": "3.20.13",
@@ -69,5 +69,5 @@
69
69
  "typeorm": "^0.3.11",
70
70
  "typescript": "^5.4.2"
71
71
  },
72
- "gitHead": "1c6dc169ac04fd09ef94404a912a15cbb17e1452"
72
+ "gitHead": "73996f055bbff996ee776e7788e5a5cb500fc197"
73
73
  }