Skip to content

Commit 3e30a0b

Browse files
committed
oaiFeat: Updated api definitions
1 parent ace9296 commit 3e30a0b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+367
-68
lines changed

CHANGES.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
---------------------------
2+
**Api**
3+
- Add `street_secondary` param to address create and update
4+
- Make `method` optional for user defined message subscription **(breaking change)**
5+
6+
**Flex**
7+
- Flex Conversations is now Generally Available
8+
- Adding the ie1 mapping for authorization api, updating service base uri and base url response attribute **(breaking change)**
9+
- Change web channels to GA and library visibility to public
10+
- Changing the uri for authorization api from using Accounts to Insights **(breaking change)**
11+
12+
**Media**
13+
- Gate Twilio Live endpoints behind beta_feature for EOS
14+
15+
**Messaging**
16+
- Mark `MessageFlow` as a required field for Campaign Creation **(breaking change)**
17+
18+
**Oauth**
19+
- updated openid discovery endpoint uri **(breaking change)**
20+
- Added device code authorization endpoint
21+
22+
**Supersim**
23+
- Allow filtering the SettingsUpdates resource by `status`
24+
25+
**Twiml**
26+
- Add new Polly Neural voices
27+
- Add tr-TR, ar-AE, yue-CN, fi-FI languages to SSML `<lang>` element.
28+
- Add x-amazon-jyutping, x-amazon-pinyin, x-amazon-pron-kana, x-amazon-yomigana alphabets to SSML `<phoneme>` element.
29+
- Rename `character` value for SSML `<say-as>` `interpret-as` attribute to `characters`. **(breaking change)**
30+
- Rename `role` attribute to `format` in SSML `<say-as>` element. **(breaking change)**
31+
32+
133
### [7.4.3](https://github.com/twilio/twilio-cli-core/compare/7.4.2...7.4.3) (2022-12-01)
234

335

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
"name": "Apache 2.0",
187187
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
188188
},
189-
"version": "1.37.4"
189+
"version": "1.38.0"
190190
},
191191
"openapi": "3.0.1",
192192
"paths": {

src/services/twilio-api/twilio_api_v2010.json

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@
168168
"type": "boolean",
169169
"nullable": true,
170170
"description": "Whether the address has been verified to comply with regulation"
171+
},
172+
"street_secondary": {
173+
"type": "string",
174+
"nullable": true,
175+
"description": "The additional number and street address of the address"
171176
}
172177
}
173178
},
@@ -9587,7 +9592,7 @@
95879592
"name": "Apache 2.0",
95889593
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
95899594
},
9590-
"version": "1.37.4"
9595+
"version": "1.38.0"
95919596
},
95929597
"openapi": "3.0.1",
95939598
"paths": {
@@ -9947,6 +9952,10 @@
99479952
"AutoCorrectAddress": {
99489953
"type": "boolean",
99499954
"description": "Whether we should automatically correct the address. Can be: `true` or `false` and the default is `true`. If empty or `true`, we will correct the address you provide if necessary. If `false`, we won't alter the address you provide."
9955+
},
9956+
"StreetSecondary": {
9957+
"type": "string",
9958+
"description": "The additional number and street address of the address."
99509959
}
99519960
},
99529961
"required": [
@@ -10270,6 +10279,10 @@
1027010279
"AutoCorrectAddress": {
1027110280
"type": "boolean",
1027210281
"description": "Whether we should automatically correct the address. Can be: `true` or `false` and the default is `true`. If empty or `true`, we will correct the address you provide if necessary. If `false`, we won't alter the address you provide."
10282+
},
10283+
"StreetSecondary": {
10284+
"type": "string",
10285+
"description": "The additional number and street address of the address."
1027310286
}
1027410287
}
1027510288
}
@@ -31204,6 +31217,10 @@
3120431217
"format": "uri",
3120531218
"description": "The URL we should call using the `method` to send user defined events to your application. URLs must contain a valid hostname (underscores are not permitted)."
3120631219
},
31220+
"IdempotencyKey": {
31221+
"type": "string",
31222+
"description": "A unique string value to identify API call. This should be a unique string value per API call and can be a randomly generated."
31223+
},
3120731224
"Method": {
3120831225
"type": "string",
3120931226
"format": "http-method",
@@ -31216,15 +31233,10 @@
3121631233
"DELETE"
3121731234
],
3121831235
"description": "The HTTP method Twilio will use when requesting the above `Url`. Either `GET` or `POST`."
31219-
},
31220-
"IdempotencyKey": {
31221-
"type": "string",
31222-
"description": "A unique string value to identify API call. This should be a unique string value per API call and can be a randomly generated."
3122331236
}
3122431237
},
3122531238
"required": [
31226-
"Callback",
31227-
"Method"
31239+
"Callback"
3122831240
]
3122931241
}
3123031242
}

src/services/twilio-api/twilio_autopilot_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@
954954
"name": "Apache 2.0",
955955
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
956956
},
957-
"version": "1.37.4"
957+
"version": "1.38.0"
958958
},
959959
"openapi": "3.0.1",
960960
"paths": {

src/services/twilio-api/twilio_bulkexports_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@
271271
"name": "Apache 2.0",
272272
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
273273
},
274-
"version": "1.37.4"
274+
"version": "1.38.0"
275275
},
276276
"openapi": "3.0.1",
277277
"paths": {

src/services/twilio-api/twilio_chat_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@
788788
"name": "Apache 2.0",
789789
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
790790
},
791-
"version": "1.37.4"
791+
"version": "1.38.0"
792792
},
793793
"openapi": "3.0.1",
794794
"paths": {

src/services/twilio-api/twilio_chat_v2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@
11461146
"name": "Apache 2.0",
11471147
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
11481148
},
1149-
"version": "1.37.4"
1149+
"version": "1.38.0"
11501150
},
11511151
"openapi": "3.0.1",
11521152
"paths": {

src/services/twilio-api/twilio_chat_v3.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
"name": "Apache 2.0",
128128
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
129129
},
130-
"version": "1.37.4"
130+
"version": "1.38.0"
131131
},
132132
"openapi": "3.0.1",
133133
"paths": {

src/services/twilio-api/twilio_content_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"name": "Apache 2.0",
117117
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
118118
},
119-
"version": "1.37.4"
119+
"version": "1.38.0"
120120
},
121121
"openapi": "3.0.1",
122122
"paths": {

src/services/twilio-api/twilio_conversations_v1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2332,7 +2332,7 @@
23322332
"name": "Apache 2.0",
23332333
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
23342334
},
2335-
"version": "1.37.4"
2335+
"version": "1.38.0"
23362336
},
23372337
"openapi": "3.0.1",
23382338
"paths": {

0 commit comments

Comments
 (0)