Socket
Socket
Sign inDemoInstall

twilio

Package Overview
Dependencies
Maintainers
1
Versions
300
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

twilio - npm Package Compare versions

Comparing version 4.11.1 to 4.11.2

lib/rest/Intelligence.d.ts

4

lib/rest/api/v2010/account/conference/participant.d.ts

@@ -74,3 +74,3 @@ /// <reference types="node" />

conferenceRecord?: string;
/** Whether to trim leading and trailing silence from your recorded conference audio files. Can be: `trim-silence` or `do-not-trim` and defaults to `trim-silence`. */
/** Whether to trim leading and trailing silence from the conference recording. Can be: `trim-silence` or `do-not-trim` and defaults to `trim-silence`. */
conferenceTrim?: string;

@@ -133,2 +133,4 @@ /** The URL we should call using the `conference_status_callback_method` when the conference events in `conference_status_callback_event` occur. Only the value set by the first participant to join the conference is used. Subsequent `conference_status_callback` values are ignored. */

amdStatusCallbackMethod?: string;
/** Whether to trim any leading and trailing silence from the participant recording. Can be: `trim-silence` or `do-not-trim` and the default is `trim-silence`. */
trim?: string;
}

@@ -135,0 +137,0 @@ /**

@@ -320,2 +320,4 @@ "use strict";

data["AmdStatusCallbackMethod"] = params["amdStatusCallbackMethod"];
if (params["trim"] !== undefined)
data["Trim"] = params["trim"];
const headers = {};

@@ -322,0 +324,0 @@ headers["Content-Type"] = "application/x-www-form-urlencoded";

@@ -140,2 +140,3 @@ /// <reference types="node" />

mock: boolean;
errors: Array<any>;
}

@@ -243,2 +244,6 @@ export declare class UsAppToPersonInstance {

mock: boolean;
/**
* Details indicating why a campaign registration failed. These errors can indicate one or more fields that were incorrect or did not meet review requirements.
*/
errors: Array<any>;
private get _proxy();

@@ -291,2 +296,3 @@ /**

mock: boolean;
errors: any[];
};

@@ -293,0 +299,0 @@ [inspect.custom](_depth: any, options: InspectOptions): string;

@@ -96,2 +96,3 @@ "use strict";

this.mock = payload.mock;
this.errors = payload.errors;
this._solution = { messagingServiceSid, sid: sid || this.sid };

@@ -156,2 +157,3 @@ }

mock: this.mock,
errors: this.errors,
};

@@ -158,0 +160,0 @@ }

@@ -192,3 +192,3 @@ /// <reference types="node" />

/**
* The total data usage (download and upload combined) in Megabytes that each Super SIM assigned to the Fleet can consume during a billing period (normally one month). Value must be between 1MB (1) and 2TB (2,000,000). Defaults to 1GB (1,000).
* The total data usage (download and upload combined) in Megabytes that each Super SIM assigned to the Fleet can consume during a billing period (normally one month). Value must be between 1MB (1) and 2TB (2,000,000). Defaults to 250MB.
*/

@@ -198,3 +198,3 @@ dataLimit: number;

/**
* Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands. Defaults to `true`.
* Defines whether SIMs in the Fleet are capable of sending and receiving machine-to-machine SMS via Commands. Defaults to `false`.
*/

@@ -201,0 +201,0 @@ smsCommandsEnabled: boolean;

@@ -13,2 +13,3 @@ import { Client, ClientOpts, RequestOpts } from "../base/BaseTwilio";

import Insights from "./Insights";
import Intelligence from "./Intelligence";
import IpMessaging from "./IpMessaging";

@@ -88,2 +89,4 @@ import Lookups from "./Lookups";

_insights?: Insights;
/** (Twilio.Intelligence) - intelligence domain */
_intelligence?: Intelligence;
/** (Twilio.IpMessaging) - ipMessaging domain */

@@ -171,2 +174,4 @@ _ipMessaging?: IpMessaging;

get insights(): Insights;
/** Getter for (Twilio.Intelligence) domain */
get intelligence(): Intelligence;
/** Getter for (Twilio.IpMessaging) domain */

@@ -173,0 +178,0 @@ get ipMessaging(): IpMessaging;

@@ -46,2 +46,3 @@ "use strict";

this.insights;
this.intelligence;
this.ipMessaging;

@@ -121,2 +122,7 @@ this.lookups;

}
/** Getter for (Twilio.Intelligence) domain */
get intelligence() {
return (this._intelligence ??
(this._intelligence = new (require("./Intelligence"))(this)));
}
/** Getter for (Twilio.IpMessaging) domain */

@@ -123,0 +129,0 @@ get ipMessaging() {

{
"name": "twilio",
"description": "A Twilio helper library",
"version": "4.11.1",
"version": "4.11.2",
"author": "API Team <api@twilio.com>",

@@ -6,0 +6,0 @@ "contributors": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc