mdz-enum 1.2.24 → 1.2.25

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.
@@ -23,5 +23,7 @@ export declare const AgrupamentoRelatoriosProdutos: {
23
23
  UnidadeMedida: string;
24
24
  CenarioFiscal: string;
25
25
  NCM: string;
26
- description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria" | "Unidade de Medida" | "Cenário Fiscal" | "NCM";
26
+ Filial: string;
27
+ EnderecoEstoque: string;
28
+ description(val: string): "enum not found" | "Produto" | "Marca" | "Categoria" | "Filial" | "Unidade de Medida" | "Cenário Fiscal" | "NCM" | "Endereço de Estoque";
27
29
  };
@@ -60,6 +60,8 @@ exports.AgrupamentoRelatoriosProdutos = {
60
60
  UnidadeMedida: '4',
61
61
  CenarioFiscal: '5',
62
62
  NCM: '6',
63
+ Filial: '7',
64
+ EnderecoEstoque: '8',
63
65
  description(val) {
64
66
  switch (val) {
65
67
  case this.Produto:
@@ -74,6 +76,10 @@ exports.AgrupamentoRelatoriosProdutos = {
74
76
  return 'Cenário Fiscal';
75
77
  case this.NCM:
76
78
  return 'NCM';
79
+ case this.Filial:
80
+ return 'Filial';
81
+ case this.EnderecoEstoque:
82
+ return 'Endereço de Estoque';
77
83
  default:
78
84
  return 'enum not found';
79
85
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.2.24",
3
+ "version": "1.2.25",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {