@certd/plugin-lib 1.39.8 → 1.39.10

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.39.10](https://github.com/certd/certd/compare/v1.39.9...v1.39.10) (2026-04-11)
7
+
8
+ ### Performance Improvements
9
+
10
+ * 1panel支持先上传证书再选择证书 ([7a9eec8](https://github.com/certd/certd/commit/7a9eec88e8eddf40dba055c072b5b2b0f67c1407))
11
+
12
+ ## [1.39.9](https://github.com/certd/certd/compare/v1.39.8...v1.39.9) (2026-04-05)
13
+
14
+ **Note:** Version bump only for package @certd/plugin-lib
15
+
6
16
  ## [1.39.8](https://github.com/certd/certd/compare/v1.39.7...v1.39.8) (2026-03-31)
7
17
 
8
18
  ### Performance Improvements
@@ -1,5 +1,8 @@
1
1
  import { CertificateInfo } from "@certd/acme-client";
2
2
  import { ILogger } from "@certd/basic";
3
+ export interface ICertInfoGetter {
4
+ getByPipelineId: (pipelineId: number) => Promise<CertInfo>;
5
+ }
3
6
  export type CertInfo = {
4
7
  crt: string;
5
8
  key: string;
@@ -22,4 +22,8 @@ export declare function createRemoteSelectInputDefine(opts?: {
22
22
  component?: any;
23
23
  value?: any;
24
24
  pageSize?: number;
25
+ uploadCert?: {
26
+ title?: string;
27
+ columns?: Record<string, any>;
28
+ };
25
29
  }): any;
@@ -49,6 +49,7 @@ export function createRemoteSelectInputDefine(opts) {
49
49
  multi,
50
50
  pageSize: opts?.pageSize,
51
51
  watches: [certDomainsInputKey, accessIdInputKey, ...watches],
52
+ uploadCert: opts?.uploadCert,
52
53
  ...opts.component,
53
54
  },
54
55
  value: opts.value,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@certd/plugin-lib",
3
3
  "private": false,
4
- "version": "1.39.8",
4
+ "version": "1.39.10",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -22,10 +22,10 @@
22
22
  "@alicloud/pop-core": "^1.7.10",
23
23
  "@alicloud/tea-util": "^1.4.11",
24
24
  "@aws-sdk/client-s3": "^3.964.0",
25
- "@certd/acme-client": "^1.39.8",
26
- "@certd/basic": "^1.39.8",
27
- "@certd/pipeline": "^1.39.8",
28
- "@certd/plus-core": "^1.39.8",
25
+ "@certd/acme-client": "^1.39.10",
26
+ "@certd/basic": "^1.39.10",
27
+ "@certd/pipeline": "^1.39.10",
28
+ "@certd/plus-core": "^1.39.10",
29
29
  "@kubernetes/client-node": "0.21.0",
30
30
  "ali-oss": "^6.22.0",
31
31
  "basic-ftp": "^5.0.5",
@@ -57,5 +57,5 @@
57
57
  "tslib": "^2.8.1",
58
58
  "typescript": "^5.4.2"
59
59
  },
60
- "gitHead": "de0ae14544f1c3da4923dddc6a1a3bea4db295e7"
60
+ "gitHead": "112a565bf74c50e16c27a2c0a716588f84f39789"
61
61
  }