modality-kit 0.12.10 → 0.12.11
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.js +2 -1
- package/dist/types/jsonrpc-manager.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5604,7 +5604,8 @@ class JSONRPCManager extends JSONRPCCall {
|
|
|
5604
5604
|
return JSONRPCUtils.createError(-32603 /* INTERNAL_ERROR */, STANDARD_ERROR_MESSAGES[-32603 /* INTERNAL_ERROR */], { originalError: error.message });
|
|
5605
5605
|
}
|
|
5606
5606
|
sendMessage(message, options) {
|
|
5607
|
-
console.warn("JSONRPCManager.sendMessage not implemented - message not sent:"
|
|
5607
|
+
console.warn("JSONRPCManager.sendMessage not implemented - message not sent:");
|
|
5608
|
+
console.dir({ message, options }, { depth: null, color: true });
|
|
5608
5609
|
}
|
|
5609
5610
|
sendNotification(method, params, options) {
|
|
5610
5611
|
const notification = JSONRPCUtils.createNotification(method, params);
|
|
@@ -84,7 +84,7 @@ export declare class JSONRPCManager<TContext> extends JSONRPCCall {
|
|
|
84
84
|
/**
|
|
85
85
|
* Send a JSON-RPC notification (no response expected)
|
|
86
86
|
*/
|
|
87
|
-
sendNotification(method: string, params: any, options: TContext): void;
|
|
87
|
+
protected sendNotification(method: string, params: any, options: TContext): void;
|
|
88
88
|
/**
|
|
89
89
|
* Register a JSON-RPC method
|
|
90
90
|
*/
|
package/package.json
CHANGED