@eraserlabs/eraser-mcp 0.3.3-next.1 → 0.3.3-next.3
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/schemas/files.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ export declare const createFileSchema: z.ZodObject<{
|
|
|
16
16
|
diagramType: import("./shared").DiagramTypes;
|
|
17
17
|
}>, "many">>;
|
|
18
18
|
linkAccess: z.ZodOptional<z.ZodEnum<["no-link-access", "anyone-with-link-can-edit", "publicly-viewable", "publicly-editable", "sso-readable", "sso-editable"]>>;
|
|
19
|
+
folderId: z.ZodOptional<z.ZodString>;
|
|
19
20
|
}, "strip", z.ZodTypeAny, {
|
|
20
21
|
linkAccess?: "no-link-access" | "anyone-with-link-can-edit" | "publicly-viewable" | "publicly-editable" | "sso-readable" | "sso-editable" | undefined;
|
|
21
22
|
title?: string | undefined;
|
|
@@ -25,6 +26,7 @@ export declare const createFileSchema: z.ZodObject<{
|
|
|
25
26
|
code: string;
|
|
26
27
|
diagramType: import("./shared").DiagramTypes;
|
|
27
28
|
}[] | undefined;
|
|
29
|
+
folderId?: string | undefined;
|
|
28
30
|
}, {
|
|
29
31
|
linkAccess?: "no-link-access" | "anyone-with-link-can-edit" | "publicly-viewable" | "publicly-editable" | "sso-readable" | "sso-editable" | undefined;
|
|
30
32
|
title?: string | undefined;
|
|
@@ -34,6 +36,7 @@ export declare const createFileSchema: z.ZodObject<{
|
|
|
34
36
|
code: string;
|
|
35
37
|
diagramType: import("./shared").DiagramTypes;
|
|
36
38
|
}[] | undefined;
|
|
39
|
+
folderId?: string | undefined;
|
|
37
40
|
}>;
|
|
38
41
|
export declare const listFilesSchema: z.ZodObject<{
|
|
39
42
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
@@ -43,15 +46,15 @@ export declare const listFilesSchema: z.ZodObject<{
|
|
|
43
46
|
author: z.ZodOptional<z.ZodString>;
|
|
44
47
|
}, "strip", z.ZodTypeAny, {
|
|
45
48
|
sort?: string | undefined;
|
|
49
|
+
folderId?: string | undefined;
|
|
46
50
|
limit?: number | undefined;
|
|
47
51
|
cursor?: string | undefined;
|
|
48
|
-
folderId?: string | undefined;
|
|
49
52
|
author?: string | undefined;
|
|
50
53
|
}, {
|
|
51
54
|
sort?: string | undefined;
|
|
55
|
+
folderId?: string | undefined;
|
|
52
56
|
limit?: number | undefined;
|
|
53
57
|
cursor?: string | undefined;
|
|
54
|
-
folderId?: string | undefined;
|
|
55
58
|
author?: string | undefined;
|
|
56
59
|
}>;
|
|
57
60
|
export declare const getFileSchema: z.ZodObject<{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"files.d.ts","sourceRoot":"","sources":["../../src/schemas/files.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"files.d.ts","sourceRoot":"","sources":["../../src/schemas/files.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoB3B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;EAM1B,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;EAExB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEH,eAAO,MAAM,iBAAiB;;;;;;EAE5B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC7D,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACzD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
package/dist/schemas/files.js
CHANGED
|
@@ -18,6 +18,7 @@ exports.createFileSchema = zod_1.z.object({
|
|
|
18
18
|
.optional()
|
|
19
19
|
.describe('Standalone diagram elements using diagram DSL syntax. Will be added to canvas.'),
|
|
20
20
|
linkAccess: shared_1.LinkAccessEnum.optional().describe('Optional link sharing access level. Defaults to using team config.'),
|
|
21
|
+
folderId: zod_1.z.string().optional().describe('Folder ID to create the file in.'),
|
|
21
22
|
});
|
|
22
23
|
exports.listFilesSchema = zod_1.z.object({
|
|
23
24
|
limit: zod_1.z.number().optional().describe('Maximum number of files to return (1-500). Defaults to 100.'),
|