@lvce-editor/rpc-registry 9.13.0 → 9.14.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.
|
@@ -23,7 +23,7 @@ export declare const sendMessagePortToClipBoardWorker: (port: MessagePort, rpcId
|
|
|
23
23
|
export declare const sendMessagePortToOpenerWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
24
24
|
export declare const sendMessagePortToChatMathWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
25
25
|
export declare const sendMessagePortToChatCoordinatorWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
26
|
-
export declare const
|
|
26
|
+
export declare const sendMessagePortToChatMessageParsingWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
27
27
|
export declare const sendMessagePortToMainAreaWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
28
28
|
export declare const sendMessagePortToTextSearchWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
29
29
|
export declare const sendMessagePortToErrorWorker: (port: MessagePort, rpcId: number) => Promise<void>;
|
|
@@ -78,9 +78,9 @@ export const sendMessagePortToChatCoordinatorWorker = async (port, rpcId) => {
|
|
|
78
78
|
const command = 'HandleMessagePort.handleMessagePort';
|
|
79
79
|
await invokeAndTransfer('SendMessagePortToExtensionHostWorker.sendMessagePortToChatCoordinatorWorker', port, command, rpcId);
|
|
80
80
|
};
|
|
81
|
-
export const
|
|
81
|
+
export const sendMessagePortToChatMessageParsingWorker = async (port, rpcId) => {
|
|
82
82
|
const command = 'HandleMessagePort.handleMessagePort';
|
|
83
|
-
await invokeAndTransfer('SendMessagePortToExtensionHostWorker.
|
|
83
|
+
await invokeAndTransfer('SendMessagePortToExtensionHostWorker.sendMessagePortToChatMessageParsingWorker', port, command, rpcId);
|
|
84
84
|
};
|
|
85
85
|
export const sendMessagePortToMainAreaWorker = async (port, rpcId) => {
|
|
86
86
|
const command = 'HandleMessagePort.handleMessagePort';
|