Files
boc/vims-backend/node_modules/twilio/lib/rest/FlexApi.js
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

58 lines
1.7 KiB
JavaScript

"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const FlexApiBase_1 = __importDefault(require("./FlexApiBase"));
class FlexApi extends FlexApiBase_1.default {
/**
* @deprecated - Use v1.assessments instead
*/
get assessments() {
console.warn("assessments is deprecated. Use v1.assessments instead.");
return this.v1.assessments;
}
/**
* @deprecated - Use v1.channel instead
*/
get channel() {
console.warn("channel is deprecated. Use v1.channel instead.");
return this.v1.channel;
}
/**
* @deprecated - Use v1.configuration instead
*/
get configuration() {
console.warn("configuration is deprecated. Use v1.configuration instead.");
return this.v1.configuration;
}
/**
* @deprecated - Use v1.flexFlow instead
*/
get flexFlow() {
console.warn("flexFlow is deprecated. Use v1.flexFlow instead.");
return this.v1.flexFlow;
}
/**
* @deprecated - Use v1.interaction instead
*/
get interaction() {
console.warn("interaction is deprecated. Use v1.interaction instead.");
return this.v1.interaction;
}
/**
* @deprecated - Use v1.webChannel instead
*/
get webChannel() {
console.warn("webChannel is deprecated. Use v1.webChannel instead.");
return this.v1.webChannel;
}
/**
* @deprecated - Use v2.webChannels instead
*/
get webChannels() {
console.warn("webChannels is deprecated. Use v2.webChannels instead.");
return this.v2.webChannels;
}
}
module.exports = FlexApi;