twilio 4.11.2 → 4.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/base/BaseTwilio.js +15 -8
- package/lib/rest/api/v2010/account/message.d.ts +2 -2
- package/lib/rest/api/v2010/account/message.js +2 -2
- package/lib/rest/insights/v1/call/annotation.d.ts +9 -9
- package/lib/rest/insights/v1/call/callSummary.d.ts +58 -1
- package/lib/rest/insights/v1/call/event.d.ts +30 -3
- package/lib/rest/insights/v1/call/metric.d.ts +27 -6
- package/lib/rest/insights/v1/callSummaries.d.ts +135 -78
- package/lib/rest/insights/v1/callSummaries.js +8 -6
- package/lib/rest/insights/v1/setting.d.ts +16 -4
- package/lib/rest/lookups/v2/phoneNumber.d.ts +9 -1
- package/lib/rest/lookups/v2/phoneNumber.js +4 -0
- package/lib/rest/numbers/V1.d.ts +10 -0
- package/lib/rest/numbers/V1.js +15 -0
- package/lib/rest/numbers/V2.d.ts +10 -0
- package/lib/rest/numbers/V2.js +14 -0
- package/lib/rest/numbers/v1/portingBulkPortability.d.ts +120 -0
- package/lib/rest/numbers/v1/portingBulkPortability.js +136 -0
- package/lib/rest/numbers/v1/portingPortability.d.ts +134 -0
- package/lib/rest/numbers/v1/portingPortability.js +124 -0
- package/lib/rest/numbers/v2/authorizationDocument/dependentHostedNumberOrder.d.ts +265 -0
- package/lib/rest/numbers/v2/authorizationDocument/dependentHostedNumberOrder.js +164 -0
- package/lib/rest/numbers/v2/authorizationDocument.d.ts +288 -0
- package/lib/rest/numbers/v2/authorizationDocument.js +257 -0
- package/lib/rest/numbers/v2/hostedNumberOrder.d.ts +390 -0
- package/lib/rest/numbers/v2/hostedNumberOrder.js +296 -0
- package/lib/rest/taskrouter/v1/workspace/worker.d.ts +3 -3
- package/package.json +1 -1
|
@@ -54,7 +54,7 @@ export interface WorkerListInstanceEachOptions {
|
|
|
54
54
|
available?: string;
|
|
55
55
|
/** The `friendly_name` of the Worker resources to read. */
|
|
56
56
|
friendlyName?: string;
|
|
57
|
-
/** Filter by Workers that would match an expression
|
|
57
|
+
/** Filter by Workers that would match an expression. In addition to fields in the workers\' attributes, the expression can include the following worker fields: `sid`, `friendly_name`, `activity_sid`, or `activity_name` */
|
|
58
58
|
targetWorkersExpression?: string;
|
|
59
59
|
/** The `friendly_name` of the TaskQueue that the Workers to read are eligible for. */
|
|
60
60
|
taskQueueName?: string;
|
|
@@ -83,7 +83,7 @@ export interface WorkerListInstanceOptions {
|
|
|
83
83
|
available?: string;
|
|
84
84
|
/** The `friendly_name` of the Worker resources to read. */
|
|
85
85
|
friendlyName?: string;
|
|
86
|
-
/** Filter by Workers that would match an expression
|
|
86
|
+
/** Filter by Workers that would match an expression. In addition to fields in the workers\' attributes, the expression can include the following worker fields: `sid`, `friendly_name`, `activity_sid`, or `activity_name` */
|
|
87
87
|
targetWorkersExpression?: string;
|
|
88
88
|
/** The `friendly_name` of the TaskQueue that the Workers to read are eligible for. */
|
|
89
89
|
taskQueueName?: string;
|
|
@@ -108,7 +108,7 @@ export interface WorkerListInstancePageOptions {
|
|
|
108
108
|
available?: string;
|
|
109
109
|
/** The `friendly_name` of the Worker resources to read. */
|
|
110
110
|
friendlyName?: string;
|
|
111
|
-
/** Filter by Workers that would match an expression
|
|
111
|
+
/** Filter by Workers that would match an expression. In addition to fields in the workers\' attributes, the expression can include the following worker fields: `sid`, `friendly_name`, `activity_sid`, or `activity_name` */
|
|
112
112
|
targetWorkersExpression?: string;
|
|
113
113
|
/** The `friendly_name` of the TaskQueue that the Workers to read are eligible for. */
|
|
114
114
|
taskQueueName?: string;
|