Skip to content

Commit a53a553

Browse files
committed
[Librarian] Regenerated @ d93b125feef8f080ce53c51ce6f0297da3413bab
1 parent 8c55d29 commit a53a553

File tree

7 files changed

+1054
-12
lines changed

7 files changed

+1054
-12
lines changed

CHANGES.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,32 @@
11
twilio-cli-core changelog
22
=====================
33

4+
[2020-04-01] Version 4.6.0
5+
--------------------------
6+
**Library - Fix**
7+
- [PR #82](https://github.com/twilio/twilio-cli-core/pull/82): axios expects paramsSerializer. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
8+
9+
**Api**
10+
- Add optional 'secure' parameter to SIP Domain
11+
12+
**Authy**
13+
- Added an endpoint to list the challenges of a factor
14+
- Added optional parameter `Push` when updating a service to send the service level push factor configuration
15+
16+
**Bulkexports**
17+
- exposing bulk exports (vault/slapchop) API as public beta API
18+
19+
**Flex**
20+
- Adding `queue_stats_configuration` and `wfm_integrations` to Flex Configuration
21+
22+
**Serverless**
23+
- Add Function Version Content endpoint
24+
- Allow build_sid to be optional for deployment requests
25+
26+
**Supersim**
27+
- Remove `deactivated` status for Super SIM which is replaced by `inactive` **(breaking change)**
28+
29+
430
[2020-03-18] Version 4.5.0
531
--------------------------
632
**Library - Feature**

src/services/twilio-api/twilio_api.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3586,6 +3586,9 @@
35863586
"friendly_name": {
35873587
"type": "string"
35883588
},
3589+
"secure": {
3590+
"type": "boolean"
3591+
},
35893592
"sid": {
35903593
"maxLength": 34,
35913594
"minLength": 34,
@@ -22130,6 +22133,15 @@
2213022133
"schema": {
2213122134
"type": "boolean"
2213222135
}
22136+
},
22137+
{
22138+
"description": "Whether secure SIP is enabled for the domain. If enabled, TLS will be enforced and SRTP will be negotiated on all incoming calls to this sip domain.",
22139+
"in": "query",
22140+
"name": "Secure",
22141+
"required": false,
22142+
"schema": {
22143+
"type": "boolean"
22144+
}
2213322145
}
2213422146
],
2213522147
"responses": {
@@ -23887,6 +23899,15 @@
2388723899
"schema": {
2388823900
"type": "boolean"
2388923901
}
23902+
},
23903+
{
23904+
"description": "Whether secure SIP is enabled for the domain. If enabled, TLS will be enforced and SRTP will be negotiated on all incoming calls to this sip domain.",
23905+
"in": "query",
23906+
"name": "Secure",
23907+
"required": false,
23908+
"schema": {
23909+
"type": "boolean"
23910+
}
2389023911
}
2389123912
],
2389223913
"responses": {

src/services/twilio-api/twilio_authy.json

Lines changed: 130 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@
424424
}
425425
},
426426
{
427-
"description": "The optional service level push factors configuration. If present it must be a json string with the following format: {\"notify_service_sid\": \"ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\"}",
427+
"description": "The optional service level push factors configuration. If present it must be a json string with the following format: {\"notify_service_sid\": \"ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\", \"include_date\": true}",
428428
"in": "query",
429429
"name": "Push",
430430
"required": false,
@@ -903,6 +903,126 @@
903903
},
904904
"/v1/Services/{ServiceSid}/Entities/{Identity}/Factors/{FactorSid}/Challenges": {
905905
"description": "TODO: Resource-level docs",
906+
"get": {
907+
"description": "Retrieve a list of all Challenges for a Factor.",
908+
"parameters": [
909+
{
910+
"description": "The unique SID identifier of the Service.",
911+
"in": "path",
912+
"name": "ServiceSid",
913+
"required": true,
914+
"schema": {
915+
"maxLength": 34,
916+
"minLength": 34,
917+
"pattern": "^IS[0-9a-fA-F]{32}$",
918+
"type": "string"
919+
}
920+
},
921+
{
922+
"description": "Customer unique identity for the Entity owner of the Challenge",
923+
"in": "path",
924+
"name": "Identity",
925+
"required": true,
926+
"schema": {
927+
"type": "string"
928+
}
929+
},
930+
{
931+
"description": "The unique SID identifier of the Factor.",
932+
"in": "path",
933+
"name": "FactorSid",
934+
"required": true,
935+
"schema": {
936+
"maxLength": 34,
937+
"minLength": 34,
938+
"pattern": "^YF[0-9a-fA-F]{32}$",
939+
"type": "string"
940+
}
941+
},
942+
{
943+
"description": "The Status of the Challenges to fetch. One of `pending`, `expired`, `approved` or `denied`.",
944+
"in": "query",
945+
"name": "Status",
946+
"required": false,
947+
"schema": {
948+
"enum": [
949+
"pending",
950+
"expired",
951+
"approved",
952+
"denied"
953+
],
954+
"type": "string"
955+
}
956+
},
957+
{
958+
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
959+
"in": "query",
960+
"name": "PageSize",
961+
"schema": {
962+
"maximum": 1000,
963+
"minimum": 1,
964+
"type": "integer"
965+
}
966+
}
967+
],
968+
"responses": {
969+
"200": {
970+
"content": {
971+
"application/json": {
972+
"schema": {
973+
"properties": {
974+
"challenges": {
975+
"items": {
976+
"$ref": "#/components/schemas/authy.v1.service.entity.factor.challenge"
977+
},
978+
"type": "array"
979+
},
980+
"meta": {
981+
"properties": {
982+
"first_page_url": {
983+
"format": "uri",
984+
"type": "string"
985+
},
986+
"key": {
987+
"type": "string"
988+
},
989+
"next_page_url": {
990+
"format": "uri",
991+
"type": "string"
992+
},
993+
"page": {
994+
"type": "integer"
995+
},
996+
"page_size": {
997+
"type": "integer"
998+
},
999+
"previous_page_url": {
1000+
"format": "uri",
1001+
"type": "string"
1002+
},
1003+
"url": {
1004+
"format": "uri",
1005+
"type": "string"
1006+
}
1007+
},
1008+
"type": "object"
1009+
}
1010+
},
1011+
"type": "object"
1012+
}
1013+
}
1014+
}
1015+
}
1016+
},
1017+
"security": [
1018+
{
1019+
"accountSid_authToken": []
1020+
}
1021+
],
1022+
"tags": [
1023+
"Preview"
1024+
]
1025+
},
9061026
"post": {
9071027
"description": "Create a new Challenge for the Factor",
9081028
"parameters": [
@@ -1515,6 +1635,15 @@
15151635
"schema": {
15161636
"type": "string"
15171637
}
1638+
},
1639+
{
1640+
"description": "The optional service level push factors configuration. If present it must be a json string with the following format: {\"notify_service_sid\": \"ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX\", \"include_date\": true}",
1641+
"in": "query",
1642+
"name": "Push",
1643+
"required": false,
1644+
"schema": {
1645+
"type": "string"
1646+
}
15181647
}
15191648
],
15201649
"responses": {

0 commit comments

Comments
 (0)