Initial commit: code as received (Create/Anything export)

Insole-production time tracker exported from the Create/Anything AI
platform. Baseline snapshot before any reverse-engineering or cleanup.

- apps/mobile: Expo Router app (iOS/Android/web), the only workspace
- publisher/: standalone OpenNext/AWS deploy tooling for the web side
- Backend (/api/tasks, /api/logs + DB) lives remotely, not in this repo
This commit is contained in:
Bas van Rossem
2026-06-17 10:19:33 +02:00
commit d94d0b188b
192 changed files with 50705 additions and 0 deletions

33
apps/mobile/global.d.ts vendored Normal file
View File

@@ -0,0 +1,33 @@
declare module 'react-native/Libraries/Core/ExceptionsManager' {
export function handleException(err: Error, isFatal: boolean): void;
}
declare module 'react-native-safe-area-context/lib/commonjs' {
export const SafeAreaView: React.ComponentType<any>;
export const SafeAreaProvider: React.ComponentType<any>;
export const SafeAreaInsetsContext: React.Context<any>;
export const SafeAreaFrameContext: React.Context<any>;
export function useSafeAreaInsets(): { top: number; right: number; bottom: number; left: number };
export function useSafeAreaFrame(): { x: number; y: number; width: number; height: number };
export const initialWindowMetrics: any;
}
declare module 'react-native-web-refresh-control' {
export const RefreshControl: React.ComponentType<any>;
}
declare module 'react-native-web/dist/exports/ScrollView' {
const ScrollView: React.ComponentType<any>;
export default ScrollView;
}
declare module '@anythingai/app/screens/launcher-menu' {
const LauncherMenuContainer: React.ComponentType<any>;
export default LauncherMenuContainer;
}
declare module 'lodash' {
export function merge<T>(...args: T[]): T;
}
declare module '*.css' {}