@lvce-editor/rpc-registry 9.21.0 → 9.22.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.
|
@@ -28,6 +28,7 @@ export declare const sendMessagePortToMainAreaWorker: (port: MessagePort, rpcId:
|
|
|
28
28
|
export declare const sendMessagePortToTerminalProcess: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
29
29
|
export declare const sendMessagePortToTextSearchWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
30
30
|
export declare const sendMessagePortToAuthWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
31
|
+
export declare const sendMessagePortToAuthProcess: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
31
32
|
export declare const sendMessagePortToErrorWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
32
33
|
export declare const sendMessagePortToMarkdownWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
33
34
|
export declare const sendMessagePortToIconThemeWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
@@ -101,6 +101,10 @@ export const sendMessagePortToAuthWorker = async (port, rpcId) => {
|
|
|
101
101
|
const command = 'HandleMessagePort.handleMessagePort';
|
|
102
102
|
await invokeAndTransfer('SendMessagePortToExtensionHostWorker.sendMessagePortToAuthWorker', port, command, rpcId);
|
|
103
103
|
};
|
|
104
|
+
export const sendMessagePortToAuthProcess = async (port, rpcId) => {
|
|
105
|
+
const command = 'HandleMessagePortForAuthProcess.handleMessagePortForAuthProcess';
|
|
106
|
+
await invokeAndTransfer('SendMessagePortToExtensionHostWorker.sendMessagePortToSharedProcess', port, command, rpcId);
|
|
107
|
+
};
|
|
104
108
|
export const sendMessagePortToErrorWorker = async (port, rpcId) => {
|
|
105
109
|
const command = 'Errors.handleMessagePort';
|
|
106
110
|
await invokeAndTransfer('SendMessagePortToExtensionHostWorker.sendMessagePortToErrorWorker', port, command, rpcId);
|