modality-kit 0.4.3 → 0.4.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 CHANGED
@@ -4276,6 +4276,12 @@ 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 exports_schemas_empty = {};
4281
+ __export(exports_schemas_empty, {
4282
+ emptySchema: () => emptySchema
4283
+ });
4284
+ var emptySchema = exports_external.object({}).describe("No parameters required");
4279
4285
  export {
4280
4286
  withErrorHandling,
4281
4287
  setupAITools,
@@ -4283,5 +4289,6 @@ export {
4283
4289
  formatSuccessResponse,
4284
4290
  formatErrorResponse,
4285
4291
  exports_schemas_symbol as SymbolType,
4286
- ErrorCode
4292
+ ErrorCode,
4293
+ exports_schemas_empty as Empty
4287
4294
  };
@@ -4,3 +4,4 @@ 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 * as Empty from "./schemas/schemas_empty";
@@ -1,3 +1,3 @@
1
1
  import { z } from "zod";
2
2
  export declare const emptySchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
3
- export type EmptySchema = z.infer<typeof emptySchema>;
3
+ export type EmptyType = z.infer<typeof emptySchema>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.4.3",
2
+ "version": "0.4.4",
3
3
  "name": "modality-kit",
4
4
  "repository": {
5
5
  "type": "git",