mdz-enum 1.6.33 → 1.6.35

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 CHANGED
@@ -1,7 +1,7 @@
1
- # mdz-enum
2
-
3
- Gerenciador de enumerados e classes.
4
-
5
- VESÃO DE SOFTWARE: vide `package.json`
6
-
7
- NODE: `14.18.1`
1
+ # mdz-enum
2
+
3
+ Gerenciador de enumerados e classes.
4
+
5
+ VESÃO DE SOFTWARE: vide `package.json`
6
+
7
+ NODE: `14.18.1`
@@ -143,7 +143,9 @@ export declare const SituacaoEntrega: {
143
143
  EmTransporte: string;
144
144
  Entregue: string;
145
145
  Combinar: string;
146
- description(val: string): "enum not found" | "Aguardando envio" | "Objeto postado" | "Objeto em transporte" | "Objeto entregue" | "Entrega a combinar";
146
+ EmEdicao: string;
147
+ Recusado: string;
148
+ description(val: string): "enum not found" | "Aguardando envio" | "Objeto postado" | "Objeto em transporte" | "Objeto entregue" | "Entrega a combinar" | "Entrega em edição" | "Entrega recusada";
147
149
  };
148
150
  export declare const SituacaoEtiqueta: {
149
151
  Pendente: string;
@@ -406,6 +406,8 @@ exports.SituacaoEntrega = {
406
406
  EmTransporte: '2',
407
407
  Entregue: '3',
408
408
  Combinar: '4',
409
+ EmEdicao: '5',
410
+ Recusado: '6',
409
411
  description(val) {
410
412
  switch (val) {
411
413
  case this.Aguardando:
@@ -418,6 +420,10 @@ exports.SituacaoEntrega = {
418
420
  return 'Objeto entregue';
419
421
  case this.Combinar:
420
422
  return 'Entrega a combinar';
423
+ case this.EmEdicao:
424
+ return 'Entrega em edição';
425
+ case this.Recusado:
426
+ return 'Entrega recusada';
421
427
  default:
422
428
  return 'enum not found';
423
429
  }
package/package.json CHANGED
@@ -1,33 +1,33 @@
1
- {
2
- "name": "mdz-enum",
3
- "version": "1.6.33",
4
- "description": "Enumerados ModerShop",
5
- "main": "dist/index.js",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1",
8
- "publicar": "tsc && git add . && git commit -m \"commit automatico\" && git push origin main && npm publish"
9
- },
10
- "files": [
11
- "dist",
12
- "package.json",
13
- "README.md"
14
- ],
15
- "repository": {
16
- "type": "git",
17
- "url": "https://github.com/moderniza-modershop/mdz-enum"
18
- },
19
- "keywords": [],
20
- "author": "willian.moderniza",
21
- "license": "ISC",
22
- "bugs": {
23
- "url": "https://github.com/moderniza-dev/mdz-enum/issues"
24
- },
25
- "homepage": "https://github.com/moderniza-dev/mdz-enum#readme",
26
- "devDependencies": {
27
- "@types/node": "^16.9.1",
28
- "ts-node": "^10.2.1",
29
- "typescript": "^4.4.3"
30
- },
31
- "dependencies": {}
32
- }
33
-
1
+ {
2
+ "name": "mdz-enum",
3
+ "version": "1.6.35",
4
+ "description": "Enumerados ModerShop",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "publicar": "tsc && git add . && git commit -m \"commit automatico\" && git push origin main && npm publish"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "package.json",
13
+ "README.md"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/moderniza-modershop/mdz-enum"
18
+ },
19
+ "keywords": [],
20
+ "author": "willian.moderniza",
21
+ "license": "ISC",
22
+ "bugs": {
23
+ "url": "https://github.com/moderniza-dev/mdz-enum/issues"
24
+ },
25
+ "homepage": "https://github.com/moderniza-dev/mdz-enum#readme",
26
+ "devDependencies": {
27
+ "@types/node": "^16.9.1",
28
+ "ts-node": "^10.2.1",
29
+ "typescript": "^4.4.3"
30
+ },
31
+ "dependencies": {}
32
+ }
33
+