Files
waseel/environment.d.ts
T
Krikorios 62dc5e9d53 Rebrand to Waseel, swap Stripe for Areeba, add phone-ready auth and DB seed
- Rename app: Waseel (name, slug, scheme waseel://, com.waseel.app ids, splash)
- Payments: replace Stripe with Areeba hosted checkout (create/verify API routes,
  lib/areeba.ts, WebBrowser-based payment flow)
- Maps: migrate address autocomplete to Places API (New), drop legacy library
- Web support: map stub for web (native maps are iOS/Android only)
- Auth: keep email + Google OAuth; fix OAuth redirect for Expo Go
- Add scripts/seed-db.mjs (schema + Lebanese driver seed)
- Pin Expo SDK 51 compatible package versions
2026-08-22 15:53:41 +03:00

27 lines
605 B
TypeScript

// This file is needed to support autocomplete for process.env
export {};
declare global {
namespace NodeJS {
interface ProcessEnv {
// clerk publishable key
EXPO_PUBLIC_CLERK_PUBLISHABLE_KEY: string;
// postgres db url (neon db)
DATABASE_URL: string;
// geoapify api key
EXPO_PUBLIC_GEOAPIFY_API_KEY: string;
// google api key
EXPO_PUBLIC_GOOGLE_API_KEY: string;
// areeba payment gateway
AREEBA_API_BASE_URL: string;
AREEBA_MERCHANT_ID: string;
AREEBA_API_PASSWORD: string;
AREEBA_API_VERSION: string;
}
}
}