Skip to content

Commit 2759979

Browse files
committed
oaiFix: Updated api definitions
1 parent f666826 commit 2759979

17 files changed

+4432
-319
lines changed

CHANGES.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
--------------------------
2+
**Api**
3+
- Added optional parameter `CallerDisplayName` for conference participant outbound
4+
- Updated description for property `to` in the participant create request
5+
6+
7+
--------------------------
8+
**Api**
9+
- Add `date_created` property to media resource and date_created filtering parameters for read action
10+
- Updated the Recordings Resource `channels` property to clarify channels = # of channels in the recording resource and how to specify the # of channels in recording download
11+
12+
**Intelligence**
13+
- Add encryption_credential_sid field in transcripts and services in v2
14+
15+
**Trusthub**
16+
- Remove beta feature flag for all TH APIs
17+
- Remove beta feature flag for ComplianceInquiries API to support OneConsole traffic
18+
19+
**Twiml**
20+
- Add new noun `<AiSession>`
21+
22+
123
## [8.2.0](https://github.com/twilio/twilio-cli-core/compare/8.1.1...8.2.0) (2025-09-04)
224

325
--------------------------

package-lock.json

Lines changed: 107 additions & 95 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/services/twilio-api/twilio_api_v2010.json

Lines changed: 59 additions & 33 deletions
Large diffs are not rendered by default.

src/services/twilio-api/twilio_content_v1.json

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,43 @@
548548
"timeSlots"
549549
]
550550
},
551+
"whatsappFlows": {
552+
"type": "object",
553+
"description": "whatsapp/flows templates allow you to send multiple messages in a set order with text or select options",
554+
"nullable": true,
555+
"additionalProperties": false,
556+
"properties": {
557+
"body": {
558+
"type": "string"
559+
},
560+
"button_text": {
561+
"type": "string"
562+
},
563+
"subtitle": {
564+
"type": "string"
565+
},
566+
"media_url": {
567+
"type": "string"
568+
},
569+
"flow_id": {
570+
"type": "string"
571+
},
572+
"flow_token": {
573+
"type": "string"
574+
},
575+
"flow_first_page_id": {
576+
"type": "string"
577+
},
578+
"is_flow_first_page_endpoint": {
579+
"type": "boolean"
580+
}
581+
},
582+
"required": [
583+
"body",
584+
"button_text",
585+
"flow_id"
586+
]
587+
},
551588
"twilioFlows": {
552589
"type": "object",
553590
"description": "twilio/flows templates allow you to send multiple messages in a set order with text or select options",
@@ -723,6 +760,9 @@
723760
},
724761
"whatsapp/authentication": {
725762
"$ref": "#/components/schemas/whatsappAuthentication"
763+
},
764+
"whatsapp/flows": {
765+
"$ref": "#/components/schemas/whatsappFlows"
726766
}
727767
}
728768
},
@@ -1016,7 +1056,8 @@
10161056
"pathType": "list"
10171057
},
10181058
"post": {
1019-
"description": "",
1059+
"description": "Create a ContentApprovalRequest for a content item",
1060+
"summary": "Create Content Approval Request",
10201061
"tags": [
10211062
"Contentv1ApprovalCreate"
10221063
],
@@ -1131,6 +1172,7 @@
11311172
},
11321173
"get": {
11331174
"description": "Fetch a Content resource's approval status by its unique Content Sid",
1175+
"summary": "Fetch Approval Status",
11341176
"tags": [
11351177
"Contentv1ApprovalFetch"
11361178
],
@@ -1259,6 +1301,7 @@
12591301
},
12601302
"get": {
12611303
"description": "Fetch a Content resource by its unique Content Sid",
1304+
"summary": "Fetch Content",
12621305
"tags": [
12631306
"Contentv1Content"
12641307
],
@@ -1363,6 +1406,7 @@
13631406
},
13641407
"delete": {
13651408
"description": "Deletes a Content resource",
1409+
"summary": "Delete Content",
13661410
"tags": [
13671411
"Contentv1Content"
13681412
],
@@ -1430,6 +1474,7 @@
14301474
},
14311475
"post": {
14321476
"description": "Create a Content resource",
1477+
"summary": "Create Content",
14331478
"requestBody": {
14341479
"required": true,
14351480
"content": {
@@ -1530,6 +1575,7 @@
15301575
},
15311576
"get": {
15321577
"description": "Retrieve a list of Contents belonging to the account used to make the request",
1578+
"summary": "List Contents",
15331579
"tags": [
15341580
"Contentv1Content"
15351581
],
@@ -1792,6 +1838,7 @@
17921838
},
17931839
"get": {
17941840
"description": "Retrieve a list of Contents with approval statuses belonging to the account used to make the request",
1841+
"summary": "List Content Approvals",
17951842
"tags": [
17961843
"Contentv1ContentAndApprovals"
17971844
],
@@ -2063,6 +2110,7 @@
20632110
},
20642111
"get": {
20652112
"description": "Retrieve a list of Legacy Contents belonging to the account used to make the request",
2113+
"summary": "List Legacy Contents",
20662114
"tags": [
20672115
"Contentv1LegacyContent"
20682116
],

src/services/twilio-api/twilio_flex_v1.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1482,7 +1482,8 @@
14821482
"active",
14831483
"failed",
14841484
"closed",
1485-
"inactive"
1485+
"inactive",
1486+
"pause"
14861487
],
14871488
"description": "The status of this channel."
14881489
},
@@ -1497,7 +1498,8 @@
14971498
"type": "string",
14981499
"enum": [
14991500
"transcription",
1500-
"studio"
1501+
"studio",
1502+
"copilot"
15011503
]
15021504
},
15031505
"interaction_channel_app_enum_status": {
@@ -13878,6 +13880,9 @@
1387813880
{
1387913881
"name": "FlexV1FlexFlow"
1388013882
},
13883+
{
13884+
"name": "FlexV1FlexNotificationConfiguration"
13885+
},
1388113886
{
1388213887
"name": "FlexV1FlexTeam"
1388313888
},

0 commit comments

Comments
 (0)