modality-kit 0.7.2 → 0.7.4
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/schemas/jsonrpc.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -140,6 +140,7 @@ export interface JSONRPCValidationResult {
|
|
|
140
140
|
error?: JSONRPCError;
|
|
141
141
|
/** Parsed message type */
|
|
142
142
|
messageType?: "request" | "notification" | "response" | "batch";
|
|
143
|
+
message?: JSONRPCMessage;
|
|
143
144
|
}
|
|
144
145
|
/**
|
|
145
146
|
* Utility functions for JSON-RPC message handling
|
package/package.json
CHANGED