From fa3a9e87957bc4c6911c38f35f13818eb211586f Mon Sep 17 00:00:00 2001 From: Marko Ognjenovic Date: Tue, 24 Jun 2025 10:36:09 +0200 Subject: [PATCH] Clean up pricing table rows property --- src/endpoints/PricingTables/types.ts | 24 ------------------------ 1 file changed, 24 deletions(-) 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; -}