6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
20 lines
723 B
TypeScript
20 lines
723 B
TypeScript
import { AuthTokenPromotionListInstance } from "./accounts/v1/authTokenPromotion";
|
|
import { CredentialListInstance } from "./accounts/v1/credential";
|
|
import { SecondaryAuthTokenListInstance } from "./accounts/v1/secondaryAuthToken";
|
|
import AccountsBase from "./AccountsBase";
|
|
declare class Accounts extends AccountsBase {
|
|
/**
|
|
* @deprecated - Use v1.authTokenPromotion; instead
|
|
*/
|
|
get authTokenPromotion(): AuthTokenPromotionListInstance;
|
|
/**
|
|
* @deprecated - Use v1.credentials; instead
|
|
*/
|
|
get credentials(): CredentialListInstance;
|
|
/**
|
|
* @deprecated - Use v1.secondaryAuthToken; instead
|
|
*/
|
|
get secondaryAuthToken(): SecondaryAuthTokenListInstance;
|
|
}
|
|
export = Accounts;
|