mdz-enum 1.2.91 → 1.2.92
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/platform/index.d.ts +10 -2
- package/dist/platform/index.js +27 -3
- package/package.json +1 -1
package/dist/platform/index.d.ts
CHANGED
|
@@ -163,9 +163,17 @@ export declare const UnidadeFederativa: {
|
|
|
163
163
|
description(val: number): "enum not found" | "Rondônia" | "Acre" | "Amazonas" | "Roraima" | "Pará" | "Amapá" | "Tocantins" | "Maranhão" | "Piauí" | "Ceará" | "Rio Grande do Norte" | "Pernambuco" | "Alagoas" | "Sergipe" | "Bahia" | "Espírito Santo" | "Rio de Janeiro" | "São Paulo" | "Paraná" | "Santa Catarina" | "Mato Grosso do Sul" | "Mato Grosso" | "Goiás" | "Distrito Federal" | "Rio Grande do Sul" | "Paraíba" | "Minas Gerais";
|
|
164
164
|
};
|
|
165
165
|
export declare const MotivoInativacao: {
|
|
166
|
-
|
|
166
|
+
Inadimplencia: string;
|
|
167
167
|
Inativacao: string;
|
|
168
168
|
Insatisfacao: string;
|
|
169
169
|
AusenciaRecurso: string;
|
|
170
|
-
|
|
170
|
+
EncerramentoAtividades: string;
|
|
171
|
+
Precos: string;
|
|
172
|
+
Concorrencia: string;
|
|
173
|
+
Adaptacao: string;
|
|
174
|
+
Complexidade: string;
|
|
175
|
+
Solicitacoes: string;
|
|
176
|
+
Suporte: string;
|
|
177
|
+
Outros: string;
|
|
178
|
+
description(val: string): "enum not found" | "Outros" | "Suporte" | "Inadimplência" | "Inativado" | "Insatisfação" | "Ausência de Recursos" | "Encerramento das Atividades" | "Preços" | "Concorrência" | "Adaptação" | "Complexidade" | "Solicitações não Atendidas";
|
|
171
179
|
};
|
package/dist/platform/index.js
CHANGED
|
@@ -475,20 +475,44 @@ exports.UnidadeFederativa = {
|
|
|
475
475
|
},
|
|
476
476
|
};
|
|
477
477
|
exports.MotivoInativacao = {
|
|
478
|
-
|
|
478
|
+
Inadimplencia: '1',
|
|
479
479
|
Inativacao: '2',
|
|
480
480
|
Insatisfacao: '3',
|
|
481
481
|
AusenciaRecurso: '4',
|
|
482
|
+
EncerramentoAtividades: '5',
|
|
483
|
+
Precos: '6',
|
|
484
|
+
Concorrencia: '7',
|
|
485
|
+
Adaptacao: '8',
|
|
486
|
+
Complexidade: '9',
|
|
487
|
+
Solicitacoes: '10',
|
|
488
|
+
Suporte: '11',
|
|
489
|
+
Outros: '12',
|
|
482
490
|
description(val) {
|
|
483
491
|
switch (val) {
|
|
484
|
-
case this.
|
|
485
|
-
return '
|
|
492
|
+
case this.Inadimplencia:
|
|
493
|
+
return 'Inadimplência';
|
|
486
494
|
case this.Inativacao:
|
|
487
495
|
return 'Inativado';
|
|
488
496
|
case this.Insatisfacao:
|
|
489
497
|
return 'Insatisfação';
|
|
490
498
|
case this.AusenciaRecurso:
|
|
491
499
|
return 'Ausência de Recursos';
|
|
500
|
+
case this.EncerramentoAtividades:
|
|
501
|
+
return 'Encerramento das Atividades';
|
|
502
|
+
case this.Precos:
|
|
503
|
+
return 'Preços';
|
|
504
|
+
case this.Concorrencia:
|
|
505
|
+
return 'Concorrência';
|
|
506
|
+
case this.Adaptacao:
|
|
507
|
+
return 'Adaptação';
|
|
508
|
+
case this.Complexidade:
|
|
509
|
+
return 'Complexidade';
|
|
510
|
+
case this.Solicitacoes:
|
|
511
|
+
return 'Solicitações não Atendidas';
|
|
512
|
+
case this.Suporte:
|
|
513
|
+
return 'Suporte';
|
|
514
|
+
case this.Outros:
|
|
515
|
+
return 'Outros';
|
|
492
516
|
default:
|
|
493
517
|
return 'enum not found';
|
|
494
518
|
}
|