@it-enterprise/digital-signature 1.2.9 → 1.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Models.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@it-enterprise/digital-signature",
3
- "version": "1.2.9",
3
+ "version": "1.2.11",
4
4
  "description": "digital signature",
5
5
  "private": false,
6
6
  "main": "src/index.js",
package/src/Models.js CHANGED
@@ -435,8 +435,9 @@ export function getDefaultKSPs() {
435
435
  const depositsign = new KSPSettings();
436
436
  depositsign.id = "depositsign";
437
437
  depositsign.name = "DepositSign";
438
- depositsign.ksp = EndUserConstants.PB;
438
+ depositsign.ksp = EndUserConstants.EU_KSP_PB;
439
439
  depositsign.address = "https://depositsign.com/api/v1/it-enterprise/sign-server";
440
+ depositsign.clientIdPrefix = "";
440
441
  depositsign.directAccess = true;
441
442
  depositsign.needQRCode = false;
442
443
 
@@ -466,6 +467,7 @@ export function getDefaultKSPs() {
466
467
  vchasno.name = "Вчасно - хмарний підпис";
467
468
  vchasno.ksp = EndUserConstants.EU_KSP_PB;
468
469
  vchasno.address = "https://cs.vchasno.ua/ss/";
470
+ vchasno.clientIdPrefix = "";
469
471
  vchasno.directAccess = false;
470
472
  vchasno.needQRCode = false;
471
473