@explo-tech/fido-api 3.22.1 → 3.23.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.
@@ -7,6 +7,9 @@ import type { BooleanVisualizationOptions } from './BooleanVisualizationOptions'
7
7
 
8
8
  export type BooleanColumnVisualizationFormat = {
9
9
  alignment: Alignment;
10
+ index: number;
11
+ displayName: string | null;
12
+ hidden?: boolean;
10
13
  '@type': 'boolean';
11
14
  trueFormat: BooleanVisualizationOptions;
12
15
  falseFormat: BooleanVisualizationOptions;
@@ -11,5 +11,8 @@ import type { StringColumnVisualizationFormat } from './StringColumnVisualizatio
11
11
 
12
12
  export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnVisualizationFormat | StringColumnVisualizationFormat | {
13
13
  alignment: Alignment;
14
+ index: number;
15
+ displayName: string | null;
16
+ hidden?: boolean;
14
17
  });
15
18
 
@@ -9,6 +9,9 @@ export type DateTimeColumnVisualizationFormat = {
9
9
  locale: string | null;
10
10
  targetTimezone?: string;
11
11
  alignment: Alignment;
12
+ index: number;
13
+ displayName: string | null;
14
+ hidden?: boolean;
12
15
  '@type': 'datetime';
13
16
  };
14
17
 
@@ -13,6 +13,9 @@ export type DecimalColumnVisualizationFormat = {
13
13
  zeroReplacement: string | null;
14
14
  multiplier: number | null;
15
15
  alignment: Alignment;
16
+ index: number;
17
+ displayName: string | null;
18
+ hidden?: boolean;
16
19
  '@type': 'decimal';
17
20
  visualizationOptions: NumberVisualizationOptions | null;
18
21
  };
@@ -7,6 +7,9 @@ import type { Alignment } from './Alignment';
7
7
  export type DurationColumnVisualizationFormat = {
8
8
  durationPattern: string | null;
9
9
  alignment: Alignment;
10
+ index: number;
11
+ displayName: string | null;
12
+ hidden?: boolean;
10
13
  '@type': 'duration';
11
14
  };
12
15
 
@@ -7,6 +7,9 @@ import type { StringVisualizationOptions } from './StringVisualizationOptions';
7
7
 
8
8
  export type StringColumnVisualizationFormat = {
9
9
  alignment: Alignment;
10
+ index: number;
11
+ displayName: string | null;
12
+ hidden?: boolean;
10
13
  '@type': 'string';
11
14
  visualizationOptions: StringVisualizationOptions | null;
12
15
  };
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.22.1",
5
+ "version": "3.23.0",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"