jsegd-fluig-types 1.0.69 → 1.0.70
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/package.json
CHANGED
|
@@ -46,9 +46,6 @@ declare global {
|
|
|
46
46
|
errors?: ErrorDetail[]
|
|
47
47
|
timestamp: number
|
|
48
48
|
}
|
|
49
|
-
interface DatasetResponse {
|
|
50
|
-
response: DatasetResponseValues
|
|
51
|
-
}
|
|
52
49
|
|
|
53
50
|
interface ServiceRequestParams {
|
|
54
51
|
serviceCode: string
|
|
@@ -74,11 +71,11 @@ declare global {
|
|
|
74
71
|
class DefaultDataset {
|
|
75
72
|
rowsCount: number
|
|
76
73
|
// Implementação para adicionar uma coluna ao Dataset
|
|
77
|
-
addColumn(colName: keyof
|
|
74
|
+
addColumn(colName: keyof DatasetResponseValues): void
|
|
78
75
|
addColumn(colName: java.lang.String): void
|
|
79
76
|
|
|
80
77
|
// Implementação para adicionar uma linha ao Dataset
|
|
81
|
-
addRow(values:
|
|
78
|
+
addRow(values: DatasetResponseValues[]): void
|
|
82
79
|
addRow(values: java.lang.Object[]): void
|
|
83
80
|
|
|
84
81
|
// Implementação para atualizar uma linha do Dataset
|