/**
* URL-specific Enums
*
* This file contains all enums related to URLs.
*/
/**
* URL Origin Enum - Indicates how the URL was created
* @category Types
* @enum {string}
*/
export var UrlOrigin;
(function (UrlOrigin) {
UrlOrigin["AUTO"] = "auto";
UrlOrigin["HUMAN"] = "human";
})(UrlOrigin || (UrlOrigin = {}));
/**
* Link key - logical destination / page type for the URL
* @category Types
*/
export var LinkKey;
(function (LinkKey) {
LinkKey["PHYSICAL_TOOL"] = "physical-tool";
})(LinkKey || (LinkKey = {}));
export const ALLOWED_LINK_KEYS = Object.values(LinkKey);
Source