UNPKG

twilio

Version:
443 lines (442 loc) 17.2 kB
"use strict"; /* * This code was generated by * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ * * Conversation Orchestrator * Manage configurations, conversations, participants, and communications. Create configurations to define capture rules and channel settings, then use conversations to group related communications. * * 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 }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ParticipantPage = exports.ParticipantInstance = exports.ParticipantContextImpl = exports.UpdateParticipantInConversationRequest = exports.CreateParticipantInConversationRequestAddresses = exports.CreateParticipantInConversationRequest = exports.ConversationsV2Address = void 0; exports.ParticipantListInstance = ParticipantListInstance; const util_1 = require("util"); const TokenPage_1 = __importDefault(require("../../../base/TokenPage")); const deserialize = require("../../../base/deserialize"); const serialize = require("../../../base/serialize"); const utility_1 = require("../../../base/utility"); class ConversationsV2Address { constructor(payload) { this.channel = payload["channel"]; this.address = payload["address"]; this.channelId = payload["channelId"]; } } exports.ConversationsV2Address = ConversationsV2Address; class CreateParticipantInConversationRequest { constructor(payload) { this.name = payload["name"]; this.type = payload["type"]; this.profileId = payload["profileId"]; this.addresses = payload["addresses"]; } } exports.CreateParticipantInConversationRequest = CreateParticipantInConversationRequest; class CreateParticipantInConversationRequestAddresses { constructor(payload) { this.channel = payload["channel"]; this.address = payload["address"]; this.channelId = payload["channelId"]; } } exports.CreateParticipantInConversationRequestAddresses = CreateParticipantInConversationRequestAddresses; class UpdateParticipantInConversationRequest { constructor(payload) { this.name = payload["name"]; this.type = payload["type"]; this.profileId = payload["profileId"]; this.addresses = payload["addresses"]; } } exports.UpdateParticipantInConversationRequest = UpdateParticipantInConversationRequest; class ParticipantContextImpl { constructor(_version, conversationSid, sid) { this._version = _version; if (!(0, utility_1.isValidPathParam)(conversationSid)) { throw new Error("Parameter 'conversationSid' is not valid."); } if (!(0, utility_1.isValidPathParam)(sid)) { throw new Error("Parameter 'sid' is not valid."); } this._solution = { conversationSid, sid }; this._uri = `/Conversations/${conversationSid}/Participants/${sid}`; } fetch(callback) { const headers = {}; headers["Accept"] = "application/json"; const instance = this; let operationVersion = instance._version, operationPromise = operationVersion.fetch({ uri: instance._uri, method: "get", headers, }); operationPromise = operationPromise.then((payload) => new ParticipantInstance(operationVersion, payload, instance._solution.conversationSid, instance._solution.sid)); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; } fetchWithHttpInfo(callback) { const headers = {}; headers["Accept"] = "application/json"; const instance = this; let operationVersion = instance._version; // CREATE, FETCH, UPDATE operations let operationPromise = operationVersion .fetchWithResponseInfo({ uri: instance._uri, method: "get", headers, }) .then((response) => ({ ...response, body: new ParticipantInstance(operationVersion, response.body, instance._solution.conversationSid, instance._solution.sid), })); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; } update(params, headers, callback) { if (params instanceof Function) { callback = params; params = {}; } else { params = params || {}; } let data = {}; data = params; if (headers === null || headers === undefined) { headers = {}; } headers["Content-Type"] = "application/json"; headers["Accept"] = "application/json"; const instance = this; let operationVersion = instance._version, operationPromise = operationVersion.update({ uri: instance._uri, method: "put", data, headers, }); operationPromise = operationPromise.then((payload) => new ParticipantInstance(operationVersion, payload, instance._solution.conversationSid, instance._solution.sid)); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; } updateWithHttpInfo(params, headers, callback) { if (params instanceof Function) { callback = params; params = {}; } else { params = params || {}; } let data = {}; data = params; if (headers === null || headers === undefined) { headers = {}; } headers["Content-Type"] = "application/json"; headers["Accept"] = "application/json"; const instance = this; let operationVersion = instance._version; // CREATE, FETCH, UPDATE operations let operationPromise = operationVersion .updateWithResponseInfo({ uri: instance._uri, method: "put", data, headers, }) .then((response) => ({ ...response, body: new ParticipantInstance(operationVersion, response.body, instance._solution.conversationSid, instance._solution.sid), })); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; } /** * Provide a user-friendly representation * * @returns Object */ toJSON() { return this._solution; } [util_1.inspect.custom](_depth, options) { return (0, util_1.inspect)(this.toJSON(), options); } } exports.ParticipantContextImpl = ParticipantContextImpl; class ParticipantInstance { constructor(_version, _payload, conversationSid, sid) { this._version = _version; const payload = _payload; this.id = payload.id; this.conversationId = payload.conversationId; this.accountId = payload.accountId; this.name = payload.name; this.type = payload.type; this.profileId = payload.profileId; this.addresses = payload.addresses !== null && payload.addresses !== undefined ? payload.addresses.map((payload) => new ConversationsV2Address(payload)) : null; this.createdAt = deserialize.iso8601DateTime(payload.createdAt); this.updatedAt = deserialize.iso8601DateTime(payload.updatedAt); this._solution = { conversationSid, sid: sid }; } get _proxy() { this._context = this._context || new ParticipantContextImpl(this._version, this._solution.conversationSid, this._solution.sid); return this._context; } /** * Fetch a ParticipantInstance * * @param callback - Callback to handle processed record * * @returns Resolves to processed ParticipantInstance */ fetch(callback) { return this._proxy.fetch(callback); } /** * Fetch a ParticipantInstance and return HTTP info * * @param callback - Callback to handle processed record * * @returns Resolves to processed ParticipantInstance with HTTP metadata */ fetchWithHttpInfo(callback) { return this._proxy.fetchWithHttpInfo(callback); } update(params, callback) { return this._proxy.update(params, callback); } updateWithHttpInfo(params, callback) { return this._proxy.updateWithHttpInfo(params, callback); } /** * Provide a user-friendly representation * * @returns Object */ toJSON() { return { id: this.id, conversationId: this.conversationId, accountId: this.accountId, name: this.name, type: this.type, profileId: this.profileId, addresses: this.addresses, createdAt: this.createdAt, updatedAt: this.updatedAt, }; } [util_1.inspect.custom](_depth, options) { return (0, util_1.inspect)(this.toJSON(), options); } } exports.ParticipantInstance = ParticipantInstance; function ParticipantListInstance(version, conversationSid) { if (!(0, utility_1.isValidPathParam)(conversationSid)) { throw new Error("Parameter 'conversationSid' is not valid."); } const instance = ((sid) => instance.get(sid)); instance.get = function get(sid) { return new ParticipantContextImpl(version, conversationSid, sid); }; instance._version = version; instance._solution = { conversationSid }; instance._uri = `/Conversations/${conversationSid}/Participants`; instance.create = function create(params, headers, callback) { if (params instanceof Function) { callback = params; params = {}; } else { params = params || {}; } let data = {}; data = params; if (headers === null || headers === undefined) { headers = {}; } headers["Content-Type"] = "application/json"; headers["Accept"] = "application/json"; let operationVersion = version, operationPromise = operationVersion.create({ uri: instance._uri, method: "post", data, headers, }); operationPromise = operationPromise.then((payload) => new ParticipantInstance(operationVersion, payload, instance._solution.conversationSid)); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; }; instance.createWithHttpInfo = function createWithHttpInfo(params, headers, callback) { if (params instanceof Function) { callback = params; params = {}; } else { params = params || {}; } let data = {}; data = params; if (headers === null || headers === undefined) { headers = {}; } headers["Content-Type"] = "application/json"; headers["Accept"] = "application/json"; let operationVersion = version; // CREATE, FETCH, UPDATE operations let operationPromise = operationVersion .createWithResponseInfo({ uri: instance._uri, method: "post", data, headers, }) .then((response) => ({ ...response, body: new ParticipantInstance(operationVersion, response.body, instance._solution.conversationSid), })); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; }; instance.page = function page(params, callback) { if (params instanceof Function) { callback = params; params = {}; } else { params = params || {}; } let data = {}; if (params["pageSize"] !== undefined) data["pageSize"] = params["pageSize"]; if (params["pageToken"] !== undefined) data["pageToken"] = params["pageToken"]; const headers = {}; headers["Accept"] = "application/json"; let operationVersion = version, operationPromise = operationVersion.page({ uri: instance._uri, method: "get", params: data, headers, }); operationPromise = operationPromise.then((payload) => new ParticipantPage(operationVersion, payload, instance._uri, data, instance._solution)); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; }; instance.each = instance._version.each; instance.list = instance._version.list; instance.getPage = function getPage(targetUrl, callback) { const operationPromise = instance._version._domain.twilio.request({ method: "get", uri: targetUrl, }); let pagePromise = operationPromise.then((payload) => new ParticipantPage(instance._version, payload, instance._uri, {}, instance._solution)); pagePromise = instance._version.setPromiseCallback(pagePromise, callback); return pagePromise; }; instance.pageWithHttpInfo = function pageWithHttpInfo(params, callback) { if (params instanceof Function) { callback = params; params = {}; } else { params = params || {}; } let data = {}; if (params["pageSize"] !== undefined) data["pageSize"] = params["pageSize"]; if (params["pageToken"] !== undefined) data["pageToken"] = params["pageToken"]; const headers = {}; headers["Accept"] = "application/json"; let operationVersion = version; // For page operations, use page() directly as it already returns { statusCode, body, headers } // IMPORTANT: Pass full response to Page constructor, not response.body let operationPromise = operationVersion .page({ uri: instance._uri, method: "get", params: data, headers }) .then((response) => ({ statusCode: response.statusCode, headers: response.headers, body: new ParticipantPage(operationVersion, response, instance._uri, data, instance._solution), })); operationPromise = instance._version.setPromiseCallback(operationPromise, callback); return operationPromise; }; instance.each = instance._version.each; instance.eachWithHttpInfo = instance._version.eachWithHttpInfo; instance.list = instance._version.list; instance.listWithHttpInfo = instance._version.listWithHttpInfo; instance.getPageWithHttpInfo = function getPageWithHttpInfo(targetUrl, callback) { // Use request() directly as it already returns { statusCode, body, headers } const operationPromise = instance._version._domain.twilio.request({ method: "get", uri: targetUrl, }); let pagePromise = operationPromise.then((response) => ({ statusCode: response.statusCode, headers: response.headers, body: new ParticipantPage(instance._version, response, instance._uri, {}, instance._solution), })); pagePromise = instance._version.setPromiseCallback(pagePromise, callback); return pagePromise; }; instance.toJSON = function toJSON() { return instance._solution; }; instance[util_1.inspect.custom] = function inspectImpl(_depth, options) { return (0, util_1.inspect)(instance.toJSON(), options); }; return instance; } class ParticipantPage extends TokenPage_1.default { /** * Initialize the ParticipantPage * * @param version - Version of the resource * @param response - Response from the API * @param uri - URI of the resource * @param params - Query parameters * @param solution - Path solution */ constructor(version, response, uri, params, solution) { super(version, response, uri, params, solution); } /** * Build an instance of ParticipantInstance * * @param payload - Payload response from the API */ getInstance(payload) { return new ParticipantInstance(this._version, payload, this._solution.conversationSid); } [util_1.inspect.custom](depth, options) { return (0, util_1.inspect)(this.toJSON(), options); } } exports.ParticipantPage = ParticipantPage;