@explo-tech/fido-api 3.14.0 → 3.15.0-jordan-testing

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.
Files changed (39) hide show
  1. package/index.ts +31 -4
  2. package/models/Alignment.ts +9 -0
  3. package/models/BooleanColumnVisualizationFormat.ts +14 -0
  4. package/models/BooleanDisplayIcon.ts +8 -0
  5. package/models/BooleanVisualizationOptions.ts +12 -0
  6. package/models/CalendarInterval.ts +1 -0
  7. package/models/CategoryColorStringColumnVisualizationFormat.ts +12 -0
  8. package/models/ColorAssignment.ts +9 -0
  9. package/models/ColumnExportFormat.ts +10 -0
  10. package/models/ColumnVisualizationFormat.ts +15 -0
  11. package/models/ComputedGradientPoint.ts +10 -0
  12. package/models/ComputedLinkSource.ts +9 -0
  13. package/models/ComputedProgressBar.ts +9 -0
  14. package/models/{DateTimeColumnFormat.ts → DateTimeColumnExportFormat.ts} +2 -2
  15. package/models/DateTimeColumnVisualizationFormat.ts +14 -0
  16. package/models/{DecimalColumnFormat.ts → DecimalColumnExportFormat.ts} +2 -2
  17. package/models/DecimalColumnVisualizationFormat.ts +19 -0
  18. package/models/{DurationColumnFormat.ts → DurationColumnExportFormat.ts} +2 -2
  19. package/models/DurationColumnVisualizationFormat.ts +12 -0
  20. package/models/ExportColumnOptions.ts +2 -2
  21. package/models/GradientPoint.ts +12 -0
  22. package/models/ImageShape.ts +8 -0
  23. package/models/ImageStringColumnVisualizationFormat.ts +11 -0
  24. package/models/LinkSource.ts +9 -0
  25. package/models/LinkStringColumnVisualizationFormat.ts +13 -0
  26. package/models/NumberVisualizationOptions.ts +12 -0
  27. package/models/ProgressBar.ts +10 -0
  28. package/models/Resource.ts +0 -1
  29. package/models/StringColumnVisualizationFormat.ts +13 -0
  30. package/models/StringVisualizationOptions.ts +10 -0
  31. package/models/UnitOfMeasurement.ts +1 -0
  32. package/models/ValueGradientPoint.ts +10 -0
  33. package/models/ValueLinkSource.ts +9 -0
  34. package/models/ValueProgressBar.ts +9 -0
  35. package/models/VariableGradientPoint.ts +10 -0
  36. package/models/VariableProgressBar.ts +9 -0
  37. package/models/View.ts +0 -1
  38. package/package.json +1 -1
  39. package/models/ColumnFormat.ts +0 -10
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,10 @@ 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';
20
+ export type { BooleanColumnVisualizationFormat } from './models/BooleanColumnVisualizationFormat';
21
+ export { BooleanDisplayIcon } from './models/BooleanDisplayIcon';
19
22
  export type { BooleanPropertyValue } from './models/BooleanPropertyValue';
23
+ export type { BooleanVisualizationOptions } from './models/BooleanVisualizationOptions';
20
24
  export type { Branch } from './models/Branch';
21
25
  export type { BranchRequest } from './models/BranchRequest';
22
26
  export type { BranchResponse } from './models/BranchResponse';
@@ -24,13 +28,19 @@ export type { BranchResponseMetadata } from './models/BranchResponseMetadata';
24
28
  export type { CacheTelemetry } from './models/CacheTelemetry';
25
29
  export { CalendarInterval } from './models/CalendarInterval';
26
30
  export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
31
+ export type { CategoryColorStringColumnVisualizationFormat } from './models/CategoryColorStringColumnVisualizationFormat';
27
32
  export type { Clickhouse } from './models/Clickhouse';
28
33
  export type { ClientError } from './models/ClientError';
29
- export type { ColumnFormat } from './models/ColumnFormat';
34
+ export type { ColorAssignment } from './models/ColorAssignment';
35
+ export type { ColumnExportFormat } from './models/ColumnExportFormat';
36
+ export type { ColumnVisualizationFormat } from './models/ColumnVisualizationFormat';
30
37
  export type { Commit } from './models/Commit';
31
38
  export type { CommitResponse } from './models/CommitResponse';
32
39
  export type { CommitResponseMetadata } from './models/CommitResponseMetadata';
33
40
  export type { Computation } from './models/Computation';
41
+ export type { ComputedGradientPoint } from './models/ComputedGradientPoint';
42
+ export type { ComputedLinkSource } from './models/ComputedLinkSource';
43
+ export type { ComputedProgressBar } from './models/ComputedProgressBar';
34
44
  export type { ComputedView } from './models/ComputedView';
