@shuji-bonji/pdf-reader-mcp 0.2.0
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/CHANGELOG.md +44 -0
- package/LICENSE +21 -0
- package/README.ja.md +190 -0
- package/README.md +206 -0
- package/dist/constants.d.ts +22 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +23 -0
- package/dist/constants.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -0
- package/dist/schemas/common.d.ts +14 -0
- package/dist/schemas/common.d.ts.map +1 -0
- package/dist/schemas/common.js +26 -0
- package/dist/schemas/common.js.map +1 -0
- package/dist/schemas/tier1.d.ts +104 -0
- package/dist/schemas/tier1.d.ts.map +1 -0
- package/dist/schemas/tier1.js +77 -0
- package/dist/schemas/tier1.js.map +1 -0
- package/dist/schemas/tier2.d.ts +68 -0
- package/dist/schemas/tier2.d.ts.map +1 -0
- package/dist/schemas/tier2.js +42 -0
- package/dist/schemas/tier2.js.map +1 -0
- package/dist/schemas/tier3.d.ts +44 -0
- package/dist/schemas/tier3.d.ts.map +1 -0
- package/dist/schemas/tier3.js +28 -0
- package/dist/schemas/tier3.js.map +1 -0
- package/dist/services/pdfjs-service.d.ts +65 -0
- package/dist/services/pdfjs-service.d.ts.map +1 -0
- package/dist/services/pdfjs-service.js +520 -0
- package/dist/services/pdfjs-service.js.map +1 -0
- package/dist/services/pdflib-service.d.ts +35 -0
- package/dist/services/pdflib-service.d.ts.map +1 -0
- package/dist/services/pdflib-service.js +318 -0
- package/dist/services/pdflib-service.js.map +1 -0
- package/dist/services/url-fetcher.d.ts +8 -0
- package/dist/services/url-fetcher.d.ts.map +1 -0
- package/dist/services/url-fetcher.js +40 -0
- package/dist/services/url-fetcher.js.map +1 -0
- package/dist/services/validation-service.d.ts +49 -0
- package/dist/services/validation-service.d.ts.map +1 -0
- package/dist/services/validation-service.js +670 -0
- package/dist/services/validation-service.js.map +1 -0
- package/dist/tools/index.d.ts +10 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +46 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/tools/tier1/get-metadata.d.ts +6 -0
- package/dist/tools/tier1/get-metadata.d.ts.map +1 -0
- package/dist/tools/tier1/get-metadata.js +49 -0
- package/dist/tools/tier1/get-metadata.js.map +1 -0
- package/dist/tools/tier1/get-page-count.d.ts +6 -0
- package/dist/tools/tier1/get-page-count.d.ts.map +1 -0
- package/dist/tools/tier1/get-page-count.js +50 -0
- package/dist/tools/tier1/get-page-count.js.map +1 -0
- package/dist/tools/tier1/read-images.d.ts +6 -0
- package/dist/tools/tier1/read-images.d.ts.map +1 -0
- package/dist/tools/tier1/read-images.js +79 -0
- package/dist/tools/tier1/read-images.js.map +1 -0
- package/dist/tools/tier1/read-text.d.ts +6 -0
- package/dist/tools/tier1/read-text.d.ts.map +1 -0
- package/dist/tools/tier1/read-text.js +57 -0
- package/dist/tools/tier1/read-text.js.map +1 -0
- package/dist/tools/tier1/read-url.d.ts +6 -0
- package/dist/tools/tier1/read-url.d.ts.map +1 -0
- package/dist/tools/tier1/read-url.js +64 -0
- package/dist/tools/tier1/read-url.js.map +1 -0
- package/dist/tools/tier1/search-text.d.ts +6 -0
- package/dist/tools/tier1/search-text.d.ts.map +1 -0
- package/dist/tools/tier1/search-text.js +62 -0
- package/dist/tools/tier1/search-text.js.map +1 -0
- package/dist/tools/tier1/summarize.d.ts +6 -0
- package/dist/tools/tier1/summarize.d.ts.map +1 -0
- package/dist/tools/tier1/summarize.js +70 -0
- package/dist/tools/tier1/summarize.js.map +1 -0
- package/dist/tools/tier2/inspect-annotations.d.ts +6 -0
- package/dist/tools/tier2/inspect-annotations.d.ts.map +1 -0
- package/dist/tools/tier2/inspect-annotations.js +47 -0
- package/dist/tools/tier2/inspect-annotations.js.map +1 -0
- package/dist/tools/tier2/inspect-fonts.d.ts +6 -0
- package/dist/tools/tier2/inspect-fonts.d.ts.map +1 -0
- package/dist/tools/tier2/inspect-fonts.js +54 -0
- package/dist/tools/tier2/inspect-fonts.js.map +1 -0
- package/dist/tools/tier2/inspect-signatures.d.ts +6 -0
- package/dist/tools/tier2/inspect-signatures.d.ts.map +1 -0
- package/dist/tools/tier2/inspect-signatures.js +48 -0
- package/dist/tools/tier2/inspect-signatures.js.map +1 -0
- package/dist/tools/tier2/inspect-structure.d.ts +6 -0
- package/dist/tools/tier2/inspect-structure.d.ts.map +1 -0
- package/dist/tools/tier2/inspect-structure.js +46 -0
- package/dist/tools/tier2/inspect-structure.js.map +1 -0
- package/dist/tools/tier2/inspect-tags.d.ts +6 -0
- package/dist/tools/tier2/inspect-tags.d.ts.map +1 -0
- package/dist/tools/tier2/inspect-tags.js +46 -0
- package/dist/tools/tier2/inspect-tags.js.map +1 -0
- package/dist/tools/tier3/compare-structure.d.ts +6 -0
- package/dist/tools/tier3/compare-structure.d.ts.map +1 -0
- package/dist/tools/tier3/compare-structure.js +47 -0
- package/dist/tools/tier3/compare-structure.js.map +1 -0
- package/dist/tools/tier3/validate-metadata.d.ts +6 -0
- package/dist/tools/tier3/validate-metadata.d.ts.map +1 -0
- package/dist/tools/tier3/validate-metadata.js +57 -0
- package/dist/tools/tier3/validate-metadata.js.map +1 -0
- package/dist/tools/tier3/validate-tagged.d.ts +6 -0
- package/dist/tools/tier3/validate-tagged.d.ts.map +1 -0
- package/dist/tools/tier3/validate-tagged.js +56 -0
- package/dist/tools/tier3/validate-tagged.js.map +1 -0
- package/dist/types.d.ts +226 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +5 -0
- package/dist/types.js.map +1 -0
- package/dist/utils/batch-processor.d.ts +60 -0
- package/dist/utils/batch-processor.d.ts.map +1 -0
- package/dist/utils/batch-processor.js +72 -0
- package/dist/utils/batch-processor.js.map +1 -0
- package/dist/utils/error-handler.d.ts +23 -0
- package/dist/utils/error-handler.d.ts.map +1 -0
- package/dist/utils/error-handler.js +76 -0
- package/dist/utils/error-handler.js.map +1 -0
- package/dist/utils/formatter.d.ts +64 -0
- package/dist/utils/formatter.d.ts.map +1 -0
- package/dist/utils/formatter.js +379 -0
- package/dist/utils/formatter.js.map +1 -0
- package/dist/utils/pdf-helpers.d.ts +22 -0
- package/dist/utils/pdf-helpers.d.ts.map +1 -0
- package/dist/utils/pdf-helpers.js +68 -0
- package/dist/utils/pdf-helpers.js.map +1 -0
- package/package.json +78 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas for Tier 1 tools.
|
|
3
|
+
*/
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
/** get_page_count */
|
|
6
|
+
export declare const GetPageCountSchema: z.ZodObject<{
|
|
7
|
+
file_path: z.ZodString;
|
|
8
|
+
}, "strict", z.ZodTypeAny, {
|
|
9
|
+
file_path: string;
|
|
10
|
+
}, {
|
|
11
|
+
file_path: string;
|
|
12
|
+
}>;
|
|
13
|
+
/** get_metadata */
|
|
14
|
+
export declare const GetMetadataSchema: z.ZodObject<{
|
|
15
|
+
file_path: z.ZodString;
|
|
16
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
17
|
+
}, "strict", z.ZodTypeAny, {
|
|
18
|
+
file_path: string;
|
|
19
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
20
|
+
}, {
|
|
21
|
+
file_path: string;
|
|
22
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
23
|
+
}>;
|
|
24
|
+
/** read_text */
|
|
25
|
+
export declare const ReadTextSchema: z.ZodObject<{
|
|
26
|
+
file_path: z.ZodString;
|
|
27
|
+
pages: z.ZodOptional<z.ZodString>;
|
|
28
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
29
|
+
}, "strict", z.ZodTypeAny, {
|
|
30
|
+
file_path: string;
|
|
31
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
32
|
+
pages?: string | undefined;
|
|
33
|
+
}, {
|
|
34
|
+
file_path: string;
|
|
35
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
36
|
+
pages?: string | undefined;
|
|
37
|
+
}>;
|
|
38
|
+
/** search_text */
|
|
39
|
+
export declare const SearchTextSchema: z.ZodObject<{
|
|
40
|
+
file_path: z.ZodString;
|
|
41
|
+
query: z.ZodString;
|
|
42
|
+
pages: z.ZodOptional<z.ZodString>;
|
|
43
|
+
context_chars: z.ZodDefault<z.ZodNumber>;
|
|
44
|
+
max_results: z.ZodDefault<z.ZodNumber>;
|
|
45
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
46
|
+
}, "strict", z.ZodTypeAny, {
|
|
47
|
+
file_path: string;
|
|
48
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
49
|
+
query: string;
|
|
50
|
+
context_chars: number;
|
|
51
|
+
max_results: number;
|
|
52
|
+
pages?: string | undefined;
|
|
53
|
+
}, {
|
|
54
|
+
file_path: string;
|
|
55
|
+
query: string;
|
|
56
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
57
|
+
pages?: string | undefined;
|
|
58
|
+
context_chars?: number | undefined;
|
|
59
|
+
max_results?: number | undefined;
|
|
60
|
+
}>;
|
|
61
|
+
/** read_images */
|
|
62
|
+
export declare const ReadImagesSchema: z.ZodObject<{
|
|
63
|
+
file_path: z.ZodString;
|
|
64
|
+
pages: z.ZodOptional<z.ZodString>;
|
|
65
|
+
}, "strict", z.ZodTypeAny, {
|
|
66
|
+
file_path: string;
|
|
67
|
+
pages?: string | undefined;
|
|
68
|
+
}, {
|
|
69
|
+
file_path: string;
|
|
70
|
+
pages?: string | undefined;
|
|
71
|
+
}>;
|
|
72
|
+
/** read_url */
|
|
73
|
+
export declare const ReadUrlSchema: z.ZodObject<{
|
|
74
|
+
url: z.ZodString;
|
|
75
|
+
pages: z.ZodOptional<z.ZodString>;
|
|
76
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
77
|
+
}, "strict", z.ZodTypeAny, {
|
|
78
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
79
|
+
url: string;
|
|
80
|
+
pages?: string | undefined;
|
|
81
|
+
}, {
|
|
82
|
+
url: string;
|
|
83
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
84
|
+
pages?: string | undefined;
|
|
85
|
+
}>;
|
|
86
|
+
/** summarize */
|
|
87
|
+
export declare const SummarizeSchema: z.ZodObject<{
|
|
88
|
+
file_path: z.ZodString;
|
|
89
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
90
|
+
}, "strict", z.ZodTypeAny, {
|
|
91
|
+
file_path: string;
|
|
92
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
93
|
+
}, {
|
|
94
|
+
file_path: string;
|
|
95
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
96
|
+
}>;
|
|
97
|
+
export type GetPageCountInput = z.infer<typeof GetPageCountSchema>;
|
|
98
|
+
export type GetMetadataInput = z.infer<typeof GetMetadataSchema>;
|
|
99
|
+
export type ReadTextInput = z.infer<typeof ReadTextSchema>;
|
|
100
|
+
export type SearchTextInput = z.infer<typeof SearchTextSchema>;
|
|
101
|
+
export type ReadImagesInput = z.infer<typeof ReadImagesSchema>;
|
|
102
|
+
export type ReadUrlInput = z.infer<typeof ReadUrlSchema>;
|
|
103
|
+
export type SummarizeInput = z.infer<typeof SummarizeSchema>;
|
|
104
|
+
//# sourceMappingURL=tier1.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tier1.d.ts","sourceRoot":"","sources":["../../src/schemas/tier1.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,qBAAqB;AACrB,eAAO,MAAM,kBAAkB;;;;;;EAIpB,CAAC;AAEZ,mBAAmB;AACnB,eAAO,MAAM,iBAAiB;;;;;;;;;EAKnB,CAAC;AAEZ,gBAAgB;AAChB,eAAO,MAAM,cAAc;;;;;;;;;;;;EAMhB,CAAC;AAEZ,kBAAkB;AAClB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;EAyBlB,CAAC;AAEZ,kBAAkB;AAClB,eAAO,MAAM,gBAAgB;;;;;;;;;EAKlB,CAAC;AAEZ,eAAe;AACf,eAAO,MAAM,aAAa;;;;;;;;;;;;EAMf,CAAC;AAEZ,gBAAgB;AAChB,eAAO,MAAM,eAAe;;;;;;;;;EAKjB,CAAC;AAGZ,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AACnE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AACjE,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAC3D,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACzD,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas for Tier 1 tools.
|
|
3
|
+
*/
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
import { DEFAULT_SEARCH_CONTEXT, MAX_SEARCH_RESULTS } from '../constants.js';
|
|
6
|
+
import { FilePathSchema, PagesSchema, ResponseFormatSchema, UrlSchema } from './common.js';
|
|
7
|
+
/** get_page_count */
|
|
8
|
+
export const GetPageCountSchema = z
|
|
9
|
+
.object({
|
|
10
|
+
file_path: FilePathSchema,
|
|
11
|
+
})
|
|
12
|
+
.strict();
|
|
13
|
+
/** get_metadata */
|
|
14
|
+
export const GetMetadataSchema = z
|
|
15
|
+
.object({
|
|
16
|
+
file_path: FilePathSchema,
|
|
17
|
+
response_format: ResponseFormatSchema,
|
|
18
|
+
})
|
|
19
|
+
.strict();
|
|
20
|
+
/** read_text */
|
|
21
|
+
export const ReadTextSchema = z
|
|
22
|
+
.object({
|
|
23
|
+
file_path: FilePathSchema,
|
|
24
|
+
pages: PagesSchema,
|
|
25
|
+
response_format: ResponseFormatSchema,
|
|
26
|
+
})
|
|
27
|
+
.strict();
|
|
28
|
+
/** search_text */
|
|
29
|
+
export const SearchTextSchema = z
|
|
30
|
+
.object({
|
|
31
|
+
file_path: FilePathSchema,
|
|
32
|
+
query: z
|
|
33
|
+
.string()
|
|
34
|
+
.min(1, 'Search query is required')
|
|
35
|
+
.max(500, 'Query must not exceed 500 characters')
|
|
36
|
+
.describe('Text to search for (case-insensitive)'),
|
|
37
|
+
pages: PagesSchema,
|
|
38
|
+
context_chars: z
|
|
39
|
+
.number()
|
|
40
|
+
.int()
|
|
41
|
+
.min(0)
|
|
42
|
+
.max(500)
|
|
43
|
+
.default(DEFAULT_SEARCH_CONTEXT)
|
|
44
|
+
.describe('Number of characters to show before and after each match'),
|
|
45
|
+
max_results: z
|
|
46
|
+
.number()
|
|
47
|
+
.int()
|
|
48
|
+
.min(1)
|
|
49
|
+
.max(MAX_SEARCH_RESULTS)
|
|
50
|
+
.default(20)
|
|
51
|
+
.describe('Maximum number of matches to return'),
|
|
52
|
+
response_format: ResponseFormatSchema,
|
|
53
|
+
})
|
|
54
|
+
.strict();
|
|
55
|
+
/** read_images */
|
|
56
|
+
export const ReadImagesSchema = z
|
|
57
|
+
.object({
|
|
58
|
+
file_path: FilePathSchema,
|
|
59
|
+
pages: PagesSchema,
|
|
60
|
+
})
|
|
61
|
+
.strict();
|
|
62
|
+
/** read_url */
|
|
63
|
+
export const ReadUrlSchema = z
|
|
64
|
+
.object({
|
|
65
|
+
url: UrlSchema,
|
|
66
|
+
pages: PagesSchema,
|
|
67
|
+
response_format: ResponseFormatSchema,
|
|
68
|
+
})
|
|
69
|
+
.strict();
|
|
70
|
+
/** summarize */
|
|
71
|
+
export const SummarizeSchema = z
|
|
72
|
+
.object({
|
|
73
|
+
file_path: FilePathSchema,
|
|
74
|
+
response_format: ResponseFormatSchema,
|
|
75
|
+
})
|
|
76
|
+
.strict();
|
|
77
|
+
//# sourceMappingURL=tier1.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tier1.js","sourceRoot":"","sources":["../../src/schemas/tier1.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,oBAAoB,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE3F,qBAAqB;AACrB,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC;KAChC,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;CAC1B,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,mBAAmB;AACnB,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC;KAC/B,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,gBAAgB;AAChB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC;KAC5B,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,KAAK,EAAE,WAAW;IAClB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,kBAAkB;AAClB,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC;KAC9B,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,EAAE,0BAA0B,CAAC;SAClC,GAAG,CAAC,GAAG,EAAE,sCAAsC,CAAC;SAChD,QAAQ,CAAC,uCAAuC,CAAC;IACpD,KAAK,EAAE,WAAW;IAClB,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,GAAG,EAAE;SACL,GAAG,CAAC,CAAC,CAAC;SACN,GAAG,CAAC,GAAG,CAAC;SACR,OAAO,CAAC,sBAAsB,CAAC;SAC/B,QAAQ,CAAC,0DAA0D,CAAC;IACvE,WAAW,EAAE,CAAC;SACX,MAAM,EAAE;SACR,GAAG,EAAE;SACL,GAAG,CAAC,CAAC,CAAC;SACN,GAAG,CAAC,kBAAkB,CAAC;SACvB,OAAO,CAAC,EAAE,CAAC;SACX,QAAQ,CAAC,qCAAqC,CAAC;IAClD,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,kBAAkB;AAClB,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC;KAC9B,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,KAAK,EAAE,WAAW;CACnB,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,eAAe;AACf,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC;KAC3B,MAAM,CAAC;IACN,GAAG,EAAE,SAAS;IACd,KAAK,EAAE,WAAW;IAClB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,gBAAgB;AAChB,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC;KAC7B,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas for Tier 2 tools.
|
|
3
|
+
*/
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
/** inspect_structure */
|
|
6
|
+
export declare const InspectStructureSchema: z.ZodObject<{
|
|
7
|
+
file_path: z.ZodString;
|
|
8
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
9
|
+
}, "strict", z.ZodTypeAny, {
|
|
10
|
+
file_path: string;
|
|
11
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
12
|
+
}, {
|
|
13
|
+
file_path: string;
|
|
14
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
15
|
+
}>;
|
|
16
|
+
/** inspect_tags */
|
|
17
|
+
export declare const InspectTagsSchema: z.ZodObject<{
|
|
18
|
+
file_path: z.ZodString;
|
|
19
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
20
|
+
}, "strict", z.ZodTypeAny, {
|
|
21
|
+
file_path: string;
|
|
22
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
23
|
+
}, {
|
|
24
|
+
file_path: string;
|
|
25
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
26
|
+
}>;
|
|
27
|
+
/** inspect_fonts */
|
|
28
|
+
export declare const InspectFontsSchema: z.ZodObject<{
|
|
29
|
+
file_path: z.ZodString;
|
|
30
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
31
|
+
}, "strict", z.ZodTypeAny, {
|
|
32
|
+
file_path: string;
|
|
33
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
34
|
+
}, {
|
|
35
|
+
file_path: string;
|
|
36
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
37
|
+
}>;
|
|
38
|
+
/** inspect_annotations */
|
|
39
|
+
export declare const InspectAnnotationsSchema: z.ZodObject<{
|
|
40
|
+
file_path: z.ZodString;
|
|
41
|
+
pages: z.ZodOptional<z.ZodString>;
|
|
42
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
43
|
+
}, "strict", z.ZodTypeAny, {
|
|
44
|
+
file_path: string;
|
|
45
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
46
|
+
pages?: string | undefined;
|
|
47
|
+
}, {
|
|
48
|
+
file_path: string;
|
|
49
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
50
|
+
pages?: string | undefined;
|
|
51
|
+
}>;
|
|
52
|
+
/** inspect_signatures */
|
|
53
|
+
export declare const InspectSignaturesSchema: z.ZodObject<{
|
|
54
|
+
file_path: z.ZodString;
|
|
55
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
56
|
+
}, "strict", z.ZodTypeAny, {
|
|
57
|
+
file_path: string;
|
|
58
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
59
|
+
}, {
|
|
60
|
+
file_path: string;
|
|
61
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
62
|
+
}>;
|
|
63
|
+
export type InspectStructureInput = z.infer<typeof InspectStructureSchema>;
|
|
64
|
+
export type InspectTagsInput = z.infer<typeof InspectTagsSchema>;
|
|
65
|
+
export type InspectFontsInput = z.infer<typeof InspectFontsSchema>;
|
|
66
|
+
export type InspectAnnotationsInput = z.infer<typeof InspectAnnotationsSchema>;
|
|
67
|
+
export type InspectSignaturesInput = z.infer<typeof InspectSignaturesSchema>;
|
|
68
|
+
//# sourceMappingURL=tier2.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tier2.d.ts","sourceRoot":"","sources":["../../src/schemas/tier2.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,wBAAwB;AACxB,eAAO,MAAM,sBAAsB;;;;;;;;;EAKxB,CAAC;AAEZ,mBAAmB;AACnB,eAAO,MAAM,iBAAiB;;;;;;;;;EAKnB,CAAC;AAEZ,oBAAoB;AACpB,eAAO,MAAM,kBAAkB;;;;;;;;;EAKpB,CAAC;AAEZ,0BAA0B;AAC1B,eAAO,MAAM,wBAAwB;;;;;;;;;;;;EAM1B,CAAC;AAEZ,yBAAyB;AACzB,eAAO,MAAM,uBAAuB;;;;;;;;;EAKzB,CAAC;AAGZ,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC3E,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AACnE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC/E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas for Tier 2 tools.
|
|
3
|
+
*/
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
import { FilePathSchema, PagesSchema, ResponseFormatSchema } from './common.js';
|
|
6
|
+
/** inspect_structure */
|
|
7
|
+
export const InspectStructureSchema = z
|
|
8
|
+
.object({
|
|
9
|
+
file_path: FilePathSchema,
|
|
10
|
+
response_format: ResponseFormatSchema,
|
|
11
|
+
})
|
|
12
|
+
.strict();
|
|
13
|
+
/** inspect_tags */
|
|
14
|
+
export const InspectTagsSchema = z
|
|
15
|
+
.object({
|
|
16
|
+
file_path: FilePathSchema,
|
|
17
|
+
response_format: ResponseFormatSchema,
|
|
18
|
+
})
|
|
19
|
+
.strict();
|
|
20
|
+
/** inspect_fonts */
|
|
21
|
+
export const InspectFontsSchema = z
|
|
22
|
+
.object({
|
|
23
|
+
file_path: FilePathSchema,
|
|
24
|
+
response_format: ResponseFormatSchema,
|
|
25
|
+
})
|
|
26
|
+
.strict();
|
|
27
|
+
/** inspect_annotations */
|
|
28
|
+
export const InspectAnnotationsSchema = z
|
|
29
|
+
.object({
|
|
30
|
+
file_path: FilePathSchema,
|
|
31
|
+
pages: PagesSchema,
|
|
32
|
+
response_format: ResponseFormatSchema,
|
|
33
|
+
})
|
|
34
|
+
.strict();
|
|
35
|
+
/** inspect_signatures */
|
|
36
|
+
export const InspectSignaturesSchema = z
|
|
37
|
+
.object({
|
|
38
|
+
file_path: FilePathSchema,
|
|
39
|
+
response_format: ResponseFormatSchema,
|
|
40
|
+
})
|
|
41
|
+
.strict();
|
|
42
|
+
//# sourceMappingURL=tier2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tier2.js","sourceRoot":"","sources":["../../src/schemas/tier2.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAEhF,wBAAwB;AACxB,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,mBAAmB;AACnB,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC;KAC/B,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,oBAAoB;AACpB,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC;KAChC,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,0BAA0B;AAC1B,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC;KACtC,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,KAAK,EAAE,WAAW;IAClB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,yBAAyB;AACzB,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC;KACrC,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas for Tier 3 tools.
|
|
3
|
+
*/
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
/** validate_tagged */
|
|
6
|
+
export declare const ValidateTaggedSchema: z.ZodObject<{
|
|
7
|
+
file_path: z.ZodString;
|
|
8
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
9
|
+
}, "strict", z.ZodTypeAny, {
|
|
10
|
+
file_path: string;
|
|
11
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
12
|
+
}, {
|
|
13
|
+
file_path: string;
|
|
14
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
15
|
+
}>;
|
|
16
|
+
/** validate_metadata */
|
|
17
|
+
export declare const ValidateMetadataSchema: z.ZodObject<{
|
|
18
|
+
file_path: z.ZodString;
|
|
19
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
20
|
+
}, "strict", z.ZodTypeAny, {
|
|
21
|
+
file_path: string;
|
|
22
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
23
|
+
}, {
|
|
24
|
+
file_path: string;
|
|
25
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
26
|
+
}>;
|
|
27
|
+
/** compare_structure */
|
|
28
|
+
export declare const CompareStructureSchema: z.ZodObject<{
|
|
29
|
+
file_path_1: z.ZodString;
|
|
30
|
+
file_path_2: z.ZodString;
|
|
31
|
+
response_format: z.ZodDefault<z.ZodNativeEnum<typeof import("../constants.js").ResponseFormat>>;
|
|
32
|
+
}, "strict", z.ZodTypeAny, {
|
|
33
|
+
response_format: import("../constants.js").ResponseFormat;
|
|
34
|
+
file_path_1: string;
|
|
35
|
+
file_path_2: string;
|
|
36
|
+
}, {
|
|
37
|
+
file_path_1: string;
|
|
38
|
+
file_path_2: string;
|
|
39
|
+
response_format?: import("../constants.js").ResponseFormat | undefined;
|
|
40
|
+
}>;
|
|
41
|
+
export type ValidateTaggedInput = z.infer<typeof ValidateTaggedSchema>;
|
|
42
|
+
export type ValidateMetadataInput = z.infer<typeof ValidateMetadataSchema>;
|
|
43
|
+
export type CompareStructureInput = z.infer<typeof CompareStructureSchema>;
|
|
44
|
+
//# sourceMappingURL=tier3.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tier3.d.ts","sourceRoot":"","sources":["../../src/schemas/tier3.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,sBAAsB;AACtB,eAAO,MAAM,oBAAoB;;;;;;;;;EAKtB,CAAC;AAEZ,wBAAwB;AACxB,eAAO,MAAM,sBAAsB;;;;;;;;;EAKxB,CAAC;AAEZ,wBAAwB;AACxB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;EAMxB,CAAC;AAGZ,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AACvE,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC3E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Zod schemas for Tier 3 tools.
|
|
3
|
+
*/
|
|
4
|
+
import { z } from 'zod';
|
|
5
|
+
import { FilePathSchema, ResponseFormatSchema } from './common.js';
|
|
6
|
+
/** validate_tagged */
|
|
7
|
+
export const ValidateTaggedSchema = z
|
|
8
|
+
.object({
|
|
9
|
+
file_path: FilePathSchema,
|
|
10
|
+
response_format: ResponseFormatSchema,
|
|
11
|
+
})
|
|
12
|
+
.strict();
|
|
13
|
+
/** validate_metadata */
|
|
14
|
+
export const ValidateMetadataSchema = z
|
|
15
|
+
.object({
|
|
16
|
+
file_path: FilePathSchema,
|
|
17
|
+
response_format: ResponseFormatSchema,
|
|
18
|
+
})
|
|
19
|
+
.strict();
|
|
20
|
+
/** compare_structure */
|
|
21
|
+
export const CompareStructureSchema = z
|
|
22
|
+
.object({
|
|
23
|
+
file_path_1: FilePathSchema.describe('Absolute path to the first PDF file for comparison'),
|
|
24
|
+
file_path_2: FilePathSchema.describe('Absolute path to the second PDF file for comparison'),
|
|
25
|
+
response_format: ResponseFormatSchema,
|
|
26
|
+
})
|
|
27
|
+
.strict();
|
|
28
|
+
//# sourceMappingURL=tier3.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tier3.js","sourceRoot":"","sources":["../../src/schemas/tier3.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAEnE,sBAAsB;AACtB,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC;KAClC,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,wBAAwB;AACxB,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC;AAEZ,wBAAwB;AACxB,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC;KACpC,MAAM,CAAC;IACN,WAAW,EAAE,cAAc,CAAC,QAAQ,CAAC,oDAAoD,CAAC;IAC1F,WAAW,EAAE,cAAc,CAAC,QAAQ,CAAC,qDAAqD,CAAC;IAC3F,eAAe,EAAE,oBAAoB;CACtC,CAAC;KACD,MAAM,EAAE,CAAC"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* pdfjs-dist wrapper service.
|
|
3
|
+
*
|
|
4
|
+
* Centralizes all pdfjs-dist interactions for reuse across tools.
|
|
5
|
+
*/
|
|
6
|
+
import { type PDFDocumentProxy } from 'pdfjs-dist/legacy/build/pdf.mjs';
|
|
7
|
+
import type { AnnotationsAnalysis, ImageExtractionResult, PageText, PdfMetadata, SearchMatch, TagsAnalysis } from '../types.js';
|
|
8
|
+
/**
|
|
9
|
+
* Load a PDF document from a file path.
|
|
10
|
+
*/
|
|
11
|
+
export declare function loadDocument(filePath: string): Promise<PDFDocumentProxy>;
|
|
12
|
+
/**
|
|
13
|
+
* Load a PDF document from a Uint8Array.
|
|
14
|
+
*/
|
|
15
|
+
export declare function loadDocumentFromData(data: Uint8Array): Promise<PDFDocumentProxy>;
|
|
16
|
+
/**
|
|
17
|
+
* Get full metadata from a PDF document.
|
|
18
|
+
*/
|
|
19
|
+
export declare function getMetadata(filePath: string): Promise<PdfMetadata>;
|
|
20
|
+
/**
|
|
21
|
+
* Get full metadata from a pre-loaded PDFDocumentProxy.
|
|
22
|
+
* Does NOT destroy the document — caller is responsible for lifecycle.
|
|
23
|
+
*/
|
|
24
|
+
export declare function getMetadataFromDoc(doc: PDFDocumentProxy, filePath: string): Promise<PdfMetadata>;
|
|
25
|
+
/**
|
|
26
|
+
* Extract text from a pre-loaded PDFDocumentProxy.
|
|
27
|
+
* Does NOT destroy the document — caller is responsible for lifecycle.
|
|
28
|
+
*/
|
|
29
|
+
export declare function extractTextFromDoc(doc: PDFDocumentProxy, pages?: string): Promise<PageText[]>;
|
|
30
|
+
/**
|
|
31
|
+
* Extract text from specified pages (1-based).
|
|
32
|
+
*/
|
|
33
|
+
export declare function extractText(filePath: string, pages?: string): Promise<PageText[]>;
|
|
34
|
+
/**
|
|
35
|
+
* Search for text across all pages.
|
|
36
|
+
*/
|
|
37
|
+
export declare function searchText(filePath: string, query: string, contextChars?: number, pages?: string): Promise<SearchMatch[]>;
|
|
38
|
+
/**
|
|
39
|
+
* Count images from a pre-loaded PDFDocumentProxy.
|
|
40
|
+
* Does NOT destroy the document — caller is responsible for lifecycle.
|
|
41
|
+
*/
|
|
42
|
+
export declare function countImagesFromDoc(doc: PDFDocumentProxy, pages?: string): Promise<number>;
|
|
43
|
+
/**
|
|
44
|
+
* Count images on specified pages.
|
|
45
|
+
*/
|
|
46
|
+
export declare function countImages(filePath: string, pages?: string): Promise<number>;
|
|
47
|
+
/**
|
|
48
|
+
* Extract images from specified pages as base64.
|
|
49
|
+
* Returns both extracted images and counts of detected/skipped images.
|
|
50
|
+
*/
|
|
51
|
+
export declare function extractImages(filePath: string, pages?: string): Promise<ImageExtractionResult>;
|
|
52
|
+
/**
|
|
53
|
+
* Analyze Tagged PDF structure tree from a pre-loaded document.
|
|
54
|
+
* Does NOT destroy the document — caller is responsible for lifecycle.
|
|
55
|
+
*/
|
|
56
|
+
export declare function analyzeTagsFromDoc(doc: PDFDocumentProxy): Promise<TagsAnalysis>;
|
|
57
|
+
/**
|
|
58
|
+
* Analyze Tagged PDF structure tree.
|
|
59
|
+
*/
|
|
60
|
+
export declare function analyzeTags(filePath: string): Promise<TagsAnalysis>;
|
|
61
|
+
/**
|
|
62
|
+
* Analyze annotations across all pages.
|
|
63
|
+
*/
|
|
64
|
+
export declare function analyzeAnnotations(filePath: string, pages?: string): Promise<AnnotationsAnalysis>;
|
|
65
|
+
//# sourceMappingURL=pdfjs-service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pdfjs-service.d.ts","sourceRoot":"","sources":["../../src/services/pdfjs-service.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAGL,KAAK,gBAAgB,EAEtB,MAAM,iCAAiC,CAAC;AAIzC,OAAO,KAAK,EAEV,mBAAmB,EAEnB,qBAAqB,EACrB,QAAQ,EACR,WAAW,EACX,WAAW,EAEX,YAAY,EACb,MAAM,aAAa,CAAC;AAUrB;;GAEG;AACH,wBAAsB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAI9E;AAED;;GAEG;AACH,wBAAsB,oBAAoB,CAAC,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAGtF;AAED;;GAEG;AACH,wBAAsB,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,WAAW,CAAC,CAOxE;AAED;;;GAGG;AACH,wBAAsB,kBAAkB,CACtC,GAAG,EAAE,gBAAgB,EACrB,QAAQ,EAAE,MAAM,GACf,OAAO,CAAC,WAAW,CAAC,CA6BtB;AAED;;;GAGG;AACH,wBAAsB,kBAAkB,CACtC,GAAG,EAAE,gBAAgB,EACrB,KAAK,CAAC,EAAE,MAAM,GACb,OAAO,CAAC,QAAQ,EAAE,CAAC,CAarB;AAED;;GAEG;AACH,wBAAsB,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC,CAQvF;AAED;;GAEG;AACH,wBAAsB,UAAU,CAC9B,QAAQ,EAAE,MAAM,EAChB,KAAK,EAAE,MAAM,EACb,YAAY,GAAE,MAA+B,EAC7C,KAAK,CAAC,EAAE,MAAM,GACb,OAAO,CAAC,WAAW,EAAE,CAAC,CAsDxB;AAED;;;GAGG;AACH,wBAAsB,kBAAkB,CAAC,GAAG,EAAE,gBAAgB,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAmB/F;AAED;;GAEG;AACH,wBAAsB,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAQnF;AAED;;;GAGG;AACH,wBAAsB,aAAa,CACjC,QAAQ,EAAE,MAAM,EAChB,KAAK,CAAC,EAAE,MAAM,GACb,OAAO,CAAC,qBAAqB,CAAC,CAoEhC;AAgGD;;;GAGG;AACH,wBAAsB,kBAAkB,CAAC,GAAG,EAAE,gBAAgB,GAAG,OAAO,CAAC,YAAY,CAAC,CAmErF;AAED;;GAEG;AACH,wBAAsB,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,CAAC,CAOzE;AAED;;GAEG;AACH,wBAAsB,kBAAkB,CACtC,QAAQ,EAAE,MAAM,EAChB,KAAK,CAAC,EAAE,MAAM,GACb,OAAO,CAAC,mBAAmB,CAAC,CAmG9B"}
|