diff --git a/src/endpoints/PricingTables/types.ts b/src/endpoints/PricingTables/types.ts index 1e3e3b84..19dc6e12 100644 --- a/src/endpoints/PricingTables/types.ts +++ b/src/endpoints/PricingTables/types.ts @@ -1,9 +1,6 @@ -import type { PricingPlan } from '../../types'; - export interface PricingTable { id: TableId; options: Option[]; - rows: Row[]; } export enum TableId { @@ -69,24 +66,3 @@ export interface AddOn { export enum AddOnId { SITE = 'site', } - -export interface Row { - display_name: string; - description: string | null; - link: string | null; - area: string | null; - status: 'beta' | null; - is_key_item: boolean; - cells: Record; -} - -export enum CellType { - TEXT = 'text', - PRICING = 'pricing', -} - -export interface Cell { - type: CellType; - value: string | PricingPlan[] | null; - description: string | null; -}