We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 084f6c3 commit fa3a9e8Copy full SHA for fa3a9e8
src/endpoints/PricingTables/types.ts
@@ -1,9 +1,6 @@
1
-import type { PricingPlan } from '../../types';
2
-
3
export interface PricingTable {
4
id: TableId;
5
options: Option[];
6
- rows: Row[];
7
}
8
9
export enum TableId {
@@ -69,24 +66,3 @@ export interface AddOn {
69
66
export enum AddOnId {
70
67
SITE = 'site',
71
68
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
92
0 commit comments