@explo-tech/fido-api 3.17.4 → 3.17.5-lawrence-array-func-tests.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 +18 -3
- package/models/BooleanColumnFormat.ts +12 -0
- package/models/BooleanDisplayIcon.ts +8 -0
- package/models/BooleanVisualizationOptions.ts +12 -0
- package/models/ColumnExportFormat.ts +10 -0
- package/models/ColumnVisualizationFormat.ts +11 -0
- package/models/ComputedGradientPoint.ts +10 -0
- package/models/ComputedProgressBar.ts +9 -0
- package/models/{DecimalColumnFormat.ts → DecimalColumnExportFormat.ts} +2 -2
- package/models/DecimalColumnVisualizationFormat.ts +17 -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/NumberVisualizationOptions.ts +12 -0
- package/models/ProgressBar.ts +10 -0
- package/models/Resource.ts +0 -1
- package/models/UnitOfMeasurement.ts +1 -0
- package/models/ValueGradientPoint.ts +10 -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';
|
|
@@ -26,11 +29,14 @@ export { CalendarInterval } from './models/CalendarInterval';
|
|
|
26
29
|
export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
|
|
27
30
|
export type { Clickhouse } from './models/Clickhouse';
|
|
28
31
|
export type { ClientError } from './models/ClientError';
|
|
29
|
-
export type {
|
|
32
|
+
export type { ColumnExportFormat } from './models/ColumnExportFormat';
|
|
33
|
+
export type { ColumnVisualizationFormat } from './models/ColumnVisualizationFormat';
|
|
30
34
|
export type { Commit } from './models/Commit';
|
|
31
35
|
export type { CommitResponse } from './models/CommitResponse';
|
|
32
36
|
export type { CommitResponseMetadata } from './models/CommitResponseMetadata';
|
|
33
37
|
export type { Computation } from './models/Computation';
|
|
38
|
+
export type { ComputedGradientPoint } from './models/ComputedGradientPoint';
|
|
39
|
+
export type { ComputedProgressBar } from './models/ComputedProgressBar';
|
|
34
40
|
export type { ComputedView } from './models/ComputedView';
|
|
35
41
|
export type { CreateCommitRequest } from './models/CreateCommitRequest';
|
|
36
42
|
export type { CreateCommitResponse } from './models/CreateCommitResponse';
|
|
@@ -51,14 +57,16 @@ export type { DatePartGrouping } from './models/DatePartGrouping';
|
|
|
51
57
|
export type { DatePropertyValue } from './models/DatePropertyValue';
|
|
52
58
|
export type { DateTimeColumnFormat } from './models/DateTimeColumnFormat';
|
|
53
59
|
export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
|
|
54
|
-
export type {
|
|
60
|
+
export type { DecimalColumnExportFormat } from './models/DecimalColumnExportFormat';
|
|
61
|
+
export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
|
|
55
62
|
export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
|
|
56
63
|
export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
57
64
|
export type { DeleteResourceChange } from './models/DeleteResourceChange';
|
|
58
65
|
export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
|
|
59
66
|
export type { DiffBranchResponse } from './models/DiffBranchResponse';
|
|
60
67
|
export type { DoublePropertyValue } from './models/DoublePropertyValue';
|
|
61
|
-
export type {
|
|
68
|
+
export type { DurationColumnExportFormat } from './models/DurationColumnExportFormat';
|
|
69
|
+
export type { DurationColumnVisualizationFormat } from './models/DurationColumnVisualizationFormat';
|
|
62
70
|
export type { EmailConfiguration } from './models/EmailConfiguration';
|
|
63
71
|
export type { Equal } from './models/Equal';
|
|
64
72
|
export type { Equal1 } from './models/Equal1';
|
|
@@ -69,6 +77,7 @@ export type { ExportTargetConfiguration } from './models/ExportTargetConfigurati
|
|
|
69
77
|
export type { Filter } from './models/Filter';
|
|
70
78
|
export type { Folder } from './models/Folder';
|
|
71
79
|
export type { FormulaProperty } from './models/FormulaProperty';
|
|
80
|
+
export type { GradientPoint } from './models/GradientPoint';
|
|
72
81
|
export type { GreaterThan } from './models/GreaterThan';
|
|
73
82
|
export type { GreaterThan1 } from './models/GreaterThan1';
|
|
74
83
|
export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
|
|
@@ -117,6 +126,7 @@ export type { Not } from './models/Not';
|
|
|
117
126
|
export type { Not1 } from './models/Not1';
|
|
118
127
|
export type { Null } from './models/Null';
|
|
119
128
|
export type { Null1 } from './models/Null1';
|
|
129
|
+
export type { NumberVisualizationOptions } from './models/NumberVisualizationOptions';
|
|
120
130
|
export type { Or } from './models/Or';
|
|
121
131
|
export type { Or1 } from './models/Or1';
|
|
122
132
|
export type { PagingConfiguration } from './models/PagingConfiguration';
|
|
@@ -124,6 +134,7 @@ export type { Parameter } from './models/Parameter';
|
|
|
124
134
|
export type { ParseQueryRequest } from './models/ParseQueryRequest';
|
|
125
135
|
export type { PasswordAuthentication } from './models/PasswordAuthentication';
|
|
126
136
|
export type { Postgres } from './models/Postgres';
|
|
137
|
+
export type { ProgressBar } from './models/ProgressBar';
|
|
127
138
|
export type { Property } from './models/Property';
|
|
128
139
|
export type { PropertySchema } from './models/PropertySchema';
|
|
129
140
|
export { PropertyType } from './models/PropertyType';
|
|
@@ -172,7 +183,11 @@ export { UnitOfMeasurement } from './models/UnitOfMeasurement';
|
|
|
172
183
|
export type { UpdateResourceChange } from './models/UpdateResourceChange';
|
|
173
184
|
export type { UpdateResourceDiff } from './models/UpdateResourceDiff';
|
|
174
185
|
export type { UUID } from './models/UUID';
|
|
186
|
+
export type { ValueGradientPoint } from './models/ValueGradientPoint';
|
|
175
187
|
export type { ValueGrouping } from './models/ValueGrouping';
|
|
188
|
+
export type { ValueProgressBar } from './models/ValueProgressBar';
|
|
189
|
+
export type { VariableGradientPoint } from './models/VariableGradientPoint';
|
|
190
|
+
export type { VariableProgressBar } from './models/VariableProgressBar';
|
|
176
191
|
export type { VendorPrivateKeyAuthentication } from './models/VendorPrivateKeyAuthentication';
|
|
177
192
|
export type { VersionedViewRequest } from './models/VersionedViewRequest';
|
|
178
193
|
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,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
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
|
-
|