PluginProbe
Extendify / trunk
Extendify vtrunk
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
← All changes | src/AutoLaunch/fetchers/shape.js +5 -1 3.1.4 → trunk View file →
@@ -22,10 +22,14 @@
22 22 home: homeTemplateShape,
23 23 });
24 24
25 25 // get-images
26 +const libraryImageShape = z.looseObject({ url: z.string() });
26 27 export const getImagesShape = z.looseObject({
27 - siteImages: z.array(z.string()),
28 + siteImages: z.object({
29 + hero: z.array(libraryImageShape).default([]),
30 + general: z.array(libraryImageShape).default([]),
31 + }),
28 32 });
29 33
30 34 // get-logo
31 35 export const getLogoShape = z.looseObject({