Files
boc/vims-backend/node_modules/twilio/lib/rest/FlexApi.d.ts
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- 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
2026-07-08 19:56:03 +00:00

40 lines
1.3 KiB
TypeScript

import { ChannelListInstance } from "./flexApi/v1/channel";
import { ConfigurationListInstance } from "./flexApi/v1/configuration";
import { FlexFlowListInstance } from "./flexApi/v1/flexFlow";
import { InteractionListInstance } from "./flexApi/v1/interaction";
import { WebChannelListInstance } from "./flexApi/v1/webChannel";
import { AssessmentsListInstance } from "./flexApi/v1/assessments";
import { WebChannelsListInstance } from "./flexApi/v2/webChannels";
import FlexApiBase from "./FlexApiBase";
declare class FlexApi extends FlexApiBase {
/**
* @deprecated - Use v1.assessments instead
*/
get assessments(): AssessmentsListInstance;
/**
* @deprecated - Use v1.channel instead
*/
get channel(): ChannelListInstance;
/**
* @deprecated - Use v1.configuration instead
*/
get configuration(): ConfigurationListInstance;
/**
* @deprecated - Use v1.flexFlow instead
*/
get flexFlow(): FlexFlowListInstance;
/**
* @deprecated - Use v1.interaction instead
*/
get interaction(): InteractionListInstance;
/**
* @deprecated - Use v1.webChannel instead
*/
get webChannel(): WebChannelListInstance;
/**
* @deprecated - Use v2.webChannels instead
*/
get webChannels(): WebChannelsListInstance;
}
export = FlexApi;