@stbmoz-onboarding/core 1.0.37 → 1.0.38
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 +14 -0
- package/Utilities/index.js +2 -1
- package/index.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
module.exports.districts = {
|
|
2
|
+
"20000": ["Ancuabe", "Balama", "Chiúre", "Ibo", "Macomia", "Mecúfi", "Mozambique Island", "Mueda", "Muidumbe", "Muita", "Palma", "Pemba", "Quissanga", "Quiterajo", "Mocímboa da Praia"],
|
|
3
|
+
"90000": ["Chokwe", "Guijá", "Mandimba", "Massangena", "Massingir", "Xai-Xai"],
|
|
4
|
+
"80000": ["Funhalouro", "Govuro", "Inhassoro", "Inhambane", "Jangamo", "Lilongwe", "Marromeu", "Morrumbene", "Zavala"],
|
|
5
|
+
"60000": ["Barue", "Catandica", "Chimoio", "Gondola", "Manica", "Sussundenga"],
|
|
6
|
+
"110000": ["Boane", "Matutuíne", "Mavalane", "Maputo", "Marracuene", "Matola"],
|
|
7
|
+
"100000": ["Boane", "Matutuíne", "Mavalane", "Maputo", "Marracuene", "Matola"],
|
|
8
|
+
"30000": ["Angoche", "Ilha de Moçambique", "Lalaua", "Meconta", "Mogincual", "Moma", "Mossuril", "Murrupula", "Nacala", "Nampula", "Pendefunda", "Vilanculos"],
|
|
9
|
+
"10000": ["Cuamba", "Lichinga", "Majune", "Marracuene", "Mavago", "Mecula", "Meponda", "Metarica", "Mocuba", "Montepuez", "Ngauma", "Panda", "Wamo"],
|
|
10
|
+
"70000": ["Beira", "Chibabava", "Dondo", "Gorongosa", "Machanga", "Nhamatanda", "Tambara"],
|
|
11
|
+
"50000": ["Angónia", "Chifunde", "Chiúte", "Marara", "Marávia", "Moatize", "Mutarara"],
|
|
12
|
+
"40000": ["Alto Molócuè", "Gurúè", "Maganja da Costa", "Milange", "Mocuba", "Mopeia", "Quelimane", "Sena"]
|
|
13
|
+
}
|
|
14
|
+
|
package/Utilities/index.js
CHANGED
|
@@ -9,6 +9,7 @@ const { maritalStatus, maritalStatuses } = require("./maritalStatus")
|
|
|
9
9
|
const { marriageRegimes, marriageRegime } = require("./marriageRegime")
|
|
10
10
|
const { professions } = require("./professions")
|
|
11
11
|
const { provinces } = require("./provinces")
|
|
12
|
+
const { districts } = require("./districts")
|
|
12
13
|
const { segment, segments } = require("./segments")
|
|
13
14
|
const { AllowedChars } = require("./allowedChars")
|
|
14
15
|
|
|
@@ -16,5 +17,5 @@ module.exports = {
|
|
|
16
17
|
academicLevel, academicLevels, activities, activity, contractRegime, contractRegimes,
|
|
17
18
|
countries, country, employmentType, employmentTypes, gender, genders, idDocument, idDocuments,
|
|
18
19
|
maritalStatus, maritalStatuses, marriageRegimes, marriageRegime, professions, provinces,
|
|
19
|
-
segment, segments, AllowedChars
|
|
20
|
+
segment, segments, AllowedChars, districts
|
|
20
21
|
}
|
package/index.js
CHANGED
|
@@ -16,6 +16,7 @@ const { maritalStatus, maritalStatuses } = require("./Utilities/maritalStatus")
|
|
|
16
16
|
const { marriageRegimes, marriageRegime } = require("./Utilities/marriageRegime")
|
|
17
17
|
const { professions } = require("./Utilities/professions")
|
|
18
18
|
const { provinces } = require("./Utilities/provinces")
|
|
19
|
+
const { districts } = require("./Utilities/districts")
|
|
19
20
|
const { segment, segments } = require("./Utilities/segments")
|
|
20
21
|
const { AllowedChars } = require("./Utilities/allowedChars")
|
|
21
22
|
const {
|
|
@@ -36,7 +37,7 @@ module.exports.Functions = {
|
|
|
36
37
|
module.exports.Utilities = {
|
|
37
38
|
academicLevel, academicLevels, activities, activity, contractRegime, contractRegimes,
|
|
38
39
|
countries, country, employmentType, employmentTypes, gender, genders, idDocument, idDocuments,
|
|
39
|
-
maritalStatus, maritalStatuses, marriageRegimes, marriageRegime, professions, provinces,
|
|
40
|
+
maritalStatus, maritalStatuses, marriageRegimes, marriageRegime, professions, provinces, districts,
|
|
40
41
|
segment, segments, AllowedChars
|
|
41
42
|
}
|
|
42
43
|
|