mdz-enum 1.6.4 → 1.6.5

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.
@@ -158,6 +158,7 @@ export declare const TipoNaturezaOperacaoNotaFiscal: {
158
158
  Compra: string;
159
159
  RetornoConsignacao: string;
160
160
  Outros: string;
161
+ CompraManual: string;
161
162
  description(val: string): "enum not found" | "VENDA DE MERCADORIAS" | "DEVOLUCAO DE MERCADORIAS" | "DEVOLUCAO DE VENDA" | "TRANSFERENCIA DE ENTRADA" | "TRANSFERENCIA DE MERCADORIAS" | "REMESSA DE ENTRADA" | "REMESSA DE MERCADORIAS" | "DEMONSTRACAO" | "PERDAS DE MERCADORIA" | "REMESSA PARA CONSIGNACAO" | "COMPRA DE MERCADORIAS" | "RETORNO DE CONSIGNACAO" | "OUTROS";
162
163
  };
163
164
  export declare const OperacaoNotaFiscal: {
@@ -447,6 +447,7 @@ exports.TipoNaturezaOperacaoNotaFiscal = {
447
447
  Compra: '10',
448
448
  RetornoConsignacao: '11',
449
449
  Outros: '12',
450
+ CompraManual: '13',
450
451
  description(val) {
451
452
  switch (val) {
452
453
  case this.Venda:
@@ -475,6 +476,8 @@ exports.TipoNaturezaOperacaoNotaFiscal = {
475
476
  return 'RETORNO DE CONSIGNACAO';
476
477
  case this.Outros:
477
478
  return 'OUTROS';
479
+ case this.CompraManual:
480
+ return 'COMPRA DE MERCADORIAS';
478
481
  default:
479
482
  return 'enum not found';
480
483
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "description": "Enumerados ModerShop",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -30,3 +30,4 @@
30
30
  },
31
31
  "dependencies": {}
32
32
  }
33
+