modality-kit 0.7.0 → 0.7.1
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 -2
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5437,8 +5437,8 @@ export {
|
|
|
5437
5437
|
emptySchema,
|
|
5438
5438
|
createDataPendingOperations,
|
|
5439
5439
|
compressWithLanguageDetection as compressText,
|
|
5440
|
-
exports_schemas_symbol as
|
|
5441
|
-
exports_jsonrpc as
|
|
5440
|
+
exports_schemas_symbol as SymbolTypes,
|
|
5441
|
+
exports_jsonrpc as JSONRPCTypes,
|
|
5442
5442
|
JSONRPCCall,
|
|
5443
5443
|
ErrorCode
|
|
5444
5444
|
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ export type { AITools, AITool } from "./schemas/schemas_tool_config";
|
|
|
3
3
|
export { formatErrorResponse, formatSuccessResponse } from "./util_response";
|
|
4
4
|
export { getLoggerInstance, type ModalityLogger } from "./util_logger";
|
|
5
5
|
export { withErrorHandling, ErrorCode } from "./util_error";
|
|
6
|
-
export * as
|
|
7
|
-
export * as
|
|
6
|
+
export * as SymbolTypes from "./schemas/schemas_symbol";
|
|
7
|
+
export * as JSONRPCTypes from "./schemas/jsonrpc";
|
|
8
8
|
export type { EmptyType } from "./schemas/schemas_empty";
|
|
9
9
|
export { emptySchema } from "./schemas/schemas_empty";
|
|
10
10
|
export { loadVersion } from "./util_version";
|
package/package.json
CHANGED