35
45
  export type { CreateCommitRequest } from './models/CreateCommitRequest';
36
46
  export type { CreateCommitResponse } from './models/CreateCommitResponse';
@@ -49,16 +59,19 @@ export type { DataSourceResponse } from './models/DataSourceResponse';
49
59
  export { DatePart } from './models/DatePart';
50
60
  export type { DatePartGrouping } from './models/DatePartGrouping';
51
61
  export type { DatePropertyValue } from './models/DatePropertyValue';
52
- export type { DateTimeColumnFormat } from './models/DateTimeColumnFormat';
62
+ export type { DateTimeColumnExportFormat } from './models/DateTimeColumnExportFormat';
63
+ export type { DateTimeColumnVisualizationFormat } from './models/DateTimeColumnVisualizationFormat';
53
64
  export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
54
- export type { DecimalColumnFormat } from './models/DecimalColumnFormat';
65
+ export type { DecimalColumnExportFormat } from './models/DecimalColumnExportFormat';
66
+ export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
55
67
  export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
56
68
  export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
57
69
  export type { DeleteResourceChange } from './models/DeleteResourceChange';
58
70
  export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
59
71
  export type { DiffBranchResponse } from './models/DiffBranchResponse';
60
72
  export type { DoublePropertyValue } from './models/DoublePropertyValue';
61
- export type { DurationColumnFormat } from './models/DurationColumnFormat';
73
+ export type { DurationColumnExportFormat } from './models/DurationColumnExportFormat';
74
+ export type { DurationColumnVisualizationFormat } from './models/DurationColumnVisualizationFormat';
62
75
  export type { EmailConfiguration } from './models/EmailConfiguration';
63
76
  export type { Equal } from './models/Equal';
64
77
  export type { Equal1 } from './models/Equal1';
@@ -69,12 +82,15 @@ export type { ExportTargetConfiguration } from './models/ExportTargetConfigurati
69
82
  export type { Filter } from './models/Filter';
70
83
  export type { Folder } from './models/Folder';
71
84
  export type { FormulaProperty } from './models/FormulaProperty';
85
+ export type { GradientPoint } from './models/GradientPoint';
72
86
  export type { GreaterThan } from './models/GreaterThan';
73
87
  export type { GreaterThan1 } from './models/GreaterThan1';
74
88
  export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
75
89
  export type { GreaterThanOrEqual1 } from './models/GreaterThanOrEqual1';
76
90
  export type { Grouping } from './models/Grouping';
77
91
  export type { Having } from './models/Having';
92
+ export { ImageShape } from './models/ImageShape';
93
+ export type { ImageStringColumnVisualizationFormat } from './models/ImageStringColumnVisualizationFormat';
78
94
  export type { In } from './models/In';
79
95
  export type { In1 } from './models/In1';
80
96
  export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
@@ -98,6 +114,8 @@ export type { LessThan } from './models/LessThan';
98
114
  export type { LessThan1 } from './models/LessThan1';
99
115
  export type { LessThanOrEqual } from './models/LessThanOrEqual';
100
116
  export type { LessThanOrEqual1 } from './models/LessThanOrEqual1';
117
+ export type { LinkSource } from './models/LinkSource';
118
+ export type { LinkStringColumnVisualizationFormat } from './models/LinkStringColumnVisualizationFormat';
101
119
  export type { ListBranchContentResponse } from './models/ListBranchContentResponse';
102
120
  export type { ListBranchResponse } from './models/ListBranchResponse';
103
121
  export type { ListCommitResponse } from './models/ListCommitResponse';
@@ -117,6 +135,7 @@ export type { Not } from './models/Not';
117
135
  export type { Not1 } from './models/Not1';
118
136
  export type { Null } from './models/Null';
119
137
  export type { Null1 } from './models/Null1';
138
+ export type { NumberVisualizationOptions } from './models/NumberVisualizationOptions';
120
139
  export type { Or } from './models/Or';
121
140
  export type { Or1 } from './models/Or1';
122
141
  export type { PagingConfiguration } from './models/PagingConfiguration';
@@ -124,6 +143,7 @@ export type { Parameter } from './models/Parameter';
124
143
  export type { ParseQueryRequest } from './models/ParseQueryRequest';
125
144
  export type { PasswordAuthentication } from './models/PasswordAuthentication';
126
145
  export type { Postgres } from './models/Postgres';
146
+ export type { ProgressBar } from './models/ProgressBar';
127
147
  export type { Property } from './models/Property';
128
148
  export type { PropertySchema } from './models/PropertySchema';
