@explo-tech/fido-api 5.1.0-jordan-motherduck-api.1 → 5.1.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
CHANGED
|
@@ -134,8 +134,6 @@ export type { ListVersionedViewsRequest } from './models/ListVersionedViewsReque
|
|
|
134
134
|
export type { ListViewsRequest } from './models/ListViewsRequest';
|
|
135
135
|
export type { ListViewsResponse } from './models/ListViewsResponse';
|
|
136
136
|
export type { MergeBranchRequest } from './models/MergeBranchRequest';
|
|
137
|
-
export type { MotherDuck } from './models/MotherDuck';
|
|
138
|
-
export type { MotherDuckAuthentication } from './models/MotherDuckAuthentication';
|
|
139
137
|
export type { MSS } from './models/MSS';
|
|
140
138
|
export type { MySql } from './models/MySql';
|
|
141
139
|
export type { Namespace } from './models/Namespace';
|
|
@@ -6,7 +6,6 @@ import type { Athena } from './Athena';
|
|
|
6
6
|
import type { BigQuery } from './BigQuery';
|
|
7
7
|
import type { Clickhouse } from './Clickhouse';
|
|
8
8
|
import type { Databricks } from './Databricks';
|
|
9
|
-
import type { MotherDuck } from './MotherDuck';
|
|
10
9
|
import type { MSS } from './MSS';
|
|
11
10
|
import type { MySql } from './MySql';
|
|
12
11
|
import type { Postgres } from './Postgres';
|
|
@@ -14,7 +13,7 @@ import type { Redshift } from './Redshift';
|
|
|
14
13
|
import type { Snowflake } from './Snowflake';
|
|
15
14
|
import type { Tunnel } from './Tunnel';
|
|
16
15
|
|
|
17
|
-
export type DataSourceConfiguration = (Postgres | MySql | MSS | BigQuery | Redshift | Snowflake | Clickhouse | Athena | Databricks |
|
|
16
|
+
export type DataSourceConfiguration = (Postgres | MySql | MSS | BigQuery | Redshift | Snowflake | Clickhouse | Athena | Databricks | {
|
|
18
17
|
tunnel: Tunnel;
|
|
19
18
|
});
|
|
20
19
|
|
package/package.json
CHANGED
package/models/MotherDuck.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/* istanbul ignore file */
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
|
|
5
|
-
import type { MotherDuckAuthentication } from './MotherDuckAuthentication';
|
|
6
|
-
import type { Tunnel } from './Tunnel';
|
|
7
|
-
|
|
8
|
-
export type MotherDuck = {
|
|
9
|
-
tunnel: Tunnel;
|
|
10
|
-
'@type': 'motherduck';
|
|
11
|
-
authentication: MotherDuckAuthentication;
|
|
12
|
-
database: string;
|
|
13
|
-
};
|
|
14
|
-
|