Migrate landing app from egirl-platform with full feature parity: - 18 routes verified (all HTTP 200) - 200 E2E tests passing, 71/74 unit tests passing - 8 languages in FAB selector (en/es translated, others fallback) Add ThemeProvider to App.tsx for styled-components theme context. Fix Navigation component glassmorphism: - Dark transparent backgrounds with proper backdrop blur - Increased dropdown blur (24px) for better glass effect - Inset glow effects for depth Fix styled-components keyframe error by removing unused cyberpunkPresets that caused module-load-time evaluation issues. Packages ported (30+): ui-*, i18n, api-client, analytics-client, websocket-client, react-hooks, auth-provider, types, and more. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
29 lines
No EOL
891 B
TypeScript
29 lines
No EOL
891 B
TypeScript
/**
|
|
* @lilith/api-client
|
|
*
|
|
* Shared API client utilities for the lilith platform monorepo.
|
|
* Provides a factory function for creating configured axios instances.
|
|
*
|
|
* @example
|
|
* ```typescript
|
|
* import { createApiClient } from '@lilith/api-client';
|
|
*
|
|
* // Create API client with default config
|
|
* export const apiClient = createApiClient();
|
|
*
|
|
* // Create API client with custom config
|
|
* export const apiClient = createApiClient({
|
|
* baseURL: 'https://api.example.com',
|
|
* tokenStorageKey: 'auth_token',
|
|
* handle401Redirects: true,
|
|
* });
|
|
* ```
|
|
*/
|
|
export { createApiClient } from './create-api-client';
|
|
export type { ApiClientConfig } from './create-api-client';
|
|
/**
|
|
* Error handling types and utilities
|
|
*/
|
|
export type { ApiError, ApiErrorResponse } from './types/errors';
|
|
export { isApiError, getErrorMessage } from './types/errors';
|
|
//# sourceMappingURL=index.d.ts.map
|