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

37 lines
1.1 KiB
JavaScript

"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const WirelessBase_1 = __importDefault(require("./WirelessBase"));
class Wireless extends WirelessBase_1.default {
/**
* @deprecated - Use v1.usageRecords instead
*/
get usageRecords() {
console.warn("usageRecords is deprecated. Use v1.usageRecords instead.");
return this.v1.usageRecords;
}
/**
* @deprecated - Use v1.commands instead
*/
get commands() {
console.warn("commands is deprecated. Use v1.commands instead.");
return this.v1.commands;
}
/**
* @deprecated - Use v1.ratePlans instead
*/
get ratePlans() {
console.warn("ratePlans is deprecated. Use v1.ratePlans instead.");
return this.v1.ratePlans;
}
/**
* @deprecated - Use v1.sims instead
*/
get sims() {
console.warn("sims is deprecated. Use v1.sims instead.");
return this.v1.sims;
}
}
module.exports = Wireless;