@abraca/schema 2.15.0 → 2.17.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 +5 -5
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1983,10 +1983,10 @@ declare const ChartMeta: z.ZodObject<{
|
|
|
1983
1983
|
treemap: "treemap";
|
|
1984
1984
|
}>>;
|
|
1985
1985
|
chartMetric: z.ZodOptional<z.ZodEnum<{
|
|
1986
|
-
type: "type";
|
|
1987
|
-
value: "value";
|
|
1988
1986
|
priority: "priority";
|
|
1989
1987
|
status: "status";
|
|
1988
|
+
type: "type";
|
|
1989
|
+
value: "value";
|
|
1990
1990
|
tag: "tag";
|
|
1991
1991
|
activity: "activity";
|
|
1992
1992
|
completion: "completion";
|
|
@@ -2037,10 +2037,10 @@ declare const Chart: DocType<"chart", z.ZodObject<{
|
|
|
2037
2037
|
treemap: "treemap";
|
|
2038
2038
|
}>>;
|
|
2039
2039
|
chartMetric: z.ZodOptional<z.ZodEnum<{
|
|
2040
|
-
type: "type";
|
|
2041
|
-
value: "value";
|
|
2042
2040
|
priority: "priority";
|
|
2043
2041
|
status: "status";
|
|
2042
|
+
type: "type";
|
|
2043
|
+
value: "value";
|
|
2044
2044
|
tag: "tag";
|
|
2045
2045
|
activity: "activity";
|
|
2046
2046
|
completion: "completion";
|
|
@@ -2085,7 +2085,7 @@ declare const chartSchema: SchemaRegistry<{
|
|
|
2085
2085
|
coverMimeType?: string | undefined;
|
|
2086
2086
|
__schemaVersion?: number | undefined;
|
|
2087
2087
|
chartType?: "bar" | "stacked bar" | "line" | "donut" | "treemap" | undefined;
|
|
2088
|
-
chartMetric?: "
|
|
2088
|
+
chartMetric?: "priority" | "status" | "type" | "value" | "tag" | "activity" | "completion" | undefined;
|
|
2089
2089
|
chartColorScheme?: "default" | "warm" | "cool" | "mono" | undefined;
|
|
2090
2090
|
chartLimit?: number | undefined;
|
|
2091
2091
|
chartShowLegend?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abraca/schema",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.0",
|
|
4
4
|
"description": "One declaration of doc-types — generates TypeScript, JSON Schema, Rust, MCP tool, and Markdown reference output.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"yjs": "^13.6.8",
|
|
33
33
|
"zod": "^4.3.6",
|
|
34
|
-
"@abraca/plugin": "2.
|
|
34
|
+
"@abraca/plugin": "2.17.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"test": "node --no-warnings --conditions=source --experimental-transform-types --test 'tests/*.test.ts'",
|