Reverse-engineered ParkSmarter API client (TypeScript, live-verified) plus a de-Googled Expo/React Native app for GrapheneOS: MapLibre meter map with GPS, VisionCamera QR kiosk scanning with save/share, local session-expiry reminders, UnifiedPush wiring, and Gitea CI to publish signed APKs for Obtainium. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
20 lines
494 B
TypeScript
20 lines
494 B
TypeScript
export { ParkSmarterClient } from './client.js';
|
|
export type { ParkSmarterClientOptions } from './client.js';
|
|
export {
|
|
ENVIRONMENTS,
|
|
DEFAULT_ENVIRONMENT,
|
|
} from './environments.js';
|
|
export type { Environment, EnvironmentName } from './environments.js';
|
|
export {
|
|
HttpClient,
|
|
MemoryTokenStore,
|
|
ParkSmarterApiError,
|
|
} from './http.js';
|
|
export type {
|
|
TokenStore,
|
|
RequestOptions,
|
|
ParkSmarterResponse,
|
|
HttpMethod,
|
|
HttpClientConfig,
|
|
} from './http.js';
|
|
export * from './types.js';
|