Skip to content

Commit fa3a9e8

Browse files
committed
Clean up pricing table rows property
1 parent 084f6c3 commit fa3a9e8

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

src/endpoints/PricingTables/types.ts

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
import type { PricingPlan } from '../../types';
2-
31
export interface PricingTable {
42
id: TableId;
53
options: Option[];
6-
rows: Row[];
74
}
85

96
export enum TableId {
@@ -69,24 +66,3 @@ export interface AddOn {
6966
export enum AddOnId {
7067
SITE = 'site',
7168
}
72-
73-
export interface Row {
74-
display_name: string;
75-
description: string | null;
76-
link: string | null;
77-
area: string | null;
78-
status: 'beta' | null;
79-
is_key_item: boolean;
80-
cells: Record<string, Cell>;
81-
}
82-
83-
export enum CellType {
84-
TEXT = 'text',
85-
PRICING = 'pricing',
86-
}
87-
88-
export interface Cell {
89-
type: CellType;
90-
value: string | PricingPlan[] | null;
91-
description: string | null;
92-
}

0 commit comments

Comments
 (0)