@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';
@@ -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;
@@ -15,6 +15,5 @@ export type DateTimeColumnVisualizationFormat = {
15
15
  columnFit: ColumnFit;
16
16
  '@type': 'datetime';
17
17
  pattern: DateTimeColumnVisualizationFormatPattern;
18
- ignoreInvalidDates: boolean;
19
18
  };
20
19
 
@@ -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;
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { ColumnFit } from './ColumnFit';
6
+
7
+ export type TableVisualizationSettings = {
8
+ columnFit: ColumnFit;
9
+ };
10
+
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
@@ -2,7 +2,7 @@
2
2
  "name": "@explo-tech/fido-api",
3
3
  "description": "Fido api",
4
4
  "homepage": "https://github.com/trust-kaz/fido",
5
- "version": "3.24.0",
5
+ "version": "3.25.0",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"