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

53 lines
1.9 KiB
JavaScript

"use strict";
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const Domain_1 = __importDefault(require("../base/Domain"));
const DeployedDevices_1 = __importDefault(require("./preview/DeployedDevices"));
const HostedNumbers_1 = __importDefault(require("./preview/HostedNumbers"));
const Sync_1 = __importDefault(require("./preview/Sync"));
const Marketplace_1 = __importDefault(require("./preview/Marketplace"));
const Wireless_1 = __importDefault(require("./preview/Wireless"));
class PreviewBase extends Domain_1.default {
/**
* Initialize preview domain
*
* @param twilio - The twilio client
*/
constructor(twilio) {
super(twilio, "https://preview.twilio.com");
}
get deployed_devices() {
this._deployed_devices =
this._deployed_devices || new DeployedDevices_1.default(this);
return this._deployed_devices;
}
get hosted_numbers() {
this._hosted_numbers = this._hosted_numbers || new HostedNumbers_1.default(this);
return this._hosted_numbers;
}
get sync() {
this._sync = this._sync || new Sync_1.default(this);
return this._sync;
}
get marketplace() {
this._marketplace = this._marketplace || new Marketplace_1.default(this);
return this._marketplace;
}
get wireless() {
this._wireless = this._wireless || new Wireless_1.default(this);
return this._wireless;
}
}
module.exports = PreviewBase;