File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @beekeeperstudio/plugin" ,
3- "version" : " 1.3.0 " ,
3+ "version" : " 1.3.1 " ,
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 @@ -63,7 +63,7 @@ export async function setViewState<T>(state: T): Promise<SetViewStateResponse['r
6363 return await request ( { name : "setViewState" , args : { state } as SetViewStateRequest < T > [ 'args' ] } ) ;
6464}
6565
66- export async function openExternal ( link : boolean ) : Promise < OpenExternalResponse [ 'result' ] > {
66+ export async function openExternal ( link : string ) : Promise < OpenExternalResponse [ 'result' ] > {
6767 return await request ( { name : "openExternal" , args : { link } as OpenExternalRequest [ 'args' ] } ) ;
6868}
6969
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export interface SetViewStateRequest<T extends unknown> extends BaseRequest {
6565export interface OpenExternalRequest extends BaseRequest {
6666 name : "openExternal" ;
6767 args : {
68- link : boolean ;
68+ link : string ;
6969 } ;
7070}
7171
You can’t perform that action at this time.
0 commit comments