jsegd-fluig-types 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/types.d.ts +0 -50
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsegd-fluig-types",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Pacote de tipos para fluig",
5
5
  "license": "CC-BY-NC-ND-4.0",
6
6
  "author": "Elemar Deckmann",
package/types.d.ts CHANGED
@@ -31,51 +31,6 @@ declare enum AutocompleteEvents {
31
31
  }
32
32
  // Adicionar eventos conforme necessário
33
33
 
34
- // =============================
35
- // TIPOS DE DOMÍNIO - APROVADORES
36
- // =============================
37
-
38
- export type Aprovador = {
39
- centro_custo: string;
40
- aprovador: string;
41
- email: string;
42
- nome_aprovador: string;
43
- nivel: number;
44
- };
45
-
46
- export type CentroDeCusto = {
47
- centro_custo: string;
48
- valor: number;
49
- parcelas: number;
50
- unitario: number;
51
- };
52
-
53
- export type AlcadaRequest = {
54
- alcada: CentroDeCusto[];
55
- };
56
-
57
- export type Alcada = {
58
- centro_custo: string;
59
- aprovador: string;
60
- login: string;
61
- email: string;
62
- nome_aprovador: string;
63
- nivel: number;
64
- valor: number;
65
- valor_total: number;
66
- parcelas: number;
67
- };
68
-
69
- export type Falha = {
70
- mensagem: string;
71
- valor: number;
72
- centro_custo: string;
73
- };
74
-
75
- export type Falhas = {
76
- erros: Falha[];
77
- };
78
-
79
34
  // =============================
80
35
  // INTERFACES DE COMPONENTES UI
81
36
  // =============================
@@ -763,11 +718,6 @@ declare global {
763
718
  stack?: string;
764
719
  }
765
720
 
766
- class ClientServiceResult {
767
- getHttpStatusResult(): string;
768
- getResult(): string;
769
- }
770
-
771
721
  interface ResultDataset {
772
722
  status: number;
773
723
  result: string;