@explo-tech/fido-api 3.17.5 → 3.17.6

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
@@ -27,8 +27,10 @@ export type { BranchResponseMetadata } from './models/BranchResponseMetadata';
27
27
  export type { CacheTelemetry } from './models/CacheTelemetry';
28
28
  export { CalendarInterval } from './models/CalendarInterval';
29
29
  export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
30
+ export type { CategoryColorStringFormat } from './models/CategoryColorStringFormat';
30
31
  export type { Clickhouse } from './models/Clickhouse';
31
32
  export type { ClientError } from './models/ClientError';
33
+ export type { ColorAssignment } from './models/ColorAssignment';
32
34
  export type { ColumnExportFormat } from './models/ColumnExportFormat';
33
35
  export type { ColumnVisualizationFormat } from './models/ColumnVisualizationFormat';
34
36
  export type { Commit } from './models/Commit';
@@ -36,6 +38,7 @@ export type { CommitResponse } from './models/CommitResponse';
36
38
  export type { CommitResponseMetadata } from './models/CommitResponseMetadata';
37
39
  export type { Computation } from './models/Computation';
38
40
  export type { ComputedGradientPoint } from './models/ComputedGradientPoint';
41
+ export type { ComputedLinkSource } from './models/ComputedLinkSource';
39
42
  export type { ComputedProgressBar } from './models/ComputedProgressBar';
40
43
  export type { ComputedView } from './models/ComputedView';
41
44
  export type { CreateCommitRequest } from './models/CreateCommitRequest';
@@ -61,6 +64,7 @@ export type { DecimalColumnExportFormat } from './models/DecimalColumnExportForm
61
64
  export type { DecimalColumnVisualizationFormat } from './models/DecimalColumnVisualizationFormat';
62
65
  export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
63
66
  export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
67
+ export type { DefaultStringFormat } from './models/DefaultStringFormat';
64
68
  export type { DeleteResourceChange } from './models/DeleteResourceChange';
65
69
  export type { DeleteResourceDiff } from './models/DeleteResourceDiff';
66
70
  export type { DiffBranchResponse } from './models/DiffBranchResponse';
@@ -84,6 +88,8 @@ export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
84
88
  export type { GreaterThanOrEqual1 } from './models/GreaterThanOrEqual1';
85
89
  export type { Grouping } from './models/Grouping';
86
90
  export type { Having } from './models/Having';
91
+ export { ImageShape } from './models/ImageShape';
92
+ export type { ImageStringFormat } from './models/ImageStringFormat';
87
93
  export type { In } from './models/In';
88
94
  export type { In1 } from './models/In1';
89
95
  export type { IntegerIntervalGrouping } from './models/IntegerIntervalGrouping';
@@ -107,6 +113,8 @@ export type { LessThan } from './models/LessThan';
107
113
  export type { LessThan1 } from './models/LessThan1';
108
114
  export type { LessThanOrEqual } from './models/LessThanOrEqual';
109
115
  export type { LessThanOrEqual1 } from './models/LessThanOrEqual1';
116
+ export type { LinkSource } from './models/LinkSource';
117
+ export type { LinkStringFormat } from './models/LinkStringFormat';
110
118
  export type { ListBranchContentResponse } from './models/ListBranchContentResponse';
111
119
  export type { ListBranchResponse } from './models/ListBranchResponse';
112
120
  export type { ListCommitResponse } from './models/ListCommitResponse';
@@ -164,6 +172,7 @@ export { SortDirection } from './models/SortDirection';
164
172
  export type { SourceProperty } from './models/SourceProperty';
165
173
  export type { SSHAuthentication } from './models/SSHAuthentication';
166
174
  export type { SSHTunnel } from './models/SSHTunnel';
175
+ export type { StringColumnFormat } from './models/StringColumnFormat';
167
176
  export type { StringContains } from './models/StringContains';
168
177
  export type { StringContains1 } from './models/StringContains1';
169
178
  export type { StringPropertyValue } from './models/StringPropertyValue';
@@ -185,6 +194,7 @@ export type { UpdateResourceDiff } from './models/UpdateResourceDiff';
185
194
  export type { UUID } from './models/UUID';
186
195
  export type { ValueGradientPoint } from './models/ValueGradientPoint';
187
196
  export type { ValueGrouping } from './models/ValueGrouping';
197
+ export type { ValueLinkSource } from './models/ValueLinkSource';
188
198
  export type { ValueProgressBar } from './models/ValueProgressBar';
189
199
  export type { VariableGradientPoint } from './models/VariableGradientPoint';
190
200
  export type { VariableProgressBar } from './models/VariableProgressBar';
@@ -5,7 +5,7 @@
5
5
  import type { BooleanVisualizationOptions } from './BooleanVisualizationOptions';
6
6
 
7
7
  export type BooleanColumnFormat = {
8
- '@type': 'BooleanColumnFormat';
8
+ '@type': 'boolean';
9
9
  trueFormat: BooleanVisualizationOptions;
10
10
  falseFormat: BooleanVisualizationOptions;
11
11
  };
@@ -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 CategoryColorStringFormat = {
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
+
@@ -5,7 +5,8 @@
5
5
  import type { BooleanColumnFormat } from './BooleanColumnFormat';
6
6
  import type { DateTimeColumnFormat } from './DateTimeColumnFormat';
7
7
  import type { DecimalColumnVisualizationFormat } from './DecimalColumnVisualizationFormat';
8
+ import type { DefaultStringFormat } from './DefaultStringFormat';
8
9
  import type { DurationColumnVisualizationFormat } from './DurationColumnVisualizationFormat';
9
10
 
10
- export type ColumnVisualizationFormat = (DateTimeColumnFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnFormat);
11
+ export type ColumnVisualizationFormat = (DateTimeColumnFormat | DecimalColumnVisualizationFormat | DurationColumnVisualizationFormat | BooleanColumnFormat | DefaultStringFormat);
11
12
 
@@ -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,8 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type DefaultStringFormat = {
6
+ '@type': 'string';
7
+ };
8
+
@@ -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 ImageStringFormat = {
8
+ '@type': 'image';
9
+ shape: ImageShape;
10
+ };
11
+
@@ -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,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
+
@@ -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
+
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.5",
5
+ "version": "3.17.6",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"