@explo-tech/fido-api 3.18.4 → 3.19.0-lawrence-athena-query-3.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 +1 -1
- package/models/CategoryColorStringColumnVisualizationFormat.ts +2 -0
- package/models/ColorAssignment.ts +1 -1
- package/models/ColumnVisualizationFormat.ts +2 -2
- package/models/DefaultStringColumnVisualizationFormat.ts +11 -0
- package/models/DurationColumnVisualizationFormat.ts +2 -0
- package/models/ImageStringColumnVisualizationFormat.ts +2 -0
- package/models/LinkSource.ts +3 -1
- package/models/LinkStringColumnVisualizationFormat.ts +3 -1
- package/models/StringColumnVisualizationFormat.ts +7 -5
- package/package.json +1 -1
- package/models/StringVisualizationOptions.ts +0 -10
package/index.ts
CHANGED
|
@@ -66,6 +66,7 @@ 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';
|
|
69
70
|
export type { DeleteResourceChange } from './models/DeleteResourceChange';
|
|
70
71
|
export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
|
|
71
72
|
export type { DiffBranchResponse } from './models/DiffBranchResponse';
|
|
@@ -177,7 +178,6 @@ export type { StringColumnVisualizationFormat } from './models/StringColumnVisua
|
|
|
177
178
|
export type { StringContains } from './models/StringContains';
|
|
178
179
|
export type { StringContains1 } from './models/StringContains1';
|
|
179
180
|
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,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
8
|
export type CategoryColorStringColumnVisualizationFormat = {
|
|
9
|
+
alignment: Alignment;
|
|
8
10
|
'@type': 'category';
|
|
9
11
|
colorAssignments: Record<string, string>;
|
|
10
12
|
addedCategories: Array<ColorAssignment>;
|
|
@@ -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';
|
|
9
10
|
import type { DurationColumnVisualizationFormat } from './DurationColumnVisualizationFormat';
|
|
10
|
-
import type { StringColumnVisualizationFormat } from './StringColumnVisualizationFormat';
|
|
11
11
|
|
|
12
|
-
export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnVisualizationFormat |
|
|
12
|
+
export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnVisualizationFormat | DefaultStringColumnVisualizationFormat | {
|
|
13
13
|
alignment: Alignment;
|
|
14
14
|
});
|
|
15
15
|
|
|
@@ -3,10 +3,12 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
import type { Alignment } from './Alignment';
|
|
6
|
+
import type { NumberVisualizationOptions } from './NumberVisualizationOptions';
|
|
6
7
|
|
|
7
8
|
export type DurationColumnVisualizationFormat = {
|
|
8
9
|
durationPattern: string | null;
|
|
9
10
|
alignment: Alignment;
|
|
10
11
|
'@type': 'duration';
|
|
12
|
+
visualizationOptions: NumberVisualizationOptions | null;
|
|
11
13
|
};
|
|
12
14
|
|
|
@@ -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
8
|
export type ImageStringColumnVisualizationFormat = {
|
|
9
|
+
alignment: Alignment;
|
|
8
10
|
'@type': 'image';
|
|
9
11
|
shape: ImageShape;
|
|
10
12
|
};
|
package/models/LinkSource.ts
CHANGED
|
@@ -5,5 +5,7 @@
|
|
|
5
5
|
import type { ComputedLinkSource } from './ComputedLinkSource';
|
|
6
6
|
import type { ValueLinkSource } from './ValueLinkSource';
|
|
7
7
|
|
|
8
|
-
export type LinkSource = (ValueLinkSource | ComputedLinkSource
|
|
8
|
+
export type LinkSource = (ValueLinkSource | ComputedLinkSource | {
|
|
9
|
+
'@type': string;
|
|
10
|
+
});
|
|
9
11
|
|
|
@@ -2,11 +2,13 @@
|
|
|
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
8
|
export type LinkStringColumnVisualizationFormat = {
|
|
9
|
+
alignment: Alignment;
|
|
8
10
|
'@type': 'link';
|
|
9
|
-
|
|
11
|
+
color: string;
|
|
10
12
|
openInSameTab: boolean;
|
|
11
13
|
source: LinkSource;
|
|
12
14
|
};
|
|
@@ -3,11 +3,13 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
import type { Alignment } from './Alignment';
|
|
6
|
-
import type {
|
|
6
|
+
import type { CategoryColorStringColumnVisualizationFormat } from './CategoryColorStringColumnVisualizationFormat';
|
|
7
|
+
import type { DefaultStringColumnVisualizationFormat } from './DefaultStringColumnVisualizationFormat';
|
|
8
|
+
import type { ImageStringColumnVisualizationFormat } from './ImageStringColumnVisualizationFormat';
|
|
9
|
+
import type { LinkStringColumnVisualizationFormat } from './LinkStringColumnVisualizationFormat';
|
|
7
10
|
|
|
8
|
-
export type StringColumnVisualizationFormat = {
|
|
11
|
+
export type StringColumnVisualizationFormat = (CategoryColorStringColumnVisualizationFormat | LinkStringColumnVisualizationFormat | ImageStringColumnVisualizationFormat | DefaultStringColumnVisualizationFormat | {
|
|
9
12
|
alignment: Alignment;
|
|
10
|
-
'@type':
|
|
11
|
-
|
|
12
|
-
};
|
|
13
|
+
'@type': string;
|
|
14
|
+
});
|
|
13
15
|
|
package/package.json
CHANGED
|
@@ -1,10 +0,0 @@
|
|
|
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
|
-
|