Skip to content

Commit 865bf5e

Browse files
committed
[Librarian] Regenerated @ 146e53875c8c04da5a6c73f65aa5011ad65b2dfd
1 parent f76f286 commit 865bf5e

30 files changed

+318
-173
lines changed

CHANGES.md

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

4+
[2020-11-18] Version 5.12.0
5+
---------------------------
6+
**Api**
7+
- Add new call events resource - GET /2010-04-01/Accounts/{account_sid}/Calls/{call_sid}/Events.json
8+
9+
**Conversations**
10+
- Fixed default response property issue for Service Notifications Configuration
11+
12+
**Insights**
13+
- Removing call_sid from participant summary. **(breaking change)**
14+
15+
**Serverless**
16+
- Allow Service unique name to be used in path (in place of SID) in Service update request
17+
18+
**Sync**
19+
- Added HideExpired query parameter for filtering Sync Documents with expired
20+
21+
**Verify**
22+
- Challenge `Details` and `HiddenDetails` properties are now marked as `PII`
23+
- Challenge `expiration_date` attribute updated to set a default value of five (5) minutes and to allow max dates of one (1) hour after creation.
24+
- Entity `identity` attribute updated to allow values between 8 and 64 characters.
25+
- Verify Service frinedly_name attribute updated from 64 max lenght to 30 characters.
26+
27+
428
[2020-11-05] Version 5.11.0
529
---------------------------
630
**Api**

src/services/twilio-api/twilio_accounts.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
},
143143
"termsOfService": "https://www.twilio.com/legal/tos",
144144
"title": "Twilio - Accounts",
145-
"version": "5.11.0"
145+
"version": "5.12.0"
146146
},
147147
"openapi": "3.0.1",
148148
"paths": {

src/services/twilio-api/twilio_api.json

Lines changed: 120 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -972,6 +972,17 @@
972972
},
973973
"type": "object"
974974
},
975+
"api.v2010.account.call.call_event": {
976+
"properties": {
977+
"request": {
978+
"type": "object"
979+
},
980+
"response": {
981+
"type": "object"
982+
}
983+
},
984+
"type": "object"
985+
},
975986
"api.v2010.account.call.call_feedback": {
976987
"properties": {
977988
"account_sid": {
@@ -7216,7 +7227,7 @@
72167227
},
72177228
"termsOfService": "https://www.twilio.com/legal/tos",
72187229
"title": "Twilio - Api",
7219-
"version": "5.11.0"
7230+
"version": "5.12.0"
72207231
},
72217232
"openapi": "3.0.1",
72227233
"paths": {
@@ -11267,6 +11278,114 @@
1126711278
],
1126811279
"x-path-type": "instance"
1126911280
},
11281+
"/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Events.json": {
11282+
"description": "TODO: Resource-level docs",
11283+
"get": {
11284+
"description": "Retrieve a list of all events for a call.",
11285+
"parameters": [
11286+
{
11287+
"description": "The unique SID identifier of the Account.",
11288+
"in": "path",
11289+
"name": "AccountSid",
11290+
"required": true,
11291+
"schema": {
11292+
"maxLength": 34,
11293+
"minLength": 34,
11294+
"pattern": "^AC[0-9a-fA-F]{32}$",
11295+
"type": "string"
11296+
}
11297+
},
11298+
{
11299+
"description": "The unique SID identifier of the Call.",
11300+
"in": "path",
11301+
"name": "CallSid",
11302+
"required": true,
11303+
"schema": {
11304+
"maxLength": 34,
11305+
"minLength": 34,
11306+
"pattern": "^CA[0-9a-fA-F]{32}$",
11307+
"type": "string"
11308+
}
11309+
},
11310+
{
11311+
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
11312+
"in": "query",
11313+
"name": "PageSize",
11314+
"schema": {
11315+
"maximum": 1000,
11316+
"minimum": 1,
11317+
"type": "integer"
11318+
}
11319+
}
11320+
],
11321+
"responses": {
11322+
"200": {
11323+
"content": {
11324+
"application/json": {
11325+
"schema": {
11326+
"properties": {
11327+
"end": {
11328+
"type": "integer"
11329+
},
11330+
"events": {
11331+
"items": {
11332+
"$ref": "#/components/schemas/api.v2010.account.call.call_event"
11333+
},
11334+
"type": "array"
11335+
},
11336+
"first_page_uri": {
11337+
"format": "uri",
11338+
"type": "string"
11339+
},
11340+
"next_page_uri": {
11341+
"format": "uri",
11342+
"type": "string"
11343+
},
11344+
"page": {
11345+
"type": "integer"
11346+
},
11347+
"page_size": {
11348+
"type": "integer"
11349+
},
11350+
"previous_page_uri": {
11351+
"format": "uri",
11352+
"type": "string"
11353+
},
11354+
"start": {
11355+
"type": "integer"
11356+
},
11357+
"uri": {
11358+
"format": "uri",
11359+
"type": "string"
11360+
}
11361+
},
11362+
"type": "object"
11363+
}
11364+
}
11365+
},
11366+
"description": "OK"
11367+
}
11368+
},
11369+
"security": [
11370+
{
11371+
"accountSid_authToken": []
11372+
}
11373+
],
11374+
"tags": [
11375+
"GA"
11376+
]
11377+
},
11378+
"servers": [
11379+
{
11380+
"url": "https://api.twilio.com"
11381+
}
11382+
],
11383+
"x-default-output-properties": [
11384+
"sid",
11385+
"request_date_created"
11386+
],
11387+
"x-path-type": "list"
11388+
},
1127011389
"/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Feedback.json": {
1127111390
"description": "The call Feedback subresource describes the quality experienced during a phone call.",
1127211391
"get": {

src/services/twilio-api/twilio_autopilot.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@
690690
},
691691
"termsOfService": "https://www.twilio.com/legal/tos",
692692
"title": "Twilio - Autopilot",
693-
"version": "5.11.0"
693+
"version": "5.12.0"
694694
},
695695
"openapi": "3.0.1",
696696
"paths": {

src/services/twilio-api/twilio_bulkexports.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
},
163163
"termsOfService": "https://www.twilio.com/legal/tos",
164164
"title": "Twilio - Bulkexports",
165-
"version": "5.11.0"
165+
"version": "5.12.0"
166166
},
167167
"openapi": "3.0.1",
168168
"paths": {

src/services/twilio-api/twilio_chat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1293,7 +1293,7 @@
12931293
},
12941294
"termsOfService": "https://www.twilio.com/legal/tos",
12951295
"title": "Twilio - Chat",
1296-
"version": "5.11.0"
1296+
"version": "5.12.0"
12971297
},
12981298
"openapi": "3.0.1",
12991299
"paths": {

src/services/twilio-api/twilio_conversations.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@
11111111
},
11121112
"termsOfService": "https://www.twilio.com/legal/tos",
11131113
"title": "Twilio - Conversations",
1114-
"version": "5.11.0"
1114+
"version": "5.12.0"
11151115
},
11161116
"openapi": "3.0.1",
11171117
"paths": {
@@ -4242,7 +4242,7 @@
42424242
}
42434243
],
42444244
"x-default-output-properties": [
4245-
"sid"
4245+
"chat_service_sid"
42464246
],
42474247
"x-path-type": "instance"
42484248
},

