@abraca/schema 2.6.0 → 2.7.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 +3 -3
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -930,11 +930,11 @@ declare const GalleryMeta: z.ZodObject<{
930
930
  __schemaVersion: z.ZodOptional<z.ZodNumber>;
931
931
  galleryColumns: z.ZodOptional<z.ZodNumber>;
932
932
  galleryAspect: z.ZodOptional<z.ZodEnum<{
933
+ free: "free";
933
934
  square: "square";
934
935
  "4:3": "4:3";
935
936
  "3:2": "3:2";
936
937
  "16:9": "16:9";
937
- free: "free";
938
938
  }>>;
939
939
  galleryCardStyle: z.ZodOptional<z.ZodEnum<{
940
940
  default: "default";
@@ -979,11 +979,11 @@ declare const Gallery: DocType<"gallery", z.ZodObject<{
979
979
  __schemaVersion: z.ZodOptional<z.ZodNumber>;
980
980
  galleryColumns: z.ZodOptional<z.ZodNumber>;
981
981
  galleryAspect: z.ZodOptional<z.ZodEnum<{
982
+ free: "free";
982
983
  square: "square";
983
984
  "4:3": "4:3";
984
985
  "3:2": "3:2";
985
986
  "16:9": "16:9";
986
- free: "free";
987
987
  }>>;
988
988
  galleryCardStyle: z.ZodOptional<z.ZodEnum<{
989
989
  default: "default";
@@ -1028,7 +1028,7 @@ declare const gallerySchema: SchemaRegistry<{
1028
1028
  coverMimeType?: string | undefined;
1029
1029
  __schemaVersion?: number | undefined;
1030
1030
  galleryColumns?: number | undefined;
1031
- galleryAspect?: "square" | "4:3" | "3:2" | "16:9" | "free" | undefined;
1031
+ galleryAspect?: "free" | "square" | "4:3" | "3:2" | "16:9" | undefined;
1032
1032
  galleryCardStyle?: "default" | "compact" | "detailed" | undefined;
1033
1033
  galleryShowLabels?: boolean | undefined;
1034
1034
  gallerySortBy?: "date" | "rating" | "name" | "manual" | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abraca/schema",
3
- "version": "2.6.0",
3
+ "version": "2.7.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.6.0"
34
+ "@abraca/plugin": "2.7.0"
35
35
  },
36
36
  "scripts": {
37
37
  "test": "node --no-warnings --conditions=source --experimental-transform-types --test 'tests/*.test.ts'",