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.
@@ -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: '1',
6
- Cheque: '2',
7
- CartaoCredito: '3',
8
- CartaoDebito: '4',
9
- CreditoLoja: '5',
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: '1',
90
- Mastercard: '2',
91
- AmericanExpress: '3',
92
- Sorocred: '4',
93
- DinersClub: '5',
94
- Elo: '6',
95
- Hipercard: '7',
96
- Aura: '8',
97
- Cabal: '9',
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -1,9 +1,9 @@
1
1
  export const MeioPagamento = {
2
- Dinheiro: '1',
3
- Cheque: '2',
4
- CartaoCredito: '3',
5
- CartaoDebito: '4',
6
- CreditoLoja: '5',
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: '1',
113
- Mastercard: '2',
114
- AmericanExpress: '3',
115
- Sorocred: '4',
116
- DinersClub: '5',
117
- Elo: '6',
118
- Hipercard: '7',
119
- Aura: '8',
120
- Cabal: '9',
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) {