@explo-tech/fido-api 5.1.0 → 5.2.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
|
@@ -134,6 +134,8 @@ 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';
|
|
137
139
|
export type { MSS } from './models/MSS';
|
|
138
140
|
export type { MySql } from './models/MySql';
|
|
139
141
|
export type { Namespace } from './models/Namespace';
|
|
@@ -6,6 +6,7 @@ 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';
|
|
9
10
|
import type { MSS } from './MSS';
|
|
10
11
|
import type { MySql } from './MySql';
|
|
11
12
|
import type { Postgres } from './Postgres';
|
|
@@ -13,7 +14,7 @@ import type { Redshift } from './Redshift';
|
|
|
13
14
|
import type { Snowflake } from './Snowflake';
|
|
14
15
|
import type { Tunnel } from './Tunnel';
|
|
15
16
|
|
|
16
|
-
export type DataSourceConfiguration = (Postgres | MySql | MSS | BigQuery | Redshift | Snowflake | Clickhouse | Athena | Databricks | {
|
|
17
|
+
export type DataSourceConfiguration = (Postgres | MySql | MSS | BigQuery | Redshift | Snowflake | Clickhouse | Athena | Databricks | MotherDuck | {
|
|
17
18
|
tunnel: Tunnel;
|
|
18
19
|
});
|
|
19
20
|
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
|