import type { MRTRules } from './MRTRules'; /** * @type MRTRuleset: An MRT ruleset. Defines a list of MRT rules that will route certain storefront requests to the managed runtime instance. * * @property id: The ID of the ruleset. * - **Pattern:** /^.*$/ * * @property name: The name of the ruleset. * - **Pattern:** /^.*$/ * * @property lastUpdated: Date when the ruleset was last updated. * * @property rules: The rules defined by the ruleset. * */ export type MRTRuleset = { id: string; name: string; lastUpdated: string; rules: Array; } & { [key: string]: any; };