@stbmoz-onboarding/core 1.2.3 → 1.2.5

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.
@@ -1,15 +1,18 @@
1
1
  module.exports.contractRegimes = [
2
2
  {
3
+ id: 1,
3
4
  value: "INDETERMINATED",
4
5
  pt: "Indeterminado",
5
6
  en: "Indeterminated"
6
7
  },
7
8
  {
9
+ id: 2,
8
10
  value: "DETERMINATED",
9
11
  pt: "Determinado",
10
12
  en: "Determinated"
11
13
  },
12
14
  {
15
+ id: 3,
13
16
  value: "TEMPORARY",
14
17
  pt: "Temporário",
15
18
  en: "Temporary"
@@ -36,10 +36,6 @@ module.exports.localities = {
36
36
  {
37
37
  "id": "100800",
38
38
  "description": "NAMAACHA"
39
- },
40
- {
41
- "id": "OTHER",
42
- "description": "OUTRO"
43
39
  }
44
40
  ],
45
41
  "02": [
@@ -78,10 +74,6 @@ module.exports.localities = {
78
74
  {
79
75
  "id": "100800",
80
76
  "description": "NAMAACHA"
81
- },
82
- {
83
- "id": "OTHER",
84
- "description": "OUTRO"
85
77
  }
86
78
  ],
87
79
 
@@ -152,10 +144,6 @@ module.exports.localities = {
152
144
  "id": "011600",
153
145
  "description": "SANGA"
154
146
  },
155
- {
156
- "id": "OTHER",
157
- "description": "OUTRO"
158
- }
159
147
  ],
160
148
 
161
149
 
@@ -227,10 +215,6 @@ module.exports.localities = {
227
215
  {
228
216
  "id": "021700",
229
217
  "description": "QUISSANGA"
230
- },
231
- {
232
- "id": "OTHER",
233
- "description": "OUTRO"
234
218
  }
235
219
  ],
236
220
 
@@ -319,10 +303,6 @@ module.exports.localities = {
319
303
  {
320
304
  "id": "032100",
321
305
  "description": "RIBAUE"
322
- },
323
- {
324
- "id": "OTHER",
325
- "description": "OUTRO"
326
306
  }
327
307
  ],
328
308
  "08": [
@@ -393,10 +373,6 @@ module.exports.localities = {
393
373
  {
394
374
  "id": "041700",
395
375
  "description": "PEBANE"
396
- },
397
- {
398
- "id": "OTHER",
399
- "description": "OUTRO"
400
376
  }
401
377
  ],
402
378
 
@@ -461,10 +437,6 @@ module.exports.localities = {
461
437
  {
462
438
  "id": "051300",
463
439
  "description": "ZUMBO"
464
- },
465
- {
466
- "id": "OTHER",
467
- "description": "OUTRO"
468
440
  }
469
441
  ],
470
442
 
@@ -510,10 +482,6 @@ module.exports.localities = {
510
482
  "id": "061000",
511
483
  "description": "TAMBARA"
512
484
  },
513
- {
514
- "id": "OTHER",
515
- "description": "OUTRO"
516
- }
517
485
  ],
518
486
 
519
487
  "05": [
@@ -569,10 +537,6 @@ module.exports.localities = {
569
537
  "id": "071300",
570
538
  "description": "NHAMATANDA"
571
539
  },
572
- {
573
- "id": "OTHER",
574
- "description": "OUTRO"
575
- }
576
540
  ],
577
541
 
578
542
 
@@ -634,9 +598,9 @@ module.exports.localities = {
634
598
  "description": "ZAVALA"
635
599
  },
636
600
  {
637
- "id": "OTHER",
638
- "description": "OUTRO"
639
- }
601
+ "id": "888888",
602
+ "description": "NAO ESPECIFICADO"
603
+ },
640
604
  ],
641
605
 
642
606
  "03": [
@@ -683,11 +647,14 @@ module.exports.localities = {
683
647
  {
684
648
  "id": "091100",
685
649
  "description": "MASSINGIR"
686
- }
687
- ,
650
+ },
651
+ {
652
+ "id": "999990",
653
+ "description": "DESCONHECIDO"
654
+ },
688
655
  {
689
- "id": "OTHER",
690
- "description": "OUTRO"
656
+ "id": "999999",
657
+ "description": "DESCONHECIDO"
691
658
  }
692
659
  ]
693
660
 
