@explo-tech/fido-api 3.13.2 → 3.13.3-jordan-boolean-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 CHANGED
@@ -13,7 +13,10 @@ export type { And } from './models/And';
13
13
  export type { And1 } from './models/And1';
14
14
  export type { BigQuery } from './models/BigQuery';
15
15
  export type { BigQueryAuthentication } from './models/BigQueryAuthentication';
16
+ export type { BooleanColumnFormat } from './models/BooleanColumnFormat';
17
+ export { BooleanDisplayIcon } from './models/BooleanDisplayIcon';
16
18
  export type { BooleanPropertyValue } from './models/BooleanPropertyValue';
19
+ export type { BooleanVisualizationOptions } from './models/BooleanVisualizationOptions';
17
20
  export type { Branch } from './models/Branch';
18
21
  export type { BranchRequest } from './models/BranchRequest';
19
22
  export type { BranchResponse } from './models/BranchResponse';
@@ -23,11 +26,14 @@ export { CalendarInterval } from './models/CalendarInterval';
23
26
  export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
24
27
  export type { Clickhouse } from './models/Clickhouse';
25
28
  export type { ClientError } from './models/ClientError';
26
- export type { ColumnFormat } from './models/ColumnFormat';
29
+ export type { ColumnExportFormat } from './models/ColumnExportFormat';
30
+ export type { ColumnVisualizationFormat } from './models/ColumnVisualizationFormat';
27
31
  export type { Commit } from './models/Commit';
28
32
  export type { CommitResponse } from './models/CommitResponse';
29
33
  export type { CommitResponseMetadata } from './models/CommitResponseMetadata';
30
34
  export type { Computation } from './models/Computation';
35
+ export type { ComputedGradientPoint } from './models/ComputedGradientPoint';
36
+ export type { ComputedProgressBar } from './models/ComputedProgressBar';
31
37
  export type { ComputedView } from './models/ComputedView';
32
38
  export type { CreateCommitRequest } from './models/CreateCommitRequest';
33
39
  export type { CreateCommitResponse } from './models/CreateCommitResponse';
@@ -46,16 +52,19 @@ export type { DataSourceResponse } from './models/DataSourceResponse';
46
52
  export { DatePart } from './models/DatePart';
47
53
  export type { DatePartGrouping } from './models/DatePartGrouping';
48
54
  export type { DatePropertyValue } from './models/DatePropertyValue';
49
- export type { DateTimeColumnFormat } from './models/DateTimeColumnFormat';
55
+ export type { DateTimeColumnExportFormat } from './models/DateTimeColumnExportFormat';
56
+ export type { DateTimeColumnVisualizationFormat } from './models/DateTimeColumnVisualizationFormat';
50
57
  export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
51
- export type { DecimalColumnFormat } from './models/DecimalColumnFormat';
58
+ export type { DecimalColumnExportFormat } from './models/DecimalColumnExportFormat';
59
+ export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
52
60
  export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
53
61
  export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
54
62
  export type { DeleteResourceChange } from './models/DeleteResourceChange';
55
63
  export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
56
64
  export type { DiffBranchResponse } from './models/DiffBranchResponse';
57
65
  export type { DoublePropertyValue } from './models/DoublePropertyValue';
58
- export type { DurationColumnFormat } from './models/DurationColumnFormat';
66
+ export type { DurationColumnExportFormat } from './models/DurationColumnExportFormat';
67
+ export type { DurationColumnVisualizationFormat } from './models/DurationColumnVisualizationFormat';
59
68
  export type { EmailConfiguration } from './models/EmailConfiguration';
60
69
  export type { Equal } from './models/Equal';
61
70
  export type { Equal1 } from './models/Equal1';
@@ -66,6 +75,7 @@ export type { ExportTargetConfiguration } from './models/ExportTargetConfigurati
66
75
  export type { Filter } from './models/Filter';
67
76
  export type { Folder } from './models/Folder';
