@explo-tech/fido-api 1.9.0-jordan-snowflake-impl.1 → 1.9.0
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 +1 -3
- package/models/DataSourceConfiguration.ts +1 -3
- package/models/FormulaProperty.ts +10 -0
- package/models/Property.ts +2 -1
- package/models/Redshift.ts +1 -1
- package/package.json +1 -1
- package/models/Snowflake.ts +0 -16
- package/models/SnowflakeAuthentication.ts +0 -8
- package/models/SnowflakePasswordAuthentication.ts +0 -8
package/index.ts
CHANGED
|
@@ -40,6 +40,7 @@ export type { Equal } from './models/Equal';
|
|
|
40
40
|
export { ExportFormat } from './models/ExportFormat';
|
|
41
41
|
export type { ExportTargetConfiguration } from './models/ExportTargetConfiguration';
|
|
42
42
|
export type { Filter } from './models/Filter';
|
|
43
|
+
export type { FormulaProperty } from './models/FormulaProperty';
|
|
43
44
|
export type { GreaterThan } from './models/GreaterThan';
|
|
44
45
|
export type { GreaterThanOrEqual } from './models/GreaterThanOrEqual';
|
|
45
46
|
export type { Grouping } from './models/Grouping';
|
|
@@ -86,9 +87,6 @@ export type { QueryPreviewRequest } from './models/QueryPreviewRequest';
|
|
|
86
87
|
export type { QueryTimeoutError } from './models/QueryTimeoutError';
|
|
87
88
|
export type { Redshift } from './models/Redshift';
|
|
88
89
|
export type { RequestTelemetry } from './models/RequestTelemetry';
|
|
89
|
-
export type { Snowflake } from './models/Snowflake';
|
|
90
|
-
export type { SnowflakeAuthentication } from './models/SnowflakeAuthentication';
|
|
91
|
-
export type { SnowflakePasswordAuthentication } from './models/SnowflakePasswordAuthentication';
|
|
92
90
|
export type { Sort } from './models/Sort';
|
|
93
91
|
export { SortDirection } from './models/SortDirection';
|
|
94
92
|
export type { SourceProperty } from './models/SourceProperty';
|
|
@@ -6,11 +6,9 @@ import type { BigQuery } from './BigQuery';
|
|
|
6
6
|
import type { MSS } from './MSS';
|
|
7
7
|
import type { MySql } from './MySql';
|
|
8
8
|
import type { Postgres } from './Postgres';
|
|
9
|
-
import type { Redshift } from './Redshift';
|
|
10
|
-
import type { Snowflake } from './Snowflake';
|
|
11
9
|
import type { Tunnel } from './Tunnel';
|
|
12
10
|
|
|
13
|
-
export type DataSourceConfiguration = (Postgres | MySql | MSS | BigQuery |
|
|
11
|
+
export type DataSourceConfiguration = (Postgres | MySql | MSS | BigQuery | {
|
|
14
12
|
tunnel: Tunnel;
|
|
15
13
|
});
|
|
16
14
|
|
package/models/Property.ts
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
5
|
import type { AggregateProperty } from './AggregateProperty';
|
|
6
|
+
import type { FormulaProperty } from './FormulaProperty';
|
|
6
7
|
import type { SourceProperty } from './SourceProperty';
|
|
7
8
|
|
|
8
|
-
export type Property = (AggregateProperty | SourceProperty);
|
|
9
|
+
export type Property = (AggregateProperty | SourceProperty | FormulaProperty);
|
|
9
10
|
|
package/models/Redshift.ts
CHANGED
package/package.json
CHANGED
package/models/Snowflake.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { SnowflakeAuthentication } from './SnowflakeAuthentication';
|
|
6
|
-
import type { Tunnel } from './Tunnel';
|
|
7
|
-
|
|
8
|
-
export type Snowflake = {
|
|
9
|
-
tunnel: Tunnel;
|
|
10
|
-
'@type': 'Snowflake';
|
|
11
|
-
user: string;
|
|
12
|
-
account: string;
|
|
13
|
-
database: string;
|
|
14
|
-
authentication: SnowflakeAuthentication;
|
|
15
|
-
};
|
|
16
|
-
|