@explo-tech/fido-api 3.18.2-dan-mark-tunnels-failed.1 → 3.18.3
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 +0 -2
- package/models/ColorAssignment.ts +1 -1
- package/models/ColumnVisualizationFormat.ts +2 -2
- package/models/DurationColumnVisualizationFormat.ts +0 -2
- package/models/ImageStringColumnVisualizationFormat.ts +0 -2
- package/models/LinkSource.ts +1 -3
- package/models/LinkStringColumnVisualizationFormat.ts +1 -3
- package/models/StringColumnVisualizationFormat.ts +5 -7
- package/models/StringVisualizationOptions.ts +10 -0
- package/package.json +1 -1
- package/models/DefaultStringColumnVisualizationFormat.ts +0 -11
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>;
|
|
@@ -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 |
|
|
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
|
};
|
package/models/LinkSource.ts
CHANGED
|
@@ -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
|
-
|
|
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 {
|
|
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 =
|
|
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