129
149
  export { PropertyType } from './models/PropertyType';
@@ -153,9 +173,11 @@ export { SortDirection } from './models/SortDirection';
153
173
  export type { SourceProperty } from './models/SourceProperty';
154
174
  export type { SSHAuthentication } from './models/SSHAuthentication';
155
175
  export type { SSHTunnel } from './models/SSHTunnel';
176
+ export type { StringColumnVisualizationFormat } from './models/StringColumnVisualizationFormat';
156
177
  export type { StringContains } from './models/StringContains';
157
178
  export type { StringContains1 } from './models/StringContains1';
158
179
  export type { StringPropertyValue } from './models/StringPropertyValue';
180
+ export type { StringVisualizationOptions } from './models/StringVisualizationOptions';
159
181
  export type { TablePreviewRequest } from './models/TablePreviewRequest';
160
182
  export type { TableView } from './models/TableView';
161
183
  export type { Tenant } from './models/Tenant';
@@ -172,7 +194,12 @@ export { UnitOfMeasurement } from './models/UnitOfMeasurement';
172
194
  export type { UpdateResourceChange } from './models/UpdateResourceChange';
173
195
  export type { UpdateResourceDiff } from './models/UpdateResourceDiff';
174
196
  export type { UUID } from './models/UUID';
197
+ export type { ValueGradientPoint } from './models/ValueGradientPoint';
175
198
  export type { ValueGrouping } from './models/ValueGrouping';
199
+ export type { ValueLinkSource } from './models/ValueLinkSource';
200
+ export type { ValueProgressBar } from './models/ValueProgressBar';
201
+ export type { VariableGradientPoint } from './models/VariableGradientPoint';
202
+ export type { VariableProgressBar } from './models/VariableProgressBar';
176
203
  export type { VendorPrivateKeyAuthentication } from './models/VendorPrivateKeyAuthentication';
177
204
  export type { VersionedViewRequest } from './models/VersionedViewRequest';
178
205
  export type { View } from './models/View';
@@ -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
+ }
@@ -0,0 +1,14 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Alignment } from './Alignment';
6
+ import type { BooleanVisualizationOptions } from './BooleanVisualizationOptions';
7
+
8
+ export type BooleanColumnVisualizationFormat = {
9
+ alignment: Alignment;
10
+ '@type': 'boolean';
11
+ trueFormat: BooleanVisualizationOptions;
12
+ falseFormat: BooleanVisualizationOptions;
13
+ };
14
+
@@ -0,0 +1,8 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export enum BooleanDisplayIcon {
6
+ TICK = 'TICK',
7
+ CROSS = 'CROSS',
8
+ }
@@ -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
+
@@ -4,6 +4,7 @@
4
4
 
5
5
  export enum CalendarInterval {
6
6
  YEAR = 'year',
7
+ QUARTER = 'quarter',
7
8
  MONTH = 'month',
8
9
  WEEK = 'week',
9
10
  DAY = 'day',
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { ColorAssignment } from './ColorAssignment';
6
+
7
+ export type CategoryColorStringColumnVisualizationFormat = {
8
+ '@type': 'category';
9
+ colorAssignments: Record<string, string>;
10
+ addedCategories: Array<ColorAssignment>;
11
+ };
12
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ColorAssignment = {
6
+ colorHex: string;
7
+ name: string;
8
+ };
9
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { DateTimeColumnExportFormat } from './DateTimeColumnExportFormat';
6
+ import type { DecimalColumnExportFormat } from './DecimalColumnExportFormat';
7
+ import type { DurationColumnExportFormat } from './DurationColumnExportFormat';
8
+
9
+ export type ColumnExportFormat = (DateTimeColumnExportFormat | DecimalColumnExportFormat | DurationColumnExportFormat);
10
+
@@ -0,0 +1,15 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Alignment } from './Alignment';
6
+ import type { BooleanColumnVisualizationFormat } from './BooleanColumnVisualizationFormat';
7
+ import type { DateTimeColumnVisualizationFormat } from './DateTimeColumnVisualizationFormat';
8
+ import type { DecimalColumnVisualizationFormat } from './DecimalColumnVisualizationFormat';
9
+ import type { DurationColumnVisualizationFormat } from './DurationColumnVisualizationFormat';
10
+ import type { StringColumnVisualizationFormat } from './StringColumnVisualizationFormat';
11
+
12
+ export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnVisualizationFormat | StringColumnVisualizationFormat | {
13
+ alignment: Alignment;
14
+ });
15
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ComputedGradientPoint = {
6
+ hexColor: string;
7
+ '@type': 'computed';
8
+ propertyId: string;
9
+ };
10
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ComputedLinkSource = {
6
+ '@type': 'computed';
7
+ propertyId: string;
8
+ };
9
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ComputedProgressBar = {
6
+ '@type': 'computed';
7
+ propertyId: string;
8
+ };
9
+
@@ -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
+
@@ -4,12 +4,12 @@
4
4
 
