File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @beekeeperstudio/plugin" ,
3- "version" : " 1.4.0-beta.5 " ,
3+ "version" : " 1.4.0-beta.6 " ,
44 "description" : " A simple TypeScript wrapper to send messages from your Beekeeper Studio plugin to the main app." ,
55 "main" : " dist/index.js" ,
66 "types" : " dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -40,8 +40,14 @@ export interface GetConnectionInfoResponse extends BaseResponse {
4040 result : {
4141 /** @deprecated Use `databaseType` instead */
4242 connectionType : string ;
43+ /** The ID of the connection */
44+ id : number ;
45+ /** The name of the connection specified in the connection form */
46+ workspaceId : number ;
47+ /** The name of the connection specified in the connection form */
48+ connectionName : string ;
4349 databaseType : 'postgresql' | 'mysql' | 'mariadb' | 'sqlite' | 'sqlserver' | 'oracle' | 'mongodb' | 'cassandra' | 'clickhouse' | 'firebird' | 'bigquery' | 'redshift' | 'duckdb' | 'libsql' | 'redis' | 'surrealdb' | 'trino' ;
44- databaseTypeDisplayName : string ;
50+ /** The name of the database connected to */
4551 databaseName : string ;
4652 defaultSchema ?: string ;
4753 readOnlyMode : boolean ;
You can’t perform that action at this time.
0 commit comments