🏷️ Search for custom tailnet name offers with keywords.
1export interface Eligibility {
2 eligible: boolean;
3 reason: string;
4 id?: string;
5 checkedAt?: number;
6 error?: string;
7 offerType?: string;
8}
9
10export interface EligibilityApiResponse {
11 error?: string;
12 data?: {
13 offerType?: string;
14 tcds?: Array<{ tcd: string; token: string }>;
15 };
16}