modality-kit 0.4.3 → 0.4.5
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
CHANGED
|
@@ -4276,12 +4276,15 @@ var fileEntrySchema = exports_external.object({
|
|
|
4276
4276
|
type: exports_external.enum(["file", "directory"]).describe("Entry type"),
|
|
4277
4277
|
lastModified: exports_external.number().optional().nullable().describe("Last modified timestamp in milliseconds since epoch")
|
|
4278
4278
|
});
|
|
4279
|
+
// src/schemas/schemas_empty.ts
|
|
4280
|
+
var emptySchema = exports_external.object({}).describe("No parameters required");
|
|
4279
4281
|
export {
|
|
4280
4282
|
withErrorHandling,
|
|
4281
4283
|
setupAITools,
|
|
4282
4284
|
getLoggerInstance,
|
|
4283
4285
|
formatSuccessResponse,
|
|
4284
4286
|
formatErrorResponse,
|
|
4287
|
+
emptySchema,
|
|
4285
4288
|
exports_schemas_symbol as SymbolType,
|
|
4286
4289
|
ErrorCode
|
|
4287
4290
|
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -4,3 +4,5 @@ export { formatErrorResponse, formatSuccessResponse } from "./util_response";
|
|
|
4
4
|
export { getLoggerInstance, type ModalityLogger } from "./util_logger";
|
|
5
5
|
export { withErrorHandling, ErrorCode } from "./util_error";
|
|
6
6
|
export * as SymbolType from "./schemas/schemas_symbol";
|
|
7
|
+
export type { EmptyType } from "./schemas/schemas_empty";
|
|
8
|
+
export { emptySchema } from "./schemas/schemas_empty";
|
package/package.json
CHANGED