@signalwire/compatibility-api
Version:
SignalWire Compatibility API
71 lines (65 loc) • 3.13 kB
TypeScript
/**
* This code was generated by
* \ / _ _ _| _ _
* | (_)\/(_)(_|\/| |(/_ v1.0.0
* / /
*/
import BulkExports = require('./preview/BulkExports');
import DeployedDevices = require('./preview/DeployedDevices');
import Domain = require('../base/Domain');
import HostedNumbers = require('./preview/HostedNumbers');
import Marketplace = require('./preview/Marketplace');
import Sync = require('./preview/Sync');
import TrustedComms = require('./preview/TrustedComms');
import Twilio = require('./Twilio');
import Understand = require('./preview/Understand');
import Wireless = require('./preview/Wireless');
import { AssistantListInstance } from './preview/understand/assistant';
import { AuthorizationDocumentListInstance } from './preview/hosted_numbers/authorizationDocument';
import { AvailableAddOnListInstance } from './preview/marketplace/availableAddOn';
import { BrandedChannelListInstance } from './preview/trusted_comms/brandedChannel';
import { BrandsInformationListInstance } from './preview/trusted_comms/brandsInformation';
import { CommandListInstance } from './preview/wireless/command';
import { CpsListInstance } from './preview/trusted_comms/cps';
import { CurrentCallListInstance } from './preview/trusted_comms/currentCall';
import { ExportConfigurationListInstance } from './preview/bulk_exports/exportConfiguration';
import { ExportListInstance } from './preview/bulk_exports/export';
import { FleetListInstance } from './preview/deployed_devices/fleet';
import { HostedNumberOrderListInstance } from './preview/hosted_numbers/hostedNumberOrder';
import { InstalledAddOnListInstance } from './preview/marketplace/installedAddOn';
import { RatePlanListInstance } from './preview/wireless/ratePlan';
import { ServiceListInstance } from './preview/sync/service';
import { SimListInstance } from './preview/wireless/sim';
declare class Preview extends Domain {
/**
* Initialize preview domain
*
* @param twilio - The twilio client
*/
constructor(twilio: Twilio);
readonly assistants: AssistantListInstance;
readonly authorizationDocuments: AuthorizationDocumentListInstance;
readonly availableAddOns: AvailableAddOnListInstance;
readonly brandedChannels: BrandedChannelListInstance;
readonly brandsInformation: BrandsInformationListInstance;
readonly bulk_exports: BulkExports;
readonly commands: CommandListInstance;
readonly cps: CpsListInstance;
readonly currentCalls: CurrentCallListInstance;
readonly deployed_devices: DeployedDevices;
readonly exportConfiguration: ExportConfigurationListInstance;
readonly exports: ExportListInstance;
readonly fleets: FleetListInstance;
readonly hostedNumberOrders: HostedNumberOrderListInstance;
readonly hosted_numbers: HostedNumbers;
readonly installedAddOns: InstalledAddOnListInstance;
readonly marketplace: Marketplace;
readonly ratePlans: RatePlanListInstance;
readonly services: ServiceListInstance;
readonly sims: SimListInstance;
readonly sync: Sync;
readonly trusted_comms: TrustedComms;
readonly understand: Understand;
readonly wireless: Wireless;
}
export = Preview;