@redneckz/wildless-cms-uni-blocks 0.14.718 → 0.14.720

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 (39) hide show
  1. package/bundle/bundle.umd.js +4 -2
  2. package/bundle/bundle.umd.min.js +1 -1
  3. package/bundle/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
  4. package/bundle/components/CreditForm/utils.d.ts +1 -0
  5. package/dist/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
  6. package/dist/components/CreditForm/utils.d.ts +1 -0
  7. package/dist/components/CreditForm/utils.js +1 -0
  8. package/dist/components/CreditForm/utils.js.map +1 -1
  9. package/dist/services/retail/adaptors/getEmploymentData.js +2 -1
  10. package/dist/services/retail/adaptors/getEmploymentData.js.map +1 -1
  11. package/lib/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
  12. package/lib/components/CreditForm/utils.d.ts +1 -0
  13. package/lib/components/CreditForm/utils.js +1 -0
  14. package/lib/components/CreditForm/utils.js.map +1 -1
  15. package/lib/services/retail/adaptors/getEmploymentData.js +2 -1
  16. package/lib/services/retail/adaptors/getEmploymentData.js.map +1 -1
  17. package/mobile/bundle/bundle.umd.js +4 -2
  18. package/mobile/bundle/bundle.umd.min.js +1 -1
  19. package/mobile/bundle/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
  20. package/mobile/bundle/components/CreditForm/utils.d.ts +1 -0
  21. package/mobile/dist/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
  22. package/mobile/dist/components/CreditForm/utils.d.ts +1 -0
  23. package/mobile/dist/components/CreditForm/utils.js +1 -0
  24. package/mobile/dist/components/CreditForm/utils.js.map +1 -1
  25. package/mobile/dist/services/retail/adaptors/getEmploymentData.js +2 -1
  26. package/mobile/dist/services/retail/adaptors/getEmploymentData.js.map +1 -1
  27. package/mobile/lib/components/ApplicationLeadForm/LeadFormState.d.ts +1 -1
  28. package/mobile/lib/components/CreditForm/utils.d.ts +1 -0
  29. package/mobile/lib/components/CreditForm/utils.js +1 -0
  30. package/mobile/lib/components/CreditForm/utils.js.map +1 -1
  31. package/mobile/lib/services/retail/adaptors/getEmploymentData.js +2 -1
  32. package/mobile/lib/services/retail/adaptors/getEmploymentData.js.map +1 -1
  33. package/mobile/src/components/ApplicationLeadForm/LeadFormState.ts +1 -1
  34. package/mobile/src/components/CreditForm/utils.ts +1 -0
  35. package/mobile/src/services/retail/adaptors/getEmploymentData.tsx +2 -0
  36. package/package.json +1 -1
  37. package/src/components/ApplicationLeadForm/LeadFormState.ts +1 -1
  38. package/src/components/CreditForm/utils.ts +1 -0
  39. package/src/services/retail/adaptors/getEmploymentData.tsx +2 -0
@@ -5019,6 +5019,7 @@
5019
5019
  addressRegistration: 'REGISTRATION',
5020
5020
  addressFact: 'RESIDENTAL',
5021
5021
  organizationAddress: 'WORK',
5022
+ addressCourier: 'DELIVERY',
5022
5023
  };
5023
5024
  const fieldsNamesToIncomeKeysMap = {
5024
5025
  incomeAverage: 'INCOME_AVERAGE',
@@ -7006,7 +7007,7 @@
7006
7007
  };
7007
7008
 
7008
7009
  const getEmploymentData = (formData) => {
7009
- const { beginDate, employment, organizationName, inn, legalForm, organization, amountWorkers, employerActivities, employerOrganization, generalSeniority, lastJobExperience, experience5Years, jobsNumber, organizationPhone, organizationAddress, positionOrganization, } = formData;
7010
+ const { beginDate, employment, organizationName, inn, legalForm, organization, amountWorkers, employerActivities, employerOrganization, generalSeniority, lastJobExperience, experience5Years, jobsNumber, organizationPhone, organizationAddress, positionOrganization, partInBusiness, } = formData;
7010
7011
  return {
7011
7012
  employmentContractDate: formatDate(beginDate || '', true),
7012
7013
  employmentTypeCd: employment,
@@ -7026,6 +7027,7 @@
7026
7027
  organizationPhone: organizationPhone && formatPhone(organizationPhone),
7027
7028
  }),
7028
7029
  participantAddresses: getParticipantAddresses({ organizationAddress }),
7030
+ ownershipShare: positionOrganization?.key === 'BUSINESS_OWNER' ? partInBusiness : '',
7029
7031
  };
7030
7032
  };
7031
7033
 
@@ -10494,7 +10496,7 @@
10494
10496
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
10495
10497
  });
10496
10498
 
10497
- const packageVersion = "0.14.717";
10499
+ const packageVersion = "0.14.719";
10498
10500
 
10499
10501
  exports.Blocks = Blocks;
10500
10502
  exports.ContentPage = ContentPage;