@abraca/schema 2.17.0 → 2.17.2

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 +3 -3
  2. 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
- name: "name";
1049
1048
  manual: "manual";
1049
+ name: "name";
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
- name: "name";
1098
1097
  manual: "manual";
1098
+ name: "name";
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" | "name" | "manual" | undefined;
1134
+ gallerySortBy?: "date" | "rating" | "manual" | "name" | undefined;
1135
1135
  };
1136
1136
  }>;
1137
1137
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abraca/schema",
3
- "version": "2.17.0",
3
+ "version": "2.17.2",
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.17.0"
34
+ "@abraca/plugin": "2.17.2"
35
35
  },
36
36
  "scripts": {
37
37
  "test": "node --no-warnings --conditions=source --experimental-transform-types --test 'tests/*.test.ts'",