@qbs-origin/origin-form 0.5.0
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/README.md +24 -0
- package/esm2022/lib/action-step-handler.mjs +163 -0
- package/esm2022/lib/auth-client.service.mjs +69 -0
- package/esm2022/lib/enums/label.keys.mjs +721 -0
- package/esm2022/lib/form-css.helper.mjs +367 -0
- package/esm2022/lib/formly/baseFormlyControlComponent.mjs +52 -0
- package/esm2022/lib/formly/baseFormlyStepComponent.mjs +59 -0
- package/esm2022/lib/formly/custom-section-separator.component.mjs +32 -0
- package/esm2022/lib/formly/form-section-separator.component.mjs +36 -0
- package/esm2022/lib/formly/formly-action.mjs +56 -0
- package/esm2022/lib/formly/formly-checkbox/formly-checkbox.component.mjs +52 -0
- package/esm2022/lib/formly/formly-dictionary-dropdown-tree/formly-dictionary-dropdown-tree.component.mjs +261 -0
- package/esm2022/lib/formly/formly-download-documents/formly-download-documents.component.mjs +126 -0
- package/esm2022/lib/formly/formly-enrol-card/formly-enrol-card.component.mjs +120 -0
- package/esm2022/lib/formly/formly-field-stepper/formly-field-stepper.component.mjs +762 -0
- package/esm2022/lib/formly/formly-generate-documents/formly-generate-documents.component.mjs +57 -0
- package/esm2022/lib/formly/formly-identification.component.mjs +84 -0
- package/esm2022/lib/formly/formly-open-banking/formly-open-banking.component.mjs +590 -0
- package/esm2022/lib/formly/formly-paragraph/formly-paragraph.component.mjs +35 -0
- package/esm2022/lib/formly/formly-radio/formly-radio-component.mjs +49 -0
- package/esm2022/lib/formly/formly-row-fille.mjs +12 -0
- package/esm2022/lib/formly/formly-scan-id/formly-scan-id.component.mjs +284 -0
- package/esm2022/lib/formly/formly-sign/formly-sign.component.mjs +173 -0
- package/esm2022/lib/formly/formly-upload-documents/formly-upload-documents.component.mjs +198 -0
- package/esm2022/lib/formly/formly-validate-contact-info/formly-validate-contact-info.component.mjs +124 -0
- package/esm2022/lib/formly/formly-view-documents/formly-view-documents.component.mjs +245 -0
- package/esm2022/lib/formly/formly-view-offers/formly-view-offers.component.mjs +160 -0
- package/esm2022/lib/model-population.helper.mjs +265 -0
- package/esm2022/lib/models/application-type.model.mjs +12 -0
- package/esm2022/lib/models/application.model.mjs +30 -0
- package/esm2022/lib/models/auth/users.model.mjs +2 -0
- package/esm2022/lib/models/dictionary.model.mjs +20 -0
- package/esm2022/lib/models/flux.model.mjs +105 -0
- package/esm2022/lib/models/forms.model.mjs +572 -0
- package/esm2022/lib/models/label-info.model.mjs +2 -0
- package/esm2022/lib/models/label.model.mjs +2 -0
- package/esm2022/lib/models/language.model.mjs +3 -0
- package/esm2022/lib/models/list.model.mjs +2 -0
- package/esm2022/lib/models/partner.model.mjs +3 -0
- package/esm2022/lib/models/treeview.model.mjs +15 -0
- package/esm2022/lib/origin-form-auth.service.mjs +40 -0
- package/esm2022/lib/origin-form-config.model.mjs +2 -0
- package/esm2022/lib/origin-form-token.interceptor.mjs +35 -0
- package/esm2022/lib/origin-form.component.mjs +2391 -0
- package/esm2022/lib/origin-form.module.mjs +479 -0
- package/esm2022/lib/origin-form.service.mjs +14 -0
- package/esm2022/lib/others/check-list.database.mjs +55 -0
- package/esm2022/lib/others/config-service.mjs +42 -0
- package/esm2022/lib/others/dictionary-label-info.mjs +3 -0
- package/esm2022/lib/others/environment-type.mjs +21 -0
- package/esm2022/lib/others/external-link.directive.mjs +49 -0
- package/esm2022/lib/others/flux-helper.mjs +1397 -0
- package/esm2022/lib/others/picker.component.mjs +119 -0
- package/esm2022/lib/others/translation.pipe.mjs +21 -0
- package/esm2022/lib/others/translations-helper.mjs +258 -0
- package/esm2022/lib/others/utils.mjs +272 -0
- package/esm2022/lib/services/applicationData.service.mjs +145 -0
- package/esm2022/lib/services/auth-http.service.mjs +80 -0
- package/esm2022/lib/services/dialog.service.mjs +56 -0
- package/esm2022/lib/services/dictionary.service.mjs +198 -0
- package/esm2022/lib/services/forms.service.mjs +47 -0
- package/esm2022/lib/services/labels.service.mjs +29 -0
- package/esm2022/lib/services/language.service.mjs +24 -0
- package/esm2022/lib/services/open-banking.service.mjs +194 -0
- package/esm2022/lib/services/origin-form-signalr-handler.service.mjs +107 -0
- package/esm2022/lib/services/origin-form-signalr.service.mjs +105 -0
- package/esm2022/lib/services/otp.service.mjs +28 -0
- package/esm2022/lib/services/proxy.service.mjs +79 -0
- package/esm2022/lib/services/scroll-to-error.service.mjs +369 -0
- package/esm2022/lib/services/translation.service.mjs +27 -0
- package/esm2022/lib/shared-components/confirmation.component.mjs +34 -0
- package/esm2022/lib/shared-components/dictionaries-tree.component.mjs +301 -0
- package/esm2022/lib/shared-components/grid.component.mjs +241 -0
- package/esm2022/lib/shared-components/treeview/treeview.component.mjs +224 -0
- package/esm2022/lib/theme-css.mjs +2254 -0
- package/esm2022/lib/theme-injector.service.mjs +26 -0
- package/esm2022/public-api.mjs +4 -0
- package/esm2022/qbs-origin-origin-form.mjs +5 -0
- package/fesm2022/qbs-origin-origin-form.mjs +15215 -0
- package/fesm2022/qbs-origin-origin-form.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/action-step-handler.d.ts +49 -0
- package/lib/auth-client.service.d.ts +17 -0
- package/lib/enums/label.keys.d.ts +720 -0
- package/lib/form-css.helper.d.ts +28 -0
- package/lib/formly/baseFormlyControlComponent.d.ts +25 -0
- package/lib/formly/baseFormlyStepComponent.d.ts +29 -0
- package/lib/formly/custom-section-separator.component.d.ts +6 -0
- package/lib/formly/form-section-separator.component.d.ts +10 -0
- package/lib/formly/formly-action.d.ts +13 -0
- package/lib/formly/formly-checkbox/formly-checkbox.component.d.ts +15 -0
- package/lib/formly/formly-dictionary-dropdown-tree/formly-dictionary-dropdown-tree.component.d.ts +45 -0
- package/lib/formly/formly-download-documents/formly-download-documents.component.d.ts +22 -0
- package/lib/formly/formly-enrol-card/formly-enrol-card.component.d.ts +114 -0
- package/lib/formly/formly-field-stepper/formly-field-stepper.component.d.ts +79 -0
- package/lib/formly/formly-generate-documents/formly-generate-documents.component.d.ts +17 -0
- package/lib/formly/formly-identification.component.d.ts +19 -0
- package/lib/formly/formly-open-banking/formly-open-banking.component.d.ts +119 -0
- package/lib/formly/formly-paragraph/formly-paragraph.component.d.ts +10 -0
- package/lib/formly/formly-radio/formly-radio-component.d.ts +15 -0
- package/lib/formly/formly-row-fille.d.ts +6 -0
- package/lib/formly/formly-scan-id/formly-scan-id.component.d.ts +41 -0
- package/lib/formly/formly-sign/formly-sign.component.d.ts +36 -0
- package/lib/formly/formly-upload-documents/formly-upload-documents.component.d.ts +25 -0
- package/lib/formly/formly-validate-contact-info/formly-validate-contact-info.component.d.ts +79 -0
- package/lib/formly/formly-view-documents/formly-view-documents.component.d.ts +33 -0
- package/lib/formly/formly-view-offers/formly-view-offers.component.d.ts +23 -0
- package/lib/model-population.helper.d.ts +8 -0
- package/lib/models/application-type.model.d.ts +27 -0
- package/lib/models/application.model.d.ts +107 -0
- package/lib/models/auth/users.model.d.ts +20 -0
- package/lib/models/dictionary.model.d.ts +77 -0
- package/lib/models/flux.model.d.ts +101 -0
- package/lib/models/forms.model.d.ts +504 -0
- package/lib/models/label-info.model.d.ts +10 -0
- package/lib/models/label.model.d.ts +4 -0
- package/lib/models/language.model.d.ts +5 -0
- package/lib/models/list.model.d.ts +8 -0
- package/lib/models/partner.model.d.ts +12 -0
- package/lib/models/treeview.model.d.ts +17 -0
- package/lib/origin-form-auth.service.d.ts +15 -0
- package/lib/origin-form-config.model.d.ts +12 -0
- package/lib/origin-form-token.interceptor.d.ts +12 -0
- package/lib/origin-form.component.d.ts +231 -0
- package/lib/origin-form.module.d.ts +84 -0
- package/lib/origin-form.service.d.ts +6 -0
- package/lib/others/check-list.database.d.ts +16 -0
- package/lib/others/config-service.d.ts +22 -0
- package/lib/others/dictionary-label-info.d.ts +6 -0
- package/lib/others/environment-type.d.ts +8 -0
- package/lib/others/external-link.directive.d.ts +12 -0
- package/lib/others/flux-helper.d.ts +115 -0
- package/lib/others/picker.component.d.ts +36 -0
- package/lib/others/translation.pipe.d.ts +10 -0
- package/lib/others/translations-helper.d.ts +31 -0
- package/lib/others/utils.d.ts +37 -0
- package/lib/services/applicationData.service.d.ts +35 -0
- package/lib/services/auth-http.service.d.ts +21 -0
- package/lib/services/dialog.service.d.ts +20 -0
- package/lib/services/dictionary.service.d.ts +89 -0
- package/lib/services/forms.service.d.ts +17 -0
- package/lib/services/labels.service.d.ts +13 -0
- package/lib/services/language.service.d.ts +14 -0
- package/lib/services/open-banking.service.d.ts +137 -0
- package/lib/services/origin-form-signalr-handler.service.d.ts +29 -0
- package/lib/services/origin-form-signalr.service.d.ts +24 -0
- package/lib/services/otp.service.d.ts +22 -0
- package/lib/services/proxy.service.d.ts +29 -0
- package/lib/services/scroll-to-error.service.d.ts +54 -0
- package/lib/services/translation.service.d.ts +10 -0
- package/lib/shared-components/confirmation.component.d.ts +77 -0
- package/lib/shared-components/dictionaries-tree.component.d.ts +51 -0
- package/lib/shared-components/grid.component.d.ts +138 -0
- package/lib/shared-components/treeview/treeview.component.d.ts +121 -0
- package/lib/theme-css.d.ts +2 -0
- package/lib/theme-injector.service.d.ts +8 -0
- package/package.json +42 -0
- package/public-api.d.ts +3 -0
- package/schematics-compiled/collection.json +10 -0
- package/schematics-compiled/ng-add/index.d.ts +2 -0
- package/schematics-compiled/ng-add/index.js +67 -0
- package/schematics-compiled/ng-add/index.js.map +1 -0
- package/schematics-compiled/ng-add/schema.json +8 -0
- package/src/lib/assets/fonts/Figtree-Bold.ttf +0 -0
- package/src/lib/assets/fonts/Figtree-Light.ttf +0 -0
- package/src/lib/assets/fonts/Figtree-Regular.ttf +0 -0
- package/src/lib/assets/fonts/Sora-ExtraBold.ttf +0 -0
- package/src/lib/assets/fonts/Sora-Light.ttf +0 -0
- package/src/lib/assets/fonts/Sora-Regular.ttf +0 -0
- package/src/lib/assets/fonts/ttrounds-bold-webfont.woff +0 -0
- package/src/lib/assets/fonts/ttrounds-bold-webfont.woff2 +0 -0
- package/src/lib/assets/fonts/ttrounds-regular-webfont.woff +0 -0
- package/src/lib/assets/fonts/ttrounds-regular-webfont.woff2 +0 -0
- package/src/lib/assets/fonts/ttrounds-thin-webfont.woff +0 -0
- package/src/lib/assets/fonts/ttrounds-thin-webfont.woff2 +0 -0
- package/src/lib/assets/images/flag/icon-flag-de.svg +10 -0
- package/src/lib/assets/images/flag/icon-flag-en.svg +1 -0
- package/src/lib/assets/images/flag/icon-flag-es.svg +11 -0
- package/src/lib/assets/images/flag/icon-flag-fr.svg +1 -0
- package/src/lib/assets/images/flag/icon-flag-ro.svg +11 -0
- package/src/lib/assets/images/flag/origin-form/new-id-card.png +0 -0
- package/src/lib/assets/images/flag/origin-form/old-id-card.png +0 -0
|
@@ -0,0 +1,720 @@
|
|
|
1
|
+
export declare class LabelKeys {
|
|
2
|
+
static readonly errors: {
|
|
3
|
+
ISE: string;
|
|
4
|
+
BRE: string;
|
|
5
|
+
UAT: string;
|
|
6
|
+
FOR: string;
|
|
7
|
+
NFE: string;
|
|
8
|
+
};
|
|
9
|
+
static readonly metadata: {
|
|
10
|
+
applicationId: string;
|
|
11
|
+
applicationName: string;
|
|
12
|
+
user: string;
|
|
13
|
+
};
|
|
14
|
+
static readonly cardEnrolKeys: {
|
|
15
|
+
failure: string;
|
|
16
|
+
success: string;
|
|
17
|
+
};
|
|
18
|
+
static readonly popMessages: {
|
|
19
|
+
error: {
|
|
20
|
+
failedOtpValidation: string;
|
|
21
|
+
failedToLoadForm: string;
|
|
22
|
+
failedToParseForm: string;
|
|
23
|
+
failedToSaveForm: string;
|
|
24
|
+
failedToPublishDictionary: string;
|
|
25
|
+
failedToLoadDictionary: string;
|
|
26
|
+
failedValidation: string;
|
|
27
|
+
partnerFailed: string;
|
|
28
|
+
documentFailed: string;
|
|
29
|
+
documentWithSameNameAlreadyAdded: string;
|
|
30
|
+
mappingFailed: string;
|
|
31
|
+
invalidValues: string;
|
|
32
|
+
atLeastOneValue: string;
|
|
33
|
+
atLeastOneDependentValue: string;
|
|
34
|
+
atLeastOneLanguage: string;
|
|
35
|
+
mustSelectImageFormat: string;
|
|
36
|
+
cannotDeleteDocWithVersions: string;
|
|
37
|
+
cannotDeleteUsedDocs: string;
|
|
38
|
+
mustSelectDocFile: string;
|
|
39
|
+
insertValidFrom: string;
|
|
40
|
+
validFromOlderThan: string;
|
|
41
|
+
validDateGreaterThan: string;
|
|
42
|
+
insertVersion: string;
|
|
43
|
+
insertName: string;
|
|
44
|
+
documentWithSameVersion: string;
|
|
45
|
+
documentVersionCannotBeLower: string;
|
|
46
|
+
versionCannotBeDeleted: string;
|
|
47
|
+
saveAppBeforeAddingDoc: string;
|
|
48
|
+
needToCompleteVersionEdit: string;
|
|
49
|
+
selectedPartnerAlreadyAdded: string;
|
|
50
|
+
selectedMethodAlreadyAdded: string;
|
|
51
|
+
selectedDocumentAlreadyAdded: string;
|
|
52
|
+
completeCurrentMappingFirst: string;
|
|
53
|
+
selectApiMethod: string;
|
|
54
|
+
publishFail: string;
|
|
55
|
+
selectMethodBeforeAdding: string;
|
|
56
|
+
noStatusesAvailableToClean: string;
|
|
57
|
+
dictionaryCannotBeDeleted: string;
|
|
58
|
+
partnerUsedInActionStep: string;
|
|
59
|
+
methodCannotBeDeleted: string;
|
|
60
|
+
};
|
|
61
|
+
success: {
|
|
62
|
+
dictionarySaved: string;
|
|
63
|
+
succesfullyOtpValidation: string;
|
|
64
|
+
formSaved: string;
|
|
65
|
+
partnerSuccesfulyAdded: string;
|
|
66
|
+
publishSuccess: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
static readonly validatorMessages: {
|
|
70
|
+
applicationNameRequired: string;
|
|
71
|
+
applicationTypeRequired: string;
|
|
72
|
+
applicationLanguageRequired: string;
|
|
73
|
+
applicationDefaultLanguageRequired: string;
|
|
74
|
+
sectionTranslationRequired: string;
|
|
75
|
+
sectionTitleRequired: string;
|
|
76
|
+
duplicateSectionTitleFound: string;
|
|
77
|
+
stepNameIsRequired: string;
|
|
78
|
+
duplicateStepNameFound: string;
|
|
79
|
+
allTranslationsMustHaveValues: string;
|
|
80
|
+
controlTitleIsRequired: string;
|
|
81
|
+
allControlTranslationsMustHaveValues: string;
|
|
82
|
+
controlTranslationsAreRequired: string;
|
|
83
|
+
controlMaxChars: string;
|
|
84
|
+
duplicateControlTitleFound: string;
|
|
85
|
+
getMethodMustHaveName: string;
|
|
86
|
+
sendMethodMustHaveName: string;
|
|
87
|
+
selectADictionary: string;
|
|
88
|
+
methodMustHaveAName: string;
|
|
89
|
+
applicationMappingRequired: string;
|
|
90
|
+
missingDocuments: string;
|
|
91
|
+
dictionaryMappingMissing: string;
|
|
92
|
+
dictionaryLanguageNotInApplication: string;
|
|
93
|
+
duplicateDocumentId: string;
|
|
94
|
+
documentIdRequired: string;
|
|
95
|
+
};
|
|
96
|
+
static readonly confirmDialog: {
|
|
97
|
+
partnerBody: {
|
|
98
|
+
title: string;
|
|
99
|
+
};
|
|
100
|
+
partnerMethodApi: {
|
|
101
|
+
title: string;
|
|
102
|
+
};
|
|
103
|
+
common: {
|
|
104
|
+
warningMessage: string;
|
|
105
|
+
};
|
|
106
|
+
dialogButtons: {
|
|
107
|
+
cancel: string;
|
|
108
|
+
confirm: string;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
static readonly placeholders: {
|
|
112
|
+
name: string;
|
|
113
|
+
choose: string;
|
|
114
|
+
chooseLanguage: string;
|
|
115
|
+
chooseDocuments: string;
|
|
116
|
+
version: string;
|
|
117
|
+
keyName: string;
|
|
118
|
+
apiKey: string;
|
|
119
|
+
headerKey: string;
|
|
120
|
+
headerValue: string;
|
|
121
|
+
valability: string;
|
|
122
|
+
partnerField: string;
|
|
123
|
+
enterStepName: string;
|
|
124
|
+
email: string;
|
|
125
|
+
password: string;
|
|
126
|
+
};
|
|
127
|
+
static readonly common: {
|
|
128
|
+
form: {
|
|
129
|
+
email: string;
|
|
130
|
+
cancel: string;
|
|
131
|
+
};
|
|
132
|
+
actions: {
|
|
133
|
+
read: string;
|
|
134
|
+
create: string;
|
|
135
|
+
write: string;
|
|
136
|
+
view: string;
|
|
137
|
+
filter: string;
|
|
138
|
+
includeInactive: string;
|
|
139
|
+
save: string;
|
|
140
|
+
confirm: string;
|
|
141
|
+
cancel: string;
|
|
142
|
+
back: string;
|
|
143
|
+
next: string;
|
|
144
|
+
submit: string;
|
|
145
|
+
close: string;
|
|
146
|
+
add: string;
|
|
147
|
+
addValue: string;
|
|
148
|
+
edit: string;
|
|
149
|
+
delete: string;
|
|
150
|
+
check: string;
|
|
151
|
+
import: string;
|
|
152
|
+
export: string;
|
|
153
|
+
collapseAll: string;
|
|
154
|
+
logout: string;
|
|
155
|
+
upload: string;
|
|
156
|
+
};
|
|
157
|
+
pagination: {
|
|
158
|
+
noItems: string;
|
|
159
|
+
perPage: string;
|
|
160
|
+
of: string;
|
|
161
|
+
};
|
|
162
|
+
confirmation: {
|
|
163
|
+
title: string;
|
|
164
|
+
delete: string;
|
|
165
|
+
};
|
|
166
|
+
api: {
|
|
167
|
+
addMethod: string;
|
|
168
|
+
addField: string;
|
|
169
|
+
};
|
|
170
|
+
components: {
|
|
171
|
+
button: string;
|
|
172
|
+
};
|
|
173
|
+
others: {
|
|
174
|
+
translation: string;
|
|
175
|
+
type: string;
|
|
176
|
+
active: string;
|
|
177
|
+
newItem: string;
|
|
178
|
+
name: string;
|
|
179
|
+
code: string;
|
|
180
|
+
notifications: string;
|
|
181
|
+
seeAllNotifications: string;
|
|
182
|
+
viewProfile: string;
|
|
183
|
+
description: string;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
static readonly login: {
|
|
187
|
+
form: {
|
|
188
|
+
title: string;
|
|
189
|
+
emailValidation: string;
|
|
190
|
+
password: string;
|
|
191
|
+
passwordValidation: string;
|
|
192
|
+
submit: string;
|
|
193
|
+
passwordResetButton: string;
|
|
194
|
+
stayLoggedIn: string;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
197
|
+
static readonly register: {
|
|
198
|
+
form: {
|
|
199
|
+
title: string;
|
|
200
|
+
poses: string;
|
|
201
|
+
role: string;
|
|
202
|
+
submit: string;
|
|
203
|
+
successMessage: string;
|
|
204
|
+
errors: {
|
|
205
|
+
emailRequired: string;
|
|
206
|
+
emailInvalid: string;
|
|
207
|
+
roleRequired: string;
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
static readonly roles: {
|
|
212
|
+
title: string;
|
|
213
|
+
viewButton: string;
|
|
214
|
+
editButton: string;
|
|
215
|
+
createButton: string;
|
|
216
|
+
view: {
|
|
217
|
+
title: string;
|
|
218
|
+
};
|
|
219
|
+
edit: {
|
|
220
|
+
title: string;
|
|
221
|
+
successMessage: string;
|
|
222
|
+
};
|
|
223
|
+
create: {
|
|
224
|
+
successMessage: string;
|
|
225
|
+
};
|
|
226
|
+
form: {
|
|
227
|
+
title: string;
|
|
228
|
+
name: string;
|
|
229
|
+
permissions: string;
|
|
230
|
+
submit: string;
|
|
231
|
+
};
|
|
232
|
+
};
|
|
233
|
+
static readonly profile: {
|
|
234
|
+
title: string;
|
|
235
|
+
view: {
|
|
236
|
+
title: string;
|
|
237
|
+
edit: string;
|
|
238
|
+
name: string;
|
|
239
|
+
email: string;
|
|
240
|
+
phone: string;
|
|
241
|
+
address: string;
|
|
242
|
+
};
|
|
243
|
+
edit: {
|
|
244
|
+
title: string;
|
|
245
|
+
personal: {
|
|
246
|
+
title: string;
|
|
247
|
+
browse: string;
|
|
248
|
+
name: string;
|
|
249
|
+
namePlaceholder: string;
|
|
250
|
+
email: string;
|
|
251
|
+
emailPlaceholder: string;
|
|
252
|
+
phone: string;
|
|
253
|
+
phonePlaceholder: string;
|
|
254
|
+
address: string;
|
|
255
|
+
addressPlaceholder: string;
|
|
256
|
+
};
|
|
257
|
+
password: {
|
|
258
|
+
title: string;
|
|
259
|
+
current: string;
|
|
260
|
+
currentPlaceholder: string;
|
|
261
|
+
password: string;
|
|
262
|
+
passwordPlaceholder: string;
|
|
263
|
+
confirm: string;
|
|
264
|
+
confirmPlaceholder: string;
|
|
265
|
+
};
|
|
266
|
+
save: string;
|
|
267
|
+
cancel: string;
|
|
268
|
+
successMessage: string;
|
|
269
|
+
errors: {
|
|
270
|
+
selectImage: string;
|
|
271
|
+
imageOnly: string;
|
|
272
|
+
currentPassword: string;
|
|
273
|
+
newPassword: string;
|
|
274
|
+
passwordConfirmation: string;
|
|
275
|
+
passwordsUnmatch: string;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
static readonly users: {
|
|
280
|
+
title: string;
|
|
281
|
+
grid: {
|
|
282
|
+
create: string;
|
|
283
|
+
email: string;
|
|
284
|
+
name: string;
|
|
285
|
+
role: string;
|
|
286
|
+
active: string;
|
|
287
|
+
blocked: string;
|
|
288
|
+
};
|
|
289
|
+
view: {
|
|
290
|
+
title: string;
|
|
291
|
+
id: string;
|
|
292
|
+
phone: string;
|
|
293
|
+
address: string;
|
|
294
|
+
profile: {
|
|
295
|
+
title: string;
|
|
296
|
+
email: string;
|
|
297
|
+
emailPlaceholder: string;
|
|
298
|
+
role: string;
|
|
299
|
+
rolePlaceholder: string;
|
|
300
|
+
pos: string;
|
|
301
|
+
posPlaceholder: string;
|
|
302
|
+
active: string;
|
|
303
|
+
blocked: string;
|
|
304
|
+
update: string;
|
|
305
|
+
successMessage: string;
|
|
306
|
+
};
|
|
307
|
+
sessions: {
|
|
308
|
+
title: string;
|
|
309
|
+
device: string;
|
|
310
|
+
os: string;
|
|
311
|
+
ip: string;
|
|
312
|
+
browser: string;
|
|
313
|
+
date: string;
|
|
314
|
+
};
|
|
315
|
+
logs: {
|
|
316
|
+
title: string;
|
|
317
|
+
action: string;
|
|
318
|
+
status: string;
|
|
319
|
+
path: string;
|
|
320
|
+
date: string;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
static readonly dictionary: {
|
|
325
|
+
title: string;
|
|
326
|
+
grid: {
|
|
327
|
+
create: string;
|
|
328
|
+
name: string;
|
|
329
|
+
languages: string;
|
|
330
|
+
state: string;
|
|
331
|
+
};
|
|
332
|
+
deleteSuccess: string;
|
|
333
|
+
errors: {
|
|
334
|
+
undeletable: string;
|
|
335
|
+
resetValues: string;
|
|
336
|
+
noDictionaryComponentDefined: string;
|
|
337
|
+
};
|
|
338
|
+
others: {
|
|
339
|
+
dictionaryValues: string;
|
|
340
|
+
dependentDictionary: string;
|
|
341
|
+
sourceDictionaries: string;
|
|
342
|
+
active: string;
|
|
343
|
+
versions: string;
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
static readonly applications: {
|
|
347
|
+
title: string;
|
|
348
|
+
newApplication: string;
|
|
349
|
+
create: string;
|
|
350
|
+
edit: string;
|
|
351
|
+
grid: {
|
|
352
|
+
create: string;
|
|
353
|
+
name: string;
|
|
354
|
+
date: string;
|
|
355
|
+
};
|
|
356
|
+
deleteSuccess: string;
|
|
357
|
+
errors: {
|
|
358
|
+
undeletable: string;
|
|
359
|
+
};
|
|
360
|
+
noDataAvailableForSelectedType: string;
|
|
361
|
+
};
|
|
362
|
+
static readonly appConfigEdit: {
|
|
363
|
+
history: {
|
|
364
|
+
name: string;
|
|
365
|
+
user: string;
|
|
366
|
+
dateModified: string;
|
|
367
|
+
summary: string;
|
|
368
|
+
};
|
|
369
|
+
generalData: {
|
|
370
|
+
name: string;
|
|
371
|
+
appType: string;
|
|
372
|
+
languages: string;
|
|
373
|
+
defaultLanguage: string;
|
|
374
|
+
contentWithOffer: string;
|
|
375
|
+
showCounterStep: string;
|
|
376
|
+
showNameStep: string;
|
|
377
|
+
showAllSteps: string;
|
|
378
|
+
getTestVersion: string;
|
|
379
|
+
publishOnTest: string;
|
|
380
|
+
getProductionVersion: string;
|
|
381
|
+
publishOnProduction: string;
|
|
382
|
+
getTestConfirm: string;
|
|
383
|
+
getProdConfirm: string;
|
|
384
|
+
publishTestConfirm: string;
|
|
385
|
+
publishProdConfirm: string;
|
|
386
|
+
};
|
|
387
|
+
design: {
|
|
388
|
+
name: string;
|
|
389
|
+
fonts: string;
|
|
390
|
+
fontFamily: string;
|
|
391
|
+
fontSize: string;
|
|
392
|
+
fontWeight: string;
|
|
393
|
+
letterSpacing: string;
|
|
394
|
+
buttons: string;
|
|
395
|
+
border: string;
|
|
396
|
+
borderColor: string;
|
|
397
|
+
borderRadius: string;
|
|
398
|
+
textAlign: string;
|
|
399
|
+
horizontalPosition: string;
|
|
400
|
+
verticalPosition: string;
|
|
401
|
+
components: string;
|
|
402
|
+
color: string;
|
|
403
|
+
checkColor: string;
|
|
404
|
+
backgroundColor: string;
|
|
405
|
+
labelStyle: string;
|
|
406
|
+
dimension: string;
|
|
407
|
+
maxWidth: string;
|
|
408
|
+
weight: string;
|
|
409
|
+
right: string;
|
|
410
|
+
left: string;
|
|
411
|
+
center: string;
|
|
412
|
+
justify: string;
|
|
413
|
+
margins: string;
|
|
414
|
+
top: string;
|
|
415
|
+
bottom: string;
|
|
416
|
+
heading: string;
|
|
417
|
+
paragraph: string;
|
|
418
|
+
list: string;
|
|
419
|
+
input: string;
|
|
420
|
+
label: string;
|
|
421
|
+
textField: string;
|
|
422
|
+
position: string;
|
|
423
|
+
checkBox: string;
|
|
424
|
+
radio: string;
|
|
425
|
+
data: string;
|
|
426
|
+
sectionSeparator: string;
|
|
427
|
+
general: string;
|
|
428
|
+
padding: string;
|
|
429
|
+
tables: string;
|
|
430
|
+
headers: string;
|
|
431
|
+
details: string;
|
|
432
|
+
};
|
|
433
|
+
flux: {
|
|
434
|
+
newStep: string;
|
|
435
|
+
name: string;
|
|
436
|
+
systemSteps: string;
|
|
437
|
+
sign: string;
|
|
438
|
+
addNewSection: string;
|
|
439
|
+
customStep: {
|
|
440
|
+
dependent: string;
|
|
441
|
+
dictionary: string;
|
|
442
|
+
type: string;
|
|
443
|
+
text: string;
|
|
444
|
+
showDictionaryAsRadioButtonsList: string;
|
|
445
|
+
relatedDictionariesTranslation: string;
|
|
446
|
+
};
|
|
447
|
+
section: {
|
|
448
|
+
newComponent: string;
|
|
449
|
+
title: string;
|
|
450
|
+
type: string;
|
|
451
|
+
showSectionTitle: string;
|
|
452
|
+
showSectionSeparator: string;
|
|
453
|
+
changeOrder: string;
|
|
454
|
+
addComponent: string;
|
|
455
|
+
manualInput: string;
|
|
456
|
+
paragraph: string;
|
|
457
|
+
checkbox: string;
|
|
458
|
+
buttons: string;
|
|
459
|
+
newRow: string;
|
|
460
|
+
newSection: string;
|
|
461
|
+
dictionaryComponent: string;
|
|
462
|
+
presentationDownloadComponent: string;
|
|
463
|
+
changeSectionType: string;
|
|
464
|
+
};
|
|
465
|
+
manualInputControl: {
|
|
466
|
+
validations: string;
|
|
467
|
+
simple: string;
|
|
468
|
+
allowedCharacters: string;
|
|
469
|
+
maxCharacters: string;
|
|
470
|
+
minValue: string;
|
|
471
|
+
maxValue: string;
|
|
472
|
+
onlyPast: string;
|
|
473
|
+
onlyFuture: string;
|
|
474
|
+
throughApi: string;
|
|
475
|
+
minValueShouldBe: string;
|
|
476
|
+
pickApiValidationMethod: string;
|
|
477
|
+
pickApiValidationPartner: string;
|
|
478
|
+
};
|
|
479
|
+
};
|
|
480
|
+
api: {
|
|
481
|
+
name: string;
|
|
482
|
+
sendData: string;
|
|
483
|
+
getData: string;
|
|
484
|
+
validators: string;
|
|
485
|
+
};
|
|
486
|
+
offer: {
|
|
487
|
+
name: string;
|
|
488
|
+
customStep: string;
|
|
489
|
+
generateDocuments: string;
|
|
490
|
+
showStepCounter: string;
|
|
491
|
+
showStepName: string;
|
|
492
|
+
showAllSteps: string;
|
|
493
|
+
addNewSection: string;
|
|
494
|
+
};
|
|
495
|
+
generatedDocuments: {
|
|
496
|
+
documentsBookmarks: {
|
|
497
|
+
bookmark: string;
|
|
498
|
+
controlName: string;
|
|
499
|
+
bookmarkMappingValidation: string;
|
|
500
|
+
};
|
|
501
|
+
addDocument: string;
|
|
502
|
+
editDocument: string;
|
|
503
|
+
name: string;
|
|
504
|
+
label: string;
|
|
505
|
+
generated: string;
|
|
506
|
+
activ: string;
|
|
507
|
+
version: string;
|
|
508
|
+
validFrom: string;
|
|
509
|
+
validTo: string;
|
|
510
|
+
availableBookmarks: string;
|
|
511
|
+
generatedByApp: string;
|
|
512
|
+
};
|
|
513
|
+
partners: {
|
|
514
|
+
methodApi: {
|
|
515
|
+
name: string;
|
|
516
|
+
selectMethod: string;
|
|
517
|
+
selectMethodType: string;
|
|
518
|
+
selectCallType: string;
|
|
519
|
+
authType: string;
|
|
520
|
+
addHeader: string;
|
|
521
|
+
addMapping: string;
|
|
522
|
+
addApiKey: string;
|
|
523
|
+
action: string;
|
|
524
|
+
loadJsonContent: string;
|
|
525
|
+
loadUrlContent: string;
|
|
526
|
+
urlContent: string;
|
|
527
|
+
urlSegment: string;
|
|
528
|
+
urlParameter: string;
|
|
529
|
+
value: string;
|
|
530
|
+
delete: string;
|
|
531
|
+
contentType: string;
|
|
532
|
+
partnerField: string;
|
|
533
|
+
fluxField: string;
|
|
534
|
+
methodField: string;
|
|
535
|
+
fieldType: string;
|
|
536
|
+
};
|
|
537
|
+
dictionaryMapping: {
|
|
538
|
+
name: string;
|
|
539
|
+
loadDictionaries: string;
|
|
540
|
+
partnerValue: string;
|
|
541
|
+
noValueFound: string;
|
|
542
|
+
};
|
|
543
|
+
documents: {
|
|
544
|
+
name: string;
|
|
545
|
+
add: string;
|
|
546
|
+
selectMethodApi: string;
|
|
547
|
+
};
|
|
548
|
+
statuses: {
|
|
549
|
+
name: string;
|
|
550
|
+
add: string;
|
|
551
|
+
partnerStatus: string;
|
|
552
|
+
appStatus: string;
|
|
553
|
+
clearSelection: string;
|
|
554
|
+
};
|
|
555
|
+
generalSettings: {
|
|
556
|
+
addNewOffer: string;
|
|
557
|
+
name: string;
|
|
558
|
+
apiNethod: string;
|
|
559
|
+
identifier: string;
|
|
560
|
+
value: string;
|
|
561
|
+
acceptMultipleOffers: string;
|
|
562
|
+
addNewAcceptedOffers: string;
|
|
563
|
+
choose: string;
|
|
564
|
+
valabilityPeriod: string;
|
|
565
|
+
hasCustomValability: string;
|
|
566
|
+
valability: string;
|
|
567
|
+
requiredApiMethodValidation: string;
|
|
568
|
+
requiredIdentifierValidation: string;
|
|
569
|
+
requiredValueValidation: string;
|
|
570
|
+
requiredMultipleOffersValidation: string;
|
|
571
|
+
requiredNumberOfOffersValidation: string;
|
|
572
|
+
multipleSameOffersValidation: string;
|
|
573
|
+
};
|
|
574
|
+
name: string;
|
|
575
|
+
add: string;
|
|
576
|
+
};
|
|
577
|
+
statuses: {
|
|
578
|
+
name: string;
|
|
579
|
+
order: string;
|
|
580
|
+
final: string;
|
|
581
|
+
active: string;
|
|
582
|
+
addStatus: string;
|
|
583
|
+
selectStatus: string;
|
|
584
|
+
stepName: string;
|
|
585
|
+
noStatus: string;
|
|
586
|
+
statusUsedIn: string;
|
|
587
|
+
};
|
|
588
|
+
displayMode: {
|
|
589
|
+
name: string;
|
|
590
|
+
};
|
|
591
|
+
errors: {
|
|
592
|
+
applicationHas: string;
|
|
593
|
+
applicationErrors: string;
|
|
594
|
+
};
|
|
595
|
+
};
|
|
596
|
+
static readonly application: {
|
|
597
|
+
api: {
|
|
598
|
+
getItems: {
|
|
599
|
+
name: string;
|
|
600
|
+
fields: string;
|
|
601
|
+
fieldName: string;
|
|
602
|
+
fieldType: string;
|
|
603
|
+
};
|
|
604
|
+
validators: {
|
|
605
|
+
name: string;
|
|
606
|
+
};
|
|
607
|
+
sendItems: {
|
|
608
|
+
name: string;
|
|
609
|
+
};
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
static readonly applicationLaunch: {
|
|
613
|
+
title: string;
|
|
614
|
+
selectApplication: string;
|
|
615
|
+
selectEnvironment: string;
|
|
616
|
+
launchButton: string;
|
|
617
|
+
errorSelectApplication: string;
|
|
618
|
+
environments: {
|
|
619
|
+
production: string;
|
|
620
|
+
staging: string;
|
|
621
|
+
development: string;
|
|
622
|
+
};
|
|
623
|
+
};
|
|
624
|
+
static readonly stepControl: {
|
|
625
|
+
title: string;
|
|
626
|
+
dimension: string;
|
|
627
|
+
auto: string;
|
|
628
|
+
mandatory: string;
|
|
629
|
+
translations: string;
|
|
630
|
+
titleHyperlink: string;
|
|
631
|
+
};
|
|
632
|
+
static readonly formly: {
|
|
633
|
+
selectAnItem: string;
|
|
634
|
+
};
|
|
635
|
+
static readonly flux: {
|
|
636
|
+
createStep: string;
|
|
637
|
+
customStep: string;
|
|
638
|
+
finalStep: string;
|
|
639
|
+
identification: string;
|
|
640
|
+
idScan: string;
|
|
641
|
+
verifyPhone: string;
|
|
642
|
+
verifyEmail: string;
|
|
643
|
+
sign: string;
|
|
644
|
+
status: string;
|
|
645
|
+
pause: string;
|
|
646
|
+
generateDocument: string;
|
|
647
|
+
downloadDocument: string;
|
|
648
|
+
viewDocument: string;
|
|
649
|
+
action: string;
|
|
650
|
+
uploadDocument: string;
|
|
651
|
+
viewDemo: string;
|
|
652
|
+
viewOffer: string;
|
|
653
|
+
netopia: string;
|
|
654
|
+
euPlatesc: string;
|
|
655
|
+
openBanking: string;
|
|
656
|
+
stepInfo: {
|
|
657
|
+
systemPhoneTitle: string;
|
|
658
|
+
systemEmailTitle: string;
|
|
659
|
+
kycStatusTitle: string;
|
|
660
|
+
kycPersonTitle: string;
|
|
661
|
+
kycAddressTitle: string;
|
|
662
|
+
kycValidationTitle: string;
|
|
663
|
+
navigationSectionTitle: string;
|
|
664
|
+
systemStatusTitle: string;
|
|
665
|
+
validationStatus: string;
|
|
666
|
+
fileMaxSize: string;
|
|
667
|
+
fileFormat: string;
|
|
668
|
+
showUploadFileButton: string;
|
|
669
|
+
};
|
|
670
|
+
components: {
|
|
671
|
+
system: {
|
|
672
|
+
validEmail: string;
|
|
673
|
+
validPhone: string;
|
|
674
|
+
};
|
|
675
|
+
sign: {
|
|
676
|
+
electronicly: string;
|
|
677
|
+
handwritten: string;
|
|
678
|
+
automated: string;
|
|
679
|
+
displayDocument: string;
|
|
680
|
+
documentList: string;
|
|
681
|
+
selectDocument: string;
|
|
682
|
+
grid: {
|
|
683
|
+
name: string;
|
|
684
|
+
individual: string;
|
|
685
|
+
bulk: string;
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
phone: {
|
|
689
|
+
collected: string;
|
|
690
|
+
selectComponent: string;
|
|
691
|
+
phoneLabel: string;
|
|
692
|
+
phoneButtonLabel: string;
|
|
693
|
+
otpLabel: string;
|
|
694
|
+
otpButtonLabel: string;
|
|
695
|
+
phoneErrorLabel: string;
|
|
696
|
+
otpErrorLabel: string;
|
|
697
|
+
};
|
|
698
|
+
email: {
|
|
699
|
+
collected: string;
|
|
700
|
+
selectComponent: string;
|
|
701
|
+
emailLabel: string;
|
|
702
|
+
emailButtonLabel: string;
|
|
703
|
+
otpLabel: string;
|
|
704
|
+
otpButtonLabel: string;
|
|
705
|
+
emailErrorLabel: string;
|
|
706
|
+
otpErrorLabel: string;
|
|
707
|
+
};
|
|
708
|
+
action: {
|
|
709
|
+
pickApiMethod: string;
|
|
710
|
+
pickApiPartners: string;
|
|
711
|
+
};
|
|
712
|
+
listOffer: {
|
|
713
|
+
addColumn: string;
|
|
714
|
+
selectComponent: string;
|
|
715
|
+
name: string;
|
|
716
|
+
order: string;
|
|
717
|
+
};
|
|
718
|
+
};
|
|
719
|
+
};
|
|
720
|
+
}
|