68
77
  export type { FormulaProperty } from './models/FormulaProperty';
78
+ export type { GradientPoint } from './models/GradientPoint';
69
79
  export type { GreaterThan } from './models/GreaterThan';
70
80
  export type { GreaterThan1 } from './models/GreaterThan1';
71
81
  export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
@@ -114,6 +124,7 @@ export type { Not } from './models/Not';
114
124
  export type { Not1 } from './models/Not1';
115
125
  export type { Null } from './models/Null';
116
126
  export type { Null1 } from './models/Null1';
127
+ export type { NumberVisualizationOptions } from './models/NumberVisualizationOptions';
117
128
  export type { Or } from './models/Or';
118
129
  export type { Or1 } from './models/Or1';
119
130
  export type { PagingConfiguration } from './models/PagingConfiguration';
@@ -121,6 +132,7 @@ export type { Parameter } from './models/Parameter';
121
132
  export type { ParseQueryRequest } from './models/ParseQueryRequest';
122
133
  export type { PasswordAuthentication } from './models/PasswordAuthentication';
123
134
  export type { Postgres } from './models/Postgres';
135
+ export type { ProgressBar } from './models/ProgressBar';
124
136
  export type { Property } from './models/Property';
125
137
  export type { PropertySchema } from './models/PropertySchema';
126
138
  export { PropertyType } from './models/PropertyType';
@@ -169,7 +181,9 @@ export { UnitOfMeasurement } from './models/UnitOfMeasurement';
169
181
  export type { UpdateResourceChange } from './models/UpdateResourceChange';
170
182
  export type { UpdateResourceDiff } from './models/UpdateResourceDiff';
171
183
  export type { UUID } from './models/UUID';
184
+ export type { ValueGradientPoint } from './models/ValueGradientPoint';
172
185
  export type { ValueGrouping } from './models/ValueGrouping';
186
+ export type { ValueProgressBar } from './models/ValueProgressBar';
173
187
  export type { VendorPrivateKeyAuthentication } from './models/VendorPrivateKeyAuthentication';
174
188
  export type { VersionedViewRequest } from './models/VersionedViewRequest';
175
189
  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,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
+ color: string | null;
9
+ backgroundColor: 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 { 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,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { BooleanColumnFormat } from './BooleanColumnFormat';
6
+ import type { DateTimeColumnVisualizationFormat } from './DateTimeColumnVisualizationFormat';
7
+ import type { DecimalColumnVisualizationFormat } from './DecimalColumnVisualizationFormat';
8
+ import type { DurationColumnVisualizationFormat } from './DurationColumnVisualizationFormat';
9
+
10
+ export type ColumnVisualizationFormat = (DateTimeColumnVisualizationFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnFormat);
11
+
@@ -0,0 +1,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type ComputedGradientPoint = {
6
+ color: 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 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,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type DateTimeColumnVisualizationFormat = {
6
+ pattern?: string | null;
7
+ locale: string | null;
8
+ targetTimezone?: string;
9
+ '@type': 'datetime';
10
+ };
11
+
@@ -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,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
+
@@ -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 { 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 { 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,11 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { ComputedGradientPoint } from './ComputedGradientPoint';
6
+ import type { ValueGradientPoint } from './ValueGradientPoint';
7
+
8
+ export type GradientPoint = (ValueGradientPoint | ComputedGradientPoint | {
9
+ color: string;
10
+ });
11
+
@@ -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,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import type { ComputedProgressBar } from './ComputedProgressBar';
6
+ import type { ValueProgressBar } from './ValueProgressBar';
7
+
8
+ export type ProgressBar = (ValueProgressBar | ComputedProgressBar);
9
+
@@ -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;
@@ -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
+ color: 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 ValueProgressBar = {
6
+ '@type': 'value';
7
+ value: number;
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.13.2",
5
+ "version": "3.13.3-jordan-boolean-types.1",
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
-