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.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import { EsimProfileListInstance } from "./supersim/v1/esimProfile";
|
|
import { FleetListInstance } from "./supersim/v1/fleet";
|
|
import { IpCommandListInstance } from "./supersim/v1/ipCommand";
|
|
import { NetworkListInstance } from "./supersim/v1/network";
|
|
import { NetworkAccessProfileListInstance } from "./supersim/v1/networkAccessProfile";
|
|
import { SettingsUpdateListInstance } from "./supersim/v1/settingsUpdate";
|
|
import { SimListInstance } from "./supersim/v1/sim";
|
|
import { SmsCommandListInstance } from "./supersim/v1/smsCommand";
|
|
import { UsageRecordListInstance } from "./supersim/v1/usageRecord";
|
|
import SupersimBase from "./SupersimBase";
|
|
declare class Supersim extends SupersimBase {
|
|
/**
|
|
* @deprecated - Use v1.esimProfiles instead
|
|
*/
|
|
get esimProfiles(): EsimProfileListInstance;
|
|
/**
|
|
* @deprecated - Use v1.fleets instead
|
|
*/
|
|
get fleets(): FleetListInstance;
|
|
/**
|
|
* @deprecated - Use v1.ipCommands instead
|
|
*/
|
|
get ipCommands(): IpCommandListInstance;
|
|
/**
|
|
* @deprecated - Use v1.networks instead
|
|
*/
|
|
get networks(): NetworkListInstance;
|
|
/**
|
|
* @deprecated - Use v1.settingsUpdates instead
|
|
*/
|
|
get settingsUpdates(): SettingsUpdateListInstance;
|
|
/**
|
|
* @deprecated - Use v1.networkAccessProfiles instead
|
|
*/
|
|
get networkAccessProfiles(): NetworkAccessProfileListInstance;
|
|
/**
|
|
* @deprecated - Use v1.sims instead
|
|
*/
|
|
get sims(): SimListInstance;
|
|
/**
|
|
* @deprecated - Use v1.smsCommands instead
|
|
*/
|
|
get smsCommands(): SmsCommandListInstance;
|
|
/**
|
|
* @deprecated - Use v1.usageRecords instead
|
|
*/
|
|
get usageRecords(): UsageRecordListInstance;
|
|
}
|
|
export = Supersim;
|