mdz-enum 1.2.44 → 1.2.45

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.
@@ -7,11 +7,11 @@ export declare const SituacaoOrganizacao: {
7
7
  description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado" | "Ativacao Solicitada" | "Cancelamento Solicitado";
8
8
  };
9
9
  export declare const SituacaoAtivacao: {
10
- Cancelado: string;
10
+ Inativo: string;
11
11
  Ativo: string;
12
12
  Bloqueado: string;
13
13
  CancelamentoSolicitado: string;
14
- description(val: string): "Cancelado" | "enum not found" | "Ativo" | "Bloqueado" | "Cancelamento Solicitado";
14
+ description(val: string): "enum not found" | "Inativo" | "Ativo" | "Bloqueado" | "Cancelamento Solicitado";
15
15
  };
16
16
  export declare const TipoTicket: {
17
17
  CancelamentoAplicativo: string;
@@ -25,7 +25,7 @@ exports.SituacaoOrganizacao = {
25
25
  },
26
26
  };
27
27
  exports.SituacaoAtivacao = {
28
- Cancelado: '0',
28
+ Inativo: '0',
29
29
  Ativo: '1',
30
30
  Bloqueado: '2',
31
31
  CancelamentoSolicitado: '3',
@@ -35,8 +35,8 @@ exports.SituacaoAtivacao = {
35
35
  return 'Ativo';
36
36
  case this.Bloqueado:
37
37
  return 'Bloqueado';
38
- case this.Cancelado:
39
- return 'Cancelado';
38
+ case this.Inativo:
39
+ return 'Inativo';
40
40
  case this.CancelamentoSolicitado:
41
41
  return 'Cancelamento Solicitado';
42
42
  default:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mdz-enum",
3
- "version": "1.2.44",
3
+ "version": "1.2.45",
4
4
  "description": "Enumerados Moderniza",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {