Skip to content

Commit

Permalink
[Librarian] Regenerated @ 146e53875c8c04da5a6c73f65aa5011ad65b2dfd
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-ci committed Nov 18, 2020
1 parent f76f286 commit 865bf5e
Show file tree
Hide file tree
Showing 30 changed files with 318 additions and 173 deletions.
24 changes: 24 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
twilio-cli-core changelog
=====================

[2020-11-18] Version 5.12.0
---------------------------
**Api**
- Add new call events resource - GET /2010-04-01/Accounts/{account_sid}/Calls/{call_sid}/Events.json

**Conversations**
- Fixed default response property issue for Service Notifications Configuration

**Insights**
- Removing call_sid from participant summary. **(breaking change)**

**Serverless**
- Allow Service unique name to be used in path (in place of SID) in Service update request

**Sync**
- Added HideExpired query parameter for filtering Sync Documents with expired

**Verify**
- Challenge `Details` and `HiddenDetails` properties are now marked as `PII`
- 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.
- Entity `identity` attribute updated to allow values between 8 and 64 characters.
- Verify Service frinedly_name attribute updated from 64 max lenght to 30 characters.


[2020-11-05] Version 5.11.0
---------------------------
**Api**
Expand Down
2 changes: 1 addition & 1 deletion src/services/twilio-api/twilio_accounts.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Accounts",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down
121 changes: 120 additions & 1 deletion src/services/twilio-api/twilio_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -972,6 +972,17 @@
},
"type": "object"
},
"api.v2010.account.call.call_event": {
"properties": {
"request": {
"type": "object"
},
"response": {
"type": "object"
}
},
"type": "object"
},
"api.v2010.account.call.call_feedback": {
"properties": {
"account_sid": {
Expand Down Expand Up @@ -7216,7 +7227,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Api",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down Expand Up @@ -11267,6 +11278,114 @@
],
"x-path-type": "instance"
},
"/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Events.json": {
"description": "TODO: Resource-level docs",
"get": {
"description": "Retrieve a list of all events for a call.",
"parameters": [
{
"description": "The unique SID identifier of the Account.",
"in": "path",
"name": "AccountSid",
"required": true,
"schema": {
"maxLength": 34,
"minLength": 34,
"pattern": "^AC[0-9a-fA-F]{32}$",
"type": "string"
}
},
{
"description": "The unique SID identifier of the Call.",
"in": "path",
"name": "CallSid",
"required": true,
"schema": {
"maxLength": 34,
"minLength": 34,
"pattern": "^CA[0-9a-fA-F]{32}$",
"type": "string"
}
},
{
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
"in": "query",
"name": "PageSize",
"schema": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"properties": {
"end": {
"type": "integer"
},
"events": {
"items": {
"$ref": "#/components/schemas/api.v2010.account.call.call_event"
},
"type": "array"
},
"first_page_uri": {
"format": "uri",
"type": "string"
},
"next_page_uri": {
"format": "uri",
"type": "string"
},
"page": {
"type": "integer"
},
"page_size": {
"type": "integer"
},
"previous_page_uri": {
"format": "uri",
"type": "string"
},
"start": {
"type": "integer"
},
"uri": {
"format": "uri",
"type": "string"
}
},
"type": "object"
}
}
},
"description": "OK"
}
},
"security": [
{
"accountSid_authToken": []
}
],
"tags": [
"GA"
]
},
"servers": [
{
"url": "https://api.twilio.com"
}
],
"x-default-output-properties": [
"sid",
"request_date_created"
],
"x-path-type": "list"
},
"/2010-04-01/Accounts/{AccountSid}/Calls/{CallSid}/Feedback.json": {
"description": "The call Feedback subresource describes the quality experienced during a phone call.",
"get": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/twilio-api/twilio_autopilot.json
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Autopilot",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/twilio-api/twilio_bulkexports.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Bulkexports",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/twilio-api/twilio_chat.json
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Chat",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down
4 changes: 2 additions & 2 deletions src/services/twilio-api/twilio_conversations.json
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Conversations",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down Expand Up @@ -4242,7 +4242,7 @@
}
],
"x-default-output-properties": [
"sid"
"chat_service_sid"
],
"x-path-type": "instance"
},
Expand Down
15 changes: 13 additions & 2 deletions src/services/twilio-api/twilio_events.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Events",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down Expand Up @@ -791,6 +791,17 @@
"get": {
"description": "Retrieve a paginated list of Subscriptions belonging to the account used to make the request.",
"parameters": [
{
"description": "The SID of the sink that the list of Subscriptions should be filtered by.",
"in": "query",
"name": "SinkSid",
"schema": {
"maxLength": 34,
"minLength": 34,
"pattern": "^DG[0-9a-fA-F]{32}$",
"type": "string"
}
},
{
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
"in": "query",
Expand Down Expand Up @@ -1005,7 +1016,7 @@
"description": "Update a Subscription.",
"parameters": [
{
"description": "",
"description": "A 34 character string that uniquely identifies this Subscription.",
"in": "path",
"name": "Sid",
"required": true,
Expand Down
2 changes: 1 addition & 1 deletion src/services/twilio-api/twilio_fax.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Fax",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion src/services/twilio-api/twilio_flex.json
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Flex",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down
84 changes: 3 additions & 81 deletions src/services/twilio-api/twilio_insights.json
Original file line number Diff line number Diff line change
Expand Up @@ -312,19 +312,7 @@
"sg1",
"in1",
"de1",
"gll",
"outside",
"stage_us1",
"stage_us2",
"stage_au1",
"stage_br1",
"stage_ie1",
"stage_jp1",
"stage_sg1",
"stage_in1",
"stage_de1",
"dev_us1",
"dev_us2"
"gll"
],
"type": "string"
},
Expand Down Expand Up @@ -413,12 +401,6 @@
"pattern": "^AC[0-9a-fA-F]{32}$",
"type": "string"
},
"call_sid": {
"maxLength": 34,
"minLength": 34,
"pattern": "^CA[0-9a-fA-F]{32}$",
"type": "string"
},
"codecs": {
"items": {
"enum": [
Expand Down Expand Up @@ -448,54 +430,6 @@
"type": "string"
},
"end_reason": {
"enum": [
"disconnected_via_api",
"signaling_connection_error",
"signaling_connection_disconnected",
"signaling_connection_timed_out",
"client_received_an_invalid_signaling_message",
"client_sent_an_invalid_signaling_message",
"room_name_is_invalid",
"room_name_is_too_long",
"room_name_contains_invalid_characters",
"unable_to_create_room",
"unable_to_connect_to_room",
"room_contains_too_many_participants",
"room_not_found",
"max_participants_is_out_of_range",
"room_type_is_not_valid",
"timeout_is_out_of_range",
"status_callback_method_is_invalid",
"status_callback_is_invalid",
"status_is_invalid",
"room_creation_failed",
"room_completed_error",
"the_room_account_limit_was_exceeded",
"invalid_recording_rule",
"approaching_room_or_participant_concurrency_limits",
"recording_operation_requested_is_not_supported_for_the_Room_type",
"participant_identity_is_invalid",
"participant_identity_is_too_long",
"participant_identity_contains_invalid_characters",
"participant_has_too_many_tracks",
"participant_not_found",
"participant_disconnected_because_of_duplicate_identity",
"participant_account_limit_was_exceeded",
"invalid_subscribe_rule",
"track_is_invalid",
"track_name_is_invalid",
"track_name_is_too_long",
"track_name_contains_invalid_characters",
"track_name_is_duplicated",
"client_is_unable_to_create_or_apply_a_local_media_description",
"server_is_unable_to_create_or_apply_a_local_media_description",
"client_is_unable_to_apply_a_remote_media_description",
"server_is_unable_to_apply_a_remote_media_description",
"no_supported_codec",
"media_connection_failed_or_media_activity_ceased",
"unable_to_acquire_configuration",
"unable_to_acquire_TURN_credentials"
],
"type": "string"
},
"error_code": {
Expand Down Expand Up @@ -524,19 +458,7 @@
"sg1",
"in1",
"de1",
"gll",
"outside",
"stage_us1",
"stage_us2",
"stage_au1",
"stage_br1",
"stage_ie1",
"stage_jp1",
"stage_sg1",
"stage_in1",
"stage_de1",
"dev_us1",
"dev_us2"
"gll"
],
"type": "string"
},
Expand Down Expand Up @@ -596,7 +518,7 @@
},
"termsOfService": "https://www.twilio.com/legal/tos",
"title": "Twilio - Insights",
"version": "5.11.0"
"version": "5.12.0"
},
"openapi": "3.0.1",
"paths": {
Expand Down
Loading

0 comments on commit 865bf5e

Please sign in to comment.