@stbmoz-onboarding/core 1.0.43 → 1.0.45
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/Utilities/districts.js +531 -326
- package/Utilities/incomeFrequencies.js +37 -0
- package/Utilities/index.js +5 -2
- package/Utilities/neighborhood.js +3098 -2780
- package/Utilities/professions.js +2 -2
- package/Utilities/provinces.js +11 -11
- package/exemple +625 -0
- package/index.js +4 -3
- package/package.json +9 -9
- package/Utilities/incomeFrequency.js +0 -22
package/index.js
CHANGED
|
@@ -17,7 +17,6 @@ const { marriageRegimes, marriageRegime } = require("./Utilities/marriageRegime"
|
|
|
17
17
|
const { professions } = require("./Utilities/professions")
|
|
18
18
|
const { provinces } = require("./Utilities/provinces")
|
|
19
19
|
const { districts } = require("./Utilities/districts")
|
|
20
|
-
const { neighborhood } = require("./Utilities/neighborhood")
|
|
21
20
|
const { segment, segments } = require("./Utilities/segments")
|
|
22
21
|
const { AllowedChars } = require("./Utilities/allowedChars")
|
|
23
22
|
const {
|
|
@@ -28,7 +27,9 @@ const {
|
|
|
28
27
|
} = require("./Validations/rules")
|
|
29
28
|
|
|
30
29
|
const { branch } = require("./Utilities/branch")
|
|
31
|
-
const {
|
|
30
|
+
const { incomeFrequecies} = require("./Utilities/incomeFrequencies")
|
|
31
|
+
const { neighborhood } = require("./Utilities/neighborhood")
|
|
32
|
+
|
|
32
33
|
|
|
33
34
|
module.exports.Dates = { DateFormater, ValidateDate }
|
|
34
35
|
|
|
@@ -41,7 +42,7 @@ module.exports.Utilities = {
|
|
|
41
42
|
academicLevel, academicLevels, activities, activity, contractRegime, contractRegimes,
|
|
42
43
|
countries, country, employmentType, employmentTypes, gender, genders, idDocument, idDocuments,
|
|
43
44
|
maritalStatus, maritalStatuses, marriageRegimes, marriageRegime, professions, provinces, districts,
|
|
44
|
-
segment, segments, AllowedChars,
|
|
45
|
+
segment, segments, AllowedChars, incomeFrequecies, branch, neighborhood
|
|
45
46
|
}
|
|
46
47
|
|
|
47
48
|
module.exports.Validations = {
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_args": [
|
|
3
3
|
[
|
|
4
|
-
"@stbmoz-onboarding/core@1.0.
|
|
4
|
+
"@stbmoz-onboarding/core@1.0.44",
|
|
5
5
|
"/Users/pedrodava/Desktop/Bank/RAO/frontend"
|
|
6
6
|
]
|
|
7
7
|
],
|
|
8
|
-
"_from": "@stbmoz-onboarding/core@1.0.
|
|
9
|
-
"_id": "@stbmoz-onboarding/core@1.0.
|
|
8
|
+
"_from": "@stbmoz-onboarding/core@1.0.45",
|
|
9
|
+
"_id": "@stbmoz-onboarding/core@1.0.45",
|
|
10
10
|
"_inBundle": false,
|
|
11
11
|
"_integrity": "sha512-hwZKB8fMqlvyu0k664ywG6RckIC2AN6DsgqcIy4H6gNtqr9eS1sw5FeT41NwFqvt8+Ybhomb3TjtcEQHGtJz7w==",
|
|
12
12
|
"_location": "/@stbmoz-onboarding/core",
|
|
@@ -14,19 +14,19 @@
|
|
|
14
14
|
"_requested": {
|
|
15
15
|
"type": "version",
|
|
16
16
|
"registry": true,
|
|
17
|
-
"raw": "@stbmoz-onboarding/core@1.0.
|
|
17
|
+
"raw": "@stbmoz-onboarding/core@1.0.45",
|
|
18
18
|
"name": "@stbmoz-onboarding/core",
|
|
19
19
|
"escapedName": "@stbmoz-onboarding%2fcore",
|
|
20
20
|
"scope": "@stbmoz-onboarding",
|
|
21
|
-
"rawSpec": "1.0.
|
|
21
|
+
"rawSpec": "1.0.45",
|
|
22
22
|
"saveSpec": null,
|
|
23
|
-
"fetchSpec": "1.0.
|
|
23
|
+
"fetchSpec": "1.0.45"
|
|
24
24
|
},
|
|
25
25
|
"_requiredBy": [
|
|
26
26
|
"/"
|
|
27
27
|
],
|
|
28
|
-
"_resolved": "https://registry.npmjs.org/@stbmoz-onboarding/core/-/core-1.0.
|
|
29
|
-
"_spec": "1.0.
|
|
28
|
+
"_resolved": "https://registry.npmjs.org/@stbmoz-onboarding/core/-/core-1.0.45.tgz",
|
|
29
|
+
"_spec": "1.0.45",
|
|
30
30
|
"_where": "/Users/pedrodava/Desktop/Bank/RAO/frontend",
|
|
31
31
|
"author": "",
|
|
32
32
|
"description": "\"core module\"",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
39
39
|
},
|
|
40
40
|
"type": "commonjs",
|
|
41
|
-
"version": "1.0.
|
|
41
|
+
"version": "1.0.45"
|
|
42
42
|
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
module.exports.incomeFrequency = [
|
|
2
|
-
{
|
|
3
|
-
value: "Semestral",
|
|
4
|
-
pt: "Semestral"
|
|
5
|
-
},
|
|
6
|
-
{
|
|
7
|
-
value: "Trimestral",
|
|
8
|
-
pt: "Trimestral"
|
|
9
|
-
},
|
|
10
|
-
{
|
|
11
|
-
value: "Mensal",
|
|
12
|
-
pt: "Mensal"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
value: "Semanal",
|
|
16
|
-
pt: "Semanal"
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
value: "Diario",
|
|
20
|
-
pt: "Diario"
|
|
21
|
-
}
|
|
22
|
-
]
|