@lvce-editor/api 8.52.0 → 8.53.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/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { activate } from './parts/Activation/Activation.ts';
|
|
2
|
-
export { getAccessToken } from './parts/Authentication/Authentication.ts';
|
|
2
|
+
export { getAccessToken, type GetAccessTokenOptions } from './parts/Authentication/Authentication.ts';
|
|
3
3
|
export { createElectronWebContentsView } from './parts/ElectronWebContentsView/ElectronWebContentsView.ts';
|
|
4
4
|
export { executeCommand } from './parts/ExecuteCommand/ExecuteCommand.ts';
|
|
5
5
|
export { showQuickPick } from './parts/QuickPick/QuickPick.ts';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { ExtensionManagementWorker } from '@lvce-editor/rpc-registry';
|
|
2
|
-
export const getAccessToken = () => {
|
|
3
|
-
return ExtensionManagementWorker.invoke('Extensions.getAccessToken');
|
|
2
|
+
export const getAccessToken = (options = {}) => {
|
|
3
|
+
return ExtensionManagementWorker.invoke('Extensions.getAccessToken', options);
|
|
4
4
|
};
|