- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
export interface PodDependency {
|
|
name: string;
|
|
version?: string;
|
|
dependencies?: PodDependency[];
|
|
}
|
|
export interface ExternalSource {
|
|
/** "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" */
|
|
':podspec'?: string;
|
|
/** "../node_modules/expo-application/ios" */
|
|
':path'?: string;
|
|
}
|
|
export interface PodfileLock {
|
|
pods?: PodDependency[];
|
|
/** "1.11.2" */
|
|
cocoapods?: string;
|
|
externalSources?: Record<string, ExternalSource>;
|
|
/** 73e35020f8f5d49ffd32debe3c1bdd501f8029a6 */
|
|
podfileChecksum?: string;
|
|
/** { "DoubleConversion": "cf9b38bf0b2d048436d9a82ad2abe1404f11e7de" } */
|
|
specChecksums?: Record<string, string>;
|
|
}
|
|
/**
|
|
* Parses a podfile.lock file from from YAML into a JSON object.
|
|
*
|
|
* @param str Podfile.lock file contents in YAML format.
|
|
* @returns
|
|
*/
|
|
export declare function loadPodfileLock(str: string): null | Record<string, any>;
|
|
export declare const parsePodDependency: (pod: string | Record<string, string | Record<string, any>>) => PodDependency[];
|
|
export declare function parsePodfileLock(fileContent: string): PodfileLock | null;
|
|
export declare function getFilePathForExternalSource(podLock: PodfileLock, pod: string): string | null;
|