Skip to content

Commit d9f7f1b

Browse files
committed
oaiFix: Updated api definitions
1 parent 0e5c492 commit d9f7f1b

36 files changed

+622
-35
lines changed

CHANGES.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
---------------------------
2+
**Conversations**
3+
- Add `Service Webhook Configuration` resource
4+
5+
**Flex**
6+
- Adding `flex_insights_drilldown` and `flex_url` objects to Flex Configuration
7+
8+
**Messaging**
9+
- Update us_app_to_person endpoints to remove beta feature flag based access
10+
11+
**Supersim**
12+
- Add IP Commands resource
13+
14+
**Verify**
15+
- Add optional `factor_friendly_name` parameter to the create access token endpoint.
16+
17+
**Video**
18+
- Add maxParticipantDuration param to Rooms
19+
20+
**Twiml**
21+
- Unrevert Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
22+
- Revert Add supported SSML children to `<emphasis>`, `<lang>`, `<p>`, `<prosody>`, `<s>`, and `<w>`.
23+
24+
125
### [5.32.1](https://github.com/twilio/twilio-cli-core/compare/5.32.0...5.32.1) (2021-11-18)
226

327

src/services/twilio-api/twilio_accounts_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
},
187187
"termsOfService": "https://www.twilio.com/legal/tos",
188188
"title": "Twilio - Accounts",
189-
"version": "1.23.1"
189+
"version": "1.23.2"
190190
},
191191
"openapi": "3.0.1",
192192
"paths": {

src/services/twilio-api/twilio_api_v2010.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8997,7 +8997,7 @@
89978997
},
89988998
"termsOfService": "https://www.twilio.com/legal/tos",
89998999
"title": "Twilio - Api",
9000-
"version": "1.23.1"
9000+
"version": "1.23.2"
90019001
},
90029002
"openapi": "3.0.1",
90039003
"paths": {

src/services/twilio-api/twilio_autopilot_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@
952952
},
953953
"termsOfService": "https://www.twilio.com/legal/tos",
954954
"title": "Twilio - Autopilot",
955-
"version": "1.23.1"
955+
"version": "1.23.2"
956956
},
957957
"openapi": "3.0.1",
958958
"paths": {

src/services/twilio-api/twilio_bulkexports_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
},
247247
"termsOfService": "https://www.twilio.com/legal/tos",
248248
"title": "Twilio - Bulkexports",
249-
"version": "1.23.1"
249+
"version": "1.23.2"
250250
},
251251
"openapi": "3.0.1",
252252
"paths": {

src/services/twilio-api/twilio_chat_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@
764764
},
765765
"termsOfService": "https://www.twilio.com/legal/tos",
766766
"title": "Twilio - Chat",
767-
"version": "1.23.1"
767+
"version": "1.23.2"
768768
},
769769
"openapi": "3.0.1",
770770
"paths": {

src/services/twilio-api/twilio_chat_v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@
10611061
},
10621062
"termsOfService": "https://www.twilio.com/legal/tos",
10631063
"title": "Twilio - Chat",
1064-
"version": "1.23.1"
1064+
"version": "1.23.2"
10651065
},
10661066
"openapi": "3.0.1",
10671067
"paths": {

src/services/twilio-api/twilio_conversations_v1.json

Lines changed: 179 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,6 +985,61 @@
985985
},
986986
"type": "object"
987987
},
988+
"conversations.v1.service.service_configuration.service_webhook_configuration": {
989+
"properties": {
990+
"account_sid": {
991+
"description": "The unique ID of the Account responsible for this service.",
992+
"maxLength": 34,
993+
"minLength": 34,
994+
"nullable": true,
995+
"pattern": "^AC[0-9a-fA-F]{32}$",
996+
"type": "string"
997+
},
998+
"chat_service_sid": {
999+
"maxLength": 34,
1000+
"minLength": 34,
1001+
"nullable": true,
1002+
"pattern": "^IS[0-9a-fA-F]{32}$",
1003+
"type": "string"
1004+
},
1005+
"filters": {
1006+
"description": "The list of webhook event triggers that are enabled for this Service.",
1007+
"items": {
1008+
"type": "string"
1009+
},
1010+
"nullable": true,
1011+
"type": "array"
1012+
},
1013+
"method": {
1014+
"description": "The HTTP method to be used when sending a webhook request",
1015+
"enum": [
1016+
"GET",
1017+
"POST"
1018+
],
1019+
"nullable": true,
1020+
"type": "string"
1021+
},
1022+
"post_webhook_url": {
1023+
"description": "The absolute url the post-event webhook request should be sent to.",
1024+
"format": "uri",
1025+
"nullable": true,
1026+
"type": "string"
1027+
},
1028+
"pre_webhook_url": {
1029+
"description": "The absolute url the pre-event webhook request should be sent to.",
1030+
"format": "uri",
1031+
"nullable": true,
1032+
"type": "string"
1033+
},
1034+
"url": {
1035+
"description": "An absolute URL for this webhook.",
1036+
"format": "uri",
1037+
"nullable": true,
1038+
"type": "string"
1039+
}
1040+
},
1041+
"type": "object"
1042+
},
9881043
"conversations.v1.service.service_conversation": {
9891044
"properties": {
9901045
"account_sid": {
@@ -2036,7 +2091,7 @@
20362091
},
20372092
"termsOfService": "https://www.twilio.com/legal/tos",
20382093
"title": "Twilio - Conversations",
2039-
"version": "1.23.1"
2094+
"version": "1.23.2"
20402095
},
20412096
"openapi": "3.0.1",
20422097
"paths": {
@@ -5424,6 +5479,129 @@
54245479
"pathType": "instance"
54255480
}
54265481
},
5482+
"/v1/Services/{ChatServiceSid}/Configuration/Webhooks": {
5483+
"description": "A service webhook configuration resource manages a service-level set of callback URLs and their configuration for receiving all the corresponding service events.",
5484+
"get": {
5485+
"description": "Fetch a specific service webhook configuration.",
5486+
"operationId": "FetchServiceWebhookConfiguration",
5487+
"parameters": [
5488+
{
5489+
"description": "The unique ID of the [Conversation Service](https://www.twilio.com/docs/conversations/api/service-resource) this conversation belongs to.",
5490+
"in": "path",
5491+
"name": "ChatServiceSid",
5492+
"required": true,
5493+
"schema": {
5494+
"maxLength": 34,
5495+
"minLength": 34,
5496+
"pattern": "^IS[0-9a-fA-F]{32}$",
5497+
"type": "string"
5498+
}
5499+
}
5500+
],
5501+
"responses": {
5502+
"200": {
5503+
"content": {
5504+
"application/json": {
5505+
"schema": {
5506+
"$ref": "#/components/schemas/conversations.v1.service.service_configuration.service_webhook_configuration"
5507+
}
5508+
}
5509+
},
5510+
"description": "OK"
5511+
}
5512+
},
5513+
"security": [
5514+
{
5515+
"accountSid_authToken": []
5516+
}
5517+
],
5518+
"x-maturity": [
5519+
"GA"
5520+
]
5521+
},
5522+
"post": {
5523+
"description": "Update a specific Webhook.",
5524+
"operationId": "UpdateServiceWebhookConfiguration",
5525+
"parameters": [
5526+
{
5527+
"description": "The unique ID of the [Conversation Service](https://www.twilio.com/docs/conversations/api/service-resource) this conversation belongs to.",
5528+
"in": "path",
5529+
"name": "ChatServiceSid",
5530+
"required": true,
5531+
"schema": {
5532+
"maxLength": 34,
5533+
"minLength": 34,
5534+
"pattern": "^IS[0-9a-fA-F]{32}$",
5535+
"type": "string"
5536+
}
5537+
}
5538+
],
5539+
"requestBody": {
5540+
"content": {
5541+
"application/x-www-form-urlencoded": {
5542+
"schema": {
5543+
"properties": {
5544+
"Filters": {
5545+
"description": "The list of webhook event triggers that are enabled for this Service. Possible values are `onParticipantAdd`, `onParticipantAdded`, `onDeliveryUpdated`, `onConversationUpdated`, `onConversationRemove`, `onParticipantRemove`, `onConversationUpdate`, `onMessageAdd`, `onMessageRemoved`, `onParticipantUpdated`, `onConversationAdded`, `onMessageAdded`, `onConversationAdd`, `onConversationRemoved`, `onParticipantUpdate`, `onMessageRemove`, `onMessageUpdated`, `onParticipantRemoved`, `onMessageUpdate` or `onConversationStateUpdated`.",
5546+
"items": {
5547+
"type": "string"
5548+
},
5549+
"type": "array"
5550+
},
5551+
"Method": {
5552+
"description": "The HTTP method to be used when sending a webhook request. One of `GET` or `POST`.",
5553+
"type": "string"
5554+
},
5555+
"PostWebhookUrl": {
5556+
"description": "The absolute url the post-event webhook request should be sent to.",
5557+
"format": "uri",
5558+
"type": "string"
5559+
},
5560+
"PreWebhookUrl": {
5561+
"description": "The absolute url the pre-event webhook request should be sent to.",
5562+
"format": "uri",
5563+
"type": "string"
5564+
}
5565+
},
5566+
"title": "UpdateServiceWebhookConfigurationRequest",
5567+
"type": "object"
5568+
}
5569+
}
5570+
}
5571+
},
5572+
"responses": {
5573+
"200": {
5574+
"content": {
5575+
"application/json": {
5576+
"schema": {
5577+
"$ref": "#/components/schemas/conversations.v1.service.service_configuration.service_webhook_configuration"
5578+
}
5579+
}
5580+
},
5581+
"description": "OK"
5582+
}
5583+
},
5584+
"security": [
5585+
{
5586+
"accountSid_authToken": []
5587+
}
5588+
],
5589+
"x-maturity": [
5590+
"GA"
5591+
]
5592+
},
5593+
"servers": [
5594+
{
5595+
"url": "https://conversations.twilio.com"
5596+
}
5597+
],
5598+
"x-twilio": {
5599+
"defaultOutputProperties": [
5600+
"chat_service_sid"
5601+
],
5602+
"pathType": "instance"
5603+
}
5604+
},
54275605
"/v1/Services/{ChatServiceSid}/Conversations": {
54285606
"description": "A Service Conversation resource represents an omnichannel group conversation with an ordered list of messages and a participant roster.",
54295607
"get": {

src/services/twilio-api/twilio_events_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@
309309
},
310310
"termsOfService": "https://www.twilio.com/legal/tos",
311311
"title": "Twilio - Events",
312-
"version": "1.23.1"
312+
"version": "1.23.2"
313313
},
314314
"openapi": "3.0.1",
315315
"paths": {

src/services/twilio-api/twilio_fax_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@
202202
},
203203
"termsOfService": "https://www.twilio.com/legal/tos",
204204
"title": "Twilio - Fax",
205-
"version": "1.23.1"
205+
"version": "1.23.2"
206206
},
207207
"openapi": "3.0.1",
208208
"paths": {

src/services/twilio-api/twilio_flex_v1.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,11 @@
137137
"nullable": true,
138138
"type": "string"
139139
},
140+
"flex_insights_drilldown": {
141+
"description": "Setting to enable Flex UI redirection",
142+
"nullable": true,
143+
"type": "boolean"
144+
},
140145
"flex_insights_hr": {
141146
"description": "Object that controls workspace reporting",
142147
"nullable": true,
@@ -150,6 +155,12 @@
150155
"pattern": "^IS[0-9a-fA-F]{32}$",
151156
"type": "string"
152157
},
158+
"flex_url": {
159+
"description": "URL to redirect to in case drilldown is enabled.",
160+
"format": "uri",
161+
"nullable": true,
162+
"type": "string"
163+
},
153164
"integrations": {
154165
"description": "A list of objects that contain the configurations for the Integrations supported in this configuration",
155166
"items": {
@@ -488,7 +499,7 @@
488499
},
489500
"termsOfService": "https://www.twilio.com/legal/tos",
490501
"title": "Twilio - Flex",
491-
"version": "1.23.1"
502+
"version": "1.23.2"
492503
},
493504
"openapi": "3.0.1",
494505
"paths": {

src/services/twilio-api/twilio_frontline_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
},
7171
"termsOfService": "https://www.twilio.com/legal/tos",
7272
"title": "Twilio - Frontline",
73-
"version": "1.23.1"
73+
"version": "1.23.2"
7474
},
7575
"openapi": "3.0.1",
7676
"paths": {

src/services/twilio-api/twilio_insights_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@
760760
},
761761
"termsOfService": "https://www.twilio.com/legal/tos",
762762
"title": "Twilio - Insights",
763-
"version": "1.23.1"
763+
"version": "1.23.2"
764764
},
765765
"openapi": "3.0.1",
766766
"paths": {

src/services/twilio-api/twilio_ip_messaging_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@
656656
},
657657
"termsOfService": "https://www.twilio.com/legal/tos",
658658
"title": "Twilio - Ip_messaging",
659-
"version": "1.23.1"
659+
"version": "1.23.2"
660660
},
661661
"openapi": "3.0.1",
662662
"paths": {

src/services/twilio-api/twilio_ip_messaging_v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -911,7 +911,7 @@
911911
},
912912
"termsOfService": "https://www.twilio.com/legal/tos",
913913
"title": "Twilio - Ip_messaging",
914-
"version": "1.23.1"
914+
"version": "1.23.2"
915915
},
916916
"openapi": "3.0.1",
917917
"paths": {

src/services/twilio-api/twilio_lookups_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"termsOfService": "https://www.twilio.com/legal/tos",
6565
"title": "Twilio - Lookups",
66-
"version": "1.23.1"
66+
"version": "1.23.2"
6767
},
6868
"openapi": "3.0.1",
6969
"paths": {

src/services/twilio-api/twilio_media_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@
233233
},
234234
"termsOfService": "https://www.twilio.com/legal/tos",
235235
"title": "Twilio - Media",
236-
"version": "1.23.1"
236+
"version": "1.23.2"
237237
},
238238
"openapi": "3.0.1",
239239
"paths": {

src/services/twilio-api/twilio_messaging_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@
757757
},
758758
"termsOfService": "https://www.twilio.com/legal/tos",
759759
"title": "Twilio - Messaging",
760-
"version": "1.23.1"
760+
"version": "1.23.2"
761761
},
762762
"openapi": "3.0.1",
763763
"paths": {

0 commit comments

Comments
 (0)