@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 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 { ColumnFormat } from './models/ColumnFormat';
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 { DecimalColumnFormat } from './models/DecimalColumnFormat';
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 { DurationColumnFormat } from './models/DurationColumnFormat';
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,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
+
@@ -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
+
@@ -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 ComputedProgressBar = {
6
+ '@type': 'computed';
7
+ propertyId: string;
8
+ };
9
+
@@ -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,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
+
@@ -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
+ 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 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.17.4",
5
+ "version": "3.17.5-lawrence-array-func-tests.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
-