5
5
  import type { UnitOfMeasurement } from './UnitOfMeasurement';
6
6
 
7
- export type DecimalColumnFormat = {
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,19 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Alignment } from './Alignment';
6
+ import type { NumberVisualizationOptions } from './NumberVisualizationOptions';
7
+ import type { UnitOfMeasurement } from './UnitOfMeasurement';
8
+
9
+ export type DecimalColumnVisualizationFormat = {
10
+ decimalFormat: string | null;
11
+ locale: string | null;
12
+ unitOfMeasurement?: UnitOfMeasurement;
13
+ zeroReplacement: string | null;
14
+ multiplier: number | null;
15
+ alignment: Alignment;
16
+ '@type': 'decimal';
17
+ visualizationOptions: NumberVisualizationOptions | null;
18
+ };
19
+
@@ -2,8 +2,8 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- export type DurationColumnFormat = {
6
- '@type': 'duration';
5
+ export type DurationColumnExportFormat = {
7
6
  durationPattern: string | null;
7
+ '@type': 'duration';
8
8
  };
9
9
 
@@ -0,0 +1,12 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Alignment } from './Alignment';
6
+
7
+ export type DurationColumnVisualizationFormat = {
8
+ durationPattern: string | null;
9
+ alignment: Alignment;
10
+ '@type': 'duration';
11
+ };
12
+
@@ -2,11 +2,11 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
- import type { ColumnFormat } from './ColumnFormat';
5
+ import type { ColumnExportFormat } from './ColumnExportFormat';
6
6
 
7
7
  export type ExportColumnOptions = {
8
8
  targetPropertyId: string;
9
9
  displayName: string | null;
10
- columnFormat: ColumnFormat | null;
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,8 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export enum ImageShape {
6
+ CIRCLE = 'CIRCLE',
7
+ RECTANGLE = 'RECTANGLE',
8
+ }
@@ -0,0 +1,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { ImageShape } from './ImageShape';
6
+
7
+ export type ImageStringColumnVisualizationFormat = {
8
+ '@type': 'image';
9
+ shape: ImageShape;
10
+ };
11
+
@@ -0,0 +1,9 @@
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
+
@@ -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 LinkStringColumnVisualizationFormat = {
8
+ '@type': 'link';
9
+ colorHex: 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
+
@@ -7,7 +7,6 @@ import type { Folder } from './Folder';
7
7
  import type { TableView } from './TableView';
8
8
 
9
9
  export type Resource = (ComputedView | TableView | Folder | {
10
- '@type': string;
11
10
  name: string;
12
11
  path: string | null;
13
12
  description: string | null;
@@ -0,0 +1,13 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { Alignment } from './Alignment';
6
+ import type { StringVisualizationOptions } from './StringVisualizationOptions';
7
+
8
+ export type StringColumnVisualizationFormat = {
9
+ alignment: Alignment;
10
+ '@type': 'string';
11
+ visualizationOptions: StringVisualizationOptions | null;
12
+ };
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
+
@@ -4,4 +4,5 @@
4
4
 
5
5
  export enum UnitOfMeasurement {
6
6
  CURRENCY = 'CURRENCY',
7
+ PERCENT = 'PERCENT',
7
8
  }
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ValueGradientPoint = {
6
+ hexColor: string;
7
+ '@type': 'value';
8
+ value: number;
9
+ };
10
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ValueLinkSource = {
6
+ '@type': 'value';
7
+ value: string;
8
+ };
9
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ValueProgressBar = {
6
+ '@type': 'value';
7
+ value: number;
8
+ };
9
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type VariableGradientPoint = {
6
+ hexColor: string;
7
+ '@type': 'variable';
8
+ variable: string;
9
+ };
10
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type VariableProgressBar = {
6
+ '@type': 'variable';
7
+ variable: string;
8
+ };
9
+
package/models/View.ts CHANGED
@@ -10,7 +10,6 @@ export type View = {
10
10
  description: string | null;
11
11
  readonly id?: string | null;
12
12
  readonly versionId?: string | null;
13
- '@type': string;
14
13
  columnDefinitions: Array<PropertySchema>;
15
14
  readonly namespaceId?: string | null;
16
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.14.0",
5
+ "version": "3.15.0-jordan-testing",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"
@@ -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
-