@@ -1,6 +1,6 @@
1
1
  module.exports.maritalStatuses = [
2
2
  {
3
- value: 1,
3
+ id: 1,
4
4
  pt: {
5
5
  MALE: 'Solteiro',
6
6
  FEMALE: 'Solteira',
@@ -12,7 +12,7 @@ module.exports.maritalStatuses = [
12
12
 
13
13
  },
14
14
  {
15
- value: 2,
15
+ id: 2,
16
16
  pt: {
17
17
  MALE: 'Casado',
18
18
  FEMALE: 'Casada',
@@ -23,7 +23,7 @@ module.exports.maritalStatuses = [
23
23
  }
24
24
  },
25
25
  {
26
- value: 3,
26
+ id: 3,
27
27
  pt: {
28
28
  MALE: 'Divorciado',
29
29
  FEMALE: 'Divorciada'
@@ -34,7 +34,7 @@ module.exports.maritalStatuses = [
34
34
  }
35
35
  },
36
36
  /* {
37
- value: 4,
37
+ id: 4,
38
38
  pt: {
39
39
  MALE: 'União de Factos',
40
40
  FEMALE: 'União de Factos'
@@ -45,7 +45,7 @@ module.exports.maritalStatuses = [
45
45
  }
46
46
  },*/
47
47
  {
48
- value: 5,
48
+ id: 5,
49
49
  pt: {
50
50
  MALE: 'Viúvo',
51
51
  FEMALE: 'Viúva'
package/package.json CHANGED
@@ -1,37 +1,35 @@
1
1
  {
2
2
  "_args": [
3
3
  [
4
- "@stbmoz-onboarding/core@1.2.3",
5
- "/Users/pedrodava/Desktop/Bank/RAO/frontend"
4
+ "@stbmoz-onboarding/core@1.2.5",
5
+ "/Users/pedrodava/Bank_Code/RAO/Docker Backend/Inspector-service"
6
6
  ]
7
7
  ],
8
- "_from": "@stbmoz-onboarding/core@^1.2.3",
9
- "_id": "@stbmoz-onboarding/core@1.2.3",
8
+ "_from": "@stbmoz-onboarding/core@1.2.5",
9
+ "_id": "@stbmoz-onboarding/core@1.2.5",
10
10
  "_inBundle": false,
11
- "_integrity": "sha512-uhG5NYmnUG4akiMaDXF5MQIkITdFOqBykw9c3QuNWWjuS8spknL1cCGG2YuJWiB7Tryv2GT2hn0ikSeJF+oaeg==",
11
+ "_integrity": "sha512-77ZDuIRahnNCpURDhkgUIKkal2cvIs+sWSGpmYQ/ynD8KI+yS3NClh/JX1iY9zYchrK7Kkvvjhh8HYOtBS2HPw==",
12
12
  "_location": "/@stbmoz-onboarding/core",
13
13
  "_phantomChildren": {},
14
14
  "_requested": {
15
- "type": "range",
15
+ "type": "version",
16
16
  "registry": true,
17
- "raw": "@stbmoz-onboarding/core@^1.2.3",
17
+ "raw": "@stbmoz-onboarding/core@1.2.5",
18
18
  "name": "@stbmoz-onboarding/core",
19
19
  "escapedName": "@stbmoz-onboarding%2fcore",
20
20
  "scope": "@stbmoz-onboarding",
21
- "rawSpec": "^1.2.3",
21
+ "rawSpec": "1.2.5",
22
22
  "saveSpec": null,
23
- "fetchSpec": "^1.2.3"
23
+ "fetchSpec": "1.2.5"
24
24
  },
25
25
  "_requiredBy": [
26
- "#USER",
27
26
  "/"
28
27
  ],
29
- "_resolved": "https://registry.npmjs.org/@stbmoz-onboarding/core/-/core-1.2.3.tgz",
28
+ "_resolved": "https://registry.npmjs.org/@stbmoz-onboarding/core/-/core-1.2.5.tgz",
30
29
  "_shasum": "281798262943ff040b20d08ca2e86135b956fc02",
31
- "_spec": "@stbmoz-onboarding/core@^1.2.3",
32
- "_where": "/Users/pedrodava/Desktop/Bank/RAO/frontend",
30
+ "_spec": "1.2.5",
31
+ "_where": "/Users/pedrodava/Bank_Code/RAO/Docker Backend/Inspector-service",
33
32
  "author": "",
34
- "bundleDependencies": false,
35
33
  "deprecated": false,
36
34
  "description": "\"core module\"",
37
35
  "license": "ISC",
@@ -42,5 +40,5 @@
42
40
  "test": "echo \"Error: no test specified\" && exit 1"
43
41
  },
44
42
  "type": "commonjs",
45
- "version": "1.2.3"
43
+ "version": "1.2.5"
46
44
  }