@certd/lib-server 1.40.0 → 1.40.2
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.
|
@@ -180,6 +180,12 @@ export declare class SysSuiteSetting extends BaseSettings {
|
|
|
180
180
|
};
|
|
181
181
|
intro?: string;
|
|
182
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
|
+
}
|
|
183
189
|
export type SiteHidden = {
|
|
184
190
|
enabled: boolean;
|
|
185
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.40.
|
|
3
|
+
"version": "1.40.2",
|
|
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.40.
|
|
33
|
-
"@certd/basic": "^1.40.
|
|
34
|
-
"@certd/pipeline": "^1.40.
|
|
35
|
-
"@certd/plugin-lib": "^1.40.
|
|
36
|
-
"@certd/plus-core": "^1.40.
|
|
32
|
+
"@certd/acme-client": "^1.40.2",
|
|
33
|
+
"@certd/basic": "^1.40.2",
|
|
34
|
+
"@certd/pipeline": "^1.40.2",
|
|
35
|
+
"@certd/plugin-lib": "^1.40.2",
|
|
36
|
+
"@certd/plus-core": "^1.40.2",
|
|
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": "
|
|
72
|
+
"gitHead": "678b70cee8510a2b5217788c5db9469f49cbd439"
|
|
73
73
|
}
|