@explo-tech/fido-api 5.4.1 → 5.5.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 -0
- package/models/DataSourceConfiguration.ts +2 -1
- package/models/Supabase.ts +15 -0
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -194,6 +194,7 @@ export type { StringContains } from './models/StringContains';
|
|
|
194
194
|
export type { StringContains1 } from './models/StringContains1';
|
|
195
195
|
export type { StringPropertyValue } from './models/StringPropertyValue';
|
|
196
196
|
export type { StringVisualizationOptions } from './models/StringVisualizationOptions';
|
|
197
|
+
export type { Supabase } from './models/Supabase';
|
|
197
198
|
export type { TablePreviewRequest } from './models/TablePreviewRequest';
|
|
198
199
|
export type { TableView } from './models/TableView';
|
|
199
200
|
export type { TableVisualizationSettings } from './models/TableVisualizationSettings';
|
|
@@ -12,9 +12,10 @@ import type { MySql } from './MySql';
|
|
|
12
12
|
import type { Postgres } from './Postgres';
|
|
13
13
|
import type { Redshift } from './Redshift';
|
|
14
14
|
import type { Snowflake } from './Snowflake';
|
|
15
|
+
import type { Supabase } from './Supabase';
|
|
15
16
|
import type { Tunnel } from './Tunnel';
|
|
16
17
|
|
|
17
|
-
export type DataSourceConfiguration = (Postgres | MySql | MSS | BigQuery | Redshift | Snowflake | Clickhouse | Athena | Databricks | MotherDuck | {
|
|
18
|
+
export type DataSourceConfiguration = (Postgres | MySql | MSS | BigQuery | Redshift | Snowflake | Clickhouse | Athena | Databricks | MotherDuck | Supabase | {
|
|
18
19
|
tunnel: Tunnel;
|
|
19
20
|
});
|
|
20
21
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/* istanbul ignore file */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { JdbcAuthentication } from './JdbcAuthentication';
|
|
6
|
+
import type { Tunnel } from './Tunnel';
|
|
7
|
+
|
|
8
|
+
export type Supabase = {
|
|
9
|
+
tunnel: Tunnel;
|
|
10
|
+
authentication: JdbcAuthentication;
|
|
11
|
+
database: string;
|
|
12
|
+
host: string;
|
|
13
|
+
port?: number;
|
|
14
|
+
};
|
|
15
|
+
|
package/package.json
CHANGED