|
Changes
|
|
Changed bundle usage to use bundles with key, e.g. core.entity.doc.type.passport instead of entity.doc.type.passport
|
|
API POST /v1/organizations/{organizationId}/review-request is called when the user uploads the last document for onboarding, or re-uploads the document requested by compliance.
|
|
Created a mechanism to customize the app by configuration.
Feature flags added for the following menus/buttons:
-
Pricing plans (whole menu)
-
Pricing plans (‘Choose the pricing plan’ button)
-
Added bank accounts (whole menu)
-
Added bank accounts (‘Add/Delete bank account details’ button)
-
Company accounts (whole menu)
|
|
Changed approach for pin-code handling:
-
Improved the mechanism for setting up and displaying the PIN code modal.
-
Added handling for the maximum number of PIN code entry attempts.
-
Implemented support for configurable PIN code length (default is 4).
-
Added PIN code configuration parameters to the application config (constants/application/default.config.json):
"pinCode": {
"maxPinCodeEnterAttempts": 10,
"repeatConfirmationTimeoutMs": 60000,
"length": 4
}
|
|
All fields except for the Company name were made optional on the Create company page
|
|
Fields that are not required for KYC were hidden on the Fill in the information/Main information/Profile – Main information pages
|
|
OTP screen for self-registration is shown only when requiresConfirmation: true in the response
|
|
filterType is passed instead of type in API POST /reports
filterType without Dto in the end is passed in API POST /v1/transactions/view, f.e. TransactionFilter instead of TransactionFilterDto
|