mdz-enum 1.2.52 → 1.2.53

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.
@@ -13,7 +13,8 @@ export declare const SituacaoAtivacao: {
13
13
  CancelamentoSolicitado: string;
14
14
  PagamentoPendente: string;
15
15
  Inativo: string;
16
- description(val: string): "Cancelado" | "enum not found" | "Inativo" | "Ativo" | "Bloqueado" | "Cancelamento Solicitado" | "Pagamento Pendente";
16
+ CompraRecusada: string;
17
+ description(val: string): "Cancelado" | "enum not found" | "Inativo" | "Ativo" | "Bloqueado" | "Cancelamento Solicitado" | "Pagamento Pendente" | "Compra Recusada";
17
18
  };
18
19
  export declare const TipoTicket: {
19
20
  CancelamentoAplicativo: string;
@@ -31,6 +31,7 @@ exports.SituacaoAtivacao = {
31
31
  CancelamentoSolicitado: '3',
32
32
  PagamentoPendente: '4',
33
33
  Inativo: '5',
34
+ CompraRecusada: '6',
34
35
  description(val) {
35
36
  switch (val) {
36
37
  case this.Ativo:
@@ -45,6 +46,8 @@ exports.SituacaoAtivacao = {
45
46
  return 'Pagamento Pendente';
46
47
  case this.Inativo:
47
48
  return 'Inativo';
49
+ case this.CompraRecusada:
50
+ return 'Compra Recusada';
48
51
  default:
49
52
  return 'enum not found';
50
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.2.52",
3
+ "version": "1.2.53",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {