@explo-tech/fido-api 3.24.0 → 3.25.0
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/index.ts
CHANGED
|
@@ -192,6 +192,7 @@ export type { StringPropertyValue } from './models/StringPropertyValue';
|
|
|
192
192
|
export type { StringVisualizationOptions } from './models/StringVisualizationOptions';
|
|
193
193
|
export type { TablePreviewRequest } from './models/TablePreviewRequest';
|
|
194
194
|
export type { TableView } from './models/TableView';
|
|
195
|
+
export type { TableVisualizationSettings } from './models/TableVisualizationSettings';
|
|
195
196
|
export type { Tenant } from './models/Tenant';
|
|
196
197
|
export type { TenantKey } from './models/TenantKey';
|
|
197
198
|
export type { TenantPrivateKeyAuthentication } from './models/TenantPrivateKeyAuthentication';
|
package/models/ComputedView.ts
CHANGED
|
@@ -6,11 +6,13 @@ import type { ColumnVisualizationFormat } from './ColumnVisualizationFormat';
|
|
|
6
6
|
import type { EvictionPolicy } from './EvictionPolicy';
|
|
7
7
|
import type { Parameter } from './Parameter';
|
|
8
8
|
import type { PropertySchema } from './PropertySchema';
|
|
9
|
+
import type { TableVisualizationSettings } from './TableVisualizationSettings';
|
|
9
10
|
|
|
10
11
|
export type ComputedView = {
|
|
11
12
|
columnDefinitions: Array<PropertySchema>;
|
|
12
13
|
readonly namespaceId?: string | null;
|
|
13
14
|
columnVisualizationFormats: Record<string, ColumnVisualizationFormat>;
|
|
15
|
+
tableVisualizationSettings: TableVisualizationSettings;
|
|
14
16
|
name: string;
|
|
15
17
|
path: string | null;
|
|
16
18
|
description: string | null;
|
package/models/TableView.ts
CHANGED
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
|
|
5
5
|
import type { ColumnVisualizationFormat } from './ColumnVisualizationFormat';
|
|
6
6
|
import type { PropertySchema } from './PropertySchema';
|
|
7
|
+
import type { TableVisualizationSettings } from './TableVisualizationSettings';
|
|
7
8
|
|
|
8
9
|
export type TableView = {
|
|
9
10
|
columnDefinitions: Array<PropertySchema>;
|
|
10
11
|
readonly namespaceId?: string | null;
|
|
11
12
|
columnVisualizationFormats: Record<string, ColumnVisualizationFormat>;
|
|
13
|
+
tableVisualizationSettings: TableVisualizationSettings;
|
|
12
14
|
name: string;
|
|
13
15
|
path: string | null;
|
|
14
16
|
description: string | null;
|
package/models/View.ts
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import type { ColumnVisualizationFormat } from './ColumnVisualizationFormat';
|
|
6
6
|
import type { PropertySchema } from './PropertySchema';
|
|
7
|
+
import type { TableVisualizationSettings } from './TableVisualizationSettings';
|
|
7
8
|
|
|
8
9
|
export type View = {
|
|
9
10
|
name: string;
|
|
@@ -14,5 +15,6 @@ export type View = {
|
|
|
14
15
|
columnDefinitions: Array<PropertySchema>;
|
|
15
16
|
readonly namespaceId?: string | null;
|
|
16
17
|
columnVisualizationFormats: Record<string, ColumnVisualizationFormat>;
|
|
18
|
+
tableVisualizationSettings: TableVisualizationSettings;
|
|
17
19
|
};
|
|
18
20
|
|
package/package.json
CHANGED