mdz-enum 1.0.91 → 1.0.92

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.
@@ -39,7 +39,7 @@ export declare const TipoCategoria: {
39
39
  Ferramenta: string;
40
40
  Game: string;
41
41
  Movel: string;
42
- Roupa: string;
42
+ Vestuario: string;
43
43
  Saude: string;
44
- description(val: string): "Beleza" | "Bolsas" | "Calçados" | "Celular" | "Decoração" | "Eletrodomésticos" | "Eletrônicos" | "Esportes" | "Ferramentas" | "Games" | "Móveis" | "Roupas" | "Saúde" | undefined;
44
+ description(val: string): "Beleza" | "Bolsas" | "Calçados" | "Celular" | "Decoração" | "Eletrodomésticos" | "Eletrônicos" | "Esportes" | "Ferramentas" | "Games" | "Móveis" | "Vestuário" | "Saúde" | undefined;
45
45
  };
@@ -95,7 +95,7 @@ exports.TipoCategoria = {
95
95
  Ferramenta: '8',
96
96
  Game: '9',
97
97
  Movel: '10',
98
- Roupa: '11',
98
+ Vestuario: '11',
99
99
  Saude: '12',
100
100
  description(val) {
101
101
  switch (val) {
@@ -121,8 +121,8 @@ exports.TipoCategoria = {
121
121
  return 'Games';
122
122
  case this.Movel:
123
123
  return 'Móveis';
124
- case this.Roupa:
125
- return 'Roupas';
124
+ case this.Vestuario:
125
+ return 'Vestuário';
126
126
  case this.Saude:
127
127
  return 'Saúde';
128
128
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.0.91",
3
+ "version": "1.0.92",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -116,7 +116,7 @@ export const TipoCategoria = {
116
116
  Ferramenta: '8',
117
117
  Game: '9',
118
118
  Movel: '10',
119
- Roupa: '11',
119
+ Vestuario: '11',
120
120
  Saude: '12',
121
121
 
122
122
  description(val: string) {
@@ -154,8 +154,8 @@ export const TipoCategoria = {
154
154
  case this.Movel:
155
155
  return 'Móveis'
156
156
 
157
- case this.Roupa:
158
- return 'Roupas'
157
+ case this.Vestuario:
158
+ return 'Vestuário'
159
159
 
160
160
  case this.Saude:
161
161
  return 'Saúde'