@beekeeperstudio/plugin 1.4.0-beta.5 → 1.4.0-beta.6

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +7 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -279,8 +279,14 @@ interface GetConnectionInfoResponse extends BaseResponse {
279
279
  result: {
280
280
  /** @deprecated Use `databaseType` instead */
281
281
  connectionType: string;
282
+ /** The ID of the connection */
283
+ id: number;
284
+ /** The name of the connection specified in the connection form */
285
+ workspaceId: number;
286
+ /** The name of the connection specified in the connection form */
287
+ connectionName: string;
282
288
  databaseType: 'postgresql' | 'mysql' | 'mariadb' | 'sqlite' | 'sqlserver' | 'oracle' | 'mongodb' | 'cassandra' | 'clickhouse' | 'firebird' | 'bigquery' | 'redshift' | 'duckdb' | 'libsql' | 'redis' | 'surrealdb' | 'trino';
283
- databaseTypeDisplayName: string;
289
+ /** The name of the database connected to */
284
290
  databaseName: string;
285
291
  defaultSchema?: string;
286
292
  readOnlyMode: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beekeeperstudio/plugin",
3
- "version": "1.4.0-beta.5",
3
+ "version": "1.4.0-beta.6",
4
4
  "description": "A simple TypeScript wrapper to send messages from your Beekeeper Studio plugin to the main app.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",