@abraca/schema 2.14.0 → 2.16.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 +3 -3
- 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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abraca/schema",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.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.16.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"test": "node --no-warnings --conditions=source --experimental-transform-types --test 'tests/*.test.ts'",
|