@explo-tech/fido-api 3.18.2 → 3.18.4-chris-java-upgrade.1

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
@@ -66,7 +66,6 @@ export type { DecimalColumnExportFormat } from './models/DecimalColumnExportForm
66
66
  export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
67
67
  export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
68
68
  export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
69
- export type { DefaultStringColumnVisualizationFormat } from './models/DefaultStringColumnVisualizationFormat';
70
69
  export type { DeleteResourceChange } from './models/DeleteResourceChange';
71
70
  export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
72
71
  export type { DiffBranchResponse } from './models/DiffBranchResponse';
@@ -178,6 +177,7 @@ export type { StringColumnVisualizationFormat } from './models/StringColumnVisua
178
177
  export type { StringContains } from './models/StringContains';
179
178
  export type { StringContains1 } from './models/StringContains1';
180
179
  export type { StringPropertyValue } from './models/StringPropertyValue';
180
+ export type { StringVisualizationOptions } from './models/StringVisualizationOptions';
181
181
  export type { TablePreviewRequest } from './models/TablePreviewRequest';
182
182
  export type { TableView } from './models/TableView';
183
183
  export type { Tenant } from './models/Tenant';
@@ -2,11 +2,9 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { Alignment } from './Alignment';
6
5
  import type { ColorAssignment } from './ColorAssignment';
7
6
 
8
7
  export type CategoryColorStringColumnVisualizationFormat = {
9
- alignment: Alignment;
10
8
  '@type': 'category';
11
9
  colorAssignments: Record<string, string>;
12
10
  addedCategories: Array<ColorAssignment>;
@@ -3,7 +3,7 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  export type ColorAssignment = {
6
- colorHex: string;
6
+ hexColor: string;
7
7
  name: string;
8
8
  };
9
9
 
@@ -6,10 +6,10 @@ import type { Alignment } from './Alignment';
6
6
  import type { BooleanColumnVisualizationFormat } from './BooleanColumnVisualizationFormat';
7
7
  import type { DateTimeColumnVisualizationFormat } from './DateTimeColumnVisualizationFormat';
8
8
  import type { DecimalColumnVisualizationFormat } from './DecimalColumnVisualizationFormat';
9
- import type { DefaultStringColumnVisualizationFormat } from './DefaultStringColumnVisualizationFormat';
10
9
  import type { DurationColumnVisualizationFormat } from './DurationColumnVisualizationFormat';
10
+ import type { StringColumnVisualizationFormat } from './StringColumnVisualizationFormat';
11
11
 
12
- export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnVisualizationFormat | DefaultStringColumnVisualizationFormat | {
12
+ export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnVisualizationFormat | StringColumnVisualizationFormat | {
13
13
  alignment: Alignment;
14
14
  });
15
15
 
@@ -3,12 +3,10 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  import type { Alignment } from './Alignment';
6
- import type { NumberVisualizationOptions } from './NumberVisualizationOptions';
7
6
 
8
7
  export type DurationColumnVisualizationFormat = {
9
8
  durationPattern: string | null;
10
9
  alignment: Alignment;
11
10
  '@type': 'duration';
12
- visualizationOptions: NumberVisualizationOptions | null;
13
11
  };
14
12
 
@@ -2,11 +2,9 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { Alignment } from './Alignment';
6
5
  import type { ImageShape } from './ImageShape';
7
6
 
8
7
  export type ImageStringColumnVisualizationFormat = {
9
- alignment: Alignment;
10
8
  '@type': 'image';
11
9
  shape: ImageShape;
12
10
  };
@@ -5,7 +5,5 @@
5
5
  import type { ComputedLinkSource } from './ComputedLinkSource';
6
6
  import type { ValueLinkSource } from './ValueLinkSource';
7
7
 
8
- export type LinkSource = (ValueLinkSource | ComputedLinkSource | {
9
- '@type': string;
10
- });
8
+ export type LinkSource = (ValueLinkSource | ComputedLinkSource);
11
9
 
@@ -2,13 +2,11 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { Alignment } from './Alignment';
6
5
  import type { LinkSource } from './LinkSource';
7
6
 
8
7
  export type LinkStringColumnVisualizationFormat = {
9
- alignment: Alignment;
10
8
  '@type': 'link';
11
- color: string;
9
+ hexColor: string;
12
10
  openInSameTab: boolean;
13
11
  source: LinkSource;
14
12
  };
@@ -3,13 +3,11 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  import type { Alignment } from './Alignment';
6
- import type { CategoryColorStringColumnVisualizationFormat } from './CategoryColorStringColumnVisualizationFormat';
7
- import type { DefaultStringColumnVisualizationFormat } from './DefaultStringColumnVisualizationFormat';
8
- import type { ImageStringColumnVisualizationFormat } from './ImageStringColumnVisualizationFormat';
9
- import type { LinkStringColumnVisualizationFormat } from './LinkStringColumnVisualizationFormat';
6
+ import type { StringVisualizationOptions } from './StringVisualizationOptions';
10
7
 
11
- export type StringColumnVisualizationFormat = (CategoryColorStringColumnVisualizationFormat | LinkStringColumnVisualizationFormat | ImageStringColumnVisualizationFormat | DefaultStringColumnVisualizationFormat | {
8
+ export type StringColumnVisualizationFormat = {
12
9
  alignment: Alignment;
13
- '@type': string;
14
- });
10
+ '@type': 'string';
11
+ visualizationOptions: StringVisualizationOptions | null;
12
+ };
15
13
 
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { CategoryColorStringColumnVisualizationFormat } from './CategoryColorStringColumnVisualizationFormat';
6
+ import type { ImageStringColumnVisualizationFormat } from './ImageStringColumnVisualizationFormat';
7
+ import type { LinkStringColumnVisualizationFormat } from './LinkStringColumnVisualizationFormat';
8
+
9
+ export type StringVisualizationOptions = (CategoryColorStringColumnVisualizationFormat | LinkStringColumnVisualizationFormat | ImageStringColumnVisualizationFormat);
10
+
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.18.2",
5
+ "version": "3.18.4-chris-java-upgrade.1",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"
@@ -1,11 +0,0 @@
1
- /* istanbul ignore file */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
-
5
- import type { Alignment } from './Alignment';
6
-
7
- export type DefaultStringColumnVisualizationFormat = {
8
- alignment: Alignment;
9
- '@type': 'string';
10
- };
11
-