Skip to content

Commit 4027376

Browse files
committed
[Librarian] Regenerated @ ee964c66599ebcd125eb411ba410bde1e62b3503
1 parent 8468619 commit 4027376

10 files changed

+1230
-119
lines changed

CHANGES.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
11
twilio-cli-core changelog
22
=====================
33

4+
[2020-03-04] Version 4.4.7
5+
--------------------------
6+
**Library - Fix**
7+
- [PR #80](https://github.com/twilio/twilio-cli-core/pull/80): update the wording for the env vars help message. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
8+
9+
**Authy**
10+
- Added the `configuration` property to services to return the service level configurations
11+
- Added optional parameter `Push` when creating a service to send the service level push factor configuration
12+
- Remove FactorStrength support for Factors and Challenges **(breaking change)**
13+
14+
**Messaging**
15+
- Correct the alpha sender capabilities property type **(breaking change)**
16+
17+
**Preview**
18+
- Removed `/Devices` register Branded Calls endpoint, as per iOS sample app deprecation **(breaking change)**
19+
- Removed `Twilio-Sandbox-Mode` request header from the Branded Calls endpoints, as not officially supported **(breaking change)**
20+
- Removed `Verify` version from `preview` subdomain in favor to `verify` subdomain. **(breaking change)**
21+
22+
**Serverless**
23+
- Add UI-Editable field to Services
24+
25+
**Supersim**
26+
- Add `inactive` status for Super SIM which is an alias for `deactivated`
27+
28+
**Taskrouter**
29+
- Adding value range to `priority` in task endpoint
30+
31+
**Verify**
32+
- Fix `SendCodeAttempts` type. It's an array of objects instead of a unique object. **(breaking change)**
33+
34+
435
[2020-02-19] Version 4.4.6
536
--------------------------
637
**Library - Chore**

package-lock.json

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"semver": "^6.3.0",
1919
"shelljs": "^0.8.3",
2020
"tsv": "^0.2.0",
21-
"twilio": "^3.39.5"
21+
"twilio": "^3.40.0"
2222
},
2323
"optionalDependencies": {
2424
"keytar": "^4.13.0"

src/services/twilio-api/twilio_authy.json

+12-22
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232
"pattern": "^AC[0-9a-fA-F]{32}$",
3333
"type": "string"
3434
},
35+
"configuration": {
36+
"type": "object"
37+
},
3538
"date_created": {
3639
"format": "date-time",
3740
"type": "string"
@@ -122,17 +125,6 @@
122125
"pattern": "^YE[0-9a-fA-F]{32}$",
123126
"type": "string"
124127
},
125-
"factor_strength": {
126-
"enum": [
127-
"unknown",
128-
"very_low",
129-
"low",
130-
"medium",
131-
"high",
132-
"very_high"
133-
],
134-
"type": "string"
135-
},
136128
"factor_type": {
137129
"enum": [
138130
"app-push",
@@ -216,17 +208,6 @@
216208
"pattern": "^YF[0-9a-fA-F]{32}$",
217209
"type": "string"
218210
},
219-
"factor_strength": {
220-
"enum": [
221-
"unknown",
222-
"very_low",
223-
"low",
224-
"medium",
225-
"high",
226-
"very_high"
227-
],
228-
"type": "string"
229-
},
230211
"factor_type": {
231212
"enum": [
232213
"app-push",
@@ -438,6 +419,15 @@
438419
"schema": {
439420
"type": "string"
440421
}
422+
},
423+
{
424+
"description": "The optional service level push factors configuration. If present it must be a json string with the following format: {\"notify_service_sid\": \"ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\"}",
425+
"in": "query",
426+
"name": "Push",
427+
"required": false,
428+
"schema": {
429+
"type": "string"
430+
}
441431
}
442432
],
443433
"responses": {

src/services/twilio-api/twilio_messaging.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
},
125125
"capabilities": {
126126
"items": {
127-
"type": "object"
127+
"type": "string"
128128
},
129129
"type": "array"
130130
},

src/services/twilio-api/twilio_preview.json

+24-81
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,15 @@
1818
},
1919
"preview.bulk_exports.export.day": {
2020
"properties": {
21+
"create_date": {
22+
"type": "string"
23+
},
2124
"day": {
2225
"type": "string"
2326
},
27+
"friendly_name": {
28+
"type": "string"
29+
},
2430
"resource_type": {
2531
"type": "string"
2632
},
@@ -1398,30 +1404,6 @@
13981404
},
13991405
"type": "object"
14001406
},
1401-
"preview.trusted_comms.device": {
1402-
"properties": {
1403-
"binding_sid": {
1404-
"maxLength": 34,
1405-
"minLength": 34,
1406-
"pattern": "^BS[0-9a-fA-F]{32}$",
1407-
"type": "string"
1408-
},
1409-
"phone_number": {
1410-
"type": "string"
1411-
},
1412-
"sid": {
1413-
"maxLength": 34,
1414-
"minLength": 34,
1415-
"pattern": "^DD[0-9a-fA-F]{32}$",
1416-
"type": "string"
1417-
},
1418-
"url": {
1419-
"format": "uri",
1420-
"type": "string"
1421-
}
1422-
},
1423-
"type": "object"
1424-
},
14251407
"preview.trusted_comms.phone_call": {
14261408
"properties": {
14271409
"account_sid": {
@@ -2640,6 +2622,24 @@
26402622
"type": "string"
26412623
}
26422624
},
2625+
{
2626+
"description": "",
2627+
"in": "query",
2628+
"name": "NextToken",
2629+
"required": false,
2630+
"schema": {
2631+
"type": "string"
2632+
}
2633+
},
2634+
{
2635+
"description": "",
2636+
"in": "query",
2637+
"name": "PreviousToken",
2638+
"required": false,
2639+
"schema": {
2640+
"type": "string"
2641+
}
2642+
},
26432643
{
26442644
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
26452645
"in": "query",
@@ -9030,63 +9030,6 @@
90309030
],
90319031
"x-path-type": "instance"
90329032
},
9033-
"/TrustedComms/Devices": {
9034-
"description": "TODO: Resource-level docs",
9035-
"post": {
9036-
"description": "Registers a new Device and Push Token against Trusted Comms API. This works specially for iOS devices, which don't allow the SDK to know when there's an incoming call, nor the originating number.",
9037-
"parameters": [
9038-
{
9039-
"description": "The end user Phone Number linked to the device, given in [E.164 format](https://www.twilio.com/docs/glossary/what-e164). The SDK or partner app is responsible of verifying this phone number veracity.",
9040-
"in": "query",
9041-
"name": "PhoneNumber",
9042-
"required": true,
9043-
"schema": {
9044-
"type": "string"
9045-
}
9046-
},
9047-
{
9048-
"description": "The Push Token for this Phone Number, linked to the correct SDK's application, certificate and keys.",
9049-
"in": "query",
9050-
"name": "PushToken",
9051-
"required": true,
9052-
"schema": {
9053-
"type": "string"
9054-
}
9055-
}
9056-
],
9057-
"responses": {
9058-
"201": {
9059-
"content": {
9060-
"application/json": {
9061-
"schema": {
9062-
"$ref": "#/components/schemas/preview.trusted_comms.device"
9063-
}
9064-
}
9065-
}
9066-
}
9067-
},
9068-
"security": [
9069-
{
9070-
"accountSid_authToken": []
9071-
}
9072-
],
9073-
"tags": [
9074-
"Preview"
9075-
]
9076-
},
9077-
"servers": [
9078-
{
9079-
"url": "https://preview.twilio.com"
9080-
}
9081-
],
9082-
"x-default-output-properties": [
9083-
"binding_sid",
9084-
"phone_number",
9085-
"sid",
9086-
"url"
9087-
],
9088-
"x-path-type": "list"
9089-
},
90909033
"/marketplace/AvailableAddOns": {
90919034
"description": "TODO: Resource-level docs",
90929035
"get": {

src/services/twilio-api/twilio_serverless.json

+21
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@
3232
"pattern": "^ZS[0-9a-fA-F]{32}$",
3333
"type": "string"
3434
},
35+
"ui_editable": {
36+
"type": "boolean"
37+
},
3538
"unique_name": {
3639
"type": "string"
3740
},
@@ -622,6 +625,15 @@
622625
"schema": {
623626
"type": "boolean"
624627
}
628+
},
629+
{
630+
"description": "Whether the Service's properties and subresources can be edited via the UI. The default value is `false`.",
631+
"in": "query",
632+
"name": "UiEditable",
633+
"required": false,
634+
"schema": {
635+
"type": "boolean"
636+
}
625637
}
626638
],
627639
"responses": {
@@ -3003,6 +3015,15 @@
30033015
"schema": {
30043016
"type": "string"
30053017
}
3018+
},
3019+
{
3020+
"description": "Whether the Service's properties and subresources can be edited via the UI. The default value is `false`.",
3021+
"in": "query",
3022+
"name": "UiEditable",
3023+
"required": false,
3024+
"schema": {
3025+
"type": "boolean"
3026+
}
30063027
}
30073028
],
30083029
"responses": {

0 commit comments

Comments
 (0)