src/services/twilio-api/twilio_events.json

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@
227227
},
228228
"termsOfService": "https://www.twilio.com/legal/tos",
229229
"title": "Twilio - Events",
230-
"version": "5.11.0"
230+
"version": "5.12.0"
231231
},
232232
"openapi": "3.0.1",
233233
"paths": {
@@ -791,6 +791,17 @@
791791
"get": {
792792
"description": "Retrieve a paginated list of Subscriptions belonging to the account used to make the request.",
793793
"parameters": [
794+
{
795+
"description": "The SID of the sink that the list of Subscriptions should be filtered by.",
796+
"in": "query",
797+
"name": "SinkSid",
798+
"schema": {
799+
"maxLength": 34,
800+
"minLength": 34,
801+
"pattern": "^DG[0-9a-fA-F]{32}$",
802+
"type": "string"
803+
}
804+
},
794805
{
795806
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
796807
"in": "query",
@@ -1005,7 +1016,7 @@
10051016
"description": "Update a Subscription.",
10061017
"parameters": [
10071018
{
1008-
"description": "",
1019+
"description": "A 34 character string that uniquely identifies this Subscription.",
10091020
"in": "path",
10101021
"name": "Sid",
10111022
"required": true,

src/services/twilio-api/twilio_fax.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
},
155155
"termsOfService": "https://www.twilio.com/legal/tos",
156156
"title": "Twilio - Fax",
157-
"version": "5.11.0"
157+
"version": "5.12.0"
158158
},
159159
"openapi": "3.0.1",
160160
"paths": {

src/services/twilio-api/twilio_flex.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@
343343
},
344344
"termsOfService": "https://www.twilio.com/legal/tos",
345345
"title": "Twilio - Flex",
346-
"version": "5.11.0"
346+
"version": "5.12.0"
347347
},
348348
"openapi": "3.0.1",
349349
"paths": {

0 commit comments

Comments
 (0)