/** * Represents an entry in a package bundle, containing version and descriptive information. */ export type BundleEntry = { /** * The name of the bundle. * @title Bundle Name */ name: string; /** * Human readable name for the version. * @title Version Name */ versionName: string; /** * The version number in the format major.minor (e.g., 1.0). * @title Version Number */ versionNumber: string; /** * Human readable version information, format not specified. * @title Version Description */ versionDescription?: string; };