jsegd-fluig-types 1.0.3 → 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.
- package/fluig.sdk.d.ts +1 -1
- package/package.json +1 -1
- package/types.d.ts +0 -50
package/fluig.sdk.d.ts
CHANGED
|
@@ -165,7 +165,7 @@ declare global {
|
|
|
165
165
|
class CustomAppKeyService {}
|
|
166
166
|
class DocumentationProxyServiceService {}
|
|
167
167
|
class DocumentService {
|
|
168
|
-
getDocumentContentAsBytes(documentId: java.lang.Integer):
|
|
168
|
+
getDocumentContentAsBytes(documentId: java.lang.Integer): Uint8Array<ArrayBufferLike>;
|
|
169
169
|
}
|
|
170
170
|
class FavoritesService {}
|
|
171
171
|
class FilterAPIService {}
|
package/package.json
CHANGED
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;
|