Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | export type TicketStatus = 'ACTIVE' | 'PENDING' | 'EXPIRED' | 'USED' | 'CANCELED';
export type TicketParticipationStatus = 'APPROVED' | 'PENDING' | 'CANCELED' | 'LEAVED';
export type TicketEventStatus = 'ACTIVE' | 'IN_PROGRESS' | 'COMPLETED' | 'CANCELED';
export interface TicketParticipation {
id: string;
status: TicketParticipationStatus;
}
export interface TicketEvent {
id: string;
title: string;
status: TicketEventStatus;
privacy_level: 'PUBLIC' | 'PROTECTED' | 'PRIVATE';
start_time: string;
end_time?: string | null;
location_type: 'POINT' | 'ROUTE';
address?: string | null;
}
export interface TicketListItem {
ticket_id: string;
status: TicketStatus;
expires_at: string;
event: TicketEvent;
participation: TicketParticipation;
}
export interface ListTicketsResponse {
items: TicketListItem[];
}
export interface TicketLocation {
type: 'POINT' | 'ROUTE';
address?: string | null;
anchor_lat: number;
anchor_lon: number;
}
export interface TicketQRAccess {
requires_location_permission: boolean;
requires_proximity: boolean;
proximity_meters: number;
eligible_now: boolean;
reason?: string;
}
export interface TicketDetail {
id: string;
status: TicketStatus;
expires_at: string;
used_at?: string | null;
created_at: string;
updated_at: string;
}
export interface TicketDetailResponse {
ticket: TicketDetail;
participation: TicketParticipation;
event: TicketEvent;
location: TicketLocation;
qr_access: TicketQRAccess;
}
|