web-pki 2.17.0 → 2.18.0-alpha01
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/lacuna-web-pki.d.ts +7 -1
- package/lacuna-web-pki.js +11 -4
- package/package.json +1 -1
package/lacuna-web-pki.d.ts
CHANGED
|
@@ -1866,10 +1866,16 @@ export interface GenerateKeyPairResponse {
|
|
|
1866
1866
|
/** The PEM encoded CSR (PKCS#10 Certificate Signing Request) relative to the generated key pair. */
|
|
1867
1867
|
csr: string,
|
|
1868
1868
|
/** The Id of generated private key */
|
|
1869
|
-
privateKeyId: string
|
|
1869
|
+
privateKeyId: string,
|
|
1870
|
+
/** The UserName of the system where the key pair was generated. Since API v1.8.6 */
|
|
1871
|
+
userName?: string,
|
|
1872
|
+
/** The MachineName of the system where the key pair was generated. Since API 1.8.6 */
|
|
1873
|
+
machineName?: string,
|
|
1870
1874
|
}
|
|
1871
1875
|
|
|
1872
1876
|
export interface GenerateTokenKeyPairResponse extends GenerateKeyPairResponse {
|
|
1877
|
+
/** The PKCS#11 module which was used to operate with the token. */
|
|
1878
|
+
pkcs11ModuleUsed: string,
|
|
1873
1879
|
}
|
|
1874
1880
|
|
|
1875
1881
|
export interface ImportCertificateResponse {
|
package/lacuna-web-pki.js
CHANGED
|
@@ -130,15 +130,15 @@ LacunaWebPKI = function (license) {
|
|
|
130
130
|
$._edgeExtensionId = 'nedeegdmhlnmboboahchfpkmdnnemapd';
|
|
131
131
|
$._edgeLegacyProductId = 'd2798a85-9698-425a-add7-3db79a39ca8a';
|
|
132
132
|
$._chromeExtensionFirstVersionWithSelfUpdate = '2.0.20';
|
|
133
|
-
$._jslibVersion = '2.
|
|
133
|
+
$._jslibVersion = '2.18.0';
|
|
134
134
|
$._mobileSupported = 'true' === 'true';
|
|
135
135
|
$._buildChannel = 'stable';
|
|
136
136
|
|
|
137
137
|
// latest components version ----------------------
|
|
138
138
|
$._extensionRequiredVersion = '1.0.0';
|
|
139
|
-
$._chromeNativeWinRequiredVersion = '2.
|
|
140
|
-
$._chromeNativeLinuxRequiredVersion = '2.
|
|
141
|
-
$._chromeNativeMacRequiredVersion = '2.
|
|
139
|
+
$._chromeNativeWinRequiredVersion = '2.14.0';
|
|
140
|
+
$._chromeNativeLinuxRequiredVersion = '2.14.0';
|
|
141
|
+
$._chromeNativeMacRequiredVersion = '2.14.0';
|
|
142
142
|
$._ieAddonRequiredVersion = '2.9.1';
|
|
143
143
|
$._mobileRequiredVersion = '3.2.0';
|
|
144
144
|
// ------------------------------------------------
|
|
@@ -196,6 +196,7 @@ LacunaWebPKI = function (license) {
|
|
|
196
196
|
v1_8_3: '1.8.3',
|
|
197
197
|
v1_8_4: '1.8.4',
|
|
198
198
|
v1_8_5: '1.8.5',
|
|
199
|
+
v1_8_6: '1.8.6',
|
|
199
200
|
v1_9_0: '1.9.0',
|
|
200
201
|
latest: 'latest'
|
|
201
202
|
};
|
|
@@ -229,6 +230,7 @@ LacunaWebPKI = function (license) {
|
|
|
229
230
|
$._apiMap.nativeWin[$.apiVersions.v1_8_3] = '2.12.6';
|
|
230
231
|
$._apiMap.nativeWin[$.apiVersions.v1_8_4] = '2.12.7';
|
|
231
232
|
$._apiMap.nativeWin[$.apiVersions.v1_8_5] = '2.13.2';
|
|
233
|
+
$._apiMap.nativeWin[$.apiVersions.v1_8_6] = '2.14.0';
|
|
232
234
|
$._apiMap.nativeWin[$.apiVersions.v1_9_0] = '2.12.3';
|
|
233
235
|
|
|
234
236
|
// IE
|
|
@@ -251,6 +253,7 @@ LacunaWebPKI = function (license) {
|
|
|
251
253
|
$._apiMap.ieAddon[$.apiVersions.v1_8_3] = '2.9.1';
|
|
252
254
|
$._apiMap.ieAddon[$.apiVersions.v1_8_4] = '2.9.1';
|
|
253
255
|
$._apiMap.ieAddon[$.apiVersions.v1_8_5] = '2.9.1';
|
|
256
|
+
$._apiMap.ieAddon[$.apiVersions.v1_8_6] = '2.9.1';
|
|
254
257
|
$._apiMap.ieAddon[$.apiVersions.v1_9_0] = '2.9.1';
|
|
255
258
|
|
|
256
259
|
// Linux
|
|
@@ -273,6 +276,7 @@ LacunaWebPKI = function (license) {
|
|
|
273
276
|
$._apiMap.nativeLinux[$.apiVersions.v1_8_3] = '2.13.3';
|
|
274
277
|
$._apiMap.nativeLinux[$.apiVersions.v1_8_4] = '2.13.3';
|
|
275
278
|
$._apiMap.nativeLinux[$.apiVersions.v1_8_5] = '2.13.3';
|
|
279
|
+
$._apiMap.nativeLinux[$.apiVersions.v1_8_6] = '2.14.0';
|
|
276
280
|
$._apiMap.nativeLinux[$.apiVersions.v1_9_0] = '2.13.3';
|
|
277
281
|
|
|
278
282
|
// Mac
|
|
@@ -295,6 +299,7 @@ LacunaWebPKI = function (license) {
|
|
|
295
299
|
$._apiMap.nativeMac[$.apiVersions.v1_8_3] = '2.13.5';
|
|
296
300
|
$._apiMap.nativeMac[$.apiVersions.v1_8_4] = '2.13.5';
|
|
297
301
|
$._apiMap.nativeMac[$.apiVersions.v1_8_5] = '2.13.5';
|
|
302
|
+
$._apiMap.nativeMac[$.apiVersions.v1_8_6] = '2.14.0';
|
|
298
303
|
$._apiMap.nativeMac[$.apiVersions.v1_9_0] = '2.13.3';
|
|
299
304
|
|
|
300
305
|
// WebExtension
|
|
@@ -317,6 +322,7 @@ LacunaWebPKI = function (license) {
|
|
|
317
322
|
$._apiMap.extension[$.apiVersions.v1_8_3] = '2.16.0';
|
|
318
323
|
$._apiMap.extension[$.apiVersions.v1_8_4] = '2.16.0';
|
|
319
324
|
$._apiMap.extension[$.apiVersions.v1_8_5] = '2.16.0';
|
|
325
|
+
$._apiMap.extension[$.apiVersions.v1_8_6] = '2.16.0';
|
|
320
326
|
$._apiMap.extension[$.apiVersions.v1_9_0] = '2.17.0';
|
|
321
327
|
|
|
322
328
|
// Mobile
|
|
@@ -339,6 +345,7 @@ LacunaWebPKI = function (license) {
|
|
|
339
345
|
$._apiMap.mobile[$.apiVersions.v1_8_3] = '3.2.0';
|
|
340
346
|
$._apiMap.mobile[$.apiVersions.v1_8_4] = '3.2.0';
|
|
341
347
|
$._apiMap.mobile[$.apiVersions.v1_8_5] = '3.2.0';
|
|
348
|
+
$._apiMap.mobile[$.apiVersions.v1_8_6] = '3.2.0';
|
|
342
349
|
$._apiMap.mobile[$.apiVersions.v1_9_0] = '3.2.0';
|
|
343
350
|
|
|
344
351
|
// All latest
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "web-pki",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.18.0-alpha01",
|
|
4
4
|
"description": "The Lacuna Web PKI component enables web applications to interact with digital certificates through javascript, without the need of Java.",
|
|
5
5
|
"main": "lacuna-web-pki.js",
|
|
6
6
|
"types": "lacuna-web-pki.d.ts",
|