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
50 lines
1.8 KiB
TypeScript
50 lines
1.8 KiB
TypeScript
import { FleetListInstance } from "./preview/deployed_devices/fleet";
|
|
import { AuthorizationDocumentListInstance } from "./preview/hosted_numbers/authorizationDocument";
|
|
import { HostedNumberOrderListInstance } from "./preview/hosted_numbers/hostedNumberOrder";
|
|
import { AvailableAddOnListInstance } from "./preview/marketplace/availableAddOn";
|
|
import { InstalledAddOnListInstance } from "./preview/marketplace/installedAddOn";
|
|
import { ServiceListInstance } from "./preview/sync/service";
|
|
import { CommandListInstance } from "./preview/wireless/command";
|
|
import { RatePlanListInstance } from "./preview/wireless/ratePlan";
|
|
import { SimListInstance } from "./preview/wireless/sim";
|
|
import PreviewBase from "./PreviewBase";
|
|
declare class Preview extends PreviewBase {
|
|
/**
|
|
* @deprecated - Use deployed_devices.fleets instead
|
|
*/
|
|
get fleets(): FleetListInstance;
|
|
/**
|
|
* @deprecated - Use hosted_numbers.authorizationDocuments instead
|
|
*/
|
|
get authorizationDocuments(): AuthorizationDocumentListInstance;
|
|
/**
|
|
* @deprecated - Use hosted_numbers.hostedNumberOrders instead
|
|
*/
|
|
get hostedNumberOrders(): HostedNumberOrderListInstance;
|
|
/**
|
|
* @deprecated - Use marketplace.availableAddOns instead
|
|
*/
|
|
get availableAddOns(): AvailableAddOnListInstance;
|
|
/**
|
|
* @deprecated - Use marketplace.installedAddOns instead
|
|
*/
|
|
get installedAddOns(): InstalledAddOnListInstance;
|
|
/**
|
|
* @deprecated - Use sync.services instead
|
|
*/
|
|
get services(): ServiceListInstance;
|
|
/**
|
|
* @deprecated - Use wireless.commands instead
|
|
*/
|
|
get commands(): CommandListInstance;
|
|
/**
|
|
* @deprecated - Use wireless.ratePlans instead
|
|
*/
|
|
get ratePlans(): RatePlanListInstance;
|
|
/**
|
|
* @deprecated - Use wireless.sims instead
|
|
*/
|
|
get sims(): SimListInstance;
|
|
}
|
|
export = Preview;
|