@explo-tech/fido-api 2.9.6 → 2.9.8-dan-fix-int-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 +5 -0
- package/models/ColumnFormat.ts +10 -0
- package/models/DateTimeColumnFormat.ts +10 -0
- package/models/DecimalColumnFormat.ts +14 -0
- package/models/DurationColumnFormat.ts +9 -0
- package/models/ExportColumnOptions.ts +3 -0
- package/models/UnitOfMeasurement.ts +7 -0
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -21,6 +21,7 @@ export type { CacheTelemetry } from './models/CacheTelemetry';
|
|
|
21
21
|
export { CalendarInterval } from './models/CalendarInterval';
|
|
22
22
|
export type { CalendarIntervalGrouping } from './models/CalendarIntervalGrouping';
|
|
23
23
|
export type { ClientError } from './models/ClientError';
|
|
24
|
+
export type { ColumnFormat } from './models/ColumnFormat';
|
|
24
25
|
export type { Commit } from './models/Commit';
|
|
25
26
|
export type { CommitResponse } from './models/CommitResponse';
|
|
26
27
|
export type { Computation } from './models/Computation';
|
|
@@ -42,13 +43,16 @@ export type { DataSourceResponse } from './models/DataSourceResponse';
|
|
|
42
43
|
export { DatePart } from './models/DatePart';
|
|
43
44
|
export type { DatePartGrouping } from './models/DatePartGrouping';
|
|
44
45
|
export type { DatePropertyValue } from './models/DatePropertyValue';
|
|
46
|
+
export type { DateTimeColumnFormat } from './models/DateTimeColumnFormat';
|
|
45
47
|
export type { DateTimePropertyValue } from './models/DateTimePropertyValue';
|
|
48
|
+
export type { DecimalColumnFormat } from './models/DecimalColumnFormat';
|
|
46
49
|
export type { DecimalIntervalGrouping } from './models/DecimalIntervalGrouping';
|
|
47
50
|
export type { DecimalPropertyValue } from './models/DecimalPropertyValue';
|
|
48
51
|
export type { DeleteViewChange } from './models/DeleteViewChange';
|
|
49
52
|
export type { DeleteViewDiff } from './models/DeleteViewDiff';
|
|
50
53
|
export type { DiffBranchResponse } from './models/DiffBranchResponse';
|
|
51
54
|
export type { DoublePropertyValue } from './models/DoublePropertyValue';
|
|
55
|
+
export type { DurationColumnFormat } from './models/DurationColumnFormat';
|
|
52
56
|
export type { EmailConfiguration } from './models/EmailConfiguration';
|
|
53
57
|
export type { Equal } from './models/Equal';
|
|
54
58
|
export type { Equal1 } from './models/Equal1';
|
|
@@ -147,6 +151,7 @@ export type { TestConnectionRequest } from './models/TestConnectionRequest';
|
|
|
147
151
|
export type { TestConnectionResponse } from './models/TestConnectionResponse';
|
|
148
152
|
export type { TtlEviction } from './models/TtlEviction';
|
|
149
153
|
export type { Tunnel } from './models/Tunnel';
|
|
154
|
+
export { UnitOfMeasurement } from './models/UnitOfMeasurement';
|
|
150
155
|
export type { UpdateViewChange } from './models/UpdateViewChange';
|
|
151
156
|
export type { UpdateViewDiff } from './models/UpdateViewDiff';
|
|
152
157
|
export type { UUID } from './models/UUID';
|
|
@@ -0,0 +1,10 @@
|
|
|
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
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { UnitOfMeasurement } from './UnitOfMeasurement';
|
|
6
|
+
|
|
7
|
+
export type DecimalColumnFormat = {
|
|
8
|
+
'@type': 'decimal';
|
|
9
|
+
decimalFormat: string | null;
|
|
10
|
+
locale: string | null;
|
|
11
|
+
unitOfMeasurement: UnitOfMeasurement;
|
|
12
|
+
multiplier: number | null;
|
|
13
|
+
};
|
|
14
|
+
|
package/package.json
CHANGED