@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 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,10 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type DateTimeColumnFormat = {
6
+ '@type': 'datetime';
7
+ dateTimeFormatPattern: string | null;
8
+ locale: string | null;
9
+ };
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
+
@@ -0,0 +1,9 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export type DurationColumnFormat = {
6
+ '@type': 'duration';
7
+ durationPattern: string;
8
+ };
9
+
@@ -2,8 +2,11 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
 
5
+ import type { ColumnFormat } from './ColumnFormat';
6
+
5
7
  export type ExportColumnOptions = {
6
8
  targetPropertyId: string;
7
9
  displayName: string | null;
10
+ columnFormat: ColumnFormat | null;
8
11
  };
9
12
 
@@ -0,0 +1,7 @@
1
+ /* istanbul ignore file */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ export enum UnitOfMeasurement {
6
+ CURRENCY = 'CURRENCY',
7
+ }
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": "2.9.6",
5
+ "version": "2.9.8-dan-fix-int-tests.1",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/trust-kaz/fido"