mdz-enum 1.2.59 → 1.2.60

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.
@@ -81,7 +81,8 @@ export declare const TipoCaixaOperacao: {
81
81
  Compra: string;
82
82
  Venda: string;
83
83
  Fechamento: string;
84
- description(val: string): "enum not found" | "Abertura" | "Pagamento" | "Entrada" | "Saída" | "Recebimento" | "Compra" | "Venda" | "Fechamento";
84
+ VendaValeCredito: string;
85
+ description(val: string): "enum not found" | "Abertura" | "Pagamento" | "Entrada" | "Saída" | "Recebimento" | "Compra" | "Venda" | "Fechamento" | "Venda vale crédito";
85
86
  };
86
87
  export declare const SituacaoCaixa: {
87
88
  Aberto: string;
@@ -223,6 +223,7 @@ exports.TipoCaixaOperacao = {
223
223
  Compra: '5',
224
224
  Venda: '6',
225
225
  Fechamento: '7',
226
+ VendaValeCredito: '8',
226
227
  description(val) {
227
228
  switch (val) {
228
229
  case this.Abertura:
@@ -241,6 +242,8 @@ exports.TipoCaixaOperacao = {
241
242
  return 'Venda';
242
243
  case this.Fechamento:
243
244
  return 'Fechamento';
245
+ case this.VendaValeCredito:
246
+ return 'Venda vale crédito';
244
247
  default:
245
248
  return 'enum not found';
246
249
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.2.59",
3
+ "version": "1.2.60",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {