mirror of
https://github.com/ruvnet/RuView.git
synced 2026-08-26 18:16:03 +00:00
- Added IosRssiService to handle synthetic RSSI data for iOS. - Created WebRssiService to simulate RSSI scanning on the web. - Defined shared types for WifiNetwork and RssiService in rssi.service.ts. - Introduced simulation service to generate synthetic sensing data. - Implemented WebSocket service for real-time data handling with reconnection logic. - Established Zustand stores for managing application state related to MAT and pose data. - Developed theme context and utility functions for consistent styling and formatting. - Added type definitions for various application entities including API responses and sensing data. - Created utility functions for color mapping and URL validation. - Configured TypeScript settings for the mobile application.
15 lines
656 B
TypeScript
15 lines
656 B
TypeScript
export const API_ROOT = '/api/v1';
|
|
|
|
export const API_POSE_STATUS_PATH = '/api/v1/pose/status';
|
|
export const API_POSE_FRAMES_PATH = '/api/v1/pose/frames';
|
|
export const API_POSE_ZONES_PATH = '/api/v1/pose/zones';
|
|
export const API_POSE_CURRENT_PATH = '/api/v1/pose/current';
|
|
export const API_STREAM_STATUS_PATH = '/api/v1/stream/status';
|
|
export const API_STREAM_POSE_PATH = '/api/v1/stream/pose';
|
|
export const API_MAT_EVENTS_PATH = '/api/v1/mat/events';
|
|
|
|
export const API_HEALTH_PATH = '/health';
|
|
export const API_HEALTH_SYSTEM_PATH = '/health/health';
|
|
export const API_HEALTH_READY_PATH = '/health/ready';
|
|
export const API_HEALTH_LIVE_PATH = '/health/live';
|