@explo-tech/fido-api 3.17.4 → 3.17.5-jordan-string-types.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 +27 -3
- package/models/BooleanColumnFormat.ts +12 -0
- package/models/BooleanDisplayIcon.ts +8 -0
- package/models/BooleanVisualizationOptions.ts +12 -0
- package/models/CategoryColorStringFormat.ts +9 -0
- package/models/ColumnExportFormat.ts +10 -0
- package/models/ColumnVisualizationFormat.ts +11 -0
- package/models/ComputedGradientPoint.ts +10 -0
- package/models/ComputedLinkSource.ts +9 -0
- package/models/ComputedProgressBar.ts +9 -0
- package/models/{DecimalColumnFormat.ts → DecimalColumnExportFormat.ts} +2 -2
- package/models/DecimalColumnVisualizationFormat.ts +17 -0
- package/models/DefaultStringFormat.ts +8 -0
- package/models/{DurationColumnFormat.ts → DurationColumnExportFormat.ts} +2 -2
- package/models/DurationColumnVisualizationFormat.ts +12 -0
- package/models/ExportColumnOptions.ts +2 -2
- package/models/GradientPoint.ts +12 -0
- package/models/ImageShape.ts +8 -0
- package/models/ImageStringFormat.ts +11 -0
- package/models/LinkSource.ts +11 -0
- package/models/LinkStringFormat.ts +13 -0
- package/models/NumberVisualizationOptions.ts +12 -0
- package/models/ProgressBar.ts +10 -0
- package/models/Resource.ts +0 -1
- package/models/StringColumnFormat.ts +13 -0
- package/models/UnitOfMeasurement.ts +1 -0
- package/models/ValueGradientPoint.ts +10 -0
- package/models/ValueLinkSource.ts +9 -0
- package/models/ValueProgressBar.ts +9 -0
- package/models/VariableGradientPoint.ts +10 -0
- package/models/VariableProgressBar.ts +9 -0
- package/models/View.ts +0 -1
- package/package.json +1 -1
- package/models/ColumnFormat.ts +0 -10
package/index.ts
CHANGED
|
@@ -16,7 +16,10 @@ export type { AwsAuthentication } from './models/AwsAuthentication';
|
|
|
16
16
|
export type { AwsBasicAuthentication } from './models/AwsBasicAuthentication';
|
|
17
17
|
export type { BigQuery } from './models/BigQuery';
|
|
18
18
|
export type { BigQueryAuthentication } from './models/BigQueryAuthentication';
|
|
19
|
+
export type { BooleanColumnFormat } from './models/BooleanColumnFormat';
|
|
20
|
+
export { BooleanDisplayIcon } from './models/BooleanDisplayIcon';
|
|
19
21
|
export type { BooleanPropertyValue } from './models/BooleanPropertyValue';
|
|
22
|
+
export type { BooleanVisualizationOptions } from './models/BooleanVisualizationOptions';
|
|
20
23
|
export type { Branch } from './models/Branch';
|
|
21
24
|
export type { BranchRequest } from './models/BranchRequest';
|
|
22
25
|
export type { BranchResponse } from './models/BranchResponse';
|
|
@@ -24,13 +27,18 @@ export type { BranchResponseMetadata } from './models/BranchResponseMetadata';
|
|
|
24
27
|
export type { CacheTelemetry } from './models/CacheTelemetry';
|
|
25
28
|
export { CalendarInterval } from './models/CalendarInterval';
|
|
26
29
|
export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
|
|
30
|
+
export type { CategoryColorStringFormat } from './models/CategoryColorStringFormat';
|
|
27
31
|
export type { Clickhouse } from './models/Clickhouse';
|
|
28
32
|
export type { ClientError } from './models/ClientError';
|
|
29
|
-
export type {
|
|
33
|
+
export type { ColumnExportFormat } from './models/ColumnExportFormat';
|
|
34
|
+
export type { ColumnVisualizationFormat } from './models/ColumnVisualizationFormat';
|
|
30
35
|
export type { Commit } from './models/Commit';
|
|
31
36
|
export type { CommitResponse } from './models/CommitResponse';
|
|
32
37
|
export type { CommitResponseMetadata } from './models/CommitResponseMetadata';
|
|
33
38
|
export type { Computation } from './models/Computation';
|
|
39
|
+
export type { ComputedGradientPoint } from './models/ComputedGradientPoint';
|
|
40
|
+
export type { ComputedLinkSource } from './models/ComputedLinkSource';
|
|
41
|
+
export type { ComputedProgressBar } from './models/ComputedProgressBar';
|
|
34
42
|
export type { ComputedView } from './models/ComputedView';
|
|
35
43
|
export type { CreateCommitRequest } from './models/CreateCommitRequest';
|
|
36
44
|
export type { CreateCommitResponse } from './models/CreateCommitResponse';
|
|
@@ -51,14 +59,17 @@ export type { DatePartGrouping } from './models/DatePartGrouping';
|
|
|
51
59
|
export type { DatePropertyValue } from './models/DatePropertyValue';
|
|
52
60
|
export type { DateTimeColumnFormat } from './models/DateTimeColumnFormat';
|
|
53
61
|
export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
|
|
54
|
-
export type {
|
|
62
|
+
export type { DecimalColumnExportFormat } from './models/DecimalColumnExportFormat';
|
|
63
|
+
export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
|
|
55
64
|
export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
|
|
56
65
|
export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
66
|
+
export type { DefaultStringFormat } from './models/DefaultStringFormat';
|
|
57
67
|
export type { DeleteResourceChange } from './models/DeleteResourceChange';
|
|
58
68
|
export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
|
|
59
69
|
export type { DiffBranchResponse } from './models/DiffBranchResponse';
|
|
60
70
|
export type { DoublePropertyValue } from './models/DoublePropertyValue';
|
|
61
|
-
export type {
|
|
71
|
+
export type { DurationColumnExportFormat } from './models/DurationColumnExportFormat';
|
|
72
|
+
export type { DurationColumnVisualizationFormat } from './models/DurationColumnVisualizationFormat';
|
|
62
73
|
export type { EmailConfiguration } from './models/EmailConfiguration';
|
|
63
74
|
export type { Equal } from './models/Equal';
|
|
64
75
|
export type { Equal1 } from './models/Equal1';
|
|
@@ -69,12 +80,15 @@ export type { ExportTargetConfiguration } from './models/ExportTargetConfigurati
|
|
|
69
80
|
export type { Filter } from './models/Filter';
|
|
70
81
|
export type { Folder } from './models/Folder';
|
|
71
82
|
export type { FormulaProperty } from './models/FormulaProperty';
|
|
83
|
+
export type { GradientPoint } from './models/GradientPoint';
|
|
72
84
|
export type { GreaterThan } from './models/GreaterThan';
|
|
73
85
|
export type { GreaterThan1 } from './models/GreaterThan1';
|
|
74
86
|
export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
|
|
75
87
|
export type { GreaterThanOrEqual1 } from './models/GreaterThanOrEqual1';
|
|
76
88
|
export type { Grouping } from './models/Grouping';
|
|
77
89
|
export type { Having } from './models/Having';
|
|
90
|
+
export { ImageShape } from './models/ImageShape';
|
|
91
|
+
export type { ImageStringFormat } from './models/ImageStringFormat';
|
|
78
92
|
export type { In } from './models/In';
|
|
79
93
|
export type { In1 } from './models/In1';
|
|
80
94
|
export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
|
|
@@ -98,6 +112,8 @@ export type { LessThan } from './models/LessThan';
|
|
|
98
112
|
export type { LessThan1 } from './models/LessThan1';
|
|
99
113
|
export type { LessThanOrEqual } from './models/LessThanOrEqual';
|
|
100
114
|
export type { LessThanOrEqual1 } from './models/LessThanOrEqual1';
|
|
115
|
+
export type { LinkSource } from './models/LinkSource';
|
|
116
|
+
export type { LinkStringFormat } from './models/LinkStringFormat';
|
|
101
117
|
export type { ListBranchContentResponse } from './models/ListBranchContentResponse';
|
|
102
118
|
export type { ListBranchResponse } from './models/ListBranchResponse';
|
|
103
119
|
export type { ListCommitResponse } from './models/ListCommitResponse';
|
|
@@ -117,6 +133,7 @@ export type { Not } from './models/Not';
|
|
|
117
133
|
export type { Not1 } from './models/Not1';
|
|
118
134
|
export type { Null } from './models/Null';
|
|
119
135
|
export type { Null1 } from './models/Null1';
|
|
136
|
+
export type { NumberVisualizationOptions } from './models/NumberVisualizationOptions';
|
|
120
137
|
export type { Or } from './models/Or';
|
|
121
138
|
export type { Or1 } from './models/Or1';
|
|
122
139
|
export type { PagingConfiguration } from './models/PagingConfiguration';
|
|
@@ -124,6 +141,7 @@ export type { Parameter } from './models/Parameter';
|
|
|
124
141
|
export type { ParseQueryRequest } from './models/ParseQueryRequest';
|
|
125
142
|
export type { PasswordAuthentication } from './models/PasswordAuthentication';
|
|
126
143
|
export type { Postgres } from './models/Postgres';
|
|
144
|
+
export type { ProgressBar } from './models/ProgressBar';
|
|
127
145
|
export type { Property } from './models/Property';
|
|
128
146
|
export type { PropertySchema } from './models/PropertySchema';
|
|
129
147
|
export { PropertyType } from './models/PropertyType';
|
|
@@ -153,6 +171,7 @@ export { SortDirection } from './models/SortDirection';
|
|
|
153
171
|
export type { SourceProperty } from './models/SourceProperty';
|
|
154
172
|
export type { SSHAuthentication } from './models/SSHAuthentication';
|
|
155
173
|
export type { SSHTunnel } from './models/SSHTunnel';
|
|
174
|
+
export type { StringColumnFormat } from './models/StringColumnFormat';
|
|
156
175
|
export type { StringContains } from './models/StringContains';
|
|
157
176
|
export type { StringContains1 } from './models/StringContains1';
|
|
158
177
|
export type { StringPropertyValue } from './models/StringPropertyValue';
|
|
@@ -172,7 +191,12 @@ export { UnitOfMeasurement } from './models/UnitOfMeasurement';
|
|
|
172
191
|
export type { UpdateResourceChange } from './models/UpdateResourceChange';
|
|
173
192
|
export type { UpdateResourceDiff } from './models/UpdateResourceDiff';
|
|
174
193
|
export type { UUID } from './models/UUID';
|
|
194
|
+
export type { ValueGradientPoint } from './models/ValueGradientPoint';
|
|
175
195
|
export type { ValueGrouping } from './models/ValueGrouping';
|
|
196
|
+
export type { ValueLinkSource } from './models/ValueLinkSource';
|
|
197
|
+
export type { ValueProgressBar } from './models/ValueProgressBar';
|
|
198
|
+
export type { VariableGradientPoint } from './models/VariableGradientPoint';
|
|
199
|
+
export type { VariableProgressBar } from './models/VariableProgressBar';
|
|
176
200
|
export type { VendorPrivateKeyAuthentication } from './models/VendorPrivateKeyAuthentication';
|
|
177
201
|
export type { VersionedViewRequest } from './models/VersionedViewRequest';
|
|
178
202
|
export type { View } from './models/View';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { BooleanVisualizationOptions } from './BooleanVisualizationOptions';
|
|
6
|
+
|
|
7
|
+
export type BooleanColumnFormat = {
|
|
8
|
+
'@type': 'BooleanColumnFormat';
|
|
9
|
+
trueFormat: BooleanVisualizationOptions;
|
|
10
|
+
falseFormat: BooleanVisualizationOptions;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { BooleanDisplayIcon } from './BooleanDisplayIcon';
|
|
6
|
+
|
|
7
|
+
export type BooleanVisualizationOptions = {
|
|
8
|
+
hexColor: string | null;
|
|
9
|
+
backgroundHexColor: string | null;
|
|
10
|
+
icon?: BooleanDisplayIcon;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { DateTimeColumnFormat } from './DateTimeColumnFormat';
|
|
6
|
+
import type { DecimalColumnExportFormat } from './DecimalColumnExportFormat';
|
|
7
|
+
import type { DurationColumnExportFormat } from './DurationColumnExportFormat';
|
|
8
|
+
|
|
9
|
+
export type ColumnExportFormat = (DateTimeColumnFormat | DecimalColumnExportFormat | DurationColumnExportFormat);
|
|
10
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { BooleanColumnFormat } from './BooleanColumnFormat';
|
|
6
|
+
import type { DateTimeColumnFormat } from './DateTimeColumnFormat';
|
|
7
|
+
import type { DecimalColumnVisualizationFormat } from './DecimalColumnVisualizationFormat';
|
|
8
|
+
import type { DurationColumnVisualizationFormat } from './DurationColumnVisualizationFormat';
|
|
9
|
+
|
|
10
|
+
export type ColumnVisualizationFormat = (DateTimeColumnFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnFormat);
|
|
11
|
+
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
import type { UnitOfMeasurement } from './UnitOfMeasurement';
|
|
6
6
|
|
|
7
|
-
export type
|
|
8
|
-
'@type': 'decimal';
|
|
7
|
+
export type DecimalColumnExportFormat = {
|
|
9
8
|
decimalFormat: string | null;
|
|
10
9
|
locale: string | null;
|
|
11
10
|
unitOfMeasurement?: UnitOfMeasurement;
|
|
12
11
|
zeroReplacement: string | null;
|
|
13
12
|
multiplier: number | null;
|
|
13
|
+
'@type': 'decimal';
|
|
14
14
|
};
|
|
15
15
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { NumberVisualizationOptions } from './NumberVisualizationOptions';
|
|
6
|
+
import type { UnitOfMeasurement } from './UnitOfMeasurement';
|
|
7
|
+
|
|
8
|
+
export type DecimalColumnVisualizationFormat = {
|
|
9
|
+
decimalFormat: string | null;
|
|
10
|
+
locale: string | null;
|
|
11
|
+
unitOfMeasurement?: UnitOfMeasurement;
|
|
12
|
+
zeroReplacement: string | null;
|
|
13
|
+
multiplier: number | null;
|
|
14
|
+
'@type': 'decimal';
|
|
15
|
+
visualizationOptions: NumberVisualizationOptions | null;
|
|
16
|
+
};
|
|
17
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { NumberVisualizationOptions } from './NumberVisualizationOptions';
|
|
6
|
+
|
|
7
|
+
export type DurationColumnVisualizationFormat = {
|
|
8
|
+
durationPattern: string | null;
|
|
9
|
+
'@type': 'duration';
|
|
10
|
+
visualizationOptions: NumberVisualizationOptions | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
import type {
|
|
5
|
+
import type { ColumnExportFormat } from './ColumnExportFormat';
|
|
6
6
|
|
|
7
7
|
export type ExportColumnOptions = {
|
|
8
8
|
targetPropertyId: string;
|
|
9
9
|
displayName: string | null;
|
|
10
|
-
columnFormat:
|
|
10
|
+
columnFormat: ColumnExportFormat | null;
|
|
11
11
|
};
|
|
12
12
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { ComputedGradientPoint } from './ComputedGradientPoint';
|
|
6
|
+
import type { ValueGradientPoint } from './ValueGradientPoint';
|
|
7
|
+
import type { VariableGradientPoint } from './VariableGradientPoint';
|
|
8
|
+
|
|
9
|
+
export type GradientPoint = (ValueGradientPoint | ComputedGradientPoint | VariableGradientPoint | {
|
|
10
|
+
hexColor: string;
|
|
11
|
+
});
|
|
12
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { ComputedLinkSource } from './ComputedLinkSource';
|
|
6
|
+
import type { ValueLinkSource } from './ValueLinkSource';
|
|
7
|
+
|
|
8
|
+
export type LinkSource = (ValueLinkSource | ComputedLinkSource | {
|
|
9
|
+
'@type': string;
|
|
10
|
+
});
|
|
11
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { LinkSource } from './LinkSource';
|
|
6
|
+
|
|
7
|
+
export type LinkStringFormat = {
|
|
8
|
+
'@type': 'link';
|
|
9
|
+
color: string;
|
|
10
|
+
openInSameTab: boolean;
|
|
11
|
+
source: LinkSource;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GradientPoint } from './GradientPoint';
|
|
6
|
+
import type { ProgressBar } from './ProgressBar';
|
|
7
|
+
|
|
8
|
+
export type NumberVisualizationOptions = {
|
|
9
|
+
progressBar: ProgressBar | null;
|
|
10
|
+
gradient: Array<GradientPoint>;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { ComputedProgressBar } from './ComputedProgressBar';
|
|
6
|
+
import type { ValueProgressBar } from './ValueProgressBar';
|
|
7
|
+
import type { VariableProgressBar } from './VariableProgressBar';
|
|
8
|
+
|
|
9
|
+
export type ProgressBar = (ValueProgressBar | ComputedProgressBar | VariableProgressBar);
|
|
10
|
+
|
package/models/Resource.ts
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
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
|
+
|
package/models/View.ts
CHANGED
package/package.json
CHANGED
package/models/ColumnFormat.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { DateTimeColumnFormat } from './DateTimeColumnFormat';
|
|
6
|
-
import type { DecimalColumnFormat } from './DecimalColumnFormat';
|
|
7
|
-
import type { DurationColumnFormat } from './DurationColumnFormat';
|
|
8
|
-
|
|
9
|
-
export type ColumnFormat = (DateTimeColumnFormat | DecimalColumnFormat | DurationColumnFormat);
|
|
10
|
-
|