@explo-tech/fido-api 3.17.6 → 3.17.7-jordan-testing

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
@@ -9,6 +9,7 @@ export type { OpenAPIConfig } from './core/OpenAPI';
9
9
  export type { AggregateProperty } from './models/AggregateProperty';
10
10
  export { Aggregation } from './models/Aggregation';
11
11
  export type { AggregationOption } from './models/AggregationOption';
12
+ export { Alignment } from './models/Alignment';
12
13
  export type { And } from './models/And';
13
14
  export type { And1 } from './models/And1';
14
15
  export type { Athena } from './models/Athena';
@@ -16,7 +17,7 @@ export type { AwsAuthentication } from './models/AwsAuthentication';
16
17
  export type { AwsBasicAuthentication } from './models/AwsBasicAuthentication';
17
18
  export type { BigQuery } from './models/BigQuery';
18
19
  export type { BigQueryAuthentication } from './models/BigQueryAuthentication';
19
- export type { BooleanColumnFormat } from './models/BooleanColumnFormat';
20
+ export type { BooleanColumnVisualizationFormat } from './models/BooleanColumnVisualizationFormat';
20
21
  export { BooleanDisplayIcon } from './models/BooleanDisplayIcon';
21
22
  export type { BooleanPropertyValue } from './models/BooleanPropertyValue';
22
23
  export type { BooleanVisualizationOptions } from './models/BooleanVisualizationOptions';
@@ -27,7 +28,7 @@ export type { BranchResponseMetadata } from './models/BranchResponseMetadata';
27
28
  export type { CacheTelemetry } from './models/CacheTelemetry';
28
29
  export { CalendarInterval } from './models/CalendarInterval';
29
30
  export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
30
- export type { CategoryColorStringFormat } from './models/CategoryColorStringFormat';
31
+ export type { CategoryColorStringColumnVisualizationFormat } from './models/CategoryColorStringColumnVisualizationFormat';
31
32
  export type { Clickhouse } from './models/Clickhouse';
32
33
  export type { ClientError } from './models/ClientError';
33
34
  export type { ColorAssignment } from './models/ColorAssignment';
@@ -58,13 +59,13 @@ export type { DataSourceResponse } from './models/DataSourceResponse';
58
59
  export { DatePart } from './models/DatePart';
59
60
  export type { DatePartGrouping } from './models/DatePartGrouping';
60
61
  export type { DatePropertyValue } from './models/DatePropertyValue';
61
- export type { DateTimeColumnFormat } from './models/DateTimeColumnFormat';
62
+ export type { DateTimeColumnExportFormat } from './models/DateTimeColumnExportFormat';
63
+ export type { DateTimeColumnVisualizationFormat } from './models/DateTimeColumnVisualizationFormat';
62
64
  export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
63
65
  export type { DecimalColumnExportFormat } from './models/DecimalColumnExportFormat';
64
66
  export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
65
67
  export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
66
68
  export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
67
- export type { DefaultStringFormat } from './models/DefaultStringFormat';
68
69
  export type { DeleteResourceChange } from './models/DeleteResourceChange';
69
70
  export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
70
71
  export type { DiffBranchResponse } from './models/DiffBranchResponse';
@@ -89,7 +90,7 @@ export type { GreaterThanOrEqual1 } from './models/GreaterThanOrEqual1';
89
90
  export type { Grouping } from './models/Grouping';
90
91
  export type { Having } from './models/Having';
91
92
  export { ImageShape } from './models/ImageShape';
92
- export type { ImageStringFormat } from './models/ImageStringFormat';
93
+ export type { ImageStringColumnVisualizationFormat } from './models/ImageStringColumnVisualizationFormat';
93
94
  export type { In } from './models/In';
94
95
  export type { In1 } from './models/In1';
95
96
  export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
@@ -114,7 +115,7 @@ export type { LessThan1 } from './models/LessThan1';
114
115
  export type { LessThanOrEqual } from './models/LessThanOrEqual';
115
116
  export type { LessThanOrEqual1 } from './models/LessThanOrEqual1';
