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.
- package/dist/finance/index.d.ts +2 -1
- package/dist/finance/index.js +3 -0
- package/package.json +1 -1
package/dist/finance/index.d.ts
CHANGED
|
@@ -81,7 +81,8 @@ export declare const TipoCaixaOperacao: {
|
|
|
81
81
|
Compra: string;
|
|
82
82
|
Venda: string;
|
|
83
83
|
Fechamento: string;
|
|
84
|
-
|
|
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;
|
package/dist/finance/index.js
CHANGED
|
@@ -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
|
}
|