mdz-enum 1.5.33 → 1.5.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/dist/config/index.d.ts
CHANGED
|
@@ -108,7 +108,8 @@ export declare const TipoImportacao: {
|
|
|
108
108
|
Estoque: string;
|
|
109
109
|
CodigoBarras: string;
|
|
110
110
|
Grade: string;
|
|
111
|
-
|
|
111
|
+
DocumentoFinanceiro: string;
|
|
112
|
+
description(val: string): "enum not found" | "Produto" | "Pessoa" | "Estoque" | "Código de Barras" | "Grade" | "Documento Financeiro";
|
|
112
113
|
};
|
|
113
114
|
export declare const ModeloImportacao: {
|
|
114
115
|
Importacao: string;
|
package/dist/config/index.js
CHANGED
|
@@ -303,6 +303,7 @@ exports.TipoImportacao = {
|
|
|
303
303
|
Estoque: '3',
|
|
304
304
|
CodigoBarras: '4',
|
|
305
305
|
Grade: '5',
|
|
306
|
+
DocumentoFinanceiro: '6',
|
|
306
307
|
description(val) {
|
|
307
308
|
switch (val) {
|
|
308
309
|
case this.Produto:
|
|
@@ -315,6 +316,8 @@ exports.TipoImportacao = {
|
|
|
315
316
|
return 'Código de Barras';
|
|
316
317
|
case this.Grade:
|
|
317
318
|
return 'Grade';
|
|
319
|
+
case this.DocumentoFinanceiro:
|
|
320
|
+
return 'Documento Financeiro';
|
|
318
321
|
default:
|
|
319
322
|
return 'enum not found';
|
|
320
323
|
}
|