n20-common-lib 2.16.10 → 2.16.11

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,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "2.16.10",
3
+ "version": "2.16.11",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -158,9 +158,9 @@ export function getCert(dn) {
158
158
  * @param {string} cspName - CSP名称
159
159
  * @returns {Promise<void>}
160
160
  */
161
- export async function updateCert(cspName) {
161
+ export async function updateCert(cspName, onSuccess, dnInfo) {
162
162
  const { updateCert } = await importG('NetV3', () => import(/*webpackChunkName: "NetV3"*/ './NetV3/index.js'))
163
- await updateCert(cspName)
163
+ await updateCert(cspName, onSuccess, dnInfo)
164
164
  }
165
165
 
166
166
  /**