@abraca/schema 2.20.0 → 2.21.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
|
@@ -1030,11 +1030,11 @@ declare const GalleryMeta: z.ZodObject<{
|
|
|
1030
1030
|
__schemaVersion: z.ZodOptional<z.ZodNumber>;
|
|
1031
1031
|
galleryColumns: z.ZodOptional<z.ZodNumber>;
|
|
1032
1032
|
galleryAspect: z.ZodOptional<z.ZodEnum<{
|
|
1033
|
-
free: "free";
|
|
1034
1033
|
square: "square";
|
|
1035
1034
|
"4:3": "4:3";
|
|
1036
1035
|
"3:2": "3:2";
|
|
1037
1036
|
"16:9": "16:9";
|
|
1037
|
+
free: "free";
|
|
1038
1038
|
}>>;
|
|
1039
1039
|
galleryCardStyle: z.ZodOptional<z.ZodEnum<{
|
|
1040
1040
|
default: "default";
|
|
@@ -1079,11 +1079,11 @@ declare const Gallery: DocType<"gallery", z.ZodObject<{
|
|
|
1079
1079
|
__schemaVersion: z.ZodOptional<z.ZodNumber>;
|
|
1080
1080
|
galleryColumns: z.ZodOptional<z.ZodNumber>;
|
|
1081
1081
|
galleryAspect: z.ZodOptional<z.ZodEnum<{
|
|
1082
|
-
free: "free";
|
|
1083
1082
|
square: "square";
|
|
1084
1083
|
"4:3": "4:3";
|
|
1085
1084
|
"3:2": "3:2";
|
|
1086
1085
|
"16:9": "16:9";
|
|
1086
|
+
free: "free";
|
|
1087
1087
|
}>>;
|
|
1088
1088
|
galleryCardStyle: z.ZodOptional<z.ZodEnum<{
|
|
1089
1089
|
default: "default";
|
|
@@ -1128,7 +1128,7 @@ declare const gallerySchema: SchemaRegistry<{
|
|
|
1128
1128
|
coverMimeType?: string | undefined;
|
|
1129
1129
|
__schemaVersion?: number | undefined;
|
|
1130
1130
|
galleryColumns?: number | undefined;
|
|
1131
|
-
galleryAspect?: "
|
|
1131
|
+
galleryAspect?: "square" | "4:3" | "3:2" | "16:9" | "free" | undefined;
|
|
1132
1132
|
galleryCardStyle?: "default" | "compact" | "detailed" | undefined;
|
|
1133
1133
|
galleryShowLabels?: boolean | undefined;
|
|
1134
1134
|
gallerySortBy?: "date" | "rating" | "name" | "manual" | undefined;
|
|
@@ -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.21.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.21.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"test": "node --no-warnings --conditions=source --experimental-transform-types --test 'tests/*.test.ts'",
|