116
117
  export type { LinkSource } from './models/LinkSource';
117
- export type { LinkStringFormat } from './models/LinkStringFormat';
118
+ export type { LinkStringColumnVisualizationFormat } from './models/LinkStringColumnVisualizationFormat';
118
119
  export type { ListBranchContentResponse } from './models/ListBranchContentResponse';
119
120
  export type { ListBranchResponse } from './models/ListBranchResponse';
120
121
  export type { ListCommitResponse } from './models/ListCommitResponse';
@@ -172,10 +173,11 @@ export { SortDirection } from './models/SortDirection';
172
173
  export type { SourceProperty } from './models/SourceProperty';
173
174
  export type { SSHAuthentication } from './models/SSHAuthentication';
174
175
  export type { SSHTunnel } from './models/SSHTunnel';
175
- export type { StringColumnFormat } from './models/StringColumnFormat';
176
+ export type { StringColumnVisualizationFormat } from './models/StringColumnVisualizationFormat';
176
177
  export type { StringContains } from './models/StringContains';
177
178
  export type { StringContains1 } from './models/StringContains1';
178
179
  export type { StringPropertyValue } from './models/StringPropertyValue';
180
+ export type { StringVisualizationOptions } from './models/StringVisualizationOptions';
179
181
  export type { TablePreviewRequest } from './models/TablePreviewRequest';
180
182
  export type { TableView } from './models/TableView';
181
183
  export type { Tenant } from './models/Tenant';
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export enum Alignment {
6
+ LEFT = 'LEFT',
7
+ CENTER = 'CENTER',
8
+ RIGHT = 'RIGHT',
9
+ }
@@ -2,9 +2,11 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
+ import type { Alignment } from './Alignment';
5
6
  import type { BooleanVisualizationOptions } from './BooleanVisualizationOptions';
6
7
 
