@abraca/schema 2.9.0 → 2.10.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -8
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -945,8 +945,8 @@ declare const GalleryMeta: z.ZodObject<{
945
945
  gallerySortBy: z.ZodOptional<z.ZodEnum<{
946
946
  date: "date";
947
947
  rating: "rating";
948
- name: "name";
949
948
  manual: "manual";
949
+ name: "name";
950
950
  }>>;
951
951
  }, z.core.$strict>;
952
952
  declare const Gallery: DocType<"gallery", z.ZodObject<{
@@ -994,8 +994,8 @@ declare const Gallery: DocType<"gallery", z.ZodObject<{
994
994
  gallerySortBy: z.ZodOptional<z.ZodEnum<{
995
995
  date: "date";
996
996
  rating: "rating";
997
- name: "name";
998
997
  manual: "manual";
998
+ name: "name";
999
999
  }>>;
1000
1000
  }, z.core.$strict>, undefined>;
1001
1001
  declare const gallerySchema: SchemaRegistry<{
@@ -1031,7 +1031,7 @@ declare const gallerySchema: SchemaRegistry<{
1031
1031
  galleryAspect?: "square" | "4:3" | "3:2" | "16:9" | "free" | undefined;
1032
1032
  galleryCardStyle?: "default" | "compact" | "detailed" | undefined;
1033
1033
  galleryShowLabels?: boolean | undefined;
1034
- gallerySortBy?: "date" | "rating" | "name" | "manual" | undefined;
1034
+ gallerySortBy?: "date" | "rating" | "manual" | "name" | undefined;
1035
1035
  };
1036
1036
  }>;
1037
1037
  //#endregion
@@ -1883,10 +1883,10 @@ declare const ChartMeta: z.ZodObject<{
1883
1883
  treemap: "treemap";
1884
1884
  }>>;
1885
1885
  chartMetric: z.ZodOptional<z.ZodEnum<{
1886
- type: "type";
1887
- value: "value";
1888
1886
  priority: "priority";
1889
1887
  status: "status";
1888
+ type: "type";
1889
+ value: "value";
1890
1890
  tag: "tag";
1891
1891
  activity: "activity";
1892
1892
  completion: "completion";
@@ -1937,10 +1937,10 @@ declare const Chart: DocType<"chart", z.ZodObject<{
1937
1937
  treemap: "treemap";
1938
1938
  }>>;
1939
1939
  chartMetric: z.ZodOptional<z.ZodEnum<{
1940
- type: "type";
1941
- value: "value";
1942
1940
  priority: "priority";
1943
1941
  status: "status";
1942
+ type: "type";
1943
+ value: "value";
1944
1944
  tag: "tag";
1945
1945
  activity: "activity";
1946
1946
  completion: "completion";
@@ -1985,7 +1985,7 @@ declare const chartSchema: SchemaRegistry<{
1985
1985
  coverMimeType?: string | undefined;
1986
1986
  __schemaVersion?: number | undefined;
1987
1987
  chartType?: "bar" | "stacked bar" | "line" | "donut" | "treemap" | undefined;
1988
- chartMetric?: "type" | "value" | "priority" | "status" | "tag" | "activity" | "completion" | undefined;
1988
+ chartMetric?: "priority" | "status" | "type" | "value" | "tag" | "activity" | "completion" | undefined;
1989
1989
  chartColorScheme?: "default" | "warm" | "cool" | "mono" | undefined;
1990
1990
  chartLimit?: number | undefined;
1991
1991
  chartShowLegend?: boolean | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abraca/schema",
3
- "version": "2.9.0",
3
+ "version": "2.10.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.9.0"
34
+ "@abraca/plugin": "2.10.0"
35
35
  },
36
36
  "scripts": {
37
37
  "test": "node --no-warnings --conditions=source --experimental-transform-types --test 'tests/*.test.ts'",