mdz-enum 1.0.54 → 1.0.55
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 +1 -1
- package/dist/finance/index.js +1 -1
- package/package.json +1 -1
- package/src/finance/index.ts +1 -1
package/dist/finance/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare const MeioPagamento: {
|
|
|
15
15
|
ProgramaFidelidade: string;
|
|
16
16
|
SemPagamento: string;
|
|
17
17
|
Outros: string;
|
|
18
|
-
description(val: string): "enum not found" | "Dinheiro" | "Cheque" | "Cartão de Crédito" | "Cartão de Débito" | "Crédito Loja" | "Vale Alimentação" | "Vale Refeição" | "Vale Presente" | "Vale Combustível" | "Boleto Bancário" | "Depósito Bancário" | "
|
|
18
|
+
description(val: string): "enum not found" | "Dinheiro" | "Cheque" | "Cartão de Crédito" | "Cartão de Débito" | "Crédito Loja" | "Vale Alimentação" | "Vale Refeição" | "Vale Presente" | "Vale Combustível" | "Boleto Bancário" | "Depósito Bancário" | "PIX" | "Transferência Bancária" | "Programa de Fidelidade" | "Sem Pagamento" | "Outros";
|
|
19
19
|
};
|
|
20
20
|
export declare const IndicadorFormaPagamento: {
|
|
21
21
|
PagamentoAVista: string;
|
package/dist/finance/index.js
CHANGED
|
@@ -43,7 +43,7 @@ exports.MeioPagamento = {
|
|
|
43
43
|
case this.DepositoBancario:
|
|
44
44
|
return 'Depósito Bancário';
|
|
45
45
|
case this.PIX:
|
|
46
|
-
return '
|
|
46
|
+
return 'PIX';
|
|
47
47
|
case this.TransferenciaBancaria:
|
|
48
48
|
return 'Transferência Bancária';
|
|
49
49
|
case this.ProgramaFidelidade:
|
package/package.json
CHANGED