@abraca/schema 2.17.2 → 2.19.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 +8 -8
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1045,8 +1045,8 @@ declare const GalleryMeta: z.ZodObject<{
|
|
|
1045
1045
|
gallerySortBy: z.ZodOptional<z.ZodEnum<{
|
|
1046
1046
|
date: "date";
|
|
1047
1047
|
rating: "rating";
|
|
1048
|
-
manual: "manual";
|
|
1049
1048
|
name: "name";
|
|
1049
|
+
manual: "manual";
|
|
1050
1050
|
}>>;
|
|
1051
1051
|
}, z.core.$strict>;
|
|
1052
1052
|
declare const Gallery: DocType<"gallery", z.ZodObject<{
|
|
@@ -1094,8 +1094,8 @@ declare const Gallery: DocType<"gallery", z.ZodObject<{
|
|
|
1094
1094
|
gallerySortBy: z.ZodOptional<z.ZodEnum<{
|
|
1095
1095
|
date: "date";
|
|
1096
1096
|
rating: "rating";
|
|
1097
|
-
manual: "manual";
|
|
1098
1097
|
name: "name";
|
|
1098
|
+
manual: "manual";
|
|
1099
1099
|
}>>;
|
|
1100
1100
|
}, z.core.$strict>, undefined>;
|
|
1101
1101
|
declare const gallerySchema: SchemaRegistry<{
|
|
@@ -1131,7 +1131,7 @@ declare const gallerySchema: SchemaRegistry<{
|
|
|
1131
1131
|
galleryAspect?: "square" | "4:3" | "3:2" | "16:9" | "free" | undefined;
|
|
1132
1132
|
galleryCardStyle?: "default" | "compact" | "detailed" | undefined;
|
|
1133
1133
|
galleryShowLabels?: boolean | undefined;
|
|
1134
|
-
gallerySortBy?: "date" | "rating" | "
|
|
1134
|
+
gallerySortBy?: "date" | "rating" | "name" | "manual" | undefined;
|
|
1135
1135
|
};
|
|
1136
1136
|
}>;
|
|
1137
1137
|
//#endregion
|
|
@@ -1983,10 +1983,10 @@ declare const ChartMeta: z.ZodObject<{
|
|
|
1983
1983
|
treemap: "treemap";
|
|
1984
1984
|
}>>;
|
|
1985
1985
|
chartMetric: z.ZodOptional<z.ZodEnum<{
|
|
1986
|
-
priority: "priority";
|
|
1987
|
-
status: "status";
|
|
1988
1986
|
type: "type";
|
|
1989
1987
|
value: "value";
|
|
1988
|
+
priority: "priority";
|
|
1989
|
+
status: "status";
|
|
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
|
-
priority: "priority";
|
|
2041
|
-
status: "status";
|
|
2042
2040
|
type: "type";
|
|
2043
2041
|
value: "value";
|
|
2042
|
+
priority: "priority";
|
|
2043
|
+
status: "status";
|
|
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?: "type" | "value" | "priority" | "status" | "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.19.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.19.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"test": "node --no-warnings --conditions=source --experimental-transform-types --test 'tests/*.test.ts'",
|