@commonpub/schema 0.16.0 → 0.18.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/README.md +2 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/layout.d.ts +698 -0
- package/dist/layout.d.ts.map +1 -0
- package/dist/layout.js +148 -0
- package/dist/layout.js.map +1 -0
- package/dist/openapi.d.ts.map +1 -1
- package/dist/openapi.js +122 -0
- package/dist/openapi.js.map +1 -1
- package/dist/sectionConfigs.d.ts +207 -0
- package/dist/sectionConfigs.d.ts.map +1 -0
- package/dist/sectionConfigs.js +179 -0
- package/dist/sectionConfigs.js.map +1 -0
- package/dist/validators.d.ts +509 -2
- package/dist/validators.d.ts.map +1 -1
- package/dist/validators.js +185 -0
- package/dist/validators.js.map +1 -1
- package/migrations/0005_wonderful_blue_marvel.sql +64 -0
- package/migrations/meta/0005_snapshot.json +10607 -0
- package/migrations/meta/_journal.json +7 -0
- package/package.json +1 -1
package/dist/validators.d.ts
CHANGED
|
@@ -814,10 +814,10 @@ export declare const contentFiltersSchema: z.ZodObject<{
|
|
|
814
814
|
search: z.ZodOptional<z.ZodString>;
|
|
815
815
|
tag: z.ZodOptional<z.ZodString>;
|
|
816
816
|
sort: z.ZodOptional<z.ZodEnum<{
|
|
817
|
-
featured: "featured";
|
|
818
|
-
editorial: "editorial";
|
|
819
817
|
recent: "recent";
|
|
820
818
|
popular: "popular";
|
|
819
|
+
featured: "featured";
|
|
820
|
+
editorial: "editorial";
|
|
821
821
|
}>>;
|
|
822
822
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
823
823
|
offset: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -925,4 +925,511 @@ export declare const createApiKeySchema: z.ZodObject<{
|
|
|
925
925
|
allowedOrigins: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
926
926
|
}, z.core.$strip>;
|
|
927
927
|
export type CreateApiKeyInput = z.infer<typeof createApiKeySchema>;
|
|
928
|
+
/** Slug for a custom theme ID — kebab/snake, lowercase, used in data-theme attr. */
|
|
929
|
+
export declare const customThemeIdSchema: z.ZodString;
|
|
930
|
+
/** Token name (without leading `--`). Permissive — we accept any kebab key
|
|
931
|
+
* so custom themes can introduce brand tokens (e.g. `deveco-portal-purple`)
|
|
932
|
+
* on top of the canonical TOKEN_NAMES list. */
|
|
933
|
+
export declare const themeTokenKeySchema: z.ZodString;
|
|
934
|
+
/** Token value — any CSS value, length-capped to keep the JSON sane. */
|
|
935
|
+
export declare const themeTokenValueSchema: z.ZodString;
|
|
936
|
+
export declare const themeTokenMapSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
937
|
+
export type ThemeTokenMap = z.infer<typeof themeTokenMapSchema>;
|
|
938
|
+
export declare const customThemeSchema: z.ZodObject<{
|
|
939
|
+
id: z.ZodString;
|
|
940
|
+
name: z.ZodString;
|
|
941
|
+
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
942
|
+
family: z.ZodString;
|
|
943
|
+
isDark: z.ZodBoolean;
|
|
944
|
+
pairId: z.ZodOptional<z.ZodString>;
|
|
945
|
+
parentTheme: z.ZodDefault<z.ZodString>;
|
|
946
|
+
tokens: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
947
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
948
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
949
|
+
}, z.core.$strip>;
|
|
950
|
+
export type CustomThemeInput = z.infer<typeof customThemeSchema>;
|
|
951
|
+
/** PUT body — accepts partial updates. */
|
|
952
|
+
export declare const customThemeUpdateSchema: z.ZodObject<{
|
|
953
|
+
id: z.ZodNonOptional<z.ZodOptional<z.ZodString>>;
|
|
954
|
+
name: z.ZodOptional<z.ZodString>;
|
|
955
|
+
description: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
|
|
956
|
+
family: z.ZodOptional<z.ZodString>;
|
|
957
|
+
isDark: z.ZodOptional<z.ZodBoolean>;
|
|
958
|
+
pairId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
959
|
+
parentTheme: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
960
|
+
tokens: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
961
|
+
createdAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
962
|
+
updatedAt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
963
|
+
}, z.core.$strip>;
|
|
964
|
+
/** Exported theme file format. Version bumped when the schema breaks. */
|
|
965
|
+
export declare const themeExportSchema: z.ZodObject<{
|
|
966
|
+
formatVersion: z.ZodLiteral<1>;
|
|
967
|
+
exportedAt: z.ZodString;
|
|
968
|
+
theme: z.ZodObject<{
|
|
969
|
+
id: z.ZodString;
|
|
970
|
+
name: z.ZodString;
|
|
971
|
+
description: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
972
|
+
family: z.ZodString;
|
|
973
|
+
isDark: z.ZodBoolean;
|
|
974
|
+
pairId: z.ZodOptional<z.ZodString>;
|
|
975
|
+
parentTheme: z.ZodDefault<z.ZodString>;
|
|
976
|
+
tokens: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
977
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
978
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
979
|
+
}, z.core.$strip>;
|
|
980
|
+
}, z.core.$strip>;
|
|
981
|
+
export type ThemeExport = z.infer<typeof themeExportSchema>;
|
|
982
|
+
/** Layout scope — one row per scope key. */
|
|
983
|
+
export declare const layoutScopeSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
984
|
+
type: z.ZodLiteral<"route">;
|
|
985
|
+
path: z.ZodString;
|
|
986
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
987
|
+
type: z.ZodLiteral<"virtual">;
|
|
988
|
+
key: z.ZodEnum<{
|
|
989
|
+
__footer: "__footer";
|
|
990
|
+
"__not-found": "__not-found";
|
|
991
|
+
__error: "__error";
|
|
992
|
+
}>;
|
|
993
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
994
|
+
type: z.ZodLiteral<"custom-page">;
|
|
995
|
+
path: z.ZodString;
|
|
996
|
+
}, z.core.$strip>], "type">;
|
|
997
|
+
export type LayoutScope = z.infer<typeof layoutScopeSchema>;
|
|
998
|
+
/** Per-page SEO + access metadata. Required for custom-page scope. */
|
|
999
|
+
export declare const pageMetaSchema: z.ZodObject<{
|
|
1000
|
+
title: z.ZodString;
|
|
1001
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1002
|
+
ogImage: z.ZodOptional<z.ZodString>;
|
|
1003
|
+
noindex: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1004
|
+
ogType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1005
|
+
article: "article";
|
|
1006
|
+
website: "website";
|
|
1007
|
+
profile: "profile";
|
|
1008
|
+
}>>>;
|
|
1009
|
+
access: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1010
|
+
admin: "admin";
|
|
1011
|
+
public: "public";
|
|
1012
|
+
members: "members";
|
|
1013
|
+
}>>>;
|
|
1014
|
+
frame: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1015
|
+
narrow: "narrow";
|
|
1016
|
+
wide: "wide";
|
|
1017
|
+
"two-column": "two-column";
|
|
1018
|
+
"three-column": "three-column";
|
|
1019
|
+
"sidebar-left": "sidebar-left";
|
|
1020
|
+
"sidebar-right": "sidebar-right";
|
|
1021
|
+
}>>>;
|
|
1022
|
+
}, z.core.$strip>;
|
|
1023
|
+
export type PageMetaInput = z.infer<typeof pageMetaSchema>;
|
|
1024
|
+
/** Per-section conditional visibility. */
|
|
1025
|
+
export declare const sectionVisibilitySchema: z.ZodObject<{
|
|
1026
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1027
|
+
member: "member";
|
|
1028
|
+
pro: "pro";
|
|
1029
|
+
verified: "verified";
|
|
1030
|
+
staff: "staff";
|
|
1031
|
+
admin: "admin";
|
|
1032
|
+
anonymous: "anonymous";
|
|
1033
|
+
}>>>;
|
|
1034
|
+
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1035
|
+
hideAt: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1036
|
+
sm: "sm";
|
|
1037
|
+
md: "md";
|
|
1038
|
+
lg: "lg";
|
|
1039
|
+
}>>>;
|
|
1040
|
+
}, z.core.$strip>;
|
|
1041
|
+
export type SectionVisibility = z.infer<typeof sectionVisibilitySchema>;
|
|
1042
|
+
/** Responsive colSpan overrides — lg ↦ md ↦ sm ↦ base colSpan. */
|
|
1043
|
+
export declare const sectionResponsiveSchema: z.ZodObject<{
|
|
1044
|
+
sm: z.ZodOptional<z.ZodNumber>;
|
|
1045
|
+
md: z.ZodOptional<z.ZodNumber>;
|
|
1046
|
+
lg: z.ZodOptional<z.ZodNumber>;
|
|
1047
|
+
}, z.core.$strip>;
|
|
1048
|
+
export type SectionResponsive = z.infer<typeof sectionResponsiveSchema>;
|
|
1049
|
+
/** A single section — placed in a row, occupies `colSpan` of 12. */
|
|
1050
|
+
export declare const layoutSectionSchema: z.ZodObject<{
|
|
1051
|
+
id: z.ZodString;
|
|
1052
|
+
order: z.ZodNumber;
|
|
1053
|
+
type: z.ZodString;
|
|
1054
|
+
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1055
|
+
colSpan: z.ZodDefault<z.ZodNumber>;
|
|
1056
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1057
|
+
sm: z.ZodOptional<z.ZodNumber>;
|
|
1058
|
+
md: z.ZodOptional<z.ZodNumber>;
|
|
1059
|
+
lg: z.ZodOptional<z.ZodNumber>;
|
|
1060
|
+
}, z.core.$strip>>;
|
|
1061
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1062
|
+
visibility: z.ZodOptional<z.ZodObject<{
|
|
1063
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1064
|
+
member: "member";
|
|
1065
|
+
pro: "pro";
|
|
1066
|
+
verified: "verified";
|
|
1067
|
+
staff: "staff";
|
|
1068
|
+
admin: "admin";
|
|
1069
|
+
anonymous: "anonymous";
|
|
1070
|
+
}>>>;
|
|
1071
|
+
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1072
|
+
hideAt: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1073
|
+
sm: "sm";
|
|
1074
|
+
md: "md";
|
|
1075
|
+
lg: "lg";
|
|
1076
|
+
}>>>;
|
|
1077
|
+
}, z.core.$strip>>;
|
|
1078
|
+
schemaVersion: z.ZodDefault<z.ZodNumber>;
|
|
1079
|
+
}, z.core.$strip>;
|
|
1080
|
+
export type LayoutSectionInput = z.infer<typeof layoutSectionSchema>;
|
|
1081
|
+
/** Row-level styling (gap, alignment, background, vertical padding). */
|
|
1082
|
+
export declare const layoutRowConfigSchema: z.ZodObject<{
|
|
1083
|
+
gap: z.ZodOptional<z.ZodEnum<{
|
|
1084
|
+
none: "none";
|
|
1085
|
+
sm: "sm";
|
|
1086
|
+
md: "md";
|
|
1087
|
+
lg: "lg";
|
|
1088
|
+
}>>;
|
|
1089
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
1090
|
+
center: "center";
|
|
1091
|
+
start: "start";
|
|
1092
|
+
stretch: "stretch";
|
|
1093
|
+
}>>;
|
|
1094
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1095
|
+
paddingY: z.ZodOptional<z.ZodEnum<{
|
|
1096
|
+
none: "none";
|
|
1097
|
+
sm: "sm";
|
|
1098
|
+
md: "md";
|
|
1099
|
+
lg: "lg";
|
|
1100
|
+
xl: "xl";
|
|
1101
|
+
}>>;
|
|
1102
|
+
}, z.core.$strip>;
|
|
1103
|
+
export type LayoutRowConfig = z.infer<typeof layoutRowConfigSchema>;
|
|
1104
|
+
/** A row groups sections horizontally; sum of colSpans must be ≤ 12. */
|
|
1105
|
+
export declare const layoutRowSchema: z.ZodObject<{
|
|
1106
|
+
id: z.ZodString;
|
|
1107
|
+
order: z.ZodNumber;
|
|
1108
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1109
|
+
gap: z.ZodOptional<z.ZodEnum<{
|
|
1110
|
+
none: "none";
|
|
1111
|
+
sm: "sm";
|
|
1112
|
+
md: "md";
|
|
1113
|
+
lg: "lg";
|
|
1114
|
+
}>>;
|
|
1115
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
1116
|
+
center: "center";
|
|
1117
|
+
start: "start";
|
|
1118
|
+
stretch: "stretch";
|
|
1119
|
+
}>>;
|
|
1120
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1121
|
+
paddingY: z.ZodOptional<z.ZodEnum<{
|
|
1122
|
+
none: "none";
|
|
1123
|
+
sm: "sm";
|
|
1124
|
+
md: "md";
|
|
1125
|
+
lg: "lg";
|
|
1126
|
+
xl: "xl";
|
|
1127
|
+
}>>;
|
|
1128
|
+
}, z.core.$strip>>;
|
|
1129
|
+
sections: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1130
|
+
id: z.ZodString;
|
|
1131
|
+
order: z.ZodNumber;
|
|
1132
|
+
type: z.ZodString;
|
|
1133
|
+
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1134
|
+
colSpan: z.ZodDefault<z.ZodNumber>;
|
|
1135
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1136
|
+
sm: z.ZodOptional<z.ZodNumber>;
|
|
1137
|
+
md: z.ZodOptional<z.ZodNumber>;
|
|
1138
|
+
lg: z.ZodOptional<z.ZodNumber>;
|
|
1139
|
+
}, z.core.$strip>>;
|
|
1140
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1141
|
+
visibility: z.ZodOptional<z.ZodObject<{
|
|
1142
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1143
|
+
member: "member";
|
|
1144
|
+
pro: "pro";
|
|
1145
|
+
verified: "verified";
|
|
1146
|
+
staff: "staff";
|
|
1147
|
+
admin: "admin";
|
|
1148
|
+
anonymous: "anonymous";
|
|
1149
|
+
}>>>;
|
|
1150
|
+
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1151
|
+
hideAt: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1152
|
+
sm: "sm";
|
|
1153
|
+
md: "md";
|
|
1154
|
+
lg: "lg";
|
|
1155
|
+
}>>>;
|
|
1156
|
+
}, z.core.$strip>>;
|
|
1157
|
+
schemaVersion: z.ZodDefault<z.ZodNumber>;
|
|
1158
|
+
}, z.core.$strip>>>;
|
|
1159
|
+
}, z.core.$strip>;
|
|
1160
|
+
export type LayoutRowInput = z.infer<typeof layoutRowSchema>;
|
|
1161
|
+
/** A zone holds an ordered list of rows. */
|
|
1162
|
+
export declare const layoutZoneSchema: z.ZodObject<{
|
|
1163
|
+
zone: z.ZodString;
|
|
1164
|
+
rows: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1165
|
+
id: z.ZodString;
|
|
1166
|
+
order: z.ZodNumber;
|
|
1167
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1168
|
+
gap: z.ZodOptional<z.ZodEnum<{
|
|
1169
|
+
none: "none";
|
|
1170
|
+
sm: "sm";
|
|
1171
|
+
md: "md";
|
|
1172
|
+
lg: "lg";
|
|
1173
|
+
}>>;
|
|
1174
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
1175
|
+
center: "center";
|
|
1176
|
+
start: "start";
|
|
1177
|
+
stretch: "stretch";
|
|
1178
|
+
}>>;
|
|
1179
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
paddingY: z.ZodOptional<z.ZodEnum<{
|
|
1181
|
+
none: "none";
|
|
1182
|
+
sm: "sm";
|
|
1183
|
+
md: "md";
|
|
1184
|
+
lg: "lg";
|
|
1185
|
+
xl: "xl";
|
|
1186
|
+
}>>;
|
|
1187
|
+
}, z.core.$strip>>;
|
|
1188
|
+
sections: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1189
|
+
id: z.ZodString;
|
|
1190
|
+
order: z.ZodNumber;
|
|
1191
|
+
type: z.ZodString;
|
|
1192
|
+
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1193
|
+
colSpan: z.ZodDefault<z.ZodNumber>;
|
|
1194
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1195
|
+
sm: z.ZodOptional<z.ZodNumber>;
|
|
1196
|
+
md: z.ZodOptional<z.ZodNumber>;
|
|
1197
|
+
lg: z.ZodOptional<z.ZodNumber>;
|
|
1198
|
+
}, z.core.$strip>>;
|
|
1199
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1200
|
+
visibility: z.ZodOptional<z.ZodObject<{
|
|
1201
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1202
|
+
member: "member";
|
|
1203
|
+
pro: "pro";
|
|
1204
|
+
verified: "verified";
|
|
1205
|
+
staff: "staff";
|
|
1206
|
+
admin: "admin";
|
|
1207
|
+
anonymous: "anonymous";
|
|
1208
|
+
}>>>;
|
|
1209
|
+
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1210
|
+
hideAt: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1211
|
+
sm: "sm";
|
|
1212
|
+
md: "md";
|
|
1213
|
+
lg: "lg";
|
|
1214
|
+
}>>>;
|
|
1215
|
+
}, z.core.$strip>>;
|
|
1216
|
+
schemaVersion: z.ZodDefault<z.ZodNumber>;
|
|
1217
|
+
}, z.core.$strip>>>;
|
|
1218
|
+
}, z.core.$strip>>>;
|
|
1219
|
+
}, z.core.$strip>;
|
|
1220
|
+
export type LayoutZoneInput = z.infer<typeof layoutZoneSchema>;
|
|
1221
|
+
/** The full layout payload (read-side — includes server fields). */
|
|
1222
|
+
export declare const layoutSchema: z.ZodObject<{
|
|
1223
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1224
|
+
scope: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1225
|
+
type: z.ZodLiteral<"route">;
|
|
1226
|
+
path: z.ZodString;
|
|
1227
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1228
|
+
type: z.ZodLiteral<"virtual">;
|
|
1229
|
+
key: z.ZodEnum<{
|
|
1230
|
+
__footer: "__footer";
|
|
1231
|
+
"__not-found": "__not-found";
|
|
1232
|
+
__error: "__error";
|
|
1233
|
+
}>;
|
|
1234
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1235
|
+
type: z.ZodLiteral<"custom-page">;
|
|
1236
|
+
path: z.ZodString;
|
|
1237
|
+
}, z.core.$strip>], "type">;
|
|
1238
|
+
name: z.ZodString;
|
|
1239
|
+
pageMeta: z.ZodOptional<z.ZodObject<{
|
|
1240
|
+
title: z.ZodString;
|
|
1241
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1242
|
+
ogImage: z.ZodOptional<z.ZodString>;
|
|
1243
|
+
noindex: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1244
|
+
ogType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1245
|
+
article: "article";
|
|
1246
|
+
website: "website";
|
|
1247
|
+
profile: "profile";
|
|
1248
|
+
}>>>;
|
|
1249
|
+
access: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1250
|
+
admin: "admin";
|
|
1251
|
+
public: "public";
|
|
1252
|
+
members: "members";
|
|
1253
|
+
}>>>;
|
|
1254
|
+
frame: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1255
|
+
narrow: "narrow";
|
|
1256
|
+
wide: "wide";
|
|
1257
|
+
"two-column": "two-column";
|
|
1258
|
+
"three-column": "three-column";
|
|
1259
|
+
"sidebar-left": "sidebar-left";
|
|
1260
|
+
"sidebar-right": "sidebar-right";
|
|
1261
|
+
}>>>;
|
|
1262
|
+
}, z.core.$strip>>;
|
|
1263
|
+
zones: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1264
|
+
zone: z.ZodString;
|
|
1265
|
+
rows: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1266
|
+
id: z.ZodString;
|
|
1267
|
+
order: z.ZodNumber;
|
|
1268
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1269
|
+
gap: z.ZodOptional<z.ZodEnum<{
|
|
1270
|
+
none: "none";
|
|
1271
|
+
sm: "sm";
|
|
1272
|
+
md: "md";
|
|
1273
|
+
lg: "lg";
|
|
1274
|
+
}>>;
|
|
1275
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
1276
|
+
center: "center";
|
|
1277
|
+
start: "start";
|
|
1278
|
+
stretch: "stretch";
|
|
1279
|
+
}>>;
|
|
1280
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1281
|
+
paddingY: z.ZodOptional<z.ZodEnum<{
|
|
1282
|
+
none: "none";
|
|
1283
|
+
sm: "sm";
|
|
1284
|
+
md: "md";
|
|
1285
|
+
lg: "lg";
|
|
1286
|
+
xl: "xl";
|
|
1287
|
+
}>>;
|
|
1288
|
+
}, z.core.$strip>>;
|
|
1289
|
+
sections: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1290
|
+
id: z.ZodString;
|
|
1291
|
+
order: z.ZodNumber;
|
|
1292
|
+
type: z.ZodString;
|
|
1293
|
+
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1294
|
+
colSpan: z.ZodDefault<z.ZodNumber>;
|
|
1295
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1296
|
+
sm: z.ZodOptional<z.ZodNumber>;
|
|
1297
|
+
md: z.ZodOptional<z.ZodNumber>;
|
|
1298
|
+
lg: z.ZodOptional<z.ZodNumber>;
|
|
1299
|
+
}, z.core.$strip>>;
|
|
1300
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1301
|
+
visibility: z.ZodOptional<z.ZodObject<{
|
|
1302
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1303
|
+
member: "member";
|
|
1304
|
+
pro: "pro";
|
|
1305
|
+
verified: "verified";
|
|
1306
|
+
staff: "staff";
|
|
1307
|
+
admin: "admin";
|
|
1308
|
+
anonymous: "anonymous";
|
|
1309
|
+
}>>>;
|
|
1310
|
+
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1311
|
+
hideAt: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1312
|
+
sm: "sm";
|
|
1313
|
+
md: "md";
|
|
1314
|
+
lg: "lg";
|
|
1315
|
+
}>>>;
|
|
1316
|
+
}, z.core.$strip>>;
|
|
1317
|
+
schemaVersion: z.ZodDefault<z.ZodNumber>;
|
|
1318
|
+
}, z.core.$strip>>>;
|
|
1319
|
+
}, z.core.$strip>>>;
|
|
1320
|
+
}, z.core.$strip>>>;
|
|
1321
|
+
state: z.ZodDefault<z.ZodEnum<{
|
|
1322
|
+
draft: "draft";
|
|
1323
|
+
published: "published";
|
|
1324
|
+
}>>;
|
|
1325
|
+
publishedVersionId: z.ZodOptional<z.ZodString>;
|
|
1326
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
1327
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
1328
|
+
}, z.core.$strip>;
|
|
1329
|
+
export type LayoutInput = z.infer<typeof layoutSchema>;
|
|
1330
|
+
/** Body shape for POST/PUT — server generates UUIDs + renumbers positions + sets timestamps. */
|
|
1331
|
+
export declare const layoutCreateSchema: z.ZodObject<{
|
|
1332
|
+
name: z.ZodString;
|
|
1333
|
+
pageMeta: z.ZodOptional<z.ZodObject<{
|
|
1334
|
+
title: z.ZodString;
|
|
1335
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1336
|
+
ogImage: z.ZodOptional<z.ZodString>;
|
|
1337
|
+
noindex: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1338
|
+
ogType: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1339
|
+
article: "article";
|
|
1340
|
+
website: "website";
|
|
1341
|
+
profile: "profile";
|
|
1342
|
+
}>>>;
|
|
1343
|
+
access: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1344
|
+
admin: "admin";
|
|
1345
|
+
public: "public";
|
|
1346
|
+
members: "members";
|
|
1347
|
+
}>>>;
|
|
1348
|
+
frame: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1349
|
+
narrow: "narrow";
|
|
1350
|
+
wide: "wide";
|
|
1351
|
+
"two-column": "two-column";
|
|
1352
|
+
"three-column": "three-column";
|
|
1353
|
+
"sidebar-left": "sidebar-left";
|
|
1354
|
+
"sidebar-right": "sidebar-right";
|
|
1355
|
+
}>>>;
|
|
1356
|
+
}, z.core.$strip>>;
|
|
1357
|
+
state: z.ZodDefault<z.ZodEnum<{
|
|
1358
|
+
draft: "draft";
|
|
1359
|
+
published: "published";
|
|
1360
|
+
}>>;
|
|
1361
|
+
scope: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1362
|
+
type: z.ZodLiteral<"route">;
|
|
1363
|
+
path: z.ZodString;
|
|
1364
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1365
|
+
type: z.ZodLiteral<"virtual">;
|
|
1366
|
+
key: z.ZodEnum<{
|
|
1367
|
+
__footer: "__footer";
|
|
1368
|
+
"__not-found": "__not-found";
|
|
1369
|
+
__error: "__error";
|
|
1370
|
+
}>;
|
|
1371
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1372
|
+
type: z.ZodLiteral<"custom-page">;
|
|
1373
|
+
path: z.ZodString;
|
|
1374
|
+
}, z.core.$strip>], "type">;
|
|
1375
|
+
zones: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1376
|
+
zone: z.ZodString;
|
|
1377
|
+
rows: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1378
|
+
id: z.ZodString;
|
|
1379
|
+
order: z.ZodNumber;
|
|
1380
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1381
|
+
gap: z.ZodOptional<z.ZodEnum<{
|
|
1382
|
+
none: "none";
|
|
1383
|
+
sm: "sm";
|
|
1384
|
+
md: "md";
|
|
1385
|
+
lg: "lg";
|
|
1386
|
+
}>>;
|
|
1387
|
+
align: z.ZodOptional<z.ZodEnum<{
|
|
1388
|
+
center: "center";
|
|
1389
|
+
start: "start";
|
|
1390
|
+
stretch: "stretch";
|
|
1391
|
+
}>>;
|
|
1392
|
+
background: z.ZodOptional<z.ZodString>;
|
|
1393
|
+
paddingY: z.ZodOptional<z.ZodEnum<{
|
|
1394
|
+
none: "none";
|
|
1395
|
+
sm: "sm";
|
|
1396
|
+
md: "md";
|
|
1397
|
+
lg: "lg";
|
|
1398
|
+
xl: "xl";
|
|
1399
|
+
}>>;
|
|
1400
|
+
}, z.core.$strip>>;
|
|
1401
|
+
sections: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1402
|
+
id: z.ZodString;
|
|
1403
|
+
order: z.ZodNumber;
|
|
1404
|
+
type: z.ZodString;
|
|
1405
|
+
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1406
|
+
colSpan: z.ZodDefault<z.ZodNumber>;
|
|
1407
|
+
responsive: z.ZodOptional<z.ZodObject<{
|
|
1408
|
+
sm: z.ZodOptional<z.ZodNumber>;
|
|
1409
|
+
md: z.ZodOptional<z.ZodNumber>;
|
|
1410
|
+
lg: z.ZodOptional<z.ZodNumber>;
|
|
1411
|
+
}, z.core.$strip>>;
|
|
1412
|
+
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
1413
|
+
visibility: z.ZodOptional<z.ZodObject<{
|
|
1414
|
+
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1415
|
+
member: "member";
|
|
1416
|
+
pro: "pro";
|
|
1417
|
+
verified: "verified";
|
|
1418
|
+
staff: "staff";
|
|
1419
|
+
admin: "admin";
|
|
1420
|
+
anonymous: "anonymous";
|
|
1421
|
+
}>>>;
|
|
1422
|
+
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1423
|
+
hideAt: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1424
|
+
sm: "sm";
|
|
1425
|
+
md: "md";
|
|
1426
|
+
lg: "lg";
|
|
1427
|
+
}>>>;
|
|
1428
|
+
}, z.core.$strip>>;
|
|
1429
|
+
schemaVersion: z.ZodDefault<z.ZodNumber>;
|
|
1430
|
+
}, z.core.$strip>>>;
|
|
1431
|
+
}, z.core.$strip>>>;
|
|
1432
|
+
}, z.core.$strip>>>;
|
|
1433
|
+
}, z.core.$strip>;
|
|
1434
|
+
export type LayoutCreateInput = z.infer<typeof layoutCreateSchema>;
|
|
928
1435
|
//# sourceMappingURL=validators.d.ts.map
|
package/dist/validators.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../src/validators.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../src/validators.ts"],"names":[],"mappings":"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"}
|