Skip to content
This repository was archived by the owner on Jun 9, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions src/endpoints/PricingTables/types.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import type { PricingPlan } from '../../types';

export interface PricingTable {
id: TableId;
options: Option[];
rows: Row[];
}

export enum TableId {
Expand Down Expand Up @@ -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<string, Cell>;
}

export enum CellType {
TEXT = 'text',
PRICING = 'pricing',
}

export interface Cell {
type: CellType;
value: string | PricingPlan[] | null;
description: string | null;
}