7
- export type BooleanColumnFormat = {
8
+ export type BooleanColumnVisualizationFormat = {
9
+ alignment: Alignment;
8
10
  '@type': 'boolean';
9
11
  trueFormat: BooleanVisualizationOptions;
10
12
  falseFormat: BooleanVisualizationOptions;
@@ -4,7 +4,7 @@
4
4
 
5
5
  import type { ColorAssignment } from './ColorAssignment';
6
6
 
7
- export type CategoryColorStringFormat = {
7
+ export type CategoryColorStringColumnVisualizationFormat = {
8
8
  '@type': 'category';
9
9
  colorAssignments: Record<string, string>;
10
10
  addedCategories: Array<ColorAssignment>;
@@ -2,9 +2,9 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { DateTimeColumnFormat } from './DateTimeColumnFormat';
5
+ import type { DateTimeColumnExportFormat } from './DateTimeColumnExportFormat';
6
6
  import type { DecimalColumnExportFormat } from './DecimalColumnExportFormat';
7
7
  import type { DurationColumnExportFormat } from './DurationColumnExportFormat';
8
8
 
9
- export type ColumnExportFormat = (DateTimeColumnFormat | DecimalColumnExportFormat | DurationColumnExportFormat);
9
+ export type ColumnExportFormat = (DateTimeColumnExportFormat | DecimalColumnExportFormat | DurationColumnExportFormat);
10
10
 
@@ -2,11 +2,14 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { BooleanColumnFormat } from './BooleanColumnFormat';
6
- import type { DateTimeColumnFormat } from './DateTimeColumnFormat';
5
+ import type { Alignment } from './Alignment';
6
+ import type { BooleanColumnVisualizationFormat } from './BooleanColumnVisualizationFormat';
7
+ import type { DateTimeColumnVisualizationFormat } from './DateTimeColumnVisualizationFormat';
7
8
  import type { DecimalColumnVisualizationFormat } from './DecimalColumnVisualizationFormat';
8
- import type { DefaultStringFormat } from './DefaultStringFormat';
9
9
  import type { DurationColumnVisualizationFormat } from './DurationColumnVisualizationFormat';
10
+ import type { StringColumnVisualizationFormat } from './StringColumnVisualizationFormat';
10
11
 
11
- export type ColumnVisualizationFormat = (DateTimeColumnFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnFormat | DefaultStringFormat);
12
+ export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnVisualizationFormat | StringColumnVisualizationFormat | {
13
+ alignment: Alignment;
14
+ });
12
15
 
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- export type DateTimeColumnFormat = {
6
- '@type': 'datetime';
5
+ export type DateTimeColumnExportFormat = {
7
6
  pattern?: string | null;
8
7
  locale: string | null;
9
8
  targetTimezone?: string;
9
+ '@type': 'datetime';
10
10
  };
11
11
 
@@ -0,0 +1,14 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Alignment } from './Alignment';
6
+
7
+ export type DateTimeColumnVisualizationFormat = {
8
+ pattern: string | null;
9
+ locale: string | null;
10
+ targetTimezone?: string;
11
+ alignment: Alignment;
12
+ '@type': 'datetime';
13
+ };
14
+
@@ -2,6 +2,7 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
+ import type { Alignment } from './Alignment';
5
6
  import type { NumberVisualizationOptions } from './NumberVisualizationOptions';
6
7
  import type { UnitOfMeasurement } from './UnitOfMeasurement';
7
8
 
@@ -11,6 +12,7 @@ export type DecimalColumnVisualizationFormat = {
11
12
  unitOfMeasurement?: UnitOfMeasurement;
12
13
  zeroReplacement: string | null;
13
14
  multiplier: number | null;
15
+ alignment: Alignment;
14
16
  '@type': 'decimal';
15
17
  visualizationOptions: NumberVisualizationOptions | null;
16
18
  };
@@ -2,11 +2,11 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { NumberVisualizationOptions } from './NumberVisualizationOptions';
5
+ import type { Alignment } from './Alignment';
6
6
 
7
7
  export type DurationColumnVisualizationFormat = {
8
8
  durationPattern: string | null;
9
+ alignment: Alignment;
9
10
  '@type': 'duration';
10
- visualizationOptions: NumberVisualizationOptions | null;
11
11
  };
12
12
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  import type { ImageShape } from './ImageShape';
6
6
 
7
- export type ImageStringFormat = {
7
+ export type ImageStringColumnVisualizationFormat = {
8
8
  '@type': 'image';
9
9
  shape: ImageShape;
10
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
 
@@ -4,9 +4,9 @@
4
4
 
5
5
  import type { LinkSource } from './LinkSource';
6
6
 
7
- export type LinkStringFormat = {
7
+ export type LinkStringColumnVisualizationFormat = {
8
8
  '@type': 'link';
9
- color: string;
9
+ colorHex: string;
10
10
  openInSameTab: boolean;
11
11
  source: LinkSource;
12
12
  };
@@ -0,0 +1,13 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Alignment } from './Alignment';
6
+ import type { StringVisualizationOptions } from './StringVisualizationOptions';
7
+
8
+ export type StringColumnVisualizationFormat = {
9
+ alignment: Alignment;
10
+ '@type': 'string';
11
+ visualizationOptions: StringVisualizationOptions | null;
12
+ };
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.17.6",
5
+ "version": "3.17.7-jordan-testing",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"
@@ -1,8 +0,0 @@
1
- /* istanbul ignore file */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
-
5
- export type DefaultStringFormat = {
6
- '@type': 'string';
7
- };
8
-
@@ -1,13 +0,0 @@
1
- /* istanbul ignore file */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
-
5
- import type { CategoryColorStringFormat } from './CategoryColorStringFormat';
6
- import type { DefaultStringFormat } from './DefaultStringFormat';
7
- import type { ImageStringFormat } from './ImageStringFormat';
8
- import type { LinkStringFormat } from './LinkStringFormat';
9
-
10
- export type StringColumnFormat = (CategoryColorStringFormat | LinkStringFormat | ImageStringFormat | DefaultStringFormat | {
11
- '@type': string;
12
- });
13
-