mdz-enum 1.0.79 → 1.0.80
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.
|
@@ -5,8 +5,8 @@ export declare const TipoAtributo: {
|
|
|
5
5
|
};
|
|
6
6
|
export declare const TipoProduto: {
|
|
7
7
|
Simples: string;
|
|
8
|
-
|
|
9
|
-
description(val: string): "enum not found" | "Simples" | "
|
|
8
|
+
ComGrade: string;
|
|
9
|
+
description(val: string): "enum not found" | "Simples" | "Com Grade";
|
|
10
10
|
};
|
|
11
11
|
export declare const TipoValoracao: {
|
|
12
12
|
PrecoAquisicao: string;
|
package/dist/logistics/index.js
CHANGED
|
@@ -17,13 +17,13 @@ exports.TipoAtributo = {
|
|
|
17
17
|
};
|
|
18
18
|
exports.TipoProduto = {
|
|
19
19
|
Simples: '0',
|
|
20
|
-
|
|
20
|
+
ComGrade: '1',
|
|
21
21
|
description(val) {
|
|
22
22
|
switch (val) {
|
|
23
23
|
case this.Simples:
|
|
24
24
|
return 'Simples';
|
|
25
|
-
case this.
|
|
26
|
-
return '
|
|
25
|
+
case this.ComGrade:
|
|
26
|
+
return 'Com Grade';
|
|
27
27
|
default:
|
|
28
28
|
return 'enum not found';
|
|
29
29
|
}
|
package/package.json
CHANGED
package/src/logistics/index.ts
CHANGED
|
@@ -18,15 +18,15 @@ export const TipoAtributo = {
|
|
|
18
18
|
|
|
19
19
|
export const TipoProduto = {
|
|
20
20
|
Simples: '0',
|
|
21
|
-
|
|
21
|
+
ComGrade: '1',
|
|
22
22
|
|
|
23
23
|
description(val: string) {
|
|
24
24
|
switch (val) {
|
|
25
25
|
case this.Simples:
|
|
26
26
|
return 'Simples'
|
|
27
27
|
|
|
28
|
-
case this.
|
|
29
|
-
return '
|
|
28
|
+
case this.ComGrade:
|
|
29
|
+
return 'Com Grade'
|
|
30
30
|
|
|
31
31
|
default:
|
|
32
32
|
return 'enum not found'
|