hl-core 0.0.9-beta.25 → 0.0.9-beta.26

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.
@@ -995,6 +995,7 @@ export class DataStoreClass {
995
995
  ManagerPolicy: Value[];
996
996
  AgentData: AgentData[];
997
997
  riskGroup: Value[];
998
+ DicCoverTypePeriod: Value[];
998
999
  currencies: {
999
1000
  eur: number | null;
1000
1001
  usd: number | null;
@@ -1071,6 +1072,7 @@ export class DataStoreClass {
1071
1072
  this.RegionPolicy = [];
1072
1073
  this.ManagerPolicy = [];
1073
1074
  this.AgentData = [];
1075
+ this.DicCoverTypePeriod = [];
1074
1076
  this.product = import.meta.env.VITE_PRODUCT ? (import.meta.env.VITE_PRODUCT as Projects) : null;
1075
1077
  this.showNav = true;
1076
1078
  this.menuItems = [];
@@ -1203,14 +1205,17 @@ export class FormStoreClass {
1203
1205
  isUploadedSignedContract: boolean;
1204
1206
  signedContractFormData: any;
1205
1207
  lfb: {
1206
- insurers: ClientV2[];
1208
+ clients: ClientV2[];
1207
1209
  fixInsAmount: Value[];
1208
- policyholder: PolicyholderV2;
1209
- toggleAccidents: boolean;
1210
+ policyholder: MemberV2;
1211
+ hasAccidentIncidents: boolean;
1212
+ accidentIncidents: AccidentIncidents[];
1210
1213
  policyholderActivities: PolicyholderActivity[];
1211
1214
  beneficialOwners: BeneficialOwner[];
1212
1215
  beneficialOwnersIndex: number;
1213
1216
  isPolicyholderBeneficialOwner: boolean;
1217
+ clientId: string | null;
1218
+ policyholderFile: any;
1214
1219
  };
1215
1220
  additionalInsuranceTerms: AddCover[];
1216
1221
  additionalInsuranceTermsWithout: AddCover[];
@@ -1258,6 +1263,8 @@ export class FormStoreClass {
1258
1263
  surveyByHealthBasePolicyholder: boolean;
1259
1264
  surveyByCriticalBasePolicyholder: boolean;
1260
1265
  insuranceDocument: boolean;
1266
+ policyholderActivitiesForm: boolean;
1267
+ accidentStatisticsForm: boolean;
1261
1268
  };
1262
1269
  isPolicyholderInsured: boolean = false;
1263
1270
  isPolicyholderBeneficiary: boolean = false;
@@ -1305,14 +1312,17 @@ export class FormStoreClass {
1305
1312
  this.needToScanSignedContract = false;
1306
1313
  this.signedContractFormData = null;
1307
1314
  this.lfb = {
1308
- insurers: [],
1315
+ clients: [],
1309
1316
  fixInsAmount: [],
1310
- policyholder: new PolicyholderV2(),
1311
- toggleAccidents: false,
1317
+ policyholder: new MemberV2(),
1318
+ hasAccidentIncidents: true,
1312
1319
  policyholderActivities: [new PolicyholderActivity()],
1313
1320
  beneficialOwners: [new BeneficialOwner()],
1314
1321
  beneficialOwnersIndex: 0,
1315
1322
  isPolicyholderBeneficialOwner: false,
1323
+ accidentIncidents: [],
1324
+ clientId: null,
1325
+ policyholderFile: null,
1316
1326
  };
1317
1327
  this.additionalInsuranceTerms = [];
1318
1328
  this.additionalInsuranceTermsWithout = [];
@@ -1368,6 +1378,8 @@ export class FormStoreClass {
1368
1378
  surveyByHealthBasePolicyholder: true,
1369
1379
  surveyByCriticalBasePolicyholder: true,
1370
1380
  insuranceDocument: true,
1381
+ policyholderActivitiesForm: true,
1382
+ accidentStatisticsForm: true,
1371
1383
  };
1372
1384
  this.isPolicyholderInsured = false;
1373
1385
  this.isPolicyholderBeneficiary = false;
@@ -1396,138 +1408,238 @@ export class FormStoreClass {
1396
1408
  }
1397
1409
  }
1398
1410
 
1399
- export class PolicyholderV2 {
1400
- placeholderGrounds: string | null;
1401
- documentNumber: string | null;
1402
- date: string | null;
1403
- document: any;
1404
- phoneNumber: string | null;
1405
- iin: string | null;
1406
- lastName: string | null;
1407
- firstName: string | null;
1408
- middleName: string | null;
1409
- countryOfCitizenship: Value;
1410
- namePosition: string | null;
1411
- email: string | null;
1412
- involvementForeignOfficial: boolean;
1413
- bin: string | null;
1414
- fullOrganizationName: string | null;
1415
- iik: string | null;
1416
- nameBank: Value;
1417
- bik: string | null;
1418
- kbe: string | null;
1419
- signOfResidency: Value;
1420
- countryOfTaxResidency: Value;
1421
- economySectorCode: Value;
1422
- typeEconomicActivity: string | null;
1423
- legalAddress: Address;
1411
+ export class MemberV2 {
1412
+ personalData: {
1413
+ iin: string | null;
1414
+ phone: string | null;
1415
+ email: string | null;
1416
+ firstName: string | null;
1417
+ middleName: string | null;
1418
+ lastName: string | null;
1419
+ birthDate: string | null;
1420
+ citizenship: Value;
1421
+ birthPlace: string | null;
1422
+ resident: Value;
1423
+ taxResidentCountry: Value;
1424
+ showTaxResidentCountry: string | null;
1425
+ };
1426
+ identityCard: {
1427
+ documentType: Value;
1428
+ documentNumber: string | null;
1429
+ series: string | null;
1430
+ documentIssuer: Value;
1431
+ validity: string | null;
1432
+ };
1433
+ bankDetails: {
1434
+ bin: string | null;
1435
+ bankName: Value;
1436
+ iik: string | null;
1437
+ bik: string | null;
1438
+ kbe: string | null;
1439
+ };
1424
1440
  actualAddress: Address;
1425
- sameAddress: boolean;
1426
-
1441
+ juridicalAddressCompany: Address;
1442
+ clientPower: {
1443
+ documentBasisOn: string | null;
1444
+ documentBasisOnKz: string | null;
1445
+ docNumber: string | null;
1446
+ date: string | null;
1447
+ };
1448
+ position: string | null;
1449
+ organizationData: {
1450
+ organizationName: string | null;
1451
+ economySectorCode: Value;
1452
+ typeOfEconomicActivity: string | null;
1453
+ };
1454
+ jurAddressIsActualAddress: boolean;
1455
+ quests: {
1456
+ order: number;
1457
+ text: string | null;
1458
+ answer: boolean | null;
1459
+ }[];
1460
+ isLeader: boolean;
1461
+ // insuredPolicyData: {
1462
+ // insSum: 0;
1463
+ // insSumWithLoad: 0;
1464
+ // premium: 0;
1465
+ // premiumWithLoad: 0;
1466
+ // insuredRisk: {
1467
+ // lifeMultiply: 0;
1468
+ // lifeAdditive: 0;
1469
+ // disabilityMultiply: 0;
1470
+ // disabilityAdditive: 0;
1471
+ // traumaTableMultiple: 0;
1472
+ // accidentalLifeMultiply: 0;
1473
+ // accidentalLifeAdditive: 0;
1474
+ // criticalMultiply: 0;
1475
+ // criticalAdditive: 0;
1476
+ // };
1477
+ // insuredCoverData: {
1478
+ // coverTypeEnum: 1;
1479
+ // premium: 0;
1480
+ // }[];
1481
+ // };
1427
1482
  constructor() {
1428
- this.placeholderGrounds = null;
1429
- this.documentNumber = null;
1430
- this.date = null;
1431
- this.document = null;
1432
- this.phoneNumber = null;
1433
- this.iin = null;
1434
- this.lastName = null;
1435
- this.firstName = null;
1436
- this.middleName = null;
1437
- this.countryOfCitizenship = new Value();
1438
- this.namePosition = null;
1439
- this.email = null;
1440
- this.involvementForeignOfficial = false;
1441
- this.bin = null;
1442
- this.fullOrganizationName = null;
1443
- this.iik = null;
1444
- this.nameBank = new Value();
1445
- this.bik = null;
1446
- this.kbe = null;
1447
- this.signOfResidency = new Value();
1448
- this.countryOfTaxResidency = new Value();
1449
- this.economySectorCode = new Value();
1450
- this.typeEconomicActivity = null;
1451
- this.legalAddress = new Address();
1483
+ this.personalData = {
1484
+ iin: null,
1485
+ phone: null,
1486
+ email: null,
1487
+ firstName: null,
1488
+ middleName: null,
1489
+ lastName: null,
1490
+ birthDate: null,
1491
+ citizenship: new Value(),
1492
+ birthPlace: null,
1493
+ resident: new Value(),
1494
+ taxResidentCountry: new Value(),
1495
+ showTaxResidentCountry: null,
1496
+ };
1497
+ this.identityCard = {
1498
+ documentType: new Value(),
1499
+ documentNumber: null,
1500
+ series: null,
1501
+ documentIssuer: new Value(),
1502
+ validity: null,
1503
+ };
1504
+ this.bankDetails = {
1505
+ bin: null,
1506
+ bankName: new Value(),
1507
+ iik: null,
1508
+ bik: null,
1509
+ kbe: null,
1510
+ };
1452
1511
  this.actualAddress = new Address();
1453
- this.sameAddress = true;
1512
+ this.juridicalAddressCompany = new Address();
1513
+ this.clientPower = {
1514
+ documentBasisOn: null,
1515
+ documentBasisOnKz: null,
1516
+ docNumber: null,
1517
+ date: null,
1518
+ };
1519
+ this.position = null;
1520
+ this.organizationData = {
1521
+ organizationName: null,
1522
+ economySectorCode: new Value(),
1523
+ typeOfEconomicActivity: null,
1524
+ };
1525
+ this.jurAddressIsActualAddress = true;
1526
+ this.quests = [
1527
+ {
1528
+ order: 0,
1529
+ text: 'Отметка о наличии/отсутствии физического лица (лиц), которому прямо или косвенно принадлежат более 25 % долей участия в уставном капитале либо размещенных (за вычетом привилегированных и выкупленных обществом) акций юридического лица',
1530
+ answer: null,
1531
+ },
1532
+ {
1533
+ order: 1,
1534
+ text: 'Отметка о наличии/отсутствии физического лица (лиц), осуществляющего контроль над юридическим лицом по иным основаниям',
1535
+ answer: null,
1536
+ },
1537
+ {
1538
+ order: 2,
1539
+ text: 'Отметка о наличии/отсутствии физического лица (лиц) в интересах которого юридическим лицом устанавливаются деловые отношения (совершаются операции)',
1540
+ answer: null,
1541
+ },
1542
+ ];
1543
+ this.isLeader = true;
1544
+ // this.insuredPolicyData = {
1545
+ // insSum: 0,
1546
+ // insSumWithLoad: 0,
1547
+ // premium: 0,
1548
+ // premiumWithLoad: 0,
1549
+ // insuredRisk: {
1550
+ // lifeMultiply: 0,
1551
+ // lifeAdditive: 0,
1552
+ // disabilityMultiply: 0,
1553
+ // disabilityAdditive: 0,
1554
+ // traumaTableMultiple: 0,
1555
+ // accidentalLifeMultiply: 0,
1556
+ // accidentalLifeAdditive: 0,
1557
+ // criticalMultiply: 0,
1558
+ // criticalAdditive: 0,
1559
+ // },
1560
+ // insuredCoverData: [
1561
+ // {
1562
+ // coverTypeEnum: 1,
1563
+ // premium: 0,
1564
+ // },
1565
+ // ],
1566
+ // };
1454
1567
  }
1455
1568
  }
1456
1569
 
1457
1570
  export class Address {
1458
- registrationCountry: Value;
1459
- registrationProvince: Value;
1460
- registrationRegionType: Value;
1461
- registrationCity: Value;
1462
- registrationQuarter: string | null;
1463
- registrationMicroDistrict: string | null;
1464
- registrationStreet: string | null;
1465
- registrationNumberHouse: string | null;
1571
+ country: Value;
1572
+ region: Value;
1573
+ regionType: Value;
1574
+ city: Value;
1575
+ square: string | null;
1576
+ microdistrict: string | null;
1577
+ street: string | null;
1578
+ houseNumber: string | null;
1579
+ kato: string | null;
1466
1580
  constructor() {
1467
- this.registrationCountry = new Value();
1468
- this.registrationProvince = new Value();
1469
- this.registrationRegionType = new Value();
1470
- this.registrationCity = new Value();
1471
- this.registrationQuarter = null;
1472
- this.registrationMicroDistrict = null;
1473
- this.registrationStreet = null;
1474
- this.registrationNumberHouse = null;
1581
+ this.country = new Value();
1582
+ this.region = new Value();
1583
+ this.regionType = new Value();
1584
+ this.city = new Value();
1585
+ this.square = null;
1586
+ this.microdistrict = null;
1587
+ this.street = null;
1588
+ this.houseNumber = null;
1589
+ this.kato = null;
1475
1590
  }
1476
1591
  }
1477
1592
 
1478
1593
  export class PolicyholderActivity {
1479
- typeActivity: string | null;
1480
- numberEmp: string | null;
1594
+ activityTypeName: string | null;
1595
+ empoloyeeCount: string | null;
1481
1596
  constructor() {
1482
- this.typeActivity = null;
1483
- this.numberEmp = null;
1597
+ this.activityTypeName = null;
1598
+ this.empoloyeeCount = null;
1484
1599
  }
1485
1600
  }
1486
1601
 
1487
1602
  export class BeneficialOwner {
1488
- informationBO: { id: number; name: string; value: string }[];
1489
- isFirstManager: boolean;
1603
+ id: string | null;
1604
+ processInstanceId: string | number;
1605
+ insisId: number;
1490
1606
  iin: string | null;
1607
+ longName: string | null;
1608
+ isIpdl: boolean;
1609
+ isTerror: boolean;
1610
+ isIpdlCompliance: boolean;
1611
+ isTerrorCompliance: boolean;
1612
+ personType: number;
1491
1613
  lastName: string | null;
1492
1614
  firstName: string | null;
1493
1615
  middleName: string | null;
1494
- citizenship: Value;
1495
- isPublicForeignOfficial: boolean;
1496
- documentType: Value;
1497
- documentNumber: string | null;
1498
- series: string | null;
1499
- documentIssuers: Value;
1500
- documentExpire: string | null;
1501
-
1616
+ countryId: string | null;
1617
+ countryName: string | null;
1618
+ residentId: string | null;
1619
+ residentName: string | null;
1620
+ taxResidentId: string | null;
1621
+ taxResidentName: string | null;
1622
+ beneficialOwnerData: MemberV2;
1502
1623
  constructor() {
1503
- this.informationBO = [
1504
- {
1505
- id: 1,
1506
- name: 'Отметка о наличии/отсутствии физического лица (лиц), которому прямо или косвенно принадлежат более 25 % долей участия в уставном капитале либо размещенных (за вычетом привилегированных и выкупленных обществом) акций юридического лица',
1507
- value: '',
1508
- },
1509
- {
1510
- id: 2,
1511
- name: 'Отметка о наличии/отсутствии физического лица (лиц), осуществляющего контроль над юридическим лицом по иным основаниям',
1512
- value: '',
1513
- },
1514
- {
1515
- id: 3,
1516
- name: 'Отметка о наличии/отсутствии физического лица (лиц) в интересах которого юридическим лицом устанавливаются деловые отношения (совершаются операции)',
1517
- value: '',
1518
- },
1519
- ];
1520
- this.isFirstManager = false;
1624
+ this.id = null;
1625
+ this.processInstanceId = 0;
1626
+ this.insisId = 0;
1521
1627
  this.iin = null;
1628
+ this.longName = null;
1629
+ this.isIpdl = true;
1630
+ this.isTerror = true;
1631
+ this.isIpdlCompliance = true;
1632
+ this.isTerrorCompliance = true;
1633
+ this.personType = 0;
1522
1634
  this.lastName = null;
1523
1635
  this.firstName = null;
1524
1636
  this.middleName = null;
1525
- this.citizenship = new Value();
1526
- this.isPublicForeignOfficial = false;
1527
- this.documentType = new Value();
1528
- this.documentNumber = null;
1529
- this.series = null;
1530
- this.documentIssuers = new Value();
1531
- this.documentExpire = null;
1637
+ this.countryId = null;
1638
+ this.countryName = null;
1639
+ this.residentId = null;
1640
+ this.residentName = null;
1641
+ this.taxResidentId = null;
1642
+ this.taxResidentName = null;
1643
+ this.beneficialOwnerData = new MemberV2();
1532
1644
  }
1533
1645
  }
package/locales/ru.json CHANGED
@@ -126,6 +126,9 @@
126
126
  "doesHaveActiveContract": "Заключение договора невозможно. У Выгодоприобретателя имеется действующий договор",
127
127
  "needToSignContract": "Документ скачан. После подписи, необходимо вложить договор в разделе “Документы”",
128
128
  "successfullyDocSent": "Отправка документа прошла успешно",
129
+ "templateDownloaded": "Шаблон скачан",
130
+ "templateSentToEmail": "Шаблона отправлен на почту",
131
+ "fileOnlyBelow5mb": "Максимальный размер документа для загрузки - 5 МБ.",
129
132
  "fileOnlyBelow20mb": "Максимальный размер документа для загрузки - 20 МБ.",
130
133
  "onlyPDF": "Загружать документы можно только в формате PDF"
131
134
  },
@@ -200,7 +203,9 @@
200
203
  "sendElectronically": "Отправить в электронном виде",
201
204
  "goTo": "Перейти",
202
205
  "sendOnPaper": "Отправить на бумажном носителе",
203
- "export": "Экспорт"
206
+ "export": "Экспорт",
207
+ "fromGBDUL": "ГБДЮЛ",
208
+ "fromKGD": "КГД"
204
209
  },
205
210
  "dialog": {
206
211
  "title": "Подтверждение",
@@ -266,7 +271,7 @@
266
271
  "childInfo": "Данные о ребенке",
267
272
  "policyholderForm": "Страхователь",
268
273
  "policyholderAndInsured": "Застрахованный / Страхователь",
269
- "insuranceConditions":"Условия страхования",
274
+ "insuranceConditions": "Условия страхования",
270
275
  "policyholderAndInsuredSame": "Застрахованный / Страхователь является одним лицом",
271
276
  "insuredForm": "Застрахованный",
272
277
  "confidant": "Доверенное лицо",
@@ -314,6 +319,7 @@
314
319
  "createNewApp": "Создать новую заявку",
315
320
  "template": "Шаблон",
316
321
  "downloadDocument": "Скачать документ",
322
+ "downloadTemplate": "Скачать шаблон",
317
323
  "countriesLength": "Число выбранных стран",
318
324
  "productConditionsForm": {
319
325
  "coverPeriod": "Срок страхования",
@@ -402,8 +408,8 @@
402
408
  "productCode": "Код продукта",
403
409
  "contract": "Контракт",
404
410
  "checks": "Проверки",
405
- "threeLetterCode": "Трехбуквенный код",
406
- "twoLetterCode": "Двухбуквенный код",
411
+ "threeLetter": "Трехбуквенный код",
412
+ "twoLetter": "Двухбуквенный код",
407
413
  "risk": "Риск:",
408
414
  "note": "Примечание",
409
415
  "name": "Наименование",
@@ -414,9 +420,9 @@
414
420
  "to": "До",
415
421
  "reasonForAffiliation": "Основание для признания аффилированности",
416
422
  "reasonForRelation": "Основание для признания связанности",
417
- "affiliationDate": "Дата появления аффилированности",
423
+ "affCreateDate": "Дата появления аффилированности",
418
424
  "relationDate": "Дата появления связанности",
419
- "expulsionDate": "Дата исключения",
425
+ "affDeletedDate": "Дата исключения",
420
426
  "applicationDate": "Дата заявки",
421
427
  "wrongData": "Некорректные данные обнаружены",
422
428
  "legalName": "Название организации",
@@ -429,7 +435,7 @@
429
435
  "controllerCheck": "Проверенно контроллером",
430
436
  "amountCurrency": "Сумма в валюте",
431
437
  "isAnotherContract ": "Подозрение что у клиента есть договор страхования в другой иностранной компании",
432
- "opf": "Организационно-правовая форма",
438
+ "shortNameRu": "Организационно-правовая форма",
433
439
  "checkType": "Тип проверки",
434
440
  "personType": "Тип клиента",
435
441
  "operationtype": "Тип операции",
@@ -437,6 +443,8 @@
437
443
  "export": "Экспорт",
438
444
  "overlapType": "Тип совпадения",
439
445
  "system": "Система",
446
+ "modifiedDate": "Дата редактирования",
447
+ "createdDate": "Дата добавления",
440
448
  "isActive": "Активен"
441
449
  },
442
450
  "agent": {
@@ -789,6 +797,7 @@
789
797
  "phoneNumber": "Номер телефона",
790
798
  "homePhone": "Домашний номер телефон",
791
799
  "email": "Email адрес",
800
+ "sendToEmail": "Отправить на почту",
792
801
  "otpCode": "Код подтверждения",
793
802
  "salesChanell": "Канал продаж",
794
803
  "manager": "Менеджер",
@@ -798,18 +807,19 @@
798
807
  "firstNameLat": "Имя (На латинице)",
799
808
  "lastNameLat": "Фамилия (На латинице)"
800
809
  },
801
- "bankDetailsForm":{
802
- "title":"Банковские реквизиты",
810
+ "bankDetailsForm": {
811
+ "title": "Банковские реквизиты",
803
812
  "name": "Название банка",
804
813
  "BIN": "БИН банка",
814
+ "ownerIIN": "ИИН владельца",
805
815
  "BIK": "БИК банка",
806
816
  "IBANBank": "IBAN банка",
807
817
  "IBANClient": "IBAN клиента",
808
818
  "accountHolderName": "ФИО владельца счета",
809
- "accountHolderIIN": "ИИН владельца счета",
819
+ "accountHolderIIN": "ИИН владельца счета",
810
820
  "accountHolderAddress": "Адрес владельца счета"
811
821
  },
812
- "insurers": {
822
+ "clients": {
813
823
  "listInsured": "Список Застрахованных",
814
824
  "templateInsured": "Шаблон для заполнения данных Застрахованных",
815
825
  "sendListToFill": "Отправить список Страхователю для заполнения",
@@ -860,38 +870,51 @@
860
870
  "isFirstManager": "Бенефициарный собственник является первым руководителем",
861
871
  "iin": "ИИН (при наличии)",
862
872
  "isPublicForeignOfficial": "Отметка о принадлежности и/или причастности к публичному иностранному должностному лицу, его супруге (супругу) и близким родственникам?",
863
- "series": "Серия"
873
+ "series": "Серия",
874
+ "count":"Количество случаев",
875
+ "amount":"Сумма выплаты",
876
+ "shortDescription":"Краткое описание",
877
+ "questionnaireInsured": "Анкета Застрахованного",
878
+ "recalculationSection": "Раздел переменных для перерасчета"
864
879
  }
865
880
  },
866
- "dso":{
881
+ "dso": {
867
882
  "project": "ДСО",
868
883
  "generalInfo": "Общая информация",
869
884
  "prevStatements": "Ранее оформленные заявки",
870
885
  "title": "Сопровождение договоров/полисов",
871
886
  "warningNSJ": "На данный момент сопровождение договоров/полисов только для НСЖ",
872
- "coming":"Приход",
873
- "consumption":"Расход",
874
- "remainder":"Остаток",
875
- "loans":"Займы",
887
+ "coming": "Приход",
888
+ "consumption": "Расход",
889
+ "remainder": "Остаток",
890
+ "loans": "Займы",
876
891
  "paymentJournal": "Журнал оплат",
877
- "startDate":"Дата начала",
878
- "loanAmount":"Сумма займа",
879
- "loanStatus":"Статус займа",
880
- "numberContract":"Номер полиса / договора: ",
892
+ "startDate": "Дата начала",
893
+ "loanAmount": "Сумма займа",
894
+ "loanStatus": "Статус займа",
895
+ "numberContract": "Номер полиса / договора: ",
881
896
  "createStatement": "Создать заявление",
882
- "reasonsTerminationOfContract":{
883
- "title":"Причина возврата денежных сумм",
884
- "refundPremium":"Расторжение договора страхования и возврат страховой премии",
885
- "redemptionAmount":"Расторжение договора страхования и выплата выкупной суммы",
886
- "terminateContract":"Расторжение договора страхования",
887
- "refundPremiumWithin30days":"Расторжение договора страхования и возврат страховой премии в течении 30/40 дней с даты заключения договора страхования",
888
- "transferPremiumOrAmount":"Расторжение договора страхования и перенос выкупной суммы/страховой премии"
897
+ "redemptionAmount": "Выкупная сумма",
898
+ "bonusAmount": "Бонусная сумма",
899
+ "statementName": "Наименование Заявление ",
900
+ "termination": "Расторжение",
901
+ "change": "Изменение",
902
+ "recovery": "Восстановление",
903
+ "statementType": "Тип Заявление",
904
+ "number": "Номер",
905
+ "reasonsTerminationOfContract": {
906
+ "title": "Причина возврата денежных сумм",
907
+ "refundPremium": "Расторжение договора страхования и возврат страховой премии",
908
+ "redemptionAmount": "Расторжение договора страхования и выплата выкупной суммы",
909
+ "terminateContract": "Расторжение договора страхования",
910
+ "refundPremiumWithin30days": "Расторжение договора страхования и возврат страховой премии в течении 30/40 дней с даты заключения договора страхования",
911
+ "transferPremiumOrAmount": "Расторжение договора страхования и перенос выкупной суммы/страховой премии"
889
912
  },
890
- "needDocuments":"Необходимо вложить оригинал страхового полиса в разделе “Документы”",
891
- "hasOriginalContract":"Имеется ли оригинал страхового полиса? Да",
892
- "byAttorney":"По доверенности? Нет",
893
- "changePolicyholder":"Изменить Страхователя? Нет",
894
- "Contract/Policy/Statement":"Договор/Полис/Заявление"
913
+ "needDocuments": "Необходимо вложить оригинал страхового полиса в разделе “Документы”",
914
+ "hasOriginalContract": "Имеется ли оригинал страхового полиса? Да",
915
+ "byAttorney": "По доверенности? Нет",
916
+ "changePolicyholder": "Изменить Страхователя? Нет",
917
+ "Contract/Policy/Statement": "Договор/Полис/Заявление"
895
918
  },
896
919
  "agreementBlock": {
897
920
  "title": "Согласие на сбор и обработку пресональных данных",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hl-core",
3
- "version": "0.0.9-beta.25",
3
+ "version": "0.0.9-beta.26",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "nuxt.config.ts",