[skip ci] Initial commit — CodexBar Mobile Expo app

This commit is contained in:
2026-06-24 16:28:28 +02:00
parent 4f32782eaf
commit 0bcd95ee1b
30 changed files with 3562 additions and 141 deletions
+23
View File
@@ -0,0 +1,23 @@
export interface CodexAuth {
accessToken: string;
accountId?: string;
}
export interface UsageWindow {
used_percent: number;
reset_at: number;
limit_window_seconds: number;
}
export interface CodexUsageResponse {
plan_type: string;
rate_limit: {
primary_window: UsageWindow;
secondary_window: UsageWindow;
};
credits: {
has_credits: boolean;
unlimited: boolean;
balance: number;
};
}