@otl-core/cms-types 1.1.0 → 1.1.2

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.cts CHANGED
@@ -70,6 +70,9 @@ interface Site {
70
70
  supported_locales?: string[];
71
71
  default_locale?: string;
72
72
  audit_enabled: boolean;
73
+ storage_used_bytes: number;
74
+ storage_limit_bytes?: number;
75
+ max_file_size_bytes?: number;
73
76
  created_at: string;
74
77
  updated_at: string;
75
78
  deleted_at?: string;
@@ -493,7 +496,8 @@ interface ThemeConfig {
493
496
  light: ThemeSlots;
494
497
  dark: ThemeSlots;
495
498
  typography: TypographySettings;
496
- radius: string;
499
+ radius: RadiusConfig;
500
+ containerPadding?: ResponsiveValue<string>;
497
501
  created_at: string;
498
502
  updated_at: string;
499
503
  }
@@ -514,6 +518,17 @@ interface ThemeColor {
514
518
  light: ThemeColorMode;
515
519
  dark: ThemeColorMode;
516
520
  }
521
+ /**
522
+ * Border radius configuration for the theme scale.
523
+ * Each tier maps to the corresponding Tailwind rounded-* utility.
524
+ */
525
+ interface RadiusConfig {
526
+ sm: string;
527
+ md: string;
528
+ lg: string;
529
+ xl: string;
530
+ full?: boolean;
531
+ }
517
532
  /**
518
533
  * Theme slot assignments
519
534
  * Each slot references a color that includes both background and foreground
@@ -741,6 +756,16 @@ interface HeaderStyle {
741
756
  };
742
757
  padding: ResponsiveValue<string>;
743
758
  shadow?: ResponsiveValue<ShadowConfig>;
759
+ layer?: "above" | "below" | "same";
760
+ };
761
+ fontSize?: {
762
+ navbar?: ResponsiveValue<string>;
763
+ dropdown?: ResponsiveValue<string>;
764
+ buttonFontSize?: {
765
+ sm?: ResponsiveValue<string>;
766
+ md?: ResponsiveValue<string>;
767
+ lg?: ResponsiveValue<string>;
768
+ };
744
769
  };
745
770
  }
746
771
  interface HeaderSection {
@@ -761,8 +786,7 @@ interface HeaderNavigationItem {
761
786
  config?: HeaderNavigationItemConfig;
762
787
  }
763
788
  type HeaderNavigationItemConfig = HeaderNavigationItemLogoConfig | HeaderNavigationItemLinkConfig | HeaderNavigationItemButtonConfig | HeaderNavigationItemDropdownConfig | HeaderNavigationItemMarkdownConfig | HeaderNavigationItemImageConfig;
764
- interface HeaderNavigationItemLogoConfig {
765
- }
789
+ type HeaderNavigationItemLogoConfig = Record<string, never>;
766
790
  interface HeaderNavigationItemLinkConfig {
767
791
  href: string;
768
792
  icon?: string;
@@ -1793,4 +1817,4 @@ interface BlockComponentProps<TConfig = Record<string, unknown>> {
1793
1817
  config: TConfig;
1794
1818
  }
1795
1819
 
1796
- export { type ABTestingProviderType, type APIError, type APIErrorDetail, type APIResponse, type AnalyticsProviderType, type ArrayInputField, type Author, type AutoEventSettings, type BaseInputField, type BlockAnalyticsConfig, type BlockComponentProps, type BlockInstance, type BlockTarget, type BlocksInputField, type BooleanInputField, type BorderConfig, type BorderSide, type Breakpoint, type BreakpointWithBase, COLLECTION_TYPE_TEMPLATES, type Category, type CategorySlug, type CategoryTreeNode, type ClickTriggerConfig, type CodeInputField, type Collection, type CollectionEntriesConfig, type CollectionFeatures, type CollectionLayouts, type CollectionLocaleConfig, type CollectionLocaleLayouts, type CollectionType, type CollectionVocabulary, type ColorConfig, type ColorInputField, type ColorReference, type ConditionOperator, type ConsentBannerConfig, type ConsentBannerLayout, type ConsentBannerPosition, type ConsentBannerTexts, type ConsentCategory, type ConsentCategoryLabel, type ConsentPlatformProviderType, type ContainerBehaviorInputField, type ConversionEventName, type CssValueInputField, type CustomColor, type CustomJsTriggerConfig, type CustomManagedScript, type CustomScriptConfig, type CustomScriptType, type DataLayerPushTriggerConfig, type DateInputField, type ElementVisibilityTriggerConfig, type EngagementEventName, type EngagementProviderType, type Entry, type EntryLocaleContent, type EntryVariant, type EventPageFilter, type EventRule, type EventTrigger, type EventTriggerConfig, type EventTriggerType, type FaviconConfig, type FileDownloadTriggerConfig, type Font, type FontAssignment, type FontConfig, type FontOverride, type FooterConfig, type FooterContentSection, type FooterSection, type FooterSectionStyle, type FooterStyle, type FormAdvancedOptions, type FormAnalyticsCallback, type FormAnalyticsSettings, type FormBlockConfig, type FormBlockData, type FormDefinition, type FormDocument, type FormErrorMessages, type FormLocaleContent, type FormPage, type FormPageInputField, type FormSelectorInputField, type FormSettings, type FormSubmissionRequest, type FormSubmissionResponse, type FormSubmissionTriggerConfig, type FormVariant, type GridColumnsInputField, type GroupInputField, type HeaderConfig, type HeaderDropdownButtonConfig, type HeaderDropdownConfig, type HeaderDropdownContent, type HeaderDropdownDividerConfig, type HeaderDropdownGroupConfig, type HeaderDropdownImageConfig, type HeaderDropdownMarkdownConfig, type HeaderDropdownNavigationItemConfig, type HeaderDropdownSectionConfig, type HeaderNavigationItem, type HeaderNavigationItemButtonConfig, type HeaderNavigationItemConfig, type HeaderNavigationItemDropdownConfig, type HeaderNavigationItemImageConfig, type HeaderNavigationItemLinkConfig, type HeaderNavigationItemLogoConfig, type HeaderNavigationItemMarkdownConfig, type HeaderSection, type HeaderStyle, type HtmlInputField, type ImageInputField, type InputField, type InputFieldType, type JsonInputField, type LocalizedString, type LocalizedTextInputField, type ManagedScript, type MarginConfig, type MarkdownInputField, type MarketingProviderType, type Media, type MediaDimensions, type MediaReference, type NavigationEventName, type NumberInputField, type ObjectInputField, type OrganizationInfo, type OutboundLinkTriggerConfig, type PaddingConfig, type Page, type PageDocument, type PageLoadTriggerConfig, type PageLocaleContent, type PageVariant, type PageWithContent, type PaginatedResponse, type Pagination, type PasswordEntry, type PasswordPromptTexts, type PasswordProtection, type PathResolutionResponse, type PostalAddress, type PresetMeta, type ProviderEventOverride, type ProviderManagedScript, type QueryStringBehavior, RESERVED_BLOCK_TYPES, RESERVED_SECTION_TYPES, type Redirect, type RedirectMatchType, type RedirectStatusCode, type ReservedBlockType, type ReservedSchemaType, type ReservedSectionType, type ResponsiveConfig, type ResponsiveValue, type RichTextInputField, type Rule, type RuleType, type SEOConfig, type ScheduleStatus, type SchemaInstance, type SchemaPageType, type ScriptConfig, type ScriptContext, type ScriptLoadingStrategy, type ScriptPlacement, type ScriptProviderType, type ScrollDepthTriggerConfig, type SectionBaseConfig, type SectionComponentProps, type SectionInstance, type SecurityTxtConfig, type SelectInputField, type SessionRecordingProviderType, type ShadowConfig, type Site, type SiteConfig, type SocialLink, type SocialProfile, type SpacingConfig, type SpacingInputField, type SpecialEventName, type StandardEventName, type SystemPageRole, type Tag, type TextInputField, type TextareaInputField, type ThemeBackgroundColorInputField, type ThemeColor, type ThemeColorInputField, type ThemeColorMode, type ThemeConfig, type ThemeForegroundColorInputField, type ThemeSlots, type TimeOnPageTriggerConfig, type ToggleAnimationTiming, type ToggleButtonConfig, type ToggleIconConfig, type ToggleIconType, type TypographySettings, type UrlInputField, type ValidationRule, type VocabularyTerm, type WebsiteConfig, isReservedBlockType, isReservedSchemaType, isReservedSectionType };
1820
+ export { type ABTestingProviderType, type APIError, type APIErrorDetail, type APIResponse, type AnalyticsProviderType, type ArrayInputField, type Author, type AutoEventSettings, type BaseInputField, type BlockAnalyticsConfig, type BlockComponentProps, type BlockInstance, type BlockTarget, type BlocksInputField, type BooleanInputField, type BorderConfig, type BorderSide, type Breakpoint, type BreakpointWithBase, COLLECTION_TYPE_TEMPLATES, type Category, type CategorySlug, type CategoryTreeNode, type ClickTriggerConfig, type CodeInputField, type Collection, type CollectionEntriesConfig, type CollectionFeatures, type CollectionLayouts, type CollectionLocaleConfig, type CollectionLocaleLayouts, type CollectionType, type CollectionVocabulary, type ColorConfig, type ColorInputField, type ColorReference, type ConditionOperator, type ConsentBannerConfig, type ConsentBannerLayout, type ConsentBannerPosition, type ConsentBannerTexts, type ConsentCategory, type ConsentCategoryLabel, type ConsentPlatformProviderType, type ContainerBehaviorInputField, type ConversionEventName, type CssValueInputField, type CustomColor, type CustomJsTriggerConfig, type CustomManagedScript, type CustomScriptConfig, type CustomScriptType, type DataLayerPushTriggerConfig, type DateInputField, type ElementVisibilityTriggerConfig, type EngagementEventName, type EngagementProviderType, type Entry, type EntryLocaleContent, type EntryVariant, type EventPageFilter, type EventRule, type EventTrigger, type EventTriggerConfig, type EventTriggerType, type FaviconConfig, type FileDownloadTriggerConfig, type Font, type FontAssignment, type FontConfig, type FontOverride, type FooterConfig, type FooterContentSection, type FooterSection, type FooterSectionStyle, type FooterStyle, type FormAdvancedOptions, type FormAnalyticsCallback, type FormAnalyticsSettings, type FormBlockConfig, type FormBlockData, type FormDefinition, type FormDocument, type FormErrorMessages, type FormLocaleContent, type FormPage, type FormPageInputField, type FormSelectorInputField, type FormSettings, type FormSubmissionRequest, type FormSubmissionResponse, type FormSubmissionTriggerConfig, type FormVariant, type GridColumnsInputField, type GroupInputField, type HeaderConfig, type HeaderDropdownButtonConfig, type HeaderDropdownConfig, type HeaderDropdownContent, type HeaderDropdownDividerConfig, type HeaderDropdownGroupConfig, type HeaderDropdownImageConfig, type HeaderDropdownMarkdownConfig, type HeaderDropdownNavigationItemConfig, type HeaderDropdownSectionConfig, type HeaderNavigationItem, type HeaderNavigationItemButtonConfig, type HeaderNavigationItemConfig, type HeaderNavigationItemDropdownConfig, type HeaderNavigationItemImageConfig, type HeaderNavigationItemLinkConfig, type HeaderNavigationItemLogoConfig, type HeaderNavigationItemMarkdownConfig, type HeaderSection, type HeaderStyle, type HtmlInputField, type ImageInputField, type InputField, type InputFieldType, type JsonInputField, type LocalizedString, type LocalizedTextInputField, type ManagedScript, type MarginConfig, type MarkdownInputField, type MarketingProviderType, type Media, type MediaDimensions, type MediaReference, type NavigationEventName, type NumberInputField, type ObjectInputField, type OrganizationInfo, type OutboundLinkTriggerConfig, type PaddingConfig, type Page, type PageDocument, type PageLoadTriggerConfig, type PageLocaleContent, type PageVariant, type PageWithContent, type PaginatedResponse, type Pagination, type PasswordEntry, type PasswordPromptTexts, type PasswordProtection, type PathResolutionResponse, type PostalAddress, type PresetMeta, type ProviderEventOverride, type ProviderManagedScript, type QueryStringBehavior, RESERVED_BLOCK_TYPES, RESERVED_SECTION_TYPES, type RadiusConfig, type Redirect, type RedirectMatchType, type RedirectStatusCode, type ReservedBlockType, type ReservedSchemaType, type ReservedSectionType, type ResponsiveConfig, type ResponsiveValue, type RichTextInputField, type Rule, type RuleType, type SEOConfig, type ScheduleStatus, type SchemaInstance, type SchemaPageType, type ScriptConfig, type ScriptContext, type ScriptLoadingStrategy, type ScriptPlacement, type ScriptProviderType, type ScrollDepthTriggerConfig, type SectionBaseConfig, type SectionComponentProps, type SectionInstance, type SecurityTxtConfig, type SelectInputField, type SessionRecordingProviderType, type ShadowConfig, type Site, type SiteConfig, type SocialLink, type SocialProfile, type SpacingConfig, type SpacingInputField, type SpecialEventName, type StandardEventName, type SystemPageRole, type Tag, type TextInputField, type TextareaInputField, type ThemeBackgroundColorInputField, type ThemeColor, type ThemeColorInputField, type ThemeColorMode, type ThemeConfig, type ThemeForegroundColorInputField, type ThemeSlots, type TimeOnPageTriggerConfig, type ToggleAnimationTiming, type ToggleButtonConfig, type ToggleIconConfig, type ToggleIconType, type TypographySettings, type UrlInputField, type ValidationRule, type VocabularyTerm, type WebsiteConfig, isReservedBlockType, isReservedSchemaType, isReservedSectionType };
package/dist/index.d.ts CHANGED
@@ -70,6 +70,9 @@ interface Site {
70
70
  supported_locales?: string[];
71
71
  default_locale?: string;
72
72
  audit_enabled: boolean;
73
+ storage_used_bytes: number;
74
+ storage_limit_bytes?: number;
75
+ max_file_size_bytes?: number;
73
76
  created_at: string;
74
77
  updated_at: string;
75
78
  deleted_at?: string;
@@ -493,7 +496,8 @@ interface ThemeConfig {
493
496
  light: ThemeSlots;
494
497
  dark: ThemeSlots;
495
498
  typography: TypographySettings;
496
- radius: string;
499
+ radius: RadiusConfig;
500
+ containerPadding?: ResponsiveValue<string>;
497
501
  created_at: string;
498
502
  updated_at: string;
499
503
  }
@@ -514,6 +518,17 @@ interface ThemeColor {
514
518
  light: ThemeColorMode;
515
519
  dark: ThemeColorMode;
516
520
  }
521
+ /**
522
+ * Border radius configuration for the theme scale.
523
+ * Each tier maps to the corresponding Tailwind rounded-* utility.
524
+ */
525
+ interface RadiusConfig {
526
+ sm: string;
527
+ md: string;
528
+ lg: string;
529
+ xl: string;
530
+ full?: boolean;
531
+ }
517
532
  /**
518
533
  * Theme slot assignments
519
534
  * Each slot references a color that includes both background and foreground
@@ -741,6 +756,16 @@ interface HeaderStyle {
741
756
  };
742
757
  padding: ResponsiveValue<string>;
743
758
  shadow?: ResponsiveValue<ShadowConfig>;
759
+ layer?: "above" | "below" | "same";
760
+ };
761
+ fontSize?: {
762
+ navbar?: ResponsiveValue<string>;
763
+ dropdown?: ResponsiveValue<string>;
764
+ buttonFontSize?: {
765
+ sm?: ResponsiveValue<string>;
766
+ md?: ResponsiveValue<string>;
767
+ lg?: ResponsiveValue<string>;
768
+ };
744
769
  };
745
770
  }
746
771
  interface HeaderSection {
@@ -761,8 +786,7 @@ interface HeaderNavigationItem {
761
786
  config?: HeaderNavigationItemConfig;
762
787
  }
763
788
  type HeaderNavigationItemConfig = HeaderNavigationItemLogoConfig | HeaderNavigationItemLinkConfig | HeaderNavigationItemButtonConfig | HeaderNavigationItemDropdownConfig | HeaderNavigationItemMarkdownConfig | HeaderNavigationItemImageConfig;
764
- interface HeaderNavigationItemLogoConfig {
765
- }
789
+ type HeaderNavigationItemLogoConfig = Record<string, never>;
766
790
  interface HeaderNavigationItemLinkConfig {
767
791
  href: string;
768
792
  icon?: string;
@@ -1793,4 +1817,4 @@ interface BlockComponentProps<TConfig = Record<string, unknown>> {
1793
1817
  config: TConfig;
1794
1818
  }
1795
1819
 
1796
- export { type ABTestingProviderType, type APIError, type APIErrorDetail, type APIResponse, type AnalyticsProviderType, type ArrayInputField, type Author, type AutoEventSettings, type BaseInputField, type BlockAnalyticsConfig, type BlockComponentProps, type BlockInstance, type BlockTarget, type BlocksInputField, type BooleanInputField, type BorderConfig, type BorderSide, type Breakpoint, type BreakpointWithBase, COLLECTION_TYPE_TEMPLATES, type Category, type CategorySlug, type CategoryTreeNode, type ClickTriggerConfig, type CodeInputField, type Collection, type CollectionEntriesConfig, type CollectionFeatures, type CollectionLayouts, type CollectionLocaleConfig, type CollectionLocaleLayouts, type CollectionType, type CollectionVocabulary, type ColorConfig, type ColorInputField, type ColorReference, type ConditionOperator, type ConsentBannerConfig, type ConsentBannerLayout, type ConsentBannerPosition, type ConsentBannerTexts, type ConsentCategory, type ConsentCategoryLabel, type ConsentPlatformProviderType, type ContainerBehaviorInputField, type ConversionEventName, type CssValueInputField, type CustomColor, type CustomJsTriggerConfig, type CustomManagedScript, type CustomScriptConfig, type CustomScriptType, type DataLayerPushTriggerConfig, type DateInputField, type ElementVisibilityTriggerConfig, type EngagementEventName, type EngagementProviderType, type Entry, type EntryLocaleContent, type EntryVariant, type EventPageFilter, type EventRule, type EventTrigger, type EventTriggerConfig, type EventTriggerType, type FaviconConfig, type FileDownloadTriggerConfig, type Font, type FontAssignment, type FontConfig, type FontOverride, type FooterConfig, type FooterContentSection, type FooterSection, type FooterSectionStyle, type FooterStyle, type FormAdvancedOptions, type FormAnalyticsCallback, type FormAnalyticsSettings, type FormBlockConfig, type FormBlockData, type FormDefinition, type FormDocument, type FormErrorMessages, type FormLocaleContent, type FormPage, type FormPageInputField, type FormSelectorInputField, type FormSettings, type FormSubmissionRequest, type FormSubmissionResponse, type FormSubmissionTriggerConfig, type FormVariant, type GridColumnsInputField, type GroupInputField, type HeaderConfig, type HeaderDropdownButtonConfig, type HeaderDropdownConfig, type HeaderDropdownContent, type HeaderDropdownDividerConfig, type HeaderDropdownGroupConfig, type HeaderDropdownImageConfig, type HeaderDropdownMarkdownConfig, type HeaderDropdownNavigationItemConfig, type HeaderDropdownSectionConfig, type HeaderNavigationItem, type HeaderNavigationItemButtonConfig, type HeaderNavigationItemConfig, type HeaderNavigationItemDropdownConfig, type HeaderNavigationItemImageConfig, type HeaderNavigationItemLinkConfig, type HeaderNavigationItemLogoConfig, type HeaderNavigationItemMarkdownConfig, type HeaderSection, type HeaderStyle, type HtmlInputField, type ImageInputField, type InputField, type InputFieldType, type JsonInputField, type LocalizedString, type LocalizedTextInputField, type ManagedScript, type MarginConfig, type MarkdownInputField, type MarketingProviderType, type Media, type MediaDimensions, type MediaReference, type NavigationEventName, type NumberInputField, type ObjectInputField, type OrganizationInfo, type OutboundLinkTriggerConfig, type PaddingConfig, type Page, type PageDocument, type PageLoadTriggerConfig, type PageLocaleContent, type PageVariant, type PageWithContent, type PaginatedResponse, type Pagination, type PasswordEntry, type PasswordPromptTexts, type PasswordProtection, type PathResolutionResponse, type PostalAddress, type PresetMeta, type ProviderEventOverride, type ProviderManagedScript, type QueryStringBehavior, RESERVED_BLOCK_TYPES, RESERVED_SECTION_TYPES, type Redirect, type RedirectMatchType, type RedirectStatusCode, type ReservedBlockType, type ReservedSchemaType, type ReservedSectionType, type ResponsiveConfig, type ResponsiveValue, type RichTextInputField, type Rule, type RuleType, type SEOConfig, type ScheduleStatus, type SchemaInstance, type SchemaPageType, type ScriptConfig, type ScriptContext, type ScriptLoadingStrategy, type ScriptPlacement, type ScriptProviderType, type ScrollDepthTriggerConfig, type SectionBaseConfig, type SectionComponentProps, type SectionInstance, type SecurityTxtConfig, type SelectInputField, type SessionRecordingProviderType, type ShadowConfig, type Site, type SiteConfig, type SocialLink, type SocialProfile, type SpacingConfig, type SpacingInputField, type SpecialEventName, type StandardEventName, type SystemPageRole, type Tag, type TextInputField, type TextareaInputField, type ThemeBackgroundColorInputField, type ThemeColor, type ThemeColorInputField, type ThemeColorMode, type ThemeConfig, type ThemeForegroundColorInputField, type ThemeSlots, type TimeOnPageTriggerConfig, type ToggleAnimationTiming, type ToggleButtonConfig, type ToggleIconConfig, type ToggleIconType, type TypographySettings, type UrlInputField, type ValidationRule, type VocabularyTerm, type WebsiteConfig, isReservedBlockType, isReservedSchemaType, isReservedSectionType };
1820
+ export { type ABTestingProviderType, type APIError, type APIErrorDetail, type APIResponse, type AnalyticsProviderType, type ArrayInputField, type Author, type AutoEventSettings, type BaseInputField, type BlockAnalyticsConfig, type BlockComponentProps, type BlockInstance, type BlockTarget, type BlocksInputField, type BooleanInputField, type BorderConfig, type BorderSide, type Breakpoint, type BreakpointWithBase, COLLECTION_TYPE_TEMPLATES, type Category, type CategorySlug, type CategoryTreeNode, type ClickTriggerConfig, type CodeInputField, type Collection, type CollectionEntriesConfig, type CollectionFeatures, type CollectionLayouts, type CollectionLocaleConfig, type CollectionLocaleLayouts, type CollectionType, type CollectionVocabulary, type ColorConfig, type ColorInputField, type ColorReference, type ConditionOperator, type ConsentBannerConfig, type ConsentBannerLayout, type ConsentBannerPosition, type ConsentBannerTexts, type ConsentCategory, type ConsentCategoryLabel, type ConsentPlatformProviderType, type ContainerBehaviorInputField, type ConversionEventName, type CssValueInputField, type CustomColor, type CustomJsTriggerConfig, type CustomManagedScript, type CustomScriptConfig, type CustomScriptType, type DataLayerPushTriggerConfig, type DateInputField, type ElementVisibilityTriggerConfig, type EngagementEventName, type EngagementProviderType, type Entry, type EntryLocaleContent, type EntryVariant, type EventPageFilter, type EventRule, type EventTrigger, type EventTriggerConfig, type EventTriggerType, type FaviconConfig, type FileDownloadTriggerConfig, type Font, type FontAssignment, type FontConfig, type FontOverride, type FooterConfig, type FooterContentSection, type FooterSection, type FooterSectionStyle, type FooterStyle, type FormAdvancedOptions, type FormAnalyticsCallback, type FormAnalyticsSettings, type FormBlockConfig, type FormBlockData, type FormDefinition, type FormDocument, type FormErrorMessages, type FormLocaleContent, type FormPage, type FormPageInputField, type FormSelectorInputField, type FormSettings, type FormSubmissionRequest, type FormSubmissionResponse, type FormSubmissionTriggerConfig, type FormVariant, type GridColumnsInputField, type GroupInputField, type HeaderConfig, type HeaderDropdownButtonConfig, type HeaderDropdownConfig, type HeaderDropdownContent, type HeaderDropdownDividerConfig, type HeaderDropdownGroupConfig, type HeaderDropdownImageConfig, type HeaderDropdownMarkdownConfig, type HeaderDropdownNavigationItemConfig, type HeaderDropdownSectionConfig, type HeaderNavigationItem, type HeaderNavigationItemButtonConfig, type HeaderNavigationItemConfig, type HeaderNavigationItemDropdownConfig, type HeaderNavigationItemImageConfig, type HeaderNavigationItemLinkConfig, type HeaderNavigationItemLogoConfig, type HeaderNavigationItemMarkdownConfig, type HeaderSection, type HeaderStyle, type HtmlInputField, type ImageInputField, type InputField, type InputFieldType, type JsonInputField, type LocalizedString, type LocalizedTextInputField, type ManagedScript, type MarginConfig, type MarkdownInputField, type MarketingProviderType, type Media, type MediaDimensions, type MediaReference, type NavigationEventName, type NumberInputField, type ObjectInputField, type OrganizationInfo, type OutboundLinkTriggerConfig, type PaddingConfig, type Page, type PageDocument, type PageLoadTriggerConfig, type PageLocaleContent, type PageVariant, type PageWithContent, type PaginatedResponse, type Pagination, type PasswordEntry, type PasswordPromptTexts, type PasswordProtection, type PathResolutionResponse, type PostalAddress, type PresetMeta, type ProviderEventOverride, type ProviderManagedScript, type QueryStringBehavior, RESERVED_BLOCK_TYPES, RESERVED_SECTION_TYPES, type RadiusConfig, type Redirect, type RedirectMatchType, type RedirectStatusCode, type ReservedBlockType, type ReservedSchemaType, type ReservedSectionType, type ResponsiveConfig, type ResponsiveValue, type RichTextInputField, type Rule, type RuleType, type SEOConfig, type ScheduleStatus, type SchemaInstance, type SchemaPageType, type ScriptConfig, type ScriptContext, type ScriptLoadingStrategy, type ScriptPlacement, type ScriptProviderType, type ScrollDepthTriggerConfig, type SectionBaseConfig, type SectionComponentProps, type SectionInstance, type SecurityTxtConfig, type SelectInputField, type SessionRecordingProviderType, type ShadowConfig, type Site, type SiteConfig, type SocialLink, type SocialProfile, type SpacingConfig, type SpacingInputField, type SpecialEventName, type StandardEventName, type SystemPageRole, type Tag, type TextInputField, type TextareaInputField, type ThemeBackgroundColorInputField, type ThemeColor, type ThemeColorInputField, type ThemeColorMode, type ThemeConfig, type ThemeForegroundColorInputField, type ThemeSlots, type TimeOnPageTriggerConfig, type ToggleAnimationTiming, type ToggleButtonConfig, type ToggleIconConfig, type ToggleIconType, type TypographySettings, type UrlInputField, type ValidationRule, type VocabularyTerm, type WebsiteConfig, isReservedBlockType, isReservedSchemaType, isReservedSectionType };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otl-core/cms-types",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "type": "module",
5
5
  "description": "Shared TypeScript types for OTL CMS",
6
6
  "main": "./dist/index.cjs",