@explo-tech/fido-api 3.17.6 → 3.17.7

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,14 @@ 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';
69
+ export type { DefaultStringColumnVisualizationFormat } from './models/DefaultStringColumnVisualizationFormat';
68
70
  export type { DeleteResourceChange } from './models/DeleteResourceChange';
69
71
  export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
70
72
  export type { DiffBranchResponse } from './models/DiffBranchResponse';
@@ -89,7 +91,7 @@ export type { GreaterThanOrEqual1 } from './models/GreaterThanOrEqual1';
89
91
  export type { Grouping } from './models/Grouping';
90
92
  export type { Having } from './models/Having';
91
93
  export { ImageShape } from './models/ImageShape';
92
- export type { ImageStringFormat } from './models/ImageStringFormat';
94
+ export type { ImageStringColumnVisualizationFormat } from './models/ImageStringColumnVisualizationFormat';
93
95
  export type { In } from './models/In';
94
96
  export type { In1 } from './models/In1';
95
97
  export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
@@ -114,7 +116,7 @@ export type { LessThan1 } from './models/LessThan1';
114
116
  export type { LessThanOrEqual } from './models/LessThanOrEqual';
115
117
  export type { LessThanOrEqual1 } from './models/LessThanOrEqual1';
116
118
  export type { LinkSource } from './models/LinkSource';
117
- export type { LinkStringFormat } from './models/LinkStringFormat';
119
+ export type { LinkStringColumnVisualizationFormat } from './models/LinkStringColumnVisualizationFormat';
118
120
  export type { ListBranchContentResponse } from './models/ListBranchContentResponse';
119
121
  export type { ListBranchResponse } from './models/ListBranchResponse';
120
122
  export type { ListCommitResponse } from './models/ListCommitResponse';
@@ -172,7 +174,7 @@ export { SortDirection } from './models/SortDirection';
172
174
  export type { SourceProperty } from './models/SourceProperty';
173
175
  export type { SSHAuthentication } from './models/SSHAuthentication';
174
176
  export type { SSHTunnel } from './models/SSHTunnel';
175
- export type { StringColumnFormat } from './models/StringColumnFormat';
177
+ export type { StringColumnVisualizationFormat } from './models/StringColumnVisualizationFormat';
176
178
  export type { StringContains } from './models/StringContains';
177
179
  export type { StringContains1 } from './models/StringContains1';
178
180
  export type { StringPropertyValue } from './models/StringPropertyValue';
@@ -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;
@@ -2,9 +2,11 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
+ import type { Alignment } from './Alignment';
5
6
  import type { ColorAssignment } from './ColorAssignment';
6
7
 
7
- export type CategoryColorStringFormat = {
8
+ export type CategoryColorStringColumnVisualizationFormat = {
9
+ alignment: Alignment;
8
10
  '@type': 'category';
9
11
  colorAssignments: Record<string, string>;
10
12
  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
+ import type { DefaultStringColumnVisualizationFormat } from './DefaultStringColumnVisualizationFormat';
9
10
  import type { DurationColumnVisualizationFormat } from './DurationColumnVisualizationFormat';
10
11
 
11
- export type ColumnVisualizationFormat = (DateTimeColumnFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnFormat | DefaultStringFormat);
12
+ export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnVisualizationFormat | DefaultStringColumnVisualizationFormat | {
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
  };
@@ -0,0 +1,11 @@
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
+
@@ -2,10 +2,12 @@
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
 
7
8
  export type DurationColumnVisualizationFormat = {
8
9
  durationPattern: string | null;
10
+ alignment: Alignment;
9
11
  '@type': 'duration';
10
12
  visualizationOptions: NumberVisualizationOptions | null;
11
13
  };
@@ -2,9 +2,11 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
+ import type { Alignment } from './Alignment';
5
6
  import type { ImageShape } from './ImageShape';
6
7
 
7
- export type ImageStringFormat = {
8
+ export type ImageStringColumnVisualizationFormat = {
9
+ alignment: Alignment;
8
10
  '@type': 'image';
9
11
  shape: ImageShape;
10
12
  };
@@ -2,9 +2,11 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
+ import type { Alignment } from './Alignment';
5
6
  import type { LinkSource } from './LinkSource';
6
7
 
7
- export type LinkStringFormat = {
8
+ export type LinkStringColumnVisualizationFormat = {
9
+ alignment: Alignment;
8
10
  '@type': 'link';
9
11
  color: string;
10
12
  openInSameTab: boolean;
@@ -0,0 +1,15 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
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';
10
+
11
+ export type StringColumnVisualizationFormat = (CategoryColorStringColumnVisualizationFormat | LinkStringColumnVisualizationFormat | ImageStringColumnVisualizationFormat | DefaultStringColumnVisualizationFormat | {
12
+ alignment: Alignment;
13
+ '@type': string;
14
+ });
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.17.6",
5
+ "version": "3.17.7",
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
-