modality-kit 0.1.7 → 0.1.9
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/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { setupAITools } from "./util_mcp_tools_converter";
|
|
2
2
|
export type { AITools, AITool } from "./schemas/schemas_tool_config";
|
|
3
3
|
export { formatErrorResponse, formatSuccessResponse } from "./util_response";
|
|
4
|
-
export { getLoggerInstance } from "./util_logger";
|
|
4
|
+
export { getLoggerInstance, type ModalityLogger } from "./util_logger";
|
|
5
5
|
export { withErrorHandling, ErrorCode } from "./util_error";
|
|
@@ -7,7 +7,7 @@ export interface LoggerOptions {
|
|
|
7
7
|
timestampFormat?: "iso" | "locale" | false;
|
|
8
8
|
name?: string;
|
|
9
9
|
}
|
|
10
|
-
declare class ModalityLogger {
|
|
10
|
+
export declare class ModalityLogger {
|
|
11
11
|
private options;
|
|
12
12
|
private logLevel;
|
|
13
13
|
private constructor();
|
|
@@ -25,4 +25,3 @@ declare class ModalityLogger {
|
|
|
25
25
|
success(message: string, data?: any): void;
|
|
26
26
|
}
|
|
27
27
|
export declare const getLoggerInstance: typeof ModalityLogger.getInstance;
|
|
28
|
-
export {};
|
package/package.json
CHANGED