diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 760cac0d8f..ad07a0db9a 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -17,7 +17,7 @@ jobs: timeout-minutes: 20 strategy: matrix: - node: [ 14, 16, 18, lts/* ] + node: [ 14, 16, 18 ] steps: - name: Checkout twilio-node uses: actions/checkout@v3 @@ -49,7 +49,7 @@ jobs: npm run test - name: SonarCloud Scan - if: ${{ (github.event_name == 'pull_request' || github.ref_type == 'branch') && matrix.node == 'lts/*' && !github.event.pull_request.head.repo.fork }} + if: ${{ (github.event_name == 'pull_request' || github.ref_type == 'branch') && matrix.node == '18' && !github.event.pull_request.head.repo.fork }} uses: SonarSource/sonarcloud-github-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any @@ -69,7 +69,7 @@ jobs: - name: Set up Node uses: actions/setup-node@v3 with: - node-version: lts/* + node-version: 18 - run: npm install diff --git a/CHANGES.md b/CHANGES.md index f86bda2a27..44504c27b8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,10 +1,28 @@ twilio-node changelog ===================== -[2023-10-17] Version 5.0.0-rc.0 +[2023-11-07] Version 5.0.0-rc.0 --------------------------- - Release Candidate preparation +[2023-11-06] Version 4.19.1 +--------------------------- +**Flex** +- Adding `provisioning_status` for Email Manager + +**Intelligence** +- Add text-generation operator (for example conversation summary) results to existing OperatorResults collection. + +**Messaging** +- Add DELETE support to Tollfree Verification resource + +**Serverless** +- Add node18 as a valid Build runtime + +**Verify** +- Update Verify TOTP maturity to GA. + + [2023-10-19] Version 4.19.0 --------------------------- **Library - Chore** diff --git a/src/base/RequestClient.ts b/src/base/RequestClient.ts index f48b00b13f..263c443248 100644 --- a/src/base/RequestClient.ts +++ b/src/base/RequestClient.ts @@ -191,10 +191,11 @@ class RequestClient { }; if (opts.data && options.headers) { - if(options.headers["Content-Type"] === "application/x-www-form-urlencoded") { + if ( + options.headers["Content-Type"] === "application/x-www-form-urlencoded" + ) { options.data = qs.stringify(opts.data, { arrayFormat: "repeat" }); - } - else if(options.headers["Content-Type"] === "application/json") { + } else if (options.headers["Content-Type"] === "application/json") { options.data = opts.data; } } diff --git a/src/rest/PreviewMessaging.ts b/src/rest/PreviewMessaging.ts new file mode 100644 index 0000000000..dc598c3a77 --- /dev/null +++ b/src/rest/PreviewMessaging.ts @@ -0,0 +1,13 @@ +import PreviewMessagingBase from "./PreviewMessagingBase"; +import { MessageListInstance } from "./previewMessaging/v1/message"; + +class PreviewMessaging extends PreviewMessagingBase { + /** + * @deprecated - Use v1.messages; instead + */ + get messages(): MessageListInstance { + console.warn("messages is deprecated. Use v1.messages; instead."); + return this.v1.messages; + } +} +export = PreviewMessaging; diff --git a/src/rest/PreviewMessagingBase.ts b/src/rest/PreviewMessagingBase.ts new file mode 100644 index 0000000000..44e88ea83a --- /dev/null +++ b/src/rest/PreviewMessagingBase.ts @@ -0,0 +1,33 @@ +/* + * This code was generated by + * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ + * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ + * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ + * + * NOTE: This class is auto generated by OpenAPI Generator. + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import Domain from "../base/Domain"; +import V1 from "./previewMessaging/V1"; + +class PreviewMessagingBase extends Domain { + _v1?: V1; + + /** + * Initialize accounts domain + * + * @param twilio - The twilio client + */ + constructor(twilio: any) { + super(twilio, "https://preview.messaging.twilio.com"); + } + + get v1(): V1 { + this._v1 = this._v1 || new V1(this); + return this._v1; + } +} + +export = PreviewMessagingBase; diff --git a/src/rest/flexApi/V1.ts b/src/rest/flexApi/V1.ts index fd203e280f..153a8a2c35 100644 --- a/src/rest/flexApi/V1.ts +++ b/src/rest/flexApi/V1.ts @@ -29,6 +29,7 @@ import { InsightsSettingsAnswerSetsListInstance } from "./v1/insightsSettingsAns import { InsightsSettingsCommentListInstance } from "./v1/insightsSettingsComment"; import { InsightsUserRolesListInstance } from "./v1/insightsUserRoles"; import { InteractionListInstance } from "./v1/interaction"; +import { ProvisioningStatusListInstance } from "./v1/provisioningStatus"; import { WebChannelListInstance } from "./v1/webChannel"; export default class V1 extends Version { @@ -71,6 +72,8 @@ export default class V1 extends Version { protected _insightsUserRoles?: InsightsUserRolesListInstance; /** interaction - { Twilio.FlexApi.V1.InteractionListInstance } resource */ protected _interaction?: InteractionListInstance; + /** provisioningStatus - { Twilio.FlexApi.V1.ProvisioningStatusListInstance } resource */ + protected _provisioningStatus?: ProvisioningStatusListInstance; /** webChannel - { Twilio.FlexApi.V1.WebChannelListInstance } resource */ protected _webChannel?: WebChannelListInstance; @@ -180,6 +183,13 @@ export default class V1 extends Version { return this._interaction; } + /** Getter for provisioningStatus resource */ + get provisioningStatus(): ProvisioningStatusListInstance { + this._provisioningStatus = + this._provisioningStatus || ProvisioningStatusListInstance(this); + return this._provisioningStatus; + } + /** Getter for webChannel resource */ get webChannel(): WebChannelListInstance { this._webChannel = this._webChannel || WebChannelListInstance(this); diff --git a/src/rest/flexApi/v1/provisioningStatus.ts b/src/rest/flexApi/v1/provisioningStatus.ts new file mode 100644 index 0000000000..24abfc729b --- /dev/null +++ b/src/rest/flexApi/v1/provisioningStatus.ts @@ -0,0 +1,196 @@ +/* + * This code was generated by + * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ + * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ + * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ + * + * Twilio - Flex + * This is the public Twilio REST API. + * + * NOTE: This class is auto generated by OpenAPI Generator. + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { inspect, InspectOptions } from "util"; +import V1 from "../V1"; +const deserialize = require("../../../base/deserialize"); +const serialize = require("../../../base/serialize"); +import { isValidPathParam } from "../../../base/utility"; + +export type ProvisioningStatusStatus = + | "active" + | "in-progress" + | "not-configured" + | "failed"; + +export interface ProvisioningStatusContext { + /** + * Fetch a ProvisioningStatusInstance + * + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed ProvisioningStatusInstance + */ + fetch( + callback?: (error: Error | null, item?: ProvisioningStatusInstance) => any + ): Promise; + + /** + * Provide a user-friendly representation + */ + toJSON(): any; + [inspect.custom](_depth: any, options: InspectOptions): any; +} + +export interface ProvisioningStatusContextSolution {} + +export class ProvisioningStatusContextImpl + implements ProvisioningStatusContext +{ + protected _solution: ProvisioningStatusContextSolution; + protected _uri: string; + + constructor(protected _version: V1) { + this._solution = {}; + this._uri = `/account/provision/status`; + } + + fetch( + callback?: (error: Error | null, item?: ProvisioningStatusInstance) => any + ): Promise { + const instance = this; + let operationVersion = instance._version, + operationPromise = operationVersion.fetch({ + uri: instance._uri, + method: "get", + }); + + operationPromise = operationPromise.then( + (payload) => new ProvisioningStatusInstance(operationVersion, payload) + ); + + operationPromise = instance._version.setPromiseCallback( + operationPromise, + callback + ); + return operationPromise; + } + + /** + * Provide a user-friendly representation + * + * @returns Object + */ + toJSON() { + return this._solution; + } + + [inspect.custom](_depth: any, options: InspectOptions) { + return inspect(this.toJSON(), options); + } +} + +interface ProvisioningStatusPayload extends ProvisioningStatusResource {} + +interface ProvisioningStatusResource { + status: ProvisioningStatusStatus; + url: string; +} + +export class ProvisioningStatusInstance { + protected _solution: ProvisioningStatusContextSolution; + protected _context?: ProvisioningStatusContext; + + constructor(protected _version: V1, payload: ProvisioningStatusResource) { + this.status = payload.status; + this.url = payload.url; + + this._solution = {}; + } + + status: ProvisioningStatusStatus; + /** + * The absolute URL of the resource. + */ + url: string; + + private get _proxy(): ProvisioningStatusContext { + this._context = + this._context || new ProvisioningStatusContextImpl(this._version); + return this._context; + } + + /** + * Fetch a ProvisioningStatusInstance + * + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed ProvisioningStatusInstance + */ + fetch( + callback?: (error: Error | null, item?: ProvisioningStatusInstance) => any + ): Promise { + return this._proxy.fetch(callback); + } + + /** + * Provide a user-friendly representation + * + * @returns Object + */ + toJSON() { + return { + status: this.status, + url: this.url, + }; + } + + [inspect.custom](_depth: any, options: InspectOptions) { + return inspect(this.toJSON(), options); + } +} + +export interface ProvisioningStatusSolution {} + +export interface ProvisioningStatusListInstance { + _version: V1; + _solution: ProvisioningStatusSolution; + _uri: string; + + (): ProvisioningStatusContext; + get(): ProvisioningStatusContext; + + /** + * Provide a user-friendly representation + */ + toJSON(): any; + [inspect.custom](_depth: any, options: InspectOptions): any; +} + +export function ProvisioningStatusListInstance( + version: V1 +): ProvisioningStatusListInstance { + const instance = (() => instance.get()) as ProvisioningStatusListInstance; + + instance.get = function get(): ProvisioningStatusContext { + return new ProvisioningStatusContextImpl(version); + }; + + instance._version = version; + instance._solution = {}; + instance._uri = ``; + + instance.toJSON = function toJSON() { + return instance._solution; + }; + + instance[inspect.custom] = function inspectImpl( + _depth: any, + options: InspectOptions + ) { + return inspect(instance.toJSON(), options); + }; + + return instance; +} diff --git a/src/rest/intelligence/v2/transcript/operatorResult.ts b/src/rest/intelligence/v2/transcript/operatorResult.ts index fc64bf2aac..e167dce110 100644 --- a/src/rest/intelligence/v2/transcript/operatorResult.ts +++ b/src/rest/intelligence/v2/transcript/operatorResult.ts @@ -213,6 +213,7 @@ interface OperatorResultResource { predicted_probability: number; label_probabilities: any; extract_results: any; + text_generation_results: any; transcript_sid: string; url: string; } @@ -239,6 +240,7 @@ export class OperatorResultInstance { this.predictedProbability = payload.predicted_probability; this.labelProbabilities = payload.label_probabilities; this.extractResults = payload.extract_results; + this.textGenerationResults = payload.text_generation_results; this.transcriptSid = payload.transcript_sid; this.url = payload.url; @@ -293,6 +295,10 @@ export class OperatorResultInstance { * List of text extraction results. This might be available on classify-extract model outputs. */ extractResults: any; + /** + * Output of a text generation operator for example Conversation Sumamary. + */ + textGenerationResults: any; /** * A 34 character string that uniquely identifies this Transcript. */ @@ -362,6 +368,7 @@ export class OperatorResultInstance { predictedProbability: this.predictedProbability, labelProbabilities: this.labelProbabilities, extractResults: this.extractResults, + textGenerationResults: this.textGenerationResults, transcriptSid: this.transcriptSid, url: this.url, }; diff --git a/src/rest/messaging/v1/tollfreeVerification.ts b/src/rest/messaging/v1/tollfreeVerification.ts index b5a6f4b1eb..caddf98dc1 100644 --- a/src/rest/messaging/v1/tollfreeVerification.ts +++ b/src/rest/messaging/v1/tollfreeVerification.ts @@ -182,6 +182,17 @@ export interface TollfreeVerificationListInstancePageOptions { } export interface TollfreeVerificationContext { + /** + * Remove a TollfreeVerificationInstance + * + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed boolean + */ + remove( + callback?: (error: Error | null, item?: boolean) => any + ): Promise; + /** * Fetch a TollfreeVerificationInstance * @@ -242,6 +253,23 @@ export class TollfreeVerificationContextImpl this._uri = `/Tollfree/Verifications/${sid}`; } + remove( + callback?: (error: Error | null, item?: boolean) => any + ): Promise { + const instance = this; + let operationVersion = instance._version, + operationPromise = operationVersion.remove({ + uri: instance._uri, + method: "delete", + }); + + operationPromise = instance._version.setPromiseCallback( + operationPromise, + callback + ); + return operationPromise; + } + fetch( callback?: (error: Error | null, item?: TollfreeVerificationInstance) => any ): Promise { @@ -605,6 +633,19 @@ export class TollfreeVerificationInstance { return this._context; } + /** + * Remove a TollfreeVerificationInstance + * + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed boolean + */ + remove( + callback?: (error: Error | null, item?: boolean) => any + ): Promise { + return this._proxy.remove(callback); + } + /** * Fetch a TollfreeVerificationInstance * diff --git a/src/rest/previewMessaging/V1.ts b/src/rest/previewMessaging/V1.ts new file mode 100644 index 0000000000..e30d2a40ca --- /dev/null +++ b/src/rest/previewMessaging/V1.ts @@ -0,0 +1,46 @@ +/* + * This code was generated by + * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ + * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ + * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ + * + * Bulk Messaging and Broadcast + * Bulk Sending is a public Twilio REST API for 1:Many Message creation up to 100 recipients. Broadcast is a public Twilio REST API for 1:Many Message creation up to 10,000 recipients via file upload. + * + * NOTE: This class is auto generated by OpenAPI Generator. + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import PreviewMessagingBase from "../PreviewMessagingBase"; +import Version from "../../base/Version"; +import { BroadcastListInstance } from "./v1/broadcast"; +import { MessageListInstance } from "./v1/message"; + +export default class V1 extends Version { + /** + * Initialize the V1 version of PreviewMessaging + * + * @param domain - The Twilio (Twilio.PreviewMessaging) domain + */ + constructor(domain: PreviewMessagingBase) { + super(domain, "v1"); + } + + /** broadcasts - { Twilio.PreviewMessaging.V1.BroadcastListInstance } resource */ + protected _broadcasts?: BroadcastListInstance; + /** messages - { Twilio.PreviewMessaging.V1.MessageListInstance } resource */ + protected _messages?: MessageListInstance; + + /** Getter for broadcasts resource */ + get broadcasts(): BroadcastListInstance { + this._broadcasts = this._broadcasts || BroadcastListInstance(this); + return this._broadcasts; + } + + /** Getter for messages resource */ + get messages(): MessageListInstance { + this._messages = this._messages || MessageListInstance(this); + return this._messages; + } +} diff --git a/src/rest/previewMessaging/v1/broadcast.ts b/src/rest/previewMessaging/v1/broadcast.ts new file mode 100644 index 0000000000..099f613895 --- /dev/null +++ b/src/rest/previewMessaging/v1/broadcast.ts @@ -0,0 +1,208 @@ +/* + * This code was generated by + * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ + * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ + * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ + * + * Bulk Messaging and Broadcast + * Bulk Sending is a public Twilio REST API for 1:Many Message creation up to 100 recipients. Broadcast is a public Twilio REST API for 1:Many Message creation up to 10,000 recipients via file upload. + * + * NOTE: This class is auto generated by OpenAPI Generator. + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { inspect, InspectOptions } from "util"; +import V1 from "../V1"; +const deserialize = require("../../../base/deserialize"); +const serialize = require("../../../base/serialize"); +import { isValidPathParam } from "../../../base/utility"; + +/** + * Details on the statuses of messages sent to recipients + */ +export class MessagingV1BroadcastExecutionDetails { + /** + * Number of recipients in the Broadcast request + */ + "totalRecords"?: number; + /** + * Number of recipients with messages successfully sent to them + */ + "totalCompleted"?: number; + /** + * Number of recipients with messages unsuccessfully sent to them, producing an error + */ + "totalErrors"?: number; +} + +/** + * Options to pass to create a BroadcastInstance + */ +export interface BroadcastListInstanceCreateOptions { + /** Idempotency key provided by the client */ + xTwilioRequestKey?: string; +} + +export interface BroadcastSolution {} + +export interface BroadcastListInstance { + _version: V1; + _solution: BroadcastSolution; + _uri: string; + + /** + * Create a BroadcastInstance + * + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed BroadcastInstance + */ + create( + callback?: (error: Error | null, item?: BroadcastInstance) => any + ): Promise; + /** + * Create a BroadcastInstance + * + * @param params - Parameter for request + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed BroadcastInstance + */ + create( + params: BroadcastListInstanceCreateOptions, + callback?: (error: Error | null, item?: BroadcastInstance) => any + ): Promise; + + /** + * Provide a user-friendly representation + */ + toJSON(): any; + [inspect.custom](_depth: any, options: InspectOptions): any; +} + +export function BroadcastListInstance(version: V1): BroadcastListInstance { + const instance = {} as BroadcastListInstance; + + instance._version = version; + instance._solution = {}; + instance._uri = `/Broadcasts`; + + instance.create = function create( + params?: + | BroadcastListInstanceCreateOptions + | ((error: Error | null, items: BroadcastInstance) => any), + callback?: (error: Error | null, items: BroadcastInstance) => any + ): Promise { + if (params instanceof Function) { + callback = params; + params = {}; + } else { + params = params || {}; + } + + let data: any = {}; + + const headers: any = {}; + if (params["xTwilioRequestKey"] !== undefined) + headers["X-Twilio-Request-Key"] = params["xTwilioRequestKey"]; + + let operationVersion = version, + operationPromise = operationVersion.create({ + uri: instance._uri, + method: "post", + data, + headers, + }); + + operationPromise = operationPromise.then( + (payload) => new BroadcastInstance(operationVersion, payload) + ); + + operationPromise = instance._version.setPromiseCallback( + operationPromise, + callback + ); + return operationPromise; + }; + + instance.toJSON = function toJSON() { + return instance._solution; + }; + + instance[inspect.custom] = function inspectImpl( + _depth: any, + options: InspectOptions + ) { + return inspect(instance.toJSON(), options); + }; + + return instance; +} + +interface BroadcastPayload extends BroadcastResource {} + +interface BroadcastResource { + broadcast_sid: string; + created_date: Date; + updated_date: Date; + broadcast_status: string; + execution_details: MessagingV1BroadcastExecutionDetails; + errors_file: string; +} + +/** + * Details of a Broadcast + */ +export class BroadcastInstance { + constructor(protected _version: V1, payload: BroadcastResource) { + this.broadcastSid = payload.broadcast_sid; + this.createdDate = deserialize.iso8601DateTime(payload.created_date); + this.updatedDate = deserialize.iso8601DateTime(payload.updated_date); + this.broadcastStatus = payload.broadcast_status; + this.executionDetails = payload.execution_details; + this.errorsFile = payload.errors_file; + } + + /** + * Numeric ID indentifying individual Broadcast requests + */ + broadcastSid: string; + /** + * Timestamp of when the Broadcast was created + */ + createdDate: Date; + /** + * Timestamp of when the Broadcast was last updated + */ + updatedDate: Date; + /** + * Status of the Broadcast request. Valid values are None, Pending-Upload, Uploaded, Queued, Executing, Execution-Failure, Execution-Completed, Cancelation-Requested, and Canceled + */ + broadcastStatus: string; + executionDetails: MessagingV1BroadcastExecutionDetails; + /** + * Path to a file detailing errors from Broadcast execution + */ + errorsFile: string; + + /** + * Provide a user-friendly representation + * + * @returns Object + */ + toJSON() { + return { + broadcastSid: this.broadcastSid, + createdDate: this.createdDate, + updatedDate: this.updatedDate, + broadcastStatus: this.broadcastStatus, + executionDetails: this.executionDetails, + errorsFile: this.errorsFile, + }; + } + + [inspect.custom](_depth: any, options: InspectOptions) { + return inspect(this.toJSON(), options); + } +} diff --git a/src/rest/previewMessaging/v1/message.ts b/src/rest/previewMessaging/v1/message.ts new file mode 100644 index 0000000000..8ba125715c --- /dev/null +++ b/src/rest/previewMessaging/v1/message.ts @@ -0,0 +1,272 @@ +/* + * This code was generated by + * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ + * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ + * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ + * + * Bulk Messaging and Broadcast + * Bulk Sending is a public Twilio REST API for 1:Many Message creation up to 100 recipients. Broadcast is a public Twilio REST API for 1:Many Message creation up to 10,000 recipients via file upload. + * + * NOTE: This class is auto generated by OpenAPI Generator. + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { inspect, InspectOptions } from "util"; +import V1 from "../V1"; +const deserialize = require("../../../base/deserialize"); +const serialize = require("../../../base/serialize"); +import { isValidPathParam } from "../../../base/utility"; + +export class CreateMessagesRequest { + "messages"?: Array; + /** + * A Twilio phone number in [E.164](https://www.twilio.com/docs/glossary/what-e164) format, an [alphanumeric sender ID](https://www.twilio.com/docs/sms/send-messages#use-an-alphanumeric-sender-id), or a [Channel Endpoint address](https://www.twilio.com/docs/sms/channels#channel-addresses) that is enabled for the type of message you want to send. Phone numbers or [short codes](https://www.twilio.com/docs/sms/api/short-code) purchased from Twilio also work here. You cannot, for example, spoof messages from a private cell phone number. If you are using `messaging_service_sid`, this parameter must be empty. + */ + "from"?: string; + /** + * The SID of the [Messaging Service](https://www.twilio.com/docs/sms/services#send-a-message-with-copilot) you want to associate with the Message. Set this parameter to use the [Messaging Service Settings and Copilot Features](https://www.twilio.com/console/sms/services) you have configured and leave the `from` parameter empty. When only this parameter is set, Twilio will use your enabled Copilot Features to select the `from` phone number for delivery. + */ + "messagingServiceSid"?: string; + /** + * The text of the message you want to send. Can be up to 1,600 characters in length. + */ + "body"?: string; + /** + * The SID of the preconfigured [Content Template](https://www.twilio.com/docs/content-api/create-and-send-your-first-content-api-template#create-a-template) you want to associate with the Message. Must be used in conjuction with a preconfigured [Messaging Service Settings and Copilot Features](https://www.twilio.com/console/sms/services) When this parameter is set, Twilio will use your configured content template and the provided `ContentVariables`. This Twilio product is currently in Private Beta. + */ + "contentSid"?: string; + /** + * The URL of the media to send with the message. The media can be of type `gif`, `png`, and `jpeg` and will be formatted correctly on the recipient\'s device. The media size limit is 5MB for supported file types (JPEG, PNG, GIF) and 500KB for [other types](https://www.twilio.com/docs/sms/accepted-mime-types) of accepted media. To send more than one image in the message body, provide multiple `media_url` parameters in the POST request. You can include up to 10 `media_url` parameters per message. You can send images in an SMS message in only the US and Canada. + */ + "mediaUrl"?: Array; + /** + * The URL we should call using the \"status_callback_method\" to send status information to your application. If specified, we POST these message status changes to the URL - queued, failed, sent, delivered, or undelivered. Twilio will POST its [standard request parameters](https://www.twilio.com/docs/messaging/twiml#request-parameters) as well as some additional parameters including \"MessageSid\", \"MessageStatus\", and \"ErrorCode\". If you include this parameter with the \"messaging_service_sid\", we use this URL instead of the Status Callback URL of the [Messaging Service](https://www.twilio.com/docs/messaging/services/api). URLs must contain a valid hostname and underscores are not allowed. + */ + "statusCallback"?: string; + /** + * How long in seconds the message can remain in our outgoing message queue. After this period elapses, the message fails and we call your status callback. Can be between 1 and the default value of 14,400 seconds. After a message has been accepted by a carrier, however, we cannot guarantee that the message will not be queued after this period. We recommend that this value be at least 5 seconds. + */ + "validityPeriod"?: number; + /** + * The time at which Twilio will send the message. This parameter can be used to schedule a message to be sent at a particular time. Must be in ISO 8601 format. + */ + "sendAt"?: string; + /** + * This parameter indicates your intent to schedule a message. Pass the value `fixed` to schedule a message at a fixed time. This parameter works in conjuction with the `SendAt` parameter. + */ + "scheduleType"?: string; + /** + * Determines the usage of Click Tracking. Setting it to `true` will instruct Twilio to replace all links in the Message with a shortened version based on the associated Domain Sid and track clicks on them. If this parameter is not set on an API call, we will use the value set on the Messaging Service. If this parameter is not set and the value is not configured on the Messaging Service used this will default to `false`. + */ + "shortenUrls"?: boolean; + /** + * If set to True, Twilio will deliver the message as a single MMS message, regardless of the presence of media. + */ + "sendAsMms"?: boolean; + /** + * The maximum total price in US dollars that you will pay for the message to be delivered. Can be a decimal value that has up to 4 decimal places. All messages are queued for delivery and the message cost is checked before the message is sent. If the cost exceeds max_price, the message will fail and a status of Failed is sent to the status callback. If MaxPrice is not set, the message cost is not checked. + */ + "maxPrice"?: number; + /** + * Total number of attempts made ( including this ) to send out the message regardless of the provider used + */ + "attempt"?: number; + /** + * This parameter indicates whether to detect Unicode characters that have a similar GSM-7 character and replace them. Can be true or false. + */ + "smartEncoded"?: boolean; + /** + * This parameter allows Twilio to send SMS traffic to carriers without checking/caring whether the destination number is a mobile or a landline. + */ + "forceDelivery"?: boolean; + /** + * The SID of the application that should receive message status. We POST a message_sid parameter and a message_status parameter with a value of sent or failed to the application\'s message_status_callback. If a status_callback parameter is also passed, it will be ignored and the application\'s message_status_callback parameter will be used. + */ + "applicationSid"?: string; +} + +export class MessagingV1FailedMessageReceipt { + /** + * The recipient phone number + */ + "to"?: string; + /** + * The description of the error_code + */ + "errorMessage"?: string; + /** + * The error code associated with the message creation attempt + */ + "errorCode"?: number; +} + +export class MessagingV1Message { + /** + * The destination phone number in [E.164](https://www.twilio.com/docs/glossary/what-e164) format for SMS/MMS or [Channel user address](https://www.twilio.com/docs/sms/channels#channel-addresses) for other 3rd-party channels. + */ + "to"?: string; + /** + * The text of the message you want to send. Can be up to 1,600 characters in length. Overrides the request-level body and content template if provided. + */ + "body"?: string; + /** + * Key-value pairs of variable names to substitution values. Refer to the [Twilio Content API Resources](https://www.twilio.com/docs/content-api/content-api-resources#send-a-message-with-preconfigured-content) for more details. + */ + "contentVariables"?: { [key: string]: string }; +} + +export class MessagingV1MessageReceipt { + /** + * The recipient phone number + */ + "to"?: string | null; + /** + * The unique string that identifies the resource + */ + "sid"?: string | null; +} + +/** + * Options to pass to create a MessageInstance + */ +export interface MessageListInstanceCreateOptions { + /** */ + createMessagesRequest: CreateMessagesRequest; +} + +export interface MessageSolution {} + +export interface MessageListInstance { + _version: V1; + _solution: MessageSolution; + _uri: string; + + /** + * Create a MessageInstance + * + * @param params - Body for request + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed MessageInstance + */ + create( + params: CreateMessagesRequest, + callback?: (error: Error | null, item?: MessageInstance) => any + ): Promise; + + /** + * Provide a user-friendly representation + */ + toJSON(): any; + [inspect.custom](_depth: any, options: InspectOptions): any; +} + +export function MessageListInstance(version: V1): MessageListInstance { + const instance = {} as MessageListInstance; + + instance._version = version; + instance._solution = {}; + instance._uri = `/Messages`; + + instance.create = function create( + params: CreateMessagesRequest, + callback?: (error: Error | null, items: MessageInstance) => any + ): Promise { + if (params === null || params === undefined) { + throw new Error('Required parameter "params" missing.'); + } + + let data: any = {}; + + data = params; + + const headers: any = {}; + headers["Content-Type"] = "application/json"; + + let operationVersion = version, + operationPromise = operationVersion.create({ + uri: instance._uri, + method: "post", + data, + headers, + }); + + operationPromise = operationPromise.then( + (payload) => new MessageInstance(operationVersion, payload) + ); + + operationPromise = instance._version.setPromiseCallback( + operationPromise, + callback + ); + return operationPromise; + }; + + instance.toJSON = function toJSON() { + return instance._solution; + }; + + instance[inspect.custom] = function inspectImpl( + _depth: any, + options: InspectOptions + ) { + return inspect(instance.toJSON(), options); + }; + + return instance; +} + +interface MessagePayload extends MessageResource {} + +interface MessageResource { + total_message_count: number; + success_count: number; + error_count: number; + message_receipts: Array; + failed_message_receipts: Array; +} + +export class MessageInstance { + constructor(protected _version: V1, payload: MessageResource) { + this.totalMessageCount = deserialize.integer(payload.total_message_count); + this.successCount = deserialize.integer(payload.success_count); + this.errorCount = deserialize.integer(payload.error_count); + this.messageReceipts = payload.message_receipts; + this.failedMessageReceipts = payload.failed_message_receipts; + } + + /** + * The number of Messages processed in the request, equal to the sum of success_count and error_count. + */ + totalMessageCount: number; + /** + * The number of Messages successfully created. + */ + successCount: number; + /** + * The number of Messages unsuccessfully processed in the request. + */ + errorCount: number; + messageReceipts: Array; + failedMessageReceipts: Array; + + /** + * Provide a user-friendly representation + * + * @returns Object + */ + toJSON() { + return { + totalMessageCount: this.totalMessageCount, + successCount: this.successCount, + errorCount: this.errorCount, + messageReceipts: this.messageReceipts, + failedMessageReceipts: this.failedMessageReceipts, + }; + } + + [inspect.custom](_depth: any, options: InspectOptions) { + return inspect(this.toJSON(), options); + } +} diff --git a/src/rest/serverless/v1/service/build.ts b/src/rest/serverless/v1/service/build.ts index 0efb47b657..548d93fb70 100644 --- a/src/rest/serverless/v1/service/build.ts +++ b/src/rest/serverless/v1/service/build.ts @@ -21,7 +21,13 @@ const serialize = require("../../../../base/serialize"); import { isValidPathParam } from "../../../../base/utility"; import { BuildStatusListInstance } from "./build/buildStatus"; -export type BuildRuntime = "node8" | "node10" | "node12" | "node14" | "node16"; +export type BuildRuntime = + | "node8" + | "node10" + | "node12" + | "node14" + | "node16" + | "node18"; export type BuildStatus = "building" | "completed" | "failed"; diff --git a/src/rest/trusthub/V1.ts b/src/rest/trusthub/V1.ts index 19fdb93795..a6abf92499 100644 --- a/src/rest/trusthub/V1.ts +++ b/src/rest/trusthub/V1.ts @@ -15,6 +15,7 @@ import TrusthubBase from "../TrusthubBase"; import Version from "../../base/Version"; import { ComplianceInquiriesListInstance } from "./v1/complianceInquiries"; +import { ComplianceTollfreeInquiriesListInstance } from "./v1/complianceTollfreeInquiries"; import { CustomerProfilesListInstance } from "./v1/customerProfiles"; import { EndUserListInstance } from "./v1/endUser"; import { EndUserTypeListInstance } from "./v1/endUserType"; @@ -35,6 +36,8 @@ export default class V1 extends Version { /** complianceInquiries - { Twilio.Trusthub.V1.ComplianceInquiriesListInstance } resource */ protected _complianceInquiries?: ComplianceInquiriesListInstance; + /** complianceTollfreeInquiries - { Twilio.Trusthub.V1.ComplianceTollfreeInquiriesListInstance } resource */ + protected _complianceTollfreeInquiries?: ComplianceTollfreeInquiriesListInstance; /** customerProfiles - { Twilio.Trusthub.V1.CustomerProfilesListInstance } resource */ protected _customerProfiles?: CustomerProfilesListInstance; /** endUsers - { Twilio.Trusthub.V1.EndUserListInstance } resource */ @@ -57,6 +60,14 @@ export default class V1 extends Version { return this._complianceInquiries; } + /** Getter for complianceTollfreeInquiries resource */ + get complianceTollfreeInquiries(): ComplianceTollfreeInquiriesListInstance { + this._complianceTollfreeInquiries = + this._complianceTollfreeInquiries || + ComplianceTollfreeInquiriesListInstance(this); + return this._complianceTollfreeInquiries; + } + /** Getter for customerProfiles resource */ get customerProfiles(): CustomerProfilesListInstance { this._customerProfiles = diff --git a/src/rest/trusthub/v1/complianceTollfreeInquiries.ts b/src/rest/trusthub/v1/complianceTollfreeInquiries.ts new file mode 100644 index 0000000000..a373c5491a --- /dev/null +++ b/src/rest/trusthub/v1/complianceTollfreeInquiries.ts @@ -0,0 +1,341 @@ +/* + * This code was generated by + * ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ + * | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ + * | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ + * + * Twilio - Trusthub + * This is the public Twilio REST API. + * + * NOTE: This class is auto generated by OpenAPI Generator. + * https://openapi-generator.tech + * Do not edit the class manually. + */ + +import { inspect, InspectOptions } from "util"; +import V1 from "../V1"; +const deserialize = require("../../../base/deserialize"); +const serialize = require("../../../base/serialize"); +import { isValidPathParam } from "../../../base/utility"; + +/** + * Options to pass to update a ComplianceTollfreeInquiriesInstance + */ +export interface ComplianceTollfreeInquiriesContextUpdateOptions { + /** The Tollfree phone number to be verified */ + did: string; +} + +/** + * Options to pass to create a ComplianceTollfreeInquiriesInstance + */ +export interface ComplianceTollfreeInquiriesListInstanceCreateOptions { + /** The Tollfree phone number to be verified */ + did: string; +} + +export interface ComplianceTollfreeInquiriesContext { + /** + * Update a ComplianceTollfreeInquiriesInstance + * + * @param params - Parameter for request + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed ComplianceTollfreeInquiriesInstance + */ + update( + params: ComplianceTollfreeInquiriesContextUpdateOptions, + callback?: ( + error: Error | null, + item?: ComplianceTollfreeInquiriesInstance + ) => any + ): Promise; + + /** + * Provide a user-friendly representation + */ + toJSON(): any; + [inspect.custom](_depth: any, options: InspectOptions): any; +} + +export interface ComplianceTollfreeInquiriesContextSolution { + tollfreeId: string; +} + +export class ComplianceTollfreeInquiriesContextImpl + implements ComplianceTollfreeInquiriesContext +{ + protected _solution: ComplianceTollfreeInquiriesContextSolution; + protected _uri: string; + + constructor(protected _version: V1, tollfreeId: string) { + if (!isValidPathParam(tollfreeId)) { + throw new Error("Parameter 'tollfreeId' is not valid."); + } + + this._solution = { tollfreeId }; + this._uri = `/ComplianceInquiries/Tollfree/${tollfreeId}/Initialize`; + } + + update( + params: ComplianceTollfreeInquiriesContextUpdateOptions, + callback?: ( + error: Error | null, + item?: ComplianceTollfreeInquiriesInstance + ) => any + ): Promise { + if (params === null || params === undefined) { + throw new Error('Required parameter "params" missing.'); + } + + if (params["did"] === null || params["did"] === undefined) { + throw new Error("Required parameter \"params['did']\" missing."); + } + + let data: any = {}; + + data["Did"] = params["did"]; + + const headers: any = {}; + headers["Content-Type"] = "application/x-www-form-urlencoded"; + + const instance = this; + let operationVersion = instance._version, + operationPromise = operationVersion.update({ + uri: instance._uri, + method: "post", + data, + headers, + }); + + operationPromise = operationPromise.then( + (payload) => + new ComplianceTollfreeInquiriesInstance( + operationVersion, + payload, + instance._solution.tollfreeId + ) + ); + + operationPromise = instance._version.setPromiseCallback( + operationPromise, + callback + ); + return operationPromise; + } + + /** + * Provide a user-friendly representation + * + * @returns Object + */ + toJSON() { + return this._solution; + } + + [inspect.custom](_depth: any, options: InspectOptions) { + return inspect(this.toJSON(), options); + } +} + +interface ComplianceTollfreeInquiriesPayload + extends ComplianceTollfreeInquiriesResource {} + +interface ComplianceTollfreeInquiriesResource { + inquiry_id: string; + inquiry_session_token: string; + tollfree_id: string; + url: string; +} + +export class ComplianceTollfreeInquiriesInstance { + protected _solution: ComplianceTollfreeInquiriesContextSolution; + protected _context?: ComplianceTollfreeInquiriesContext; + + constructor( + protected _version: V1, + payload: ComplianceTollfreeInquiriesResource, + tollfreeId?: string + ) { + this.inquiryId = payload.inquiry_id; + this.inquirySessionToken = payload.inquiry_session_token; + this.tollfreeId = payload.tollfree_id; + this.url = payload.url; + + this._solution = { tollfreeId: tollfreeId || this.tollfreeId }; + } + + /** + * The unique ID used to start an embedded compliance registration session. + */ + inquiryId: string; + /** + * The session token used to start an embedded compliance registration session. + */ + inquirySessionToken: string; + /** + * The TolfreeId matching the Tollfree Profile that should be resumed or resubmitted for editing. + */ + tollfreeId: string; + /** + * The URL of this resource. + */ + url: string; + + private get _proxy(): ComplianceTollfreeInquiriesContext { + this._context = + this._context || + new ComplianceTollfreeInquiriesContextImpl( + this._version, + this._solution.tollfreeId + ); + return this._context; + } + + /** + * Update a ComplianceTollfreeInquiriesInstance + * + * @param params - Parameter for request + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed ComplianceTollfreeInquiriesInstance + */ + update( + params: ComplianceTollfreeInquiriesContextUpdateOptions, + callback?: ( + error: Error | null, + item?: ComplianceTollfreeInquiriesInstance + ) => any + ): Promise; + + update( + params?: any, + callback?: ( + error: Error | null, + item?: ComplianceTollfreeInquiriesInstance + ) => any + ): Promise { + return this._proxy.update(params, callback); + } + + /** + * Provide a user-friendly representation + * + * @returns Object + */ + toJSON() { + return { + inquiryId: this.inquiryId, + inquirySessionToken: this.inquirySessionToken, + tollfreeId: this.tollfreeId, + url: this.url, + }; + } + + [inspect.custom](_depth: any, options: InspectOptions) { + return inspect(this.toJSON(), options); + } +} + +export interface ComplianceTollfreeInquiriesSolution {} + +export interface ComplianceTollfreeInquiriesListInstance { + _version: V1; + _solution: ComplianceTollfreeInquiriesSolution; + _uri: string; + + (tollfreeId: string): ComplianceTollfreeInquiriesContext; + get(tollfreeId: string): ComplianceTollfreeInquiriesContext; + + /** + * Create a ComplianceTollfreeInquiriesInstance + * + * @param params - Parameter for request + * @param callback - Callback to handle processed record + * + * @returns Resolves to processed ComplianceTollfreeInquiriesInstance + */ + create( + params: ComplianceTollfreeInquiriesListInstanceCreateOptions, + callback?: ( + error: Error | null, + item?: ComplianceTollfreeInquiriesInstance + ) => any + ): Promise; + + /** + * Provide a user-friendly representation + */ + toJSON(): any; + [inspect.custom](_depth: any, options: InspectOptions): any; +} + +export function ComplianceTollfreeInquiriesListInstance( + version: V1 +): ComplianceTollfreeInquiriesListInstance { + const instance = ((tollfreeId) => + instance.get(tollfreeId)) as ComplianceTollfreeInquiriesListInstance; + + instance.get = function get(tollfreeId): ComplianceTollfreeInquiriesContext { + return new ComplianceTollfreeInquiriesContextImpl(version, tollfreeId); + }; + + instance._version = version; + instance._solution = {}; + instance._uri = `/ComplianceInquiries/Tollfree/Initialize`; + + instance.create = function create( + params: ComplianceTollfreeInquiriesListInstanceCreateOptions, + callback?: ( + error: Error | null, + items: ComplianceTollfreeInquiriesInstance + ) => any + ): Promise { + if (params === null || params === undefined) { + throw new Error('Required parameter "params" missing.'); + } + + if (params["did"] === null || params["did"] === undefined) { + throw new Error("Required parameter \"params['did']\" missing."); + } + + let data: any = {}; + + data["Did"] = params["did"]; + + const headers: any = {}; + headers["Content-Type"] = "application/x-www-form-urlencoded"; + + let operationVersion = version, + operationPromise = operationVersion.create({ + uri: instance._uri, + method: "post", + data, + headers, + }); + + operationPromise = operationPromise.then( + (payload) => + new ComplianceTollfreeInquiriesInstance(operationVersion, payload) + ); + + operationPromise = instance._version.setPromiseCallback( + operationPromise, + callback + ); + return operationPromise; + }; + + instance.toJSON = function toJSON() { + return instance._solution; + }; + + instance[inspect.custom] = function inspectImpl( + _depth: any, + options: InspectOptions + ) { + return inspect(instance.toJSON(), options); + }; + + return instance; +}