modality-kit 0.2.0 → 0.2.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
CHANGED
|
@@ -4274,7 +4274,7 @@ var rangeSchema = exports_external.object({
|
|
|
4274
4274
|
var fileEntrySchema = exports_external.object({
|
|
4275
4275
|
path: exports_external.string().describe("Relative path from workspace root"),
|
|
4276
4276
|
type: exports_external.enum(["file", "directory"]).describe("Entry type"),
|
|
4277
|
-
lastModified: exports_external.number().describe("Last modified timestamp in milliseconds since epoch")
|
|
4277
|
+
lastModified: exports_external.number().optional().nullable().describe("Last modified timestamp in milliseconds since epoch")
|
|
4278
4278
|
});
|
|
4279
4279
|
export {
|
|
4280
4280
|
withErrorHandling,
|
|
@@ -85,15 +85,15 @@ export interface VSCodeSymbol extends SymbolBase {
|
|
|
85
85
|
declare const fileEntrySchema: z.ZodObject<{
|
|
86
86
|
path: z.ZodString;
|
|
87
87
|
type: z.ZodEnum<["file", "directory"]>;
|
|
88
|
-
lastModified: z.ZodNumber
|
|
88
|
+
lastModified: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
90
90
|
type: "file" | "directory";
|
|
91
91
|
path: string;
|
|
92
|
-
lastModified
|
|
92
|
+
lastModified?: number | null | undefined;
|
|
93
93
|
}, {
|
|
94
94
|
type: "file" | "directory";
|
|
95
95
|
path: string;
|
|
96
|
-
lastModified
|
|
96
|
+
lastModified?: number | null | undefined;
|
|
97
97
|
}>;
|
|
98
98
|
export type FileEntryType = z.infer<typeof fileEntrySchema>;
|
|
99
99
|
export {};
|
package/package.json
CHANGED