seemore 1.11.1 → 1.12.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/dist/index.d.ts CHANGED
@@ -106,6 +106,7 @@ declare const configSchema: z.ZodObject<{
106
106
  "export-html": "export-html";
107
107
  }>>>;
108
108
  exclude: z.ZodDefault<z.ZodArray<z.ZodString>>;
109
+ include: z.ZodDefault<z.ZodArray<z.ZodString>>;
109
110
  auth: z.ZodPreprocess<z.ZodOptional<z.ZodObject<{
110
111
  id: z.ZodOptional<z.ZodString>;
111
112
  remember: z.ZodOptional<z.ZodString>;
@@ -170,6 +171,7 @@ interface ResolvedSeemoreConfig {
170
171
  search: SearchConfig;
171
172
  pageActions: ActionId[];
172
173
  exclude: string[];
174
+ include: string[];
173
175
  /** Present when the site is password-protected. Nothing here is ever sent to the browser. */
174
176
  auth?: {
175
177
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "seemore",
3
- "version": "1.11.1",
3
+ "version": "1.12.0",
4
4
  "description": "Let AI write the Markdown. Let seemore show it better — zero config documentation framework.",
5
5
  "license": "MIT",
6
6
  "type": "module",