UNPKG

gplayapi-ts

Version:
23 lines (21 loc) 1.49 kB
/** * Constants and URLs for Google Play API */ declare const URL_BASE = "https://android.clients.google.com"; declare const URL_FDFE = "https://android.clients.google.com/fdfe"; declare const URL_AUTH = "https://android.clients.google.com/auth"; declare const URL_CHECK_IN = "https://android.clients.google.com/checkin"; declare const URL_DETAILS = "https://android.clients.google.com/fdfe/details"; declare const URL_DELIVERY = "https://android.clients.google.com/fdfe/delivery"; declare const URL_PURCHASE = "https://android.clients.google.com/fdfe/purchase"; declare const URL_TOC = "https://android.clients.google.com/fdfe/toc"; declare const URL_TOS_ACCEPT = "https://android.clients.google.com/fdfe/acceptTos"; declare const URL_UPLOAD_DEVICE_CONFIG = "https://android.clients.google.com/fdfe/uploadDeviceConfig"; declare const DEFAULT_LOCALE = "en_GB"; declare const DEFAULT_TIMEZONE = "America/Mexico_City"; declare const DEFAULT_CALLER_SIG = "38918a453d07199354f8b19af05ec6562ced5788"; declare const AUTH_SERVICE_URL = "oauth2:https://www.googleapis.com/auth/googleplay"; declare const AUTH_APP = "com.google.android.gms"; declare const VENDING_APP = "com.android.vending"; declare const REQUEST_TIMEOUT_MS = 4000; export { AUTH_APP, AUTH_SERVICE_URL, DEFAULT_CALLER_SIG, DEFAULT_LOCALE, DEFAULT_TIMEZONE, REQUEST_TIMEOUT_MS, URL_AUTH, URL_BASE, URL_CHECK_IN, URL_DELIVERY, URL_DETAILS, URL_FDFE, URL_PURCHASE, URL_TOC, URL_TOS_ACCEPT, URL_UPLOAD_DEVICE_CONFIG, VENDING_APP };