@rizom/site-rizom-ai 0.2.0-alpha.243 → 0.2.0-alpha.244

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 CHANGED
@@ -125,7 +125,7 @@ interface SectionMeta {
125
125
  * A schema-first content section. Its component props are inferred from the
126
126
  * same schema used by runtime validation, markdown formatting, and editing.
127
127
  */
128
- interface SiteSectionDefinition<S extends z.ZodType = z.ZodType> extends SectionMeta {
128
+ interface SiteSectionDefinition<S extends z.ZodType = z.ZodType<JsonObject>> extends SectionMeta {
129
129
  schema: S;
130
130
  component: ComponentType<z.output<S>>;
131
131
  }
@@ -201,7 +201,7 @@ interface SiteDefinition {
201
201
  /** Static assets to write into the site output directory at build time. */
202
202
  staticAssets?: Record<string, string> | undefined;
203
203
  }
204
- type SiteDefinitionOverrides = Partial<SiteDefinition>;
204
+ type SiteDefinitionOverrides = { [K in keyof SiteDefinition]?: SiteDefinition[K] | undefined; };
205
205
  //#endregion
206
206
  //#region src/rizom/contracts.d.ts
207
207
  interface RizomLink {
@@ -445,10 +445,13 @@ declare const aiRoutes: RouteDefinitionInput[];
445
445
  */
446
446
  declare const homeSections: SiteSectionGroup;
447
447
  //#endregion
448
+ //#region src/living-memory.d.ts
449
+ declare const livingMemorySections: SiteSectionGroup;
450
+ //#endregion
448
451
  //#region src/work.d.ts
449
452
  declare const workSections: SiteSectionGroup;
450
453
  //#endregion
451
454
  //#region src/foundation.d.ts
452
455
  declare const foundationSections: SiteSectionGroup;
453
456
  //#endregion
454
- export { Badge, type BadgeProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, type CreateRizomSiteOptions, DefaultRizomLayout, Divider, type DividerProps, Ecosystem, type EcosystemCard, type EcosystemContent, type EntityDisplayEntry, Footer, GUTTER, Header, type RizomBrandSuffix, type RizomFooterTagline, RizomFrame, type RizomFrameProps, type RizomLayoutProps, type RizomLink, type RizomSideNavItem, type RouteDefinitionInput, Section, type SectionDefinitionInput, type SectionProps, SideNav, type SiteContentArrayFieldDefinition, type SiteContentDefinition, type SiteContentEnumFieldDefinition, type SiteContentFieldDefinition, type SiteContentNumberFieldDefinition, type SiteContentObjectFieldDefinition, type SiteContentSectionDefinition, type SiteContentStringFieldDefinition, type SiteDefinition, type SiteDefinitionOverrides, type SiteLayoutInfo, type SitePackage, Wordmark, type WordmarkProps, aiRoutes, createRizomSite, rizomAiSite as default, rizomAiSite, foundationSections, homeSections, renderHighlightedText, rizomBaseSite, socialLinksToRizomLinks, workSections };
457
+ export { Badge, type BadgeProps, Button, type ButtonProps, type ButtonSize, type ButtonVariant, type CreateRizomSiteOptions, DefaultRizomLayout, Divider, type DividerProps, Ecosystem, type EcosystemCard, type EcosystemContent, type EntityDisplayEntry, Footer, GUTTER, Header, type RizomBrandSuffix, type RizomFooterTagline, RizomFrame, type RizomFrameProps, type RizomLayoutProps, type RizomLink, type RizomSideNavItem, type RouteDefinitionInput, Section, type SectionDefinitionInput, type SectionProps, SideNav, type SiteContentArrayFieldDefinition, type SiteContentDefinition, type SiteContentEnumFieldDefinition, type SiteContentFieldDefinition, type SiteContentNumberFieldDefinition, type SiteContentObjectFieldDefinition, type SiteContentSectionDefinition, type SiteContentStringFieldDefinition, type SiteDefinition, type SiteDefinitionOverrides, type SiteLayoutInfo, type SitePackage, Wordmark, type WordmarkProps, aiRoutes, createRizomSite, rizomAiSite as default, rizomAiSite, foundationSections, homeSections, livingMemorySections, renderHighlightedText, rizomBaseSite, socialLinksToRizomLinks, workSections };