@certd/lib-server 1.38.2 → 1.38.4

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.
@@ -30,6 +30,7 @@ export declare class SysPublicSettings extends BaseSettings {
30
30
  certDomainAddToMonitorEnabled?: boolean;
31
31
  fixedCertExpireDays?: number;
32
32
  defaultCertRenewDays?: number;
33
+ defaultWillExpireDays?: number;
33
34
  oauthEnabled?: boolean;
34
35
  oauthProviders: Record<string, {
35
36
  type: string;
@@ -39,6 +39,8 @@ export class SysPublicSettings extends BaseSettings {
39
39
  fixedCertExpireDays;
40
40
  //默认到期前更新天数
41
41
  defaultCertRenewDays;
42
+ // 即将到期天数
43
+ defaultWillExpireDays = 15;
42
44
  // 第三方OAuth配置
43
45
  oauthEnabled = false;
44
46
  oauthProviders = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certd/lib-server",
3
- "version": "1.38.2",
3
+ "version": "1.38.4",
4
4
  "description": "midway with flyway, sql upgrade way ",
5
5
  "private": false,
6
6
  "type": "module",
@@ -28,11 +28,11 @@
28
28
  ],
29
29
  "license": "AGPL",
30
30
  "dependencies": {
31
- "@certd/acme-client": "^1.38.2",
32
- "@certd/basic": "^1.38.2",
33
- "@certd/pipeline": "^1.38.2",
34
- "@certd/plugin-lib": "^1.38.2",
35
- "@certd/plus-core": "^1.38.2",
31
+ "@certd/acme-client": "^1.38.4",
32
+ "@certd/basic": "^1.38.4",
33
+ "@certd/pipeline": "^1.38.4",
34
+ "@certd/plugin-lib": "^1.38.4",
35
+ "@certd/plus-core": "^1.38.4",
36
36
  "@midwayjs/cache": "3.14.0",
37
37
  "@midwayjs/core": "3.20.11",
38
38
  "@midwayjs/i18n": "3.20.13",
@@ -64,5 +64,5 @@
64
64
  "typeorm": "^0.3.11",
65
65
  "typescript": "^5.4.2"
66
66
  },
67
- "gitHead": "f92dc6a1ad103de9cc184da3b84096943906cb59"
67
+ "gitHead": "84291482732687cc8162c6505666ba2b29b02918"
68
68
  }