mdz-enum 1.0.36 → 1.0.37
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.js +14 -14
- package/package.json +1 -1
- package/src/finance/index.ts +14 -14
package/dist/finance/index.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.TipoPromocao = exports.TipoCalculoParcelamento = exports.BandeiraCartao = exports.OperacaoOperadoraCartao = exports.IndicadorFormaPagamento = exports.MeioPagamento = void 0;
|
|
4
4
|
exports.MeioPagamento = {
|
|
5
|
-
Dinheiro: '
|
|
6
|
-
Cheque: '
|
|
7
|
-
CartaoCredito: '
|
|
8
|
-
CartaoDebito: '
|
|
9
|
-
CreditoLoja: '
|
|
5
|
+
Dinheiro: '01',
|
|
6
|
+
Cheque: '02',
|
|
7
|
+
CartaoCredito: '03',
|
|
8
|
+
CartaoDebito: '04',
|
|
9
|
+
CreditoLoja: '05',
|
|
10
10
|
ValeAlimentacao: '10',
|
|
11
11
|
ValeRefeicao: '11',
|
|
12
12
|
ValePresente: '12',
|
|
@@ -86,15 +86,15 @@ exports.OperacaoOperadoraCartao = {
|
|
|
86
86
|
}
|
|
87
87
|
};
|
|
88
88
|
exports.BandeiraCartao = {
|
|
89
|
-
Visa: '
|
|
90
|
-
Mastercard: '
|
|
91
|
-
AmericanExpress: '
|
|
92
|
-
Sorocred: '
|
|
93
|
-
DinersClub: '
|
|
94
|
-
Elo: '
|
|
95
|
-
Hipercard: '
|
|
96
|
-
Aura: '
|
|
97
|
-
Cabal: '
|
|
89
|
+
Visa: '01',
|
|
90
|
+
Mastercard: '02',
|
|
91
|
+
AmericanExpress: '03',
|
|
92
|
+
Sorocred: '04',
|
|
93
|
+
DinersClub: '05',
|
|
94
|
+
Elo: '06',
|
|
95
|
+
Hipercard: '07',
|
|
96
|
+
Aura: '08',
|
|
97
|
+
Cabal: '09',
|
|
98
98
|
Outros: '99',
|
|
99
99
|
description(val) {
|
|
100
100
|
switch (val) {
|
package/package.json
CHANGED
package/src/finance/index.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export const MeioPagamento = {
|
|
2
|
-
Dinheiro: '
|
|
3
|
-
Cheque: '
|
|
4
|
-
CartaoCredito: '
|
|
5
|
-
CartaoDebito: '
|
|
6
|
-
CreditoLoja: '
|
|
2
|
+
Dinheiro: '01',
|
|
3
|
+
Cheque: '02',
|
|
4
|
+
CartaoCredito: '03',
|
|
5
|
+
CartaoDebito: '04',
|
|
6
|
+
CreditoLoja: '05',
|
|
7
7
|
ValeAlimentacao: '10',
|
|
8
8
|
ValeRefeicao: '11',
|
|
9
9
|
ValePresente: '12',
|
|
@@ -109,15 +109,15 @@ export const OperacaoOperadoraCartao = {
|
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
export const BandeiraCartao = {
|
|
112
|
-
Visa: '
|
|
113
|
-
Mastercard: '
|
|
114
|
-
AmericanExpress: '
|
|
115
|
-
Sorocred: '
|
|
116
|
-
DinersClub: '
|
|
117
|
-
Elo: '
|
|
118
|
-
Hipercard: '
|
|
119
|
-
Aura: '
|
|
120
|
-
Cabal: '
|
|
112
|
+
Visa: '01',
|
|
113
|
+
Mastercard: '02',
|
|
114
|
+
AmericanExpress: '03',
|
|
115
|
+
Sorocred: '04',
|
|
116
|
+
DinersClub: '05',
|
|
117
|
+
Elo: '06',
|
|
118
|
+
Hipercard: '07',
|
|
119
|
+
Aura: '08',
|
|
120
|
+
Cabal: '09',
|
|
121
121
|
Outros: '99',
|
|
122
122
|
|
|
123
123
|
description(val: string) {
|