@refrakt-md/types 0.10.1 → 0.11.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/cli-plugin.d.ts +48 -0
- package/dist/cli-plugin.d.ts.map +1 -0
- package/dist/cli-plugin.js +2 -0
- package/dist/cli-plugin.js.map +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/theme.d.ts +80 -16
- package/dist/theme.d.ts.map +1 -1
- package/package.json +4 -1
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import type { JSONSchema7 } from 'json-schema';
|
|
2
|
+
/**
|
|
3
|
+
* A single command contributed by a `cli-plugin` export.
|
|
4
|
+
*
|
|
5
|
+
* The minimum a plugin command must declare is `name`, `description`, and
|
|
6
|
+
* `handler`. The optional fields below let the command participate in the MCP
|
|
7
|
+
* server (SPEC-043) without changing how the CLI itself dispatches argv.
|
|
8
|
+
*/
|
|
9
|
+
export interface CliPluginCommand {
|
|
10
|
+
/** Subcommand name, used as `refrakt <namespace> <name>` and as the MCP
|
|
11
|
+
* tool's local name (final tool id is `<namespace>.<name>`). */
|
|
12
|
+
name: string;
|
|
13
|
+
/** One-line human description. Used in `--help` output and as the
|
|
14
|
+
* fallback MCP tool description when no input schema is provided. */
|
|
15
|
+
description: string;
|
|
16
|
+
/** Argv handler, invoked by the CLI. Receives the args after the
|
|
17
|
+
* subcommand name. */
|
|
18
|
+
handler: (args: string[]) => void | Promise<void>;
|
|
19
|
+
/** Optional JSON Schema for the structured input shape. Used by the MCP
|
|
20
|
+
* server to advertise this command as a typed tool. Ignored by the CLI
|
|
21
|
+
* itself, which always parses argv. */
|
|
22
|
+
inputSchema?: JSONSchema7;
|
|
23
|
+
/** Optional JSON Schema for the structured output shape. Used by MCP
|
|
24
|
+
* clients to validate or unpack the tool's result. Ignored by the CLI. */
|
|
25
|
+
outputSchema?: JSONSchema7;
|
|
26
|
+
/** Optional structured handler that bypasses argv parsing. When the MCP
|
|
27
|
+
* server has this, it calls it directly with the parsed input object.
|
|
28
|
+
* When absent, the MCP server falls back to argv-shimming via `handler`.
|
|
29
|
+
*
|
|
30
|
+
* New plugin commands should provide this for clean structured I/O. */
|
|
31
|
+
mcpHandler?: (input: unknown) => Promise<unknown>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* The shape of a `cli-plugin` module's default export. A package contributes
|
|
35
|
+
* commands by exporting an object of this shape from its `cli-plugin` entry
|
|
36
|
+
* (e.g., `@refrakt-md/plan/cli-plugin`).
|
|
37
|
+
*/
|
|
38
|
+
export interface CliPlugin {
|
|
39
|
+
/** Namespace under which the commands are dispatched. Becomes the first
|
|
40
|
+
* positional argument: `refrakt <namespace> <command>`. */
|
|
41
|
+
namespace: string;
|
|
42
|
+
/** Commands contributed by this plugin. */
|
|
43
|
+
commands: CliPluginCommand[];
|
|
44
|
+
/** Optional namespace-level description for help output. */
|
|
45
|
+
description?: string;
|
|
46
|
+
}
|
|
47
|
+
export type { JSONSchema7 } from 'json-schema';
|
|
48
|
+
//# sourceMappingURL=cli-plugin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli-plugin.d.ts","sourceRoot":"","sources":["../src/cli-plugin.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C;;;;;;GAMG;AACH,MAAM,WAAW,gBAAgB;IAChC;qEACiE;IACjE,IAAI,EAAE,MAAM,CAAC;IAEb;0EACsE;IACtE,WAAW,EAAE,MAAM,CAAC;IAEpB;2BACuB;IACvB,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAElD;;4CAEwC;IACxC,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;+EAC2E;IAC3E,YAAY,CAAC,EAAE,WAAW,CAAC;IAE3B;;;;4EAIwE;IACxE,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;CAClD;AAED;;;;GAIG;AACH,MAAM,WAAW,SAAS;IACzB;gEAC4D;IAC5D,SAAS,EAAE,MAAM,CAAC;IAElB,2CAA2C;IAC3C,QAAQ,EAAE,gBAAgB,EAAE,CAAC;IAE7B,4DAA4D;IAC5D,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB;AAID,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli-plugin.js","sourceRoot":"","sources":["../src/cli-plugin.ts"],"names":[],"mappings":""}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
export { Newable, NodeType, } from './interfaces.js';
|
|
2
2
|
export type { DesignTokens } from './tokens.js';
|
|
3
|
-
export type { RefraktConfig, ThemeManifest, LayoutDefinition, RouteRule, ComponentDefinition, } from './theme.js';
|
|
3
|
+
export type { RefraktConfig, SiteConfig, PlanConfig, ThemeManifest, LayoutDefinition, RouteRule, ComponentDefinition, } from './theme.js';
|
|
4
4
|
export type { RunePackage, RunePackageEntry, RunePackageAttribute, RuneExtension, RunePackageThemeConfig, } from './package.js';
|
|
5
5
|
export type { SerializedTag, RendererNode } from './serialized.js';
|
|
6
6
|
export type { BaseComponentProps, PageSectionSlots, SplitLayoutProperties, } from './component-props.js';
|
|
7
7
|
export type { ContentFieldDefinition, SequenceModel, HeadingExtractField, HeadingExtract, KnownSectionDefinition, SectionsModel, DelimitedZone, DelimitedModel, CustomModel, ItemFieldDefinition, ItemModel, AttributeInCondition, AttributeExistsCondition, HasChildCondition, ContentModelCondition, ConditionalContentModel, StructuralContentModel, ContentModel, ResolvedField, ResolvedContent, } from './content-model.js';
|
|
8
8
|
export type { TransformedPage, PipelineHeadingInfo, EntityRegistration, EntityRegistry, AggregatedData, PipelineContext, PipelineWarning, PackagePipelineHooks, } from './pipeline.js';
|
|
9
|
+
export type { CliPlugin, CliPluginCommand, JSONSchema7, } from './cli-plugin.js';
|
|
9
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,OAAO,EACP,QAAQ,GACT,MAAM,iBAAiB,CAAC;AAIzB,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAGhD,YAAY,EACV,aAAa,EACb,aAAa,EACb,gBAAgB,EAChB,SAAS,EACT,mBAAmB,GACpB,MAAM,YAAY,CAAC;AAGpB,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,oBAAoB,EACpB,aAAa,EACb,sBAAsB,GACvB,MAAM,cAAc,CAAC;AAGtB,YAAY,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAGnE,YAAY,EACX,kBAAkB,EAClB,gBAAgB,EAChB,qBAAqB,GACrB,MAAM,sBAAsB,CAAC;AAG9B,YAAY,EACX,sBAAsB,EACtB,aAAa,EACb,mBAAmB,EACnB,cAAc,EACd,sBAAsB,EACtB,aAAa,EACb,aAAa,EACb,cAAc,EACd,WAAW,EACX,mBAAmB,EACnB,SAAS,EACT,oBAAoB,EACpB,wBAAwB,EACxB,iBAAiB,EACjB,qBAAqB,EACrB,uBAAuB,EACvB,sBAAsB,EACtB,YAAY,EACZ,aAAa,EACb,eAAe,GACf,MAAM,oBAAoB,CAAC;AAG5B,YAAY,EACX,eAAe,EACf,mBAAmB,EACnB,kBAAkB,EAClB,cAAc,EACd,cAAc,EACd,eAAe,EACf,eAAe,EACf,oBAAoB,GACpB,MAAM,eAAe,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EACL,OAAO,EACP,QAAQ,GACT,MAAM,iBAAiB,CAAC;AAIzB,YAAY,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAGhD,YAAY,EACV,aAAa,EACb,UAAU,EACV,UAAU,EACV,aAAa,EACb,gBAAgB,EAChB,SAAS,EACT,mBAAmB,GACpB,MAAM,YAAY,CAAC;AAGpB,YAAY,EACV,WAAW,EACX,gBAAgB,EAChB,oBAAoB,EACpB,aAAa,EACb,sBAAsB,GACvB,MAAM,cAAc,CAAC;AAGtB,YAAY,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAGnE,YAAY,EACX,kBAAkB,EAClB,gBAAgB,EAChB,qBAAqB,GACrB,MAAM,sBAAsB,CAAC;AAG9B,YAAY,EACX,sBAAsB,EACtB,aAAa,EACb,mBAAmB,EACnB,cAAc,EACd,sBAAsB,EACtB,aAAa,EACb,aAAa,EACb,cAAc,EACd,WAAW,EACX,mBAAmB,EACnB,SAAS,EACT,oBAAoB,EACpB,wBAAwB,EACxB,iBAAiB,EACjB,qBAAqB,EACrB,uBAAuB,EACvB,sBAAsB,EACtB,YAAY,EACZ,aAAa,EACb,eAAe,GACf,MAAM,oBAAoB,CAAC;AAG5B,YAAY,EACX,eAAe,EACf,mBAAmB,EACnB,kBAAkB,EAClB,cAAc,EACd,cAAc,EACd,eAAe,EACf,eAAe,EACf,oBAAoB,GACpB,MAAM,eAAe,CAAC;AAGvB,YAAY,EACX,SAAS,EACT,gBAAgB,EAChB,WAAW,GACX,MAAM,iBAAiB,CAAC"}
|
package/dist/theme.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
|
|
1
|
+
/** Per-site configuration. A project may declare a single site (via `site`) or
|
|
2
|
+
* multiple named sites (via `sites: { name: SiteConfig }`).
|
|
3
|
+
* All fields except `contentDir`, `theme`, and `target` are optional. */
|
|
4
|
+
export interface SiteConfig {
|
|
3
5
|
/** Path to content directory, relative to project root */
|
|
4
6
|
contentDir: string;
|
|
5
7
|
/** Active theme — package name or relative path */
|
|
@@ -12,15 +14,14 @@ export interface RefraktConfig {
|
|
|
12
14
|
routeRules?: RouteRule[];
|
|
13
15
|
/** Syntax highlighting options */
|
|
14
16
|
highlight?: {
|
|
15
|
-
/** Shiki theme — a built-in theme name, or { light, dark } pair for dual themes */
|
|
16
17
|
theme?: string | {
|
|
17
18
|
light: string;
|
|
18
19
|
dark: string;
|
|
19
20
|
};
|
|
20
21
|
};
|
|
21
|
-
/** Custom icon SVGs — merged into the theme's global icon group
|
|
22
|
+
/** Custom icon SVGs — merged into the theme's global icon group */
|
|
22
23
|
icons?: Record<string, string>;
|
|
23
|
-
/** Community rune packages to
|
|
24
|
+
/** Community rune packages to merge into this site's ThemeConfig */
|
|
24
25
|
packages?: string[];
|
|
25
26
|
/** Project-level tint presets — merged after theme tints (last wins) */
|
|
26
27
|
tints?: Record<string, Record<string, unknown>>;
|
|
@@ -28,27 +29,90 @@ export interface RefraktConfig {
|
|
|
28
29
|
backgrounds?: Record<string, Record<string, unknown>>;
|
|
29
30
|
/** Sandbox configuration */
|
|
30
31
|
sandbox?: {
|
|
31
|
-
/** Directory for external sandbox examples, relative to project root. Default: './examples' */
|
|
32
32
|
examplesDir?: string;
|
|
33
33
|
};
|
|
34
|
-
/** Base URL for canonical links and og:url
|
|
34
|
+
/** Base URL for canonical links and og:url */
|
|
35
35
|
baseUrl?: string;
|
|
36
|
-
/** Human-readable site name for og:site_name
|
|
36
|
+
/** Human-readable site name for og:site_name */
|
|
37
37
|
siteName?: string;
|
|
38
|
-
/** Default og:image for pages without their own image
|
|
38
|
+
/** Default og:image for pages without their own image */
|
|
39
39
|
defaultImage?: string;
|
|
40
|
-
/** Site logo for Organization JSON-LD schema
|
|
40
|
+
/** Site logo for Organization JSON-LD schema */
|
|
41
41
|
logo?: string;
|
|
42
42
|
/** Rune resolution configuration */
|
|
43
43
|
runes?: {
|
|
44
|
-
/** Resolve name collisions between community packages: rune name → preferred package name.
|
|
45
|
-
* Use "__core__" as the value to force the core version when a package overrides it. */
|
|
46
44
|
prefer?: Record<string, string>;
|
|
47
|
-
/** Tag name aliases: alias → canonical rune name.
|
|
48
|
-
* Resolved after package merge — can alias any resolved name (core, package, or local). */
|
|
49
45
|
aliases?: Record<string, string>;
|
|
50
|
-
|
|
51
|
-
|
|
46
|
+
local?: Record<string, string>;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
/** Plan-management configuration. Optional — when absent, plan tooling falls
|
|
50
|
+
* back to autodetecting `./plan` from the working directory. */
|
|
51
|
+
export interface PlanConfig {
|
|
52
|
+
/** Plan directory, relative to project root. Default: `plan` */
|
|
53
|
+
dir?: string;
|
|
54
|
+
}
|
|
55
|
+
/** Project-level configuration (refrakt.config.json).
|
|
56
|
+
*
|
|
57
|
+
* Three valid input shapes — all collapse to the same normalized internal form:
|
|
58
|
+
* - **Flat** (legacy): top-level `contentDir`, `theme`, `target`, …
|
|
59
|
+
* - **Singular**: `{ "site": { contentDir, theme, target, … } }`
|
|
60
|
+
* - **Plural**: `{ "sites": { "main": { … }, "blog": { … } } }`
|
|
61
|
+
*
|
|
62
|
+
* Flat and singular shapes both collapse to `sites.default`. Plural projects
|
|
63
|
+
* must reference sites by name in CLI commands and adapter options. */
|
|
64
|
+
export interface RefraktConfig {
|
|
65
|
+
/** Plugin packages contributing CLI commands and MCP tools.
|
|
66
|
+
* When set, this is authoritative; when absent, plugin discovery falls back
|
|
67
|
+
* to scanning `package.json` for `@refrakt-md/*` dependencies. */
|
|
68
|
+
plugins?: string[];
|
|
69
|
+
/** Plan-management configuration. */
|
|
70
|
+
plan?: PlanConfig;
|
|
71
|
+
/** Singular-site declaration. Mutually exclusive with `sites`. */
|
|
72
|
+
site?: SiteConfig;
|
|
73
|
+
/** Multi-site declaration keyed by site name. Mutually exclusive with `site`. */
|
|
74
|
+
sites?: Record<string, SiteConfig>;
|
|
75
|
+
/** @deprecated Shorthand for `sites.default.contentDir` */
|
|
76
|
+
contentDir: string;
|
|
77
|
+
/** @deprecated Shorthand for `sites.default.theme` */
|
|
78
|
+
theme: string;
|
|
79
|
+
/** @deprecated Shorthand for `sites.default.target` */
|
|
80
|
+
target: string;
|
|
81
|
+
/** @deprecated Shorthand for `sites.default.overrides` */
|
|
82
|
+
overrides?: Record<string, string>;
|
|
83
|
+
/** @deprecated Shorthand for `sites.default.routeRules` */
|
|
84
|
+
routeRules?: RouteRule[];
|
|
85
|
+
/** @deprecated Shorthand for `sites.default.highlight` */
|
|
86
|
+
highlight?: {
|
|
87
|
+
theme?: string | {
|
|
88
|
+
light: string;
|
|
89
|
+
dark: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
/** @deprecated Shorthand for `sites.default.icons` */
|
|
93
|
+
icons?: Record<string, string>;
|
|
94
|
+
/** @deprecated Shorthand for `sites.default.packages` */
|
|
95
|
+
packages?: string[];
|
|
96
|
+
/** @deprecated Shorthand for `sites.default.tints` */
|
|
97
|
+
tints?: Record<string, Record<string, unknown>>;
|
|
98
|
+
/** @deprecated Shorthand for `sites.default.backgrounds` */
|
|
99
|
+
backgrounds?: Record<string, Record<string, unknown>>;
|
|
100
|
+
/** @deprecated Shorthand for `sites.default.sandbox` */
|
|
101
|
+
sandbox?: {
|
|
102
|
+
examplesDir?: string;
|
|
103
|
+
};
|
|
104
|
+
/** @deprecated Shorthand for `sites.default.baseUrl` */
|
|
105
|
+
baseUrl?: string;
|
|
106
|
+
/** @deprecated Shorthand for `sites.default.siteName` */
|
|
107
|
+
siteName?: string;
|
|
108
|
+
/** @deprecated Shorthand for `sites.default.defaultImage` */
|
|
109
|
+
defaultImage?: string;
|
|
110
|
+
/** @deprecated Shorthand for `sites.default.logo` */
|
|
111
|
+
logo?: string;
|
|
112
|
+
/** @deprecated Shorthand for `sites.default.runes` */
|
|
113
|
+
runes?: {
|
|
114
|
+
prefer?: Record<string, string>;
|
|
115
|
+
aliases?: Record<string, string>;
|
|
52
116
|
local?: Record<string, string>;
|
|
53
117
|
};
|
|
54
118
|
}
|
package/dist/theme.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../src/theme.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../src/theme.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refrakt-md/types",
|
|
3
3
|
"description": "Shared type definitions for refrakt.md",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -27,5 +27,8 @@
|
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "tsc"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@types/json-schema": "^7.0.15"
|
|
30
33
|
}
|
|
31
34
|
}
|