UNPKG

studiocms

Version:

Astro Native CMS for AstroDB. Built from the ground up by the Astro community.

46 lines (45 loc) 1.72 kB
/** * Unique identifier used to reference the site configuration map within StudioCMS. * * This constant is typically used as a key for storing or retrieving site configuration data. */ export declare const SiteConfigMapID: string; /** * A constant string used as the identifier for the latest version map in StudioCMS. * This value is typically used to reference or store the most recent version information. */ export declare const VersionMapID: string; /** * Unique identifier used for mapping folder trees within StudioCMS. * This constant is typically used as a key for storing or retrieving folder tree structures. */ export declare const FolderTreeMapID: string; /** * Unique identifier for the page folder tree map used in StudioCMS. * This constant is used to reference the page folder tree structure within the SDK. */ export declare const PageFolderTreeMapID: string; /** * Unique identifier used to reference the folder list map within StudioCMS. * This constant is typically used for internal mapping or caching purposes. */ export declare const FolderListMapID: string; /** * The unique package identifier for the StudioCMS package. * * @remarks * This constant is used to reference the StudioCMS package throughout the SDK. */ export declare const StudioCMSPkgId: string; /** * The current version of the configuration schema used by the SDK. * * This constant should be updated whenever breaking changes are made to the configuration format. * * @remarks * Used to ensure compatibility between different versions of configuration files and the SDK. * * @public */ export declare const CURRENT_CONFIG_VERSION = "1.0.0"; export declare const TEMPLATE_CONFIG_VERSION = "1.0.0";