From f8e7f401221780f0d0caf5f60a9a3a27611ab1b6 Mon Sep 17 00:00:00 2001 From: ahigueratw <133377775+ahigueratw@users.noreply.github.com> Date: Wed, 22 Nov 2023 12:12:36 -0500 Subject: [PATCH 01/95] Fix backticks for genral usage pages serialization (#1045) --- guides/request-validation-php-lumen/example-1/meta.json | 2 +- guides/request-validation-php-lumen/example-3/meta.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/request-validation-php-lumen/example-1/meta.json b/guides/request-validation-php-lumen/example-1/meta.json index 080276deb4..ba92114a35 100644 --- a/guides/request-validation-php-lumen/example-1/meta.json +++ b/guides/request-validation-php-lumen/example-1/meta.json @@ -1,5 +1,5 @@ { "title": "Create Lumen middleware to handle and validate requests", - "description": "Use Twilio SDK `RequestValidator` to validate webhook requests.", + "description": "Use Twilio SDK RequestValidator to validate webhook requests.", "type": "server" } diff --git a/guides/request-validation-php-lumen/example-3/meta.json b/guides/request-validation-php-lumen/example-3/meta.json index 1bee90322f..4f6a422b7d 100644 --- a/guides/request-validation-php-lumen/example-3/meta.json +++ b/guides/request-validation-php-lumen/example-3/meta.json @@ -1,5 +1,5 @@ { "title": "Disable Twilio request validation when testing", - "description": "Use `APP_ENV` environment variable to disable request validation.", + "description": "Use APP_ENV environment variable to disable request validation.", "type": "server" } From d4b35aaef4c79c9391ddc320632b21e114e3d27d Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Thu, 7 Dec 2023 15:55:11 -0500 Subject: [PATCH 02/95] Add go/gin example for handling message status callbacks (#1046) * Add go/gin example for handling message status callbacks * Update endpoint paths --- .../sms-handle-callback.4.x.js | 2 +- .../sms-handle-callback.6.x.rb | 2 +- .../sms-handle-callback.8.x.py | 2 +- .../sms-handle-callback.go | 24 +++++++++++++++++++ .../sms-handle-callback.java | 2 +- 5 files changed, 28 insertions(+), 4 deletions(-) create mode 100644 rest/messages/sms-handle-callback/sms-handle-callback.go diff --git a/rest/messages/sms-handle-callback/sms-handle-callback.4.x.js b/rest/messages/sms-handle-callback/sms-handle-callback.4.x.js index 98c4ecf457..51da4d9cd5 100644 --- a/rest/messages/sms-handle-callback/sms-handle-callback.4.x.js +++ b/rest/messages/sms-handle-callback/sms-handle-callback.4.x.js @@ -6,7 +6,7 @@ const app = express(); app.use(bodyParser.urlencoded({ extended: true })); -app.post('/MessageStatus', (req, res) => { +app.post('/message-status', (req, res) => { const messageSid = req.body.MessageSid; const messageStatus = req.body.MessageStatus; diff --git a/rest/messages/sms-handle-callback/sms-handle-callback.6.x.rb b/rest/messages/sms-handle-callback/sms-handle-callback.6.x.rb index 61f2a1c2d1..59e4dd91b1 100644 --- a/rest/messages/sms-handle-callback/sms-handle-callback.6.x.rb +++ b/rest/messages/sms-handle-callback/sms-handle-callback.6.x.rb @@ -2,7 +2,7 @@ # Handle message status hook, # which is called whenever the message status changes -post '/MessageStatus' do +post '/message-status' do message_sid = params['MessageSid'] message_status = params['MessageStatus'] diff --git a/rest/messages/sms-handle-callback/sms-handle-callback.8.x.py b/rest/messages/sms-handle-callback/sms-handle-callback.8.x.py index 15352ba4ca..7c700d9ffd 100644 --- a/rest/messages/sms-handle-callback/sms-handle-callback.8.x.py +++ b/rest/messages/sms-handle-callback/sms-handle-callback.8.x.py @@ -6,7 +6,7 @@ app = Flask(__name__) -@app.route("/MessageStatus", methods=['POST']) +@app.route("/message-status", methods=['POST']) def incoming_sms(): message_sid = request.values.get('MessageSid', None) message_status = request.values.get('MessageStatus', None) diff --git a/rest/messages/sms-handle-callback/sms-handle-callback.go b/rest/messages/sms-handle-callback/sms-handle-callback.go new file mode 100644 index 0000000000..4d10fe9d13 --- /dev/null +++ b/rest/messages/sms-handle-callback/sms-handle-callback.go @@ -0,0 +1,24 @@ +package main + +import ( + "fmt" + "net/http" + + "github.com/gin-gonic/gin" +) + +func main() { + router := gin.Default() + + router.POST("/message-status", func(c *gin.Context) { + + messageSid := c.PostForm("MessageSid") + messageStatus := c.PostForm("MessageStatus") + + fmt.Printf("MessageSid: %s, MessageStatus: %s ", messageSid, messageStatus) + + c.JSON(http.StatusOK, nil) + }) + + router.Run(":3000") +} diff --git a/rest/messages/sms-handle-callback/sms-handle-callback.java b/rest/messages/sms-handle-callback/sms-handle-callback.java index 762b410571..fe52034110 100644 --- a/rest/messages/sms-handle-callback/sms-handle-callback.java +++ b/rest/messages/sms-handle-callback/sms-handle-callback.java @@ -4,7 +4,7 @@ import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -@WebServlet(name = "MessageStatus", urlPatterns = {"/MessageStatus"}) +@WebServlet(name = "MessageStatus", urlPatterns = {"/message-status"}) public class MessageStatus extends HttpServlet { public void service(HttpServletRequest request, HttpServletResponse response) throws IOException { String messageSid = request.getParameter("MessageSid"); From a6ac02d0c87d9e9fa13d7daf198acf6b89dc8f81 Mon Sep 17 00:00:00 2001 From: sbansla Date: Thu, 8 Feb 2024 00:54:06 +0530 Subject: [PATCH 03/95] chore: changed file names to 10.x --- ...pa-compliance.9.x.java => payfone-tcpa-compliance.10.x.java} | 0 api-auth/{api-auth.9.x.java => api-auth.10.x.java} | 0 .../{capability-token.9.x.java => capability-token.10.x.java} | 0 ...oken-expires.9.x.java => capability-token-expires.10.x.java} | 0 .../{capability-token.9.x.java => capability-token.10.x.java} | 0 .../{capability-token.9.x.java => capability-token.10.x.java} | 0 .../{capability-token.9.x.java => capability-token.10.x.java} | 0 ...se-twiml-client.9.x.java => response-twiml-client.10.x.java} | 0 ...sponse-twiml-dial.9.x.java => response-twiml-dial.10.x.java} | 0 .../{response-twiml.9.x.java => response-twiml.10.x.java} | 0 .../{create-document.9.x.java => create-document.10.x.java} | 0 .../{update-document.9.x.java => update-document.10.x.java} | 0 ...create-certificate.9.x.java => create-certificate.10.x.java} | 0 ...delete-certificate.9.x.java => delete-certificate.10.x.java} | 0 .../{list-certificates.9.x.java => list-certificates.10.x.java} | 0 ...ieve-certificate.9.x.java => retrieve-certificate.10.x.java} | 0 ...update-certificate.9.x.java => update-certificate.10.x.java} | 0 .../{create-deployment.9.x.java => create-deployment.10.x.java} | 0 .../{delete-deployment.9.x.java => delete-deployment.10.x.java} | 0 .../{list-deployments.9.x.java => list-deployments.10.x.java} | 0 ...trieve-deployment.9.x.java => retrieve-deployment.10.x.java} | 0 .../{update-deployment.9.x.java => update-deployment.10.x.java} | 0 .../{create-device.9.x.java => create-device.10.x.java} | 0 .../{delete-device.9.x.java => delete-device.10.x.java} | 0 .../{list-devices.9.x.java => list-devices.10.x.java} | 0 .../{retrieve-device.9.x.java => retrieve-device.10.x.java} | 0 .../{update-device.9.x.java => update-device.10.x.java} | 0 .../{create-fleet.9.x.java => create-fleet.10.x.java} | 0 .../{delete-fleet.9.x.java => delete-fleet.10.x.java} | 0 .../list-fleets/{list-fleets.9.x.java => list-fleets.10.x.java} | 0 .../{retrieve-fleet.9.x.java => retrieve-fleet.10.x.java} | 0 .../{update-fleet.9.x.java => update-fleet.10.x.java} | 0 .../create-key/{create-key.9.x.java => create-key.10.x.java} | 0 .../delete-key/{delete-key.9.x.java => delete-key.10.x.java} | 0 .../keys/list-keys/{list-key.9.x.java => list-key.10.x.java} | 0 .../{retrieve-key.9.x.java => retrieve-key.10.x.java} | 0 .../update-key/{update-key.9.x.java => update-key.10.x.java} | 0 .../{basic-receive.9.x.java => basic-receive.10.x.java} | 0 fax/basic-send/{basic-send.9.x.java => basic-send.10.x.java} | 0 ...ance-get-example.9.x.java => instance-get-example.10.x.java} | 0 ...ce-post-example.9.x.java => instance-post-example.10.x.java} | 0 .../{list-get-example.9.x.java => list-get-example.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-2/{example-2.9.x.java => example-2.10.x.java} | 0 .../example-3/{example-3.9.x.java => example-3.10.x.java} | 0 .../{example.9.x.java => example.10.x.java} | 0 .../{example.9.x.java => example.10.x.java} | 0 ...e-push-config.9.x.java => new-message-push-config.10.x.java} | 0 .../{disable-indicator.9.x.java => disable-indicator.10.x.java} | 0 .../{enable-indicator.9.x.java => enable-indicator.10.x.java} | 0 .../{create-channels.9.x.java => create-channels.10.x.java} | 0 .../{delete-channels.9.x.java => delete-channels.10.x.java} | 0 .../{list-channels.9.x.java => list-channels.10.x.java} | 0 .../{retrieve-channels.9.x.java => retrieve-channels.10.x.java} | 0 .../{update-channels.9.x.java => update-channels.10.x.java} | 0 ...create-credentials.9.x.java => create-credentials.10.x.java} | 0 ...delete-credentials.9.x.java => delete-credentials.10.x.java} | 0 .../{list-credentials.9.x.java => list-credentials.10.x.java} | 0 ...ieve-credentials.9.x.java => retrieve-credentials.10.x.java} | 0 ...update-credentials.9.x.java => update-credentials.10.x.java} | 0 .../add-member/{add-member.9.x.java => add-member.10.x.java} | 0 .../{list-members.9.x.java => list-members.10.x.java} | 0 .../{remove-member.9.x.java => remove-member.10.x.java} | 0 .../{retrieve-member.9.x.java => retrieve-member.10.x.java} | 0 .../{delete-messages.9.x.java => delete-messages.10.x.java} | 0 .../{list-messages.9.x.java => list-messages.10.x.java} | 0 .../{retrieve-messages.9.x.java => retrieve-messages.10.x.java} | 0 .../{send-messages.9.x.java => send-messages.10.x.java} | 0 .../{update-messages.9.x.java => update-messages.10.x.java} | 0 .../create-role/{create-role.9.x.java => create-role.10.x.java} | 0 .../delete-role/{delete-role.9.x.java => delete-role.10.x.java} | 0 .../list-roles/{list-roles.9.x.java => list-roles.10.x.java} | 0 .../{retrieve-role.9.x.java => retrieve-role.10.x.java} | 0 .../update-role/{update-role.9.x.java => update-role.10.x.java} | 0 .../{create-service.9.x.java => create-service.10.x.java} | 0 .../{delete-service.9.x.java => delete-service.10.x.java} | 0 .../{list-service.9.x.java => list-service.10.x.java} | 0 .../{retrieve-service.9.x.java => retrieve-service.10.x.java} | 0 .../{update-service.9.x.java => update-service.10.x.java} | 0 .../create-user/{create-user.9.x.java => create-user.10.x.java} | 0 .../delete-user/{delete-user.9.x.java => delete-user.10.x.java} | 0 .../list-users/{list-users.9.x.java => list-users.10.x.java} | 0 .../{retrieve-user.9.x.java => retrieve-user.10.x.java} | 0 .../update-user/{update-user.9.x.java => update-user.10.x.java} | 0 ...gen-server-push.9.x.java => token-gen-server-push.10.x.java} | 0 ...ration-server.9.x.java => token-generation-server.10.x.java} | 0 ...xamples-1.9.x.java => lookup-get-addon-examples-1.10.x.java} | 0 ...-payfone-1.9.x.java => lookup-get-addon-payfone-1.10.x.java} | 0 ...-example-1.9.x.java => lookup-get-basic-example-1.10.x.java} | 0 ...-example-2.9.x.java => lookup-get-basic-example-2.10.x.java} | 0 ...-1.9.x.java => lookup-get-carrier-cname-example-1.10.x.java} | 0 ...-example-1.9.x.java => lookup-get-cname-example-1.10.x.java} | 0 ...onal-basic.9.x.java => lookup-international-basic.10.x.java} | 0 ...-national-basic.9.x.java => lookup-national-basic.10.x.java} | 0 ...a-file.9.x.java => get-media-recording-media-file.10.x.java} | 0 ...x.java => get-media-recording-timed-metadata-file.10.x.java} | 0 ...main-cert.9.x.java => link-shortening-domain-cert.10.x.java} | 0 ...nk-shortening-sms.9.x.java => link-shortening-sms.10.x.java} | 0 ...ing-whatsapp.9.x.java => link-shortening-whatsapp.10.x.java} | 0 .../{service-alpha-add.9.x.java => service-alpha-add.10.x.java} | 0 ...ice-alpha-delete.9.x.java => service-alpha-delete.10.x.java} | 0 .../{service-alpha-get.9.x.java => service-alpha-get.10.x.java} | 0 ...service-alpha-list.9.x.java => service-alpha-list.10.x.java} | 0 .../{service-create.9.x.java => service-create.10.x.java} | 0 .../{service-delete.9.x.java => service-delete.10.x.java} | 0 .../service-get/{service-get.9.x.java => service-get.10.x.java} | 0 .../{service-list.9.x.java => service-list.10.x.java} | 0 ...umber-add.9.x.java => service-multiple-number-add.10.x.java} | 0 ...service-number-add.9.x.java => service-number-add.10.x.java} | 0 ...e-number-delete.9.x.java => service-number-delete.10.x.java} | 0 ...service-number-get.9.x.java => service-number-get.10.x.java} | 0 ...rvice-number-list.9.x.java => service-number-list.10.x.java} | 0 ...e-shortcode-add.9.x.java => service-shortcode-add.10.x.java} | 0 ...tcode-delete.9.x.java => service-shortcode-delete.10.x.java} | 0 ...e-shortcode-get.9.x.java => service-shortcode-get.10.x.java} | 0 ...shortcode-list.9.x.java => service-shortcode-list.10.x.java} | 0 .../{service-update.9.x.java => service-update.10.x.java} | 0 ...-match-example.9.x.java => identity-match-example.10.x.java} | 0 ...evurl-example.9.x.java => create-an-evurl-example.10.x.java} | 0 ...example.9.x.java => retrieve-evurl-result-example.10.x.java} | 0 ...elete-example.9.x.java => instance-delete-example.10.x.java} | 0 ...ance-get-example.9.x.java => instance-get-example.10.x.java} | 0 ...-get-example-all.9.x.java => list-get-example-all.10.x.java} | 0 ...9.x.java => list-get-example-warnings-apr01-apr30.10.x.java} | 0 ...ber.9.x.java => instance-get-example-phone-number.10.x.java} | 0 ...va => list-get-example-actorsid-resourcesid-error.10.x.java} | 0 ...e-filter.9.x.java => list-get-example-date-filter.10.x.java} | 0 ...r.9.x.java => list-get-example-resourcesid-filter.10.x.java} | 0 ...x.java => list-get-example-sourceipaddress-filter.10.x.java} | 0 .../{create-binding.9.x.java => create-binding.10.x.java} | 0 .../{delete-binding.9.x.java => delete-binding.10.x.java} | 0 .../{list-binding.9.x.java => list-binding.10.x.java} | 0 .../{retrieve-binding.9.x.java => retrieve-binding.10.x.java} | 0 ...-apn-credential.9.x.java => create-apn-credential.10.x.java} | 0 ...-fcm-credential.9.x.java => create-fcm-credential.10.x.java} | 0 ...-gcm-credential.9.x.java => create-gcm-credential.10.x.java} | 0 .../{delete-credential.9.x.java => delete-credential.10.x.java} | 0 .../{list-credential.9.x.java => list-credential.10.x.java} | 0 ...trieve-credential.9.x.java => retrieve-credential.10.x.java} | 0 .../{update-credential.9.x.java => update-credential.10.x.java} | 0 ...n-detailed.9.x.java => send-notification-detailed.10.x.java} | 0 ...th-badge.9.x.java => send-notification-with-badge.10.x.java} | 0 .../{send-notification.9.x.java => send-notification.10.x.java} | 0 ...ication.9.x.java => send-passthrough-notification.10.x.java} | 0 .../{list-segment.9.x.java => list-segment.10.x.java} | 0 .../{create-service.9.x.java => create-service.10.x.java} | 0 .../{delete-service.9.x.java => delete-service.10.x.java} | 0 .../{list-service.9.x.java => list-service.10.x.java} | 0 .../{retrieve-service.9.x.java => retrieve-service.10.x.java} | 0 .../{update-service.9.x.java => update-service.10.x.java} | 0 ...d-user-to-segment.9.x.java => add-user-to-segment.10.x.java} | 0 .../create-user/{create-user.9.x.java => create-user.10.x.java} | 0 .../delete-user/{delete-user.9.x.java => delete-user.10.x.java} | 0 ...-binding-of-user.9.x.java => list-binding-of-user.10.x.java} | 0 .../list-users/{list-users.9.x.java => list-users.10.x.java} | 0 ...from-segment.9.x.java => remove-user-from-segment.10.x.java} | 0 .../{retrieve-user.9.x.java => retrieve-user.10.x.java} | 0 .../{create-binding.9.x.java => create-binding.10.x.java} | 0 ...to-number.9.x.java => send-notification-to-number.10.x.java} | 0 .../{send-notification.9.x.java => send-notification.10.x.java} | 0 ...ssaging-country.9.x.java => get-messaging-country.10.x.java} | 0 ...mber-country.9.x.java => get-phone-number-country.10.x.java} | 0 .../{get-voice-country.9.x.java => get-voice-country.10.x.java} | 0 ....java => get-voice-number-with-origination-number.10.x.java} | 0 .../{get-voice-number.9.x.java => get-voice-number.10.x.java} | 0 ...ng-countries.9.x.java => list-messaging-countries.10.x.java} | 0 ...countries.9.x.java => list-phone-number-countries.10.x.java} | 0 ...-voice-countries.9.x.java => list-voice-countries.10.x.java} | 0 .../{add-phone-number.9.x.java => add-phone-number.10.x.java} | 0 ...create-participant.9.x.java => create-participant.10.x.java} | 0 .../{create-service.9.x.java => create-service.10.x.java} | 0 .../{create-session.9.x.java => create-session.10.x.java} | 0 .../{send-message.9.x.java => send-message.10.x.java} | 0 ...lo_world_task.9.x.java => create_hello_world_task.10.x.java} | 0 ...ld_samples.9.x.java => create_hello_world_samples.10.x.java} | 0 ...eate_joke_samples.9.x.java => create_joke_samples.10.x.java} | 0 .../{create_joke_task.9.x.java => create_joke_task.10.x.java} | 0 .../query-task/{query_task.9.x.java => query_task.10.x.java} | 0 .../sms/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../sms/example-2/{MmsSender.9.x.java => MmsSender.10.x.java} | 0 .../{SmsHelloMonkey.9.x.java => SmsHelloMonkey.10.x.java} | 0 .../{MmsHelloMonkey.9.x.java => MmsHelloMonkey.10.x.java} | 0 .../example-5/{ReplyByName.9.x.java => ReplyByName.10.x.java} | 0 ...onversations.9.x.java => TrackingSmsConversations.10.x.java} | 0 .../{SendSmsDuringCall.9.x.java => SendSmsDuringCall.10.x.java} | 0 .../{MakePhoneCall.9.x.java => MakePhoneCall.10.x.java} | 0 ...essaging-example.9.x.java => ip-messaging-example.10.x.java} | 0 ...essaging-example.9.x.java => ip-messaging-example.10.x.java} | 0 .../{live-example.9.x.java => live-example.10.x.java} | 0 .../{sync-example.9.x.java => sync-example.10.x.java} | 0 .../{video-example.9.x.java => video-example.10.x.java} | 0 .../{voice-example.9.x.java => voice-example.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...ost-example-2.9.x.java => instance-post-example-2.10.x.java} | 0 ...ost-example-3.9.x.java => instance-post-example-3.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...reate-example.9.x.java => instance-create-example.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...xample-1.9.x.java => list-dependent-pns-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...st-post-example-1.9.x.java => list-post-example-1.10.x.java} | 0 .../{outgoing-call-1.9.x.java => outgoing-call-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...st-post-example-1.9.x.java => list-post-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...xample-1.9.x.java => local-get-advanced-example-1.10.x.java} | 0 ...c-example-1.9.x.java => local-get-basic-example-1.10.x.java} | 0 ...c-example-2.9.x.java => local-get-basic-example-2.10.x.java} | 0 ...c-example-3.9.x.java => local-get-basic-example-3.10.x.java} | 0 ...c-example-4.9.x.java => local-get-basic-example-4.10.x.java} | 0 ...c-example-5.9.x.java => local-get-basic-example-5.10.x.java} | 0 ...c-example-6.9.x.java => local-get-basic-example-6.10.x.java} | 0 ...c-example-7.9.x.java => local-get-basic-example-7.10.x.java} | 0 ...c-example-8.9.x.java => local-get-basic-example-8.10.x.java} | 0 ...le-get-example-1.9.x.java => mobile-get-example-1.10.x.java} | 0 ...get-example-1.9.x.java => toll-free-get-example-1.10.x.java} | 0 ...get-example-2.9.x.java => toll-free-get-example-2.10.x.java} | 0 ...get-example-3.9.x.java => toll-free-get-example-3.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...e-1.9.x.java => summary-instance-delete-example-1.10.x.java} | 0 ...mple-1.9.x.java => summary-instance-get-example-1.10.x.java} | 0 ...mple-2.9.x.java => summary-instance-get-example-2.10.x.java} | 0 ...example-1.9.x.java => summary-list-post-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...list-get-example-3.9.x.java => list-get-example-3.10.x.java} | 0 ...list-get-example-4.9.x.java => list-get-example-4.10.x.java} | 0 ...list-get-example-6.9.x.java => list-get-example-6.10.x.java} | 0 ...xample-6.9.x.java => local-get-advanced-example-6.10.x.java} | 0 ...list-get-example-7.9.x.java => list-get-example-7.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...list-get-example-3.9.x.java => list-get-example-3.10.x.java} | 0 ...list-get-example-4.9.x.java => list-get-example-4.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...list-get-example-3.9.x.java => list-get-example-3.10.x.java} | 0 ...st-post-example-1.9.x.java => list-post-example-1.10.x.java} | 0 ...ance-get-example.9.x.java => instance-get-example.10.x.java} | 0 .../{list-get-example.9.x.java => list-get-example.10.x.java} | 0 .../{list-post-example.9.x.java => list-post-example.10.x.java} | 0 .../using-keys-example/{example.9.x.java => example.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-2/{example-2.9.x.java => example-2.10.x.java} | 0 .../example-3/{example-3.9.x.java => example-3.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-2/{example-2.9.x.java => example-2.10.x.java} | 0 .../example-3/{example-3.9.x.java => example-3.10.x.java} | 0 .../example-4/{example-4.9.x.java => example-4.10.x.java} | 0 ...e-example-1.9.x.java => instance-delete-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...ost-example-2.9.x.java => instance-post-example-2.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 .../instance-delete/{example-1.9.x.java => example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 .../{feedback-confirm.9.x.java => feedback-confirm.10.x.java} | 0 .../{feedback-send-sms.9.x.java => feedback-send-sms.10.x.java} | 0 ...ynamic-sms.9.x.java => generate-twiml-dynamic-sms.10.x.java} | 0 ...esponse.9.x.java => generate-twiml-empty-response.10.x.java} | 0 ...generate-twiml-mms.9.x.java => generate-twiml-mms.10.x.java} | 0 .../{example-1.9.x.java => example-1.10.x.java} | 0 ...generate-twiml-sms.9.x.java => generate-twiml-sms.10.x.java} | 0 .../send-message/{example-1.9.x.java => example-1.10.x.java} | 0 ...essages-copilot.9.x.java => send-messages-copilot.10.x.java} | 0 .../{send-sms-callback.9.x.java => send-sms-callback.10.x.java} | 0 .../messages/send-sms/{send-sms.9.x.java => send-sms.10.x.java} | 0 ...on-tracking.9.x.java => sms-conversation-tracking.10.x.java} | 0 ...ete-examples.9.x.java => instance-delete-examples.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...list-get-example-3.9.x.java => list-get-example-3.10.x.java} | 0 ...list-get-example-4.9.x.java => list-get-example-4.10.x.java} | 0 .../{instance-delete.9.x.java => instance-delete.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...st-post-example-1.9.x.java => list-post-example-1.10.x.java} | 0 ...e-example-1.9.x.java => instance-delete-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...ost-example-2.9.x.java => instance-post-example-2.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...st-post-example-1.9.x.java => list-post-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...st-post-example-1.9.x.java => list-post-example-1.10.x.java} | 0 .../{get-recording-xml.9.x.java => get-recording-xml.10.x.java} | 0 ...ete-examples.9.x.java => instance-delete-examples.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...list-get-example-3.9.x.java => list-get-example-3.10.x.java} | 0 ...list-get-example-4.9.x.java => list-get-example-4.10.x.java} | 0 ...list-get-example-5.9.x.java => list-get-example-5.10.x.java} | 0 ...iptions-9.x.java => list-recording-transcriptions-10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...list-get-example-3.9.x.java => list-get-example-3.10.x.java} | 0 ...ntrol-domain.9.x.java => associate-control-domain.10.x.java} | 0 ...create-acl-address.9.x.java => create-acl-address.10.x.java} | 0 ...redential-list.9.x.java => create-credential-list.10.x.java} | 0 .../{create-credential.9.x.java => create-credential.10.x.java} | 0 .../{create-domain.9.x.java => create-domain.10.x.java} | 0 .../{create-ip-acl.9.x.java => create-ip-acl.10.x.java} | 0 ...-access-mapping.9.x.java => delete-access-mapping.10.x.java} | 0 ...-access-mapping.9.x.java => delete-access-mapping.10.x.java} | 0 ...ress-instance.9.x.java => delete-address-instance.10.x.java} | 0 ...tance.9.x.java => delete-credential-list-instance.10.x.java} | 0 ...apping.9.x.java => delete-credential-list-mapping.10.x.java} | 0 ...apping.9.x.java => delete-credential-list-mapping.10.x.java} | 0 .../{delete-credential.9.x.java => delete-credential.10.x.java} | 0 ...omain-instance.9.x.java => delete-domain-instance.10.x.java} | 0 .../{delete-ip-acl.9.x.java => delete-ip-acl.10.x.java} | 0 .../{get-acl-addresses.9.x.java => get-acl-addresses.10.x.java} | 0 .../{get-acl-list.9.x.java => get-acl-list.10.x.java} | 0 .../{get-acl-lists.9.x.java => get-acl-lists.10.x.java} | 0 ...address-instance.9.x.java => get-address-instance.10.x.java} | 0 ...instance.9.x.java => get-credential-list-instance.10.x.java} | 0 ...mappings.9.x.java => get-credential-list-mappings.10.x.java} | 0 ...ials.9.x.java => get-credential-lists-credentials.10.x.java} | 0 ...credential-lists.9.x.java => get-credential-lists.10.x.java} | 0 .../{get-credential.9.x.java => get-credential.10.x.java} | 0 ...t-domain-instance.9.x.java => get-domain-instance.10.x.java} | 0 ...t-domain-mappings.9.x.java => get-domain-mappings.10.x.java} | 0 .../get-domains/{get-domains.9.x.java => get-domains.10.x.java} | 0 .../get-ip-acls/{get-ip-acls.9.x.java => get-ip-acls.10.x.java} | 0 ...ppings-instance.9.x.java => get-mappings-instance.10.x.java} | 0 ...ppings-instance.9.x.java => get-mappings-instance.10.x.java} | 0 ...ist-domain.9.x.java => map-credential-list-domain.10.x.java} | 0 ...ist-domain.9.x.java => map-credential-list-domain.10.x.java} | 0 .../{map-list-domain.9.x.java => map-list-domain.10.x.java} | 0 .../{map-list-domain.9.x.java => map-list-domain.10.x.java} | 0 ...ress-instance.9.x.java => update-address-instance.10.x.java} | 0 ...tance.9.x.java => update-credential-list-instance.10.x.java} | 0 .../{update-credential.9.x.java => update-credential.10.x.java} | 0 ...omain-instance.9.x.java => update-domain-instance.10.x.java} | 0 ...p-acl-instance.9.x.java => update-ip-acl-instance.10.x.java} | 0 rest/sip/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 rest/sip/example-2/{example-2.9.x.java => example-2.10.x.java} | 0 rest/sip/example-3/{example-3.9.x.java => example-3.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...mple-1.9.x.java => creating-subaccounts-example-1.10.x.java} | 0 ...xample-1.9.x.java => exchanging-numbers-example-1.10.x.java} | 0 ...ample-1.9.x.java => listing-subaccounts-example-1.10.x.java} | 0 ...ample-2.9.x.java => listing-subaccounts-example-2.10.x.java} | 0 .../{subaccount-call.9.x.java => subaccount-call.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../call/{example-1.9.x.java => example-1.10.x.java} | 0 .../conference/{conference.9.x.java => conference.10.x.java} | 0 .../dequeue/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../redirect/{redirect.9.x.java => redirect.10.x.java} | 0 .../reject/{example-1.9.x.java => example-1.10.x.java} | 0 .../cumulative/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../realtime/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../cumulative/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../realtime/{example-1.9.x.java => example-1.10.x.java} | 0 .../cumulative/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../realtime/{example-1.9.x.java => example-1.10.x.java} | 0 .../cumulative/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../realtime/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example1/example/{example.9.x.java => example.10.x.java} | 0 .../example2/example/{example.9.x.java => example.10.x.java} | 0 .../example3/example/{example.9.x.java => example.10.x.java} | 0 .../example4/example/{example.9.x.java => example.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../accept/{example-1.9.x.java => example-1.10.x.java} | 0 .../call/{example-1.9.x.java => example-1.10.x.java} | 0 .../dequeue/{example-1.9.x.java => example-1.10.x.java} | 0 .../{example-1.9.x.java => example-1.10.x.java} | 0 .../{example-1.9.x.java => example-1.10.x.java} | 0 .../reject/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-2/{example-2.9.x.java => example-2.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../get/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../post/example-1/{example-1.9.x.java => example-1.10.x.java} | 0 ...-calls-example-1.9.x.java => test-calls-example-1.10.x.java} | 0 ...-calls-example-2.9.x.java => test-calls-example-2.10.x.java} | 0 ...9.x.java => test-incoming-phone-numbers-example-1.10.x.java} | 0 ...9.x.java => test-incoming-phone-numbers-example-2.10.x.java} | 0 ...st-post-example-3.9.x.java => test-post-example-3.10.x.java} | 0 ...example-1.9.x.java => test-sms-messages-example-1.10.x.java} | 0 ...example-2.9.x.java => test-sms-messages-example-2.10.x.java} | 0 ...example-3.9.x.java => test-sms-messages-example-3.10.x.java} | 0 ...hour-example.9.x.java => list-post-1-hour-example.10.x.java} | 0 .../{list-post-example.9.x.java => list-post-example.10.x.java} | 0 ...ete-examples.9.x.java => instance-delete-examples.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...list-get-example-2.9.x.java => list-get-example-2.10.x.java} | 0 ...list-get-example-3.9.x.java => list-get-example-3.10.x.java} | 0 ...list-get-example-4.9.x.java => list-get-example-4.10.x.java} | 0 ...list-get-example-5.9.x.java => list-get-example-5.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 ...list-get-example-1.9.x.java => list-get-example-1.10.x.java} | 0 ...st-post-example-1.9.x.java => list-post-example-1.10.x.java} | 0 .../{twiml-play.9.x.java => twiml-play.10.x.java} | 0 ...generate-twiml-say.9.x.java => generate-twiml-say.10.x.java} | 0 .../example-1/{example-1.9.x.java => example-1.10.x.java} | 0 .../example-2/{example-2.9.x.java => example-2.10.x.java} | 0 .../example-3/{example-3.9.x.java => example-3.10.x.java} | 0 .../example-4/{example-4.9.x.java => example-4.10.x.java} | 0 .../{recording-action.9.x.java => recording-action.10.x.java} | 0 ...t-variables-1.9.x.java => environment-variables-1.10.x.java} | 0 ...ature_validation.9.x.java => signature_validation.10.x.java} | 0 ...tion_tests.9.x.java => signature_validation_tests.10.x.java} | 0 .../{list-post-example.9.x.java => list-post-example.10.x.java} | 0 .../{update-account.9.x.java => update-account.10.x.java} | 0 .../{delete-permission.9.x.java => delete-permission.10.x.java} | 0 .../{list-permissions.9.x.java => list-permissions.10.x.java} | 0 ...trieve-permission.9.x.java => retrieve-permission.10.x.java} | 0 .../{update-permission.9.x.java => update-permission.10.x.java} | 0 .../{create-document.9.x.java => create-document.10.x.java} | 0 .../{delete-document.9.x.java => delete-document.10.x.java} | 0 .../{list-documents.9.x.java => list-documents.10.x.java} | 0 .../{retrieve-document.9.x.java => retrieve-document.10.x.java} | 0 .../{update-document.9.x.java => update-document.10.x.java} | 0 .../{delete-permission.9.x.java => delete-permission.10.x.java} | 0 .../{list-permissions.9.x.java => list-permissions.10.x.java} | 0 ...trieve-permission.9.x.java => retrieve-permission.10.x.java} | 0 .../{update-permission.9.x.java => update-permission.10.x.java} | 0 .../{create-list-item.9.x.java => create-list-item.10.x.java} | 0 .../create-list/{create-list.9.x.java => create-list.10.x.java} | 0 .../{delete-list-item.9.x.java => delete-list-item.10.x.java} | 0 .../delete-list/{delete-list.9.x.java => delete-list.10.x.java} | 0 .../list-lists/{list-lists.9.x.java => list-lists.10.x.java} | 0 .../query-list/{query-list.9.x.java => query-list.10.x.java} | 0 ...retrieve-list-item.9.x.java => retrieve-list-item.10.x.java} | 0 .../{retrieve-list.9.x.java => retrieve-list.10.x.java} | 0 .../{update-list-item.9.x.java => update-list-item.10.x.java} | 0 .../update-list/{update-list.9.x.java => update-list.10.x.java} | 0 .../{delete-permission.9.x.java => delete-permission.10.x.java} | 0 .../{list-permissions.9.x.java => list-permissions.10.x.java} | 0 ...trieve-permission.9.x.java => retrieve-permission.10.x.java} | 0 .../{update-permission.9.x.java => update-permission.10.x.java} | 0 .../{create-map-item.9.x.java => create-map-item.10.x.java} | 0 .../create-map/{create-map.9.x.java => create-map.10.x.java} | 0 .../{delete-map-item.9.x.java => delete-map-item.10.x.java} | 0 .../delete-map/{delete-map.9.x.java => delete-map.10.x.java} | 0 .../maps/list-maps/{list-maps.9.x.java => list-maps.10.x.java} | 0 .../maps/query-map/{query-map.9.x.java => query-map.10.x.java} | 0 .../{retrieve-map-item.9.x.java => retrieve-map-item.10.x.java} | 0 .../{retrieve-map.9.x.java => retrieve-map.10.x.java} | 0 .../{update-map-item.9.x.java => update-map-item.10.x.java} | 0 .../update-map/{update-map.9.x.java => update-map.10.x.java} | 0 ...ervice-webhook.9.x.java => create-service-webhook.10.x.java} | 0 .../{create-service.9.x.java => create-service.10.x.java} | 0 .../{delete-service.9.x.java => delete-service.10.x.java} | 0 .../{list-services.9.x.java => list-services.10.x.java} | 0 .../{retrieve-service.9.x.java => retrieve-service.10.x.java} | 0 .../{update-service.9.x.java => update-service.10.x.java} | 0 .../{create-stream.9.x.java => create-stream.10.x.java} | 0 .../{delete-stream.9.x.java => delete-stream.10.x.java} | 0 .../{list-streams.9.x.java => list-streams.10.x.java} | 0 ...stream-message.9.x.java => publish-stream-message.10.x.java} | 0 .../{retrieve-stream.9.x.java => retrieve-stream.10.x.java} | 0 twiml/README.md | 2 +- .../message-1/{message-1.9.x.java => message-1.10.x.java} | 0 .../message-2/{message-2.9.x.java => message-2.10.x.java} | 0 .../message-3/{message-3.9.x.java => message-3.10.x.java} | 0 .../message-4/{message-4.9.x.java => message-4.10.x.java} | 0 .../redirect-1/{redirect-1.9.x.java => redirect-1.10.x.java} | 0 .../redirect-2/{redirect-2.9.x.java => redirect-2.10.x.java} | 0 .../{your-response-1.9.x.java => your-response-1.10.x.java} | 0 .../{your-response-2.9.x.java => your-response-2.10.x.java} | 0 .../{your-response-3.9.x.java => your-response-3.10.x.java} | 0 ...lication-basic.9.x.java => dial-application-basic.10.x.java} | 0 ...arentto.9.x.java => dial-application-copyparentto.10.x.java} | 0 ...ustomerid.9.x.java => dial-application-customerid.10.x.java} | 0 ...-parameter.9.x.java => dial-application-parameter.10.x.java} | 0 ...er-scenario.9.x.java => hangup-parameter-scenario.10.x.java} | 0 .../{hangup-parameter.9.x.java => hangup-parameter.10.x.java} | 0 .../{reject-parameter.9.x.java => reject-parameter.10.x.java} | 0 .../client/client-1/{client-1.9.x.java => client-1.10.x.java} | 0 .../client/client-2/{client-2.9.x.java => client-2.10.x.java} | 0 .../client/client-3/{client-3.9.x.java => client-3.10.x.java} | 0 .../{conference-1.9.x.java => conference-1.10.x.java} | 0 .../{conference-10.9.x.java => conference-10.10.x.java} | 0 .../{conference-2.9.x.java => conference-2.10.x.java} | 0 .../{conference-3.9.x.java => conference-3.10.x.java} | 0 .../{conference-4.9.x.java => conference-4.10.x.java} | 0 .../{conference-5.9.x.java => conference-5.10.x.java} | 0 .../{conference-6.9.x.java => conference-6.10.x.java} | 0 .../{conference-7.9.x.java => conference-7.10.x.java} | 0 .../{conference-8.9.x.java => conference-8.10.x.java} | 0 .../{conference-9.9.x.java => conference-9.10.x.java} | 0 .../autopilot/{autopilot.9.x.java => autopilot.10.x.java} | 0 .../connect-1/{connect-1.9.x.java => connect-1.10.x.java} | 0 .../connect-2/{connect-2.9.x.java => connect-2.10.x.java} | 0 ...ion-method.9.x.java => conversation-action-method.10.x.java} | 0 ...ck.9.x.java => conversation-action-statuscallback.10.x.java} | 0 ...nversation-action.9.x.java => conversation-action.10.x.java} | 0 ...conversation-basic.9.x.java => conversation-basic.10.x.java} | 0 ...tion-inboundautocreation-routingassignmenttimeout.10.x.java} | 0 ...tion.9.x.java => conversation-inboundautocreation.10.x.java} | 0 ...ndtimeout.9.x.java => conversation-inboundtimeout.10.x.java} | 0 ...ersation-record-recordingstatuscallback-and-event.10.x.java} | 0 ...rsation-record-recordingstatuscallback-and-method.10.x.java} | 0 ...va => conversation-record-recordingstatuscallback.10.x.java} | 0 ...-record-trim.9.x.java => conversation-record-trim.10.x.java} | 0 ...nversation-record.9.x.java => conversation-record.10.x.java} | 0 ...> conversation-statuscallback-statuscallbackevent.10.x.java} | 0 ... conversation-statuscallback-statuscallbackmethod.10.x.java} | 0 ...scallback.9.x.java => conversation-statuscallback.10.x.java} | 0 .../voice/connect/stream/{stream.9.x.java => stream.10.x.java} | 0 .../{virtualagent-1.9.x.java => virtualagent-1.10.x.java} | 0 .../{virtualagent-2.9.x.java => virtualagent-2.10.x.java} | 0 .../{virtualagent-3.9.x.java => virtualagent-3.10.x.java} | 0 .../{virtualagent-4.9.x.java => virtualagent-4.10.x.java} | 0 .../{virtualagent-5.9.x.java => virtualagent-5.10.x.java} | 0 .../{virtualagent-6.9.x.java => virtualagent-6.10.x.java} | 0 twiml/voice/dial/dial-1/{dial-1.9.x.java => dial-1.10.x.java} | 0 twiml/voice/dial/dial-2/{dial-2.9.x.java => dial-2.10.x.java} | 0 twiml/voice/dial/dial-3/{dial-3.9.x.java => dial-3.10.x.java} | 0 twiml/voice/dial/dial-4/{dial-4.9.x.java => dial-4.10.x.java} | 0 twiml/voice/dial/dial-5/{dial-5.9.x.java => dial-5.10.x.java} | 0 twiml/voice/dial/dial-6/{dial-6.9.x.java => dial-6.10.x.java} | 0 twiml/voice/dial/dial-7/{dial-7.9.x.java => dial-7.10.x.java} | 0 twiml/voice/dial/dial-8/{dial-8.9.x.java => dial-8.10.x.java} | 0 twiml/voice/dial/dial-9/{dial-9.9.x.java => dial-9.10.x.java} | 0 .../enqueue-1/{enqueue-1.9.x.java => enqueue-1.10.x.java} | 0 .../enqueue-2/{enqueue-2.9.x.java => enqueue-2.10.x.java} | 0 .../gather/gather-1/{gather-1.9.x.java => gather-1.10.x.java} | 0 .../gather/gather-2/{gather-2.9.x.java => gather-2.10.x.java} | 0 .../gather/gather-3/{gather-3.9.x.java => gather-3.10.x.java} | 0 .../gather/gather-4/{gather-4.9.x.java => gather-4.10.x.java} | 0 .../gather/gather-5/{gather-5.9.x.java => gather-5.10.x.java} | 0 .../hangup/hangup-1/{hangup-1.9.x.java => hangup-1.10.x.java} | 0 .../voice/leave/leave-1/{leave-1.9.x.java => leave-1.10.x.java} | 0 .../voice/leave/leave-2/{leave-2.9.x.java => leave-2.10.x.java} | 0 .../voice/leave/leave-3/{leave-3.9.x.java => leave-3.10.x.java} | 0 .../number/number-1/{number-1.9.x.java => number-1.10.x.java} | 0 .../number/number-2/{number-2.9.x.java => number-2.10.x.java} | 0 .../number/number-3/{number-3.9.x.java => number-3.10.x.java} | 0 .../number/number-4/{number-4.9.x.java => number-4.10.x.java} | 0 .../number/number-5/{number-5.9.x.java => number-5.10.x.java} | 0 .../parameter-1/{parameter-1.9.x.java => parameter-1.10.x.java} | 0 .../voice/pause/pause-1/{pause-1.9.x.java => pause-1.10.x.java} | 0 .../voice/pause/pause-2/{pause-2.9.x.java => pause-2.10.x.java} | 0 twiml/voice/pay/pay-1/{pay-1.9.x.java => pay-1.10.x.java} | 0 twiml/voice/pay/pay-2/{pay-2.9.x.java => pay-2.10.x.java} | 0 twiml/voice/pay/pay-3/{pay-3.9.x.java => pay-3.10.x.java} | 0 twiml/voice/pay/pay-4/{pay-4.9.x.java => pay-4.10.x.java} | 0 twiml/voice/pay/pay-5/{pay-5.9.x.java => pay-5.10.x.java} | 0 twiml/voice/pay/pay-6/{pay-6.9.x.java => pay-6.10.x.java} | 0 twiml/voice/pay/pay-7/{pay-7.9.x.java => pay-7.10.x.java} | 0 twiml/voice/pay/pay-8/{pay-8.9.x.java => pay-8.10.x.java} | 0 twiml/voice/pay/pay-9/{pay-9.9.x.java => pay-9.10.x.java} | 0 ...charge-connector.9.x.java => pay-charge-connector.10.x.java} | 0 .../{pay-parameter.9.x.java => pay-parameter.10.x.java} | 0 ...nize-connector.9.x.java => pay-tokenize-connector.10.x.java} | 0 .../{pay-tokenize.9.x.java => pay-tokenize.10.x.java} | 0 .../{full-example-ach.9.x.java => full-example-ach.10.x.java} | 0 ...-credit-card.9.x.java => full-example-credit-card.10.x.java} | 0 ...ic.9.x.java => prompt-requireMatchingInputs-basic.10.x.java} | 0 ....x.java => prompt-requireMatchingInputs-errorType.10.x.java} | 0 twiml/voice/play/play-1/{play-1.9.x.java => play-1.10.x.java} | 0 twiml/voice/play/play-2/{play-2.9.x.java => play-2.10.x.java} | 0 twiml/voice/play/play-3/{play-3.9.x.java => play-3.10.x.java} | 0 .../voice/queue/queue-1/{queue-1.9.x.java => queue-1.10.x.java} | 0 .../voice/queue/queue-2/{queue-2.9.x.java => queue-2.10.x.java} | 0 .../record/record-1/{record-1.9.x.java => record-1.10.x.java} | 0 .../record/record-2/{record-2.9.x.java => record-2.10.x.java} | 0 .../record/record-3/{record-3.9.x.java => record-3.10.x.java} | 0 .../record/record-4/{record-4.9.x.java => record-4.10.x.java} | 0 .../redirect-1/{redirect-1.9.x.java => redirect-1.10.x.java} | 0 .../redirect-2/{redirect-2.9.x.java => redirect-2.10.x.java} | 0 .../redirect-3/{redirect-3.9.x.java => redirect-3.10.x.java} | 0 .../voice/refer/refer-1/{refer-1.9.x.java => refer-1.10.x.java} | 0 .../voice/refer/refer-2/{refer-2.9.x.java => refer-2.10.x.java} | 0 .../voice/refer/refer-3/{refer-3.9.x.java => refer-3.10.x.java} | 0 .../voice/refer/refer-4/{refer-4.9.x.java => refer-4.10.x.java} | 0 .../reject/reject-1/{reject-1.9.x.java => reject-1.10.x.java} | 0 .../reject/reject-2/{reject-2.9.x.java => reject-2.10.x.java} | 0 .../{say-basic-usage.9.x.java => say-basic-usage.10.x.java} | 0 .../{say-language.9.x.java => say-language.10.x.java} | 0 .../say/say-loop/{say-loop.9.x.java => say-loop.10.x.java} | 0 .../say/say-voice/{say-voice.9.x.java => say-voice.10.x.java} | 0 twiml/voice/say/ssml/{ssml.9.x.java => ssml.10.x.java} | 0 twiml/voice/sim/sim-1/{sim-1.9.x.java => sim-1.10.x.java} | 0 twiml/voice/sim/sim-2/{sim-2.9.x.java => sim-2.10.x.java} | 0 twiml/voice/sip/sip-1/{sip-1.9.x.java => sip-1.10.x.java} | 0 twiml/voice/sip/sip-10/{sip-10.9.x.java => sip-10.10.x.java} | 0 twiml/voice/sip/sip-11/{sip-11.9.x.java => sip-11.10.x.java} | 0 twiml/voice/sip/sip-12/{sip-12.9.x.java => sip-12.10.x.java} | 0 twiml/voice/sip/sip-2/{sip-2.9.x.java => sip-2.10.x.java} | 0 twiml/voice/sip/sip-3/{sip-3.9.x.java => sip-3.10.x.java} | 0 twiml/voice/sip/sip-4/{sip-4.9.x.java => sip-4.10.x.java} | 0 twiml/voice/sip/sip-5/{sip-5.9.x.java => sip-5.10.x.java} | 0 twiml/voice/sip/sip-6/{sip-6.9.x.java => sip-6.10.x.java} | 0 twiml/voice/sip/sip-7/{sip-7.9.x.java => sip-7.10.x.java} | 0 twiml/voice/sip/sip-8/{sip-8.9.x.java => sip-8.10.x.java} | 0 twiml/voice/sip/sip-9/{sip-9.9.x.java => sip-9.10.x.java} | 0 .../siprec/siprec-1/{siprec-1.9.x.java => siprec-1.10.x.java} | 0 twiml/voice/sms/sms-1/{sms-1.9.x.java => sms-1.10.x.java} | 0 twiml/voice/sms/sms-2/{sms-2.9.x.java => sms-2.10.x.java} | 0 twiml/voice/sms/sms-3/{sms-3.9.x.java => sms-3.10.x.java} | 0 twiml/voice/sms/sms-4/{sms-4.9.x.java => sms-4.10.x.java} | 0 .../stream/stream-1/{stream-1.9.x.java => stream-1.10.x.java} | 0 .../stream/stream-2/{stream-2.9.x.java => stream-2.10.x.java} | 0 .../{your-response-1.9.x.java => your-response-1.10.x.java} | 0 .../{your-response-2.9.x.java => your-response-2.10.x.java} | 0 ...ove-verification.9.x.java => approve-verification.10.x.java} | 0 ...media-file.9.x.java => get-composition-media-file.10.x.java} | 0 ...-customer-rules.9.x.java => update-customer-rules.10.x.java} | 0 ...-customer-rules.9.x.java => update-customer-rules.10.x.java} | 0 ...s-audio-all.9.x.java => recording-rules-audio-all.10.x.java} | 0 ...s-start-all.9.x.java => recording-rules-start-all.10.x.java} | 0 ...les-stop-all.9.x.java => recording-rules-stop-all.10.x.java} | 0 .../agent/{queue-agent.9.x.java => queue-agent.10.x.java} | 0 .../caller/{queue-caller.9.x.java => queue-caller.10.x.java} | 0 .../{queue-redirect.9.x.java => queue-redirect.10.x.java} | 0 .../{specify-edge.9.x.java => specify-edge.10.x.java} | 0 ...ary-example-1.9.x.java => create-binary-example-1.10.x.java} | 0 ...-text-example-1.9.x.java => create-text-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 .../{list-example-1.9.x.java => list-example-1.10.x.java} | 0 .../{create-example-1.9.x.java => create-example-1.10.x.java} | 0 .../{delete-example-1.9.x.java => delete-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...-get-example-2.9.x.java => instance-get-example-2.10.x.java} | 0 .../{list-example-1.9.x.java => list-example-1.10.x.java} | 0 .../{list-example-1.9.x.java => list-example-1.10.x.java} | 0 .../{list-example-1.9.x.java => list-example-1.10.x.java} | 0 ...-get-example-1.9.x.java => instance-get-example-1.10.x.java} | 0 ...-get-example-2.9.x.java => instance-get-example-2.10.x.java} | 0 ...ost-example-1.9.x.java => instance-post-example-1.10.x.java} | 0 .../{list-example-1.9.x.java => list-example-1.10.x.java} | 0 702 files changed, 1 insertion(+), 1 deletion(-) rename add-ons/lookups/payfone-tcpa-compliance/{payfone-tcpa-compliance.9.x.java => payfone-tcpa-compliance.10.x.java} (100%) rename api-auth/{api-auth.9.x.java => api-auth.10.x.java} (100%) rename client/capability-token-2way/{capability-token.9.x.java => capability-token.10.x.java} (100%) rename client/capability-token-expires/{capability-token-expires.9.x.java => capability-token-expires.10.x.java} (100%) rename client/capability-token-incoming/{capability-token.9.x.java => capability-token.10.x.java} (100%) rename client/capability-token-outgoing/{capability-token.9.x.java => capability-token.10.x.java} (100%) rename client/capability-token/{capability-token.9.x.java => capability-token.10.x.java} (100%) rename client/response-twiml-client/{response-twiml-client.9.x.java => response-twiml-client.10.x.java} (100%) rename client/response-twiml-dial/{response-twiml-dial.9.x.java => response-twiml-dial.10.x.java} (100%) rename client/response-twiml/{response-twiml.9.x.java => response-twiml.10.x.java} (100%) rename deployed-devices/quickstarts/sync-boardled/create-document/{create-document.9.x.java => create-document.10.x.java} (100%) rename deployed-devices/quickstarts/sync-boardled/update-document/{update-document.9.x.java => update-document.10.x.java} (100%) rename deployed-devices/rest/certificates/create-certificate/{create-certificate.9.x.java => create-certificate.10.x.java} (100%) rename deployed-devices/rest/certificates/delete-certificate/{delete-certificate.9.x.java => delete-certificate.10.x.java} (100%) rename deployed-devices/rest/certificates/list-certificates/{list-certificates.9.x.java => list-certificates.10.x.java} (100%) rename deployed-devices/rest/certificates/retrieve-certificate/{retrieve-certificate.9.x.java => retrieve-certificate.10.x.java} (100%) rename deployed-devices/rest/certificates/update-certificate/{update-certificate.9.x.java => update-certificate.10.x.java} (100%) rename deployed-devices/rest/deployments/create-deployment/{create-deployment.9.x.java => create-deployment.10.x.java} (100%) rename deployed-devices/rest/deployments/delete-deployment/{delete-deployment.9.x.java => delete-deployment.10.x.java} (100%) rename deployed-devices/rest/deployments/list-deployments/{list-deployments.9.x.java => list-deployments.10.x.java} (100%) rename deployed-devices/rest/deployments/retrieve-deployment/{retrieve-deployment.9.x.java => retrieve-deployment.10.x.java} (100%) rename deployed-devices/rest/deployments/update-deployment/{update-deployment.9.x.java => update-deployment.10.x.java} (100%) rename deployed-devices/rest/devices/create-device/{create-device.9.x.java => create-device.10.x.java} (100%) rename deployed-devices/rest/devices/delete-device/{delete-device.9.x.java => delete-device.10.x.java} (100%) rename deployed-devices/rest/devices/list-devices/{list-devices.9.x.java => list-devices.10.x.java} (100%) rename deployed-devices/rest/devices/retrieve-device/{retrieve-device.9.x.java => retrieve-device.10.x.java} (100%) rename deployed-devices/rest/devices/update-device/{update-device.9.x.java => update-device.10.x.java} (100%) rename deployed-devices/rest/fleets/create-fleet/{create-fleet.9.x.java => create-fleet.10.x.java} (100%) rename deployed-devices/rest/fleets/delete-fleet/{delete-fleet.9.x.java => delete-fleet.10.x.java} (100%) rename deployed-devices/rest/fleets/list-fleets/{list-fleets.9.x.java => list-fleets.10.x.java} (100%) rename deployed-devices/rest/fleets/retrieve-fleet/{retrieve-fleet.9.x.java => retrieve-fleet.10.x.java} (100%) rename deployed-devices/rest/fleets/update-fleet/{update-fleet.9.x.java => update-fleet.10.x.java} (100%) rename deployed-devices/rest/keys/create-key/{create-key.9.x.java => create-key.10.x.java} (100%) rename deployed-devices/rest/keys/delete-key/{delete-key.9.x.java => delete-key.10.x.java} (100%) rename deployed-devices/rest/keys/list-keys/{list-key.9.x.java => list-key.10.x.java} (100%) rename deployed-devices/rest/keys/retrieve-key/{retrieve-key.9.x.java => retrieve-key.10.x.java} (100%) rename deployed-devices/rest/keys/update-key/{update-key.9.x.java => update-key.10.x.java} (100%) rename fax/basic-receive/{basic-receive.9.x.java => basic-receive.10.x.java} (100%) rename fax/basic-send/{basic-send.9.x.java => basic-send.10.x.java} (100%) rename fax/instance-get-example/{instance-get-example.9.x.java => instance-get-example.10.x.java} (100%) rename fax/instance-post-example/{instance-post-example.9.x.java => instance-post-example.10.x.java} (100%) rename fax/list-get-example/{list-get-example.9.x.java => list-get-example.10.x.java} (100%) rename fax/sip-send/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename fax/sip-send/example-2/{example-2.9.x.java => example-2.10.x.java} (100%) rename fax/sip-send/example-3/{example-3.9.x.java => example-3.10.x.java} (100%) rename guides/voice/respond-incoming-calls-guide/respond-no-parameters/{example.9.x.java => example.10.x.java} (100%) rename guides/voice/respond-incoming-calls-guide/respond-with-parameters/{example.9.x.java => example.10.x.java} (100%) rename ip-messaging/push-config/new-message-push-config/{new-message-push-config.9.x.java => new-message-push-config.10.x.java} (100%) rename ip-messaging/reachability-indicator/disable-indicator/{disable-indicator.9.x.java => disable-indicator.10.x.java} (100%) rename ip-messaging/reachability-indicator/enable-indicator/{enable-indicator.9.x.java => enable-indicator.10.x.java} (100%) rename ip-messaging/rest/channels/create-channels/{create-channels.9.x.java => create-channels.10.x.java} (100%) rename ip-messaging/rest/channels/delete-channels/{delete-channels.9.x.java => delete-channels.10.x.java} (100%) rename ip-messaging/rest/channels/list-channels/{list-channels.9.x.java => list-channels.10.x.java} (100%) rename ip-messaging/rest/channels/retrieve-channels/{retrieve-channels.9.x.java => retrieve-channels.10.x.java} (100%) rename ip-messaging/rest/channels/update-channels/{update-channels.9.x.java => update-channels.10.x.java} (100%) rename ip-messaging/rest/credentials/create-credentials/{create-credentials.9.x.java => create-credentials.10.x.java} (100%) rename ip-messaging/rest/credentials/delete-credentials/{delete-credentials.9.x.java => delete-credentials.10.x.java} (100%) rename ip-messaging/rest/credentials/list-credentials/{list-credentials.9.x.java => list-credentials.10.x.java} (100%) rename ip-messaging/rest/credentials/retrieve-credentials/{retrieve-credentials.9.x.java => retrieve-credentials.10.x.java} (100%) rename ip-messaging/rest/credentials/update-credentials/{update-credentials.9.x.java => update-credentials.10.x.java} (100%) rename ip-messaging/rest/members/add-member/{add-member.9.x.java => add-member.10.x.java} (100%) rename ip-messaging/rest/members/list-members/{list-members.9.x.java => list-members.10.x.java} (100%) rename ip-messaging/rest/members/remove-member/{remove-member.9.x.java => remove-member.10.x.java} (100%) rename ip-messaging/rest/members/retrieve-member/{retrieve-member.9.x.java => retrieve-member.10.x.java} (100%) rename ip-messaging/rest/messages/delete-messages/{delete-messages.9.x.java => delete-messages.10.x.java} (100%) rename ip-messaging/rest/messages/list-messages/{list-messages.9.x.java => list-messages.10.x.java} (100%) rename ip-messaging/rest/messages/retrieve-messages/{retrieve-messages.9.x.java => retrieve-messages.10.x.java} (100%) rename ip-messaging/rest/messages/send-messages/{send-messages.9.x.java => send-messages.10.x.java} (100%) rename ip-messaging/rest/messages/update-messages/{update-messages.9.x.java => update-messages.10.x.java} (100%) rename ip-messaging/rest/roles/create-role/{create-role.9.x.java => create-role.10.x.java} (100%) rename ip-messaging/rest/roles/delete-role/{delete-role.9.x.java => delete-role.10.x.java} (100%) rename ip-messaging/rest/roles/list-roles/{list-roles.9.x.java => list-roles.10.x.java} (100%) rename ip-messaging/rest/roles/retrieve-role/{retrieve-role.9.x.java => retrieve-role.10.x.java} (100%) rename ip-messaging/rest/roles/update-role/{update-role.9.x.java => update-role.10.x.java} (100%) rename ip-messaging/rest/services/create-service/{create-service.9.x.java => create-service.10.x.java} (100%) rename ip-messaging/rest/services/delete-service/{delete-service.9.x.java => delete-service.10.x.java} (100%) rename ip-messaging/rest/services/list-service/{list-service.9.x.java => list-service.10.x.java} (100%) rename ip-messaging/rest/services/retrieve-service/{retrieve-service.9.x.java => retrieve-service.10.x.java} (100%) rename ip-messaging/rest/services/update-service/{update-service.9.x.java => update-service.10.x.java} (100%) rename ip-messaging/rest/users/create-user/{create-user.9.x.java => create-user.10.x.java} (100%) rename ip-messaging/rest/users/delete-user/{delete-user.9.x.java => delete-user.10.x.java} (100%) rename ip-messaging/rest/users/list-users/{list-users.9.x.java => list-users.10.x.java} (100%) rename ip-messaging/rest/users/retrieve-user/{retrieve-user.9.x.java => retrieve-user.10.x.java} (100%) rename ip-messaging/rest/users/update-user/{update-user.9.x.java => update-user.10.x.java} (100%) rename ip-messaging/users/token-gen-server-push/{token-gen-server-push.9.x.java => token-gen-server-push.10.x.java} (100%) rename ip-messaging/users/token-generation-server/{token-generation-server.9.x.java => token-generation-server.10.x.java} (100%) rename lookups/lookup-get-addon-example-1/{lookup-get-addon-examples-1.9.x.java => lookup-get-addon-examples-1.10.x.java} (100%) rename lookups/lookup-get-addon-payfone-example-1/{lookup-get-addon-payfone-1.9.x.java => lookup-get-addon-payfone-1.10.x.java} (100%) rename lookups/lookup-get-basic-example-1/{lookup-get-basic-example-1.9.x.java => lookup-get-basic-example-1.10.x.java} (100%) rename lookups/lookup-get-basic-example-2/{lookup-get-basic-example-2.9.x.java => lookup-get-basic-example-2.10.x.java} (100%) rename lookups/lookup-get-carrier-cname-example-1/{lookup-get-carrier-cname-example-1.9.x.java => lookup-get-carrier-cname-example-1.10.x.java} (100%) rename lookups/lookup-get-cname-example-1/{lookup-get-cname-example-1.9.x.java => lookup-get-cname-example-1.10.x.java} (100%) rename lookups/lookup-international-basic/{lookup-international-basic.9.x.java => lookup-international-basic.10.x.java} (100%) rename lookups/lookup-national-basic/{lookup-national-basic.9.x.java => lookup-national-basic.10.x.java} (100%) rename media/rest/recordings/get-media-recording-media-file/{get-media-recording-media-file.9.x.java => get-media-recording-media-file.10.x.java} (100%) rename media/rest/recordings/get-media-recording-timed-metadata-file/{get-media-recording-timed-metadata-file.9.x.java => get-media-recording-timed-metadata-file.10.x.java} (100%) rename messaging/link-shortening/link-shortening-domain-cert/{link-shortening-domain-cert.9.x.java => link-shortening-domain-cert.10.x.java} (100%) rename messaging/link-shortening/link-shortening-sms/{link-shortening-sms.9.x.java => link-shortening-sms.10.x.java} (100%) rename messaging/link-shortening/link-shortening-whatsapp/{link-shortening-whatsapp.9.x.java => link-shortening-whatsapp.10.x.java} (100%) rename messaging/services/service-alpha-add/{service-alpha-add.9.x.java => service-alpha-add.10.x.java} (100%) rename messaging/services/service-alpha-delete/{service-alpha-delete.9.x.java => service-alpha-delete.10.x.java} (100%) rename messaging/services/service-alpha-get/{service-alpha-get.9.x.java => service-alpha-get.10.x.java} (100%) rename messaging/services/service-alpha-list/{service-alpha-list.9.x.java => service-alpha-list.10.x.java} (100%) rename messaging/services/service-create/{service-create.9.x.java => service-create.10.x.java} (100%) rename messaging/services/service-delete/{service-delete.9.x.java => service-delete.10.x.java} (100%) rename messaging/services/service-get/{service-get.9.x.java => service-get.10.x.java} (100%) rename messaging/services/service-list/{service-list.9.x.java => service-list.10.x.java} (100%) rename messaging/services/service-multiple-number-add/{service-multiple-number-add.9.x.java => service-multiple-number-add.10.x.java} (100%) rename messaging/services/service-number-add/{service-number-add.9.x.java => service-number-add.10.x.java} (100%) rename messaging/services/service-number-delete/{service-number-delete.9.x.java => service-number-delete.10.x.java} (100%) rename messaging/services/service-number-get/{service-number-get.9.x.java => service-number-get.10.x.java} (100%) rename messaging/services/service-number-list/{service-number-list.9.x.java => service-number-list.10.x.java} (100%) rename messaging/services/service-shortcode-add/{service-shortcode-add.9.x.java => service-shortcode-add.10.x.java} (100%) rename messaging/services/service-shortcode-delete/{service-shortcode-delete.9.x.java => service-shortcode-delete.10.x.java} (100%) rename messaging/services/service-shortcode-get/{service-shortcode-get.9.x.java => service-shortcode-get.10.x.java} (100%) rename messaging/services/service-shortcode-list/{service-shortcode-list.9.x.java => service-shortcode-list.10.x.java} (100%) rename messaging/services/service-update/{service-update.9.x.java => service-update.10.x.java} (100%) rename mobile-identity/identity-match/{identity-match-example.9.x.java => identity-match-example.10.x.java} (100%) rename mobile-identity/silent-network-auth/create-an-evurl/{create-an-evurl-example.9.x.java => create-an-evurl-example.10.x.java} (100%) rename mobile-identity/silent-network-auth/retrieve-evurl-result/{retrieve-evurl-result-example.9.x.java => retrieve-evurl-result-example.10.x.java} (100%) rename monitor/alerts/instance-delete-example/{instance-delete-example.9.x.java => instance-delete-example.10.x.java} (100%) rename monitor/alerts/instance-get-example/{instance-get-example.9.x.java => instance-get-example.10.x.java} (100%) rename monitor/alerts/list-get-example-all/{list-get-example-all.9.x.java => list-get-example-all.10.x.java} (100%) rename monitor/alerts/list-get-example-warnings-apr01-apr30/{list-get-example-warnings-apr01-apr30.9.x.java => list-get-example-warnings-apr01-apr30.10.x.java} (100%) rename monitor/events/instance-get-example-phone-number/{instance-get-example-phone-number.9.x.java => instance-get-example-phone-number.10.x.java} (100%) rename monitor/events/list-get-example-actorsid-resourcesid-error/{list-get-example-actorsid-resourcesid-error.9.x.java => list-get-example-actorsid-resourcesid-error.10.x.java} (100%) rename monitor/events/list-get-example-date-filter/{list-get-example-date-filter.9.x.java => list-get-example-date-filter.10.x.java} (100%) rename monitor/events/list-get-example-resourcesid-filter/{list-get-example-resourcesid-filter.9.x.java => list-get-example-resourcesid-filter.10.x.java} (100%) rename monitor/events/list-get-example-sourceipaddress-filter/{list-get-example-sourceipaddress-filter.9.x.java => list-get-example-sourceipaddress-filter.10.x.java} (100%) rename notifications/rest/bindings/create-binding/{create-binding.9.x.java => create-binding.10.x.java} (100%) rename notifications/rest/bindings/delete-binding/{delete-binding.9.x.java => delete-binding.10.x.java} (100%) rename notifications/rest/bindings/list-binding/{list-binding.9.x.java => list-binding.10.x.java} (100%) rename notifications/rest/bindings/retrieve-binding/{retrieve-binding.9.x.java => retrieve-binding.10.x.java} (100%) rename notifications/rest/credentials/create-apn-credential/{create-apn-credential.9.x.java => create-apn-credential.10.x.java} (100%) rename notifications/rest/credentials/create-fcm-credential/{create-fcm-credential.9.x.java => create-fcm-credential.10.x.java} (100%) rename notifications/rest/credentials/create-gcm-credential/{create-gcm-credential.9.x.java => create-gcm-credential.10.x.java} (100%) rename notifications/rest/credentials/delete-credential/{delete-credential.9.x.java => delete-credential.10.x.java} (100%) rename notifications/rest/credentials/list-credential/{list-credential.9.x.java => list-credential.10.x.java} (100%) rename notifications/rest/credentials/retrieve-credential/{retrieve-credential.9.x.java => retrieve-credential.10.x.java} (100%) rename notifications/rest/credentials/update-credential/{update-credential.9.x.java => update-credential.10.x.java} (100%) rename notifications/rest/notifications/send-notification-detailed/{send-notification-detailed.9.x.java => send-notification-detailed.10.x.java} (100%) rename notifications/rest/notifications/send-notification-with-badge/{send-notification-with-badge.9.x.java => send-notification-with-badge.10.x.java} (100%) rename notifications/rest/notifications/send-notification/{send-notification.9.x.java => send-notification.10.x.java} (100%) rename notifications/rest/notifications/send-passthrough-notification/{send-passthrough-notification.9.x.java => send-passthrough-notification.10.x.java} (100%) rename notifications/rest/segments/list-segment/{list-segment.9.x.java => list-segment.10.x.java} (100%) rename notifications/rest/services/create-service/{create-service.9.x.java => create-service.10.x.java} (100%) rename notifications/rest/services/delete-service/{delete-service.9.x.java => delete-service.10.x.java} (100%) rename notifications/rest/services/list-service/{list-service.9.x.java => list-service.10.x.java} (100%) rename notifications/rest/services/retrieve-service/{retrieve-service.9.x.java => retrieve-service.10.x.java} (100%) rename notifications/rest/services/update-service/{update-service.9.x.java => update-service.10.x.java} (100%) rename notifications/rest/users/add-user-to-segment/{add-user-to-segment.9.x.java => add-user-to-segment.10.x.java} (100%) rename notifications/rest/users/create-user/{create-user.9.x.java => create-user.10.x.java} (100%) rename notifications/rest/users/delete-user/{delete-user.9.x.java => delete-user.10.x.java} (100%) rename notifications/rest/users/list-binding-of-user/{list-binding-of-user.9.x.java => list-binding-of-user.10.x.java} (100%) rename notifications/rest/users/list-users/{list-users.9.x.java => list-users.10.x.java} (100%) rename notifications/rest/users/remove-user-from-segment/{remove-user-from-segment.9.x.java => remove-user-from-segment.10.x.java} (100%) rename notifications/rest/users/retrieve-user/{retrieve-user.9.x.java => retrieve-user.10.x.java} (100%) rename notifications/sms-quickstart/create-binding/{create-binding.9.x.java => create-binding.10.x.java} (100%) rename notifications/sms-quickstart/send-notification-to-number/{send-notification-to-number.9.x.java => send-notification-to-number.10.x.java} (100%) rename notifications/sms-quickstart/send-notification/{send-notification.9.x.java => send-notification.10.x.java} (100%) rename pricing/get-messaging-country/{get-messaging-country.9.x.java => get-messaging-country.10.x.java} (100%) rename pricing/get-phone-number-country/{get-phone-number-country.9.x.java => get-phone-number-country.10.x.java} (100%) rename pricing/get-voice-country/{get-voice-country.9.x.java => get-voice-country.10.x.java} (100%) rename pricing/get-voice-number-with-origination-number/{get-voice-number-with-origination-number.9.x.java => get-voice-number-with-origination-number.10.x.java} (100%) rename pricing/get-voice-number/{get-voice-number.9.x.java => get-voice-number.10.x.java} (100%) rename pricing/list-messaging-countries/{list-messaging-countries.9.x.java => list-messaging-countries.10.x.java} (100%) rename pricing/list-phone-number-countries/{list-phone-number-countries.9.x.java => list-phone-number-countries.10.x.java} (100%) rename pricing/list-voice-countries/{list-voice-countries.9.x.java => list-voice-countries.10.x.java} (100%) rename proxy/quickstart/add-phone-number/{add-phone-number.9.x.java => add-phone-number.10.x.java} (100%) rename proxy/quickstart/create-participant/{create-participant.9.x.java => create-participant.10.x.java} (100%) rename proxy/quickstart/create-service/{create-service.9.x.java => create-service.10.x.java} (100%) rename proxy/quickstart/create-session/{create-session.9.x.java => create-session.10.x.java} (100%) rename proxy/quickstart/send-message/{send-message.9.x.java => send-message.10.x.java} (100%) rename quickstart/java/autopilot/create-first-task/{create_hello_world_task.9.x.java => create_hello_world_task.10.x.java} (100%) rename quickstart/java/autopilot/create-hello-world-samples/{create_hello_world_samples.9.x.java => create_hello_world_samples.10.x.java} (100%) rename quickstart/java/autopilot/create-joke-samples/{create_joke_samples.9.x.java => create_joke_samples.10.x.java} (100%) rename quickstart/java/autopilot/create-joke-task/{create_joke_task.9.x.java => create_joke_task.10.x.java} (100%) rename quickstart/java/autopilot/query-task/{query_task.9.x.java => query_task.10.x.java} (100%) rename quickstart/java/sms/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename quickstart/java/sms/example-2/{MmsSender.9.x.java => MmsSender.10.x.java} (100%) rename quickstart/java/sms/example-3/{SmsHelloMonkey.9.x.java => SmsHelloMonkey.10.x.java} (100%) rename quickstart/java/sms/example-4/{MmsHelloMonkey.9.x.java => MmsHelloMonkey.10.x.java} (100%) rename quickstart/java/sms/example-5/{ReplyByName.9.x.java => ReplyByName.10.x.java} (100%) rename quickstart/java/sms/example-6/{TrackingSmsConversations.9.x.java => TrackingSmsConversations.10.x.java} (100%) rename quickstart/java/sms/example-7/{SendSmsDuringCall.9.x.java => SendSmsDuringCall.10.x.java} (100%) rename quickstart/java/voice/example-1/{MakePhoneCall.9.x.java => MakePhoneCall.10.x.java} (100%) rename rest/access-tokens/ip-messaging-example-push-credential/{ip-messaging-example.9.x.java => ip-messaging-example.10.x.java} (100%) rename rest/access-tokens/ip-messaging-example/{ip-messaging-example.9.x.java => ip-messaging-example.10.x.java} (100%) rename rest/access-tokens/live-example/{live-example.9.x.java => live-example.10.x.java} (100%) rename rest/access-tokens/sync-example/{sync-example.9.x.java => sync-example.10.x.java} (100%) rename rest/access-tokens/video-example/{video-example.9.x.java => video-example.10.x.java} (100%) rename rest/access-tokens/voice-example/{voice-example.9.x.java => voice-example.10.x.java} (100%) rename rest/accounts/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/accounts/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/accounts/instance-post-example-2/{instance-post-example-2.9.x.java => instance-post-example-2.10.x.java} (100%) rename rest/accounts/instance-post-example-3/{instance-post-example-3.9.x.java => instance-post-example-3.10.x.java} (100%) rename rest/accounts/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/accounts/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/addresses/instance-create-example/{instance-create-example.9.x.java => instance-create-example.10.x.java} (100%) rename rest/addresses/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/addresses/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/addresses/list-dependent-pns-example-1/{list-dependent-pns-example-1.9.x.java => list-dependent-pns-example-1.10.x.java} (100%) rename rest/addresses/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/addresses/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/addresses/list-post-example-1/{list-post-example-1.9.x.java => list-post-example-1.10.x.java} (100%) rename rest/answering-machine-detection/outgoing-call/{outgoing-call-1.9.x.java => outgoing-call-1.10.x.java} (100%) rename rest/applications/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/applications/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/applications/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/applications/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/applications/list-post-example-1/{list-post-example-1.9.x.java => list-post-example-1.10.x.java} (100%) rename rest/authorized-connect-apps/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/authorized-connect-apps/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/available-phone-numbers/local-advanced-example-1/{local-get-advanced-example-1.9.x.java => local-get-advanced-example-1.10.x.java} (100%) rename rest/available-phone-numbers/local-basic-example-1/{local-get-basic-example-1.9.x.java => local-get-basic-example-1.10.x.java} (100%) rename rest/available-phone-numbers/local-basic-example-2/{local-get-basic-example-2.9.x.java => local-get-basic-example-2.10.x.java} (100%) rename rest/available-phone-numbers/local-basic-example-3/{local-get-basic-example-3.9.x.java => local-get-basic-example-3.10.x.java} (100%) rename rest/available-phone-numbers/local-basic-example-4/{local-get-basic-example-4.9.x.java => local-get-basic-example-4.10.x.java} (100%) rename rest/available-phone-numbers/local-basic-example-5/{local-get-basic-example-5.9.x.java => local-get-basic-example-5.10.x.java} (100%) rename rest/available-phone-numbers/local-basic-example-6/{local-get-basic-example-6.9.x.java => local-get-basic-example-6.10.x.java} (100%) rename rest/available-phone-numbers/local-basic-example-7/{local-get-basic-example-7.9.x.java => local-get-basic-example-7.10.x.java} (100%) rename rest/available-phone-numbers/local-basic-example-8/{local-get-basic-example-8.9.x.java => local-get-basic-example-8.10.x.java} (100%) rename rest/available-phone-numbers/mobile-example/{mobile-get-example-1.9.x.java => mobile-get-example-1.10.x.java} (100%) rename rest/available-phone-numbers/toll-free-example-1/{toll-free-get-example-1.9.x.java => toll-free-get-example-1.10.x.java} (100%) rename rest/available-phone-numbers/toll-free-example-2/{toll-free-get-example-2.9.x.java => toll-free-get-example-2.10.x.java} (100%) rename rest/available-phone-numbers/toll-free-example-3/{toll-free-get-example-3.9.x.java => toll-free-get-example-3.10.x.java} (100%) rename rest/call-feedback/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/call-feedback/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/call-feedback/summary-instance-delete-example-1/{summary-instance-delete-example-1.9.x.java => summary-instance-delete-example-1.10.x.java} (100%) rename rest/call-feedback/summary-instance-get-example-1/{summary-instance-get-example-1.9.x.java => summary-instance-get-example-1.10.x.java} (100%) rename rest/call-feedback/summary-instance-get-example-2/{summary-instance-get-example-2.9.x.java => summary-instance-get-example-2.10.x.java} (100%) rename rest/call-feedback/summary-list-post-example-1/{summary-list-post-example-1.9.x.java => summary-list-post-example-1.10.x.java} (100%) rename rest/call/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/call/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/call/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/call/list-get-example-3/{list-get-example-3.9.x.java => list-get-example-3.10.x.java} (100%) rename rest/call/list-get-example-4/{list-get-example-4.9.x.java => list-get-example-4.10.x.java} (100%) rename rest/call/list-get-example-6/{list-get-example-6.9.x.java => list-get-example-6.10.x.java} (100%) rename rest/call/list-get-example-6/{local-get-advanced-example-6.9.x.java => local-get-advanced-example-6.10.x.java} (100%) rename rest/call/list-get-example-7/{list-get-example-7.9.x.java => list-get-example-7.10.x.java} (100%) rename rest/change-call-state/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/change-call-state/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/conference/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/conference/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/conference/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/conference/list-get-example-3/{list-get-example-3.9.x.java => list-get-example-3.10.x.java} (100%) rename rest/conference/list-get-example-4/{list-get-example-4.9.x.java => list-get-example-4.10.x.java} (100%) rename rest/connect-apps/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/connect-apps/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/incoming-phone-numbers/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/incoming-phone-numbers/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/incoming-phone-numbers/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/incoming-phone-numbers/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/incoming-phone-numbers/list-get-example-3/{list-get-example-3.9.x.java => list-get-example-3.10.x.java} (100%) rename rest/incoming-phone-numbers/list-post-example-1/{list-post-example-1.9.x.java => list-post-example-1.10.x.java} (100%) rename rest/keys/instance-get-example/{instance-get-example.9.x.java => instance-get-example.10.x.java} (100%) rename rest/keys/list-get-example/{list-get-example.9.x.java => list-get-example.10.x.java} (100%) rename rest/keys/list-post-example/{list-post-example.9.x.java => list-post-example.10.x.java} (100%) rename rest/keys/using-keys-example/{example.9.x.java => example.10.x.java} (100%) rename rest/making-calls-sip/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/making-calls-sip/example-2/{example-2.9.x.java => example-2.10.x.java} (100%) rename rest/making-calls-sip/example-3/{example-3.9.x.java => example-3.10.x.java} (100%) rename rest/making-calls/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/making-calls/example-2/{example-2.9.x.java => example-2.10.x.java} (100%) rename rest/making-calls/example-3/{example-3.9.x.java => example-3.10.x.java} (100%) rename rest/making-calls/example-4/{example-4.9.x.java => example-4.10.x.java} (100%) rename rest/media/instance-delete-example-1/{instance-delete-example-1.9.x.java => instance-delete-example-1.10.x.java} (100%) rename rest/media/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/member/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/member/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/member/instance-post-example-2/{instance-post-example-2.9.x.java => instance-post-example-2.10.x.java} (100%) rename rest/member/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/message/instance-delete/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/message/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/message/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/message/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/message/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/messages/feedback-confirm/{feedback-confirm.9.x.java => feedback-confirm.10.x.java} (100%) rename rest/messages/feedback-send-sms/{feedback-send-sms.9.x.java => feedback-send-sms.10.x.java} (100%) rename rest/messages/generate-twiml-dynamic-sms/{generate-twiml-dynamic-sms.9.x.java => generate-twiml-dynamic-sms.10.x.java} (100%) rename rest/messages/generate-twiml-empty-response/{generate-twiml-empty-response.9.x.java => generate-twiml-empty-response.10.x.java} (100%) rename rest/messages/generate-twiml-mms/{generate-twiml-mms.9.x.java => generate-twiml-mms.10.x.java} (100%) rename rest/messages/generate-twiml-sms-voice/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/messages/generate-twiml-sms/{generate-twiml-sms.9.x.java => generate-twiml-sms.10.x.java} (100%) rename rest/messages/send-message/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/messages/send-messages-copilot/{send-messages-copilot.9.x.java => send-messages-copilot.10.x.java} (100%) rename rest/messages/send-sms-callback/{send-sms-callback.9.x.java => send-sms-callback.10.x.java} (100%) rename rest/messages/send-sms/{send-sms.9.x.java => send-sms.10.x.java} (100%) rename rest/messages/sms-conversation-tracking/{sms-conversation-tracking.9.x.java => sms-conversation-tracking.10.x.java} (100%) rename rest/notification/instance-delete-examples/{instance-delete-examples.9.x.java => instance-delete-examples.10.x.java} (100%) rename rest/notification/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/notification/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/notification/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/notification/list-get-example-3/{list-get-example-3.9.x.java => list-get-example-3.10.x.java} (100%) rename rest/notification/list-get-example-4/{list-get-example-4.9.x.java => list-get-example-4.10.x.java} (100%) rename rest/outgoing-caller-ids/instance-delete/{instance-delete.9.x.java => instance-delete.10.x.java} (100%) rename rest/outgoing-caller-ids/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/outgoing-caller-ids/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/outgoing-caller-ids/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/outgoing-caller-ids/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/outgoing-caller-ids/list-post-example-1/{list-post-example-1.9.x.java => list-post-example-1.10.x.java} (100%) rename rest/participant/instance-delete-example-1/{instance-delete-example-1.9.x.java => instance-delete-example-1.10.x.java} (100%) rename rest/participant/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/participant/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/participant/instance-post-example-2/{instance-post-example-2.9.x.java => instance-post-example-2.10.x.java} (100%) rename rest/participant/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/participant/list-post-example-1/{list-post-example-1.9.x.java => list-post-example-1.10.x.java} (100%) rename rest/queue/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/queue/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/queue/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/queue/list-post-example-1/{list-post-example-1.9.x.java => list-post-example-1.10.x.java} (100%) rename rest/recording/get-recording-xml/{get-recording-xml.9.x.java => get-recording-xml.10.x.java} (100%) rename rest/recording/instance-delete-examples/{instance-delete-examples.9.x.java => instance-delete-examples.10.x.java} (100%) rename rest/recording/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/recording/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/recording/list-get-example-3/{list-get-example-3.9.x.java => list-get-example-3.10.x.java} (100%) rename rest/recording/list-get-example-4/{list-get-example-4.9.x.java => list-get-example-4.10.x.java} (100%) rename rest/recording/list-get-example-5/{list-get-example-5.9.x.java => list-get-example-5.10.x.java} (100%) rename rest/recording/list-recording-transcriptions/{list-recording-transcriptions-9.x.java => list-recording-transcriptions-10.x.java} (100%) rename rest/sending-messages/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/short-codes/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/short-codes/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/short-codes/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/short-codes/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/short-codes/list-get-example-3/{list-get-example-3.9.x.java => list-get-example-3.10.x.java} (100%) rename rest/sip-in/associate-control-domain/{associate-control-domain.9.x.java => associate-control-domain.10.x.java} (100%) rename rest/sip-in/create-acl-address/{create-acl-address.9.x.java => create-acl-address.10.x.java} (100%) rename rest/sip-in/create-credential-list/{create-credential-list.9.x.java => create-credential-list.10.x.java} (100%) rename rest/sip-in/create-credential/{create-credential.9.x.java => create-credential.10.x.java} (100%) rename rest/sip-in/create-domain/{create-domain.9.x.java => create-domain.10.x.java} (100%) rename rest/sip-in/create-ip-acl/{create-ip-acl.9.x.java => create-ip-acl.10.x.java} (100%) rename rest/sip-in/delete-access-mapping-old/{delete-access-mapping.9.x.java => delete-access-mapping.10.x.java} (100%) rename rest/sip-in/delete-access-mapping/{delete-access-mapping.9.x.java => delete-access-mapping.10.x.java} (100%) rename rest/sip-in/delete-address-instance/{delete-address-instance.9.x.java => delete-address-instance.10.x.java} (100%) rename rest/sip-in/delete-credential-list-instance/{delete-credential-list-instance.9.x.java => delete-credential-list-instance.10.x.java} (100%) rename rest/sip-in/delete-credential-list-mapping-old/{delete-credential-list-mapping.9.x.java => delete-credential-list-mapping.10.x.java} (100%) rename rest/sip-in/delete-credential-list-mapping/{delete-credential-list-mapping.9.x.java => delete-credential-list-mapping.10.x.java} (100%) rename rest/sip-in/delete-credential/{delete-credential.9.x.java => delete-credential.10.x.java} (100%) rename rest/sip-in/delete-domain-instance/{delete-domain-instance.9.x.java => delete-domain-instance.10.x.java} (100%) rename rest/sip-in/delete-ip-acl/{delete-ip-acl.9.x.java => delete-ip-acl.10.x.java} (100%) rename rest/sip-in/get-acl-addresses/{get-acl-addresses.9.x.java => get-acl-addresses.10.x.java} (100%) rename rest/sip-in/get-acl-list/{get-acl-list.9.x.java => get-acl-list.10.x.java} (100%) rename rest/sip-in/get-acl-lists/{get-acl-lists.9.x.java => get-acl-lists.10.x.java} (100%) rename rest/sip-in/get-address-instance/{get-address-instance.9.x.java => get-address-instance.10.x.java} (100%) rename rest/sip-in/get-credential-list-instance/{get-credential-list-instance.9.x.java => get-credential-list-instance.10.x.java} (100%) rename rest/sip-in/get-credential-list-mappings/{get-credential-list-mappings.9.x.java => get-credential-list-mappings.10.x.java} (100%) rename rest/sip-in/get-credential-lists-credentials/{get-credential-lists-credentials.9.x.java => get-credential-lists-credentials.10.x.java} (100%) rename rest/sip-in/get-credential-lists/{get-credential-lists.9.x.java => get-credential-lists.10.x.java} (100%) rename rest/sip-in/get-credential/{get-credential.9.x.java => get-credential.10.x.java} (100%) rename rest/sip-in/get-domain-instance/{get-domain-instance.9.x.java => get-domain-instance.10.x.java} (100%) rename rest/sip-in/get-domain-mappings/{get-domain-mappings.9.x.java => get-domain-mappings.10.x.java} (100%) rename rest/sip-in/get-domains/{get-domains.9.x.java => get-domains.10.x.java} (100%) rename rest/sip-in/get-ip-acls/{get-ip-acls.9.x.java => get-ip-acls.10.x.java} (100%) rename rest/sip-in/get-mappings-instance-old/{get-mappings-instance.9.x.java => get-mappings-instance.10.x.java} (100%) rename rest/sip-in/get-mappings-instance/{get-mappings-instance.9.x.java => get-mappings-instance.10.x.java} (100%) rename rest/sip-in/map-credential-list-domain-old/{map-credential-list-domain.9.x.java => map-credential-list-domain.10.x.java} (100%) rename rest/sip-in/map-credential-list-domain/{map-credential-list-domain.9.x.java => map-credential-list-domain.10.x.java} (100%) rename rest/sip-in/map-list-domain-old/{map-list-domain.9.x.java => map-list-domain.10.x.java} (100%) rename rest/sip-in/map-list-domain/{map-list-domain.9.x.java => map-list-domain.10.x.java} (100%) rename rest/sip-in/update-address-instance/{update-address-instance.9.x.java => update-address-instance.10.x.java} (100%) rename rest/sip-in/update-credential-list-instance/{update-credential-list-instance.9.x.java => update-credential-list-instance.10.x.java} (100%) rename rest/sip-in/update-credential/{update-credential.9.x.java => update-credential.10.x.java} (100%) rename rest/sip-in/update-domain-instance/{update-domain-instance.9.x.java => update-domain-instance.10.x.java} (100%) rename rest/sip-in/update-ip-acl-instance/{update-ip-acl-instance.9.x.java => update-ip-acl-instance.10.x.java} (100%) rename rest/sip/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/sip/example-2/{example-2.9.x.java => example-2.10.x.java} (100%) rename rest/sip/example-3/{example-3.9.x.java => example-3.10.x.java} (100%) rename rest/sms/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/sms/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/subaccounts/creating-subaccounts-example-1/{creating-subaccounts-example-1.9.x.java => creating-subaccounts-example-1.10.x.java} (100%) rename rest/subaccounts/exchanging-numbers-example-1/{exchanging-numbers-example-1.9.x.java => exchanging-numbers-example-1.10.x.java} (100%) rename rest/subaccounts/listing-subaccounts-example-1/{listing-subaccounts-example-1.9.x.java => listing-subaccounts-example-1.10.x.java} (100%) rename rest/subaccounts/listing-subaccounts-example-2/{listing-subaccounts-example-2.9.x.java => listing-subaccounts-example-2.10.x.java} (100%) rename rest/subaccounts/voice-example/{subaccount-call.9.x.java => subaccount-call.10.x.java} (100%) rename rest/taskrouter/activities/instance/delete/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/activities/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/activities/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/activities/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/activities/list/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/events/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/jwts/taskqueue/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/jwts/worker/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/jwts/workspace/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/reservations/call/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/reservations/conference/{conference.9.x.java => conference.10.x.java} (100%) rename rest/taskrouter/reservations/dequeue/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/reservations/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/reservations/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/reservations/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/reservations/redirect/{redirect.9.x.java => redirect.10.x.java} (100%) rename rest/taskrouter/reservations/reject/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/taskqueue/cumulative/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/taskqueue/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/taskqueue/realtime/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/worker/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workers/cumulative/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workers/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workers/realtime/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workflow/cumulative/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workflow/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workflow/realtime/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workspace/cumulative/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workspace/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/statistics/workspace/realtime/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskchannels/instance/delete/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskchannels/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskchannels/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskchannels/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskchannels/list/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskqueues/instance/delete/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskqueues/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskqueues/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskqueues/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/taskqueues/list/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/tasks/instance/delete/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/tasks/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/tasks/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/tasks/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/tasks/list/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/twiml/example1/example/{example.9.x.java => example.10.x.java} (100%) rename rest/taskrouter/twiml/example2/example/{example.9.x.java => example.10.x.java} (100%) rename rest/taskrouter/twiml/example3/example/{example.9.x.java => example.10.x.java} (100%) rename rest/taskrouter/twiml/example4/example/{example.9.x.java => example.10.x.java} (100%) rename rest/taskrouter/worker-channels/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/worker-channels/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/worker-channels/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/worker-reservations/accept/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/worker-reservations/call/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/worker-reservations/dequeue/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/worker-reservations/instance-get-example1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/worker-reservations/list-get-example1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/worker-reservations/reject/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workers/instance/delete/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workers/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workers/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workers/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workers/list/get/example-2/{example-2.9.x.java => example-2.10.x.java} (100%) rename rest/taskrouter/workers/list/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workflows/instance/delete/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workflows/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workflows/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workflows/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workflows/list/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workspaces/instance/delete/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workspaces/instance/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workspaces/instance/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workspaces/list/get/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/taskrouter/workspaces/list/post/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/test-credentials/test-calls-example-1/{test-calls-example-1.9.x.java => test-calls-example-1.10.x.java} (100%) rename rest/test-credentials/test-calls-example-2/{test-calls-example-2.9.x.java => test-calls-example-2.10.x.java} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-1/{test-incoming-phone-numbers-example-1.9.x.java => test-incoming-phone-numbers-example-1.10.x.java} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-2/{test-incoming-phone-numbers-example-2.9.x.java => test-incoming-phone-numbers-example-2.10.x.java} (100%) rename rest/test-credentials/test-post-example-3/{test-post-example-3.9.x.java => test-post-example-3.10.x.java} (100%) rename rest/test-credentials/test-sms-messages-example-1/{test-sms-messages-example-1.9.x.java => test-sms-messages-example-1.10.x.java} (100%) rename rest/test-credentials/test-sms-messages-example-2/{test-sms-messages-example-2.9.x.java => test-sms-messages-example-2.10.x.java} (100%) rename rest/test-credentials/test-sms-messages-example-3/{test-sms-messages-example-3.9.x.java => test-sms-messages-example-3.10.x.java} (100%) rename rest/token/list-post-1-hour-example/{list-post-1-hour-example.9.x.java => list-post-1-hour-example.10.x.java} (100%) rename rest/token/list-post-example/{list-post-example.9.x.java => list-post-example.10.x.java} (100%) rename rest/transcription/instance-delete-examples/{instance-delete-examples.9.x.java => instance-delete-examples.10.x.java} (100%) rename rest/transcription/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/transcription/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/usage-records/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/usage-records/list-get-example-2/{list-get-example-2.9.x.java => list-get-example-2.10.x.java} (100%) rename rest/usage-records/list-get-example-3/{list-get-example-3.9.x.java => list-get-example-3.10.x.java} (100%) rename rest/usage-records/list-get-example-4/{list-get-example-4.9.x.java => list-get-example-4.10.x.java} (100%) rename rest/usage-records/list-get-example-5/{list-get-example-5.9.x.java => list-get-example-5.10.x.java} (100%) rename rest/usage-triggers/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename rest/usage-triggers/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename rest/usage-triggers/list-get-example-1/{list-get-example-1.9.x.java => list-get-example-1.10.x.java} (100%) rename rest/usage-triggers/list-post-example-1/{list-post-example-1.9.x.java => list-post-example-1.10.x.java} (100%) rename rest/voice/generate-twiml-play/{twiml-play.9.x.java => twiml-play.10.x.java} (100%) rename rest/voice/generate-twiml-say/{generate-twiml-say.9.x.java => generate-twiml-say.10.x.java} (100%) rename rest/voice/outbound-calls/example-1/{example-1.9.x.java => example-1.10.x.java} (100%) rename rest/voice/outbound-calls/example-2/{example-2.9.x.java => example-2.10.x.java} (100%) rename rest/voice/outbound-calls/example-3/{example-3.9.x.java => example-3.10.x.java} (100%) rename rest/voice/outbound-calls/example-4/{example-4.9.x.java => example-4.10.x.java} (100%) rename rest/voice/twiml-recording-action/{recording-action.9.x.java => recording-action.10.x.java} (100%) rename security/environment_variables/{environment-variables-1.9.x.java => environment-variables-1.10.x.java} (100%) rename security/signature_validation/{signature_validation.9.x.java => signature_validation.10.x.java} (100%) rename security/signature_validation_tests/{signature_validation_tests.9.x.java => signature_validation_tests.10.x.java} (100%) rename stun-turn/list-post-example/{list-post-example.9.x.java => list-post-example.10.x.java} (100%) rename super-sim/sims/update-account/{update-account.9.x.java => update-account.10.x.java} (100%) rename sync/rest/document-permissions/delete-permission/{delete-permission.9.x.java => delete-permission.10.x.java} (100%) rename sync/rest/document-permissions/list-permissions/{list-permissions.9.x.java => list-permissions.10.x.java} (100%) rename sync/rest/document-permissions/retrieve-permission/{retrieve-permission.9.x.java => retrieve-permission.10.x.java} (100%) rename sync/rest/document-permissions/update-permission/{update-permission.9.x.java => update-permission.10.x.java} (100%) rename sync/rest/documents/create-document/{create-document.9.x.java => create-document.10.x.java} (100%) rename sync/rest/documents/delete-document/{delete-document.9.x.java => delete-document.10.x.java} (100%) rename sync/rest/documents/list-documents/{list-documents.9.x.java => list-documents.10.x.java} (100%) rename sync/rest/documents/retrieve-document/{retrieve-document.9.x.java => retrieve-document.10.x.java} (100%) rename sync/rest/documents/update-document/{update-document.9.x.java => update-document.10.x.java} (100%) rename sync/rest/list-permissions/delete-permission/{delete-permission.9.x.java => delete-permission.10.x.java} (100%) rename sync/rest/list-permissions/list-permissions/{list-permissions.9.x.java => list-permissions.10.x.java} (100%) rename sync/rest/list-permissions/retrieve-permission/{retrieve-permission.9.x.java => retrieve-permission.10.x.java} (100%) rename sync/rest/list-permissions/update-permission/{update-permission.9.x.java => update-permission.10.x.java} (100%) rename sync/rest/lists/create-list-item/{create-list-item.9.x.java => create-list-item.10.x.java} (100%) rename sync/rest/lists/create-list/{create-list.9.x.java => create-list.10.x.java} (100%) rename sync/rest/lists/delete-list-item/{delete-list-item.9.x.java => delete-list-item.10.x.java} (100%) rename sync/rest/lists/delete-list/{delete-list.9.x.java => delete-list.10.x.java} (100%) rename sync/rest/lists/list-lists/{list-lists.9.x.java => list-lists.10.x.java} (100%) rename sync/rest/lists/query-list/{query-list.9.x.java => query-list.10.x.java} (100%) rename sync/rest/lists/retrieve-list-item/{retrieve-list-item.9.x.java => retrieve-list-item.10.x.java} (100%) rename sync/rest/lists/retrieve-list/{retrieve-list.9.x.java => retrieve-list.10.x.java} (100%) rename sync/rest/lists/update-list-item/{update-list-item.9.x.java => update-list-item.10.x.java} (100%) rename sync/rest/lists/update-list/{update-list.9.x.java => update-list.10.x.java} (100%) rename sync/rest/map-permissions/delete-permission/{delete-permission.9.x.java => delete-permission.10.x.java} (100%) rename sync/rest/map-permissions/list-permissions/{list-permissions.9.x.java => list-permissions.10.x.java} (100%) rename sync/rest/map-permissions/retrieve-permission/{retrieve-permission.9.x.java => retrieve-permission.10.x.java} (100%) rename sync/rest/map-permissions/update-permission/{update-permission.9.x.java => update-permission.10.x.java} (100%) rename sync/rest/maps/create-map-item/{create-map-item.9.x.java => create-map-item.10.x.java} (100%) rename sync/rest/maps/create-map/{create-map.9.x.java => create-map.10.x.java} (100%) rename sync/rest/maps/delete-map-item/{delete-map-item.9.x.java => delete-map-item.10.x.java} (100%) rename sync/rest/maps/delete-map/{delete-map.9.x.java => delete-map.10.x.java} (100%) rename sync/rest/maps/list-maps/{list-maps.9.x.java => list-maps.10.x.java} (100%) rename sync/rest/maps/query-map/{query-map.9.x.java => query-map.10.x.java} (100%) rename sync/rest/maps/retrieve-map-item/{retrieve-map-item.9.x.java => retrieve-map-item.10.x.java} (100%) rename sync/rest/maps/retrieve-map/{retrieve-map.9.x.java => retrieve-map.10.x.java} (100%) rename sync/rest/maps/update-map-item/{update-map-item.9.x.java => update-map-item.10.x.java} (100%) rename sync/rest/maps/update-map/{update-map.9.x.java => update-map.10.x.java} (100%) rename sync/rest/services/create-service-webhook/{create-service-webhook.9.x.java => create-service-webhook.10.x.java} (100%) rename sync/rest/services/create-service/{create-service.9.x.java => create-service.10.x.java} (100%) rename sync/rest/services/delete-service/{delete-service.9.x.java => delete-service.10.x.java} (100%) rename sync/rest/services/list-services/{list-services.9.x.java => list-services.10.x.java} (100%) rename sync/rest/services/retrieve-service/{retrieve-service.9.x.java => retrieve-service.10.x.java} (100%) rename sync/rest/services/update-service/{update-service.9.x.java => update-service.10.x.java} (100%) rename sync/rest/streams/create-stream/{create-stream.9.x.java => create-stream.10.x.java} (100%) rename sync/rest/streams/delete-stream/{delete-stream.9.x.java => delete-stream.10.x.java} (100%) rename sync/rest/streams/list-streams/{list-streams.9.x.java => list-streams.10.x.java} (100%) rename sync/rest/streams/publish-stream-message/{publish-stream-message.9.x.java => publish-stream-message.10.x.java} (100%) rename sync/rest/streams/retrieve-stream/{retrieve-stream.9.x.java => retrieve-stream.10.x.java} (100%) rename twiml/message/message/message-1/{message-1.9.x.java => message-1.10.x.java} (100%) rename twiml/message/message/message-2/{message-2.9.x.java => message-2.10.x.java} (100%) rename twiml/message/message/message-3/{message-3.9.x.java => message-3.10.x.java} (100%) rename twiml/message/message/message-4/{message-4.9.x.java => message-4.10.x.java} (100%) rename twiml/message/redirect/redirect-1/{redirect-1.9.x.java => redirect-1.10.x.java} (100%) rename twiml/message/redirect/redirect-2/{redirect-2.9.x.java => redirect-2.10.x.java} (100%) rename twiml/message/your-response/your-response-1/{your-response-1.9.x.java => your-response-1.10.x.java} (100%) rename twiml/message/your-response/your-response-2/{your-response-2.9.x.java => your-response-2.10.x.java} (100%) rename twiml/message/your-response/your-response-3/{your-response-3.9.x.java => your-response-3.10.x.java} (100%) rename twiml/voice/application/dial-application-basic/{dial-application-basic.9.x.java => dial-application-basic.10.x.java} (100%) rename twiml/voice/application/dial-application-copyparentto/{dial-application-copyparentto.9.x.java => dial-application-copyparentto.10.x.java} (100%) rename twiml/voice/application/dial-application-customerid/{dial-application-customerid.9.x.java => dial-application-customerid.10.x.java} (100%) rename twiml/voice/application/dial-application-parameter/{dial-application-parameter.9.x.java => dial-application-parameter.10.x.java} (100%) rename twiml/voice/application/hangup-parameter-scenario/{hangup-parameter-scenario.9.x.java => hangup-parameter-scenario.10.x.java} (100%) rename twiml/voice/application/hangup-parameter/{hangup-parameter.9.x.java => hangup-parameter.10.x.java} (100%) rename twiml/voice/application/reject-parameter/{reject-parameter.9.x.java => reject-parameter.10.x.java} (100%) rename twiml/voice/client/client-1/{client-1.9.x.java => client-1.10.x.java} (100%) rename twiml/voice/client/client-2/{client-2.9.x.java => client-2.10.x.java} (100%) rename twiml/voice/client/client-3/{client-3.9.x.java => client-3.10.x.java} (100%) rename twiml/voice/conference/conference-1/{conference-1.9.x.java => conference-1.10.x.java} (100%) rename twiml/voice/conference/conference-10/{conference-10.9.x.java => conference-10.10.x.java} (100%) rename twiml/voice/conference/conference-2/{conference-2.9.x.java => conference-2.10.x.java} (100%) rename twiml/voice/conference/conference-3/{conference-3.9.x.java => conference-3.10.x.java} (100%) rename twiml/voice/conference/conference-4/{conference-4.9.x.java => conference-4.10.x.java} (100%) rename twiml/voice/conference/conference-5/{conference-5.9.x.java => conference-5.10.x.java} (100%) rename twiml/voice/conference/conference-6/{conference-6.9.x.java => conference-6.10.x.java} (100%) rename twiml/voice/conference/conference-7/{conference-7.9.x.java => conference-7.10.x.java} (100%) rename twiml/voice/conference/conference-8/{conference-8.9.x.java => conference-8.10.x.java} (100%) rename twiml/voice/conference/conference-9/{conference-9.9.x.java => conference-9.10.x.java} (100%) rename twiml/voice/connect/autopilot/{autopilot.9.x.java => autopilot.10.x.java} (100%) rename twiml/voice/connect/connect-1/{connect-1.9.x.java => connect-1.10.x.java} (100%) rename twiml/voice/connect/connect-2/{connect-2.9.x.java => connect-2.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-action-method/{conversation-action-method.9.x.java => conversation-action-method.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-action-statuscallback/{conversation-action-statuscallback.9.x.java => conversation-action-statuscallback.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-action/{conversation-action.9.x.java => conversation-action.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-basic/{conversation-basic.9.x.java => conversation-basic.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/{conversation-inboundautocreation-routingassignmenttimeout.9.x.java => conversation-inboundautocreation-routingassignmenttimeout.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-inboundautocreation/{conversation-inboundautocreation.9.x.java => conversation-inboundautocreation.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-inboundtimeout/{conversation-inboundtimeout.9.x.java => conversation-inboundtimeout.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/{conversation-record-recordingstatuscallback-and-event.9.x.java => conversation-record-recordingstatuscallback-and-event.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/{conversation-record-recordingstatuscallback-and-method.9.x.java => conversation-record-recordingstatuscallback-and-method.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/{conversation-record-recordingstatuscallback.9.x.java => conversation-record-recordingstatuscallback.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-record-trim/{conversation-record-trim.9.x.java => conversation-record-trim.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-record/{conversation-record.9.x.java => conversation-record.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/{conversation-statuscallback-statuscallbackevent.9.x.java => conversation-statuscallback-statuscallbackevent.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/{conversation-statuscallback-statuscallbackmethod.9.x.java => conversation-statuscallback-statuscallbackmethod.10.x.java} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback/{conversation-statuscallback.9.x.java => conversation-statuscallback.10.x.java} (100%) rename twiml/voice/connect/stream/{stream.9.x.java => stream.10.x.java} (100%) rename twiml/voice/connect/virtualagent-1/{virtualagent-1.9.x.java => virtualagent-1.10.x.java} (100%) rename twiml/voice/connect/virtualagent-2/{virtualagent-2.9.x.java => virtualagent-2.10.x.java} (100%) rename twiml/voice/connect/virtualagent-3/{virtualagent-3.9.x.java => virtualagent-3.10.x.java} (100%) rename twiml/voice/connect/virtualagent-4/{virtualagent-4.9.x.java => virtualagent-4.10.x.java} (100%) rename twiml/voice/connect/virtualagent-5/{virtualagent-5.9.x.java => virtualagent-5.10.x.java} (100%) rename twiml/voice/connect/virtualagent-6/{virtualagent-6.9.x.java => virtualagent-6.10.x.java} (100%) rename twiml/voice/dial/dial-1/{dial-1.9.x.java => dial-1.10.x.java} (100%) rename twiml/voice/dial/dial-2/{dial-2.9.x.java => dial-2.10.x.java} (100%) rename twiml/voice/dial/dial-3/{dial-3.9.x.java => dial-3.10.x.java} (100%) rename twiml/voice/dial/dial-4/{dial-4.9.x.java => dial-4.10.x.java} (100%) rename twiml/voice/dial/dial-5/{dial-5.9.x.java => dial-5.10.x.java} (100%) rename twiml/voice/dial/dial-6/{dial-6.9.x.java => dial-6.10.x.java} (100%) rename twiml/voice/dial/dial-7/{dial-7.9.x.java => dial-7.10.x.java} (100%) rename twiml/voice/dial/dial-8/{dial-8.9.x.java => dial-8.10.x.java} (100%) rename twiml/voice/dial/dial-9/{dial-9.9.x.java => dial-9.10.x.java} (100%) rename twiml/voice/enqueue/enqueue-1/{enqueue-1.9.x.java => enqueue-1.10.x.java} (100%) rename twiml/voice/enqueue/enqueue-2/{enqueue-2.9.x.java => enqueue-2.10.x.java} (100%) rename twiml/voice/gather/gather-1/{gather-1.9.x.java => gather-1.10.x.java} (100%) rename twiml/voice/gather/gather-2/{gather-2.9.x.java => gather-2.10.x.java} (100%) rename twiml/voice/gather/gather-3/{gather-3.9.x.java => gather-3.10.x.java} (100%) rename twiml/voice/gather/gather-4/{gather-4.9.x.java => gather-4.10.x.java} (100%) rename twiml/voice/gather/gather-5/{gather-5.9.x.java => gather-5.10.x.java} (100%) rename twiml/voice/hangup/hangup-1/{hangup-1.9.x.java => hangup-1.10.x.java} (100%) rename twiml/voice/leave/leave-1/{leave-1.9.x.java => leave-1.10.x.java} (100%) rename twiml/voice/leave/leave-2/{leave-2.9.x.java => leave-2.10.x.java} (100%) rename twiml/voice/leave/leave-3/{leave-3.9.x.java => leave-3.10.x.java} (100%) rename twiml/voice/number/number-1/{number-1.9.x.java => number-1.10.x.java} (100%) rename twiml/voice/number/number-2/{number-2.9.x.java => number-2.10.x.java} (100%) rename twiml/voice/number/number-3/{number-3.9.x.java => number-3.10.x.java} (100%) rename twiml/voice/number/number-4/{number-4.9.x.java => number-4.10.x.java} (100%) rename twiml/voice/number/number-5/{number-5.9.x.java => number-5.10.x.java} (100%) rename twiml/voice/parameter/parameter-1/{parameter-1.9.x.java => parameter-1.10.x.java} (100%) rename twiml/voice/pause/pause-1/{pause-1.9.x.java => pause-1.10.x.java} (100%) rename twiml/voice/pause/pause-2/{pause-2.9.x.java => pause-2.10.x.java} (100%) rename twiml/voice/pay/pay-1/{pay-1.9.x.java => pay-1.10.x.java} (100%) rename twiml/voice/pay/pay-2/{pay-2.9.x.java => pay-2.10.x.java} (100%) rename twiml/voice/pay/pay-3/{pay-3.9.x.java => pay-3.10.x.java} (100%) rename twiml/voice/pay/pay-4/{pay-4.9.x.java => pay-4.10.x.java} (100%) rename twiml/voice/pay/pay-5/{pay-5.9.x.java => pay-5.10.x.java} (100%) rename twiml/voice/pay/pay-6/{pay-6.9.x.java => pay-6.10.x.java} (100%) rename twiml/voice/pay/pay-7/{pay-7.9.x.java => pay-7.10.x.java} (100%) rename twiml/voice/pay/pay-8/{pay-8.9.x.java => pay-8.10.x.java} (100%) rename twiml/voice/pay/pay-9/{pay-9.9.x.java => pay-9.10.x.java} (100%) rename twiml/voice/pay/pay-charge-connector/{pay-charge-connector.9.x.java => pay-charge-connector.10.x.java} (100%) rename twiml/voice/pay/pay-parameter/{pay-parameter.9.x.java => pay-parameter.10.x.java} (100%) rename twiml/voice/pay/pay-tokenize-connector/{pay-tokenize-connector.9.x.java => pay-tokenize-connector.10.x.java} (100%) rename twiml/voice/pay/pay-tokenize/{pay-tokenize.9.x.java => pay-tokenize.10.x.java} (100%) rename twiml/voice/pay/prompt/full-example-ach/{full-example-ach.9.x.java => full-example-ach.10.x.java} (100%) rename twiml/voice/pay/prompt/full-example-credit-card/{full-example-credit-card.9.x.java => full-example-credit-card.10.x.java} (100%) rename twiml/voice/pay/prompt/requireMatchingInputs/basic/{prompt-requireMatchingInputs-basic.9.x.java => prompt-requireMatchingInputs-basic.10.x.java} (100%) rename twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/{prompt-requireMatchingInputs-errorType.9.x.java => prompt-requireMatchingInputs-errorType.10.x.java} (100%) rename twiml/voice/play/play-1/{play-1.9.x.java => play-1.10.x.java} (100%) rename twiml/voice/play/play-2/{play-2.9.x.java => play-2.10.x.java} (100%) rename twiml/voice/play/play-3/{play-3.9.x.java => play-3.10.x.java} (100%) rename twiml/voice/queue/queue-1/{queue-1.9.x.java => queue-1.10.x.java} (100%) rename twiml/voice/queue/queue-2/{queue-2.9.x.java => queue-2.10.x.java} (100%) rename twiml/voice/record/record-1/{record-1.9.x.java => record-1.10.x.java} (100%) rename twiml/voice/record/record-2/{record-2.9.x.java => record-2.10.x.java} (100%) rename twiml/voice/record/record-3/{record-3.9.x.java => record-3.10.x.java} (100%) rename twiml/voice/record/record-4/{record-4.9.x.java => record-4.10.x.java} (100%) rename twiml/voice/redirect/redirect-1/{redirect-1.9.x.java => redirect-1.10.x.java} (100%) rename twiml/voice/redirect/redirect-2/{redirect-2.9.x.java => redirect-2.10.x.java} (100%) rename twiml/voice/redirect/redirect-3/{redirect-3.9.x.java => redirect-3.10.x.java} (100%) rename twiml/voice/refer/refer-1/{refer-1.9.x.java => refer-1.10.x.java} (100%) rename twiml/voice/refer/refer-2/{refer-2.9.x.java => refer-2.10.x.java} (100%) rename twiml/voice/refer/refer-3/{refer-3.9.x.java => refer-3.10.x.java} (100%) rename twiml/voice/refer/refer-4/{refer-4.9.x.java => refer-4.10.x.java} (100%) rename twiml/voice/reject/reject-1/{reject-1.9.x.java => reject-1.10.x.java} (100%) rename twiml/voice/reject/reject-2/{reject-2.9.x.java => reject-2.10.x.java} (100%) rename twiml/voice/say/say-basic-usage/{say-basic-usage.9.x.java => say-basic-usage.10.x.java} (100%) rename twiml/voice/say/say-language/{say-language.9.x.java => say-language.10.x.java} (100%) rename twiml/voice/say/say-loop/{say-loop.9.x.java => say-loop.10.x.java} (100%) rename twiml/voice/say/say-voice/{say-voice.9.x.java => say-voice.10.x.java} (100%) rename twiml/voice/say/ssml/{ssml.9.x.java => ssml.10.x.java} (100%) rename twiml/voice/sim/sim-1/{sim-1.9.x.java => sim-1.10.x.java} (100%) rename twiml/voice/sim/sim-2/{sim-2.9.x.java => sim-2.10.x.java} (100%) rename twiml/voice/sip/sip-1/{sip-1.9.x.java => sip-1.10.x.java} (100%) rename twiml/voice/sip/sip-10/{sip-10.9.x.java => sip-10.10.x.java} (100%) rename twiml/voice/sip/sip-11/{sip-11.9.x.java => sip-11.10.x.java} (100%) rename twiml/voice/sip/sip-12/{sip-12.9.x.java => sip-12.10.x.java} (100%) rename twiml/voice/sip/sip-2/{sip-2.9.x.java => sip-2.10.x.java} (100%) rename twiml/voice/sip/sip-3/{sip-3.9.x.java => sip-3.10.x.java} (100%) rename twiml/voice/sip/sip-4/{sip-4.9.x.java => sip-4.10.x.java} (100%) rename twiml/voice/sip/sip-5/{sip-5.9.x.java => sip-5.10.x.java} (100%) rename twiml/voice/sip/sip-6/{sip-6.9.x.java => sip-6.10.x.java} (100%) rename twiml/voice/sip/sip-7/{sip-7.9.x.java => sip-7.10.x.java} (100%) rename twiml/voice/sip/sip-8/{sip-8.9.x.java => sip-8.10.x.java} (100%) rename twiml/voice/sip/sip-9/{sip-9.9.x.java => sip-9.10.x.java} (100%) rename twiml/voice/siprec/siprec-1/{siprec-1.9.x.java => siprec-1.10.x.java} (100%) rename twiml/voice/sms/sms-1/{sms-1.9.x.java => sms-1.10.x.java} (100%) rename twiml/voice/sms/sms-2/{sms-2.9.x.java => sms-2.10.x.java} (100%) rename twiml/voice/sms/sms-3/{sms-3.9.x.java => sms-3.10.x.java} (100%) rename twiml/voice/sms/sms-4/{sms-4.9.x.java => sms-4.10.x.java} (100%) rename twiml/voice/stream/stream-1/{stream-1.9.x.java => stream-1.10.x.java} (100%) rename twiml/voice/stream/stream-2/{stream-2.9.x.java => stream-2.10.x.java} (100%) rename twiml/voice/your-response/your-response-1/{your-response-1.9.x.java => your-response-1.10.x.java} (100%) rename twiml/voice/your-response/your-response-2/{your-response-2.9.x.java => your-response-2.10.x.java} (100%) rename verify/verifications/approve-verification/{approve-verification.9.x.java => approve-verification.10.x.java} (100%) rename video/rest/compositions/get-composition-media-file/{get-composition-media-file.9.x.java => get-composition-media-file.10.x.java} (100%) rename video/rest/rooms/participants/unsubscribe-media-transcriber/{update-customer-rules.9.x.java => update-customer-rules.10.x.java} (100%) rename video/rest/rooms/participants/update-subscribe-rules-static/{update-customer-rules.9.x.java => update-customer-rules.10.x.java} (100%) rename video/rest/rooms/recording-rules-audio-all/{recording-rules-audio-all.9.x.java => recording-rules-audio-all.10.x.java} (100%) rename video/rest/rooms/recording-rules-start-all/{recording-rules-start-all.9.x.java => recording-rules-start-all.10.x.java} (100%) rename video/rest/rooms/recording-rules-stop-all/{recording-rules-stop-all.9.x.java => recording-rules-stop-all.10.x.java} (100%) rename voice/queueing/agent/{queue-agent.9.x.java => queue-agent.10.x.java} (100%) rename voice/queueing/caller/{queue-caller.9.x.java => queue-caller.10.x.java} (100%) rename voice/queueing/redirect/{queue-redirect.9.x.java => queue-redirect.10.x.java} (100%) rename voice/specify-edge/{specify-edge.9.x.java => specify-edge.10.x.java} (100%) rename wireless/commands/create-binary-example-1/{create-binary-example-1.9.x.java => create-binary-example-1.10.x.java} (100%) rename wireless/commands/create-text-example-1/{create-text-example-1.9.x.java => create-text-example-1.10.x.java} (100%) rename wireless/commands/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename wireless/commands/list-example-1/{list-example-1.9.x.java => list-example-1.10.x.java} (100%) rename wireless/rateplans/create-example-1/{create-example-1.9.x.java => create-example-1.10.x.java} (100%) rename wireless/rateplans/instance-delete-example-1/{delete-example-1.9.x.java => delete-example-1.10.x.java} (100%) rename wireless/rateplans/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename wireless/rateplans/instance-get-example-2/{instance-get-example-2.9.x.java => instance-get-example-2.10.x.java} (100%) rename wireless/rateplans/list-example-1/{list-example-1.9.x.java => list-example-1.10.x.java} (100%) rename wireless/sims-data-session/list-example-1/{list-example-1.9.x.java => list-example-1.10.x.java} (100%) rename wireless/sims-usage-record/list-example-1/{list-example-1.9.x.java => list-example-1.10.x.java} (100%) rename wireless/sims/instance-get-example-1/{instance-get-example-1.9.x.java => instance-get-example-1.10.x.java} (100%) rename wireless/sims/instance-get-example-2/{instance-get-example-2.9.x.java => instance-get-example-2.10.x.java} (100%) rename wireless/sims/instance-post-example-1/{instance-post-example-1.9.x.java => instance-post-example-1.10.x.java} (100%) rename wireless/sims/list-example-1/{list-example-1.9.x.java => list-example-1.10.x.java} (100%) diff --git a/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.9.x.java b/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.10.x.java similarity index 100% rename from add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.9.x.java rename to add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.10.x.java diff --git a/api-auth/api-auth.9.x.java b/api-auth/api-auth.10.x.java similarity index 100% rename from api-auth/api-auth.9.x.java rename to api-auth/api-auth.10.x.java diff --git a/client/capability-token-2way/capability-token.9.x.java b/client/capability-token-2way/capability-token.10.x.java similarity index 100% rename from client/capability-token-2way/capability-token.9.x.java rename to client/capability-token-2way/capability-token.10.x.java diff --git a/client/capability-token-expires/capability-token-expires.9.x.java b/client/capability-token-expires/capability-token-expires.10.x.java similarity index 100% rename from client/capability-token-expires/capability-token-expires.9.x.java rename to client/capability-token-expires/capability-token-expires.10.x.java diff --git a/client/capability-token-incoming/capability-token.9.x.java b/client/capability-token-incoming/capability-token.10.x.java similarity index 100% rename from client/capability-token-incoming/capability-token.9.x.java rename to client/capability-token-incoming/capability-token.10.x.java diff --git a/client/capability-token-outgoing/capability-token.9.x.java b/client/capability-token-outgoing/capability-token.10.x.java similarity index 100% rename from client/capability-token-outgoing/capability-token.9.x.java rename to client/capability-token-outgoing/capability-token.10.x.java diff --git a/client/capability-token/capability-token.9.x.java b/client/capability-token/capability-token.10.x.java similarity index 100% rename from client/capability-token/capability-token.9.x.java rename to client/capability-token/capability-token.10.x.java diff --git a/client/response-twiml-client/response-twiml-client.9.x.java b/client/response-twiml-client/response-twiml-client.10.x.java similarity index 100% rename from client/response-twiml-client/response-twiml-client.9.x.java rename to client/response-twiml-client/response-twiml-client.10.x.java diff --git a/client/response-twiml-dial/response-twiml-dial.9.x.java b/client/response-twiml-dial/response-twiml-dial.10.x.java similarity index 100% rename from client/response-twiml-dial/response-twiml-dial.9.x.java rename to client/response-twiml-dial/response-twiml-dial.10.x.java diff --git a/client/response-twiml/response-twiml.9.x.java b/client/response-twiml/response-twiml.10.x.java similarity index 100% rename from client/response-twiml/response-twiml.9.x.java rename to client/response-twiml/response-twiml.10.x.java diff --git a/deployed-devices/quickstarts/sync-boardled/create-document/create-document.9.x.java b/deployed-devices/quickstarts/sync-boardled/create-document/create-document.10.x.java similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/create-document/create-document.9.x.java rename to deployed-devices/quickstarts/sync-boardled/create-document/create-document.10.x.java diff --git a/deployed-devices/quickstarts/sync-boardled/update-document/update-document.9.x.java b/deployed-devices/quickstarts/sync-boardled/update-document/update-document.10.x.java similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/update-document/update-document.9.x.java rename to deployed-devices/quickstarts/sync-boardled/update-document/update-document.10.x.java diff --git a/deployed-devices/rest/certificates/create-certificate/create-certificate.9.x.java b/deployed-devices/rest/certificates/create-certificate/create-certificate.10.x.java similarity index 100% rename from deployed-devices/rest/certificates/create-certificate/create-certificate.9.x.java rename to deployed-devices/rest/certificates/create-certificate/create-certificate.10.x.java diff --git a/deployed-devices/rest/certificates/delete-certificate/delete-certificate.9.x.java b/deployed-devices/rest/certificates/delete-certificate/delete-certificate.10.x.java similarity index 100% rename from deployed-devices/rest/certificates/delete-certificate/delete-certificate.9.x.java rename to deployed-devices/rest/certificates/delete-certificate/delete-certificate.10.x.java diff --git a/deployed-devices/rest/certificates/list-certificates/list-certificates.9.x.java b/deployed-devices/rest/certificates/list-certificates/list-certificates.10.x.java similarity index 100% rename from deployed-devices/rest/certificates/list-certificates/list-certificates.9.x.java rename to deployed-devices/rest/certificates/list-certificates/list-certificates.10.x.java diff --git a/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.9.x.java b/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.10.x.java similarity index 100% rename from deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.9.x.java rename to deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.10.x.java diff --git a/deployed-devices/rest/certificates/update-certificate/update-certificate.9.x.java b/deployed-devices/rest/certificates/update-certificate/update-certificate.10.x.java similarity index 100% rename from deployed-devices/rest/certificates/update-certificate/update-certificate.9.x.java rename to deployed-devices/rest/certificates/update-certificate/update-certificate.10.x.java diff --git a/deployed-devices/rest/deployments/create-deployment/create-deployment.9.x.java b/deployed-devices/rest/deployments/create-deployment/create-deployment.10.x.java similarity index 100% rename from deployed-devices/rest/deployments/create-deployment/create-deployment.9.x.java rename to deployed-devices/rest/deployments/create-deployment/create-deployment.10.x.java diff --git a/deployed-devices/rest/deployments/delete-deployment/delete-deployment.9.x.java b/deployed-devices/rest/deployments/delete-deployment/delete-deployment.10.x.java similarity index 100% rename from deployed-devices/rest/deployments/delete-deployment/delete-deployment.9.x.java rename to deployed-devices/rest/deployments/delete-deployment/delete-deployment.10.x.java diff --git a/deployed-devices/rest/deployments/list-deployments/list-deployments.9.x.java b/deployed-devices/rest/deployments/list-deployments/list-deployments.10.x.java similarity index 100% rename from deployed-devices/rest/deployments/list-deployments/list-deployments.9.x.java rename to deployed-devices/rest/deployments/list-deployments/list-deployments.10.x.java diff --git a/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.9.x.java b/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.10.x.java similarity index 100% rename from deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.9.x.java rename to deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.10.x.java diff --git a/deployed-devices/rest/deployments/update-deployment/update-deployment.9.x.java b/deployed-devices/rest/deployments/update-deployment/update-deployment.10.x.java similarity index 100% rename from deployed-devices/rest/deployments/update-deployment/update-deployment.9.x.java rename to deployed-devices/rest/deployments/update-deployment/update-deployment.10.x.java diff --git a/deployed-devices/rest/devices/create-device/create-device.9.x.java b/deployed-devices/rest/devices/create-device/create-device.10.x.java similarity index 100% rename from deployed-devices/rest/devices/create-device/create-device.9.x.java rename to deployed-devices/rest/devices/create-device/create-device.10.x.java diff --git a/deployed-devices/rest/devices/delete-device/delete-device.9.x.java b/deployed-devices/rest/devices/delete-device/delete-device.10.x.java similarity index 100% rename from deployed-devices/rest/devices/delete-device/delete-device.9.x.java rename to deployed-devices/rest/devices/delete-device/delete-device.10.x.java diff --git a/deployed-devices/rest/devices/list-devices/list-devices.9.x.java b/deployed-devices/rest/devices/list-devices/list-devices.10.x.java similarity index 100% rename from deployed-devices/rest/devices/list-devices/list-devices.9.x.java rename to deployed-devices/rest/devices/list-devices/list-devices.10.x.java diff --git a/deployed-devices/rest/devices/retrieve-device/retrieve-device.9.x.java b/deployed-devices/rest/devices/retrieve-device/retrieve-device.10.x.java similarity index 100% rename from deployed-devices/rest/devices/retrieve-device/retrieve-device.9.x.java rename to deployed-devices/rest/devices/retrieve-device/retrieve-device.10.x.java diff --git a/deployed-devices/rest/devices/update-device/update-device.9.x.java b/deployed-devices/rest/devices/update-device/update-device.10.x.java similarity index 100% rename from deployed-devices/rest/devices/update-device/update-device.9.x.java rename to deployed-devices/rest/devices/update-device/update-device.10.x.java diff --git a/deployed-devices/rest/fleets/create-fleet/create-fleet.9.x.java b/deployed-devices/rest/fleets/create-fleet/create-fleet.10.x.java similarity index 100% rename from deployed-devices/rest/fleets/create-fleet/create-fleet.9.x.java rename to deployed-devices/rest/fleets/create-fleet/create-fleet.10.x.java diff --git a/deployed-devices/rest/fleets/delete-fleet/delete-fleet.9.x.java b/deployed-devices/rest/fleets/delete-fleet/delete-fleet.10.x.java similarity index 100% rename from deployed-devices/rest/fleets/delete-fleet/delete-fleet.9.x.java rename to deployed-devices/rest/fleets/delete-fleet/delete-fleet.10.x.java diff --git a/deployed-devices/rest/fleets/list-fleets/list-fleets.9.x.java b/deployed-devices/rest/fleets/list-fleets/list-fleets.10.x.java similarity index 100% rename from deployed-devices/rest/fleets/list-fleets/list-fleets.9.x.java rename to deployed-devices/rest/fleets/list-fleets/list-fleets.10.x.java diff --git a/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.9.x.java b/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.10.x.java similarity index 100% rename from deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.9.x.java rename to deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.10.x.java diff --git a/deployed-devices/rest/fleets/update-fleet/update-fleet.9.x.java b/deployed-devices/rest/fleets/update-fleet/update-fleet.10.x.java similarity index 100% rename from deployed-devices/rest/fleets/update-fleet/update-fleet.9.x.java rename to deployed-devices/rest/fleets/update-fleet/update-fleet.10.x.java diff --git a/deployed-devices/rest/keys/create-key/create-key.9.x.java b/deployed-devices/rest/keys/create-key/create-key.10.x.java similarity index 100% rename from deployed-devices/rest/keys/create-key/create-key.9.x.java rename to deployed-devices/rest/keys/create-key/create-key.10.x.java diff --git a/deployed-devices/rest/keys/delete-key/delete-key.9.x.java b/deployed-devices/rest/keys/delete-key/delete-key.10.x.java similarity index 100% rename from deployed-devices/rest/keys/delete-key/delete-key.9.x.java rename to deployed-devices/rest/keys/delete-key/delete-key.10.x.java diff --git a/deployed-devices/rest/keys/list-keys/list-key.9.x.java b/deployed-devices/rest/keys/list-keys/list-key.10.x.java similarity index 100% rename from deployed-devices/rest/keys/list-keys/list-key.9.x.java rename to deployed-devices/rest/keys/list-keys/list-key.10.x.java diff --git a/deployed-devices/rest/keys/retrieve-key/retrieve-key.9.x.java b/deployed-devices/rest/keys/retrieve-key/retrieve-key.10.x.java similarity index 100% rename from deployed-devices/rest/keys/retrieve-key/retrieve-key.9.x.java rename to deployed-devices/rest/keys/retrieve-key/retrieve-key.10.x.java diff --git a/deployed-devices/rest/keys/update-key/update-key.9.x.java b/deployed-devices/rest/keys/update-key/update-key.10.x.java similarity index 100% rename from deployed-devices/rest/keys/update-key/update-key.9.x.java rename to deployed-devices/rest/keys/update-key/update-key.10.x.java diff --git a/fax/basic-receive/basic-receive.9.x.java b/fax/basic-receive/basic-receive.10.x.java similarity index 100% rename from fax/basic-receive/basic-receive.9.x.java rename to fax/basic-receive/basic-receive.10.x.java diff --git a/fax/basic-send/basic-send.9.x.java b/fax/basic-send/basic-send.10.x.java similarity index 100% rename from fax/basic-send/basic-send.9.x.java rename to fax/basic-send/basic-send.10.x.java diff --git a/fax/instance-get-example/instance-get-example.9.x.java b/fax/instance-get-example/instance-get-example.10.x.java similarity index 100% rename from fax/instance-get-example/instance-get-example.9.x.java rename to fax/instance-get-example/instance-get-example.10.x.java diff --git a/fax/instance-post-example/instance-post-example.9.x.java b/fax/instance-post-example/instance-post-example.10.x.java similarity index 100% rename from fax/instance-post-example/instance-post-example.9.x.java rename to fax/instance-post-example/instance-post-example.10.x.java diff --git a/fax/list-get-example/list-get-example.9.x.java b/fax/list-get-example/list-get-example.10.x.java similarity index 100% rename from fax/list-get-example/list-get-example.9.x.java rename to fax/list-get-example/list-get-example.10.x.java diff --git a/fax/sip-send/example-1/example-1.9.x.java b/fax/sip-send/example-1/example-1.10.x.java similarity index 100% rename from fax/sip-send/example-1/example-1.9.x.java rename to fax/sip-send/example-1/example-1.10.x.java diff --git a/fax/sip-send/example-2/example-2.9.x.java b/fax/sip-send/example-2/example-2.10.x.java similarity index 100% rename from fax/sip-send/example-2/example-2.9.x.java rename to fax/sip-send/example-2/example-2.10.x.java diff --git a/fax/sip-send/example-3/example-3.9.x.java b/fax/sip-send/example-3/example-3.10.x.java similarity index 100% rename from fax/sip-send/example-3/example-3.9.x.java rename to fax/sip-send/example-3/example-3.10.x.java diff --git a/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.9.x.java b/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.10.x.java similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.9.x.java rename to guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.10.x.java diff --git a/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.9.x.java b/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.10.x.java similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.9.x.java rename to guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.10.x.java diff --git a/ip-messaging/push-config/new-message-push-config/new-message-push-config.9.x.java b/ip-messaging/push-config/new-message-push-config/new-message-push-config.10.x.java similarity index 100% rename from ip-messaging/push-config/new-message-push-config/new-message-push-config.9.x.java rename to ip-messaging/push-config/new-message-push-config/new-message-push-config.10.x.java diff --git a/ip-messaging/reachability-indicator/disable-indicator/disable-indicator.9.x.java b/ip-messaging/reachability-indicator/disable-indicator/disable-indicator.10.x.java similarity index 100% rename from ip-messaging/reachability-indicator/disable-indicator/disable-indicator.9.x.java rename to ip-messaging/reachability-indicator/disable-indicator/disable-indicator.10.x.java diff --git a/ip-messaging/reachability-indicator/enable-indicator/enable-indicator.9.x.java b/ip-messaging/reachability-indicator/enable-indicator/enable-indicator.10.x.java similarity index 100% rename from ip-messaging/reachability-indicator/enable-indicator/enable-indicator.9.x.java rename to ip-messaging/reachability-indicator/enable-indicator/enable-indicator.10.x.java diff --git a/ip-messaging/rest/channels/create-channels/create-channels.9.x.java b/ip-messaging/rest/channels/create-channels/create-channels.10.x.java similarity index 100% rename from ip-messaging/rest/channels/create-channels/create-channels.9.x.java rename to ip-messaging/rest/channels/create-channels/create-channels.10.x.java diff --git a/ip-messaging/rest/channels/delete-channels/delete-channels.9.x.java b/ip-messaging/rest/channels/delete-channels/delete-channels.10.x.java similarity index 100% rename from ip-messaging/rest/channels/delete-channels/delete-channels.9.x.java rename to ip-messaging/rest/channels/delete-channels/delete-channels.10.x.java diff --git a/ip-messaging/rest/channels/list-channels/list-channels.9.x.java b/ip-messaging/rest/channels/list-channels/list-channels.10.x.java similarity index 100% rename from ip-messaging/rest/channels/list-channels/list-channels.9.x.java rename to ip-messaging/rest/channels/list-channels/list-channels.10.x.java diff --git a/ip-messaging/rest/channels/retrieve-channels/retrieve-channels.9.x.java b/ip-messaging/rest/channels/retrieve-channels/retrieve-channels.10.x.java similarity index 100% rename from ip-messaging/rest/channels/retrieve-channels/retrieve-channels.9.x.java rename to ip-messaging/rest/channels/retrieve-channels/retrieve-channels.10.x.java diff --git a/ip-messaging/rest/channels/update-channels/update-channels.9.x.java b/ip-messaging/rest/channels/update-channels/update-channels.10.x.java similarity index 100% rename from ip-messaging/rest/channels/update-channels/update-channels.9.x.java rename to ip-messaging/rest/channels/update-channels/update-channels.10.x.java diff --git a/ip-messaging/rest/credentials/create-credentials/create-credentials.9.x.java b/ip-messaging/rest/credentials/create-credentials/create-credentials.10.x.java similarity index 100% rename from ip-messaging/rest/credentials/create-credentials/create-credentials.9.x.java rename to ip-messaging/rest/credentials/create-credentials/create-credentials.10.x.java diff --git a/ip-messaging/rest/credentials/delete-credentials/delete-credentials.9.x.java b/ip-messaging/rest/credentials/delete-credentials/delete-credentials.10.x.java similarity index 100% rename from ip-messaging/rest/credentials/delete-credentials/delete-credentials.9.x.java rename to ip-messaging/rest/credentials/delete-credentials/delete-credentials.10.x.java diff --git a/ip-messaging/rest/credentials/list-credentials/list-credentials.9.x.java b/ip-messaging/rest/credentials/list-credentials/list-credentials.10.x.java similarity index 100% rename from ip-messaging/rest/credentials/list-credentials/list-credentials.9.x.java rename to ip-messaging/rest/credentials/list-credentials/list-credentials.10.x.java diff --git a/ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.9.x.java b/ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.10.x.java similarity index 100% rename from ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.9.x.java rename to ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.10.x.java diff --git a/ip-messaging/rest/credentials/update-credentials/update-credentials.9.x.java b/ip-messaging/rest/credentials/update-credentials/update-credentials.10.x.java similarity index 100% rename from ip-messaging/rest/credentials/update-credentials/update-credentials.9.x.java rename to ip-messaging/rest/credentials/update-credentials/update-credentials.10.x.java diff --git a/ip-messaging/rest/members/add-member/add-member.9.x.java b/ip-messaging/rest/members/add-member/add-member.10.x.java similarity index 100% rename from ip-messaging/rest/members/add-member/add-member.9.x.java rename to ip-messaging/rest/members/add-member/add-member.10.x.java diff --git a/ip-messaging/rest/members/list-members/list-members.9.x.java b/ip-messaging/rest/members/list-members/list-members.10.x.java similarity index 100% rename from ip-messaging/rest/members/list-members/list-members.9.x.java rename to ip-messaging/rest/members/list-members/list-members.10.x.java diff --git a/ip-messaging/rest/members/remove-member/remove-member.9.x.java b/ip-messaging/rest/members/remove-member/remove-member.10.x.java similarity index 100% rename from ip-messaging/rest/members/remove-member/remove-member.9.x.java rename to ip-messaging/rest/members/remove-member/remove-member.10.x.java diff --git a/ip-messaging/rest/members/retrieve-member/retrieve-member.9.x.java b/ip-messaging/rest/members/retrieve-member/retrieve-member.10.x.java similarity index 100% rename from ip-messaging/rest/members/retrieve-member/retrieve-member.9.x.java rename to ip-messaging/rest/members/retrieve-member/retrieve-member.10.x.java diff --git a/ip-messaging/rest/messages/delete-messages/delete-messages.9.x.java b/ip-messaging/rest/messages/delete-messages/delete-messages.10.x.java similarity index 100% rename from ip-messaging/rest/messages/delete-messages/delete-messages.9.x.java rename to ip-messaging/rest/messages/delete-messages/delete-messages.10.x.java diff --git a/ip-messaging/rest/messages/list-messages/list-messages.9.x.java b/ip-messaging/rest/messages/list-messages/list-messages.10.x.java similarity index 100% rename from ip-messaging/rest/messages/list-messages/list-messages.9.x.java rename to ip-messaging/rest/messages/list-messages/list-messages.10.x.java diff --git a/ip-messaging/rest/messages/retrieve-messages/retrieve-messages.9.x.java b/ip-messaging/rest/messages/retrieve-messages/retrieve-messages.10.x.java similarity index 100% rename from ip-messaging/rest/messages/retrieve-messages/retrieve-messages.9.x.java rename to ip-messaging/rest/messages/retrieve-messages/retrieve-messages.10.x.java diff --git a/ip-messaging/rest/messages/send-messages/send-messages.9.x.java b/ip-messaging/rest/messages/send-messages/send-messages.10.x.java similarity index 100% rename from ip-messaging/rest/messages/send-messages/send-messages.9.x.java rename to ip-messaging/rest/messages/send-messages/send-messages.10.x.java diff --git a/ip-messaging/rest/messages/update-messages/update-messages.9.x.java b/ip-messaging/rest/messages/update-messages/update-messages.10.x.java similarity index 100% rename from ip-messaging/rest/messages/update-messages/update-messages.9.x.java rename to ip-messaging/rest/messages/update-messages/update-messages.10.x.java diff --git a/ip-messaging/rest/roles/create-role/create-role.9.x.java b/ip-messaging/rest/roles/create-role/create-role.10.x.java similarity index 100% rename from ip-messaging/rest/roles/create-role/create-role.9.x.java rename to ip-messaging/rest/roles/create-role/create-role.10.x.java diff --git a/ip-messaging/rest/roles/delete-role/delete-role.9.x.java b/ip-messaging/rest/roles/delete-role/delete-role.10.x.java similarity index 100% rename from ip-messaging/rest/roles/delete-role/delete-role.9.x.java rename to ip-messaging/rest/roles/delete-role/delete-role.10.x.java diff --git a/ip-messaging/rest/roles/list-roles/list-roles.9.x.java b/ip-messaging/rest/roles/list-roles/list-roles.10.x.java similarity index 100% rename from ip-messaging/rest/roles/list-roles/list-roles.9.x.java rename to ip-messaging/rest/roles/list-roles/list-roles.10.x.java diff --git a/ip-messaging/rest/roles/retrieve-role/retrieve-role.9.x.java b/ip-messaging/rest/roles/retrieve-role/retrieve-role.10.x.java similarity index 100% rename from ip-messaging/rest/roles/retrieve-role/retrieve-role.9.x.java rename to ip-messaging/rest/roles/retrieve-role/retrieve-role.10.x.java diff --git a/ip-messaging/rest/roles/update-role/update-role.9.x.java b/ip-messaging/rest/roles/update-role/update-role.10.x.java similarity index 100% rename from ip-messaging/rest/roles/update-role/update-role.9.x.java rename to ip-messaging/rest/roles/update-role/update-role.10.x.java diff --git a/ip-messaging/rest/services/create-service/create-service.9.x.java b/ip-messaging/rest/services/create-service/create-service.10.x.java similarity index 100% rename from ip-messaging/rest/services/create-service/create-service.9.x.java rename to ip-messaging/rest/services/create-service/create-service.10.x.java diff --git a/ip-messaging/rest/services/delete-service/delete-service.9.x.java b/ip-messaging/rest/services/delete-service/delete-service.10.x.java similarity index 100% rename from ip-messaging/rest/services/delete-service/delete-service.9.x.java rename to ip-messaging/rest/services/delete-service/delete-service.10.x.java diff --git a/ip-messaging/rest/services/list-service/list-service.9.x.java b/ip-messaging/rest/services/list-service/list-service.10.x.java similarity index 100% rename from ip-messaging/rest/services/list-service/list-service.9.x.java rename to ip-messaging/rest/services/list-service/list-service.10.x.java diff --git a/ip-messaging/rest/services/retrieve-service/retrieve-service.9.x.java b/ip-messaging/rest/services/retrieve-service/retrieve-service.10.x.java similarity index 100% rename from ip-messaging/rest/services/retrieve-service/retrieve-service.9.x.java rename to ip-messaging/rest/services/retrieve-service/retrieve-service.10.x.java diff --git a/ip-messaging/rest/services/update-service/update-service.9.x.java b/ip-messaging/rest/services/update-service/update-service.10.x.java similarity index 100% rename from ip-messaging/rest/services/update-service/update-service.9.x.java rename to ip-messaging/rest/services/update-service/update-service.10.x.java diff --git a/ip-messaging/rest/users/create-user/create-user.9.x.java b/ip-messaging/rest/users/create-user/create-user.10.x.java similarity index 100% rename from ip-messaging/rest/users/create-user/create-user.9.x.java rename to ip-messaging/rest/users/create-user/create-user.10.x.java diff --git a/ip-messaging/rest/users/delete-user/delete-user.9.x.java b/ip-messaging/rest/users/delete-user/delete-user.10.x.java similarity index 100% rename from ip-messaging/rest/users/delete-user/delete-user.9.x.java rename to ip-messaging/rest/users/delete-user/delete-user.10.x.java diff --git a/ip-messaging/rest/users/list-users/list-users.9.x.java b/ip-messaging/rest/users/list-users/list-users.10.x.java similarity index 100% rename from ip-messaging/rest/users/list-users/list-users.9.x.java rename to ip-messaging/rest/users/list-users/list-users.10.x.java diff --git a/ip-messaging/rest/users/retrieve-user/retrieve-user.9.x.java b/ip-messaging/rest/users/retrieve-user/retrieve-user.10.x.java similarity index 100% rename from ip-messaging/rest/users/retrieve-user/retrieve-user.9.x.java rename to ip-messaging/rest/users/retrieve-user/retrieve-user.10.x.java diff --git a/ip-messaging/rest/users/update-user/update-user.9.x.java b/ip-messaging/rest/users/update-user/update-user.10.x.java similarity index 100% rename from ip-messaging/rest/users/update-user/update-user.9.x.java rename to ip-messaging/rest/users/update-user/update-user.10.x.java diff --git a/ip-messaging/users/token-gen-server-push/token-gen-server-push.9.x.java b/ip-messaging/users/token-gen-server-push/token-gen-server-push.10.x.java similarity index 100% rename from ip-messaging/users/token-gen-server-push/token-gen-server-push.9.x.java rename to ip-messaging/users/token-gen-server-push/token-gen-server-push.10.x.java diff --git a/ip-messaging/users/token-generation-server/token-generation-server.9.x.java b/ip-messaging/users/token-generation-server/token-generation-server.10.x.java similarity index 100% rename from ip-messaging/users/token-generation-server/token-generation-server.9.x.java rename to ip-messaging/users/token-generation-server/token-generation-server.10.x.java diff --git a/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.9.x.java b/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.10.x.java similarity index 100% rename from lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.9.x.java rename to lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.10.x.java diff --git a/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.9.x.java b/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.10.x.java similarity index 100% rename from lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.9.x.java rename to lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.10.x.java diff --git a/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.9.x.java b/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.10.x.java similarity index 100% rename from lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.9.x.java rename to lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.10.x.java diff --git a/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.9.x.java b/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.10.x.java similarity index 100% rename from lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.9.x.java rename to lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.10.x.java diff --git a/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.9.x.java b/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.10.x.java similarity index 100% rename from lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.9.x.java rename to lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.10.x.java diff --git a/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.9.x.java b/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.10.x.java similarity index 100% rename from lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.9.x.java rename to lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.10.x.java diff --git a/lookups/lookup-international-basic/lookup-international-basic.9.x.java b/lookups/lookup-international-basic/lookup-international-basic.10.x.java similarity index 100% rename from lookups/lookup-international-basic/lookup-international-basic.9.x.java rename to lookups/lookup-international-basic/lookup-international-basic.10.x.java diff --git a/lookups/lookup-national-basic/lookup-national-basic.9.x.java b/lookups/lookup-national-basic/lookup-national-basic.10.x.java similarity index 100% rename from lookups/lookup-national-basic/lookup-national-basic.9.x.java rename to lookups/lookup-national-basic/lookup-national-basic.10.x.java diff --git a/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.9.x.java b/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.10.x.java similarity index 100% rename from media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.9.x.java rename to media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.10.x.java diff --git a/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.9.x.java b/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.10.x.java similarity index 100% rename from media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.9.x.java rename to media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.10.x.java diff --git a/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.9.x.java b/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.10.x.java similarity index 100% rename from messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.9.x.java rename to messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.10.x.java diff --git a/messaging/link-shortening/link-shortening-sms/link-shortening-sms.9.x.java b/messaging/link-shortening/link-shortening-sms/link-shortening-sms.10.x.java similarity index 100% rename from messaging/link-shortening/link-shortening-sms/link-shortening-sms.9.x.java rename to messaging/link-shortening/link-shortening-sms/link-shortening-sms.10.x.java diff --git a/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.9.x.java b/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.10.x.java similarity index 100% rename from messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.9.x.java rename to messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.10.x.java diff --git a/messaging/services/service-alpha-add/service-alpha-add.9.x.java b/messaging/services/service-alpha-add/service-alpha-add.10.x.java similarity index 100% rename from messaging/services/service-alpha-add/service-alpha-add.9.x.java rename to messaging/services/service-alpha-add/service-alpha-add.10.x.java diff --git a/messaging/services/service-alpha-delete/service-alpha-delete.9.x.java b/messaging/services/service-alpha-delete/service-alpha-delete.10.x.java similarity index 100% rename from messaging/services/service-alpha-delete/service-alpha-delete.9.x.java rename to messaging/services/service-alpha-delete/service-alpha-delete.10.x.java diff --git a/messaging/services/service-alpha-get/service-alpha-get.9.x.java b/messaging/services/service-alpha-get/service-alpha-get.10.x.java similarity index 100% rename from messaging/services/service-alpha-get/service-alpha-get.9.x.java rename to messaging/services/service-alpha-get/service-alpha-get.10.x.java diff --git a/messaging/services/service-alpha-list/service-alpha-list.9.x.java b/messaging/services/service-alpha-list/service-alpha-list.10.x.java similarity index 100% rename from messaging/services/service-alpha-list/service-alpha-list.9.x.java rename to messaging/services/service-alpha-list/service-alpha-list.10.x.java diff --git a/messaging/services/service-create/service-create.9.x.java b/messaging/services/service-create/service-create.10.x.java similarity index 100% rename from messaging/services/service-create/service-create.9.x.java rename to messaging/services/service-create/service-create.10.x.java diff --git a/messaging/services/service-delete/service-delete.9.x.java b/messaging/services/service-delete/service-delete.10.x.java similarity index 100% rename from messaging/services/service-delete/service-delete.9.x.java rename to messaging/services/service-delete/service-delete.10.x.java diff --git a/messaging/services/service-get/service-get.9.x.java b/messaging/services/service-get/service-get.10.x.java similarity index 100% rename from messaging/services/service-get/service-get.9.x.java rename to messaging/services/service-get/service-get.10.x.java diff --git a/messaging/services/service-list/service-list.9.x.java b/messaging/services/service-list/service-list.10.x.java similarity index 100% rename from messaging/services/service-list/service-list.9.x.java rename to messaging/services/service-list/service-list.10.x.java diff --git a/messaging/services/service-multiple-number-add/service-multiple-number-add.9.x.java b/messaging/services/service-multiple-number-add/service-multiple-number-add.10.x.java similarity index 100% rename from messaging/services/service-multiple-number-add/service-multiple-number-add.9.x.java rename to messaging/services/service-multiple-number-add/service-multiple-number-add.10.x.java diff --git a/messaging/services/service-number-add/service-number-add.9.x.java b/messaging/services/service-number-add/service-number-add.10.x.java similarity index 100% rename from messaging/services/service-number-add/service-number-add.9.x.java rename to messaging/services/service-number-add/service-number-add.10.x.java diff --git a/messaging/services/service-number-delete/service-number-delete.9.x.java b/messaging/services/service-number-delete/service-number-delete.10.x.java similarity index 100% rename from messaging/services/service-number-delete/service-number-delete.9.x.java rename to messaging/services/service-number-delete/service-number-delete.10.x.java diff --git a/messaging/services/service-number-get/service-number-get.9.x.java b/messaging/services/service-number-get/service-number-get.10.x.java similarity index 100% rename from messaging/services/service-number-get/service-number-get.9.x.java rename to messaging/services/service-number-get/service-number-get.10.x.java diff --git a/messaging/services/service-number-list/service-number-list.9.x.java b/messaging/services/service-number-list/service-number-list.10.x.java similarity index 100% rename from messaging/services/service-number-list/service-number-list.9.x.java rename to messaging/services/service-number-list/service-number-list.10.x.java diff --git a/messaging/services/service-shortcode-add/service-shortcode-add.9.x.java b/messaging/services/service-shortcode-add/service-shortcode-add.10.x.java similarity index 100% rename from messaging/services/service-shortcode-add/service-shortcode-add.9.x.java rename to messaging/services/service-shortcode-add/service-shortcode-add.10.x.java diff --git a/messaging/services/service-shortcode-delete/service-shortcode-delete.9.x.java b/messaging/services/service-shortcode-delete/service-shortcode-delete.10.x.java similarity index 100% rename from messaging/services/service-shortcode-delete/service-shortcode-delete.9.x.java rename to messaging/services/service-shortcode-delete/service-shortcode-delete.10.x.java diff --git a/messaging/services/service-shortcode-get/service-shortcode-get.9.x.java b/messaging/services/service-shortcode-get/service-shortcode-get.10.x.java similarity index 100% rename from messaging/services/service-shortcode-get/service-shortcode-get.9.x.java rename to messaging/services/service-shortcode-get/service-shortcode-get.10.x.java diff --git a/messaging/services/service-shortcode-list/service-shortcode-list.9.x.java b/messaging/services/service-shortcode-list/service-shortcode-list.10.x.java similarity index 100% rename from messaging/services/service-shortcode-list/service-shortcode-list.9.x.java rename to messaging/services/service-shortcode-list/service-shortcode-list.10.x.java diff --git a/messaging/services/service-update/service-update.9.x.java b/messaging/services/service-update/service-update.10.x.java similarity index 100% rename from messaging/services/service-update/service-update.9.x.java rename to messaging/services/service-update/service-update.10.x.java diff --git a/mobile-identity/identity-match/identity-match-example.9.x.java b/mobile-identity/identity-match/identity-match-example.10.x.java similarity index 100% rename from mobile-identity/identity-match/identity-match-example.9.x.java rename to mobile-identity/identity-match/identity-match-example.10.x.java diff --git a/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.9.x.java b/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.10.x.java similarity index 100% rename from mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.9.x.java rename to mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.10.x.java diff --git a/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.9.x.java b/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.10.x.java similarity index 100% rename from mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.9.x.java rename to mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.10.x.java diff --git a/monitor/alerts/instance-delete-example/instance-delete-example.9.x.java b/monitor/alerts/instance-delete-example/instance-delete-example.10.x.java similarity index 100% rename from monitor/alerts/instance-delete-example/instance-delete-example.9.x.java rename to monitor/alerts/instance-delete-example/instance-delete-example.10.x.java diff --git a/monitor/alerts/instance-get-example/instance-get-example.9.x.java b/monitor/alerts/instance-get-example/instance-get-example.10.x.java similarity index 100% rename from monitor/alerts/instance-get-example/instance-get-example.9.x.java rename to monitor/alerts/instance-get-example/instance-get-example.10.x.java diff --git a/monitor/alerts/list-get-example-all/list-get-example-all.9.x.java b/monitor/alerts/list-get-example-all/list-get-example-all.10.x.java similarity index 100% rename from monitor/alerts/list-get-example-all/list-get-example-all.9.x.java rename to monitor/alerts/list-get-example-all/list-get-example-all.10.x.java diff --git a/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.9.x.java b/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.10.x.java similarity index 100% rename from monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.9.x.java rename to monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.10.x.java diff --git a/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.9.x.java b/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.10.x.java similarity index 100% rename from monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.9.x.java rename to monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.10.x.java diff --git a/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.9.x.java b/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.10.x.java similarity index 100% rename from monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.9.x.java rename to monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.10.x.java diff --git a/monitor/events/list-get-example-date-filter/list-get-example-date-filter.9.x.java b/monitor/events/list-get-example-date-filter/list-get-example-date-filter.10.x.java similarity index 100% rename from monitor/events/list-get-example-date-filter/list-get-example-date-filter.9.x.java rename to monitor/events/list-get-example-date-filter/list-get-example-date-filter.10.x.java diff --git a/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.9.x.java b/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.10.x.java similarity index 100% rename from monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.9.x.java rename to monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.10.x.java diff --git a/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.9.x.java b/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.10.x.java similarity index 100% rename from monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.9.x.java rename to monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.10.x.java diff --git a/notifications/rest/bindings/create-binding/create-binding.9.x.java b/notifications/rest/bindings/create-binding/create-binding.10.x.java similarity index 100% rename from notifications/rest/bindings/create-binding/create-binding.9.x.java rename to notifications/rest/bindings/create-binding/create-binding.10.x.java diff --git a/notifications/rest/bindings/delete-binding/delete-binding.9.x.java b/notifications/rest/bindings/delete-binding/delete-binding.10.x.java similarity index 100% rename from notifications/rest/bindings/delete-binding/delete-binding.9.x.java rename to notifications/rest/bindings/delete-binding/delete-binding.10.x.java diff --git a/notifications/rest/bindings/list-binding/list-binding.9.x.java b/notifications/rest/bindings/list-binding/list-binding.10.x.java similarity index 100% rename from notifications/rest/bindings/list-binding/list-binding.9.x.java rename to notifications/rest/bindings/list-binding/list-binding.10.x.java diff --git a/notifications/rest/bindings/retrieve-binding/retrieve-binding.9.x.java b/notifications/rest/bindings/retrieve-binding/retrieve-binding.10.x.java similarity index 100% rename from notifications/rest/bindings/retrieve-binding/retrieve-binding.9.x.java rename to notifications/rest/bindings/retrieve-binding/retrieve-binding.10.x.java diff --git a/notifications/rest/credentials/create-apn-credential/create-apn-credential.9.x.java b/notifications/rest/credentials/create-apn-credential/create-apn-credential.10.x.java similarity index 100% rename from notifications/rest/credentials/create-apn-credential/create-apn-credential.9.x.java rename to notifications/rest/credentials/create-apn-credential/create-apn-credential.10.x.java diff --git a/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.9.x.java b/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.10.x.java similarity index 100% rename from notifications/rest/credentials/create-fcm-credential/create-fcm-credential.9.x.java rename to notifications/rest/credentials/create-fcm-credential/create-fcm-credential.10.x.java diff --git a/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.9.x.java b/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.10.x.java similarity index 100% rename from notifications/rest/credentials/create-gcm-credential/create-gcm-credential.9.x.java rename to notifications/rest/credentials/create-gcm-credential/create-gcm-credential.10.x.java diff --git a/notifications/rest/credentials/delete-credential/delete-credential.9.x.java b/notifications/rest/credentials/delete-credential/delete-credential.10.x.java similarity index 100% rename from notifications/rest/credentials/delete-credential/delete-credential.9.x.java rename to notifications/rest/credentials/delete-credential/delete-credential.10.x.java diff --git a/notifications/rest/credentials/list-credential/list-credential.9.x.java b/notifications/rest/credentials/list-credential/list-credential.10.x.java similarity index 100% rename from notifications/rest/credentials/list-credential/list-credential.9.x.java rename to notifications/rest/credentials/list-credential/list-credential.10.x.java diff --git a/notifications/rest/credentials/retrieve-credential/retrieve-credential.9.x.java b/notifications/rest/credentials/retrieve-credential/retrieve-credential.10.x.java similarity index 100% rename from notifications/rest/credentials/retrieve-credential/retrieve-credential.9.x.java rename to notifications/rest/credentials/retrieve-credential/retrieve-credential.10.x.java diff --git a/notifications/rest/credentials/update-credential/update-credential.9.x.java b/notifications/rest/credentials/update-credential/update-credential.10.x.java similarity index 100% rename from notifications/rest/credentials/update-credential/update-credential.9.x.java rename to notifications/rest/credentials/update-credential/update-credential.10.x.java diff --git a/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.9.x.java b/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.10.x.java similarity index 100% rename from notifications/rest/notifications/send-notification-detailed/send-notification-detailed.9.x.java rename to notifications/rest/notifications/send-notification-detailed/send-notification-detailed.10.x.java diff --git a/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.9.x.java b/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.10.x.java similarity index 100% rename from notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.9.x.java rename to notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.10.x.java diff --git a/notifications/rest/notifications/send-notification/send-notification.9.x.java b/notifications/rest/notifications/send-notification/send-notification.10.x.java similarity index 100% rename from notifications/rest/notifications/send-notification/send-notification.9.x.java rename to notifications/rest/notifications/send-notification/send-notification.10.x.java diff --git a/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.9.x.java b/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.10.x.java similarity index 100% rename from notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.9.x.java rename to notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.10.x.java diff --git a/notifications/rest/segments/list-segment/list-segment.9.x.java b/notifications/rest/segments/list-segment/list-segment.10.x.java similarity index 100% rename from notifications/rest/segments/list-segment/list-segment.9.x.java rename to notifications/rest/segments/list-segment/list-segment.10.x.java diff --git a/notifications/rest/services/create-service/create-service.9.x.java b/notifications/rest/services/create-service/create-service.10.x.java similarity index 100% rename from notifications/rest/services/create-service/create-service.9.x.java rename to notifications/rest/services/create-service/create-service.10.x.java diff --git a/notifications/rest/services/delete-service/delete-service.9.x.java b/notifications/rest/services/delete-service/delete-service.10.x.java similarity index 100% rename from notifications/rest/services/delete-service/delete-service.9.x.java rename to notifications/rest/services/delete-service/delete-service.10.x.java diff --git a/notifications/rest/services/list-service/list-service.9.x.java b/notifications/rest/services/list-service/list-service.10.x.java similarity index 100% rename from notifications/rest/services/list-service/list-service.9.x.java rename to notifications/rest/services/list-service/list-service.10.x.java diff --git a/notifications/rest/services/retrieve-service/retrieve-service.9.x.java b/notifications/rest/services/retrieve-service/retrieve-service.10.x.java similarity index 100% rename from notifications/rest/services/retrieve-service/retrieve-service.9.x.java rename to notifications/rest/services/retrieve-service/retrieve-service.10.x.java diff --git a/notifications/rest/services/update-service/update-service.9.x.java b/notifications/rest/services/update-service/update-service.10.x.java similarity index 100% rename from notifications/rest/services/update-service/update-service.9.x.java rename to notifications/rest/services/update-service/update-service.10.x.java diff --git a/notifications/rest/users/add-user-to-segment/add-user-to-segment.9.x.java b/notifications/rest/users/add-user-to-segment/add-user-to-segment.10.x.java similarity index 100% rename from notifications/rest/users/add-user-to-segment/add-user-to-segment.9.x.java rename to notifications/rest/users/add-user-to-segment/add-user-to-segment.10.x.java diff --git a/notifications/rest/users/create-user/create-user.9.x.java b/notifications/rest/users/create-user/create-user.10.x.java similarity index 100% rename from notifications/rest/users/create-user/create-user.9.x.java rename to notifications/rest/users/create-user/create-user.10.x.java diff --git a/notifications/rest/users/delete-user/delete-user.9.x.java b/notifications/rest/users/delete-user/delete-user.10.x.java similarity index 100% rename from notifications/rest/users/delete-user/delete-user.9.x.java rename to notifications/rest/users/delete-user/delete-user.10.x.java diff --git a/notifications/rest/users/list-binding-of-user/list-binding-of-user.9.x.java b/notifications/rest/users/list-binding-of-user/list-binding-of-user.10.x.java similarity index 100% rename from notifications/rest/users/list-binding-of-user/list-binding-of-user.9.x.java rename to notifications/rest/users/list-binding-of-user/list-binding-of-user.10.x.java diff --git a/notifications/rest/users/list-users/list-users.9.x.java b/notifications/rest/users/list-users/list-users.10.x.java similarity index 100% rename from notifications/rest/users/list-users/list-users.9.x.java rename to notifications/rest/users/list-users/list-users.10.x.java diff --git a/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.9.x.java b/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.10.x.java similarity index 100% rename from notifications/rest/users/remove-user-from-segment/remove-user-from-segment.9.x.java rename to notifications/rest/users/remove-user-from-segment/remove-user-from-segment.10.x.java diff --git a/notifications/rest/users/retrieve-user/retrieve-user.9.x.java b/notifications/rest/users/retrieve-user/retrieve-user.10.x.java similarity index 100% rename from notifications/rest/users/retrieve-user/retrieve-user.9.x.java rename to notifications/rest/users/retrieve-user/retrieve-user.10.x.java diff --git a/notifications/sms-quickstart/create-binding/create-binding.9.x.java b/notifications/sms-quickstart/create-binding/create-binding.10.x.java similarity index 100% rename from notifications/sms-quickstart/create-binding/create-binding.9.x.java rename to notifications/sms-quickstart/create-binding/create-binding.10.x.java diff --git a/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.9.x.java b/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.10.x.java similarity index 100% rename from notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.9.x.java rename to notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.10.x.java diff --git a/notifications/sms-quickstart/send-notification/send-notification.9.x.java b/notifications/sms-quickstart/send-notification/send-notification.10.x.java similarity index 100% rename from notifications/sms-quickstart/send-notification/send-notification.9.x.java rename to notifications/sms-quickstart/send-notification/send-notification.10.x.java diff --git a/pricing/get-messaging-country/get-messaging-country.9.x.java b/pricing/get-messaging-country/get-messaging-country.10.x.java similarity index 100% rename from pricing/get-messaging-country/get-messaging-country.9.x.java rename to pricing/get-messaging-country/get-messaging-country.10.x.java diff --git a/pricing/get-phone-number-country/get-phone-number-country.9.x.java b/pricing/get-phone-number-country/get-phone-number-country.10.x.java similarity index 100% rename from pricing/get-phone-number-country/get-phone-number-country.9.x.java rename to pricing/get-phone-number-country/get-phone-number-country.10.x.java diff --git a/pricing/get-voice-country/get-voice-country.9.x.java b/pricing/get-voice-country/get-voice-country.10.x.java similarity index 100% rename from pricing/get-voice-country/get-voice-country.9.x.java rename to pricing/get-voice-country/get-voice-country.10.x.java diff --git a/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.9.x.java b/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.10.x.java similarity index 100% rename from pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.9.x.java rename to pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.10.x.java diff --git a/pricing/get-voice-number/get-voice-number.9.x.java b/pricing/get-voice-number/get-voice-number.10.x.java similarity index 100% rename from pricing/get-voice-number/get-voice-number.9.x.java rename to pricing/get-voice-number/get-voice-number.10.x.java diff --git a/pricing/list-messaging-countries/list-messaging-countries.9.x.java b/pricing/list-messaging-countries/list-messaging-countries.10.x.java similarity index 100% rename from pricing/list-messaging-countries/list-messaging-countries.9.x.java rename to pricing/list-messaging-countries/list-messaging-countries.10.x.java diff --git a/pricing/list-phone-number-countries/list-phone-number-countries.9.x.java b/pricing/list-phone-number-countries/list-phone-number-countries.10.x.java similarity index 100% rename from pricing/list-phone-number-countries/list-phone-number-countries.9.x.java rename to pricing/list-phone-number-countries/list-phone-number-countries.10.x.java diff --git a/pricing/list-voice-countries/list-voice-countries.9.x.java b/pricing/list-voice-countries/list-voice-countries.10.x.java similarity index 100% rename from pricing/list-voice-countries/list-voice-countries.9.x.java rename to pricing/list-voice-countries/list-voice-countries.10.x.java diff --git a/proxy/quickstart/add-phone-number/add-phone-number.9.x.java b/proxy/quickstart/add-phone-number/add-phone-number.10.x.java similarity index 100% rename from proxy/quickstart/add-phone-number/add-phone-number.9.x.java rename to proxy/quickstart/add-phone-number/add-phone-number.10.x.java diff --git a/proxy/quickstart/create-participant/create-participant.9.x.java b/proxy/quickstart/create-participant/create-participant.10.x.java similarity index 100% rename from proxy/quickstart/create-participant/create-participant.9.x.java rename to proxy/quickstart/create-participant/create-participant.10.x.java diff --git a/proxy/quickstart/create-service/create-service.9.x.java b/proxy/quickstart/create-service/create-service.10.x.java similarity index 100% rename from proxy/quickstart/create-service/create-service.9.x.java rename to proxy/quickstart/create-service/create-service.10.x.java diff --git a/proxy/quickstart/create-session/create-session.9.x.java b/proxy/quickstart/create-session/create-session.10.x.java similarity index 100% rename from proxy/quickstart/create-session/create-session.9.x.java rename to proxy/quickstart/create-session/create-session.10.x.java diff --git a/proxy/quickstart/send-message/send-message.9.x.java b/proxy/quickstart/send-message/send-message.10.x.java similarity index 100% rename from proxy/quickstart/send-message/send-message.9.x.java rename to proxy/quickstart/send-message/send-message.10.x.java diff --git a/quickstart/java/autopilot/create-first-task/create_hello_world_task.9.x.java b/quickstart/java/autopilot/create-first-task/create_hello_world_task.10.x.java similarity index 100% rename from quickstart/java/autopilot/create-first-task/create_hello_world_task.9.x.java rename to quickstart/java/autopilot/create-first-task/create_hello_world_task.10.x.java diff --git a/quickstart/java/autopilot/create-hello-world-samples/create_hello_world_samples.9.x.java b/quickstart/java/autopilot/create-hello-world-samples/create_hello_world_samples.10.x.java similarity index 100% rename from quickstart/java/autopilot/create-hello-world-samples/create_hello_world_samples.9.x.java rename to quickstart/java/autopilot/create-hello-world-samples/create_hello_world_samples.10.x.java diff --git a/quickstart/java/autopilot/create-joke-samples/create_joke_samples.9.x.java b/quickstart/java/autopilot/create-joke-samples/create_joke_samples.10.x.java similarity index 100% rename from quickstart/java/autopilot/create-joke-samples/create_joke_samples.9.x.java rename to quickstart/java/autopilot/create-joke-samples/create_joke_samples.10.x.java diff --git a/quickstart/java/autopilot/create-joke-task/create_joke_task.9.x.java b/quickstart/java/autopilot/create-joke-task/create_joke_task.10.x.java similarity index 100% rename from quickstart/java/autopilot/create-joke-task/create_joke_task.9.x.java rename to quickstart/java/autopilot/create-joke-task/create_joke_task.10.x.java diff --git a/quickstart/java/autopilot/query-task/query_task.9.x.java b/quickstart/java/autopilot/query-task/query_task.10.x.java similarity index 100% rename from quickstart/java/autopilot/query-task/query_task.9.x.java rename to quickstart/java/autopilot/query-task/query_task.10.x.java diff --git a/quickstart/java/sms/example-1/example-1.9.x.java b/quickstart/java/sms/example-1/example-1.10.x.java similarity index 100% rename from quickstart/java/sms/example-1/example-1.9.x.java rename to quickstart/java/sms/example-1/example-1.10.x.java diff --git a/quickstart/java/sms/example-2/MmsSender.9.x.java b/quickstart/java/sms/example-2/MmsSender.10.x.java similarity index 100% rename from quickstart/java/sms/example-2/MmsSender.9.x.java rename to quickstart/java/sms/example-2/MmsSender.10.x.java diff --git a/quickstart/java/sms/example-3/SmsHelloMonkey.9.x.java b/quickstart/java/sms/example-3/SmsHelloMonkey.10.x.java similarity index 100% rename from quickstart/java/sms/example-3/SmsHelloMonkey.9.x.java rename to quickstart/java/sms/example-3/SmsHelloMonkey.10.x.java diff --git a/quickstart/java/sms/example-4/MmsHelloMonkey.9.x.java b/quickstart/java/sms/example-4/MmsHelloMonkey.10.x.java similarity index 100% rename from quickstart/java/sms/example-4/MmsHelloMonkey.9.x.java rename to quickstart/java/sms/example-4/MmsHelloMonkey.10.x.java diff --git a/quickstart/java/sms/example-5/ReplyByName.9.x.java b/quickstart/java/sms/example-5/ReplyByName.10.x.java similarity index 100% rename from quickstart/java/sms/example-5/ReplyByName.9.x.java rename to quickstart/java/sms/example-5/ReplyByName.10.x.java diff --git a/quickstart/java/sms/example-6/TrackingSmsConversations.9.x.java b/quickstart/java/sms/example-6/TrackingSmsConversations.10.x.java similarity index 100% rename from quickstart/java/sms/example-6/TrackingSmsConversations.9.x.java rename to quickstart/java/sms/example-6/TrackingSmsConversations.10.x.java diff --git a/quickstart/java/sms/example-7/SendSmsDuringCall.9.x.java b/quickstart/java/sms/example-7/SendSmsDuringCall.10.x.java similarity index 100% rename from quickstart/java/sms/example-7/SendSmsDuringCall.9.x.java rename to quickstart/java/sms/example-7/SendSmsDuringCall.10.x.java diff --git a/quickstart/java/voice/example-1/MakePhoneCall.9.x.java b/quickstart/java/voice/example-1/MakePhoneCall.10.x.java similarity index 100% rename from quickstart/java/voice/example-1/MakePhoneCall.9.x.java rename to quickstart/java/voice/example-1/MakePhoneCall.10.x.java diff --git a/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.9.x.java b/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.10.x.java similarity index 100% rename from rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.9.x.java rename to rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.10.x.java diff --git a/rest/access-tokens/ip-messaging-example/ip-messaging-example.9.x.java b/rest/access-tokens/ip-messaging-example/ip-messaging-example.10.x.java similarity index 100% rename from rest/access-tokens/ip-messaging-example/ip-messaging-example.9.x.java rename to rest/access-tokens/ip-messaging-example/ip-messaging-example.10.x.java diff --git a/rest/access-tokens/live-example/live-example.9.x.java b/rest/access-tokens/live-example/live-example.10.x.java similarity index 100% rename from rest/access-tokens/live-example/live-example.9.x.java rename to rest/access-tokens/live-example/live-example.10.x.java diff --git a/rest/access-tokens/sync-example/sync-example.9.x.java b/rest/access-tokens/sync-example/sync-example.10.x.java similarity index 100% rename from rest/access-tokens/sync-example/sync-example.9.x.java rename to rest/access-tokens/sync-example/sync-example.10.x.java diff --git a/rest/access-tokens/video-example/video-example.9.x.java b/rest/access-tokens/video-example/video-example.10.x.java similarity index 100% rename from rest/access-tokens/video-example/video-example.9.x.java rename to rest/access-tokens/video-example/video-example.10.x.java diff --git a/rest/access-tokens/voice-example/voice-example.9.x.java b/rest/access-tokens/voice-example/voice-example.10.x.java similarity index 100% rename from rest/access-tokens/voice-example/voice-example.9.x.java rename to rest/access-tokens/voice-example/voice-example.10.x.java diff --git a/rest/accounts/instance-get-example-1/instance-get-example-1.9.x.java b/rest/accounts/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/accounts/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/accounts/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/accounts/instance-post-example-1/instance-post-example-1.9.x.java b/rest/accounts/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/accounts/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/accounts/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/accounts/instance-post-example-2/instance-post-example-2.9.x.java b/rest/accounts/instance-post-example-2/instance-post-example-2.10.x.java similarity index 100% rename from rest/accounts/instance-post-example-2/instance-post-example-2.9.x.java rename to rest/accounts/instance-post-example-2/instance-post-example-2.10.x.java diff --git a/rest/accounts/instance-post-example-3/instance-post-example-3.9.x.java b/rest/accounts/instance-post-example-3/instance-post-example-3.10.x.java similarity index 100% rename from rest/accounts/instance-post-example-3/instance-post-example-3.9.x.java rename to rest/accounts/instance-post-example-3/instance-post-example-3.10.x.java diff --git a/rest/accounts/list-get-example-1/list-get-example-1.9.x.java b/rest/accounts/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/accounts/list-get-example-1/list-get-example-1.9.x.java rename to rest/accounts/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/accounts/list-get-example-2/list-get-example-2.9.x.java b/rest/accounts/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/accounts/list-get-example-2/list-get-example-2.9.x.java rename to rest/accounts/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/addresses/instance-create-example/instance-create-example.9.x.java b/rest/addresses/instance-create-example/instance-create-example.10.x.java similarity index 100% rename from rest/addresses/instance-create-example/instance-create-example.9.x.java rename to rest/addresses/instance-create-example/instance-create-example.10.x.java diff --git a/rest/addresses/instance-get-example-1/instance-get-example-1.9.x.java b/rest/addresses/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/addresses/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/addresses/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/addresses/instance-post-example-1/instance-post-example-1.9.x.java b/rest/addresses/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/addresses/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/addresses/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.9.x.java b/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.10.x.java similarity index 100% rename from rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.9.x.java rename to rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.10.x.java diff --git a/rest/addresses/list-get-example-1/list-get-example-1.9.x.java b/rest/addresses/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/addresses/list-get-example-1/list-get-example-1.9.x.java rename to rest/addresses/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/addresses/list-get-example-2/list-get-example-2.9.x.java b/rest/addresses/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/addresses/list-get-example-2/list-get-example-2.9.x.java rename to rest/addresses/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/addresses/list-post-example-1/list-post-example-1.9.x.java b/rest/addresses/list-post-example-1/list-post-example-1.10.x.java similarity index 100% rename from rest/addresses/list-post-example-1/list-post-example-1.9.x.java rename to rest/addresses/list-post-example-1/list-post-example-1.10.x.java diff --git a/rest/answering-machine-detection/outgoing-call/outgoing-call-1.9.x.java b/rest/answering-machine-detection/outgoing-call/outgoing-call-1.10.x.java similarity index 100% rename from rest/answering-machine-detection/outgoing-call/outgoing-call-1.9.x.java rename to rest/answering-machine-detection/outgoing-call/outgoing-call-1.10.x.java diff --git a/rest/applications/instance-get-example-1/instance-get-example-1.9.x.java b/rest/applications/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/applications/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/applications/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/applications/instance-post-example-1/instance-post-example-1.9.x.java b/rest/applications/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/applications/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/applications/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/applications/list-get-example-1/list-get-example-1.9.x.java b/rest/applications/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/applications/list-get-example-1/list-get-example-1.9.x.java rename to rest/applications/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/applications/list-get-example-2/list-get-example-2.9.x.java b/rest/applications/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/applications/list-get-example-2/list-get-example-2.9.x.java rename to rest/applications/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/applications/list-post-example-1/list-post-example-1.9.x.java b/rest/applications/list-post-example-1/list-post-example-1.10.x.java similarity index 100% rename from rest/applications/list-post-example-1/list-post-example-1.9.x.java rename to rest/applications/list-post-example-1/list-post-example-1.10.x.java diff --git a/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.9.x.java b/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.9.x.java b/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/authorized-connect-apps/list-get-example-1/list-get-example-1.9.x.java rename to rest/authorized-connect-apps/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.9.x.java b/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.9.x.java rename to rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.10.x.java diff --git a/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.9.x.java b/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.9.x.java rename to rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.10.x.java diff --git a/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.9.x.java b/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.9.x.java rename to rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.10.x.java diff --git a/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.9.x.java b/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.9.x.java rename to rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.10.x.java diff --git a/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.9.x.java b/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.9.x.java rename to rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.10.x.java diff --git a/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.9.x.java b/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.9.x.java rename to rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.10.x.java diff --git a/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.9.x.java b/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.9.x.java rename to rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.10.x.java diff --git a/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.9.x.java b/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.9.x.java rename to rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.10.x.java diff --git a/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.9.x.java b/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.10.x.java similarity index 100% rename from rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.9.x.java rename to rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.10.x.java diff --git a/rest/available-phone-numbers/mobile-example/mobile-get-example-1.9.x.java b/rest/available-phone-numbers/mobile-example/mobile-get-example-1.10.x.java similarity index 100% rename from rest/available-phone-numbers/mobile-example/mobile-get-example-1.9.x.java rename to rest/available-phone-numbers/mobile-example/mobile-get-example-1.10.x.java diff --git a/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.9.x.java b/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.10.x.java similarity index 100% rename from rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.9.x.java rename to rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.10.x.java diff --git a/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.9.x.java b/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.10.x.java similarity index 100% rename from rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.9.x.java rename to rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.10.x.java diff --git a/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.9.x.java b/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.10.x.java similarity index 100% rename from rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.9.x.java rename to rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.10.x.java diff --git a/rest/call-feedback/instance-get-example-1/instance-get-example-1.9.x.java b/rest/call-feedback/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/call-feedback/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/call-feedback/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/call-feedback/instance-post-example-1/instance-post-example-1.9.x.java b/rest/call-feedback/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/call-feedback/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/call-feedback/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.9.x.java b/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.10.x.java similarity index 100% rename from rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.9.x.java rename to rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.10.x.java diff --git a/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.9.x.java b/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.10.x.java similarity index 100% rename from rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.9.x.java rename to rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.10.x.java diff --git a/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.9.x.java b/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.10.x.java similarity index 100% rename from rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.9.x.java rename to rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.10.x.java diff --git a/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.9.x.java b/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.10.x.java similarity index 100% rename from rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.9.x.java rename to rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.10.x.java diff --git a/rest/call/instance-get-example-1/instance-get-example-1.9.x.java b/rest/call/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/call/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/call/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/call/list-get-example-1/list-get-example-1.9.x.java b/rest/call/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/call/list-get-example-1/list-get-example-1.9.x.java rename to rest/call/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/call/list-get-example-2/list-get-example-2.9.x.java b/rest/call/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/call/list-get-example-2/list-get-example-2.9.x.java rename to rest/call/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/call/list-get-example-3/list-get-example-3.9.x.java b/rest/call/list-get-example-3/list-get-example-3.10.x.java similarity index 100% rename from rest/call/list-get-example-3/list-get-example-3.9.x.java rename to rest/call/list-get-example-3/list-get-example-3.10.x.java diff --git a/rest/call/list-get-example-4/list-get-example-4.9.x.java b/rest/call/list-get-example-4/list-get-example-4.10.x.java similarity index 100% rename from rest/call/list-get-example-4/list-get-example-4.9.x.java rename to rest/call/list-get-example-4/list-get-example-4.10.x.java diff --git a/rest/call/list-get-example-6/list-get-example-6.9.x.java b/rest/call/list-get-example-6/list-get-example-6.10.x.java similarity index 100% rename from rest/call/list-get-example-6/list-get-example-6.9.x.java rename to rest/call/list-get-example-6/list-get-example-6.10.x.java diff --git a/rest/call/list-get-example-6/local-get-advanced-example-6.9.x.java b/rest/call/list-get-example-6/local-get-advanced-example-6.10.x.java similarity index 100% rename from rest/call/list-get-example-6/local-get-advanced-example-6.9.x.java rename to rest/call/list-get-example-6/local-get-advanced-example-6.10.x.java diff --git a/rest/call/list-get-example-7/list-get-example-7.9.x.java b/rest/call/list-get-example-7/list-get-example-7.10.x.java similarity index 100% rename from rest/call/list-get-example-7/list-get-example-7.9.x.java rename to rest/call/list-get-example-7/list-get-example-7.10.x.java diff --git a/rest/change-call-state/example-1/example-1.9.x.java b/rest/change-call-state/example-1/example-1.10.x.java similarity index 100% rename from rest/change-call-state/example-1/example-1.9.x.java rename to rest/change-call-state/example-1/example-1.10.x.java diff --git a/rest/change-call-state/list-get-example-2/list-get-example-2.9.x.java b/rest/change-call-state/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/change-call-state/list-get-example-2/list-get-example-2.9.x.java rename to rest/change-call-state/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/conference/instance-get-example-1/instance-get-example-1.9.x.java b/rest/conference/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/conference/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/conference/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/conference/list-get-example-1/list-get-example-1.9.x.java b/rest/conference/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/conference/list-get-example-1/list-get-example-1.9.x.java rename to rest/conference/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/conference/list-get-example-2/list-get-example-2.9.x.java b/rest/conference/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/conference/list-get-example-2/list-get-example-2.9.x.java rename to rest/conference/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/conference/list-get-example-3/list-get-example-3.9.x.java b/rest/conference/list-get-example-3/list-get-example-3.10.x.java similarity index 100% rename from rest/conference/list-get-example-3/list-get-example-3.9.x.java rename to rest/conference/list-get-example-3/list-get-example-3.10.x.java diff --git a/rest/conference/list-get-example-4/list-get-example-4.9.x.java b/rest/conference/list-get-example-4/list-get-example-4.10.x.java similarity index 100% rename from rest/conference/list-get-example-4/list-get-example-4.9.x.java rename to rest/conference/list-get-example-4/list-get-example-4.10.x.java diff --git a/rest/connect-apps/instance-get-example-1/instance-get-example-1.9.x.java b/rest/connect-apps/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/connect-apps/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/connect-apps/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/connect-apps/list-get-example-1/list-get-example-1.9.x.java b/rest/connect-apps/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/connect-apps/list-get-example-1/list-get-example-1.9.x.java rename to rest/connect-apps/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.9.x.java b/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.9.x.java b/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.9.x.java b/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.9.x.java rename to rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.9.x.java b/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.9.x.java rename to rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.9.x.java b/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.10.x.java similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.9.x.java rename to rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.10.x.java diff --git a/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.9.x.java b/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.10.x.java similarity index 100% rename from rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.9.x.java rename to rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.10.x.java diff --git a/rest/keys/instance-get-example/instance-get-example.9.x.java b/rest/keys/instance-get-example/instance-get-example.10.x.java similarity index 100% rename from rest/keys/instance-get-example/instance-get-example.9.x.java rename to rest/keys/instance-get-example/instance-get-example.10.x.java diff --git a/rest/keys/list-get-example/list-get-example.9.x.java b/rest/keys/list-get-example/list-get-example.10.x.java similarity index 100% rename from rest/keys/list-get-example/list-get-example.9.x.java rename to rest/keys/list-get-example/list-get-example.10.x.java diff --git a/rest/keys/list-post-example/list-post-example.9.x.java b/rest/keys/list-post-example/list-post-example.10.x.java similarity index 100% rename from rest/keys/list-post-example/list-post-example.9.x.java rename to rest/keys/list-post-example/list-post-example.10.x.java diff --git a/rest/keys/using-keys-example/example.9.x.java b/rest/keys/using-keys-example/example.10.x.java similarity index 100% rename from rest/keys/using-keys-example/example.9.x.java rename to rest/keys/using-keys-example/example.10.x.java diff --git a/rest/making-calls-sip/example-1/example-1.9.x.java b/rest/making-calls-sip/example-1/example-1.10.x.java similarity index 100% rename from rest/making-calls-sip/example-1/example-1.9.x.java rename to rest/making-calls-sip/example-1/example-1.10.x.java diff --git a/rest/making-calls-sip/example-2/example-2.9.x.java b/rest/making-calls-sip/example-2/example-2.10.x.java similarity index 100% rename from rest/making-calls-sip/example-2/example-2.9.x.java rename to rest/making-calls-sip/example-2/example-2.10.x.java diff --git a/rest/making-calls-sip/example-3/example-3.9.x.java b/rest/making-calls-sip/example-3/example-3.10.x.java similarity index 100% rename from rest/making-calls-sip/example-3/example-3.9.x.java rename to rest/making-calls-sip/example-3/example-3.10.x.java diff --git a/rest/making-calls/example-1/example-1.9.x.java b/rest/making-calls/example-1/example-1.10.x.java similarity index 100% rename from rest/making-calls/example-1/example-1.9.x.java rename to rest/making-calls/example-1/example-1.10.x.java diff --git a/rest/making-calls/example-2/example-2.9.x.java b/rest/making-calls/example-2/example-2.10.x.java similarity index 100% rename from rest/making-calls/example-2/example-2.9.x.java rename to rest/making-calls/example-2/example-2.10.x.java diff --git a/rest/making-calls/example-3/example-3.9.x.java b/rest/making-calls/example-3/example-3.10.x.java similarity index 100% rename from rest/making-calls/example-3/example-3.9.x.java rename to rest/making-calls/example-3/example-3.10.x.java diff --git a/rest/making-calls/example-4/example-4.9.x.java b/rest/making-calls/example-4/example-4.10.x.java similarity index 100% rename from rest/making-calls/example-4/example-4.9.x.java rename to rest/making-calls/example-4/example-4.10.x.java diff --git a/rest/media/instance-delete-example-1/instance-delete-example-1.9.x.java b/rest/media/instance-delete-example-1/instance-delete-example-1.10.x.java similarity index 100% rename from rest/media/instance-delete-example-1/instance-delete-example-1.9.x.java rename to rest/media/instance-delete-example-1/instance-delete-example-1.10.x.java diff --git a/rest/media/list-get-example-1/list-get-example-1.9.x.java b/rest/media/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/media/list-get-example-1/list-get-example-1.9.x.java rename to rest/media/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/member/instance-get-example-1/instance-get-example-1.9.x.java b/rest/member/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/member/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/member/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/member/instance-post-example-1/instance-post-example-1.9.x.java b/rest/member/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/member/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/member/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/member/instance-post-example-2/instance-post-example-2.9.x.java b/rest/member/instance-post-example-2/instance-post-example-2.10.x.java similarity index 100% rename from rest/member/instance-post-example-2/instance-post-example-2.9.x.java rename to rest/member/instance-post-example-2/instance-post-example-2.10.x.java diff --git a/rest/member/list-get-example-1/list-get-example-1.9.x.java b/rest/member/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/member/list-get-example-1/list-get-example-1.9.x.java rename to rest/member/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/message/instance-delete/example-1.9.x.java b/rest/message/instance-delete/example-1.10.x.java similarity index 100% rename from rest/message/instance-delete/example-1.9.x.java rename to rest/message/instance-delete/example-1.10.x.java diff --git a/rest/message/instance-get-example-1/instance-get-example-1.9.x.java b/rest/message/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/message/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/message/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/message/instance-post-example-1/instance-post-example-1.9.x.java b/rest/message/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/message/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/message/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/message/list-get-example-1/list-get-example-1.9.x.java b/rest/message/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/message/list-get-example-1/list-get-example-1.9.x.java rename to rest/message/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/message/list-get-example-2/list-get-example-2.9.x.java b/rest/message/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/message/list-get-example-2/list-get-example-2.9.x.java rename to rest/message/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/messages/feedback-confirm/feedback-confirm.9.x.java b/rest/messages/feedback-confirm/feedback-confirm.10.x.java similarity index 100% rename from rest/messages/feedback-confirm/feedback-confirm.9.x.java rename to rest/messages/feedback-confirm/feedback-confirm.10.x.java diff --git a/rest/messages/feedback-send-sms/feedback-send-sms.9.x.java b/rest/messages/feedback-send-sms/feedback-send-sms.10.x.java similarity index 100% rename from rest/messages/feedback-send-sms/feedback-send-sms.9.x.java rename to rest/messages/feedback-send-sms/feedback-send-sms.10.x.java diff --git a/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.9.x.java b/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.10.x.java similarity index 100% rename from rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.9.x.java rename to rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.10.x.java diff --git a/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.9.x.java b/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.10.x.java similarity index 100% rename from rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.9.x.java rename to rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.10.x.java diff --git a/rest/messages/generate-twiml-mms/generate-twiml-mms.9.x.java b/rest/messages/generate-twiml-mms/generate-twiml-mms.10.x.java similarity index 100% rename from rest/messages/generate-twiml-mms/generate-twiml-mms.9.x.java rename to rest/messages/generate-twiml-mms/generate-twiml-mms.10.x.java diff --git a/rest/messages/generate-twiml-sms-voice/example-1.9.x.java b/rest/messages/generate-twiml-sms-voice/example-1.10.x.java similarity index 100% rename from rest/messages/generate-twiml-sms-voice/example-1.9.x.java rename to rest/messages/generate-twiml-sms-voice/example-1.10.x.java diff --git a/rest/messages/generate-twiml-sms/generate-twiml-sms.9.x.java b/rest/messages/generate-twiml-sms/generate-twiml-sms.10.x.java similarity index 100% rename from rest/messages/generate-twiml-sms/generate-twiml-sms.9.x.java rename to rest/messages/generate-twiml-sms/generate-twiml-sms.10.x.java diff --git a/rest/messages/send-message/example-1.9.x.java b/rest/messages/send-message/example-1.10.x.java similarity index 100% rename from rest/messages/send-message/example-1.9.x.java rename to rest/messages/send-message/example-1.10.x.java diff --git a/rest/messages/send-messages-copilot/send-messages-copilot.9.x.java b/rest/messages/send-messages-copilot/send-messages-copilot.10.x.java similarity index 100% rename from rest/messages/send-messages-copilot/send-messages-copilot.9.x.java rename to rest/messages/send-messages-copilot/send-messages-copilot.10.x.java diff --git a/rest/messages/send-sms-callback/send-sms-callback.9.x.java b/rest/messages/send-sms-callback/send-sms-callback.10.x.java similarity index 100% rename from rest/messages/send-sms-callback/send-sms-callback.9.x.java rename to rest/messages/send-sms-callback/send-sms-callback.10.x.java diff --git a/rest/messages/send-sms/send-sms.9.x.java b/rest/messages/send-sms/send-sms.10.x.java similarity index 100% rename from rest/messages/send-sms/send-sms.9.x.java rename to rest/messages/send-sms/send-sms.10.x.java diff --git a/rest/messages/sms-conversation-tracking/sms-conversation-tracking.9.x.java b/rest/messages/sms-conversation-tracking/sms-conversation-tracking.10.x.java similarity index 100% rename from rest/messages/sms-conversation-tracking/sms-conversation-tracking.9.x.java rename to rest/messages/sms-conversation-tracking/sms-conversation-tracking.10.x.java diff --git a/rest/notification/instance-delete-examples/instance-delete-examples.9.x.java b/rest/notification/instance-delete-examples/instance-delete-examples.10.x.java similarity index 100% rename from rest/notification/instance-delete-examples/instance-delete-examples.9.x.java rename to rest/notification/instance-delete-examples/instance-delete-examples.10.x.java diff --git a/rest/notification/instance-get-example-1/instance-get-example-1.9.x.java b/rest/notification/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/notification/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/notification/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/notification/list-get-example-1/list-get-example-1.9.x.java b/rest/notification/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/notification/list-get-example-1/list-get-example-1.9.x.java rename to rest/notification/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/notification/list-get-example-2/list-get-example-2.9.x.java b/rest/notification/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/notification/list-get-example-2/list-get-example-2.9.x.java rename to rest/notification/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/notification/list-get-example-3/list-get-example-3.9.x.java b/rest/notification/list-get-example-3/list-get-example-3.10.x.java similarity index 100% rename from rest/notification/list-get-example-3/list-get-example-3.9.x.java rename to rest/notification/list-get-example-3/list-get-example-3.10.x.java diff --git a/rest/notification/list-get-example-4/list-get-example-4.9.x.java b/rest/notification/list-get-example-4/list-get-example-4.10.x.java similarity index 100% rename from rest/notification/list-get-example-4/list-get-example-4.9.x.java rename to rest/notification/list-get-example-4/list-get-example-4.10.x.java diff --git a/rest/outgoing-caller-ids/instance-delete/instance-delete.9.x.java b/rest/outgoing-caller-ids/instance-delete/instance-delete.10.x.java similarity index 100% rename from rest/outgoing-caller-ids/instance-delete/instance-delete.9.x.java rename to rest/outgoing-caller-ids/instance-delete/instance-delete.10.x.java diff --git a/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.9.x.java b/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.9.x.java b/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.9.x.java b/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.9.x.java rename to rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.9.x.java b/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.9.x.java rename to rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.9.x.java b/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.10.x.java similarity index 100% rename from rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.9.x.java rename to rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.10.x.java diff --git a/rest/participant/instance-delete-example-1/instance-delete-example-1.9.x.java b/rest/participant/instance-delete-example-1/instance-delete-example-1.10.x.java similarity index 100% rename from rest/participant/instance-delete-example-1/instance-delete-example-1.9.x.java rename to rest/participant/instance-delete-example-1/instance-delete-example-1.10.x.java diff --git a/rest/participant/instance-get-example-1/instance-get-example-1.9.x.java b/rest/participant/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/participant/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/participant/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/participant/instance-post-example-1/instance-post-example-1.9.x.java b/rest/participant/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/participant/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/participant/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/participant/instance-post-example-2/instance-post-example-2.9.x.java b/rest/participant/instance-post-example-2/instance-post-example-2.10.x.java similarity index 100% rename from rest/participant/instance-post-example-2/instance-post-example-2.9.x.java rename to rest/participant/instance-post-example-2/instance-post-example-2.10.x.java diff --git a/rest/participant/list-get-example-1/list-get-example-1.9.x.java b/rest/participant/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/participant/list-get-example-1/list-get-example-1.9.x.java rename to rest/participant/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/participant/list-post-example-1/list-post-example-1.9.x.java b/rest/participant/list-post-example-1/list-post-example-1.10.x.java similarity index 100% rename from rest/participant/list-post-example-1/list-post-example-1.9.x.java rename to rest/participant/list-post-example-1/list-post-example-1.10.x.java diff --git a/rest/queue/instance-get-example-1/instance-get-example-1.9.x.java b/rest/queue/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/queue/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/queue/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/queue/instance-post-example-1/instance-post-example-1.9.x.java b/rest/queue/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/queue/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/queue/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/queue/list-get-example-1/list-get-example-1.9.x.java b/rest/queue/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/queue/list-get-example-1/list-get-example-1.9.x.java rename to rest/queue/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/queue/list-post-example-1/list-post-example-1.9.x.java b/rest/queue/list-post-example-1/list-post-example-1.10.x.java similarity index 100% rename from rest/queue/list-post-example-1/list-post-example-1.9.x.java rename to rest/queue/list-post-example-1/list-post-example-1.10.x.java diff --git a/rest/recording/get-recording-xml/get-recording-xml.9.x.java b/rest/recording/get-recording-xml/get-recording-xml.10.x.java similarity index 100% rename from rest/recording/get-recording-xml/get-recording-xml.9.x.java rename to rest/recording/get-recording-xml/get-recording-xml.10.x.java diff --git a/rest/recording/instance-delete-examples/instance-delete-examples.9.x.java b/rest/recording/instance-delete-examples/instance-delete-examples.10.x.java similarity index 100% rename from rest/recording/instance-delete-examples/instance-delete-examples.9.x.java rename to rest/recording/instance-delete-examples/instance-delete-examples.10.x.java diff --git a/rest/recording/list-get-example-1/list-get-example-1.9.x.java b/rest/recording/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/recording/list-get-example-1/list-get-example-1.9.x.java rename to rest/recording/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/recording/list-get-example-2/list-get-example-2.9.x.java b/rest/recording/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/recording/list-get-example-2/list-get-example-2.9.x.java rename to rest/recording/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/recording/list-get-example-3/list-get-example-3.9.x.java b/rest/recording/list-get-example-3/list-get-example-3.10.x.java similarity index 100% rename from rest/recording/list-get-example-3/list-get-example-3.9.x.java rename to rest/recording/list-get-example-3/list-get-example-3.10.x.java diff --git a/rest/recording/list-get-example-4/list-get-example-4.9.x.java b/rest/recording/list-get-example-4/list-get-example-4.10.x.java similarity index 100% rename from rest/recording/list-get-example-4/list-get-example-4.9.x.java rename to rest/recording/list-get-example-4/list-get-example-4.10.x.java diff --git a/rest/recording/list-get-example-5/list-get-example-5.9.x.java b/rest/recording/list-get-example-5/list-get-example-5.10.x.java similarity index 100% rename from rest/recording/list-get-example-5/list-get-example-5.9.x.java rename to rest/recording/list-get-example-5/list-get-example-5.10.x.java diff --git a/rest/recording/list-recording-transcriptions/list-recording-transcriptions-9.x.java b/rest/recording/list-recording-transcriptions/list-recording-transcriptions-10.x.java similarity index 100% rename from rest/recording/list-recording-transcriptions/list-recording-transcriptions-9.x.java rename to rest/recording/list-recording-transcriptions/list-recording-transcriptions-10.x.java diff --git a/rest/sending-messages/example-1/example-1.9.x.java b/rest/sending-messages/example-1/example-1.10.x.java similarity index 100% rename from rest/sending-messages/example-1/example-1.9.x.java rename to rest/sending-messages/example-1/example-1.10.x.java diff --git a/rest/short-codes/instance-get-example-1/instance-get-example-1.9.x.java b/rest/short-codes/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/short-codes/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/short-codes/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/short-codes/instance-post-example-1/instance-post-example-1.9.x.java b/rest/short-codes/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/short-codes/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/short-codes/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/short-codes/list-get-example-1/list-get-example-1.9.x.java b/rest/short-codes/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/short-codes/list-get-example-1/list-get-example-1.9.x.java rename to rest/short-codes/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/short-codes/list-get-example-2/list-get-example-2.9.x.java b/rest/short-codes/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/short-codes/list-get-example-2/list-get-example-2.9.x.java rename to rest/short-codes/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/short-codes/list-get-example-3/list-get-example-3.9.x.java b/rest/short-codes/list-get-example-3/list-get-example-3.10.x.java similarity index 100% rename from rest/short-codes/list-get-example-3/list-get-example-3.9.x.java rename to rest/short-codes/list-get-example-3/list-get-example-3.10.x.java diff --git a/rest/sip-in/associate-control-domain/associate-control-domain.9.x.java b/rest/sip-in/associate-control-domain/associate-control-domain.10.x.java similarity index 100% rename from rest/sip-in/associate-control-domain/associate-control-domain.9.x.java rename to rest/sip-in/associate-control-domain/associate-control-domain.10.x.java diff --git a/rest/sip-in/create-acl-address/create-acl-address.9.x.java b/rest/sip-in/create-acl-address/create-acl-address.10.x.java similarity index 100% rename from rest/sip-in/create-acl-address/create-acl-address.9.x.java rename to rest/sip-in/create-acl-address/create-acl-address.10.x.java diff --git a/rest/sip-in/create-credential-list/create-credential-list.9.x.java b/rest/sip-in/create-credential-list/create-credential-list.10.x.java similarity index 100% rename from rest/sip-in/create-credential-list/create-credential-list.9.x.java rename to rest/sip-in/create-credential-list/create-credential-list.10.x.java diff --git a/rest/sip-in/create-credential/create-credential.9.x.java b/rest/sip-in/create-credential/create-credential.10.x.java similarity index 100% rename from rest/sip-in/create-credential/create-credential.9.x.java rename to rest/sip-in/create-credential/create-credential.10.x.java diff --git a/rest/sip-in/create-domain/create-domain.9.x.java b/rest/sip-in/create-domain/create-domain.10.x.java similarity index 100% rename from rest/sip-in/create-domain/create-domain.9.x.java rename to rest/sip-in/create-domain/create-domain.10.x.java diff --git a/rest/sip-in/create-ip-acl/create-ip-acl.9.x.java b/rest/sip-in/create-ip-acl/create-ip-acl.10.x.java similarity index 100% rename from rest/sip-in/create-ip-acl/create-ip-acl.9.x.java rename to rest/sip-in/create-ip-acl/create-ip-acl.10.x.java diff --git a/rest/sip-in/delete-access-mapping-old/delete-access-mapping.9.x.java b/rest/sip-in/delete-access-mapping-old/delete-access-mapping.10.x.java similarity index 100% rename from rest/sip-in/delete-access-mapping-old/delete-access-mapping.9.x.java rename to rest/sip-in/delete-access-mapping-old/delete-access-mapping.10.x.java diff --git a/rest/sip-in/delete-access-mapping/delete-access-mapping.9.x.java b/rest/sip-in/delete-access-mapping/delete-access-mapping.10.x.java similarity index 100% rename from rest/sip-in/delete-access-mapping/delete-access-mapping.9.x.java rename to rest/sip-in/delete-access-mapping/delete-access-mapping.10.x.java diff --git a/rest/sip-in/delete-address-instance/delete-address-instance.9.x.java b/rest/sip-in/delete-address-instance/delete-address-instance.10.x.java similarity index 100% rename from rest/sip-in/delete-address-instance/delete-address-instance.9.x.java rename to rest/sip-in/delete-address-instance/delete-address-instance.10.x.java diff --git a/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.9.x.java b/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.10.x.java similarity index 100% rename from rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.9.x.java rename to rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.10.x.java diff --git a/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.9.x.java b/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.10.x.java similarity index 100% rename from rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.9.x.java rename to rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.10.x.java diff --git a/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.9.x.java b/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.10.x.java similarity index 100% rename from rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.9.x.java rename to rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.10.x.java diff --git a/rest/sip-in/delete-credential/delete-credential.9.x.java b/rest/sip-in/delete-credential/delete-credential.10.x.java similarity index 100% rename from rest/sip-in/delete-credential/delete-credential.9.x.java rename to rest/sip-in/delete-credential/delete-credential.10.x.java diff --git a/rest/sip-in/delete-domain-instance/delete-domain-instance.9.x.java b/rest/sip-in/delete-domain-instance/delete-domain-instance.10.x.java similarity index 100% rename from rest/sip-in/delete-domain-instance/delete-domain-instance.9.x.java rename to rest/sip-in/delete-domain-instance/delete-domain-instance.10.x.java diff --git a/rest/sip-in/delete-ip-acl/delete-ip-acl.9.x.java b/rest/sip-in/delete-ip-acl/delete-ip-acl.10.x.java similarity index 100% rename from rest/sip-in/delete-ip-acl/delete-ip-acl.9.x.java rename to rest/sip-in/delete-ip-acl/delete-ip-acl.10.x.java diff --git a/rest/sip-in/get-acl-addresses/get-acl-addresses.9.x.java b/rest/sip-in/get-acl-addresses/get-acl-addresses.10.x.java similarity index 100% rename from rest/sip-in/get-acl-addresses/get-acl-addresses.9.x.java rename to rest/sip-in/get-acl-addresses/get-acl-addresses.10.x.java diff --git a/rest/sip-in/get-acl-list/get-acl-list.9.x.java b/rest/sip-in/get-acl-list/get-acl-list.10.x.java similarity index 100% rename from rest/sip-in/get-acl-list/get-acl-list.9.x.java rename to rest/sip-in/get-acl-list/get-acl-list.10.x.java diff --git a/rest/sip-in/get-acl-lists/get-acl-lists.9.x.java b/rest/sip-in/get-acl-lists/get-acl-lists.10.x.java similarity index 100% rename from rest/sip-in/get-acl-lists/get-acl-lists.9.x.java rename to rest/sip-in/get-acl-lists/get-acl-lists.10.x.java diff --git a/rest/sip-in/get-address-instance/get-address-instance.9.x.java b/rest/sip-in/get-address-instance/get-address-instance.10.x.java similarity index 100% rename from rest/sip-in/get-address-instance/get-address-instance.9.x.java rename to rest/sip-in/get-address-instance/get-address-instance.10.x.java diff --git a/rest/sip-in/get-credential-list-instance/get-credential-list-instance.9.x.java b/rest/sip-in/get-credential-list-instance/get-credential-list-instance.10.x.java similarity index 100% rename from rest/sip-in/get-credential-list-instance/get-credential-list-instance.9.x.java rename to rest/sip-in/get-credential-list-instance/get-credential-list-instance.10.x.java diff --git a/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.9.x.java b/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.10.x.java similarity index 100% rename from rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.9.x.java rename to rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.10.x.java diff --git a/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.9.x.java b/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.10.x.java similarity index 100% rename from rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.9.x.java rename to rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.10.x.java diff --git a/rest/sip-in/get-credential-lists/get-credential-lists.9.x.java b/rest/sip-in/get-credential-lists/get-credential-lists.10.x.java similarity index 100% rename from rest/sip-in/get-credential-lists/get-credential-lists.9.x.java rename to rest/sip-in/get-credential-lists/get-credential-lists.10.x.java diff --git a/rest/sip-in/get-credential/get-credential.9.x.java b/rest/sip-in/get-credential/get-credential.10.x.java similarity index 100% rename from rest/sip-in/get-credential/get-credential.9.x.java rename to rest/sip-in/get-credential/get-credential.10.x.java diff --git a/rest/sip-in/get-domain-instance/get-domain-instance.9.x.java b/rest/sip-in/get-domain-instance/get-domain-instance.10.x.java similarity index 100% rename from rest/sip-in/get-domain-instance/get-domain-instance.9.x.java rename to rest/sip-in/get-domain-instance/get-domain-instance.10.x.java diff --git a/rest/sip-in/get-domain-mappings/get-domain-mappings.9.x.java b/rest/sip-in/get-domain-mappings/get-domain-mappings.10.x.java similarity index 100% rename from rest/sip-in/get-domain-mappings/get-domain-mappings.9.x.java rename to rest/sip-in/get-domain-mappings/get-domain-mappings.10.x.java diff --git a/rest/sip-in/get-domains/get-domains.9.x.java b/rest/sip-in/get-domains/get-domains.10.x.java similarity index 100% rename from rest/sip-in/get-domains/get-domains.9.x.java rename to rest/sip-in/get-domains/get-domains.10.x.java diff --git a/rest/sip-in/get-ip-acls/get-ip-acls.9.x.java b/rest/sip-in/get-ip-acls/get-ip-acls.10.x.java similarity index 100% rename from rest/sip-in/get-ip-acls/get-ip-acls.9.x.java rename to rest/sip-in/get-ip-acls/get-ip-acls.10.x.java diff --git a/rest/sip-in/get-mappings-instance-old/get-mappings-instance.9.x.java b/rest/sip-in/get-mappings-instance-old/get-mappings-instance.10.x.java similarity index 100% rename from rest/sip-in/get-mappings-instance-old/get-mappings-instance.9.x.java rename to rest/sip-in/get-mappings-instance-old/get-mappings-instance.10.x.java diff --git a/rest/sip-in/get-mappings-instance/get-mappings-instance.9.x.java b/rest/sip-in/get-mappings-instance/get-mappings-instance.10.x.java similarity index 100% rename from rest/sip-in/get-mappings-instance/get-mappings-instance.9.x.java rename to rest/sip-in/get-mappings-instance/get-mappings-instance.10.x.java diff --git a/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.9.x.java b/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.10.x.java similarity index 100% rename from rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.9.x.java rename to rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.10.x.java diff --git a/rest/sip-in/map-credential-list-domain/map-credential-list-domain.9.x.java b/rest/sip-in/map-credential-list-domain/map-credential-list-domain.10.x.java similarity index 100% rename from rest/sip-in/map-credential-list-domain/map-credential-list-domain.9.x.java rename to rest/sip-in/map-credential-list-domain/map-credential-list-domain.10.x.java diff --git a/rest/sip-in/map-list-domain-old/map-list-domain.9.x.java b/rest/sip-in/map-list-domain-old/map-list-domain.10.x.java similarity index 100% rename from rest/sip-in/map-list-domain-old/map-list-domain.9.x.java rename to rest/sip-in/map-list-domain-old/map-list-domain.10.x.java diff --git a/rest/sip-in/map-list-domain/map-list-domain.9.x.java b/rest/sip-in/map-list-domain/map-list-domain.10.x.java similarity index 100% rename from rest/sip-in/map-list-domain/map-list-domain.9.x.java rename to rest/sip-in/map-list-domain/map-list-domain.10.x.java diff --git a/rest/sip-in/update-address-instance/update-address-instance.9.x.java b/rest/sip-in/update-address-instance/update-address-instance.10.x.java similarity index 100% rename from rest/sip-in/update-address-instance/update-address-instance.9.x.java rename to rest/sip-in/update-address-instance/update-address-instance.10.x.java diff --git a/rest/sip-in/update-credential-list-instance/update-credential-list-instance.9.x.java b/rest/sip-in/update-credential-list-instance/update-credential-list-instance.10.x.java similarity index 100% rename from rest/sip-in/update-credential-list-instance/update-credential-list-instance.9.x.java rename to rest/sip-in/update-credential-list-instance/update-credential-list-instance.10.x.java diff --git a/rest/sip-in/update-credential/update-credential.9.x.java b/rest/sip-in/update-credential/update-credential.10.x.java similarity index 100% rename from rest/sip-in/update-credential/update-credential.9.x.java rename to rest/sip-in/update-credential/update-credential.10.x.java diff --git a/rest/sip-in/update-domain-instance/update-domain-instance.9.x.java b/rest/sip-in/update-domain-instance/update-domain-instance.10.x.java similarity index 100% rename from rest/sip-in/update-domain-instance/update-domain-instance.9.x.java rename to rest/sip-in/update-domain-instance/update-domain-instance.10.x.java diff --git a/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.9.x.java b/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.10.x.java similarity index 100% rename from rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.9.x.java rename to rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.10.x.java diff --git a/rest/sip/example-1/example-1.9.x.java b/rest/sip/example-1/example-1.10.x.java similarity index 100% rename from rest/sip/example-1/example-1.9.x.java rename to rest/sip/example-1/example-1.10.x.java diff --git a/rest/sip/example-2/example-2.9.x.java b/rest/sip/example-2/example-2.10.x.java similarity index 100% rename from rest/sip/example-2/example-2.9.x.java rename to rest/sip/example-2/example-2.10.x.java diff --git a/rest/sip/example-3/example-3.9.x.java b/rest/sip/example-3/example-3.10.x.java similarity index 100% rename from rest/sip/example-3/example-3.9.x.java rename to rest/sip/example-3/example-3.10.x.java diff --git a/rest/sms/instance-get-example-1/instance-get-example-1.9.x.java b/rest/sms/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/sms/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/sms/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/sms/list-get-example-1/list-get-example-1.9.x.java b/rest/sms/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/sms/list-get-example-1/list-get-example-1.9.x.java rename to rest/sms/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.9.x.java b/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.10.x.java similarity index 100% rename from rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.9.x.java rename to rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.10.x.java diff --git a/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.9.x.java b/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.10.x.java similarity index 100% rename from rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.9.x.java rename to rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.10.x.java diff --git a/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.9.x.java b/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.10.x.java similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.9.x.java rename to rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.10.x.java diff --git a/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.9.x.java b/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.10.x.java similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.9.x.java rename to rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.10.x.java diff --git a/rest/subaccounts/voice-example/subaccount-call.9.x.java b/rest/subaccounts/voice-example/subaccount-call.10.x.java similarity index 100% rename from rest/subaccounts/voice-example/subaccount-call.9.x.java rename to rest/subaccounts/voice-example/subaccount-call.10.x.java diff --git a/rest/taskrouter/activities/instance/delete/example-1/example-1.9.x.java b/rest/taskrouter/activities/instance/delete/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/activities/instance/delete/example-1/example-1.9.x.java rename to rest/taskrouter/activities/instance/delete/example-1/example-1.10.x.java diff --git a/rest/taskrouter/activities/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/activities/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/activities/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/activities/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/activities/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/activities/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/activities/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/activities/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/activities/list/get/example-1/example-1.9.x.java b/rest/taskrouter/activities/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/activities/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/activities/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/activities/list/post/example-1/example-1.9.x.java b/rest/taskrouter/activities/list/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/activities/list/post/example-1/example-1.9.x.java rename to rest/taskrouter/activities/list/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/events/example-1/example-1.9.x.java b/rest/taskrouter/events/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/events/example-1/example-1.9.x.java rename to rest/taskrouter/events/example-1/example-1.10.x.java diff --git a/rest/taskrouter/jwts/taskqueue/example-1/example-1.9.x.java b/rest/taskrouter/jwts/taskqueue/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/jwts/taskqueue/example-1/example-1.9.x.java rename to rest/taskrouter/jwts/taskqueue/example-1/example-1.10.x.java diff --git a/rest/taskrouter/jwts/worker/example-1/example-1.9.x.java b/rest/taskrouter/jwts/worker/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/jwts/worker/example-1/example-1.9.x.java rename to rest/taskrouter/jwts/worker/example-1/example-1.10.x.java diff --git a/rest/taskrouter/jwts/workspace/example-1/example-1.9.x.java b/rest/taskrouter/jwts/workspace/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/jwts/workspace/example-1/example-1.9.x.java rename to rest/taskrouter/jwts/workspace/example-1/example-1.10.x.java diff --git a/rest/taskrouter/reservations/call/example-1.9.x.java b/rest/taskrouter/reservations/call/example-1.10.x.java similarity index 100% rename from rest/taskrouter/reservations/call/example-1.9.x.java rename to rest/taskrouter/reservations/call/example-1.10.x.java diff --git a/rest/taskrouter/reservations/conference/conference.9.x.java b/rest/taskrouter/reservations/conference/conference.10.x.java similarity index 100% rename from rest/taskrouter/reservations/conference/conference.9.x.java rename to rest/taskrouter/reservations/conference/conference.10.x.java diff --git a/rest/taskrouter/reservations/dequeue/example-1.9.x.java b/rest/taskrouter/reservations/dequeue/example-1.10.x.java similarity index 100% rename from rest/taskrouter/reservations/dequeue/example-1.9.x.java rename to rest/taskrouter/reservations/dequeue/example-1.10.x.java diff --git a/rest/taskrouter/reservations/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/reservations/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/reservations/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/reservations/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/reservations/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/reservations/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/reservations/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/reservations/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/reservations/list/get/example-1/example-1.9.x.java b/rest/taskrouter/reservations/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/reservations/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/reservations/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/reservations/redirect/redirect.9.x.java b/rest/taskrouter/reservations/redirect/redirect.10.x.java similarity index 100% rename from rest/taskrouter/reservations/redirect/redirect.9.x.java rename to rest/taskrouter/reservations/redirect/redirect.10.x.java diff --git a/rest/taskrouter/reservations/reject/example-1.9.x.java b/rest/taskrouter/reservations/reject/example-1.10.x.java similarity index 100% rename from rest/taskrouter/reservations/reject/example-1.9.x.java rename to rest/taskrouter/reservations/reject/example-1.10.x.java diff --git a/rest/taskrouter/statistics/taskqueue/cumulative/example-1.9.x.java b/rest/taskrouter/statistics/taskqueue/cumulative/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/taskqueue/cumulative/example-1.9.x.java rename to rest/taskrouter/statistics/taskqueue/cumulative/example-1.10.x.java diff --git a/rest/taskrouter/statistics/taskqueue/example-1/example-1.9.x.java b/rest/taskrouter/statistics/taskqueue/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/taskqueue/example-1/example-1.9.x.java rename to rest/taskrouter/statistics/taskqueue/example-1/example-1.10.x.java diff --git a/rest/taskrouter/statistics/taskqueue/realtime/example-1.9.x.java b/rest/taskrouter/statistics/taskqueue/realtime/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/taskqueue/realtime/example-1.9.x.java rename to rest/taskrouter/statistics/taskqueue/realtime/example-1.10.x.java diff --git a/rest/taskrouter/statistics/worker/example-1/example-1.9.x.java b/rest/taskrouter/statistics/worker/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/worker/example-1/example-1.9.x.java rename to rest/taskrouter/statistics/worker/example-1/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workers/cumulative/example-1.9.x.java b/rest/taskrouter/statistics/workers/cumulative/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workers/cumulative/example-1.9.x.java rename to rest/taskrouter/statistics/workers/cumulative/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workers/example-1/example-1.9.x.java b/rest/taskrouter/statistics/workers/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workers/example-1/example-1.9.x.java rename to rest/taskrouter/statistics/workers/example-1/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workers/realtime/example-1.9.x.java b/rest/taskrouter/statistics/workers/realtime/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workers/realtime/example-1.9.x.java rename to rest/taskrouter/statistics/workers/realtime/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workflow/cumulative/example-1.9.x.java b/rest/taskrouter/statistics/workflow/cumulative/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workflow/cumulative/example-1.9.x.java rename to rest/taskrouter/statistics/workflow/cumulative/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workflow/example-1/example-1.9.x.java b/rest/taskrouter/statistics/workflow/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workflow/example-1/example-1.9.x.java rename to rest/taskrouter/statistics/workflow/example-1/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workflow/realtime/example-1.9.x.java b/rest/taskrouter/statistics/workflow/realtime/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workflow/realtime/example-1.9.x.java rename to rest/taskrouter/statistics/workflow/realtime/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workspace/cumulative/example-1.9.x.java b/rest/taskrouter/statistics/workspace/cumulative/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workspace/cumulative/example-1.9.x.java rename to rest/taskrouter/statistics/workspace/cumulative/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workspace/example-1/example-1.9.x.java b/rest/taskrouter/statistics/workspace/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workspace/example-1/example-1.9.x.java rename to rest/taskrouter/statistics/workspace/example-1/example-1.10.x.java diff --git a/rest/taskrouter/statistics/workspace/realtime/example-1.9.x.java b/rest/taskrouter/statistics/workspace/realtime/example-1.10.x.java similarity index 100% rename from rest/taskrouter/statistics/workspace/realtime/example-1.9.x.java rename to rest/taskrouter/statistics/workspace/realtime/example-1.10.x.java diff --git a/rest/taskrouter/taskchannels/instance/delete/example-1/example-1.9.x.java b/rest/taskrouter/taskchannels/instance/delete/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskchannels/instance/delete/example-1/example-1.9.x.java rename to rest/taskrouter/taskchannels/instance/delete/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskchannels/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/taskchannels/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskchannels/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/taskchannels/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskchannels/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/taskchannels/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskchannels/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/taskchannels/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskchannels/list/get/example-1/example-1.9.x.java b/rest/taskrouter/taskchannels/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskchannels/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/taskchannels/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskchannels/list/post/example-1/example-1.9.x.java b/rest/taskrouter/taskchannels/list/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskchannels/list/post/example-1/example-1.9.x.java rename to rest/taskrouter/taskchannels/list/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.9.x.java b/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskqueues/instance/delete/example-1/example-1.9.x.java rename to rest/taskrouter/taskqueues/instance/delete/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskqueues/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/taskqueues/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskqueues/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/taskqueues/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskqueues/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/taskqueues/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskqueues/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/taskqueues/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskqueues/list/get/example-1/example-1.9.x.java b/rest/taskrouter/taskqueues/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskqueues/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/taskqueues/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/taskqueues/list/post/example-1/example-1.9.x.java b/rest/taskrouter/taskqueues/list/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/taskqueues/list/post/example-1/example-1.9.x.java rename to rest/taskrouter/taskqueues/list/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/tasks/instance/delete/example-1/example-1.9.x.java b/rest/taskrouter/tasks/instance/delete/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/tasks/instance/delete/example-1/example-1.9.x.java rename to rest/taskrouter/tasks/instance/delete/example-1/example-1.10.x.java diff --git a/rest/taskrouter/tasks/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/tasks/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/tasks/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/tasks/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/tasks/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/tasks/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/tasks/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/tasks/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/tasks/list/get/example-1/example-1.9.x.java b/rest/taskrouter/tasks/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/tasks/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/tasks/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/tasks/list/post/example-1/example-1.9.x.java b/rest/taskrouter/tasks/list/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/tasks/list/post/example-1/example-1.9.x.java rename to rest/taskrouter/tasks/list/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/twiml/example1/example/example.9.x.java b/rest/taskrouter/twiml/example1/example/example.10.x.java similarity index 100% rename from rest/taskrouter/twiml/example1/example/example.9.x.java rename to rest/taskrouter/twiml/example1/example/example.10.x.java diff --git a/rest/taskrouter/twiml/example2/example/example.9.x.java b/rest/taskrouter/twiml/example2/example/example.10.x.java similarity index 100% rename from rest/taskrouter/twiml/example2/example/example.9.x.java rename to rest/taskrouter/twiml/example2/example/example.10.x.java diff --git a/rest/taskrouter/twiml/example3/example/example.9.x.java b/rest/taskrouter/twiml/example3/example/example.10.x.java similarity index 100% rename from rest/taskrouter/twiml/example3/example/example.9.x.java rename to rest/taskrouter/twiml/example3/example/example.10.x.java diff --git a/rest/taskrouter/twiml/example4/example/example.9.x.java b/rest/taskrouter/twiml/example4/example/example.10.x.java similarity index 100% rename from rest/taskrouter/twiml/example4/example/example.9.x.java rename to rest/taskrouter/twiml/example4/example/example.10.x.java diff --git a/rest/taskrouter/worker-channels/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/worker-channels/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-channels/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/worker-channels/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/worker-channels/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/worker-channels/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-channels/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/worker-channels/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/worker-channels/list/get/example-1/example-1.9.x.java b/rest/taskrouter/worker-channels/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-channels/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/worker-channels/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/worker-reservations/accept/example-1.9.x.java b/rest/taskrouter/worker-reservations/accept/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-reservations/accept/example-1.9.x.java rename to rest/taskrouter/worker-reservations/accept/example-1.10.x.java diff --git a/rest/taskrouter/worker-reservations/call/example-1.9.x.java b/rest/taskrouter/worker-reservations/call/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-reservations/call/example-1.9.x.java rename to rest/taskrouter/worker-reservations/call/example-1.10.x.java diff --git a/rest/taskrouter/worker-reservations/dequeue/example-1.9.x.java b/rest/taskrouter/worker-reservations/dequeue/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-reservations/dequeue/example-1.9.x.java rename to rest/taskrouter/worker-reservations/dequeue/example-1.10.x.java diff --git a/rest/taskrouter/worker-reservations/instance-get-example1/example-1.9.x.java b/rest/taskrouter/worker-reservations/instance-get-example1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-reservations/instance-get-example1/example-1.9.x.java rename to rest/taskrouter/worker-reservations/instance-get-example1/example-1.10.x.java diff --git a/rest/taskrouter/worker-reservations/list-get-example1/example-1.9.x.java b/rest/taskrouter/worker-reservations/list-get-example1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-reservations/list-get-example1/example-1.9.x.java rename to rest/taskrouter/worker-reservations/list-get-example1/example-1.10.x.java diff --git a/rest/taskrouter/worker-reservations/reject/example-1.9.x.java b/rest/taskrouter/worker-reservations/reject/example-1.10.x.java similarity index 100% rename from rest/taskrouter/worker-reservations/reject/example-1.9.x.java rename to rest/taskrouter/worker-reservations/reject/example-1.10.x.java diff --git a/rest/taskrouter/workers/instance/delete/example-1/example-1.9.x.java b/rest/taskrouter/workers/instance/delete/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workers/instance/delete/example-1/example-1.9.x.java rename to rest/taskrouter/workers/instance/delete/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workers/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/workers/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workers/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/workers/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workers/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/workers/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workers/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/workers/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workers/list/get/example-1/example-1.9.x.java b/rest/taskrouter/workers/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workers/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/workers/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workers/list/get/example-2/example-2.9.x.java b/rest/taskrouter/workers/list/get/example-2/example-2.10.x.java similarity index 100% rename from rest/taskrouter/workers/list/get/example-2/example-2.9.x.java rename to rest/taskrouter/workers/list/get/example-2/example-2.10.x.java diff --git a/rest/taskrouter/workers/list/post/example-1/example-1.9.x.java b/rest/taskrouter/workers/list/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workers/list/post/example-1/example-1.9.x.java rename to rest/taskrouter/workers/list/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workflows/instance/delete/example-1/example-1.9.x.java b/rest/taskrouter/workflows/instance/delete/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workflows/instance/delete/example-1/example-1.9.x.java rename to rest/taskrouter/workflows/instance/delete/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workflows/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/workflows/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workflows/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/workflows/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workflows/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/workflows/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workflows/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/workflows/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workflows/list/get/example-1/example-1.9.x.java b/rest/taskrouter/workflows/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workflows/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/workflows/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workflows/list/post/example-1/example-1.9.x.java b/rest/taskrouter/workflows/list/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workflows/list/post/example-1/example-1.9.x.java rename to rest/taskrouter/workflows/list/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workspaces/instance/delete/example-1/example-1.9.x.java b/rest/taskrouter/workspaces/instance/delete/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workspaces/instance/delete/example-1/example-1.9.x.java rename to rest/taskrouter/workspaces/instance/delete/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workspaces/instance/get/example-1/example-1.9.x.java b/rest/taskrouter/workspaces/instance/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workspaces/instance/get/example-1/example-1.9.x.java rename to rest/taskrouter/workspaces/instance/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workspaces/instance/post/example-1/example-1.9.x.java b/rest/taskrouter/workspaces/instance/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workspaces/instance/post/example-1/example-1.9.x.java rename to rest/taskrouter/workspaces/instance/post/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workspaces/list/get/example-1/example-1.9.x.java b/rest/taskrouter/workspaces/list/get/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workspaces/list/get/example-1/example-1.9.x.java rename to rest/taskrouter/workspaces/list/get/example-1/example-1.10.x.java diff --git a/rest/taskrouter/workspaces/list/post/example-1/example-1.9.x.java b/rest/taskrouter/workspaces/list/post/example-1/example-1.10.x.java similarity index 100% rename from rest/taskrouter/workspaces/list/post/example-1/example-1.9.x.java rename to rest/taskrouter/workspaces/list/post/example-1/example-1.10.x.java diff --git a/rest/test-credentials/test-calls-example-1/test-calls-example-1.9.x.java b/rest/test-credentials/test-calls-example-1/test-calls-example-1.10.x.java similarity index 100% rename from rest/test-credentials/test-calls-example-1/test-calls-example-1.9.x.java rename to rest/test-credentials/test-calls-example-1/test-calls-example-1.10.x.java diff --git a/rest/test-credentials/test-calls-example-2/test-calls-example-2.9.x.java b/rest/test-credentials/test-calls-example-2/test-calls-example-2.10.x.java similarity index 100% rename from rest/test-credentials/test-calls-example-2/test-calls-example-2.9.x.java rename to rest/test-credentials/test-calls-example-2/test-calls-example-2.10.x.java diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.9.x.java b/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.10.x.java similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.9.x.java rename to rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.10.x.java diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.9.x.java b/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.10.x.java similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.9.x.java rename to rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.10.x.java diff --git a/rest/test-credentials/test-post-example-3/test-post-example-3.9.x.java b/rest/test-credentials/test-post-example-3/test-post-example-3.10.x.java similarity index 100% rename from rest/test-credentials/test-post-example-3/test-post-example-3.9.x.java rename to rest/test-credentials/test-post-example-3/test-post-example-3.10.x.java diff --git a/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.9.x.java b/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.10.x.java similarity index 100% rename from rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.9.x.java rename to rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.10.x.java diff --git a/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.9.x.java b/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.10.x.java similarity index 100% rename from rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.9.x.java rename to rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.10.x.java diff --git a/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.9.x.java b/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.10.x.java similarity index 100% rename from rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.9.x.java rename to rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.10.x.java diff --git a/rest/token/list-post-1-hour-example/list-post-1-hour-example.9.x.java b/rest/token/list-post-1-hour-example/list-post-1-hour-example.10.x.java similarity index 100% rename from rest/token/list-post-1-hour-example/list-post-1-hour-example.9.x.java rename to rest/token/list-post-1-hour-example/list-post-1-hour-example.10.x.java diff --git a/rest/token/list-post-example/list-post-example.9.x.java b/rest/token/list-post-example/list-post-example.10.x.java similarity index 100% rename from rest/token/list-post-example/list-post-example.9.x.java rename to rest/token/list-post-example/list-post-example.10.x.java diff --git a/rest/transcription/instance-delete-examples/instance-delete-examples.9.x.java b/rest/transcription/instance-delete-examples/instance-delete-examples.10.x.java similarity index 100% rename from rest/transcription/instance-delete-examples/instance-delete-examples.9.x.java rename to rest/transcription/instance-delete-examples/instance-delete-examples.10.x.java diff --git a/rest/transcription/instance-get-example-1/instance-get-example-1.9.x.java b/rest/transcription/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/transcription/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/transcription/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/transcription/list-get-example-1/list-get-example-1.9.x.java b/rest/transcription/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/transcription/list-get-example-1/list-get-example-1.9.x.java rename to rest/transcription/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/usage-records/list-get-example-1/list-get-example-1.9.x.java b/rest/usage-records/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/usage-records/list-get-example-1/list-get-example-1.9.x.java rename to rest/usage-records/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/usage-records/list-get-example-2/list-get-example-2.9.x.java b/rest/usage-records/list-get-example-2/list-get-example-2.10.x.java similarity index 100% rename from rest/usage-records/list-get-example-2/list-get-example-2.9.x.java rename to rest/usage-records/list-get-example-2/list-get-example-2.10.x.java diff --git a/rest/usage-records/list-get-example-3/list-get-example-3.9.x.java b/rest/usage-records/list-get-example-3/list-get-example-3.10.x.java similarity index 100% rename from rest/usage-records/list-get-example-3/list-get-example-3.9.x.java rename to rest/usage-records/list-get-example-3/list-get-example-3.10.x.java diff --git a/rest/usage-records/list-get-example-4/list-get-example-4.9.x.java b/rest/usage-records/list-get-example-4/list-get-example-4.10.x.java similarity index 100% rename from rest/usage-records/list-get-example-4/list-get-example-4.9.x.java rename to rest/usage-records/list-get-example-4/list-get-example-4.10.x.java diff --git a/rest/usage-records/list-get-example-5/list-get-example-5.9.x.java b/rest/usage-records/list-get-example-5/list-get-example-5.10.x.java similarity index 100% rename from rest/usage-records/list-get-example-5/list-get-example-5.9.x.java rename to rest/usage-records/list-get-example-5/list-get-example-5.10.x.java diff --git a/rest/usage-triggers/instance-get-example-1/instance-get-example-1.9.x.java b/rest/usage-triggers/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from rest/usage-triggers/instance-get-example-1/instance-get-example-1.9.x.java rename to rest/usage-triggers/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/rest/usage-triggers/instance-post-example-1/instance-post-example-1.9.x.java b/rest/usage-triggers/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from rest/usage-triggers/instance-post-example-1/instance-post-example-1.9.x.java rename to rest/usage-triggers/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/rest/usage-triggers/list-get-example-1/list-get-example-1.9.x.java b/rest/usage-triggers/list-get-example-1/list-get-example-1.10.x.java similarity index 100% rename from rest/usage-triggers/list-get-example-1/list-get-example-1.9.x.java rename to rest/usage-triggers/list-get-example-1/list-get-example-1.10.x.java diff --git a/rest/usage-triggers/list-post-example-1/list-post-example-1.9.x.java b/rest/usage-triggers/list-post-example-1/list-post-example-1.10.x.java similarity index 100% rename from rest/usage-triggers/list-post-example-1/list-post-example-1.9.x.java rename to rest/usage-triggers/list-post-example-1/list-post-example-1.10.x.java diff --git a/rest/voice/generate-twiml-play/twiml-play.9.x.java b/rest/voice/generate-twiml-play/twiml-play.10.x.java similarity index 100% rename from rest/voice/generate-twiml-play/twiml-play.9.x.java rename to rest/voice/generate-twiml-play/twiml-play.10.x.java diff --git a/rest/voice/generate-twiml-say/generate-twiml-say.9.x.java b/rest/voice/generate-twiml-say/generate-twiml-say.10.x.java similarity index 100% rename from rest/voice/generate-twiml-say/generate-twiml-say.9.x.java rename to rest/voice/generate-twiml-say/generate-twiml-say.10.x.java diff --git a/rest/voice/outbound-calls/example-1/example-1.9.x.java b/rest/voice/outbound-calls/example-1/example-1.10.x.java similarity index 100% rename from rest/voice/outbound-calls/example-1/example-1.9.x.java rename to rest/voice/outbound-calls/example-1/example-1.10.x.java diff --git a/rest/voice/outbound-calls/example-2/example-2.9.x.java b/rest/voice/outbound-calls/example-2/example-2.10.x.java similarity index 100% rename from rest/voice/outbound-calls/example-2/example-2.9.x.java rename to rest/voice/outbound-calls/example-2/example-2.10.x.java diff --git a/rest/voice/outbound-calls/example-3/example-3.9.x.java b/rest/voice/outbound-calls/example-3/example-3.10.x.java similarity index 100% rename from rest/voice/outbound-calls/example-3/example-3.9.x.java rename to rest/voice/outbound-calls/example-3/example-3.10.x.java diff --git a/rest/voice/outbound-calls/example-4/example-4.9.x.java b/rest/voice/outbound-calls/example-4/example-4.10.x.java similarity index 100% rename from rest/voice/outbound-calls/example-4/example-4.9.x.java rename to rest/voice/outbound-calls/example-4/example-4.10.x.java diff --git a/rest/voice/twiml-recording-action/recording-action.9.x.java b/rest/voice/twiml-recording-action/recording-action.10.x.java similarity index 100% rename from rest/voice/twiml-recording-action/recording-action.9.x.java rename to rest/voice/twiml-recording-action/recording-action.10.x.java diff --git a/security/environment_variables/environment-variables-1.9.x.java b/security/environment_variables/environment-variables-1.10.x.java similarity index 100% rename from security/environment_variables/environment-variables-1.9.x.java rename to security/environment_variables/environment-variables-1.10.x.java diff --git a/security/signature_validation/signature_validation.9.x.java b/security/signature_validation/signature_validation.10.x.java similarity index 100% rename from security/signature_validation/signature_validation.9.x.java rename to security/signature_validation/signature_validation.10.x.java diff --git a/security/signature_validation_tests/signature_validation_tests.9.x.java b/security/signature_validation_tests/signature_validation_tests.10.x.java similarity index 100% rename from security/signature_validation_tests/signature_validation_tests.9.x.java rename to security/signature_validation_tests/signature_validation_tests.10.x.java diff --git a/stun-turn/list-post-example/list-post-example.9.x.java b/stun-turn/list-post-example/list-post-example.10.x.java similarity index 100% rename from stun-turn/list-post-example/list-post-example.9.x.java rename to stun-turn/list-post-example/list-post-example.10.x.java diff --git a/super-sim/sims/update-account/update-account.9.x.java b/super-sim/sims/update-account/update-account.10.x.java similarity index 100% rename from super-sim/sims/update-account/update-account.9.x.java rename to super-sim/sims/update-account/update-account.10.x.java diff --git a/sync/rest/document-permissions/delete-permission/delete-permission.9.x.java b/sync/rest/document-permissions/delete-permission/delete-permission.10.x.java similarity index 100% rename from sync/rest/document-permissions/delete-permission/delete-permission.9.x.java rename to sync/rest/document-permissions/delete-permission/delete-permission.10.x.java diff --git a/sync/rest/document-permissions/list-permissions/list-permissions.9.x.java b/sync/rest/document-permissions/list-permissions/list-permissions.10.x.java similarity index 100% rename from sync/rest/document-permissions/list-permissions/list-permissions.9.x.java rename to sync/rest/document-permissions/list-permissions/list-permissions.10.x.java diff --git a/sync/rest/document-permissions/retrieve-permission/retrieve-permission.9.x.java b/sync/rest/document-permissions/retrieve-permission/retrieve-permission.10.x.java similarity index 100% rename from sync/rest/document-permissions/retrieve-permission/retrieve-permission.9.x.java rename to sync/rest/document-permissions/retrieve-permission/retrieve-permission.10.x.java diff --git a/sync/rest/document-permissions/update-permission/update-permission.9.x.java b/sync/rest/document-permissions/update-permission/update-permission.10.x.java similarity index 100% rename from sync/rest/document-permissions/update-permission/update-permission.9.x.java rename to sync/rest/document-permissions/update-permission/update-permission.10.x.java diff --git a/sync/rest/documents/create-document/create-document.9.x.java b/sync/rest/documents/create-document/create-document.10.x.java similarity index 100% rename from sync/rest/documents/create-document/create-document.9.x.java rename to sync/rest/documents/create-document/create-document.10.x.java diff --git a/sync/rest/documents/delete-document/delete-document.9.x.java b/sync/rest/documents/delete-document/delete-document.10.x.java similarity index 100% rename from sync/rest/documents/delete-document/delete-document.9.x.java rename to sync/rest/documents/delete-document/delete-document.10.x.java diff --git a/sync/rest/documents/list-documents/list-documents.9.x.java b/sync/rest/documents/list-documents/list-documents.10.x.java similarity index 100% rename from sync/rest/documents/list-documents/list-documents.9.x.java rename to sync/rest/documents/list-documents/list-documents.10.x.java diff --git a/sync/rest/documents/retrieve-document/retrieve-document.9.x.java b/sync/rest/documents/retrieve-document/retrieve-document.10.x.java similarity index 100% rename from sync/rest/documents/retrieve-document/retrieve-document.9.x.java rename to sync/rest/documents/retrieve-document/retrieve-document.10.x.java diff --git a/sync/rest/documents/update-document/update-document.9.x.java b/sync/rest/documents/update-document/update-document.10.x.java similarity index 100% rename from sync/rest/documents/update-document/update-document.9.x.java rename to sync/rest/documents/update-document/update-document.10.x.java diff --git a/sync/rest/list-permissions/delete-permission/delete-permission.9.x.java b/sync/rest/list-permissions/delete-permission/delete-permission.10.x.java similarity index 100% rename from sync/rest/list-permissions/delete-permission/delete-permission.9.x.java rename to sync/rest/list-permissions/delete-permission/delete-permission.10.x.java diff --git a/sync/rest/list-permissions/list-permissions/list-permissions.9.x.java b/sync/rest/list-permissions/list-permissions/list-permissions.10.x.java similarity index 100% rename from sync/rest/list-permissions/list-permissions/list-permissions.9.x.java rename to sync/rest/list-permissions/list-permissions/list-permissions.10.x.java diff --git a/sync/rest/list-permissions/retrieve-permission/retrieve-permission.9.x.java b/sync/rest/list-permissions/retrieve-permission/retrieve-permission.10.x.java similarity index 100% rename from sync/rest/list-permissions/retrieve-permission/retrieve-permission.9.x.java rename to sync/rest/list-permissions/retrieve-permission/retrieve-permission.10.x.java diff --git a/sync/rest/list-permissions/update-permission/update-permission.9.x.java b/sync/rest/list-permissions/update-permission/update-permission.10.x.java similarity index 100% rename from sync/rest/list-permissions/update-permission/update-permission.9.x.java rename to sync/rest/list-permissions/update-permission/update-permission.10.x.java diff --git a/sync/rest/lists/create-list-item/create-list-item.9.x.java b/sync/rest/lists/create-list-item/create-list-item.10.x.java similarity index 100% rename from sync/rest/lists/create-list-item/create-list-item.9.x.java rename to sync/rest/lists/create-list-item/create-list-item.10.x.java diff --git a/sync/rest/lists/create-list/create-list.9.x.java b/sync/rest/lists/create-list/create-list.10.x.java similarity index 100% rename from sync/rest/lists/create-list/create-list.9.x.java rename to sync/rest/lists/create-list/create-list.10.x.java diff --git a/sync/rest/lists/delete-list-item/delete-list-item.9.x.java b/sync/rest/lists/delete-list-item/delete-list-item.10.x.java similarity index 100% rename from sync/rest/lists/delete-list-item/delete-list-item.9.x.java rename to sync/rest/lists/delete-list-item/delete-list-item.10.x.java diff --git a/sync/rest/lists/delete-list/delete-list.9.x.java b/sync/rest/lists/delete-list/delete-list.10.x.java similarity index 100% rename from sync/rest/lists/delete-list/delete-list.9.x.java rename to sync/rest/lists/delete-list/delete-list.10.x.java diff --git a/sync/rest/lists/list-lists/list-lists.9.x.java b/sync/rest/lists/list-lists/list-lists.10.x.java similarity index 100% rename from sync/rest/lists/list-lists/list-lists.9.x.java rename to sync/rest/lists/list-lists/list-lists.10.x.java diff --git a/sync/rest/lists/query-list/query-list.9.x.java b/sync/rest/lists/query-list/query-list.10.x.java similarity index 100% rename from sync/rest/lists/query-list/query-list.9.x.java rename to sync/rest/lists/query-list/query-list.10.x.java diff --git a/sync/rest/lists/retrieve-list-item/retrieve-list-item.9.x.java b/sync/rest/lists/retrieve-list-item/retrieve-list-item.10.x.java similarity index 100% rename from sync/rest/lists/retrieve-list-item/retrieve-list-item.9.x.java rename to sync/rest/lists/retrieve-list-item/retrieve-list-item.10.x.java diff --git a/sync/rest/lists/retrieve-list/retrieve-list.9.x.java b/sync/rest/lists/retrieve-list/retrieve-list.10.x.java similarity index 100% rename from sync/rest/lists/retrieve-list/retrieve-list.9.x.java rename to sync/rest/lists/retrieve-list/retrieve-list.10.x.java diff --git a/sync/rest/lists/update-list-item/update-list-item.9.x.java b/sync/rest/lists/update-list-item/update-list-item.10.x.java similarity index 100% rename from sync/rest/lists/update-list-item/update-list-item.9.x.java rename to sync/rest/lists/update-list-item/update-list-item.10.x.java diff --git a/sync/rest/lists/update-list/update-list.9.x.java b/sync/rest/lists/update-list/update-list.10.x.java similarity index 100% rename from sync/rest/lists/update-list/update-list.9.x.java rename to sync/rest/lists/update-list/update-list.10.x.java diff --git a/sync/rest/map-permissions/delete-permission/delete-permission.9.x.java b/sync/rest/map-permissions/delete-permission/delete-permission.10.x.java similarity index 100% rename from sync/rest/map-permissions/delete-permission/delete-permission.9.x.java rename to sync/rest/map-permissions/delete-permission/delete-permission.10.x.java diff --git a/sync/rest/map-permissions/list-permissions/list-permissions.9.x.java b/sync/rest/map-permissions/list-permissions/list-permissions.10.x.java similarity index 100% rename from sync/rest/map-permissions/list-permissions/list-permissions.9.x.java rename to sync/rest/map-permissions/list-permissions/list-permissions.10.x.java diff --git a/sync/rest/map-permissions/retrieve-permission/retrieve-permission.9.x.java b/sync/rest/map-permissions/retrieve-permission/retrieve-permission.10.x.java similarity index 100% rename from sync/rest/map-permissions/retrieve-permission/retrieve-permission.9.x.java rename to sync/rest/map-permissions/retrieve-permission/retrieve-permission.10.x.java diff --git a/sync/rest/map-permissions/update-permission/update-permission.9.x.java b/sync/rest/map-permissions/update-permission/update-permission.10.x.java similarity index 100% rename from sync/rest/map-permissions/update-permission/update-permission.9.x.java rename to sync/rest/map-permissions/update-permission/update-permission.10.x.java diff --git a/sync/rest/maps/create-map-item/create-map-item.9.x.java b/sync/rest/maps/create-map-item/create-map-item.10.x.java similarity index 100% rename from sync/rest/maps/create-map-item/create-map-item.9.x.java rename to sync/rest/maps/create-map-item/create-map-item.10.x.java diff --git a/sync/rest/maps/create-map/create-map.9.x.java b/sync/rest/maps/create-map/create-map.10.x.java similarity index 100% rename from sync/rest/maps/create-map/create-map.9.x.java rename to sync/rest/maps/create-map/create-map.10.x.java diff --git a/sync/rest/maps/delete-map-item/delete-map-item.9.x.java b/sync/rest/maps/delete-map-item/delete-map-item.10.x.java similarity index 100% rename from sync/rest/maps/delete-map-item/delete-map-item.9.x.java rename to sync/rest/maps/delete-map-item/delete-map-item.10.x.java diff --git a/sync/rest/maps/delete-map/delete-map.9.x.java b/sync/rest/maps/delete-map/delete-map.10.x.java similarity index 100% rename from sync/rest/maps/delete-map/delete-map.9.x.java rename to sync/rest/maps/delete-map/delete-map.10.x.java diff --git a/sync/rest/maps/list-maps/list-maps.9.x.java b/sync/rest/maps/list-maps/list-maps.10.x.java similarity index 100% rename from sync/rest/maps/list-maps/list-maps.9.x.java rename to sync/rest/maps/list-maps/list-maps.10.x.java diff --git a/sync/rest/maps/query-map/query-map.9.x.java b/sync/rest/maps/query-map/query-map.10.x.java similarity index 100% rename from sync/rest/maps/query-map/query-map.9.x.java rename to sync/rest/maps/query-map/query-map.10.x.java diff --git a/sync/rest/maps/retrieve-map-item/retrieve-map-item.9.x.java b/sync/rest/maps/retrieve-map-item/retrieve-map-item.10.x.java similarity index 100% rename from sync/rest/maps/retrieve-map-item/retrieve-map-item.9.x.java rename to sync/rest/maps/retrieve-map-item/retrieve-map-item.10.x.java diff --git a/sync/rest/maps/retrieve-map/retrieve-map.9.x.java b/sync/rest/maps/retrieve-map/retrieve-map.10.x.java similarity index 100% rename from sync/rest/maps/retrieve-map/retrieve-map.9.x.java rename to sync/rest/maps/retrieve-map/retrieve-map.10.x.java diff --git a/sync/rest/maps/update-map-item/update-map-item.9.x.java b/sync/rest/maps/update-map-item/update-map-item.10.x.java similarity index 100% rename from sync/rest/maps/update-map-item/update-map-item.9.x.java rename to sync/rest/maps/update-map-item/update-map-item.10.x.java diff --git a/sync/rest/maps/update-map/update-map.9.x.java b/sync/rest/maps/update-map/update-map.10.x.java similarity index 100% rename from sync/rest/maps/update-map/update-map.9.x.java rename to sync/rest/maps/update-map/update-map.10.x.java diff --git a/sync/rest/services/create-service-webhook/create-service-webhook.9.x.java b/sync/rest/services/create-service-webhook/create-service-webhook.10.x.java similarity index 100% rename from sync/rest/services/create-service-webhook/create-service-webhook.9.x.java rename to sync/rest/services/create-service-webhook/create-service-webhook.10.x.java diff --git a/sync/rest/services/create-service/create-service.9.x.java b/sync/rest/services/create-service/create-service.10.x.java similarity index 100% rename from sync/rest/services/create-service/create-service.9.x.java rename to sync/rest/services/create-service/create-service.10.x.java diff --git a/sync/rest/services/delete-service/delete-service.9.x.java b/sync/rest/services/delete-service/delete-service.10.x.java similarity index 100% rename from sync/rest/services/delete-service/delete-service.9.x.java rename to sync/rest/services/delete-service/delete-service.10.x.java diff --git a/sync/rest/services/list-services/list-services.9.x.java b/sync/rest/services/list-services/list-services.10.x.java similarity index 100% rename from sync/rest/services/list-services/list-services.9.x.java rename to sync/rest/services/list-services/list-services.10.x.java diff --git a/sync/rest/services/retrieve-service/retrieve-service.9.x.java b/sync/rest/services/retrieve-service/retrieve-service.10.x.java similarity index 100% rename from sync/rest/services/retrieve-service/retrieve-service.9.x.java rename to sync/rest/services/retrieve-service/retrieve-service.10.x.java diff --git a/sync/rest/services/update-service/update-service.9.x.java b/sync/rest/services/update-service/update-service.10.x.java similarity index 100% rename from sync/rest/services/update-service/update-service.9.x.java rename to sync/rest/services/update-service/update-service.10.x.java diff --git a/sync/rest/streams/create-stream/create-stream.9.x.java b/sync/rest/streams/create-stream/create-stream.10.x.java similarity index 100% rename from sync/rest/streams/create-stream/create-stream.9.x.java rename to sync/rest/streams/create-stream/create-stream.10.x.java diff --git a/sync/rest/streams/delete-stream/delete-stream.9.x.java b/sync/rest/streams/delete-stream/delete-stream.10.x.java similarity index 100% rename from sync/rest/streams/delete-stream/delete-stream.9.x.java rename to sync/rest/streams/delete-stream/delete-stream.10.x.java diff --git a/sync/rest/streams/list-streams/list-streams.9.x.java b/sync/rest/streams/list-streams/list-streams.10.x.java similarity index 100% rename from sync/rest/streams/list-streams/list-streams.9.x.java rename to sync/rest/streams/list-streams/list-streams.10.x.java diff --git a/sync/rest/streams/publish-stream-message/publish-stream-message.9.x.java b/sync/rest/streams/publish-stream-message/publish-stream-message.10.x.java similarity index 100% rename from sync/rest/streams/publish-stream-message/publish-stream-message.9.x.java rename to sync/rest/streams/publish-stream-message/publish-stream-message.10.x.java diff --git a/sync/rest/streams/retrieve-stream/retrieve-stream.9.x.java b/sync/rest/streams/retrieve-stream/retrieve-stream.10.x.java similarity index 100% rename from sync/rest/streams/retrieve-stream/retrieve-stream.9.x.java rename to sync/rest/streams/retrieve-stream/retrieve-stream.10.x.java diff --git a/twiml/README.md b/twiml/README.md index a718fe6525..e6ccfb29ac 100644 --- a/twiml/README.md +++ b/twiml/README.md @@ -16,7 +16,7 @@ twiml/ <-- The TwiML snippet directory │ │ │ ├─ say-language-voice.6.x.cs │ │ │ ├─ say-language-voice.6.x.php │ │ │ ├─ say-language-voice.8.x.py -│ │ │ ├─ say-language-voice.9.x.java +│ │ │ ├─ say-language-voice.10.x.java │ │ │ ├─ say-language-voice..x. │ │ │ ├─ meta.json ``` diff --git a/twiml/message/message/message-1/message-1.9.x.java b/twiml/message/message/message-1/message-1.10.x.java similarity index 100% rename from twiml/message/message/message-1/message-1.9.x.java rename to twiml/message/message/message-1/message-1.10.x.java diff --git a/twiml/message/message/message-2/message-2.9.x.java b/twiml/message/message/message-2/message-2.10.x.java similarity index 100% rename from twiml/message/message/message-2/message-2.9.x.java rename to twiml/message/message/message-2/message-2.10.x.java diff --git a/twiml/message/message/message-3/message-3.9.x.java b/twiml/message/message/message-3/message-3.10.x.java similarity index 100% rename from twiml/message/message/message-3/message-3.9.x.java rename to twiml/message/message/message-3/message-3.10.x.java diff --git a/twiml/message/message/message-4/message-4.9.x.java b/twiml/message/message/message-4/message-4.10.x.java similarity index 100% rename from twiml/message/message/message-4/message-4.9.x.java rename to twiml/message/message/message-4/message-4.10.x.java diff --git a/twiml/message/redirect/redirect-1/redirect-1.9.x.java b/twiml/message/redirect/redirect-1/redirect-1.10.x.java similarity index 100% rename from twiml/message/redirect/redirect-1/redirect-1.9.x.java rename to twiml/message/redirect/redirect-1/redirect-1.10.x.java diff --git a/twiml/message/redirect/redirect-2/redirect-2.9.x.java b/twiml/message/redirect/redirect-2/redirect-2.10.x.java similarity index 100% rename from twiml/message/redirect/redirect-2/redirect-2.9.x.java rename to twiml/message/redirect/redirect-2/redirect-2.10.x.java diff --git a/twiml/message/your-response/your-response-1/your-response-1.9.x.java b/twiml/message/your-response/your-response-1/your-response-1.10.x.java similarity index 100% rename from twiml/message/your-response/your-response-1/your-response-1.9.x.java rename to twiml/message/your-response/your-response-1/your-response-1.10.x.java diff --git a/twiml/message/your-response/your-response-2/your-response-2.9.x.java b/twiml/message/your-response/your-response-2/your-response-2.10.x.java similarity index 100% rename from twiml/message/your-response/your-response-2/your-response-2.9.x.java rename to twiml/message/your-response/your-response-2/your-response-2.10.x.java diff --git a/twiml/message/your-response/your-response-3/your-response-3.9.x.java b/twiml/message/your-response/your-response-3/your-response-3.10.x.java similarity index 100% rename from twiml/message/your-response/your-response-3/your-response-3.9.x.java rename to twiml/message/your-response/your-response-3/your-response-3.10.x.java diff --git a/twiml/voice/application/dial-application-basic/dial-application-basic.9.x.java b/twiml/voice/application/dial-application-basic/dial-application-basic.10.x.java similarity index 100% rename from twiml/voice/application/dial-application-basic/dial-application-basic.9.x.java rename to twiml/voice/application/dial-application-basic/dial-application-basic.10.x.java diff --git a/twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.9.x.java b/twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.10.x.java similarity index 100% rename from twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.9.x.java rename to twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.10.x.java diff --git a/twiml/voice/application/dial-application-customerid/dial-application-customerid.9.x.java b/twiml/voice/application/dial-application-customerid/dial-application-customerid.10.x.java similarity index 100% rename from twiml/voice/application/dial-application-customerid/dial-application-customerid.9.x.java rename to twiml/voice/application/dial-application-customerid/dial-application-customerid.10.x.java diff --git a/twiml/voice/application/dial-application-parameter/dial-application-parameter.9.x.java b/twiml/voice/application/dial-application-parameter/dial-application-parameter.10.x.java similarity index 100% rename from twiml/voice/application/dial-application-parameter/dial-application-parameter.9.x.java rename to twiml/voice/application/dial-application-parameter/dial-application-parameter.10.x.java diff --git a/twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.9.x.java b/twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.10.x.java similarity index 100% rename from twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.9.x.java rename to twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.10.x.java diff --git a/twiml/voice/application/hangup-parameter/hangup-parameter.9.x.java b/twiml/voice/application/hangup-parameter/hangup-parameter.10.x.java similarity index 100% rename from twiml/voice/application/hangup-parameter/hangup-parameter.9.x.java rename to twiml/voice/application/hangup-parameter/hangup-parameter.10.x.java diff --git a/twiml/voice/application/reject-parameter/reject-parameter.9.x.java b/twiml/voice/application/reject-parameter/reject-parameter.10.x.java similarity index 100% rename from twiml/voice/application/reject-parameter/reject-parameter.9.x.java rename to twiml/voice/application/reject-parameter/reject-parameter.10.x.java diff --git a/twiml/voice/client/client-1/client-1.9.x.java b/twiml/voice/client/client-1/client-1.10.x.java similarity index 100% rename from twiml/voice/client/client-1/client-1.9.x.java rename to twiml/voice/client/client-1/client-1.10.x.java diff --git a/twiml/voice/client/client-2/client-2.9.x.java b/twiml/voice/client/client-2/client-2.10.x.java similarity index 100% rename from twiml/voice/client/client-2/client-2.9.x.java rename to twiml/voice/client/client-2/client-2.10.x.java diff --git a/twiml/voice/client/client-3/client-3.9.x.java b/twiml/voice/client/client-3/client-3.10.x.java similarity index 100% rename from twiml/voice/client/client-3/client-3.9.x.java rename to twiml/voice/client/client-3/client-3.10.x.java diff --git a/twiml/voice/conference/conference-1/conference-1.9.x.java b/twiml/voice/conference/conference-1/conference-1.10.x.java similarity index 100% rename from twiml/voice/conference/conference-1/conference-1.9.x.java rename to twiml/voice/conference/conference-1/conference-1.10.x.java diff --git a/twiml/voice/conference/conference-10/conference-10.9.x.java b/twiml/voice/conference/conference-10/conference-10.10.x.java similarity index 100% rename from twiml/voice/conference/conference-10/conference-10.9.x.java rename to twiml/voice/conference/conference-10/conference-10.10.x.java diff --git a/twiml/voice/conference/conference-2/conference-2.9.x.java b/twiml/voice/conference/conference-2/conference-2.10.x.java similarity index 100% rename from twiml/voice/conference/conference-2/conference-2.9.x.java rename to twiml/voice/conference/conference-2/conference-2.10.x.java diff --git a/twiml/voice/conference/conference-3/conference-3.9.x.java b/twiml/voice/conference/conference-3/conference-3.10.x.java similarity index 100% rename from twiml/voice/conference/conference-3/conference-3.9.x.java rename to twiml/voice/conference/conference-3/conference-3.10.x.java diff --git a/twiml/voice/conference/conference-4/conference-4.9.x.java b/twiml/voice/conference/conference-4/conference-4.10.x.java similarity index 100% rename from twiml/voice/conference/conference-4/conference-4.9.x.java rename to twiml/voice/conference/conference-4/conference-4.10.x.java diff --git a/twiml/voice/conference/conference-5/conference-5.9.x.java b/twiml/voice/conference/conference-5/conference-5.10.x.java similarity index 100% rename from twiml/voice/conference/conference-5/conference-5.9.x.java rename to twiml/voice/conference/conference-5/conference-5.10.x.java diff --git a/twiml/voice/conference/conference-6/conference-6.9.x.java b/twiml/voice/conference/conference-6/conference-6.10.x.java similarity index 100% rename from twiml/voice/conference/conference-6/conference-6.9.x.java rename to twiml/voice/conference/conference-6/conference-6.10.x.java diff --git a/twiml/voice/conference/conference-7/conference-7.9.x.java b/twiml/voice/conference/conference-7/conference-7.10.x.java similarity index 100% rename from twiml/voice/conference/conference-7/conference-7.9.x.java rename to twiml/voice/conference/conference-7/conference-7.10.x.java diff --git a/twiml/voice/conference/conference-8/conference-8.9.x.java b/twiml/voice/conference/conference-8/conference-8.10.x.java similarity index 100% rename from twiml/voice/conference/conference-8/conference-8.9.x.java rename to twiml/voice/conference/conference-8/conference-8.10.x.java diff --git a/twiml/voice/conference/conference-9/conference-9.9.x.java b/twiml/voice/conference/conference-9/conference-9.10.x.java similarity index 100% rename from twiml/voice/conference/conference-9/conference-9.9.x.java rename to twiml/voice/conference/conference-9/conference-9.10.x.java diff --git a/twiml/voice/connect/autopilot/autopilot.9.x.java b/twiml/voice/connect/autopilot/autopilot.10.x.java similarity index 100% rename from twiml/voice/connect/autopilot/autopilot.9.x.java rename to twiml/voice/connect/autopilot/autopilot.10.x.java diff --git a/twiml/voice/connect/connect-1/connect-1.9.x.java b/twiml/voice/connect/connect-1/connect-1.10.x.java similarity index 100% rename from twiml/voice/connect/connect-1/connect-1.9.x.java rename to twiml/voice/connect/connect-1/connect-1.10.x.java diff --git a/twiml/voice/connect/connect-2/connect-2.9.x.java b/twiml/voice/connect/connect-2/connect-2.10.x.java similarity index 100% rename from twiml/voice/connect/connect-2/connect-2.9.x.java rename to twiml/voice/connect/connect-2/connect-2.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.9.x.java b/twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.9.x.java rename to twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.9.x.java b/twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.9.x.java rename to twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-action/conversation-action.9.x.java b/twiml/voice/connect/conversation/conversation-action/conversation-action.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-action/conversation-action.9.x.java rename to twiml/voice/connect/conversation/conversation-action/conversation-action.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-basic/conversation-basic.9.x.java b/twiml/voice/connect/conversation/conversation-basic/conversation-basic.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-basic/conversation-basic.9.x.java rename to twiml/voice/connect/conversation/conversation-basic/conversation-basic.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.9.x.java b/twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.9.x.java rename to twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.9.x.java b/twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.9.x.java rename to twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.9.x.java b/twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.9.x.java rename to twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.9.x.java b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.9.x.java rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.9.x.java b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.9.x.java rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.9.x.java b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.9.x.java rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.9.x.java b/twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.9.x.java rename to twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-record/conversation-record.9.x.java b/twiml/voice/connect/conversation/conversation-record/conversation-record.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-record/conversation-record.9.x.java rename to twiml/voice/connect/conversation/conversation-record/conversation-record.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.9.x.java b/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.9.x.java rename to twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.9.x.java b/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.9.x.java rename to twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.10.x.java diff --git a/twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.9.x.java b/twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.10.x.java similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.9.x.java rename to twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.10.x.java diff --git a/twiml/voice/connect/stream/stream.9.x.java b/twiml/voice/connect/stream/stream.10.x.java similarity index 100% rename from twiml/voice/connect/stream/stream.9.x.java rename to twiml/voice/connect/stream/stream.10.x.java diff --git a/twiml/voice/connect/virtualagent-1/virtualagent-1.9.x.java b/twiml/voice/connect/virtualagent-1/virtualagent-1.10.x.java similarity index 100% rename from twiml/voice/connect/virtualagent-1/virtualagent-1.9.x.java rename to twiml/voice/connect/virtualagent-1/virtualagent-1.10.x.java diff --git a/twiml/voice/connect/virtualagent-2/virtualagent-2.9.x.java b/twiml/voice/connect/virtualagent-2/virtualagent-2.10.x.java similarity index 100% rename from twiml/voice/connect/virtualagent-2/virtualagent-2.9.x.java rename to twiml/voice/connect/virtualagent-2/virtualagent-2.10.x.java diff --git a/twiml/voice/connect/virtualagent-3/virtualagent-3.9.x.java b/twiml/voice/connect/virtualagent-3/virtualagent-3.10.x.java similarity index 100% rename from twiml/voice/connect/virtualagent-3/virtualagent-3.9.x.java rename to twiml/voice/connect/virtualagent-3/virtualagent-3.10.x.java diff --git a/twiml/voice/connect/virtualagent-4/virtualagent-4.9.x.java b/twiml/voice/connect/virtualagent-4/virtualagent-4.10.x.java similarity index 100% rename from twiml/voice/connect/virtualagent-4/virtualagent-4.9.x.java rename to twiml/voice/connect/virtualagent-4/virtualagent-4.10.x.java diff --git a/twiml/voice/connect/virtualagent-5/virtualagent-5.9.x.java b/twiml/voice/connect/virtualagent-5/virtualagent-5.10.x.java similarity index 100% rename from twiml/voice/connect/virtualagent-5/virtualagent-5.9.x.java rename to twiml/voice/connect/virtualagent-5/virtualagent-5.10.x.java diff --git a/twiml/voice/connect/virtualagent-6/virtualagent-6.9.x.java b/twiml/voice/connect/virtualagent-6/virtualagent-6.10.x.java similarity index 100% rename from twiml/voice/connect/virtualagent-6/virtualagent-6.9.x.java rename to twiml/voice/connect/virtualagent-6/virtualagent-6.10.x.java diff --git a/twiml/voice/dial/dial-1/dial-1.9.x.java b/twiml/voice/dial/dial-1/dial-1.10.x.java similarity index 100% rename from twiml/voice/dial/dial-1/dial-1.9.x.java rename to twiml/voice/dial/dial-1/dial-1.10.x.java diff --git a/twiml/voice/dial/dial-2/dial-2.9.x.java b/twiml/voice/dial/dial-2/dial-2.10.x.java similarity index 100% rename from twiml/voice/dial/dial-2/dial-2.9.x.java rename to twiml/voice/dial/dial-2/dial-2.10.x.java diff --git a/twiml/voice/dial/dial-3/dial-3.9.x.java b/twiml/voice/dial/dial-3/dial-3.10.x.java similarity index 100% rename from twiml/voice/dial/dial-3/dial-3.9.x.java rename to twiml/voice/dial/dial-3/dial-3.10.x.java diff --git a/twiml/voice/dial/dial-4/dial-4.9.x.java b/twiml/voice/dial/dial-4/dial-4.10.x.java similarity index 100% rename from twiml/voice/dial/dial-4/dial-4.9.x.java rename to twiml/voice/dial/dial-4/dial-4.10.x.java diff --git a/twiml/voice/dial/dial-5/dial-5.9.x.java b/twiml/voice/dial/dial-5/dial-5.10.x.java similarity index 100% rename from twiml/voice/dial/dial-5/dial-5.9.x.java rename to twiml/voice/dial/dial-5/dial-5.10.x.java diff --git a/twiml/voice/dial/dial-6/dial-6.9.x.java b/twiml/voice/dial/dial-6/dial-6.10.x.java similarity index 100% rename from twiml/voice/dial/dial-6/dial-6.9.x.java rename to twiml/voice/dial/dial-6/dial-6.10.x.java diff --git a/twiml/voice/dial/dial-7/dial-7.9.x.java b/twiml/voice/dial/dial-7/dial-7.10.x.java similarity index 100% rename from twiml/voice/dial/dial-7/dial-7.9.x.java rename to twiml/voice/dial/dial-7/dial-7.10.x.java diff --git a/twiml/voice/dial/dial-8/dial-8.9.x.java b/twiml/voice/dial/dial-8/dial-8.10.x.java similarity index 100% rename from twiml/voice/dial/dial-8/dial-8.9.x.java rename to twiml/voice/dial/dial-8/dial-8.10.x.java diff --git a/twiml/voice/dial/dial-9/dial-9.9.x.java b/twiml/voice/dial/dial-9/dial-9.10.x.java similarity index 100% rename from twiml/voice/dial/dial-9/dial-9.9.x.java rename to twiml/voice/dial/dial-9/dial-9.10.x.java diff --git a/twiml/voice/enqueue/enqueue-1/enqueue-1.9.x.java b/twiml/voice/enqueue/enqueue-1/enqueue-1.10.x.java similarity index 100% rename from twiml/voice/enqueue/enqueue-1/enqueue-1.9.x.java rename to twiml/voice/enqueue/enqueue-1/enqueue-1.10.x.java diff --git a/twiml/voice/enqueue/enqueue-2/enqueue-2.9.x.java b/twiml/voice/enqueue/enqueue-2/enqueue-2.10.x.java similarity index 100% rename from twiml/voice/enqueue/enqueue-2/enqueue-2.9.x.java rename to twiml/voice/enqueue/enqueue-2/enqueue-2.10.x.java diff --git a/twiml/voice/gather/gather-1/gather-1.9.x.java b/twiml/voice/gather/gather-1/gather-1.10.x.java similarity index 100% rename from twiml/voice/gather/gather-1/gather-1.9.x.java rename to twiml/voice/gather/gather-1/gather-1.10.x.java diff --git a/twiml/voice/gather/gather-2/gather-2.9.x.java b/twiml/voice/gather/gather-2/gather-2.10.x.java similarity index 100% rename from twiml/voice/gather/gather-2/gather-2.9.x.java rename to twiml/voice/gather/gather-2/gather-2.10.x.java diff --git a/twiml/voice/gather/gather-3/gather-3.9.x.java b/twiml/voice/gather/gather-3/gather-3.10.x.java similarity index 100% rename from twiml/voice/gather/gather-3/gather-3.9.x.java rename to twiml/voice/gather/gather-3/gather-3.10.x.java diff --git a/twiml/voice/gather/gather-4/gather-4.9.x.java b/twiml/voice/gather/gather-4/gather-4.10.x.java similarity index 100% rename from twiml/voice/gather/gather-4/gather-4.9.x.java rename to twiml/voice/gather/gather-4/gather-4.10.x.java diff --git a/twiml/voice/gather/gather-5/gather-5.9.x.java b/twiml/voice/gather/gather-5/gather-5.10.x.java similarity index 100% rename from twiml/voice/gather/gather-5/gather-5.9.x.java rename to twiml/voice/gather/gather-5/gather-5.10.x.java diff --git a/twiml/voice/hangup/hangup-1/hangup-1.9.x.java b/twiml/voice/hangup/hangup-1/hangup-1.10.x.java similarity index 100% rename from twiml/voice/hangup/hangup-1/hangup-1.9.x.java rename to twiml/voice/hangup/hangup-1/hangup-1.10.x.java diff --git a/twiml/voice/leave/leave-1/leave-1.9.x.java b/twiml/voice/leave/leave-1/leave-1.10.x.java similarity index 100% rename from twiml/voice/leave/leave-1/leave-1.9.x.java rename to twiml/voice/leave/leave-1/leave-1.10.x.java diff --git a/twiml/voice/leave/leave-2/leave-2.9.x.java b/twiml/voice/leave/leave-2/leave-2.10.x.java similarity index 100% rename from twiml/voice/leave/leave-2/leave-2.9.x.java rename to twiml/voice/leave/leave-2/leave-2.10.x.java diff --git a/twiml/voice/leave/leave-3/leave-3.9.x.java b/twiml/voice/leave/leave-3/leave-3.10.x.java similarity index 100% rename from twiml/voice/leave/leave-3/leave-3.9.x.java rename to twiml/voice/leave/leave-3/leave-3.10.x.java diff --git a/twiml/voice/number/number-1/number-1.9.x.java b/twiml/voice/number/number-1/number-1.10.x.java similarity index 100% rename from twiml/voice/number/number-1/number-1.9.x.java rename to twiml/voice/number/number-1/number-1.10.x.java diff --git a/twiml/voice/number/number-2/number-2.9.x.java b/twiml/voice/number/number-2/number-2.10.x.java similarity index 100% rename from twiml/voice/number/number-2/number-2.9.x.java rename to twiml/voice/number/number-2/number-2.10.x.java diff --git a/twiml/voice/number/number-3/number-3.9.x.java b/twiml/voice/number/number-3/number-3.10.x.java similarity index 100% rename from twiml/voice/number/number-3/number-3.9.x.java rename to twiml/voice/number/number-3/number-3.10.x.java diff --git a/twiml/voice/number/number-4/number-4.9.x.java b/twiml/voice/number/number-4/number-4.10.x.java similarity index 100% rename from twiml/voice/number/number-4/number-4.9.x.java rename to twiml/voice/number/number-4/number-4.10.x.java diff --git a/twiml/voice/number/number-5/number-5.9.x.java b/twiml/voice/number/number-5/number-5.10.x.java similarity index 100% rename from twiml/voice/number/number-5/number-5.9.x.java rename to twiml/voice/number/number-5/number-5.10.x.java diff --git a/twiml/voice/parameter/parameter-1/parameter-1.9.x.java b/twiml/voice/parameter/parameter-1/parameter-1.10.x.java similarity index 100% rename from twiml/voice/parameter/parameter-1/parameter-1.9.x.java rename to twiml/voice/parameter/parameter-1/parameter-1.10.x.java diff --git a/twiml/voice/pause/pause-1/pause-1.9.x.java b/twiml/voice/pause/pause-1/pause-1.10.x.java similarity index 100% rename from twiml/voice/pause/pause-1/pause-1.9.x.java rename to twiml/voice/pause/pause-1/pause-1.10.x.java diff --git a/twiml/voice/pause/pause-2/pause-2.9.x.java b/twiml/voice/pause/pause-2/pause-2.10.x.java similarity index 100% rename from twiml/voice/pause/pause-2/pause-2.9.x.java rename to twiml/voice/pause/pause-2/pause-2.10.x.java diff --git a/twiml/voice/pay/pay-1/pay-1.9.x.java b/twiml/voice/pay/pay-1/pay-1.10.x.java similarity index 100% rename from twiml/voice/pay/pay-1/pay-1.9.x.java rename to twiml/voice/pay/pay-1/pay-1.10.x.java diff --git a/twiml/voice/pay/pay-2/pay-2.9.x.java b/twiml/voice/pay/pay-2/pay-2.10.x.java similarity index 100% rename from twiml/voice/pay/pay-2/pay-2.9.x.java rename to twiml/voice/pay/pay-2/pay-2.10.x.java diff --git a/twiml/voice/pay/pay-3/pay-3.9.x.java b/twiml/voice/pay/pay-3/pay-3.10.x.java similarity index 100% rename from twiml/voice/pay/pay-3/pay-3.9.x.java rename to twiml/voice/pay/pay-3/pay-3.10.x.java diff --git a/twiml/voice/pay/pay-4/pay-4.9.x.java b/twiml/voice/pay/pay-4/pay-4.10.x.java similarity index 100% rename from twiml/voice/pay/pay-4/pay-4.9.x.java rename to twiml/voice/pay/pay-4/pay-4.10.x.java diff --git a/twiml/voice/pay/pay-5/pay-5.9.x.java b/twiml/voice/pay/pay-5/pay-5.10.x.java similarity index 100% rename from twiml/voice/pay/pay-5/pay-5.9.x.java rename to twiml/voice/pay/pay-5/pay-5.10.x.java diff --git a/twiml/voice/pay/pay-6/pay-6.9.x.java b/twiml/voice/pay/pay-6/pay-6.10.x.java similarity index 100% rename from twiml/voice/pay/pay-6/pay-6.9.x.java rename to twiml/voice/pay/pay-6/pay-6.10.x.java diff --git a/twiml/voice/pay/pay-7/pay-7.9.x.java b/twiml/voice/pay/pay-7/pay-7.10.x.java similarity index 100% rename from twiml/voice/pay/pay-7/pay-7.9.x.java rename to twiml/voice/pay/pay-7/pay-7.10.x.java diff --git a/twiml/voice/pay/pay-8/pay-8.9.x.java b/twiml/voice/pay/pay-8/pay-8.10.x.java similarity index 100% rename from twiml/voice/pay/pay-8/pay-8.9.x.java rename to twiml/voice/pay/pay-8/pay-8.10.x.java diff --git a/twiml/voice/pay/pay-9/pay-9.9.x.java b/twiml/voice/pay/pay-9/pay-9.10.x.java similarity index 100% rename from twiml/voice/pay/pay-9/pay-9.9.x.java rename to twiml/voice/pay/pay-9/pay-9.10.x.java diff --git a/twiml/voice/pay/pay-charge-connector/pay-charge-connector.9.x.java b/twiml/voice/pay/pay-charge-connector/pay-charge-connector.10.x.java similarity index 100% rename from twiml/voice/pay/pay-charge-connector/pay-charge-connector.9.x.java rename to twiml/voice/pay/pay-charge-connector/pay-charge-connector.10.x.java diff --git a/twiml/voice/pay/pay-parameter/pay-parameter.9.x.java b/twiml/voice/pay/pay-parameter/pay-parameter.10.x.java similarity index 100% rename from twiml/voice/pay/pay-parameter/pay-parameter.9.x.java rename to twiml/voice/pay/pay-parameter/pay-parameter.10.x.java diff --git a/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.9.x.java b/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.10.x.java similarity index 100% rename from twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.9.x.java rename to twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.10.x.java diff --git a/twiml/voice/pay/pay-tokenize/pay-tokenize.9.x.java b/twiml/voice/pay/pay-tokenize/pay-tokenize.10.x.java similarity index 100% rename from twiml/voice/pay/pay-tokenize/pay-tokenize.9.x.java rename to twiml/voice/pay/pay-tokenize/pay-tokenize.10.x.java diff --git a/twiml/voice/pay/prompt/full-example-ach/full-example-ach.9.x.java b/twiml/voice/pay/prompt/full-example-ach/full-example-ach.10.x.java similarity index 100% rename from twiml/voice/pay/prompt/full-example-ach/full-example-ach.9.x.java rename to twiml/voice/pay/prompt/full-example-ach/full-example-ach.10.x.java diff --git a/twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.9.x.java b/twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.10.x.java similarity index 100% rename from twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.9.x.java rename to twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.10.x.java diff --git a/twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.9.x.java b/twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.10.x.java similarity index 100% rename from twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.9.x.java rename to twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.10.x.java diff --git a/twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.9.x.java b/twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.10.x.java similarity index 100% rename from twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.9.x.java rename to twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.10.x.java diff --git a/twiml/voice/play/play-1/play-1.9.x.java b/twiml/voice/play/play-1/play-1.10.x.java similarity index 100% rename from twiml/voice/play/play-1/play-1.9.x.java rename to twiml/voice/play/play-1/play-1.10.x.java diff --git a/twiml/voice/play/play-2/play-2.9.x.java b/twiml/voice/play/play-2/play-2.10.x.java similarity index 100% rename from twiml/voice/play/play-2/play-2.9.x.java rename to twiml/voice/play/play-2/play-2.10.x.java diff --git a/twiml/voice/play/play-3/play-3.9.x.java b/twiml/voice/play/play-3/play-3.10.x.java similarity index 100% rename from twiml/voice/play/play-3/play-3.9.x.java rename to twiml/voice/play/play-3/play-3.10.x.java diff --git a/twiml/voice/queue/queue-1/queue-1.9.x.java b/twiml/voice/queue/queue-1/queue-1.10.x.java similarity index 100% rename from twiml/voice/queue/queue-1/queue-1.9.x.java rename to twiml/voice/queue/queue-1/queue-1.10.x.java diff --git a/twiml/voice/queue/queue-2/queue-2.9.x.java b/twiml/voice/queue/queue-2/queue-2.10.x.java similarity index 100% rename from twiml/voice/queue/queue-2/queue-2.9.x.java rename to twiml/voice/queue/queue-2/queue-2.10.x.java diff --git a/twiml/voice/record/record-1/record-1.9.x.java b/twiml/voice/record/record-1/record-1.10.x.java similarity index 100% rename from twiml/voice/record/record-1/record-1.9.x.java rename to twiml/voice/record/record-1/record-1.10.x.java diff --git a/twiml/voice/record/record-2/record-2.9.x.java b/twiml/voice/record/record-2/record-2.10.x.java similarity index 100% rename from twiml/voice/record/record-2/record-2.9.x.java rename to twiml/voice/record/record-2/record-2.10.x.java diff --git a/twiml/voice/record/record-3/record-3.9.x.java b/twiml/voice/record/record-3/record-3.10.x.java similarity index 100% rename from twiml/voice/record/record-3/record-3.9.x.java rename to twiml/voice/record/record-3/record-3.10.x.java diff --git a/twiml/voice/record/record-4/record-4.9.x.java b/twiml/voice/record/record-4/record-4.10.x.java similarity index 100% rename from twiml/voice/record/record-4/record-4.9.x.java rename to twiml/voice/record/record-4/record-4.10.x.java diff --git a/twiml/voice/redirect/redirect-1/redirect-1.9.x.java b/twiml/voice/redirect/redirect-1/redirect-1.10.x.java similarity index 100% rename from twiml/voice/redirect/redirect-1/redirect-1.9.x.java rename to twiml/voice/redirect/redirect-1/redirect-1.10.x.java diff --git a/twiml/voice/redirect/redirect-2/redirect-2.9.x.java b/twiml/voice/redirect/redirect-2/redirect-2.10.x.java similarity index 100% rename from twiml/voice/redirect/redirect-2/redirect-2.9.x.java rename to twiml/voice/redirect/redirect-2/redirect-2.10.x.java diff --git a/twiml/voice/redirect/redirect-3/redirect-3.9.x.java b/twiml/voice/redirect/redirect-3/redirect-3.10.x.java similarity index 100% rename from twiml/voice/redirect/redirect-3/redirect-3.9.x.java rename to twiml/voice/redirect/redirect-3/redirect-3.10.x.java diff --git a/twiml/voice/refer/refer-1/refer-1.9.x.java b/twiml/voice/refer/refer-1/refer-1.10.x.java similarity index 100% rename from twiml/voice/refer/refer-1/refer-1.9.x.java rename to twiml/voice/refer/refer-1/refer-1.10.x.java diff --git a/twiml/voice/refer/refer-2/refer-2.9.x.java b/twiml/voice/refer/refer-2/refer-2.10.x.java similarity index 100% rename from twiml/voice/refer/refer-2/refer-2.9.x.java rename to twiml/voice/refer/refer-2/refer-2.10.x.java diff --git a/twiml/voice/refer/refer-3/refer-3.9.x.java b/twiml/voice/refer/refer-3/refer-3.10.x.java similarity index 100% rename from twiml/voice/refer/refer-3/refer-3.9.x.java rename to twiml/voice/refer/refer-3/refer-3.10.x.java diff --git a/twiml/voice/refer/refer-4/refer-4.9.x.java b/twiml/voice/refer/refer-4/refer-4.10.x.java similarity index 100% rename from twiml/voice/refer/refer-4/refer-4.9.x.java rename to twiml/voice/refer/refer-4/refer-4.10.x.java diff --git a/twiml/voice/reject/reject-1/reject-1.9.x.java b/twiml/voice/reject/reject-1/reject-1.10.x.java similarity index 100% rename from twiml/voice/reject/reject-1/reject-1.9.x.java rename to twiml/voice/reject/reject-1/reject-1.10.x.java diff --git a/twiml/voice/reject/reject-2/reject-2.9.x.java b/twiml/voice/reject/reject-2/reject-2.10.x.java similarity index 100% rename from twiml/voice/reject/reject-2/reject-2.9.x.java rename to twiml/voice/reject/reject-2/reject-2.10.x.java diff --git a/twiml/voice/say/say-basic-usage/say-basic-usage.9.x.java b/twiml/voice/say/say-basic-usage/say-basic-usage.10.x.java similarity index 100% rename from twiml/voice/say/say-basic-usage/say-basic-usage.9.x.java rename to twiml/voice/say/say-basic-usage/say-basic-usage.10.x.java diff --git a/twiml/voice/say/say-language/say-language.9.x.java b/twiml/voice/say/say-language/say-language.10.x.java similarity index 100% rename from twiml/voice/say/say-language/say-language.9.x.java rename to twiml/voice/say/say-language/say-language.10.x.java diff --git a/twiml/voice/say/say-loop/say-loop.9.x.java b/twiml/voice/say/say-loop/say-loop.10.x.java similarity index 100% rename from twiml/voice/say/say-loop/say-loop.9.x.java rename to twiml/voice/say/say-loop/say-loop.10.x.java diff --git a/twiml/voice/say/say-voice/say-voice.9.x.java b/twiml/voice/say/say-voice/say-voice.10.x.java similarity index 100% rename from twiml/voice/say/say-voice/say-voice.9.x.java rename to twiml/voice/say/say-voice/say-voice.10.x.java diff --git a/twiml/voice/say/ssml/ssml.9.x.java b/twiml/voice/say/ssml/ssml.10.x.java similarity index 100% rename from twiml/voice/say/ssml/ssml.9.x.java rename to twiml/voice/say/ssml/ssml.10.x.java diff --git a/twiml/voice/sim/sim-1/sim-1.9.x.java b/twiml/voice/sim/sim-1/sim-1.10.x.java similarity index 100% rename from twiml/voice/sim/sim-1/sim-1.9.x.java rename to twiml/voice/sim/sim-1/sim-1.10.x.java diff --git a/twiml/voice/sim/sim-2/sim-2.9.x.java b/twiml/voice/sim/sim-2/sim-2.10.x.java similarity index 100% rename from twiml/voice/sim/sim-2/sim-2.9.x.java rename to twiml/voice/sim/sim-2/sim-2.10.x.java diff --git a/twiml/voice/sip/sip-1/sip-1.9.x.java b/twiml/voice/sip/sip-1/sip-1.10.x.java similarity index 100% rename from twiml/voice/sip/sip-1/sip-1.9.x.java rename to twiml/voice/sip/sip-1/sip-1.10.x.java diff --git a/twiml/voice/sip/sip-10/sip-10.9.x.java b/twiml/voice/sip/sip-10/sip-10.10.x.java similarity index 100% rename from twiml/voice/sip/sip-10/sip-10.9.x.java rename to twiml/voice/sip/sip-10/sip-10.10.x.java diff --git a/twiml/voice/sip/sip-11/sip-11.9.x.java b/twiml/voice/sip/sip-11/sip-11.10.x.java similarity index 100% rename from twiml/voice/sip/sip-11/sip-11.9.x.java rename to twiml/voice/sip/sip-11/sip-11.10.x.java diff --git a/twiml/voice/sip/sip-12/sip-12.9.x.java b/twiml/voice/sip/sip-12/sip-12.10.x.java similarity index 100% rename from twiml/voice/sip/sip-12/sip-12.9.x.java rename to twiml/voice/sip/sip-12/sip-12.10.x.java diff --git a/twiml/voice/sip/sip-2/sip-2.9.x.java b/twiml/voice/sip/sip-2/sip-2.10.x.java similarity index 100% rename from twiml/voice/sip/sip-2/sip-2.9.x.java rename to twiml/voice/sip/sip-2/sip-2.10.x.java diff --git a/twiml/voice/sip/sip-3/sip-3.9.x.java b/twiml/voice/sip/sip-3/sip-3.10.x.java similarity index 100% rename from twiml/voice/sip/sip-3/sip-3.9.x.java rename to twiml/voice/sip/sip-3/sip-3.10.x.java diff --git a/twiml/voice/sip/sip-4/sip-4.9.x.java b/twiml/voice/sip/sip-4/sip-4.10.x.java similarity index 100% rename from twiml/voice/sip/sip-4/sip-4.9.x.java rename to twiml/voice/sip/sip-4/sip-4.10.x.java diff --git a/twiml/voice/sip/sip-5/sip-5.9.x.java b/twiml/voice/sip/sip-5/sip-5.10.x.java similarity index 100% rename from twiml/voice/sip/sip-5/sip-5.9.x.java rename to twiml/voice/sip/sip-5/sip-5.10.x.java diff --git a/twiml/voice/sip/sip-6/sip-6.9.x.java b/twiml/voice/sip/sip-6/sip-6.10.x.java similarity index 100% rename from twiml/voice/sip/sip-6/sip-6.9.x.java rename to twiml/voice/sip/sip-6/sip-6.10.x.java diff --git a/twiml/voice/sip/sip-7/sip-7.9.x.java b/twiml/voice/sip/sip-7/sip-7.10.x.java similarity index 100% rename from twiml/voice/sip/sip-7/sip-7.9.x.java rename to twiml/voice/sip/sip-7/sip-7.10.x.java diff --git a/twiml/voice/sip/sip-8/sip-8.9.x.java b/twiml/voice/sip/sip-8/sip-8.10.x.java similarity index 100% rename from twiml/voice/sip/sip-8/sip-8.9.x.java rename to twiml/voice/sip/sip-8/sip-8.10.x.java diff --git a/twiml/voice/sip/sip-9/sip-9.9.x.java b/twiml/voice/sip/sip-9/sip-9.10.x.java similarity index 100% rename from twiml/voice/sip/sip-9/sip-9.9.x.java rename to twiml/voice/sip/sip-9/sip-9.10.x.java diff --git a/twiml/voice/siprec/siprec-1/siprec-1.9.x.java b/twiml/voice/siprec/siprec-1/siprec-1.10.x.java similarity index 100% rename from twiml/voice/siprec/siprec-1/siprec-1.9.x.java rename to twiml/voice/siprec/siprec-1/siprec-1.10.x.java diff --git a/twiml/voice/sms/sms-1/sms-1.9.x.java b/twiml/voice/sms/sms-1/sms-1.10.x.java similarity index 100% rename from twiml/voice/sms/sms-1/sms-1.9.x.java rename to twiml/voice/sms/sms-1/sms-1.10.x.java diff --git a/twiml/voice/sms/sms-2/sms-2.9.x.java b/twiml/voice/sms/sms-2/sms-2.10.x.java similarity index 100% rename from twiml/voice/sms/sms-2/sms-2.9.x.java rename to twiml/voice/sms/sms-2/sms-2.10.x.java diff --git a/twiml/voice/sms/sms-3/sms-3.9.x.java b/twiml/voice/sms/sms-3/sms-3.10.x.java similarity index 100% rename from twiml/voice/sms/sms-3/sms-3.9.x.java rename to twiml/voice/sms/sms-3/sms-3.10.x.java diff --git a/twiml/voice/sms/sms-4/sms-4.9.x.java b/twiml/voice/sms/sms-4/sms-4.10.x.java similarity index 100% rename from twiml/voice/sms/sms-4/sms-4.9.x.java rename to twiml/voice/sms/sms-4/sms-4.10.x.java diff --git a/twiml/voice/stream/stream-1/stream-1.9.x.java b/twiml/voice/stream/stream-1/stream-1.10.x.java similarity index 100% rename from twiml/voice/stream/stream-1/stream-1.9.x.java rename to twiml/voice/stream/stream-1/stream-1.10.x.java diff --git a/twiml/voice/stream/stream-2/stream-2.9.x.java b/twiml/voice/stream/stream-2/stream-2.10.x.java similarity index 100% rename from twiml/voice/stream/stream-2/stream-2.9.x.java rename to twiml/voice/stream/stream-2/stream-2.10.x.java diff --git a/twiml/voice/your-response/your-response-1/your-response-1.9.x.java b/twiml/voice/your-response/your-response-1/your-response-1.10.x.java similarity index 100% rename from twiml/voice/your-response/your-response-1/your-response-1.9.x.java rename to twiml/voice/your-response/your-response-1/your-response-1.10.x.java diff --git a/twiml/voice/your-response/your-response-2/your-response-2.9.x.java b/twiml/voice/your-response/your-response-2/your-response-2.10.x.java similarity index 100% rename from twiml/voice/your-response/your-response-2/your-response-2.9.x.java rename to twiml/voice/your-response/your-response-2/your-response-2.10.x.java diff --git a/verify/verifications/approve-verification/approve-verification.9.x.java b/verify/verifications/approve-verification/approve-verification.10.x.java similarity index 100% rename from verify/verifications/approve-verification/approve-verification.9.x.java rename to verify/verifications/approve-verification/approve-verification.10.x.java diff --git a/video/rest/compositions/get-composition-media-file/get-composition-media-file.9.x.java b/video/rest/compositions/get-composition-media-file/get-composition-media-file.10.x.java similarity index 100% rename from video/rest/compositions/get-composition-media-file/get-composition-media-file.9.x.java rename to video/rest/compositions/get-composition-media-file/get-composition-media-file.10.x.java diff --git a/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.9.x.java b/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.10.x.java similarity index 100% rename from video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.9.x.java rename to video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.10.x.java diff --git a/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.9.x.java b/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.10.x.java similarity index 100% rename from video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.9.x.java rename to video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.10.x.java diff --git a/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.9.x.java b/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.10.x.java similarity index 100% rename from video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.9.x.java rename to video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.10.x.java diff --git a/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.9.x.java b/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.10.x.java similarity index 100% rename from video/rest/rooms/recording-rules-start-all/recording-rules-start-all.9.x.java rename to video/rest/rooms/recording-rules-start-all/recording-rules-start-all.10.x.java diff --git a/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.9.x.java b/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.10.x.java similarity index 100% rename from video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.9.x.java rename to video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.10.x.java diff --git a/voice/queueing/agent/queue-agent.9.x.java b/voice/queueing/agent/queue-agent.10.x.java similarity index 100% rename from voice/queueing/agent/queue-agent.9.x.java rename to voice/queueing/agent/queue-agent.10.x.java diff --git a/voice/queueing/caller/queue-caller.9.x.java b/voice/queueing/caller/queue-caller.10.x.java similarity index 100% rename from voice/queueing/caller/queue-caller.9.x.java rename to voice/queueing/caller/queue-caller.10.x.java diff --git a/voice/queueing/redirect/queue-redirect.9.x.java b/voice/queueing/redirect/queue-redirect.10.x.java similarity index 100% rename from voice/queueing/redirect/queue-redirect.9.x.java rename to voice/queueing/redirect/queue-redirect.10.x.java diff --git a/voice/specify-edge/specify-edge.9.x.java b/voice/specify-edge/specify-edge.10.x.java similarity index 100% rename from voice/specify-edge/specify-edge.9.x.java rename to voice/specify-edge/specify-edge.10.x.java diff --git a/wireless/commands/create-binary-example-1/create-binary-example-1.9.x.java b/wireless/commands/create-binary-example-1/create-binary-example-1.10.x.java similarity index 100% rename from wireless/commands/create-binary-example-1/create-binary-example-1.9.x.java rename to wireless/commands/create-binary-example-1/create-binary-example-1.10.x.java diff --git a/wireless/commands/create-text-example-1/create-text-example-1.9.x.java b/wireless/commands/create-text-example-1/create-text-example-1.10.x.java similarity index 100% rename from wireless/commands/create-text-example-1/create-text-example-1.9.x.java rename to wireless/commands/create-text-example-1/create-text-example-1.10.x.java diff --git a/wireless/commands/instance-get-example-1/instance-get-example-1.9.x.java b/wireless/commands/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from wireless/commands/instance-get-example-1/instance-get-example-1.9.x.java rename to wireless/commands/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/wireless/commands/list-example-1/list-example-1.9.x.java b/wireless/commands/list-example-1/list-example-1.10.x.java similarity index 100% rename from wireless/commands/list-example-1/list-example-1.9.x.java rename to wireless/commands/list-example-1/list-example-1.10.x.java diff --git a/wireless/rateplans/create-example-1/create-example-1.9.x.java b/wireless/rateplans/create-example-1/create-example-1.10.x.java similarity index 100% rename from wireless/rateplans/create-example-1/create-example-1.9.x.java rename to wireless/rateplans/create-example-1/create-example-1.10.x.java diff --git a/wireless/rateplans/instance-delete-example-1/delete-example-1.9.x.java b/wireless/rateplans/instance-delete-example-1/delete-example-1.10.x.java similarity index 100% rename from wireless/rateplans/instance-delete-example-1/delete-example-1.9.x.java rename to wireless/rateplans/instance-delete-example-1/delete-example-1.10.x.java diff --git a/wireless/rateplans/instance-get-example-1/instance-get-example-1.9.x.java b/wireless/rateplans/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from wireless/rateplans/instance-get-example-1/instance-get-example-1.9.x.java rename to wireless/rateplans/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/wireless/rateplans/instance-get-example-2/instance-get-example-2.9.x.java b/wireless/rateplans/instance-get-example-2/instance-get-example-2.10.x.java similarity index 100% rename from wireless/rateplans/instance-get-example-2/instance-get-example-2.9.x.java rename to wireless/rateplans/instance-get-example-2/instance-get-example-2.10.x.java diff --git a/wireless/rateplans/list-example-1/list-example-1.9.x.java b/wireless/rateplans/list-example-1/list-example-1.10.x.java similarity index 100% rename from wireless/rateplans/list-example-1/list-example-1.9.x.java rename to wireless/rateplans/list-example-1/list-example-1.10.x.java diff --git a/wireless/sims-data-session/list-example-1/list-example-1.9.x.java b/wireless/sims-data-session/list-example-1/list-example-1.10.x.java similarity index 100% rename from wireless/sims-data-session/list-example-1/list-example-1.9.x.java rename to wireless/sims-data-session/list-example-1/list-example-1.10.x.java diff --git a/wireless/sims-usage-record/list-example-1/list-example-1.9.x.java b/wireless/sims-usage-record/list-example-1/list-example-1.10.x.java similarity index 100% rename from wireless/sims-usage-record/list-example-1/list-example-1.9.x.java rename to wireless/sims-usage-record/list-example-1/list-example-1.10.x.java diff --git a/wireless/sims/instance-get-example-1/instance-get-example-1.9.x.java b/wireless/sims/instance-get-example-1/instance-get-example-1.10.x.java similarity index 100% rename from wireless/sims/instance-get-example-1/instance-get-example-1.9.x.java rename to wireless/sims/instance-get-example-1/instance-get-example-1.10.x.java diff --git a/wireless/sims/instance-get-example-2/instance-get-example-2.9.x.java b/wireless/sims/instance-get-example-2/instance-get-example-2.10.x.java similarity index 100% rename from wireless/sims/instance-get-example-2/instance-get-example-2.9.x.java rename to wireless/sims/instance-get-example-2/instance-get-example-2.10.x.java diff --git a/wireless/sims/instance-post-example-1/instance-post-example-1.9.x.java b/wireless/sims/instance-post-example-1/instance-post-example-1.10.x.java similarity index 100% rename from wireless/sims/instance-post-example-1/instance-post-example-1.9.x.java rename to wireless/sims/instance-post-example-1/instance-post-example-1.10.x.java diff --git a/wireless/sims/list-example-1/list-example-1.9.x.java b/wireless/sims/list-example-1/list-example-1.10.x.java similarity index 100% rename from wireless/sims/list-example-1/list-example-1.9.x.java rename to wireless/sims/list-example-1/list-example-1.10.x.java From 716d3783acfb7e0489bb5e9cffb1872fe40b42bc Mon Sep 17 00:00:00 2001 From: Shubham Date: Fri, 23 Feb 2024 19:38:20 +0530 Subject: [PATCH 04/95] chore: updated python version to 9.x (#1048) * chore: updated python version to 9.x * chore: updated twiml readme --- README.md | 2 +- ....8.x.py => payfone-tcpa-compliance.9.x.py} | 0 api-auth/{api-auth.8.x.py => api-auth.9.x.py} | 0 ...y-token.8.x.py => capability-token.9.x.py} | 0 ...8.x.py => capability-token-expires.9.x.py} | 0 ...y-token.8.x.py => capability-token.9.x.py} | 0 ...y-token.8.x.py => capability-token.9.x.py} | 0 ...y-token.8.x.py => capability-token.9.x.py} | 0 ...nt.8.x.py => response-twiml-client.9.x.py} | 0 ...dial.8.x.py => response-twiml-dial.9.x.py} | 0 ...nse-twiml.8.x.py => response-twiml.9.x.py} | 0 ...document.8.x.py => create-document.9.x.py} | 0 ...document.8.x.py => update-document.9.x.py} | 0 ...icate.8.x.py => create-certificate.9.x.py} | 0 ...icate.8.x.py => delete-certificate.9.x.py} | 0 ...icates.8.x.py => list-certificates.9.x.py} | 0 ...ate.8.x.py => retrieve-certificate.9.x.py} | 0 ...icate.8.x.py => update-certificate.9.x.py} | 0 ...oyment.8.x.py => create-deployment.9.x.py} | 0 ...oyment.8.x.py => delete-deployment.9.x.py} | 0 ...oyments.8.x.py => list-deployments.9.x.py} | 0 ...ment.8.x.py => retrieve-deployment.9.x.py} | 0 ...oyment.8.x.py => update-deployment.9.x.py} | 0 ...ate-device.8.x.py => create-device.9.x.py} | 0 ...ete-device.8.x.py => delete-device.9.x.py} | 0 ...ist-devices.8.x.py => list-devices.9.x.py} | 0 ...e-device.8.x.py => retrieve-device.9.x.py} | 0 ...ate-device.8.x.py => update-device.9.x.py} | 0 ...reate-fleet.8.x.py => create-fleet.9.x.py} | 0 ...elete-fleet.8.x.py => delete-fleet.9.x.py} | 0 ...{list-fleets.8.x.py => list-fleets.9.x.py} | 0 ...eve-fleet.8.x.py => retrieve-fleet.9.x.py} | 0 ...pdate-fleet.8.x.py => update-fleet.9.x.py} | 0 .../{create-key.8.x.py => create-key.9.x.py} | 0 .../{delete-key.8.x.py => delete-key.9.x.py} | 0 .../{list-key.8.x.py => list-key.9.x.py} | 0 ...etrieve-key.8.x.py => retrieve-key.9.x.py} | 0 .../{update-key.8.x.py => update-key.9.x.py} | 0 ...ic-receive.8.x.py => basic-receive.9.x.py} | 0 .../{basic-send.8.x.py => basic-send.9.x.py} | 0 ...ple.8.x.py => instance-get-example.9.x.py} | 0 ...le.8.x.py => instance-post-example.9.x.py} | 0 ...example.8.x.py => list-get-example.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-3.8.x.py => example-3.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-3.8.x.py => example-3.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-3.8.x.py => example-3.9.x.py} | 0 .../{example-4.8.x.py => example-4.9.x.py} | 0 ...nce.8.x.py => moderated-conference.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 ...-on-data.8.x.py => use-add-on-data.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 ....py => lookup-get-addon-examples-1.9.x.py} | 0 ...x.py => lookup-get-addon-payfone-1.9.x.py} | 0 ...x.py => lookup-get-basic-example-1.9.x.py} | 0 ...x.py => lookup-get-basic-example-2.9.x.py} | 0 ...lookup-get-carrier-cname-example-1.9.x.py} | 0 ...x.py => lookup-get-cname-example-1.9.x.py} | 0 ...x.py => lookup-international-basic.9.x.py} | 0 ...ic.8.x.py => lookup-national-basic.9.x.py} | 0 ... => get-media-recording-media-file.9.x.py} | 0 ...edia-recording-timed-metadata-file.9.x.py} | 0 ....py => link-shortening-domain-cert.9.x.py} | 0 ...-sms.8.x.py => link-shortening-sms.9.x.py} | 0 ...8.x.py => link-shortening-whatsapp.9.x.py} | 0 ...ha-add.8.x.py => service-alpha-add.9.x.py} | 0 ...ete.8.x.py => service-alpha-delete.9.x.py} | 0 ...ha-get.8.x.py => service-alpha-get.9.x.py} | 0 ...-list.8.x.py => service-alpha-list.9.x.py} | 0 ...ce-create.8.x.py => service-create.9.x.py} | 0 ...ce-delete.8.x.py => service-delete.9.x.py} | 0 ...{service-get.8.x.py => service-get.9.x.py} | 0 ...ervice-list.8.x.py => service-list.9.x.py} | 0 ....py => service-multiple-number-add.9.x.py} | 0 ...r-add.8.x.py => service-number-add.9.x.py} | 0 ...te.8.x.py => service-number-delete.9.x.py} | 0 ...r-get.8.x.py => service-number-get.9.x.py} | 0 ...list.8.x.py => service-number-list.9.x.py} | 0 ...dd.8.x.py => service-shortcode-add.9.x.py} | 0 ...8.x.py => service-shortcode-delete.9.x.py} | 0 ...et.8.x.py => service-shortcode-get.9.x.py} | 0 ...t.8.x.py => service-shortcode-list.9.x.py} | 0 ...ce-update.8.x.py => service-update.9.x.py} | 0 ...e.8.x.py => identity-match-example.9.x.py} | 0 ....8.x.py => create-an-evurl-example.9.x.py} | 0 ...y => retrieve-evurl-result-example.9.x.py} | 0 ....8.x.py => instance-delete-example.9.x.py} | 0 ...ple.8.x.py => instance-get-example.9.x.py} | 0 ...all.8.x.py => list-get-example-all.9.x.py} | 0 ...t-get-example-warnings-apr01-apr30.9.x.py} | 0 ... instance-get-example-phone-number.9.x.py} | 0 ...example-actorsid-resourcesid-error.9.x.py} | 0 ...py => list-get-example-date-filter.9.x.py} | 0 ...ist-get-example-resourcesid-filter.9.x.py} | 0 ...get-example-sourceipaddress-filter.9.x.py} | 0 ...on-2.8.x.py => send-notification-2.9.x.py} | 0 ...y => send-notification-segment-tag.9.x.py} | 0 ....x.py => send-notification-segment.9.x.py} | 0 ...cation.8.x.py => send-notification.9.x.py} | 0 ...e-binding.8.x.py => create-binding.9.x.py} | 0 ...e-binding.8.x.py => delete-binding.9.x.py} | 0 ...ist-binding.8.x.py => list-binding.9.x.py} | 0 ...binding.8.x.py => retrieve-binding.9.x.py} | 0 ...al.8.x.py => create-apn-credential.9.x.py} | 0 ...al.8.x.py => create-fcm-credential.9.x.py} | 0 ...al.8.x.py => create-gcm-credential.9.x.py} | 0 ...ential.8.x.py => delete-credential.9.x.py} | 0 ...edential.8.x.py => list-credential.9.x.py} | 0 ...tial.8.x.py => retrieve-credential.9.x.py} | 0 ...ential.8.x.py => update-credential.9.x.py} | 0 ...x.py => send-notification-detailed.9.x.py} | 0 ...py => send-notification-with-badge.9.x.py} | 0 ...cation.8.x.py => send-notification.9.x.py} | 0 ...y => send-passthrough-notification.9.x.py} | 0 ...ist-segment.8.x.py => list-segment.9.x.py} | 0 ...e-service.8.x.py => create-service.9.x.py} | 0 ...e-service.8.x.py => delete-service.9.x.py} | 0 ...ist-service.8.x.py => list-service.9.x.py} | 0 ...service.8.x.py => retrieve-service.9.x.py} | 0 ...e-service.8.x.py => update-service.9.x.py} | 0 ...ment.8.x.py => add-user-to-segment.9.x.py} | 0 ...{create-user.8.x.py => create-user.9.x.py} | 0 ...{delete-user.8.x.py => delete-user.9.x.py} | 0 ...ser.8.x.py => list-binding-of-user.9.x.py} | 0 .../{list-users.8.x.py => list-users.9.x.py} | 0 ...8.x.py => remove-user-from-segment.9.x.py} | 0 ...rieve-user.8.x.py => retrieve-user.9.x.py} | 0 ...e-binding.8.x.py => create-binding.9.x.py} | 0 ....py => send-notification-to-number.9.x.py} | 0 ...cation.8.x.py => send-notification.9.x.py} | 0 ...icing.8.x.py => get-lookup-pricing.9.x.py} | 0 ...ry.8.x.py => get-messaging-country.9.x.py} | 0 ...8.x.py => get-phone-number-country.9.x.py} | 0 ...ountry.8.x.py => get-voice-country.9.x.py} | 0 ...ice-number-with-origination-number.9.x.py} | 0 ...-number.8.x.py => get-voice-number.9.x.py} | 0 ...8.x.py => list-messaging-countries.9.x.py} | 0 ....py => list-phone-number-countries.9.x.py} | 0 ...ies.8.x.py => list-voice-countries.9.x.py} | 0 ...-number.8.x.py => add-phone-number.9.x.py} | 0 ...ipant.8.x.py => create-participant.9.x.py} | 0 ...e-service.8.x.py => create-service.9.x.py} | 0 ...e-session.8.x.py => create-session.9.x.py} | 0 ...end-message.8.x.py => send-message.9.x.py} | 0 ....8.x.py => create_hello_world_task.9.x.py} | 0 ...x.py => create_hello_world_samples.9.x.py} | 0 ...ples.8.x.py => create_joke_samples.9.x.py} | 0 ...ke_task.8.x.py => create_joke_task.9.x.py} | 0 .../{query_task.8.x.py => query_task.9.x.py} | 0 ...tions.8.x.py => send_notifications.9.x.py} | 0 ...tions.8.x.py => send_notifications.9.x.py} | 0 ..._monkey.8.x.py => sms_hello_monkey.9.x.py} | 0 ..._monkey.8.x.py => mms_hello_monkey.9.x.py} | 0 ...ly_by_name.8.x.py => reply_by_name.9.x.py} | 0 ...x.py => tracking_sms_conversations.9.x.py} | 0 ...all.8.x.py => send_sms_during_call.9.x.py} | 0 ...message.8.x.py => reply_to_message.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 ...going_call.8.x.py => outgoing_call.9.x.py} | 0 ..._to_call.8.x.py => respond_to_call.9.x.py} | 0 rename-files.py | 24 +++++++++++++++++++ ...ple.8.x.py => ip-messaging-example.9.x.py} | 0 ...ple.8.x.py => ip-messaging-example.9.x.py} | 0 ...ive-example.8.x.py => live-example.9.x.py} | 0 ...ync-example.8.x.py => sync-example.9.x.py} | 0 ...eo-example.8.x.py => video-example.9.x.py} | 0 ...ce-example.8.x.py => voice-example.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-2.9.x.py} | 0 ....8.x.py => instance-post-example-3.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ....8.x.py => instance-create-example.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...py => list-dependent-pns-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...le-1.8.x.py => list-post-example-1.9.x.py} | 0 ...g-call-1.8.x.py => outgoing-call-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...le-1.8.x.py => list-post-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...py => local-get-advanced-example-1.9.x.py} | 0 ....x.py => local-get-basic-example-1.9.x.py} | 0 ....x.py => local-get-basic-example-2.9.x.py} | 0 ....x.py => local-get-basic-example-3.9.x.py} | 0 ....x.py => local-get-basic-example-4.9.x.py} | 0 ....x.py => local-get-basic-example-5.9.x.py} | 0 ....x.py => local-get-basic-example-6.9.x.py} | 0 ....x.py => local-get-basic-example-7.9.x.py} | 0 ....x.py => local-get-basic-example-8.9.x.py} | 0 ...e-1.8.x.py => mobile-get-example-1.9.x.py} | 0 ....8.x.py => toll-free-get-example-1.9.x.py} | 0 ....8.x.py => toll-free-get-example-2.9.x.py} | 0 ....8.x.py => toll-free-get-example-3.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ... summary-instance-delete-example-1.9.x.py} | 0 ... => summary-instance-get-example-1.9.x.py} | 0 ... => summary-instance-get-example-2.9.x.py} | 0 ....py => summary-list-post-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...ple-3.8.x.py => list-get-example-3.9.x.py} | 0 ...ple-4.8.x.py => list-get-example-4.9.x.py} | 0 ...ple-6.8.x.py => list-get-example-6.9.x.py} | 0 ...ple-7.8.x.py => list-get-example-7.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...ple-3.8.x.py => list-get-example-3.9.x.py} | 0 ...ple-4.8.x.py => list-get-example-4.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...ple-3.8.x.py => list-get-example-3.9.x.py} | 0 ...le-1.8.x.py => list-post-example-1.9.x.py} | 0 ...ple.8.x.py => instance-get-example.9.x.py} | 0 ...example.8.x.py => list-get-example.9.x.py} | 0 ...xample.8.x.py => list-post-example.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-3.8.x.py => example-3.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-3.8.x.py => example-3.9.x.py} | 0 .../{example-4.8.x.py => example-4.9.x.py} | 0 ....x.py => instance-delete-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-2.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...confirm.8.x.py => feedback-confirm.9.x.py} | 0 ...nd-sms.8.x.py => feedback-send-sms.9.x.py} | 0 ...x.py => generate-twiml-dynamic-sms.9.x.py} | 0 ...y => generate-twiml-empty-response.9.x.py} | 0 ...l-mms.8.x.py => generate-twiml-mms.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 ...l-sms.8.x.py => generate-twiml-sms.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 ...ot.8.x.py => send-messages-copilot.9.x.py} | 0 ...llback.8.x.py => send-sms-callback.9.x.py} | 0 .../{send-sms.8.x.py => send-sms.9.x.py} | 0 ....x.py => sms-conversation-tracking.9.x.py} | 0 ...back.8.x.py => sms-handle-callback.9.x.py} | 0 ...8.x.py => instance-delete-examples.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...ple-3.8.x.py => list-get-example-3.9.x.py} | 0 ...ple-4.8.x.py => list-get-example-4.9.x.py} | 0 ...e-delete.8.x.py => instance-delete.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...le-1.8.x.py => list-post-example-1.9.x.py} | 0 ....x.py => instance-delete-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-2.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...le-1.8.x.py => list-post-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...le-1.8.x.py => list-post-example-1.9.x.py} | 0 ...ng-xml.8.x.py => get-recording-xml.9.x.py} | 0 ...8.x.py => instance-delete-examples.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...ple-3.8.x.py => list-get-example-3.9.x.py} | 0 ...ple-4.8.x.py => list-get-example-4.9.x.py} | 0 ...ple-5.8.x.py => list-get-example-5.9.x.py} | 0 ...y => list-recording-transcriptions-9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...ple-3.8.x.py => list-get-example-3.9.x.py} | 0 ...8.x.py => associate-control-domain.9.x.py} | 0 ...dress.8.x.py => create-acl-address.9.x.py} | 0 ...t.8.x.py => create-credential-list.9.x.py} | 0 ...ential.8.x.py => create-credential.9.x.py} | 0 ...ate-domain.8.x.py => create-domain.9.x.py} | 0 ...ate-ip-acl.8.x.py => create-ip-acl.9.x.py} | 0 ...ng.8.x.py => delete-access-mapping.9.x.py} | 0 ...ng.8.x.py => delete-access-mapping.9.x.py} | 0 ....8.x.py => delete-address-instance.9.x.py} | 0 ...=> delete-credential-list-instance.9.x.py} | 0 ... => delete-credential-list-mapping.9.x.py} | 0 ... => delete-credential-list-mapping.9.x.py} | 0 ...ential.8.x.py => delete-credential.9.x.py} | 0 ...e.8.x.py => delete-domain-instance.9.x.py} | 0 ...ete-ip-acl.8.x.py => delete-ip-acl.9.x.py} | 0 ...resses.8.x.py => get-acl-addresses.9.x.py} | 0 ...et-acl-list.8.x.py => get-acl-list.9.x.py} | 0 ...-acl-lists.8.x.py => get-acl-lists.9.x.py} | 0 ...nce.8.x.py => get-address-instance.9.x.py} | 0 ...py => get-credential-list-instance.9.x.py} | 0 ...py => get-credential-list-mappings.9.x.py} | 0 ...> get-credential-lists-credentials.9.x.py} | 0 ...sts.8.x.py => get-credential-lists.9.x.py} | 0 ...redential.8.x.py => get-credential.9.x.py} | 0 ...ance.8.x.py => get-domain-instance.9.x.py} | 0 ...ings.8.x.py => get-domain-mappings.9.x.py} | 0 ...{get-domains.8.x.py => get-domains.9.x.py} | 0 ...{get-ip-acls.8.x.py => get-ip-acls.9.x.py} | 0 ...ce.8.x.py => get-mappings-instance.9.x.py} | 0 ...ce.8.x.py => get-mappings-instance.9.x.py} | 0 ...x.py => map-credential-list-domain.9.x.py} | 0 ...x.py => map-credential-list-domain.9.x.py} | 0 ...t-domain.8.x.py => map-list-domain.9.x.py} | 0 ...t-domain.8.x.py => map-list-domain.9.x.py} | 0 ....8.x.py => update-address-instance.9.x.py} | 0 ...=> update-credential-list-instance.9.x.py} | 0 ...ential.8.x.py => update-credential.9.x.py} | 0 ...e.8.x.py => update-domain-instance.9.x.py} | 0 ...e.8.x.py => update-ip-acl-instance.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-3.8.x.py => example-3.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...lling.8.x.py => subaccount-billing.9.x.py} | 0 ... => creating-subaccounts-example-1.9.x.py} | 0 ...py => exchanging-numbers-example-1.9.x.py} | 0 ...y => listing-subaccounts-example-1.9.x.py} | 0 ...y => listing-subaccounts-example-2.9.x.py} | 0 ...unt-call.8.x.py => subaccount-call.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{conference.8.x.py => conference.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{redirect.8.x.py => redirect.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example.8.x.py => example.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 ...e-1.8.x.py => test-calls-example-1.9.x.py} | 0 ...e-2.8.x.py => test-calls-example-2.9.x.py} | 0 ...t-incoming-phone-numbers-example-1.9.x.py} | 0 ...t-incoming-phone-numbers-example-2.9.x.py} | 0 ...le-3.8.x.py => test-post-example-3.9.x.py} | 0 ....py => test-sms-messages-example-1.9.x.py} | 0 ....py => test-sms-messages-example-2.9.x.py} | 0 ....py => test-sms-messages-example-3.9.x.py} | 0 ...8.x.py => list-post-1-hour-example.9.x.py} | 0 ...xample.8.x.py => list-post-example.9.x.py} | 0 ...8.x.py => instance-delete-examples.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...ple-2.8.x.py => list-get-example-2.9.x.py} | 0 ...ple-3.8.x.py => list-get-example-3.9.x.py} | 0 ...ple-4.8.x.py => list-get-example-4.9.x.py} | 0 ...ple-5.8.x.py => list-get-example-5.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...ple-1.8.x.py => list-get-example-1.9.x.py} | 0 ...le-1.8.x.py => list-post-example-1.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 ...l-say.8.x.py => generate-twiml-say.9.x.py} | 0 .../{example-1.8.x.py => example-1.9.x.py} | 0 .../{example-2.8.x.py => example-2.9.x.py} | 0 .../{example-3.8.x.py => example-3.9.x.py} | 0 .../{example-4.8.x.py => example-4.9.x.py} | 0 ...-action.8.x.py => recording-action.9.x.py} | 0 ....8.x.py => environment-variables-1.9.x.py} | 0 ...ion.8.x.py => signature_validation.9.x.py} | 0 ...x.py => signature_validation_tests.9.x.py} | 0 ...xample.8.x.py => list-post-example.9.x.py} | 0 ...e-account.8.x.py => update-account.9.x.py} | 0 ...ission.8.x.py => delete-permission.9.x.py} | 0 ...issions.8.x.py => list-permissions.9.x.py} | 0 ...sion.8.x.py => retrieve-permission.9.x.py} | 0 ...ission.8.x.py => update-permission.9.x.py} | 0 ...document.8.x.py => create-document.9.x.py} | 0 ...document.8.x.py => delete-document.9.x.py} | 0 ...documents.8.x.py => list-documents.9.x.py} | 0 ...cument.8.x.py => retrieve-document.9.x.py} | 0 ...document.8.x.py => update-document.9.x.py} | 0 ...ission.8.x.py => delete-permission.9.x.py} | 0 ...issions.8.x.py => list-permissions.9.x.py} | 0 ...sion.8.x.py => retrieve-permission.9.x.py} | 0 ...ission.8.x.py => update-permission.9.x.py} | 0 ...st-item.8.x.py => create-list-item.9.x.py} | 0 ...{create-list.8.x.py => create-list.9.x.py} | 0 ...st-item.8.x.py => delete-list-item.9.x.py} | 0 ...{delete-list.8.x.py => delete-list.9.x.py} | 0 .../{list-lists.8.x.py => list-lists.9.x.py} | 0 .../{query-list.8.x.py => query-list.9.x.py} | 0 ...-item.8.x.py => retrieve-list-item.9.x.py} | 0 ...rieve-list.8.x.py => retrieve-list.9.x.py} | 0 ...st-item.8.x.py => update-list-item.9.x.py} | 0 ...{update-list.8.x.py => update-list.9.x.py} | 0 ...ission.8.x.py => delete-permission.9.x.py} | 0 ...issions.8.x.py => list-permissions.9.x.py} | 0 ...sion.8.x.py => retrieve-permission.9.x.py} | 0 ...ission.8.x.py => update-permission.9.x.py} | 0 ...map-item.8.x.py => create-map-item.9.x.py} | 0 .../{create-map.8.x.py => create-map.9.x.py} | 0 ...map-item.8.x.py => delete-map-item.9.x.py} | 0 .../{delete-map.8.x.py => delete-map.9.x.py} | 0 .../{list-maps.8.x.py => list-maps.9.x.py} | 0 .../{query-map.8.x.py => query-map.9.x.py} | 0 ...p-item.8.x.py => retrieve-map-item.9.x.py} | 0 ...etrieve-map.8.x.py => retrieve-map.9.x.py} | 0 ...map-item.8.x.py => update-map-item.9.x.py} | 0 .../{update-map.8.x.py => update-map.9.x.py} | 0 ...k.8.x.py => create-service-webhook.9.x.py} | 0 ...e-service.8.x.py => create-service.9.x.py} | 0 ...e-service.8.x.py => delete-service.9.x.py} | 0 ...t-services.8.x.py => list-services.9.x.py} | 0 ...service.8.x.py => retrieve-service.9.x.py} | 0 ...e-service.8.x.py => update-service.9.x.py} | 0 ...ate-stream.8.x.py => create-stream.9.x.py} | 0 ...ete-stream.8.x.py => delete-stream.9.x.py} | 0 ...ist-streams.8.x.py => list-streams.9.x.py} | 0 ...e.8.x.py => publish-stream-message.9.x.py} | 0 ...e-stream.8.x.py => retrieve-stream.9.x.py} | 0 ...ate-stream.8.x.py => update-stream.9.x.py} | 0 twiml/README.md | 4 ++-- .../{message-1.8.x.py => message-1.9.x.py} | 0 .../{message-2.8.x.py => message-2.9.x.py} | 0 .../{message-3.8.x.py => message-3.9.x.py} | 0 .../{message-4.8.x.py => message-4.9.x.py} | 0 .../{redirect-1.8.x.py => redirect-1.9.x.py} | 0 .../{redirect-2.8.x.py => redirect-2.9.x.py} | 0 ...sponse-1.8.x.py => your-response-1.9.x.py} | 0 ...sponse-2.8.x.py => your-response-2.9.x.py} | 0 ...sponse-3.8.x.py => your-response-3.9.x.py} | 0 ...c.8.x.py => dial-application-basic.9.x.py} | 0 ...y => dial-application-copyparentto.9.x.py} | 0 ....py => dial-application-customerid.9.x.py} | 0 ...x.py => dial-application-parameter.9.x.py} | 0 ....x.py => hangup-parameter-scenario.9.x.py} | 0 ...rameter.8.x.py => hangup-parameter.9.x.py} | 0 ...rameter.8.x.py => reject-parameter.9.x.py} | 0 .../{client-1.8.x.py => client-1.9.x.py} | 0 .../{client-2.8.x.py => client-2.9.x.py} | 0 .../{client-3.8.x.py => client-3.9.x.py} | 0 ...onference-1.8.x.py => conference-1.9.x.py} | 0 ...ference-10.8.x.py => conference-10.9.x.py} | 0 ...onference-2.8.x.py => conference-2.9.x.py} | 0 ...onference-3.8.x.py => conference-3.9.x.py} | 0 ...onference-4.8.x.py => conference-4.9.x.py} | 0 ...onference-5.8.x.py => conference-5.9.x.py} | 0 ...onference-6.8.x.py => conference-6.9.x.py} | 0 ...onference-7.8.x.py => conference-7.9.x.py} | 0 ...onference-8.8.x.py => conference-8.9.x.py} | 0 ...onference-9.8.x.py => conference-9.9.x.py} | 0 .../{connect-1.8.x.py => connect-1.9.x.py} | 0 .../{connect-1.8.x.py => connect-1.9.x.py} | 0 .../{connect-2.8.x.py => connect-2.9.x.py} | 0 ...x.py => conversation-action-method.9.x.py} | 0 ...conversation-action-statuscallback.9.x.py} | 0 ...tion.8.x.py => conversation-action.9.x.py} | 0 ...basic.8.x.py => conversation-basic.9.x.py} | 0 ...ocreation-routingassignmenttimeout.9.x.py} | 0 ...> conversation-inboundautocreation.9.x.py} | 0 ....py => conversation-inboundtimeout.9.x.py} | 0 ...-recordingstatuscallback-and-event.9.x.py} | 0 ...recordingstatuscallback-and-method.9.x.py} | 0 ...ion-record-recordingstatuscallback.9.x.py} | 0 ...8.x.py => conversation-record-trim.9.x.py} | 0 ...cord.8.x.py => conversation-record.9.x.py} | 0 ...statuscallback-statuscallbackevent.9.x.py} | 0 ...tatuscallback-statuscallbackmethod.9.x.py} | 0 ....py => conversation-statuscallback.9.x.py} | 0 ...ct_stream.8.x.py => connect_stream.9.x.py} | 0 ...alagent-1.8.x.py => virtualagent-1.9.x.py} | 0 ...alagent-2.8.x.py => virtualagent-2.9.x.py} | 0 ...alagent-3.8.x.py => virtualagent-3.9.x.py} | 0 ...alagent-4.8.x.py => virtualagent-4.9.x.py} | 0 ...alagent-5.8.x.py => virtualagent-5.9.x.py} | 0 ...alagent-6.8.x.py => virtualagent-6.9.x.py} | 0 .../dial-1/{dial-1.8.x.py => dial-1.9.x.py} | 0 .../dial-2/{dial-2.8.x.py => dial-2.9.x.py} | 0 .../dial-3/{dial-3.8.x.py => dial-3.9.x.py} | 0 .../dial-4/{dial-4.8.x.py => dial-4.9.x.py} | 0 .../dial-5/{dial-5.8.x.py => dial-5.9.x.py} | 0 .../dial-6/{dial-6.8.x.py => dial-6.9.x.py} | 0 .../dial-7/{dial-7.8.x.py => dial-7.9.x.py} | 0 .../dial-8/{dial-8.8.x.py => dial-8.9.x.py} | 0 .../dial-9/{dial-9.8.x.py => dial-9.9.x.py} | 0 .../{enqueue-1.8.x.py => enqueue-1.9.x.py} | 0 .../{enqueue-2.8.x.py => enqueue-2.9.x.py} | 0 .../{gather-1.8.x.py => gather-1.9.x.py} | 0 .../{gather-2.8.x.py => gather-2.9.x.py} | 0 .../{gather-3.8.x.py => gather-3.9.x.py} | 0 .../{gather-4.8.x.py => gather-4.9.x.py} | 0 .../{gather-5.8.x.py => gather-5.9.x.py} | 0 .../{hangup-1.8.x.py => hangup-1.9.x.py} | 0 .../{leave-1.8.x.py => leave-1.9.x.py} | 0 .../{leave-2.8.x.py => leave-2.9.x.py} | 0 .../{leave-3.8.x.py => leave-3.9.x.py} | 0 .../{number-1.8.x.py => number-1.9.x.py} | 0 .../{number-2.8.x.py => number-2.9.x.py} | 0 .../{number-3.8.x.py => number-3.9.x.py} | 0 .../{number-4.8.x.py => number-4.9.x.py} | 0 .../{number-5.8.x.py => number-5.9.x.py} | 0 ...{parameter-1.8.x.py => parameter-1.9.x.py} | 0 .../{pause-1.8.x.py => pause-1.9.x.py} | 0 .../{pause-2.8.x.py => pause-2.9.x.py} | 0 .../pay/pay-1/{pay-1.8.x.py => pay-1.9.x.py} | 0 .../pay/pay-2/{pay-2.8.x.py => pay-2.9.x.py} | 0 .../pay/pay-3/{pay-3.8.x.py => pay-3.9.x.py} | 0 .../pay/pay-4/{pay-4.8.x.py => pay-4.9.x.py} | 0 .../pay/pay-5/{pay-5.8.x.py => pay-5.9.x.py} | 0 .../pay/pay-6/{pay-6.8.x.py => pay-6.9.x.py} | 0 .../pay/pay-7/{pay-7.8.x.py => pay-7.9.x.py} | 0 .../pay/pay-8/{pay-8.8.x.py => pay-8.9.x.py} | 0 .../pay/pay-9/{pay-9.8.x.py => pay-9.9.x.py} | 0 ...tor.8.x.py => pay-charge-connector.9.x.py} | 0 ...-parameter.8.x.py => pay-parameter.9.x.py} | 0 ...r.8.x.py => pay-tokenize-connector.9.x.py} | 0 ...ay-tokenize.8.x.py => pay-tokenize.9.x.py} | 0 ...ple-ach.8.x.py => full-example-ach.9.x.py} | 0 ...8.x.py => full-example-credit-card.9.x.py} | 0 ...prompt-requireMatchingInputs-basic.9.x.py} | 0 ...pt-requireMatchingInputs-errorType.9.x.py} | 0 .../play-1/{play-1.8.x.py => play-1.9.x.py} | 0 .../play-2/{play-2.8.x.py => play-2.9.x.py} | 0 .../play-3/{play-3.8.x.py => play-3.9.x.py} | 0 .../{queue-1.8.x.py => queue-1.9.x.py} | 0 .../{queue-2.8.x.py => queue-2.9.x.py} | 0 .../{record-1.8.x.py => record-1.9.x.py} | 0 .../{record-2.8.x.py => record-2.9.x.py} | 0 .../{record-3.8.x.py => record-3.9.x.py} | 0 .../{record-4.8.x.py => record-4.9.x.py} | 0 .../{redirect-1.8.x.py => redirect-1.9.x.py} | 0 .../{redirect-2.8.x.py => redirect-2.9.x.py} | 0 .../{redirect-3.8.x.py => redirect-3.9.x.py} | 0 .../{refer-1.8.x.py => refer-1.9.x.py} | 0 .../{refer-2.8.x.py => refer-2.9.x.py} | 0 .../{refer-3.8.x.py => refer-3.9.x.py} | 0 .../{refer-4.8.x.py => refer-4.9.x.py} | 0 .../{reject-1.8.x.py => reject-1.9.x.py} | 0 .../{reject-2.8.x.py => reject-2.9.x.py} | 0 ...ic-usage.8.x.py => say-basic-usage.9.x.py} | 0 ...ay-language.8.x.py => say-language.9.x.py} | 0 .../{say-loop.8.x.py => say-loop.9.x.py} | 0 .../{say-voice.8.x.py => say-voice.9.x.py} | 0 .../say/ssml/{ssml.8.x.py => ssml.9.x.py} | 0 .../sim/sim-1/{sim-1.8.x.py => sim-1.9.x.py} | 0 .../sim/sim-2/{sim-2.8.x.py => sim-2.9.x.py} | 0 .../sip/sip-1/{sip-1.8.x.py => sip-1.9.x.py} | 0 .../sip-10/{sip-10.8.x.py => sip-10.9.x.py} | 0 .../sip-11/{sip-11.8.x.py => sip-11.9.x.py} | 0 .../sip/sip-2/{sip-2.8.x.py => sip-2.9.x.py} | 0 .../sip/sip-3/{sip-3.8.x.py => sip-3.9.x.py} | 0 .../sip/sip-4/{sip-4.8.x.py => sip-4.9.x.py} | 0 .../sip/sip-5/{sip-5.8.x.py => sip-5.9.x.py} | 0 .../sip/sip-6/{sip-6.8.x.py => sip-6.9.x.py} | 0 .../sip/sip-7/{sip-7.8.x.py => sip-7.9.x.py} | 0 .../sip/sip-8/{sip-8.8.x.py => sip-8.9.x.py} | 0 .../sip/sip-9/{sip-9.8.x.py => sip-9.9.x.py} | 0 .../{siprec-1.8.x.py => siprec-1.9.x.py} | 0 .../sms/sms-1/{sms-1.8.x.py => sms-1.9.x.py} | 0 .../sms/sms-2/{sms-2.8.x.py => sms-2.9.x.py} | 0 .../sms/sms-3/{sms-3.8.x.py => sms-3.9.x.py} | 0 .../sms/sms-4/{sms-4.8.x.py => sms-4.9.x.py} | 0 .../{stream-1.8.x.py => stream-1.9.x.py} | 0 .../{stream-2.8.x.py => stream-2.9.x.py} | 0 ...sponse-1.8.x.py => your-response-1.9.x.py} | 0 ...sponse-2.8.x.py => your-response-2.9.x.py} | 0 ...ion.8.x.py => approve-verification.9.x.py} | 0 ...g-hook.8.x.py => audio-mixing-hook.9.x.py} | 0 ...hook.8.x.py => complex-layout-hook.9.x.py} | 0 ...{delete-hook.8.x.py => delete-hook.9.x.py} | 0 .../{get-hook.8.x.py => get-hook.9.x.py} | 0 ...ng-hook.8.x.py => grid-mixing-hook.9.x.py} | 0 .../{list-hooks.8.x.py => list-hooks.9.x.py} | 0 ...{update-hook.8.x.py => update-hook.9.x.py} | 0 ...pose-chess.8.x.py => compose-chess.9.x.py} | 0 ...y => compose-main-with-col-and-pip.9.x.py} | 0 ...ow.8.x.py => compose-main-with-row.9.x.py} | 0 ...se-mosaic.8.x.py => compose-mosaic.9.x.py} | 0 ...ompose-participant-with-all-audios.9.x.py} | 0 ...pant.8.x.py => compose-participant.9.x.py} | 0 ...{compose-pip.8.x.py => compose-pip.9.x.py} | 0 ...ompose-room.8.x.py => compose-room.9.x.py} | 0 ...s-row.8.x.py => compose-set-as-row.9.x.py} | 0 ....8.x.py => compose-set-as-sequence.9.x.py} | 0 ...ition.8.x.py => delete-composition.9.x.py} | 0 ...x.py => get-completed-compositions.9.x.py} | 0 ...x.py => get-composition-media-file.9.x.py} | 0 ...position.8.x.py => get-composition.9.x.py} | 0 ...ns.8.x.py => get-room-compositions.9.x.py} | 0 ....x.py => transcode-audio-recording.9.x.py} | 0 ....x.py => transcode-video-recording.9.x.py} | 0 ...cording.8.x.py => delete-recording.9.x.py} | 0 ....8.x.py => list-deleted-recordings.9.x.py} | 0 ...recordings-for-participant-in-room.9.x.py} | 0 ...=> list-recordings-for-participant.9.x.py} | 0 ...8.x.py => list-recordings-for-room.9.x.py} | 0 ... => retrieve-recording-binary-data.9.x.py} | 0 ....x.py => retrieve-recording-by-sid.9.x.py} | 0 ...p-room.8.x.py => create-group-room.9.x.py} | 0 ...p-room.8.x.py => create-group-room.9.x.py} | 0 ...8.x.py => create-peer-to-peer-room.9.x.py} | 0 ...{create-room.8.x.py => create-room.9.x.py} | 0 ...ngs.8.x.py => list-room-recordings.9.x.py} | 0 ....py => list-rooms-filtered-by-name.9.x.py} | 0 ...y => list-rooms-filtered-by-status.9.x.py} | 0 ....py => list-rooms-multiple-filters.9.x.py} | 0 ...s.8.x.py => list-subscribed-tracks.9.x.py} | 0 ...8.x.py => retrieve-subscribe-rules.9.x.py} | 0 ....x.py => retrieve-subscribed-track.9.x.py} | 0 ...es.8.x.py => update-customer-rules.9.x.py} | 0 ...es.8.x.py => update-customer-rules.9.x.py} | 0 ....x.py => recording-rules-audio-all.9.x.py} | 0 ...=> recording-rules-one-participant.9.x.py} | 0 ....x.py => recording-rules-start-all.9.x.py} | 0 ...8.x.py => recording-rules-stop-all.9.x.py} | 0 ... retrieve-media-for-room-recording.9.x.py} | 0 ...sid.8.x.py => retrieve-room-by-sid.9.x.py} | 0 ...py => retrieve-room-by-unique-name.9.x.py} | 0 ....8.x.py => retrieve-room-recording.9.x.py} | 0 ...=> update-room-status-to-completed.9.x.py} | 0 ....8.x.py => token-generation-server.9.x.py} | 0 ....8.x.py => token-generation-server.9.x.py} | 0 ...{queue-agent.8.x.py => queue-agent.9.x.py} | 0 ...ueue-caller.8.x.py => queue-caller.9.x.py} | 0 ...-redirect.8.x.py => queue-redirect.9.x.py} | 0 ...pecify-edge.8.x.py => specify-edge.9.x.py} | 0 ....8.x.py => create-binary-example-1.9.x.py} | 0 ...-1.8.x.py => create-text-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...example-1.8.x.py => list-example-1.9.x.py} | 0 ...ample-1.8.x.py => create-example-1.9.x.py} | 0 ...ample-1.8.x.py => delete-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...2.8.x.py => instance-get-example-2.9.x.py} | 0 ...example-1.8.x.py => list-example-1.9.x.py} | 0 ...example-1.8.x.py => list-example-1.9.x.py} | 0 ...example-1.8.x.py => list-example-1.9.x.py} | 0 ...1.8.x.py => instance-get-example-1.9.x.py} | 0 ...2.8.x.py => instance-get-example-2.9.x.py} | 0 ....8.x.py => instance-post-example-1.9.x.py} | 0 ...example-1.8.x.py => list-example-1.9.x.py} | 0 736 files changed, 27 insertions(+), 3 deletions(-) rename add-ons/lookups/payfone-tcpa-compliance/{payfone-tcpa-compliance.8.x.py => payfone-tcpa-compliance.9.x.py} (100%) rename api-auth/{api-auth.8.x.py => api-auth.9.x.py} (100%) rename client/capability-token-2way/{capability-token.8.x.py => capability-token.9.x.py} (100%) rename client/capability-token-expires/{capability-token-expires.8.x.py => capability-token-expires.9.x.py} (100%) rename client/capability-token-incoming/{capability-token.8.x.py => capability-token.9.x.py} (100%) rename client/capability-token-outgoing/{capability-token.8.x.py => capability-token.9.x.py} (100%) rename client/capability-token/{capability-token.8.x.py => capability-token.9.x.py} (100%) rename client/response-twiml-client/{response-twiml-client.8.x.py => response-twiml-client.9.x.py} (100%) rename client/response-twiml-dial/{response-twiml-dial.8.x.py => response-twiml-dial.9.x.py} (100%) rename client/response-twiml/{response-twiml.8.x.py => response-twiml.9.x.py} (100%) rename deployed-devices/quickstarts/sync-boardled/create-document/{create-document.8.x.py => create-document.9.x.py} (100%) rename deployed-devices/quickstarts/sync-boardled/update-document/{update-document.8.x.py => update-document.9.x.py} (100%) rename deployed-devices/rest/certificates/create-certificate/{create-certificate.8.x.py => create-certificate.9.x.py} (100%) rename deployed-devices/rest/certificates/delete-certificate/{delete-certificate.8.x.py => delete-certificate.9.x.py} (100%) rename deployed-devices/rest/certificates/list-certificates/{list-certificates.8.x.py => list-certificates.9.x.py} (100%) rename deployed-devices/rest/certificates/retrieve-certificate/{retrieve-certificate.8.x.py => retrieve-certificate.9.x.py} (100%) rename deployed-devices/rest/certificates/update-certificate/{update-certificate.8.x.py => update-certificate.9.x.py} (100%) rename deployed-devices/rest/deployments/create-deployment/{create-deployment.8.x.py => create-deployment.9.x.py} (100%) rename deployed-devices/rest/deployments/delete-deployment/{delete-deployment.8.x.py => delete-deployment.9.x.py} (100%) rename deployed-devices/rest/deployments/list-deployments/{list-deployments.8.x.py => list-deployments.9.x.py} (100%) rename deployed-devices/rest/deployments/retrieve-deployment/{retrieve-deployment.8.x.py => retrieve-deployment.9.x.py} (100%) rename deployed-devices/rest/deployments/update-deployment/{update-deployment.8.x.py => update-deployment.9.x.py} (100%) rename deployed-devices/rest/devices/create-device/{create-device.8.x.py => create-device.9.x.py} (100%) rename deployed-devices/rest/devices/delete-device/{delete-device.8.x.py => delete-device.9.x.py} (100%) rename deployed-devices/rest/devices/list-devices/{list-devices.8.x.py => list-devices.9.x.py} (100%) rename deployed-devices/rest/devices/retrieve-device/{retrieve-device.8.x.py => retrieve-device.9.x.py} (100%) rename deployed-devices/rest/devices/update-device/{update-device.8.x.py => update-device.9.x.py} (100%) rename deployed-devices/rest/fleets/create-fleet/{create-fleet.8.x.py => create-fleet.9.x.py} (100%) rename deployed-devices/rest/fleets/delete-fleet/{delete-fleet.8.x.py => delete-fleet.9.x.py} (100%) rename deployed-devices/rest/fleets/list-fleets/{list-fleets.8.x.py => list-fleets.9.x.py} (100%) rename deployed-devices/rest/fleets/retrieve-fleet/{retrieve-fleet.8.x.py => retrieve-fleet.9.x.py} (100%) rename deployed-devices/rest/fleets/update-fleet/{update-fleet.8.x.py => update-fleet.9.x.py} (100%) rename deployed-devices/rest/keys/create-key/{create-key.8.x.py => create-key.9.x.py} (100%) rename deployed-devices/rest/keys/delete-key/{delete-key.8.x.py => delete-key.9.x.py} (100%) rename deployed-devices/rest/keys/list-keys/{list-key.8.x.py => list-key.9.x.py} (100%) rename deployed-devices/rest/keys/retrieve-key/{retrieve-key.8.x.py => retrieve-key.9.x.py} (100%) rename deployed-devices/rest/keys/update-key/{update-key.8.x.py => update-key.9.x.py} (100%) rename fax/basic-receive/{basic-receive.8.x.py => basic-receive.9.x.py} (100%) rename fax/basic-send/{basic-send.8.x.py => basic-send.9.x.py} (100%) rename fax/instance-get-example/{instance-get-example.8.x.py => instance-get-example.9.x.py} (100%) rename fax/instance-post-example/{instance-post-example.8.x.py => instance-post-example.9.x.py} (100%) rename fax/list-get-example/{list-get-example.8.x.py => list-get-example.9.x.py} (100%) rename fax/sip-send/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename fax/sip-send/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename fax/sip-send/example-3/{example-3.8.x.py => example-3.9.x.py} (100%) rename guides/request-validation-django/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename guides/request-validation-django/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename guides/request-validation-django/example-3/{example-3.8.x.py => example-3.9.x.py} (100%) rename guides/request-validation-python/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename guides/request-validation-python/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename guides/request-validation-python/example-3/{example-3.8.x.py => example-3.9.x.py} (100%) rename guides/request-validation-python/example-4/{example-4.8.x.py => example-4.9.x.py} (100%) rename guides/voice/conference-calls-guide/moderated-conference/{moderated-conference.8.x.py => moderated-conference.9.x.py} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-0/{example.8.x.py => example.9.x.py} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-1/{example.8.x.py => example.9.x.py} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-2/{example.8.x.py => example.9.x.py} (100%) rename guides/voice/record-calls-guide/record-outgoing-call/{example-1.8.x.py => example-1.9.x.py} (100%) rename guides/voice/record-calls-guide/record-twiml-transcribe/{example.8.x.py => example.9.x.py} (100%) rename guides/voice/record-calls-guide/record-twiml/{example.8.x.py => example.9.x.py} (100%) rename guides/voice/recording-add-on-guide/use-add-on-data/{use-add-on-data.8.x.py => use-add-on-data.9.x.py} (100%) rename guides/voice/respond-incoming-calls-guide/respond-no-parameters/{example.8.x.py => example.9.x.py} (100%) rename guides/voice/respond-incoming-calls-guide/respond-with-parameters/{example.8.x.py => example.9.x.py} (100%) rename lookups/lookup-get-addon-example-1/{lookup-get-addon-examples-1.8.x.py => lookup-get-addon-examples-1.9.x.py} (100%) rename lookups/lookup-get-addon-payfone-example-1/{lookup-get-addon-payfone-1.8.x.py => lookup-get-addon-payfone-1.9.x.py} (100%) rename lookups/lookup-get-basic-example-1/{lookup-get-basic-example-1.8.x.py => lookup-get-basic-example-1.9.x.py} (100%) rename lookups/lookup-get-basic-example-2/{lookup-get-basic-example-2.8.x.py => lookup-get-basic-example-2.9.x.py} (100%) rename lookups/lookup-get-carrier-cname-example-1/{lookup-get-carrier-cname-example-1.8.x.py => lookup-get-carrier-cname-example-1.9.x.py} (100%) rename lookups/lookup-get-cname-example-1/{lookup-get-cname-example-1.8.x.py => lookup-get-cname-example-1.9.x.py} (100%) rename lookups/lookup-international-basic/{lookup-international-basic.8.x.py => lookup-international-basic.9.x.py} (100%) rename lookups/lookup-national-basic/{lookup-national-basic.8.x.py => lookup-national-basic.9.x.py} (100%) rename media/rest/recordings/get-media-recording-media-file/{get-media-recording-media-file.8.x.py => get-media-recording-media-file.9.x.py} (100%) rename media/rest/recordings/get-media-recording-timed-metadata-file/{get-media-recording-timed-metadata-file.8.x.py => get-media-recording-timed-metadata-file.9.x.py} (100%) rename messaging/link-shortening/link-shortening-domain-cert/{link-shortening-domain-cert.8.x.py => link-shortening-domain-cert.9.x.py} (100%) rename messaging/link-shortening/link-shortening-sms/{link-shortening-sms.8.x.py => link-shortening-sms.9.x.py} (100%) rename messaging/link-shortening/link-shortening-whatsapp/{link-shortening-whatsapp.8.x.py => link-shortening-whatsapp.9.x.py} (100%) rename messaging/services/service-alpha-add/{service-alpha-add.8.x.py => service-alpha-add.9.x.py} (100%) rename messaging/services/service-alpha-delete/{service-alpha-delete.8.x.py => service-alpha-delete.9.x.py} (100%) rename messaging/services/service-alpha-get/{service-alpha-get.8.x.py => service-alpha-get.9.x.py} (100%) rename messaging/services/service-alpha-list/{service-alpha-list.8.x.py => service-alpha-list.9.x.py} (100%) rename messaging/services/service-create/{service-create.8.x.py => service-create.9.x.py} (100%) rename messaging/services/service-delete/{service-delete.8.x.py => service-delete.9.x.py} (100%) rename messaging/services/service-get/{service-get.8.x.py => service-get.9.x.py} (100%) rename messaging/services/service-list/{service-list.8.x.py => service-list.9.x.py} (100%) rename messaging/services/service-multiple-number-add/{service-multiple-number-add.8.x.py => service-multiple-number-add.9.x.py} (100%) rename messaging/services/service-number-add/{service-number-add.8.x.py => service-number-add.9.x.py} (100%) rename messaging/services/service-number-delete/{service-number-delete.8.x.py => service-number-delete.9.x.py} (100%) rename messaging/services/service-number-get/{service-number-get.8.x.py => service-number-get.9.x.py} (100%) rename messaging/services/service-number-list/{service-number-list.8.x.py => service-number-list.9.x.py} (100%) rename messaging/services/service-shortcode-add/{service-shortcode-add.8.x.py => service-shortcode-add.9.x.py} (100%) rename messaging/services/service-shortcode-delete/{service-shortcode-delete.8.x.py => service-shortcode-delete.9.x.py} (100%) rename messaging/services/service-shortcode-get/{service-shortcode-get.8.x.py => service-shortcode-get.9.x.py} (100%) rename messaging/services/service-shortcode-list/{service-shortcode-list.8.x.py => service-shortcode-list.9.x.py} (100%) rename messaging/services/service-update/{service-update.8.x.py => service-update.9.x.py} (100%) rename mobile-identity/identity-match/{identity-match-example.8.x.py => identity-match-example.9.x.py} (100%) rename mobile-identity/silent-network-auth/create-an-evurl/{create-an-evurl-example.8.x.py => create-an-evurl-example.9.x.py} (100%) rename mobile-identity/silent-network-auth/retrieve-evurl-result/{retrieve-evurl-result-example.8.x.py => retrieve-evurl-result-example.9.x.py} (100%) rename monitor/alerts/instance-delete-example/{instance-delete-example.8.x.py => instance-delete-example.9.x.py} (100%) rename monitor/alerts/instance-get-example/{instance-get-example.8.x.py => instance-get-example.9.x.py} (100%) rename monitor/alerts/list-get-example-all/{list-get-example-all.8.x.py => list-get-example-all.9.x.py} (100%) rename monitor/alerts/list-get-example-warnings-apr01-apr30/{list-get-example-warnings-apr01-apr30.8.x.py => list-get-example-warnings-apr01-apr30.9.x.py} (100%) rename monitor/events/instance-get-example-phone-number/{instance-get-example-phone-number.8.x.py => instance-get-example-phone-number.9.x.py} (100%) rename monitor/events/list-get-example-actorsid-resourcesid-error/{list-get-example-actorsid-resourcesid-error.8.x.py => list-get-example-actorsid-resourcesid-error.9.x.py} (100%) rename monitor/events/list-get-example-date-filter/{list-get-example-date-filter.8.x.py => list-get-example-date-filter.9.x.py} (100%) rename monitor/events/list-get-example-resourcesid-filter/{list-get-example-resourcesid-filter.8.x.py => list-get-example-resourcesid-filter.9.x.py} (100%) rename monitor/events/list-get-example-sourceipaddress-filter/{list-get-example-sourceipaddress-filter.8.x.py => list-get-example-sourceipaddress-filter.9.x.py} (100%) rename notifications/register/send-notification-2/{send-notification-2.8.x.py => send-notification-2.9.x.py} (100%) rename notifications/register/send-notification-segment-tag/{send-notification-segment-tag.8.x.py => send-notification-segment-tag.9.x.py} (100%) rename notifications/register/send-notification-segment/{send-notification-segment.8.x.py => send-notification-segment.9.x.py} (100%) rename notifications/register/send-notification/{send-notification.8.x.py => send-notification.9.x.py} (100%) rename notifications/rest/bindings/create-binding/{create-binding.8.x.py => create-binding.9.x.py} (100%) rename notifications/rest/bindings/delete-binding/{delete-binding.8.x.py => delete-binding.9.x.py} (100%) rename notifications/rest/bindings/list-binding/{list-binding.8.x.py => list-binding.9.x.py} (100%) rename notifications/rest/bindings/retrieve-binding/{retrieve-binding.8.x.py => retrieve-binding.9.x.py} (100%) rename notifications/rest/credentials/create-apn-credential/{create-apn-credential.8.x.py => create-apn-credential.9.x.py} (100%) rename notifications/rest/credentials/create-fcm-credential/{create-fcm-credential.8.x.py => create-fcm-credential.9.x.py} (100%) rename notifications/rest/credentials/create-gcm-credential/{create-gcm-credential.8.x.py => create-gcm-credential.9.x.py} (100%) rename notifications/rest/credentials/delete-credential/{delete-credential.8.x.py => delete-credential.9.x.py} (100%) rename notifications/rest/credentials/list-credential/{list-credential.8.x.py => list-credential.9.x.py} (100%) rename notifications/rest/credentials/retrieve-credential/{retrieve-credential.8.x.py => retrieve-credential.9.x.py} (100%) rename notifications/rest/credentials/update-credential/{update-credential.8.x.py => update-credential.9.x.py} (100%) rename notifications/rest/notifications/send-notification-detailed/{send-notification-detailed.8.x.py => send-notification-detailed.9.x.py} (100%) rename notifications/rest/notifications/send-notification-with-badge/{send-notification-with-badge.8.x.py => send-notification-with-badge.9.x.py} (100%) rename notifications/rest/notifications/send-notification/{send-notification.8.x.py => send-notification.9.x.py} (100%) rename notifications/rest/notifications/send-passthrough-notification/{send-passthrough-notification.8.x.py => send-passthrough-notification.9.x.py} (100%) rename notifications/rest/segments/list-segment/{list-segment.8.x.py => list-segment.9.x.py} (100%) rename notifications/rest/services/create-service/{create-service.8.x.py => create-service.9.x.py} (100%) rename notifications/rest/services/delete-service/{delete-service.8.x.py => delete-service.9.x.py} (100%) rename notifications/rest/services/list-service/{list-service.8.x.py => list-service.9.x.py} (100%) rename notifications/rest/services/retrieve-service/{retrieve-service.8.x.py => retrieve-service.9.x.py} (100%) rename notifications/rest/services/update-service/{update-service.8.x.py => update-service.9.x.py} (100%) rename notifications/rest/users/add-user-to-segment/{add-user-to-segment.8.x.py => add-user-to-segment.9.x.py} (100%) rename notifications/rest/users/create-user/{create-user.8.x.py => create-user.9.x.py} (100%) rename notifications/rest/users/delete-user/{delete-user.8.x.py => delete-user.9.x.py} (100%) rename notifications/rest/users/list-binding-of-user/{list-binding-of-user.8.x.py => list-binding-of-user.9.x.py} (100%) rename notifications/rest/users/list-users/{list-users.8.x.py => list-users.9.x.py} (100%) rename notifications/rest/users/remove-user-from-segment/{remove-user-from-segment.8.x.py => remove-user-from-segment.9.x.py} (100%) rename notifications/rest/users/retrieve-user/{retrieve-user.8.x.py => retrieve-user.9.x.py} (100%) rename notifications/sms-quickstart/create-binding/{create-binding.8.x.py => create-binding.9.x.py} (100%) rename notifications/sms-quickstart/send-notification-to-number/{send-notification-to-number.8.x.py => send-notification-to-number.9.x.py} (100%) rename notifications/sms-quickstart/send-notification/{send-notification.8.x.py => send-notification.9.x.py} (100%) rename pricing/get-lookup-pricing/{get-lookup-pricing.8.x.py => get-lookup-pricing.9.x.py} (100%) rename pricing/get-messaging-country/{get-messaging-country.8.x.py => get-messaging-country.9.x.py} (100%) rename pricing/get-phone-number-country/{get-phone-number-country.8.x.py => get-phone-number-country.9.x.py} (100%) rename pricing/get-voice-country/{get-voice-country.8.x.py => get-voice-country.9.x.py} (100%) rename pricing/get-voice-number-with-origination-number/{get-voice-number-with-origination-number.8.x.py => get-voice-number-with-origination-number.9.x.py} (100%) rename pricing/get-voice-number/{get-voice-number.8.x.py => get-voice-number.9.x.py} (100%) rename pricing/list-messaging-countries/{list-messaging-countries.8.x.py => list-messaging-countries.9.x.py} (100%) rename pricing/list-phone-number-countries/{list-phone-number-countries.8.x.py => list-phone-number-countries.9.x.py} (100%) rename pricing/list-voice-countries/{list-voice-countries.8.x.py => list-voice-countries.9.x.py} (100%) rename proxy/quickstart/add-phone-number/{add-phone-number.8.x.py => add-phone-number.9.x.py} (100%) rename proxy/quickstart/create-participant/{create-participant.8.x.py => create-participant.9.x.py} (100%) rename proxy/quickstart/create-service/{create-service.8.x.py => create-service.9.x.py} (100%) rename proxy/quickstart/create-session/{create-session.8.x.py => create-session.9.x.py} (100%) rename proxy/quickstart/send-message/{send-message.8.x.py => send-message.9.x.py} (100%) rename quickstart/python/autopilot/create-first-task/{create_hello_world_task.8.x.py => create_hello_world_task.9.x.py} (100%) rename quickstart/python/autopilot/create-hello-world-samples/{create_hello_world_samples.8.x.py => create_hello_world_samples.9.x.py} (100%) rename quickstart/python/autopilot/create-joke-samples/{create_joke_samples.8.x.py => create_joke_samples.9.x.py} (100%) rename quickstart/python/autopilot/create-joke-task/{create_joke_task.8.x.py => create_joke_task.9.x.py} (100%) rename quickstart/python/autopilot/query-task/{query_task.8.x.py => query_task.9.x.py} (100%) rename quickstart/python/sms/example-1/{send_notifications.8.x.py => send_notifications.9.x.py} (100%) rename quickstart/python/sms/example-2/{send_notifications.8.x.py => send_notifications.9.x.py} (100%) rename quickstart/python/sms/example-3/{sms_hello_monkey.8.x.py => sms_hello_monkey.9.x.py} (100%) rename quickstart/python/sms/example-4/{mms_hello_monkey.8.x.py => mms_hello_monkey.9.x.py} (100%) rename quickstart/python/sms/example-5/{reply_by_name.8.x.py => reply_by_name.9.x.py} (100%) rename quickstart/python/sms/example-6/{tracking_sms_conversations.8.x.py => tracking_sms_conversations.9.x.py} (100%) rename quickstart/python/sms/example-7/{send_sms_during_call.8.x.py => send_sms_during_call.9.x.py} (100%) rename quickstart/python/sms/example-8/{reply_to_message.8.x.py => reply_to_message.9.x.py} (100%) rename quickstart/python/understand/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename quickstart/python/voice/example-1-make-call/{outgoing_call.8.x.py => outgoing_call.9.x.py} (100%) rename quickstart/python/voice/example-2-receive-call/{respond_to_call.8.x.py => respond_to_call.9.x.py} (100%) create mode 100644 rename-files.py rename rest/access-tokens/ip-messaging-example-push-credential/{ip-messaging-example.8.x.py => ip-messaging-example.9.x.py} (100%) rename rest/access-tokens/ip-messaging-example/{ip-messaging-example.8.x.py => ip-messaging-example.9.x.py} (100%) rename rest/access-tokens/live-example/{live-example.8.x.py => live-example.9.x.py} (100%) rename rest/access-tokens/sync-example/{sync-example.8.x.py => sync-example.9.x.py} (100%) rename rest/access-tokens/video-example/{video-example.8.x.py => video-example.9.x.py} (100%) rename rest/access-tokens/voice-example/{voice-example.8.x.py => voice-example.9.x.py} (100%) rename rest/accounts/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/accounts/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/accounts/instance-post-example-2/{instance-post-example-2.8.x.py => instance-post-example-2.9.x.py} (100%) rename rest/accounts/instance-post-example-3/{instance-post-example-3.8.x.py => instance-post-example-3.9.x.py} (100%) rename rest/accounts/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/accounts/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/addresses/instance-create-example/{instance-create-example.8.x.py => instance-create-example.9.x.py} (100%) rename rest/addresses/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/addresses/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/addresses/list-dependent-pns-example-1/{list-dependent-pns-example-1.8.x.py => list-dependent-pns-example-1.9.x.py} (100%) rename rest/addresses/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/addresses/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/addresses/list-post-example-1/{list-post-example-1.8.x.py => list-post-example-1.9.x.py} (100%) rename rest/answering-machine-detection/outgoing-call/{outgoing-call-1.8.x.py => outgoing-call-1.9.x.py} (100%) rename rest/applications/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/applications/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/applications/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/applications/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/applications/list-post-example-1/{list-post-example-1.8.x.py => list-post-example-1.9.x.py} (100%) rename rest/authorized-connect-apps/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/authorized-connect-apps/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/available-phone-numbers/local-advanced-example-1/{local-get-advanced-example-1.8.x.py => local-get-advanced-example-1.9.x.py} (100%) rename rest/available-phone-numbers/local-basic-example-1/{local-get-basic-example-1.8.x.py => local-get-basic-example-1.9.x.py} (100%) rename rest/available-phone-numbers/local-basic-example-2/{local-get-basic-example-2.8.x.py => local-get-basic-example-2.9.x.py} (100%) rename rest/available-phone-numbers/local-basic-example-3/{local-get-basic-example-3.8.x.py => local-get-basic-example-3.9.x.py} (100%) rename rest/available-phone-numbers/local-basic-example-4/{local-get-basic-example-4.8.x.py => local-get-basic-example-4.9.x.py} (100%) rename rest/available-phone-numbers/local-basic-example-5/{local-get-basic-example-5.8.x.py => local-get-basic-example-5.9.x.py} (100%) rename rest/available-phone-numbers/local-basic-example-6/{local-get-basic-example-6.8.x.py => local-get-basic-example-6.9.x.py} (100%) rename rest/available-phone-numbers/local-basic-example-7/{local-get-basic-example-7.8.x.py => local-get-basic-example-7.9.x.py} (100%) rename rest/available-phone-numbers/local-basic-example-8/{local-get-basic-example-8.8.x.py => local-get-basic-example-8.9.x.py} (100%) rename rest/available-phone-numbers/mobile-example/{mobile-get-example-1.8.x.py => mobile-get-example-1.9.x.py} (100%) rename rest/available-phone-numbers/toll-free-example-1/{toll-free-get-example-1.8.x.py => toll-free-get-example-1.9.x.py} (100%) rename rest/available-phone-numbers/toll-free-example-2/{toll-free-get-example-2.8.x.py => toll-free-get-example-2.9.x.py} (100%) rename rest/available-phone-numbers/toll-free-example-3/{toll-free-get-example-3.8.x.py => toll-free-get-example-3.9.x.py} (100%) rename rest/call-feedback/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/call-feedback/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/call-feedback/summary-instance-delete-example-1/{summary-instance-delete-example-1.8.x.py => summary-instance-delete-example-1.9.x.py} (100%) rename rest/call-feedback/summary-instance-get-example-1/{summary-instance-get-example-1.8.x.py => summary-instance-get-example-1.9.x.py} (100%) rename rest/call-feedback/summary-instance-get-example-2/{summary-instance-get-example-2.8.x.py => summary-instance-get-example-2.9.x.py} (100%) rename rest/call-feedback/summary-list-post-example-1/{summary-list-post-example-1.8.x.py => summary-list-post-example-1.9.x.py} (100%) rename rest/call/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/call/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/call/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/call/list-get-example-3/{list-get-example-3.8.x.py => list-get-example-3.9.x.py} (100%) rename rest/call/list-get-example-4/{list-get-example-4.8.x.py => list-get-example-4.9.x.py} (100%) rename rest/call/list-get-example-6/{list-get-example-6.8.x.py => list-get-example-6.9.x.py} (100%) rename rest/call/list-get-example-7/{list-get-example-7.8.x.py => list-get-example-7.9.x.py} (100%) rename rest/change-call-state/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/change-call-state/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/conference/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/conference/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/conference/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/conference/list-get-example-3/{list-get-example-3.8.x.py => list-get-example-3.9.x.py} (100%) rename rest/conference/list-get-example-4/{list-get-example-4.8.x.py => list-get-example-4.9.x.py} (100%) rename rest/connect-apps/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/connect-apps/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/incoming-phone-numbers/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/incoming-phone-numbers/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/incoming-phone-numbers/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/incoming-phone-numbers/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/incoming-phone-numbers/list-get-example-3/{list-get-example-3.8.x.py => list-get-example-3.9.x.py} (100%) rename rest/incoming-phone-numbers/list-post-example-1/{list-post-example-1.8.x.py => list-post-example-1.9.x.py} (100%) rename rest/keys/instance-get-example/{instance-get-example.8.x.py => instance-get-example.9.x.py} (100%) rename rest/keys/list-get-example/{list-get-example.8.x.py => list-get-example.9.x.py} (100%) rename rest/keys/list-post-example/{list-post-example.8.x.py => list-post-example.9.x.py} (100%) rename rest/keys/using-keys-example/{example.8.x.py => example.9.x.py} (100%) rename rest/making-calls-sip/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/making-calls-sip/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename rest/making-calls-sip/example-3/{example-3.8.x.py => example-3.9.x.py} (100%) rename rest/making-calls/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/making-calls/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename rest/making-calls/example-3/{example-3.8.x.py => example-3.9.x.py} (100%) rename rest/making-calls/example-4/{example-4.8.x.py => example-4.9.x.py} (100%) rename rest/media/instance-delete-example-1/{instance-delete-example-1.8.x.py => instance-delete-example-1.9.x.py} (100%) rename rest/media/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/member/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/member/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/member/instance-post-example-2/{instance-post-example-2.8.x.py => instance-post-example-2.9.x.py} (100%) rename rest/member/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/message/instance-delete/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/message/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/message/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/message/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/message/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/messages/feedback-confirm/{feedback-confirm.8.x.py => feedback-confirm.9.x.py} (100%) rename rest/messages/feedback-send-sms/{feedback-send-sms.8.x.py => feedback-send-sms.9.x.py} (100%) rename rest/messages/generate-twiml-dynamic-sms/{generate-twiml-dynamic-sms.8.x.py => generate-twiml-dynamic-sms.9.x.py} (100%) rename rest/messages/generate-twiml-empty-response/{generate-twiml-empty-response.8.x.py => generate-twiml-empty-response.9.x.py} (100%) rename rest/messages/generate-twiml-mms/{generate-twiml-mms.8.x.py => generate-twiml-mms.9.x.py} (100%) rename rest/messages/generate-twiml-sms-voice/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/messages/generate-twiml-sms/{generate-twiml-sms.8.x.py => generate-twiml-sms.9.x.py} (100%) rename rest/messages/send-message/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/messages/send-messages-copilot/{send-messages-copilot.8.x.py => send-messages-copilot.9.x.py} (100%) rename rest/messages/send-sms-callback/{send-sms-callback.8.x.py => send-sms-callback.9.x.py} (100%) rename rest/messages/send-sms/{send-sms.8.x.py => send-sms.9.x.py} (100%) rename rest/messages/sms-conversation-tracking/{sms-conversation-tracking.8.x.py => sms-conversation-tracking.9.x.py} (100%) rename rest/messages/sms-handle-callback/{sms-handle-callback.8.x.py => sms-handle-callback.9.x.py} (100%) rename rest/notification/instance-delete-examples/{instance-delete-examples.8.x.py => instance-delete-examples.9.x.py} (100%) rename rest/notification/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/notification/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/notification/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/notification/list-get-example-3/{list-get-example-3.8.x.py => list-get-example-3.9.x.py} (100%) rename rest/notification/list-get-example-4/{list-get-example-4.8.x.py => list-get-example-4.9.x.py} (100%) rename rest/outgoing-caller-ids/instance-delete/{instance-delete.8.x.py => instance-delete.9.x.py} (100%) rename rest/outgoing-caller-ids/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/outgoing-caller-ids/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/outgoing-caller-ids/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/outgoing-caller-ids/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/outgoing-caller-ids/list-post-example-1/{list-post-example-1.8.x.py => list-post-example-1.9.x.py} (100%) rename rest/participant/instance-delete-example-1/{instance-delete-example-1.8.x.py => instance-delete-example-1.9.x.py} (100%) rename rest/participant/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/participant/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/participant/instance-post-example-2/{instance-post-example-2.8.x.py => instance-post-example-2.9.x.py} (100%) rename rest/participant/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/participant/list-post-example-1/{list-post-example-1.8.x.py => list-post-example-1.9.x.py} (100%) rename rest/queue/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/queue/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/queue/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/queue/list-post-example-1/{list-post-example-1.8.x.py => list-post-example-1.9.x.py} (100%) rename rest/recording/get-recording-xml/{get-recording-xml.8.x.py => get-recording-xml.9.x.py} (100%) rename rest/recording/instance-delete-examples/{instance-delete-examples.8.x.py => instance-delete-examples.9.x.py} (100%) rename rest/recording/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/recording/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/recording/list-get-example-3/{list-get-example-3.8.x.py => list-get-example-3.9.x.py} (100%) rename rest/recording/list-get-example-4/{list-get-example-4.8.x.py => list-get-example-4.9.x.py} (100%) rename rest/recording/list-get-example-5/{list-get-example-5.8.x.py => list-get-example-5.9.x.py} (100%) rename rest/recording/list-recording-transcriptions/{list-recording-transcriptions-8.x.py => list-recording-transcriptions-9.x.py} (100%) rename rest/sending-messages/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/short-codes/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/short-codes/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/short-codes/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/short-codes/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/short-codes/list-get-example-3/{list-get-example-3.8.x.py => list-get-example-3.9.x.py} (100%) rename rest/sip-in/associate-control-domain/{associate-control-domain.8.x.py => associate-control-domain.9.x.py} (100%) rename rest/sip-in/create-acl-address/{create-acl-address.8.x.py => create-acl-address.9.x.py} (100%) rename rest/sip-in/create-credential-list/{create-credential-list.8.x.py => create-credential-list.9.x.py} (100%) rename rest/sip-in/create-credential/{create-credential.8.x.py => create-credential.9.x.py} (100%) rename rest/sip-in/create-domain/{create-domain.8.x.py => create-domain.9.x.py} (100%) rename rest/sip-in/create-ip-acl/{create-ip-acl.8.x.py => create-ip-acl.9.x.py} (100%) rename rest/sip-in/delete-access-mapping-old/{delete-access-mapping.8.x.py => delete-access-mapping.9.x.py} (100%) rename rest/sip-in/delete-access-mapping/{delete-access-mapping.8.x.py => delete-access-mapping.9.x.py} (100%) rename rest/sip-in/delete-address-instance/{delete-address-instance.8.x.py => delete-address-instance.9.x.py} (100%) rename rest/sip-in/delete-credential-list-instance/{delete-credential-list-instance.8.x.py => delete-credential-list-instance.9.x.py} (100%) rename rest/sip-in/delete-credential-list-mapping-old/{delete-credential-list-mapping.8.x.py => delete-credential-list-mapping.9.x.py} (100%) rename rest/sip-in/delete-credential-list-mapping/{delete-credential-list-mapping.8.x.py => delete-credential-list-mapping.9.x.py} (100%) rename rest/sip-in/delete-credential/{delete-credential.8.x.py => delete-credential.9.x.py} (100%) rename rest/sip-in/delete-domain-instance/{delete-domain-instance.8.x.py => delete-domain-instance.9.x.py} (100%) rename rest/sip-in/delete-ip-acl/{delete-ip-acl.8.x.py => delete-ip-acl.9.x.py} (100%) rename rest/sip-in/get-acl-addresses/{get-acl-addresses.8.x.py => get-acl-addresses.9.x.py} (100%) rename rest/sip-in/get-acl-list/{get-acl-list.8.x.py => get-acl-list.9.x.py} (100%) rename rest/sip-in/get-acl-lists/{get-acl-lists.8.x.py => get-acl-lists.9.x.py} (100%) rename rest/sip-in/get-address-instance/{get-address-instance.8.x.py => get-address-instance.9.x.py} (100%) rename rest/sip-in/get-credential-list-instance/{get-credential-list-instance.8.x.py => get-credential-list-instance.9.x.py} (100%) rename rest/sip-in/get-credential-list-mappings/{get-credential-list-mappings.8.x.py => get-credential-list-mappings.9.x.py} (100%) rename rest/sip-in/get-credential-lists-credentials/{get-credential-lists-credentials.8.x.py => get-credential-lists-credentials.9.x.py} (100%) rename rest/sip-in/get-credential-lists/{get-credential-lists.8.x.py => get-credential-lists.9.x.py} (100%) rename rest/sip-in/get-credential/{get-credential.8.x.py => get-credential.9.x.py} (100%) rename rest/sip-in/get-domain-instance/{get-domain-instance.8.x.py => get-domain-instance.9.x.py} (100%) rename rest/sip-in/get-domain-mappings/{get-domain-mappings.8.x.py => get-domain-mappings.9.x.py} (100%) rename rest/sip-in/get-domains/{get-domains.8.x.py => get-domains.9.x.py} (100%) rename rest/sip-in/get-ip-acls/{get-ip-acls.8.x.py => get-ip-acls.9.x.py} (100%) rename rest/sip-in/get-mappings-instance-old/{get-mappings-instance.8.x.py => get-mappings-instance.9.x.py} (100%) rename rest/sip-in/get-mappings-instance/{get-mappings-instance.8.x.py => get-mappings-instance.9.x.py} (100%) rename rest/sip-in/map-credential-list-domain-old/{map-credential-list-domain.8.x.py => map-credential-list-domain.9.x.py} (100%) rename rest/sip-in/map-credential-list-domain/{map-credential-list-domain.8.x.py => map-credential-list-domain.9.x.py} (100%) rename rest/sip-in/map-list-domain-old/{map-list-domain.8.x.py => map-list-domain.9.x.py} (100%) rename rest/sip-in/map-list-domain/{map-list-domain.8.x.py => map-list-domain.9.x.py} (100%) rename rest/sip-in/update-address-instance/{update-address-instance.8.x.py => update-address-instance.9.x.py} (100%) rename rest/sip-in/update-credential-list-instance/{update-credential-list-instance.8.x.py => update-credential-list-instance.9.x.py} (100%) rename rest/sip-in/update-credential/{update-credential.8.x.py => update-credential.9.x.py} (100%) rename rest/sip-in/update-domain-instance/{update-domain-instance.8.x.py => update-domain-instance.9.x.py} (100%) rename rest/sip-in/update-ip-acl-instance/{update-ip-acl-instance.8.x.py => update-ip-acl-instance.9.x.py} (100%) rename rest/sip/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/sip/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename rest/sip/example-3/{example-3.8.x.py => example-3.9.x.py} (100%) rename rest/sms/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/sms/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/subaccounts/billing-example/{subaccount-billing.8.x.py => subaccount-billing.9.x.py} (100%) rename rest/subaccounts/creating-subaccounts-example-1/{creating-subaccounts-example-1.8.x.py => creating-subaccounts-example-1.9.x.py} (100%) rename rest/subaccounts/exchanging-numbers-example-1/{exchanging-numbers-example-1.8.x.py => exchanging-numbers-example-1.9.x.py} (100%) rename rest/subaccounts/listing-subaccounts-example-1/{listing-subaccounts-example-1.8.x.py => listing-subaccounts-example-1.9.x.py} (100%) rename rest/subaccounts/listing-subaccounts-example-2/{listing-subaccounts-example-2.8.x.py => listing-subaccounts-example-2.9.x.py} (100%) rename rest/subaccounts/voice-example/{subaccount-call.8.x.py => subaccount-call.9.x.py} (100%) rename rest/taskrouter/activities/instance/delete/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/activities/instance/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/activities/instance/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/activities/list/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/activities/list/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/events/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/jwts/taskqueue/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/jwts/worker/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/jwts/workspace/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/reservations/call/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/reservations/conference/{conference.8.x.py => conference.9.x.py} (100%) rename rest/taskrouter/reservations/dequeue/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/reservations/instance/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/reservations/instance/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/reservations/list/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/reservations/redirect/{redirect.8.x.py => redirect.9.x.py} (100%) rename rest/taskrouter/reservations/reject/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/taskqueue/cumulative/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/taskqueue/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/taskqueue/realtime/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/worker/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workers/cumulative/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workers/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workers/realtime/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workflow/cumulative/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workflow/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workflow/realtime/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workspace/cumulative/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workspace/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/statistics/workspace/realtime/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskchannels/instance/delete/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskchannels/instance/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskchannels/instance/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskchannels/list/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskchannels/list/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskqueues/instance/delete/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskqueues/instance/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskqueues/instance/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskqueues/list/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/taskqueues/list/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/tasks/instance/delete/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/tasks/instance/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/tasks/instance/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/tasks/list/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/tasks/list/get/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename rest/taskrouter/tasks/list/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/twiml/example1/example/{example.8.x.py => example.9.x.py} (100%) rename rest/taskrouter/twiml/example2/example/{example.8.x.py => example.9.x.py} (100%) rename rest/taskrouter/twiml/example3/example/{example.8.x.py => example.9.x.py} (100%) rename rest/taskrouter/twiml/example4/example/{example.8.x.py => example.9.x.py} (100%) rename rest/taskrouter/worker-reservations/accept/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/worker-reservations/call/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/worker-reservations/dequeue/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/worker-reservations/instance-get-example1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/worker-reservations/list-get-example1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/worker-reservations/reject/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workers/instance/delete/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workers/instance/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workers/instance/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workers/list/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workers/list/get/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename rest/taskrouter/workers/list/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workflows/instance/delete/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workflows/instance/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workflows/instance/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workflows/list/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workflows/list/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workspaces/instance/delete/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workspaces/instance/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workspaces/instance/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workspaces/list/get/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/taskrouter/workspaces/list/post/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/test-credentials/test-calls-example-1/{test-calls-example-1.8.x.py => test-calls-example-1.9.x.py} (100%) rename rest/test-credentials/test-calls-example-2/{test-calls-example-2.8.x.py => test-calls-example-2.9.x.py} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-1/{test-incoming-phone-numbers-example-1.8.x.py => test-incoming-phone-numbers-example-1.9.x.py} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-2/{test-incoming-phone-numbers-example-2.8.x.py => test-incoming-phone-numbers-example-2.9.x.py} (100%) rename rest/test-credentials/test-post-example-3/{test-post-example-3.8.x.py => test-post-example-3.9.x.py} (100%) rename rest/test-credentials/test-sms-messages-example-1/{test-sms-messages-example-1.8.x.py => test-sms-messages-example-1.9.x.py} (100%) rename rest/test-credentials/test-sms-messages-example-2/{test-sms-messages-example-2.8.x.py => test-sms-messages-example-2.9.x.py} (100%) rename rest/test-credentials/test-sms-messages-example-3/{test-sms-messages-example-3.8.x.py => test-sms-messages-example-3.9.x.py} (100%) rename rest/token/list-post-1-hour-example/{list-post-1-hour-example.8.x.py => list-post-1-hour-example.9.x.py} (100%) rename rest/token/list-post-example/{list-post-example.8.x.py => list-post-example.9.x.py} (100%) rename rest/transcription/instance-delete-examples/{instance-delete-examples.8.x.py => instance-delete-examples.9.x.py} (100%) rename rest/transcription/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/transcription/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/usage-records/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/usage-records/list-get-example-2/{list-get-example-2.8.x.py => list-get-example-2.9.x.py} (100%) rename rest/usage-records/list-get-example-3/{list-get-example-3.8.x.py => list-get-example-3.9.x.py} (100%) rename rest/usage-records/list-get-example-4/{list-get-example-4.8.x.py => list-get-example-4.9.x.py} (100%) rename rest/usage-records/list-get-example-5/{list-get-example-5.8.x.py => list-get-example-5.9.x.py} (100%) rename rest/usage-triggers/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename rest/usage-triggers/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename rest/usage-triggers/list-get-example-1/{list-get-example-1.8.x.py => list-get-example-1.9.x.py} (100%) rename rest/usage-triggers/list-post-example-1/{list-post-example-1.8.x.py => list-post-example-1.9.x.py} (100%) rename rest/voice/generate-twiml-play/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/voice/generate-twiml-say/{generate-twiml-say.8.x.py => generate-twiml-say.9.x.py} (100%) rename rest/voice/outbound-calls/example-1/{example-1.8.x.py => example-1.9.x.py} (100%) rename rest/voice/outbound-calls/example-2/{example-2.8.x.py => example-2.9.x.py} (100%) rename rest/voice/outbound-calls/example-3/{example-3.8.x.py => example-3.9.x.py} (100%) rename rest/voice/outbound-calls/example-4/{example-4.8.x.py => example-4.9.x.py} (100%) rename rest/voice/twiml-recording-action/{recording-action.8.x.py => recording-action.9.x.py} (100%) rename security/environment_variables/{environment-variables-1.8.x.py => environment-variables-1.9.x.py} (100%) rename security/signature_validation/{signature_validation.8.x.py => signature_validation.9.x.py} (100%) rename security/signature_validation_tests/{signature_validation_tests.8.x.py => signature_validation_tests.9.x.py} (100%) rename stun-turn/list-post-example/{list-post-example.8.x.py => list-post-example.9.x.py} (100%) rename super-sim/sims/update-account/{update-account.8.x.py => update-account.9.x.py} (100%) rename sync/rest/document-permissions/delete-permission/{delete-permission.8.x.py => delete-permission.9.x.py} (100%) rename sync/rest/document-permissions/list-permissions/{list-permissions.8.x.py => list-permissions.9.x.py} (100%) rename sync/rest/document-permissions/retrieve-permission/{retrieve-permission.8.x.py => retrieve-permission.9.x.py} (100%) rename sync/rest/document-permissions/update-permission/{update-permission.8.x.py => update-permission.9.x.py} (100%) rename sync/rest/documents/create-document/{create-document.8.x.py => create-document.9.x.py} (100%) rename sync/rest/documents/delete-document/{delete-document.8.x.py => delete-document.9.x.py} (100%) rename sync/rest/documents/list-documents/{list-documents.8.x.py => list-documents.9.x.py} (100%) rename sync/rest/documents/retrieve-document/{retrieve-document.8.x.py => retrieve-document.9.x.py} (100%) rename sync/rest/documents/update-document/{update-document.8.x.py => update-document.9.x.py} (100%) rename sync/rest/list-permissions/delete-permission/{delete-permission.8.x.py => delete-permission.9.x.py} (100%) rename sync/rest/list-permissions/list-permissions/{list-permissions.8.x.py => list-permissions.9.x.py} (100%) rename sync/rest/list-permissions/retrieve-permission/{retrieve-permission.8.x.py => retrieve-permission.9.x.py} (100%) rename sync/rest/list-permissions/update-permission/{update-permission.8.x.py => update-permission.9.x.py} (100%) rename sync/rest/lists/create-list-item/{create-list-item.8.x.py => create-list-item.9.x.py} (100%) rename sync/rest/lists/create-list/{create-list.8.x.py => create-list.9.x.py} (100%) rename sync/rest/lists/delete-list-item/{delete-list-item.8.x.py => delete-list-item.9.x.py} (100%) rename sync/rest/lists/delete-list/{delete-list.8.x.py => delete-list.9.x.py} (100%) rename sync/rest/lists/list-lists/{list-lists.8.x.py => list-lists.9.x.py} (100%) rename sync/rest/lists/query-list/{query-list.8.x.py => query-list.9.x.py} (100%) rename sync/rest/lists/retrieve-list-item/{retrieve-list-item.8.x.py => retrieve-list-item.9.x.py} (100%) rename sync/rest/lists/retrieve-list/{retrieve-list.8.x.py => retrieve-list.9.x.py} (100%) rename sync/rest/lists/update-list-item/{update-list-item.8.x.py => update-list-item.9.x.py} (100%) rename sync/rest/lists/update-list/{update-list.8.x.py => update-list.9.x.py} (100%) rename sync/rest/map-permissions/delete-permission/{delete-permission.8.x.py => delete-permission.9.x.py} (100%) rename sync/rest/map-permissions/list-permissions/{list-permissions.8.x.py => list-permissions.9.x.py} (100%) rename sync/rest/map-permissions/retrieve-permission/{retrieve-permission.8.x.py => retrieve-permission.9.x.py} (100%) rename sync/rest/map-permissions/update-permission/{update-permission.8.x.py => update-permission.9.x.py} (100%) rename sync/rest/maps/create-map-item/{create-map-item.8.x.py => create-map-item.9.x.py} (100%) rename sync/rest/maps/create-map/{create-map.8.x.py => create-map.9.x.py} (100%) rename sync/rest/maps/delete-map-item/{delete-map-item.8.x.py => delete-map-item.9.x.py} (100%) rename sync/rest/maps/delete-map/{delete-map.8.x.py => delete-map.9.x.py} (100%) rename sync/rest/maps/list-maps/{list-maps.8.x.py => list-maps.9.x.py} (100%) rename sync/rest/maps/query-map/{query-map.8.x.py => query-map.9.x.py} (100%) rename sync/rest/maps/retrieve-map-item/{retrieve-map-item.8.x.py => retrieve-map-item.9.x.py} (100%) rename sync/rest/maps/retrieve-map/{retrieve-map.8.x.py => retrieve-map.9.x.py} (100%) rename sync/rest/maps/update-map-item/{update-map-item.8.x.py => update-map-item.9.x.py} (100%) rename sync/rest/maps/update-map/{update-map.8.x.py => update-map.9.x.py} (100%) rename sync/rest/services/create-service-webhook/{create-service-webhook.8.x.py => create-service-webhook.9.x.py} (100%) rename sync/rest/services/create-service/{create-service.8.x.py => create-service.9.x.py} (100%) rename sync/rest/services/delete-service/{delete-service.8.x.py => delete-service.9.x.py} (100%) rename sync/rest/services/list-services/{list-services.8.x.py => list-services.9.x.py} (100%) rename sync/rest/services/retrieve-service/{retrieve-service.8.x.py => retrieve-service.9.x.py} (100%) rename sync/rest/services/update-service/{update-service.8.x.py => update-service.9.x.py} (100%) rename sync/rest/streams/create-stream/{create-stream.8.x.py => create-stream.9.x.py} (100%) rename sync/rest/streams/delete-stream/{delete-stream.8.x.py => delete-stream.9.x.py} (100%) rename sync/rest/streams/list-streams/{list-streams.8.x.py => list-streams.9.x.py} (100%) rename sync/rest/streams/publish-stream-message/{publish-stream-message.8.x.py => publish-stream-message.9.x.py} (100%) rename sync/rest/streams/retrieve-stream/{retrieve-stream.8.x.py => retrieve-stream.9.x.py} (100%) rename sync/rest/streams/update-stream/{update-stream.8.x.py => update-stream.9.x.py} (100%) rename twiml/message/message/message-1/{message-1.8.x.py => message-1.9.x.py} (100%) rename twiml/message/message/message-2/{message-2.8.x.py => message-2.9.x.py} (100%) rename twiml/message/message/message-3/{message-3.8.x.py => message-3.9.x.py} (100%) rename twiml/message/message/message-4/{message-4.8.x.py => message-4.9.x.py} (100%) rename twiml/message/redirect/redirect-1/{redirect-1.8.x.py => redirect-1.9.x.py} (100%) rename twiml/message/redirect/redirect-2/{redirect-2.8.x.py => redirect-2.9.x.py} (100%) rename twiml/message/your-response/your-response-1/{your-response-1.8.x.py => your-response-1.9.x.py} (100%) rename twiml/message/your-response/your-response-2/{your-response-2.8.x.py => your-response-2.9.x.py} (100%) rename twiml/message/your-response/your-response-3/{your-response-3.8.x.py => your-response-3.9.x.py} (100%) rename twiml/voice/application/dial-application-basic/{dial-application-basic.8.x.py => dial-application-basic.9.x.py} (100%) rename twiml/voice/application/dial-application-copyparentto/{dial-application-copyparentto.8.x.py => dial-application-copyparentto.9.x.py} (100%) rename twiml/voice/application/dial-application-customerid/{dial-application-customerid.8.x.py => dial-application-customerid.9.x.py} (100%) rename twiml/voice/application/dial-application-parameter/{dial-application-parameter.8.x.py => dial-application-parameter.9.x.py} (100%) rename twiml/voice/application/hangup-parameter-scenario/{hangup-parameter-scenario.8.x.py => hangup-parameter-scenario.9.x.py} (100%) rename twiml/voice/application/hangup-parameter/{hangup-parameter.8.x.py => hangup-parameter.9.x.py} (100%) rename twiml/voice/application/reject-parameter/{reject-parameter.8.x.py => reject-parameter.9.x.py} (100%) rename twiml/voice/client/client-1/{client-1.8.x.py => client-1.9.x.py} (100%) rename twiml/voice/client/client-2/{client-2.8.x.py => client-2.9.x.py} (100%) rename twiml/voice/client/client-3/{client-3.8.x.py => client-3.9.x.py} (100%) rename twiml/voice/conference/conference-1/{conference-1.8.x.py => conference-1.9.x.py} (100%) rename twiml/voice/conference/conference-10/{conference-10.8.x.py => conference-10.9.x.py} (100%) rename twiml/voice/conference/conference-2/{conference-2.8.x.py => conference-2.9.x.py} (100%) rename twiml/voice/conference/conference-3/{conference-3.8.x.py => conference-3.9.x.py} (100%) rename twiml/voice/conference/conference-4/{conference-4.8.x.py => conference-4.9.x.py} (100%) rename twiml/voice/conference/conference-5/{conference-5.8.x.py => conference-5.9.x.py} (100%) rename twiml/voice/conference/conference-6/{conference-6.8.x.py => conference-6.9.x.py} (100%) rename twiml/voice/conference/conference-7/{conference-7.8.x.py => conference-7.9.x.py} (100%) rename twiml/voice/conference/conference-8/{conference-8.8.x.py => conference-8.9.x.py} (100%) rename twiml/voice/conference/conference-9/{conference-9.8.x.py => conference-9.9.x.py} (100%) rename twiml/voice/connect/autopilot/{connect-1.8.x.py => connect-1.9.x.py} (100%) rename twiml/voice/connect/connect-1/{connect-1.8.x.py => connect-1.9.x.py} (100%) rename twiml/voice/connect/connect-2/{connect-2.8.x.py => connect-2.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-action-method/{conversation-action-method.8.x.py => conversation-action-method.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-action-statuscallback/{conversation-action-statuscallback.8.x.py => conversation-action-statuscallback.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-action/{conversation-action.8.x.py => conversation-action.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-basic/{conversation-basic.8.x.py => conversation-basic.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/{conversation-inboundautocreation-routingassignmenttimeout.8.x.py => conversation-inboundautocreation-routingassignmenttimeout.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-inboundautocreation/{conversation-inboundautocreation.8.x.py => conversation-inboundautocreation.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-inboundtimeout/{conversation-inboundtimeout.8.x.py => conversation-inboundtimeout.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/{conversation-record-recordingstatuscallback-and-event.8.x.py => conversation-record-recordingstatuscallback-and-event.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/{conversation-record-recordingstatuscallback-and-method.8.x.py => conversation-record-recordingstatuscallback-and-method.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/{conversation-record-recordingstatuscallback.8.x.py => conversation-record-recordingstatuscallback.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-record-trim/{conversation-record-trim.8.x.py => conversation-record-trim.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-record/{conversation-record.8.x.py => conversation-record.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/{conversation-statuscallback-statuscallbackevent.8.x.py => conversation-statuscallback-statuscallbackevent.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/{conversation-statuscallback-statuscallbackmethod.8.x.py => conversation-statuscallback-statuscallbackmethod.9.x.py} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback/{conversation-statuscallback.8.x.py => conversation-statuscallback.9.x.py} (100%) rename twiml/voice/connect/stream/{connect_stream.8.x.py => connect_stream.9.x.py} (100%) rename twiml/voice/connect/virtualagent-1/{virtualagent-1.8.x.py => virtualagent-1.9.x.py} (100%) rename twiml/voice/connect/virtualagent-2/{virtualagent-2.8.x.py => virtualagent-2.9.x.py} (100%) rename twiml/voice/connect/virtualagent-3/{virtualagent-3.8.x.py => virtualagent-3.9.x.py} (100%) rename twiml/voice/connect/virtualagent-4/{virtualagent-4.8.x.py => virtualagent-4.9.x.py} (100%) rename twiml/voice/connect/virtualagent-5/{virtualagent-5.8.x.py => virtualagent-5.9.x.py} (100%) rename twiml/voice/connect/virtualagent-6/{virtualagent-6.8.x.py => virtualagent-6.9.x.py} (100%) rename twiml/voice/dial/dial-1/{dial-1.8.x.py => dial-1.9.x.py} (100%) rename twiml/voice/dial/dial-2/{dial-2.8.x.py => dial-2.9.x.py} (100%) rename twiml/voice/dial/dial-3/{dial-3.8.x.py => dial-3.9.x.py} (100%) rename twiml/voice/dial/dial-4/{dial-4.8.x.py => dial-4.9.x.py} (100%) rename twiml/voice/dial/dial-5/{dial-5.8.x.py => dial-5.9.x.py} (100%) rename twiml/voice/dial/dial-6/{dial-6.8.x.py => dial-6.9.x.py} (100%) rename twiml/voice/dial/dial-7/{dial-7.8.x.py => dial-7.9.x.py} (100%) rename twiml/voice/dial/dial-8/{dial-8.8.x.py => dial-8.9.x.py} (100%) rename twiml/voice/dial/dial-9/{dial-9.8.x.py => dial-9.9.x.py} (100%) rename twiml/voice/enqueue/enqueue-1/{enqueue-1.8.x.py => enqueue-1.9.x.py} (100%) rename twiml/voice/enqueue/enqueue-2/{enqueue-2.8.x.py => enqueue-2.9.x.py} (100%) rename twiml/voice/gather/gather-1/{gather-1.8.x.py => gather-1.9.x.py} (100%) rename twiml/voice/gather/gather-2/{gather-2.8.x.py => gather-2.9.x.py} (100%) rename twiml/voice/gather/gather-3/{gather-3.8.x.py => gather-3.9.x.py} (100%) rename twiml/voice/gather/gather-4/{gather-4.8.x.py => gather-4.9.x.py} (100%) rename twiml/voice/gather/gather-5/{gather-5.8.x.py => gather-5.9.x.py} (100%) rename twiml/voice/hangup/hangup-1/{hangup-1.8.x.py => hangup-1.9.x.py} (100%) rename twiml/voice/leave/leave-1/{leave-1.8.x.py => leave-1.9.x.py} (100%) rename twiml/voice/leave/leave-2/{leave-2.8.x.py => leave-2.9.x.py} (100%) rename twiml/voice/leave/leave-3/{leave-3.8.x.py => leave-3.9.x.py} (100%) rename twiml/voice/number/number-1/{number-1.8.x.py => number-1.9.x.py} (100%) rename twiml/voice/number/number-2/{number-2.8.x.py => number-2.9.x.py} (100%) rename twiml/voice/number/number-3/{number-3.8.x.py => number-3.9.x.py} (100%) rename twiml/voice/number/number-4/{number-4.8.x.py => number-4.9.x.py} (100%) rename twiml/voice/number/number-5/{number-5.8.x.py => number-5.9.x.py} (100%) rename twiml/voice/parameter/parameter-1/{parameter-1.8.x.py => parameter-1.9.x.py} (100%) rename twiml/voice/pause/pause-1/{pause-1.8.x.py => pause-1.9.x.py} (100%) rename twiml/voice/pause/pause-2/{pause-2.8.x.py => pause-2.9.x.py} (100%) rename twiml/voice/pay/pay-1/{pay-1.8.x.py => pay-1.9.x.py} (100%) rename twiml/voice/pay/pay-2/{pay-2.8.x.py => pay-2.9.x.py} (100%) rename twiml/voice/pay/pay-3/{pay-3.8.x.py => pay-3.9.x.py} (100%) rename twiml/voice/pay/pay-4/{pay-4.8.x.py => pay-4.9.x.py} (100%) rename twiml/voice/pay/pay-5/{pay-5.8.x.py => pay-5.9.x.py} (100%) rename twiml/voice/pay/pay-6/{pay-6.8.x.py => pay-6.9.x.py} (100%) rename twiml/voice/pay/pay-7/{pay-7.8.x.py => pay-7.9.x.py} (100%) rename twiml/voice/pay/pay-8/{pay-8.8.x.py => pay-8.9.x.py} (100%) rename twiml/voice/pay/pay-9/{pay-9.8.x.py => pay-9.9.x.py} (100%) rename twiml/voice/pay/pay-charge-connector/{pay-charge-connector.8.x.py => pay-charge-connector.9.x.py} (100%) rename twiml/voice/pay/pay-parameter/{pay-parameter.8.x.py => pay-parameter.9.x.py} (100%) rename twiml/voice/pay/pay-tokenize-connector/{pay-tokenize-connector.8.x.py => pay-tokenize-connector.9.x.py} (100%) rename twiml/voice/pay/pay-tokenize/{pay-tokenize.8.x.py => pay-tokenize.9.x.py} (100%) rename twiml/voice/pay/prompt/full-example-ach/{full-example-ach.8.x.py => full-example-ach.9.x.py} (100%) rename twiml/voice/pay/prompt/full-example-credit-card/{full-example-credit-card.8.x.py => full-example-credit-card.9.x.py} (100%) rename twiml/voice/pay/prompt/requireMatchingInputs/basic/{prompt-requireMatchingInputs-basic.8.x.py => prompt-requireMatchingInputs-basic.9.x.py} (100%) rename twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/{prompt-requireMatchingInputs-errorType.8.x.py => prompt-requireMatchingInputs-errorType.9.x.py} (100%) rename twiml/voice/play/play-1/{play-1.8.x.py => play-1.9.x.py} (100%) rename twiml/voice/play/play-2/{play-2.8.x.py => play-2.9.x.py} (100%) rename twiml/voice/play/play-3/{play-3.8.x.py => play-3.9.x.py} (100%) rename twiml/voice/queue/queue-1/{queue-1.8.x.py => queue-1.9.x.py} (100%) rename twiml/voice/queue/queue-2/{queue-2.8.x.py => queue-2.9.x.py} (100%) rename twiml/voice/record/record-1/{record-1.8.x.py => record-1.9.x.py} (100%) rename twiml/voice/record/record-2/{record-2.8.x.py => record-2.9.x.py} (100%) rename twiml/voice/record/record-3/{record-3.8.x.py => record-3.9.x.py} (100%) rename twiml/voice/record/record-4/{record-4.8.x.py => record-4.9.x.py} (100%) rename twiml/voice/redirect/redirect-1/{redirect-1.8.x.py => redirect-1.9.x.py} (100%) rename twiml/voice/redirect/redirect-2/{redirect-2.8.x.py => redirect-2.9.x.py} (100%) rename twiml/voice/redirect/redirect-3/{redirect-3.8.x.py => redirect-3.9.x.py} (100%) rename twiml/voice/refer/refer-1/{refer-1.8.x.py => refer-1.9.x.py} (100%) rename twiml/voice/refer/refer-2/{refer-2.8.x.py => refer-2.9.x.py} (100%) rename twiml/voice/refer/refer-3/{refer-3.8.x.py => refer-3.9.x.py} (100%) rename twiml/voice/refer/refer-4/{refer-4.8.x.py => refer-4.9.x.py} (100%) rename twiml/voice/reject/reject-1/{reject-1.8.x.py => reject-1.9.x.py} (100%) rename twiml/voice/reject/reject-2/{reject-2.8.x.py => reject-2.9.x.py} (100%) rename twiml/voice/say/say-basic-usage/{say-basic-usage.8.x.py => say-basic-usage.9.x.py} (100%) rename twiml/voice/say/say-language/{say-language.8.x.py => say-language.9.x.py} (100%) rename twiml/voice/say/say-loop/{say-loop.8.x.py => say-loop.9.x.py} (100%) rename twiml/voice/say/say-voice/{say-voice.8.x.py => say-voice.9.x.py} (100%) rename twiml/voice/say/ssml/{ssml.8.x.py => ssml.9.x.py} (100%) rename twiml/voice/sim/sim-1/{sim-1.8.x.py => sim-1.9.x.py} (100%) rename twiml/voice/sim/sim-2/{sim-2.8.x.py => sim-2.9.x.py} (100%) rename twiml/voice/sip/sip-1/{sip-1.8.x.py => sip-1.9.x.py} (100%) rename twiml/voice/sip/sip-10/{sip-10.8.x.py => sip-10.9.x.py} (100%) rename twiml/voice/sip/sip-11/{sip-11.8.x.py => sip-11.9.x.py} (100%) rename twiml/voice/sip/sip-2/{sip-2.8.x.py => sip-2.9.x.py} (100%) rename twiml/voice/sip/sip-3/{sip-3.8.x.py => sip-3.9.x.py} (100%) rename twiml/voice/sip/sip-4/{sip-4.8.x.py => sip-4.9.x.py} (100%) rename twiml/voice/sip/sip-5/{sip-5.8.x.py => sip-5.9.x.py} (100%) rename twiml/voice/sip/sip-6/{sip-6.8.x.py => sip-6.9.x.py} (100%) rename twiml/voice/sip/sip-7/{sip-7.8.x.py => sip-7.9.x.py} (100%) rename twiml/voice/sip/sip-8/{sip-8.8.x.py => sip-8.9.x.py} (100%) rename twiml/voice/sip/sip-9/{sip-9.8.x.py => sip-9.9.x.py} (100%) rename twiml/voice/siprec/siprec-1/{siprec-1.8.x.py => siprec-1.9.x.py} (100%) rename twiml/voice/sms/sms-1/{sms-1.8.x.py => sms-1.9.x.py} (100%) rename twiml/voice/sms/sms-2/{sms-2.8.x.py => sms-2.9.x.py} (100%) rename twiml/voice/sms/sms-3/{sms-3.8.x.py => sms-3.9.x.py} (100%) rename twiml/voice/sms/sms-4/{sms-4.8.x.py => sms-4.9.x.py} (100%) rename twiml/voice/stream/stream-1/{stream-1.8.x.py => stream-1.9.x.py} (100%) rename twiml/voice/stream/stream-2/{stream-2.8.x.py => stream-2.9.x.py} (100%) rename twiml/voice/your-response/your-response-1/{your-response-1.8.x.py => your-response-1.9.x.py} (100%) rename twiml/voice/your-response/your-response-2/{your-response-2.8.x.py => your-response-2.9.x.py} (100%) rename verify/verifications/approve-verification/{approve-verification.8.x.py => approve-verification.9.x.py} (100%) rename video/rest/compositionhooks/audio-mixing-hook/{audio-mixing-hook.8.x.py => audio-mixing-hook.9.x.py} (100%) rename video/rest/compositionhooks/complex-layout-hook/{complex-layout-hook.8.x.py => complex-layout-hook.9.x.py} (100%) rename video/rest/compositionhooks/delete-hook/{delete-hook.8.x.py => delete-hook.9.x.py} (100%) rename video/rest/compositionhooks/get-hook/{get-hook.8.x.py => get-hook.9.x.py} (100%) rename video/rest/compositionhooks/grid-mixing-hook/{grid-mixing-hook.8.x.py => grid-mixing-hook.9.x.py} (100%) rename video/rest/compositionhooks/list-hooks/{list-hooks.8.x.py => list-hooks.9.x.py} (100%) rename video/rest/compositionhooks/update-hook/{update-hook.8.x.py => update-hook.9.x.py} (100%) rename video/rest/compositions/compose-chess/{compose-chess.8.x.py => compose-chess.9.x.py} (100%) rename video/rest/compositions/compose-main-with-col-and-pip/{compose-main-with-col-and-pip.8.x.py => compose-main-with-col-and-pip.9.x.py} (100%) rename video/rest/compositions/compose-main-with-row/{compose-main-with-row.8.x.py => compose-main-with-row.9.x.py} (100%) rename video/rest/compositions/compose-mosaic/{compose-mosaic.8.x.py => compose-mosaic.9.x.py} (100%) rename video/rest/compositions/compose-participant-video-with-all-audios/{compose-participant-with-all-audios.8.x.py => compose-participant-with-all-audios.9.x.py} (100%) rename video/rest/compositions/compose-participant/{compose-participant.8.x.py => compose-participant.9.x.py} (100%) rename video/rest/compositions/compose-pip/{compose-pip.8.x.py => compose-pip.9.x.py} (100%) rename video/rest/compositions/compose-room/{compose-room.8.x.py => compose-room.9.x.py} (100%) rename video/rest/compositions/compose-set-as-row/{compose-set-as-row.8.x.py => compose-set-as-row.9.x.py} (100%) rename video/rest/compositions/compose-set-as-sequence/{compose-set-as-sequence.8.x.py => compose-set-as-sequence.9.x.py} (100%) rename video/rest/compositions/delete-composition/{delete-composition.8.x.py => delete-composition.9.x.py} (100%) rename video/rest/compositions/get-completed-compositions/{get-completed-compositions.8.x.py => get-completed-compositions.9.x.py} (100%) rename video/rest/compositions/get-composition-media-file/{get-composition-media-file.8.x.py => get-composition-media-file.9.x.py} (100%) rename video/rest/compositions/get-composition/{get-composition.8.x.py => get-composition.9.x.py} (100%) rename video/rest/compositions/get-room-compositions/{get-room-compositions.8.x.py => get-room-compositions.9.x.py} (100%) rename video/rest/compositions/transcode-audio-recording/{transcode-audio-recording.8.x.py => transcode-audio-recording.9.x.py} (100%) rename video/rest/compositions/transcode-video-recording/{transcode-video-recording.8.x.py => transcode-video-recording.9.x.py} (100%) rename video/rest/recordings/delete-recording/{delete-recording.8.x.py => delete-recording.9.x.py} (100%) rename video/rest/recordings/list-deleted-recordings/{list-deleted-recordings.8.x.py => list-deleted-recordings.9.x.py} (100%) rename video/rest/recordings/list-recordings-for-participant-in-room/{list-recordings-for-participant-in-room.8.x.py => list-recordings-for-participant-in-room.9.x.py} (100%) rename video/rest/recordings/list-recordings-for-participant/{list-recordings-for-participant.8.x.py => list-recordings-for-participant.9.x.py} (100%) rename video/rest/recordings/list-recordings-for-room/{list-recordings-for-room.8.x.py => list-recordings-for-room.9.x.py} (100%) rename video/rest/recordings/retrieve-recording-binary-data/{retrieve-recording-binary-data.8.x.py => retrieve-recording-binary-data.9.x.py} (100%) rename video/rest/recordings/retrieve-recording-by-sid/{retrieve-recording-by-sid.8.x.py => retrieve-recording-by-sid.9.x.py} (100%) rename video/rest/rooms/create-group-room-with-h264/{create-group-room.8.x.py => create-group-room.9.x.py} (100%) rename video/rest/rooms/create-group-room/{create-group-room.8.x.py => create-group-room.9.x.py} (100%) rename video/rest/rooms/create-peer-to-peer-room/{create-peer-to-peer-room.8.x.py => create-peer-to-peer-room.9.x.py} (100%) rename video/rest/rooms/create-room/{create-room.8.x.py => create-room.9.x.py} (100%) rename video/rest/rooms/list-room-recordings/{list-room-recordings.8.x.py => list-room-recordings.9.x.py} (100%) rename video/rest/rooms/list-rooms-filtered-by-name/{list-rooms-filtered-by-name.8.x.py => list-rooms-filtered-by-name.9.x.py} (100%) rename video/rest/rooms/list-rooms-filtered-by-status/{list-rooms-filtered-by-status.8.x.py => list-rooms-filtered-by-status.9.x.py} (100%) rename video/rest/rooms/list-rooms-multiple-filters/{list-rooms-multiple-filters.8.x.py => list-rooms-multiple-filters.9.x.py} (100%) rename video/rest/rooms/participants/list-subscribed-tracks/{list-subscribed-tracks.8.x.py => list-subscribed-tracks.9.x.py} (100%) rename video/rest/rooms/participants/retrieve-subscribe-rules/{retrieve-subscribe-rules.8.x.py => retrieve-subscribe-rules.9.x.py} (100%) rename video/rest/rooms/participants/retrieve-subscribed-track/{retrieve-subscribed-track.8.x.py => retrieve-subscribed-track.9.x.py} (100%) rename video/rest/rooms/participants/unsubscribe-media-transcriber/{update-customer-rules.8.x.py => update-customer-rules.9.x.py} (100%) rename video/rest/rooms/participants/update-subscribe-rules-static/{update-customer-rules.8.x.py => update-customer-rules.9.x.py} (100%) rename video/rest/rooms/recording-rules-audio-all/{recording-rules-audio-all.8.x.py => recording-rules-audio-all.9.x.py} (100%) rename video/rest/rooms/recording-rules-one-participant/{recording-rules-one-participant.8.x.py => recording-rules-one-participant.9.x.py} (100%) rename video/rest/rooms/recording-rules-start-all/{recording-rules-start-all.8.x.py => recording-rules-start-all.9.x.py} (100%) rename video/rest/rooms/recording-rules-stop-all/{recording-rules-stop-all.8.x.py => recording-rules-stop-all.9.x.py} (100%) rename video/rest/rooms/retrieve-media-for-room-recording/{retrieve-media-for-room-recording.8.x.py => retrieve-media-for-room-recording.9.x.py} (100%) rename video/rest/rooms/retrieve-room-by-sid/{retrieve-room-by-sid.8.x.py => retrieve-room-by-sid.9.x.py} (100%) rename video/rest/rooms/retrieve-room-by-unique-name/{retrieve-room-by-unique-name.8.x.py => retrieve-room-by-unique-name.9.x.py} (100%) rename video/rest/rooms/retrieve-room-recording/{retrieve-room-recording.8.x.py => retrieve-room-recording.9.x.py} (100%) rename video/rest/rooms/update-room-status-to-completed/{update-room-status-to-completed.8.x.py => update-room-status-to-completed.9.x.py} (100%) rename video/users/token-generation-server-rooms/{token-generation-server.8.x.py => token-generation-server.9.x.py} (100%) rename video/users/token-generation-server/{token-generation-server.8.x.py => token-generation-server.9.x.py} (100%) rename voice/queueing/agent/{queue-agent.8.x.py => queue-agent.9.x.py} (100%) rename voice/queueing/caller/{queue-caller.8.x.py => queue-caller.9.x.py} (100%) rename voice/queueing/redirect/{queue-redirect.8.x.py => queue-redirect.9.x.py} (100%) rename voice/specify-edge/{specify-edge.8.x.py => specify-edge.9.x.py} (100%) rename wireless/commands/create-binary-example-1/{create-binary-example-1.8.x.py => create-binary-example-1.9.x.py} (100%) rename wireless/commands/create-text-example-1/{create-text-example-1.8.x.py => create-text-example-1.9.x.py} (100%) rename wireless/commands/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename wireless/commands/list-example-1/{list-example-1.8.x.py => list-example-1.9.x.py} (100%) rename wireless/rateplans/create-example-1/{create-example-1.8.x.py => create-example-1.9.x.py} (100%) rename wireless/rateplans/instance-delete-example-1/{delete-example-1.8.x.py => delete-example-1.9.x.py} (100%) rename wireless/rateplans/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename wireless/rateplans/instance-get-example-2/{instance-get-example-2.8.x.py => instance-get-example-2.9.x.py} (100%) rename wireless/rateplans/list-example-1/{list-example-1.8.x.py => list-example-1.9.x.py} (100%) rename wireless/sims-data-session/list-example-1/{list-example-1.8.x.py => list-example-1.9.x.py} (100%) rename wireless/sims-usage-record/list-example-1/{list-example-1.8.x.py => list-example-1.9.x.py} (100%) rename wireless/sims/instance-get-example-1/{instance-get-example-1.8.x.py => instance-get-example-1.9.x.py} (100%) rename wireless/sims/instance-get-example-2/{instance-get-example-2.8.x.py => instance-get-example-2.9.x.py} (100%) rename wireless/sims/instance-post-example-1/{instance-post-example-1.8.x.py => instance-post-example-1.9.x.py} (100%) rename wireless/sims/list-example-1/{list-example-1.8.x.py => list-example-1.9.x.py} (100%) diff --git a/README.md b/README.md index 8dde3d8b8c..9a76b116a0 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ snippet-example-1.6.x.cs snippet-example-1.4.x.php snippet-example-1.7.x.php - snippet-example-1.8.x.py + snippet-example-1.9.x.py ``` And the full structure should look like this: diff --git a/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.8.x.py b/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.9.x.py similarity index 100% rename from add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.8.x.py rename to add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.9.x.py diff --git a/api-auth/api-auth.8.x.py b/api-auth/api-auth.9.x.py similarity index 100% rename from api-auth/api-auth.8.x.py rename to api-auth/api-auth.9.x.py diff --git a/client/capability-token-2way/capability-token.8.x.py b/client/capability-token-2way/capability-token.9.x.py similarity index 100% rename from client/capability-token-2way/capability-token.8.x.py rename to client/capability-token-2way/capability-token.9.x.py diff --git a/client/capability-token-expires/capability-token-expires.8.x.py b/client/capability-token-expires/capability-token-expires.9.x.py similarity index 100% rename from client/capability-token-expires/capability-token-expires.8.x.py rename to client/capability-token-expires/capability-token-expires.9.x.py diff --git a/client/capability-token-incoming/capability-token.8.x.py b/client/capability-token-incoming/capability-token.9.x.py similarity index 100% rename from client/capability-token-incoming/capability-token.8.x.py rename to client/capability-token-incoming/capability-token.9.x.py diff --git a/client/capability-token-outgoing/capability-token.8.x.py b/client/capability-token-outgoing/capability-token.9.x.py similarity index 100% rename from client/capability-token-outgoing/capability-token.8.x.py rename to client/capability-token-outgoing/capability-token.9.x.py diff --git a/client/capability-token/capability-token.8.x.py b/client/capability-token/capability-token.9.x.py similarity index 100% rename from client/capability-token/capability-token.8.x.py rename to client/capability-token/capability-token.9.x.py diff --git a/client/response-twiml-client/response-twiml-client.8.x.py b/client/response-twiml-client/response-twiml-client.9.x.py similarity index 100% rename from client/response-twiml-client/response-twiml-client.8.x.py rename to client/response-twiml-client/response-twiml-client.9.x.py diff --git a/client/response-twiml-dial/response-twiml-dial.8.x.py b/client/response-twiml-dial/response-twiml-dial.9.x.py similarity index 100% rename from client/response-twiml-dial/response-twiml-dial.8.x.py rename to client/response-twiml-dial/response-twiml-dial.9.x.py diff --git a/client/response-twiml/response-twiml.8.x.py b/client/response-twiml/response-twiml.9.x.py similarity index 100% rename from client/response-twiml/response-twiml.8.x.py rename to client/response-twiml/response-twiml.9.x.py diff --git a/deployed-devices/quickstarts/sync-boardled/create-document/create-document.8.x.py b/deployed-devices/quickstarts/sync-boardled/create-document/create-document.9.x.py similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/create-document/create-document.8.x.py rename to deployed-devices/quickstarts/sync-boardled/create-document/create-document.9.x.py diff --git a/deployed-devices/quickstarts/sync-boardled/update-document/update-document.8.x.py b/deployed-devices/quickstarts/sync-boardled/update-document/update-document.9.x.py similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/update-document/update-document.8.x.py rename to deployed-devices/quickstarts/sync-boardled/update-document/update-document.9.x.py diff --git a/deployed-devices/rest/certificates/create-certificate/create-certificate.8.x.py b/deployed-devices/rest/certificates/create-certificate/create-certificate.9.x.py similarity index 100% rename from deployed-devices/rest/certificates/create-certificate/create-certificate.8.x.py rename to deployed-devices/rest/certificates/create-certificate/create-certificate.9.x.py diff --git a/deployed-devices/rest/certificates/delete-certificate/delete-certificate.8.x.py b/deployed-devices/rest/certificates/delete-certificate/delete-certificate.9.x.py similarity index 100% rename from deployed-devices/rest/certificates/delete-certificate/delete-certificate.8.x.py rename to deployed-devices/rest/certificates/delete-certificate/delete-certificate.9.x.py diff --git a/deployed-devices/rest/certificates/list-certificates/list-certificates.8.x.py b/deployed-devices/rest/certificates/list-certificates/list-certificates.9.x.py similarity index 100% rename from deployed-devices/rest/certificates/list-certificates/list-certificates.8.x.py rename to deployed-devices/rest/certificates/list-certificates/list-certificates.9.x.py diff --git a/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.8.x.py b/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.9.x.py similarity index 100% rename from deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.8.x.py rename to deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.9.x.py diff --git a/deployed-devices/rest/certificates/update-certificate/update-certificate.8.x.py b/deployed-devices/rest/certificates/update-certificate/update-certificate.9.x.py similarity index 100% rename from deployed-devices/rest/certificates/update-certificate/update-certificate.8.x.py rename to deployed-devices/rest/certificates/update-certificate/update-certificate.9.x.py diff --git a/deployed-devices/rest/deployments/create-deployment/create-deployment.8.x.py b/deployed-devices/rest/deployments/create-deployment/create-deployment.9.x.py similarity index 100% rename from deployed-devices/rest/deployments/create-deployment/create-deployment.8.x.py rename to deployed-devices/rest/deployments/create-deployment/create-deployment.9.x.py diff --git a/deployed-devices/rest/deployments/delete-deployment/delete-deployment.8.x.py b/deployed-devices/rest/deployments/delete-deployment/delete-deployment.9.x.py similarity index 100% rename from deployed-devices/rest/deployments/delete-deployment/delete-deployment.8.x.py rename to deployed-devices/rest/deployments/delete-deployment/delete-deployment.9.x.py diff --git a/deployed-devices/rest/deployments/list-deployments/list-deployments.8.x.py b/deployed-devices/rest/deployments/list-deployments/list-deployments.9.x.py similarity index 100% rename from deployed-devices/rest/deployments/list-deployments/list-deployments.8.x.py rename to deployed-devices/rest/deployments/list-deployments/list-deployments.9.x.py diff --git a/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.8.x.py b/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.9.x.py similarity index 100% rename from deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.8.x.py rename to deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.9.x.py diff --git a/deployed-devices/rest/deployments/update-deployment/update-deployment.8.x.py b/deployed-devices/rest/deployments/update-deployment/update-deployment.9.x.py similarity index 100% rename from deployed-devices/rest/deployments/update-deployment/update-deployment.8.x.py rename to deployed-devices/rest/deployments/update-deployment/update-deployment.9.x.py diff --git a/deployed-devices/rest/devices/create-device/create-device.8.x.py b/deployed-devices/rest/devices/create-device/create-device.9.x.py similarity index 100% rename from deployed-devices/rest/devices/create-device/create-device.8.x.py rename to deployed-devices/rest/devices/create-device/create-device.9.x.py diff --git a/deployed-devices/rest/devices/delete-device/delete-device.8.x.py b/deployed-devices/rest/devices/delete-device/delete-device.9.x.py similarity index 100% rename from deployed-devices/rest/devices/delete-device/delete-device.8.x.py rename to deployed-devices/rest/devices/delete-device/delete-device.9.x.py diff --git a/deployed-devices/rest/devices/list-devices/list-devices.8.x.py b/deployed-devices/rest/devices/list-devices/list-devices.9.x.py similarity index 100% rename from deployed-devices/rest/devices/list-devices/list-devices.8.x.py rename to deployed-devices/rest/devices/list-devices/list-devices.9.x.py diff --git a/deployed-devices/rest/devices/retrieve-device/retrieve-device.8.x.py b/deployed-devices/rest/devices/retrieve-device/retrieve-device.9.x.py similarity index 100% rename from deployed-devices/rest/devices/retrieve-device/retrieve-device.8.x.py rename to deployed-devices/rest/devices/retrieve-device/retrieve-device.9.x.py diff --git a/deployed-devices/rest/devices/update-device/update-device.8.x.py b/deployed-devices/rest/devices/update-device/update-device.9.x.py similarity index 100% rename from deployed-devices/rest/devices/update-device/update-device.8.x.py rename to deployed-devices/rest/devices/update-device/update-device.9.x.py diff --git a/deployed-devices/rest/fleets/create-fleet/create-fleet.8.x.py b/deployed-devices/rest/fleets/create-fleet/create-fleet.9.x.py similarity index 100% rename from deployed-devices/rest/fleets/create-fleet/create-fleet.8.x.py rename to deployed-devices/rest/fleets/create-fleet/create-fleet.9.x.py diff --git a/deployed-devices/rest/fleets/delete-fleet/delete-fleet.8.x.py b/deployed-devices/rest/fleets/delete-fleet/delete-fleet.9.x.py similarity index 100% rename from deployed-devices/rest/fleets/delete-fleet/delete-fleet.8.x.py rename to deployed-devices/rest/fleets/delete-fleet/delete-fleet.9.x.py diff --git a/deployed-devices/rest/fleets/list-fleets/list-fleets.8.x.py b/deployed-devices/rest/fleets/list-fleets/list-fleets.9.x.py similarity index 100% rename from deployed-devices/rest/fleets/list-fleets/list-fleets.8.x.py rename to deployed-devices/rest/fleets/list-fleets/list-fleets.9.x.py diff --git a/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.8.x.py b/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.9.x.py similarity index 100% rename from deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.8.x.py rename to deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.9.x.py diff --git a/deployed-devices/rest/fleets/update-fleet/update-fleet.8.x.py b/deployed-devices/rest/fleets/update-fleet/update-fleet.9.x.py similarity index 100% rename from deployed-devices/rest/fleets/update-fleet/update-fleet.8.x.py rename to deployed-devices/rest/fleets/update-fleet/update-fleet.9.x.py diff --git a/deployed-devices/rest/keys/create-key/create-key.8.x.py b/deployed-devices/rest/keys/create-key/create-key.9.x.py similarity index 100% rename from deployed-devices/rest/keys/create-key/create-key.8.x.py rename to deployed-devices/rest/keys/create-key/create-key.9.x.py diff --git a/deployed-devices/rest/keys/delete-key/delete-key.8.x.py b/deployed-devices/rest/keys/delete-key/delete-key.9.x.py similarity index 100% rename from deployed-devices/rest/keys/delete-key/delete-key.8.x.py rename to deployed-devices/rest/keys/delete-key/delete-key.9.x.py diff --git a/deployed-devices/rest/keys/list-keys/list-key.8.x.py b/deployed-devices/rest/keys/list-keys/list-key.9.x.py similarity index 100% rename from deployed-devices/rest/keys/list-keys/list-key.8.x.py rename to deployed-devices/rest/keys/list-keys/list-key.9.x.py diff --git a/deployed-devices/rest/keys/retrieve-key/retrieve-key.8.x.py b/deployed-devices/rest/keys/retrieve-key/retrieve-key.9.x.py similarity index 100% rename from deployed-devices/rest/keys/retrieve-key/retrieve-key.8.x.py rename to deployed-devices/rest/keys/retrieve-key/retrieve-key.9.x.py diff --git a/deployed-devices/rest/keys/update-key/update-key.8.x.py b/deployed-devices/rest/keys/update-key/update-key.9.x.py similarity index 100% rename from deployed-devices/rest/keys/update-key/update-key.8.x.py rename to deployed-devices/rest/keys/update-key/update-key.9.x.py diff --git a/fax/basic-receive/basic-receive.8.x.py b/fax/basic-receive/basic-receive.9.x.py similarity index 100% rename from fax/basic-receive/basic-receive.8.x.py rename to fax/basic-receive/basic-receive.9.x.py diff --git a/fax/basic-send/basic-send.8.x.py b/fax/basic-send/basic-send.9.x.py similarity index 100% rename from fax/basic-send/basic-send.8.x.py rename to fax/basic-send/basic-send.9.x.py diff --git a/fax/instance-get-example/instance-get-example.8.x.py b/fax/instance-get-example/instance-get-example.9.x.py similarity index 100% rename from fax/instance-get-example/instance-get-example.8.x.py rename to fax/instance-get-example/instance-get-example.9.x.py diff --git a/fax/instance-post-example/instance-post-example.8.x.py b/fax/instance-post-example/instance-post-example.9.x.py similarity index 100% rename from fax/instance-post-example/instance-post-example.8.x.py rename to fax/instance-post-example/instance-post-example.9.x.py diff --git a/fax/list-get-example/list-get-example.8.x.py b/fax/list-get-example/list-get-example.9.x.py similarity index 100% rename from fax/list-get-example/list-get-example.8.x.py rename to fax/list-get-example/list-get-example.9.x.py diff --git a/fax/sip-send/example-1/example-1.8.x.py b/fax/sip-send/example-1/example-1.9.x.py similarity index 100% rename from fax/sip-send/example-1/example-1.8.x.py rename to fax/sip-send/example-1/example-1.9.x.py diff --git a/fax/sip-send/example-2/example-2.8.x.py b/fax/sip-send/example-2/example-2.9.x.py similarity index 100% rename from fax/sip-send/example-2/example-2.8.x.py rename to fax/sip-send/example-2/example-2.9.x.py diff --git a/fax/sip-send/example-3/example-3.8.x.py b/fax/sip-send/example-3/example-3.9.x.py similarity index 100% rename from fax/sip-send/example-3/example-3.8.x.py rename to fax/sip-send/example-3/example-3.9.x.py diff --git a/guides/request-validation-django/example-1/example-1.8.x.py b/guides/request-validation-django/example-1/example-1.9.x.py similarity index 100% rename from guides/request-validation-django/example-1/example-1.8.x.py rename to guides/request-validation-django/example-1/example-1.9.x.py diff --git a/guides/request-validation-django/example-2/example-2.8.x.py b/guides/request-validation-django/example-2/example-2.9.x.py similarity index 100% rename from guides/request-validation-django/example-2/example-2.8.x.py rename to guides/request-validation-django/example-2/example-2.9.x.py diff --git a/guides/request-validation-django/example-3/example-3.8.x.py b/guides/request-validation-django/example-3/example-3.9.x.py similarity index 100% rename from guides/request-validation-django/example-3/example-3.8.x.py rename to guides/request-validation-django/example-3/example-3.9.x.py diff --git a/guides/request-validation-python/example-1/example-1.8.x.py b/guides/request-validation-python/example-1/example-1.9.x.py similarity index 100% rename from guides/request-validation-python/example-1/example-1.8.x.py rename to guides/request-validation-python/example-1/example-1.9.x.py diff --git a/guides/request-validation-python/example-2/example-2.8.x.py b/guides/request-validation-python/example-2/example-2.9.x.py similarity index 100% rename from guides/request-validation-python/example-2/example-2.8.x.py rename to guides/request-validation-python/example-2/example-2.9.x.py diff --git a/guides/request-validation-python/example-3/example-3.8.x.py b/guides/request-validation-python/example-3/example-3.9.x.py similarity index 100% rename from guides/request-validation-python/example-3/example-3.8.x.py rename to guides/request-validation-python/example-3/example-3.9.x.py diff --git a/guides/request-validation-python/example-4/example-4.8.x.py b/guides/request-validation-python/example-4/example-4.9.x.py similarity index 100% rename from guides/request-validation-python/example-4/example-4.8.x.py rename to guides/request-validation-python/example-4/example-4.9.x.py diff --git a/guides/voice/conference-calls-guide/moderated-conference/moderated-conference.8.x.py b/guides/voice/conference-calls-guide/moderated-conference/moderated-conference.9.x.py similarity index 100% rename from guides/voice/conference-calls-guide/moderated-conference/moderated-conference.8.x.py rename to guides/voice/conference-calls-guide/moderated-conference/moderated-conference.9.x.py diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.8.x.py b/guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.9.x.py similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.8.x.py rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.9.x.py diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.8.x.py b/guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.9.x.py similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.8.x.py rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.9.x.py diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.8.x.py b/guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.9.x.py similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.8.x.py rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.9.x.py diff --git a/guides/voice/record-calls-guide/record-outgoing-call/example-1.8.x.py b/guides/voice/record-calls-guide/record-outgoing-call/example-1.9.x.py similarity index 100% rename from guides/voice/record-calls-guide/record-outgoing-call/example-1.8.x.py rename to guides/voice/record-calls-guide/record-outgoing-call/example-1.9.x.py diff --git a/guides/voice/record-calls-guide/record-twiml-transcribe/example.8.x.py b/guides/voice/record-calls-guide/record-twiml-transcribe/example.9.x.py similarity index 100% rename from guides/voice/record-calls-guide/record-twiml-transcribe/example.8.x.py rename to guides/voice/record-calls-guide/record-twiml-transcribe/example.9.x.py diff --git a/guides/voice/record-calls-guide/record-twiml/example.8.x.py b/guides/voice/record-calls-guide/record-twiml/example.9.x.py similarity index 100% rename from guides/voice/record-calls-guide/record-twiml/example.8.x.py rename to guides/voice/record-calls-guide/record-twiml/example.9.x.py diff --git a/guides/voice/recording-add-on-guide/use-add-on-data/use-add-on-data.8.x.py b/guides/voice/recording-add-on-guide/use-add-on-data/use-add-on-data.9.x.py similarity index 100% rename from guides/voice/recording-add-on-guide/use-add-on-data/use-add-on-data.8.x.py rename to guides/voice/recording-add-on-guide/use-add-on-data/use-add-on-data.9.x.py diff --git a/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.8.x.py b/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.9.x.py similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.8.x.py rename to guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.9.x.py diff --git a/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.8.x.py b/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.9.x.py similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.8.x.py rename to guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.9.x.py diff --git a/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.8.x.py b/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.9.x.py similarity index 100% rename from lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.8.x.py rename to lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.9.x.py diff --git a/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.8.x.py b/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.9.x.py similarity index 100% rename from lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.8.x.py rename to lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.9.x.py diff --git a/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.8.x.py b/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.9.x.py similarity index 100% rename from lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.8.x.py rename to lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.9.x.py diff --git a/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.8.x.py b/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.9.x.py similarity index 100% rename from lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.8.x.py rename to lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.9.x.py diff --git a/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.8.x.py b/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.9.x.py similarity index 100% rename from lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.8.x.py rename to lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.9.x.py diff --git a/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.8.x.py b/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.9.x.py similarity index 100% rename from lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.8.x.py rename to lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.9.x.py diff --git a/lookups/lookup-international-basic/lookup-international-basic.8.x.py b/lookups/lookup-international-basic/lookup-international-basic.9.x.py similarity index 100% rename from lookups/lookup-international-basic/lookup-international-basic.8.x.py rename to lookups/lookup-international-basic/lookup-international-basic.9.x.py diff --git a/lookups/lookup-national-basic/lookup-national-basic.8.x.py b/lookups/lookup-national-basic/lookup-national-basic.9.x.py similarity index 100% rename from lookups/lookup-national-basic/lookup-national-basic.8.x.py rename to lookups/lookup-national-basic/lookup-national-basic.9.x.py diff --git a/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.8.x.py b/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.9.x.py similarity index 100% rename from media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.8.x.py rename to media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.9.x.py diff --git a/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.8.x.py b/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.9.x.py similarity index 100% rename from media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.8.x.py rename to media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.9.x.py diff --git a/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.8.x.py b/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.9.x.py similarity index 100% rename from messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.8.x.py rename to messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.9.x.py diff --git a/messaging/link-shortening/link-shortening-sms/link-shortening-sms.8.x.py b/messaging/link-shortening/link-shortening-sms/link-shortening-sms.9.x.py similarity index 100% rename from messaging/link-shortening/link-shortening-sms/link-shortening-sms.8.x.py rename to messaging/link-shortening/link-shortening-sms/link-shortening-sms.9.x.py diff --git a/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.8.x.py b/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.9.x.py similarity index 100% rename from messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.8.x.py rename to messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.9.x.py diff --git a/messaging/services/service-alpha-add/service-alpha-add.8.x.py b/messaging/services/service-alpha-add/service-alpha-add.9.x.py similarity index 100% rename from messaging/services/service-alpha-add/service-alpha-add.8.x.py rename to messaging/services/service-alpha-add/service-alpha-add.9.x.py diff --git a/messaging/services/service-alpha-delete/service-alpha-delete.8.x.py b/messaging/services/service-alpha-delete/service-alpha-delete.9.x.py similarity index 100% rename from messaging/services/service-alpha-delete/service-alpha-delete.8.x.py rename to messaging/services/service-alpha-delete/service-alpha-delete.9.x.py diff --git a/messaging/services/service-alpha-get/service-alpha-get.8.x.py b/messaging/services/service-alpha-get/service-alpha-get.9.x.py similarity index 100% rename from messaging/services/service-alpha-get/service-alpha-get.8.x.py rename to messaging/services/service-alpha-get/service-alpha-get.9.x.py diff --git a/messaging/services/service-alpha-list/service-alpha-list.8.x.py b/messaging/services/service-alpha-list/service-alpha-list.9.x.py similarity index 100% rename from messaging/services/service-alpha-list/service-alpha-list.8.x.py rename to messaging/services/service-alpha-list/service-alpha-list.9.x.py diff --git a/messaging/services/service-create/service-create.8.x.py b/messaging/services/service-create/service-create.9.x.py similarity index 100% rename from messaging/services/service-create/service-create.8.x.py rename to messaging/services/service-create/service-create.9.x.py diff --git a/messaging/services/service-delete/service-delete.8.x.py b/messaging/services/service-delete/service-delete.9.x.py similarity index 100% rename from messaging/services/service-delete/service-delete.8.x.py rename to messaging/services/service-delete/service-delete.9.x.py diff --git a/messaging/services/service-get/service-get.8.x.py b/messaging/services/service-get/service-get.9.x.py similarity index 100% rename from messaging/services/service-get/service-get.8.x.py rename to messaging/services/service-get/service-get.9.x.py diff --git a/messaging/services/service-list/service-list.8.x.py b/messaging/services/service-list/service-list.9.x.py similarity index 100% rename from messaging/services/service-list/service-list.8.x.py rename to messaging/services/service-list/service-list.9.x.py diff --git a/messaging/services/service-multiple-number-add/service-multiple-number-add.8.x.py b/messaging/services/service-multiple-number-add/service-multiple-number-add.9.x.py similarity index 100% rename from messaging/services/service-multiple-number-add/service-multiple-number-add.8.x.py rename to messaging/services/service-multiple-number-add/service-multiple-number-add.9.x.py diff --git a/messaging/services/service-number-add/service-number-add.8.x.py b/messaging/services/service-number-add/service-number-add.9.x.py similarity index 100% rename from messaging/services/service-number-add/service-number-add.8.x.py rename to messaging/services/service-number-add/service-number-add.9.x.py diff --git a/messaging/services/service-number-delete/service-number-delete.8.x.py b/messaging/services/service-number-delete/service-number-delete.9.x.py similarity index 100% rename from messaging/services/service-number-delete/service-number-delete.8.x.py rename to messaging/services/service-number-delete/service-number-delete.9.x.py diff --git a/messaging/services/service-number-get/service-number-get.8.x.py b/messaging/services/service-number-get/service-number-get.9.x.py similarity index 100% rename from messaging/services/service-number-get/service-number-get.8.x.py rename to messaging/services/service-number-get/service-number-get.9.x.py diff --git a/messaging/services/service-number-list/service-number-list.8.x.py b/messaging/services/service-number-list/service-number-list.9.x.py similarity index 100% rename from messaging/services/service-number-list/service-number-list.8.x.py rename to messaging/services/service-number-list/service-number-list.9.x.py diff --git a/messaging/services/service-shortcode-add/service-shortcode-add.8.x.py b/messaging/services/service-shortcode-add/service-shortcode-add.9.x.py similarity index 100% rename from messaging/services/service-shortcode-add/service-shortcode-add.8.x.py rename to messaging/services/service-shortcode-add/service-shortcode-add.9.x.py diff --git a/messaging/services/service-shortcode-delete/service-shortcode-delete.8.x.py b/messaging/services/service-shortcode-delete/service-shortcode-delete.9.x.py similarity index 100% rename from messaging/services/service-shortcode-delete/service-shortcode-delete.8.x.py rename to messaging/services/service-shortcode-delete/service-shortcode-delete.9.x.py diff --git a/messaging/services/service-shortcode-get/service-shortcode-get.8.x.py b/messaging/services/service-shortcode-get/service-shortcode-get.9.x.py similarity index 100% rename from messaging/services/service-shortcode-get/service-shortcode-get.8.x.py rename to messaging/services/service-shortcode-get/service-shortcode-get.9.x.py diff --git a/messaging/services/service-shortcode-list/service-shortcode-list.8.x.py b/messaging/services/service-shortcode-list/service-shortcode-list.9.x.py similarity index 100% rename from messaging/services/service-shortcode-list/service-shortcode-list.8.x.py rename to messaging/services/service-shortcode-list/service-shortcode-list.9.x.py diff --git a/messaging/services/service-update/service-update.8.x.py b/messaging/services/service-update/service-update.9.x.py similarity index 100% rename from messaging/services/service-update/service-update.8.x.py rename to messaging/services/service-update/service-update.9.x.py diff --git a/mobile-identity/identity-match/identity-match-example.8.x.py b/mobile-identity/identity-match/identity-match-example.9.x.py similarity index 100% rename from mobile-identity/identity-match/identity-match-example.8.x.py rename to mobile-identity/identity-match/identity-match-example.9.x.py diff --git a/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.8.x.py b/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.9.x.py similarity index 100% rename from mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.8.x.py rename to mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.9.x.py diff --git a/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.8.x.py b/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.9.x.py similarity index 100% rename from mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.8.x.py rename to mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.9.x.py diff --git a/monitor/alerts/instance-delete-example/instance-delete-example.8.x.py b/monitor/alerts/instance-delete-example/instance-delete-example.9.x.py similarity index 100% rename from monitor/alerts/instance-delete-example/instance-delete-example.8.x.py rename to monitor/alerts/instance-delete-example/instance-delete-example.9.x.py diff --git a/monitor/alerts/instance-get-example/instance-get-example.8.x.py b/monitor/alerts/instance-get-example/instance-get-example.9.x.py similarity index 100% rename from monitor/alerts/instance-get-example/instance-get-example.8.x.py rename to monitor/alerts/instance-get-example/instance-get-example.9.x.py diff --git a/monitor/alerts/list-get-example-all/list-get-example-all.8.x.py b/monitor/alerts/list-get-example-all/list-get-example-all.9.x.py similarity index 100% rename from monitor/alerts/list-get-example-all/list-get-example-all.8.x.py rename to monitor/alerts/list-get-example-all/list-get-example-all.9.x.py diff --git a/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.8.x.py b/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.9.x.py similarity index 100% rename from monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.8.x.py rename to monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.9.x.py diff --git a/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.8.x.py b/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.9.x.py similarity index 100% rename from monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.8.x.py rename to monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.9.x.py diff --git a/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.8.x.py b/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.9.x.py similarity index 100% rename from monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.8.x.py rename to monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.9.x.py diff --git a/monitor/events/list-get-example-date-filter/list-get-example-date-filter.8.x.py b/monitor/events/list-get-example-date-filter/list-get-example-date-filter.9.x.py similarity index 100% rename from monitor/events/list-get-example-date-filter/list-get-example-date-filter.8.x.py rename to monitor/events/list-get-example-date-filter/list-get-example-date-filter.9.x.py diff --git a/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.8.x.py b/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.9.x.py similarity index 100% rename from monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.8.x.py rename to monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.9.x.py diff --git a/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.8.x.py b/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.9.x.py similarity index 100% rename from monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.8.x.py rename to monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.9.x.py diff --git a/notifications/register/send-notification-2/send-notification-2.8.x.py b/notifications/register/send-notification-2/send-notification-2.9.x.py similarity index 100% rename from notifications/register/send-notification-2/send-notification-2.8.x.py rename to notifications/register/send-notification-2/send-notification-2.9.x.py diff --git a/notifications/register/send-notification-segment-tag/send-notification-segment-tag.8.x.py b/notifications/register/send-notification-segment-tag/send-notification-segment-tag.9.x.py similarity index 100% rename from notifications/register/send-notification-segment-tag/send-notification-segment-tag.8.x.py rename to notifications/register/send-notification-segment-tag/send-notification-segment-tag.9.x.py diff --git a/notifications/register/send-notification-segment/send-notification-segment.8.x.py b/notifications/register/send-notification-segment/send-notification-segment.9.x.py similarity index 100% rename from notifications/register/send-notification-segment/send-notification-segment.8.x.py rename to notifications/register/send-notification-segment/send-notification-segment.9.x.py diff --git a/notifications/register/send-notification/send-notification.8.x.py b/notifications/register/send-notification/send-notification.9.x.py similarity index 100% rename from notifications/register/send-notification/send-notification.8.x.py rename to notifications/register/send-notification/send-notification.9.x.py diff --git a/notifications/rest/bindings/create-binding/create-binding.8.x.py b/notifications/rest/bindings/create-binding/create-binding.9.x.py similarity index 100% rename from notifications/rest/bindings/create-binding/create-binding.8.x.py rename to notifications/rest/bindings/create-binding/create-binding.9.x.py diff --git a/notifications/rest/bindings/delete-binding/delete-binding.8.x.py b/notifications/rest/bindings/delete-binding/delete-binding.9.x.py similarity index 100% rename from notifications/rest/bindings/delete-binding/delete-binding.8.x.py rename to notifications/rest/bindings/delete-binding/delete-binding.9.x.py diff --git a/notifications/rest/bindings/list-binding/list-binding.8.x.py b/notifications/rest/bindings/list-binding/list-binding.9.x.py similarity index 100% rename from notifications/rest/bindings/list-binding/list-binding.8.x.py rename to notifications/rest/bindings/list-binding/list-binding.9.x.py diff --git a/notifications/rest/bindings/retrieve-binding/retrieve-binding.8.x.py b/notifications/rest/bindings/retrieve-binding/retrieve-binding.9.x.py similarity index 100% rename from notifications/rest/bindings/retrieve-binding/retrieve-binding.8.x.py rename to notifications/rest/bindings/retrieve-binding/retrieve-binding.9.x.py diff --git a/notifications/rest/credentials/create-apn-credential/create-apn-credential.8.x.py b/notifications/rest/credentials/create-apn-credential/create-apn-credential.9.x.py similarity index 100% rename from notifications/rest/credentials/create-apn-credential/create-apn-credential.8.x.py rename to notifications/rest/credentials/create-apn-credential/create-apn-credential.9.x.py diff --git a/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.8.x.py b/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.9.x.py similarity index 100% rename from notifications/rest/credentials/create-fcm-credential/create-fcm-credential.8.x.py rename to notifications/rest/credentials/create-fcm-credential/create-fcm-credential.9.x.py diff --git a/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.8.x.py b/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.9.x.py similarity index 100% rename from notifications/rest/credentials/create-gcm-credential/create-gcm-credential.8.x.py rename to notifications/rest/credentials/create-gcm-credential/create-gcm-credential.9.x.py diff --git a/notifications/rest/credentials/delete-credential/delete-credential.8.x.py b/notifications/rest/credentials/delete-credential/delete-credential.9.x.py similarity index 100% rename from notifications/rest/credentials/delete-credential/delete-credential.8.x.py rename to notifications/rest/credentials/delete-credential/delete-credential.9.x.py diff --git a/notifications/rest/credentials/list-credential/list-credential.8.x.py b/notifications/rest/credentials/list-credential/list-credential.9.x.py similarity index 100% rename from notifications/rest/credentials/list-credential/list-credential.8.x.py rename to notifications/rest/credentials/list-credential/list-credential.9.x.py diff --git a/notifications/rest/credentials/retrieve-credential/retrieve-credential.8.x.py b/notifications/rest/credentials/retrieve-credential/retrieve-credential.9.x.py similarity index 100% rename from notifications/rest/credentials/retrieve-credential/retrieve-credential.8.x.py rename to notifications/rest/credentials/retrieve-credential/retrieve-credential.9.x.py diff --git a/notifications/rest/credentials/update-credential/update-credential.8.x.py b/notifications/rest/credentials/update-credential/update-credential.9.x.py similarity index 100% rename from notifications/rest/credentials/update-credential/update-credential.8.x.py rename to notifications/rest/credentials/update-credential/update-credential.9.x.py diff --git a/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.8.x.py b/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.9.x.py similarity index 100% rename from notifications/rest/notifications/send-notification-detailed/send-notification-detailed.8.x.py rename to notifications/rest/notifications/send-notification-detailed/send-notification-detailed.9.x.py diff --git a/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.8.x.py b/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.9.x.py similarity index 100% rename from notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.8.x.py rename to notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.9.x.py diff --git a/notifications/rest/notifications/send-notification/send-notification.8.x.py b/notifications/rest/notifications/send-notification/send-notification.9.x.py similarity index 100% rename from notifications/rest/notifications/send-notification/send-notification.8.x.py rename to notifications/rest/notifications/send-notification/send-notification.9.x.py diff --git a/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.8.x.py b/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.9.x.py similarity index 100% rename from notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.8.x.py rename to notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.9.x.py diff --git a/notifications/rest/segments/list-segment/list-segment.8.x.py b/notifications/rest/segments/list-segment/list-segment.9.x.py similarity index 100% rename from notifications/rest/segments/list-segment/list-segment.8.x.py rename to notifications/rest/segments/list-segment/list-segment.9.x.py diff --git a/notifications/rest/services/create-service/create-service.8.x.py b/notifications/rest/services/create-service/create-service.9.x.py similarity index 100% rename from notifications/rest/services/create-service/create-service.8.x.py rename to notifications/rest/services/create-service/create-service.9.x.py diff --git a/notifications/rest/services/delete-service/delete-service.8.x.py b/notifications/rest/services/delete-service/delete-service.9.x.py similarity index 100% rename from notifications/rest/services/delete-service/delete-service.8.x.py rename to notifications/rest/services/delete-service/delete-service.9.x.py diff --git a/notifications/rest/services/list-service/list-service.8.x.py b/notifications/rest/services/list-service/list-service.9.x.py similarity index 100% rename from notifications/rest/services/list-service/list-service.8.x.py rename to notifications/rest/services/list-service/list-service.9.x.py diff --git a/notifications/rest/services/retrieve-service/retrieve-service.8.x.py b/notifications/rest/services/retrieve-service/retrieve-service.9.x.py similarity index 100% rename from notifications/rest/services/retrieve-service/retrieve-service.8.x.py rename to notifications/rest/services/retrieve-service/retrieve-service.9.x.py diff --git a/notifications/rest/services/update-service/update-service.8.x.py b/notifications/rest/services/update-service/update-service.9.x.py similarity index 100% rename from notifications/rest/services/update-service/update-service.8.x.py rename to notifications/rest/services/update-service/update-service.9.x.py diff --git a/notifications/rest/users/add-user-to-segment/add-user-to-segment.8.x.py b/notifications/rest/users/add-user-to-segment/add-user-to-segment.9.x.py similarity index 100% rename from notifications/rest/users/add-user-to-segment/add-user-to-segment.8.x.py rename to notifications/rest/users/add-user-to-segment/add-user-to-segment.9.x.py diff --git a/notifications/rest/users/create-user/create-user.8.x.py b/notifications/rest/users/create-user/create-user.9.x.py similarity index 100% rename from notifications/rest/users/create-user/create-user.8.x.py rename to notifications/rest/users/create-user/create-user.9.x.py diff --git a/notifications/rest/users/delete-user/delete-user.8.x.py b/notifications/rest/users/delete-user/delete-user.9.x.py similarity index 100% rename from notifications/rest/users/delete-user/delete-user.8.x.py rename to notifications/rest/users/delete-user/delete-user.9.x.py diff --git a/notifications/rest/users/list-binding-of-user/list-binding-of-user.8.x.py b/notifications/rest/users/list-binding-of-user/list-binding-of-user.9.x.py similarity index 100% rename from notifications/rest/users/list-binding-of-user/list-binding-of-user.8.x.py rename to notifications/rest/users/list-binding-of-user/list-binding-of-user.9.x.py diff --git a/notifications/rest/users/list-users/list-users.8.x.py b/notifications/rest/users/list-users/list-users.9.x.py similarity index 100% rename from notifications/rest/users/list-users/list-users.8.x.py rename to notifications/rest/users/list-users/list-users.9.x.py diff --git a/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.8.x.py b/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.9.x.py similarity index 100% rename from notifications/rest/users/remove-user-from-segment/remove-user-from-segment.8.x.py rename to notifications/rest/users/remove-user-from-segment/remove-user-from-segment.9.x.py diff --git a/notifications/rest/users/retrieve-user/retrieve-user.8.x.py b/notifications/rest/users/retrieve-user/retrieve-user.9.x.py similarity index 100% rename from notifications/rest/users/retrieve-user/retrieve-user.8.x.py rename to notifications/rest/users/retrieve-user/retrieve-user.9.x.py diff --git a/notifications/sms-quickstart/create-binding/create-binding.8.x.py b/notifications/sms-quickstart/create-binding/create-binding.9.x.py similarity index 100% rename from notifications/sms-quickstart/create-binding/create-binding.8.x.py rename to notifications/sms-quickstart/create-binding/create-binding.9.x.py diff --git a/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.8.x.py b/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.9.x.py similarity index 100% rename from notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.8.x.py rename to notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.9.x.py diff --git a/notifications/sms-quickstart/send-notification/send-notification.8.x.py b/notifications/sms-quickstart/send-notification/send-notification.9.x.py similarity index 100% rename from notifications/sms-quickstart/send-notification/send-notification.8.x.py rename to notifications/sms-quickstart/send-notification/send-notification.9.x.py diff --git a/pricing/get-lookup-pricing/get-lookup-pricing.8.x.py b/pricing/get-lookup-pricing/get-lookup-pricing.9.x.py similarity index 100% rename from pricing/get-lookup-pricing/get-lookup-pricing.8.x.py rename to pricing/get-lookup-pricing/get-lookup-pricing.9.x.py diff --git a/pricing/get-messaging-country/get-messaging-country.8.x.py b/pricing/get-messaging-country/get-messaging-country.9.x.py similarity index 100% rename from pricing/get-messaging-country/get-messaging-country.8.x.py rename to pricing/get-messaging-country/get-messaging-country.9.x.py diff --git a/pricing/get-phone-number-country/get-phone-number-country.8.x.py b/pricing/get-phone-number-country/get-phone-number-country.9.x.py similarity index 100% rename from pricing/get-phone-number-country/get-phone-number-country.8.x.py rename to pricing/get-phone-number-country/get-phone-number-country.9.x.py diff --git a/pricing/get-voice-country/get-voice-country.8.x.py b/pricing/get-voice-country/get-voice-country.9.x.py similarity index 100% rename from pricing/get-voice-country/get-voice-country.8.x.py rename to pricing/get-voice-country/get-voice-country.9.x.py diff --git a/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.8.x.py b/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.9.x.py similarity index 100% rename from pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.8.x.py rename to pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.9.x.py diff --git a/pricing/get-voice-number/get-voice-number.8.x.py b/pricing/get-voice-number/get-voice-number.9.x.py similarity index 100% rename from pricing/get-voice-number/get-voice-number.8.x.py rename to pricing/get-voice-number/get-voice-number.9.x.py diff --git a/pricing/list-messaging-countries/list-messaging-countries.8.x.py b/pricing/list-messaging-countries/list-messaging-countries.9.x.py similarity index 100% rename from pricing/list-messaging-countries/list-messaging-countries.8.x.py rename to pricing/list-messaging-countries/list-messaging-countries.9.x.py diff --git a/pricing/list-phone-number-countries/list-phone-number-countries.8.x.py b/pricing/list-phone-number-countries/list-phone-number-countries.9.x.py similarity index 100% rename from pricing/list-phone-number-countries/list-phone-number-countries.8.x.py rename to pricing/list-phone-number-countries/list-phone-number-countries.9.x.py diff --git a/pricing/list-voice-countries/list-voice-countries.8.x.py b/pricing/list-voice-countries/list-voice-countries.9.x.py similarity index 100% rename from pricing/list-voice-countries/list-voice-countries.8.x.py rename to pricing/list-voice-countries/list-voice-countries.9.x.py diff --git a/proxy/quickstart/add-phone-number/add-phone-number.8.x.py b/proxy/quickstart/add-phone-number/add-phone-number.9.x.py similarity index 100% rename from proxy/quickstart/add-phone-number/add-phone-number.8.x.py rename to proxy/quickstart/add-phone-number/add-phone-number.9.x.py diff --git a/proxy/quickstart/create-participant/create-participant.8.x.py b/proxy/quickstart/create-participant/create-participant.9.x.py similarity index 100% rename from proxy/quickstart/create-participant/create-participant.8.x.py rename to proxy/quickstart/create-participant/create-participant.9.x.py diff --git a/proxy/quickstart/create-service/create-service.8.x.py b/proxy/quickstart/create-service/create-service.9.x.py similarity index 100% rename from proxy/quickstart/create-service/create-service.8.x.py rename to proxy/quickstart/create-service/create-service.9.x.py diff --git a/proxy/quickstart/create-session/create-session.8.x.py b/proxy/quickstart/create-session/create-session.9.x.py similarity index 100% rename from proxy/quickstart/create-session/create-session.8.x.py rename to proxy/quickstart/create-session/create-session.9.x.py diff --git a/proxy/quickstart/send-message/send-message.8.x.py b/proxy/quickstart/send-message/send-message.9.x.py similarity index 100% rename from proxy/quickstart/send-message/send-message.8.x.py rename to proxy/quickstart/send-message/send-message.9.x.py diff --git a/quickstart/python/autopilot/create-first-task/create_hello_world_task.8.x.py b/quickstart/python/autopilot/create-first-task/create_hello_world_task.9.x.py similarity index 100% rename from quickstart/python/autopilot/create-first-task/create_hello_world_task.8.x.py rename to quickstart/python/autopilot/create-first-task/create_hello_world_task.9.x.py diff --git a/quickstart/python/autopilot/create-hello-world-samples/create_hello_world_samples.8.x.py b/quickstart/python/autopilot/create-hello-world-samples/create_hello_world_samples.9.x.py similarity index 100% rename from quickstart/python/autopilot/create-hello-world-samples/create_hello_world_samples.8.x.py rename to quickstart/python/autopilot/create-hello-world-samples/create_hello_world_samples.9.x.py diff --git a/quickstart/python/autopilot/create-joke-samples/create_joke_samples.8.x.py b/quickstart/python/autopilot/create-joke-samples/create_joke_samples.9.x.py similarity index 100% rename from quickstart/python/autopilot/create-joke-samples/create_joke_samples.8.x.py rename to quickstart/python/autopilot/create-joke-samples/create_joke_samples.9.x.py diff --git a/quickstart/python/autopilot/create-joke-task/create_joke_task.8.x.py b/quickstart/python/autopilot/create-joke-task/create_joke_task.9.x.py similarity index 100% rename from quickstart/python/autopilot/create-joke-task/create_joke_task.8.x.py rename to quickstart/python/autopilot/create-joke-task/create_joke_task.9.x.py diff --git a/quickstart/python/autopilot/query-task/query_task.8.x.py b/quickstart/python/autopilot/query-task/query_task.9.x.py similarity index 100% rename from quickstart/python/autopilot/query-task/query_task.8.x.py rename to quickstart/python/autopilot/query-task/query_task.9.x.py diff --git a/quickstart/python/sms/example-1/send_notifications.8.x.py b/quickstart/python/sms/example-1/send_notifications.9.x.py similarity index 100% rename from quickstart/python/sms/example-1/send_notifications.8.x.py rename to quickstart/python/sms/example-1/send_notifications.9.x.py diff --git a/quickstart/python/sms/example-2/send_notifications.8.x.py b/quickstart/python/sms/example-2/send_notifications.9.x.py similarity index 100% rename from quickstart/python/sms/example-2/send_notifications.8.x.py rename to quickstart/python/sms/example-2/send_notifications.9.x.py diff --git a/quickstart/python/sms/example-3/sms_hello_monkey.8.x.py b/quickstart/python/sms/example-3/sms_hello_monkey.9.x.py similarity index 100% rename from quickstart/python/sms/example-3/sms_hello_monkey.8.x.py rename to quickstart/python/sms/example-3/sms_hello_monkey.9.x.py diff --git a/quickstart/python/sms/example-4/mms_hello_monkey.8.x.py b/quickstart/python/sms/example-4/mms_hello_monkey.9.x.py similarity index 100% rename from quickstart/python/sms/example-4/mms_hello_monkey.8.x.py rename to quickstart/python/sms/example-4/mms_hello_monkey.9.x.py diff --git a/quickstart/python/sms/example-5/reply_by_name.8.x.py b/quickstart/python/sms/example-5/reply_by_name.9.x.py similarity index 100% rename from quickstart/python/sms/example-5/reply_by_name.8.x.py rename to quickstart/python/sms/example-5/reply_by_name.9.x.py diff --git a/quickstart/python/sms/example-6/tracking_sms_conversations.8.x.py b/quickstart/python/sms/example-6/tracking_sms_conversations.9.x.py similarity index 100% rename from quickstart/python/sms/example-6/tracking_sms_conversations.8.x.py rename to quickstart/python/sms/example-6/tracking_sms_conversations.9.x.py diff --git a/quickstart/python/sms/example-7/send_sms_during_call.8.x.py b/quickstart/python/sms/example-7/send_sms_during_call.9.x.py similarity index 100% rename from quickstart/python/sms/example-7/send_sms_during_call.8.x.py rename to quickstart/python/sms/example-7/send_sms_during_call.9.x.py diff --git a/quickstart/python/sms/example-8/reply_to_message.8.x.py b/quickstart/python/sms/example-8/reply_to_message.9.x.py similarity index 100% rename from quickstart/python/sms/example-8/reply_to_message.8.x.py rename to quickstart/python/sms/example-8/reply_to_message.9.x.py diff --git a/quickstart/python/understand/example-2/example-2.8.x.py b/quickstart/python/understand/example-2/example-2.9.x.py similarity index 100% rename from quickstart/python/understand/example-2/example-2.8.x.py rename to quickstart/python/understand/example-2/example-2.9.x.py diff --git a/quickstart/python/voice/example-1-make-call/outgoing_call.8.x.py b/quickstart/python/voice/example-1-make-call/outgoing_call.9.x.py similarity index 100% rename from quickstart/python/voice/example-1-make-call/outgoing_call.8.x.py rename to quickstart/python/voice/example-1-make-call/outgoing_call.9.x.py diff --git a/quickstart/python/voice/example-2-receive-call/respond_to_call.8.x.py b/quickstart/python/voice/example-2-receive-call/respond_to_call.9.x.py similarity index 100% rename from quickstart/python/voice/example-2-receive-call/respond_to_call.8.x.py rename to quickstart/python/voice/example-2-receive-call/respond_to_call.9.x.py diff --git a/rename-files.py b/rename-files.py new file mode 100644 index 0000000000..1ed3a5ba15 --- /dev/null +++ b/rename-files.py @@ -0,0 +1,24 @@ +import os + +def rename_files(directory): + # Iterate over all files and directories in the current directory + for root, dirs, files in os.walk(directory): + for filename in files: + # Check if the file ends with "8.x" and has a .py extension + if filename.endswith("8.x.py"): + # Construct the old and new file paths + old_filepath = os.path.join(root, filename) + new_filename = filename.replace("8.x", "9.x") + new_filepath = os.path.join(root, new_filename) + + # Rename the file + os.rename(old_filepath, new_filepath) + print(f"Renamed {old_filepath} to {new_filepath}") + + # Recursively call rename_files for subdirectories + for subdir in dirs: + rename_files(os.path.join(root, subdir)) + +if __name__ == "__main__": + # Start renaming from the current directory + rename_files(os.getcwd()) diff --git a/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.8.x.py b/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.9.x.py similarity index 100% rename from rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.8.x.py rename to rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.9.x.py diff --git a/rest/access-tokens/ip-messaging-example/ip-messaging-example.8.x.py b/rest/access-tokens/ip-messaging-example/ip-messaging-example.9.x.py similarity index 100% rename from rest/access-tokens/ip-messaging-example/ip-messaging-example.8.x.py rename to rest/access-tokens/ip-messaging-example/ip-messaging-example.9.x.py diff --git a/rest/access-tokens/live-example/live-example.8.x.py b/rest/access-tokens/live-example/live-example.9.x.py similarity index 100% rename from rest/access-tokens/live-example/live-example.8.x.py rename to rest/access-tokens/live-example/live-example.9.x.py diff --git a/rest/access-tokens/sync-example/sync-example.8.x.py b/rest/access-tokens/sync-example/sync-example.9.x.py similarity index 100% rename from rest/access-tokens/sync-example/sync-example.8.x.py rename to rest/access-tokens/sync-example/sync-example.9.x.py diff --git a/rest/access-tokens/video-example/video-example.8.x.py b/rest/access-tokens/video-example/video-example.9.x.py similarity index 100% rename from rest/access-tokens/video-example/video-example.8.x.py rename to rest/access-tokens/video-example/video-example.9.x.py diff --git a/rest/access-tokens/voice-example/voice-example.8.x.py b/rest/access-tokens/voice-example/voice-example.9.x.py similarity index 100% rename from rest/access-tokens/voice-example/voice-example.8.x.py rename to rest/access-tokens/voice-example/voice-example.9.x.py diff --git a/rest/accounts/instance-get-example-1/instance-get-example-1.8.x.py b/rest/accounts/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/accounts/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/accounts/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/accounts/instance-post-example-1/instance-post-example-1.8.x.py b/rest/accounts/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/accounts/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/accounts/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/accounts/instance-post-example-2/instance-post-example-2.8.x.py b/rest/accounts/instance-post-example-2/instance-post-example-2.9.x.py similarity index 100% rename from rest/accounts/instance-post-example-2/instance-post-example-2.8.x.py rename to rest/accounts/instance-post-example-2/instance-post-example-2.9.x.py diff --git a/rest/accounts/instance-post-example-3/instance-post-example-3.8.x.py b/rest/accounts/instance-post-example-3/instance-post-example-3.9.x.py similarity index 100% rename from rest/accounts/instance-post-example-3/instance-post-example-3.8.x.py rename to rest/accounts/instance-post-example-3/instance-post-example-3.9.x.py diff --git a/rest/accounts/list-get-example-1/list-get-example-1.8.x.py b/rest/accounts/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/accounts/list-get-example-1/list-get-example-1.8.x.py rename to rest/accounts/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/accounts/list-get-example-2/list-get-example-2.8.x.py b/rest/accounts/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/accounts/list-get-example-2/list-get-example-2.8.x.py rename to rest/accounts/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/addresses/instance-create-example/instance-create-example.8.x.py b/rest/addresses/instance-create-example/instance-create-example.9.x.py similarity index 100% rename from rest/addresses/instance-create-example/instance-create-example.8.x.py rename to rest/addresses/instance-create-example/instance-create-example.9.x.py diff --git a/rest/addresses/instance-get-example-1/instance-get-example-1.8.x.py b/rest/addresses/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/addresses/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/addresses/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/addresses/instance-post-example-1/instance-post-example-1.8.x.py b/rest/addresses/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/addresses/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/addresses/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.8.x.py b/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.9.x.py similarity index 100% rename from rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.8.x.py rename to rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.9.x.py diff --git a/rest/addresses/list-get-example-1/list-get-example-1.8.x.py b/rest/addresses/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/addresses/list-get-example-1/list-get-example-1.8.x.py rename to rest/addresses/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/addresses/list-get-example-2/list-get-example-2.8.x.py b/rest/addresses/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/addresses/list-get-example-2/list-get-example-2.8.x.py rename to rest/addresses/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/addresses/list-post-example-1/list-post-example-1.8.x.py b/rest/addresses/list-post-example-1/list-post-example-1.9.x.py similarity index 100% rename from rest/addresses/list-post-example-1/list-post-example-1.8.x.py rename to rest/addresses/list-post-example-1/list-post-example-1.9.x.py diff --git a/rest/answering-machine-detection/outgoing-call/outgoing-call-1.8.x.py b/rest/answering-machine-detection/outgoing-call/outgoing-call-1.9.x.py similarity index 100% rename from rest/answering-machine-detection/outgoing-call/outgoing-call-1.8.x.py rename to rest/answering-machine-detection/outgoing-call/outgoing-call-1.9.x.py diff --git a/rest/applications/instance-get-example-1/instance-get-example-1.8.x.py b/rest/applications/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/applications/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/applications/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/applications/instance-post-example-1/instance-post-example-1.8.x.py b/rest/applications/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/applications/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/applications/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/applications/list-get-example-1/list-get-example-1.8.x.py b/rest/applications/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/applications/list-get-example-1/list-get-example-1.8.x.py rename to rest/applications/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/applications/list-get-example-2/list-get-example-2.8.x.py b/rest/applications/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/applications/list-get-example-2/list-get-example-2.8.x.py rename to rest/applications/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/applications/list-post-example-1/list-post-example-1.8.x.py b/rest/applications/list-post-example-1/list-post-example-1.9.x.py similarity index 100% rename from rest/applications/list-post-example-1/list-post-example-1.8.x.py rename to rest/applications/list-post-example-1/list-post-example-1.9.x.py diff --git a/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.8.x.py b/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.8.x.py b/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/authorized-connect-apps/list-get-example-1/list-get-example-1.8.x.py rename to rest/authorized-connect-apps/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.8.x.py b/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.8.x.py rename to rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.9.x.py diff --git a/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.8.x.py b/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.8.x.py rename to rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.9.x.py diff --git a/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.8.x.py b/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.8.x.py rename to rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.9.x.py diff --git a/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.8.x.py b/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.8.x.py rename to rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.9.x.py diff --git a/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.8.x.py b/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.8.x.py rename to rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.9.x.py diff --git a/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.8.x.py b/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.8.x.py rename to rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.9.x.py diff --git a/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.8.x.py b/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.8.x.py rename to rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.9.x.py diff --git a/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.8.x.py b/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.8.x.py rename to rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.9.x.py diff --git a/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.8.x.py b/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.9.x.py similarity index 100% rename from rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.8.x.py rename to rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.9.x.py diff --git a/rest/available-phone-numbers/mobile-example/mobile-get-example-1.8.x.py b/rest/available-phone-numbers/mobile-example/mobile-get-example-1.9.x.py similarity index 100% rename from rest/available-phone-numbers/mobile-example/mobile-get-example-1.8.x.py rename to rest/available-phone-numbers/mobile-example/mobile-get-example-1.9.x.py diff --git a/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.8.x.py b/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.9.x.py similarity index 100% rename from rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.8.x.py rename to rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.9.x.py diff --git a/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.8.x.py b/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.9.x.py similarity index 100% rename from rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.8.x.py rename to rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.9.x.py diff --git a/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.8.x.py b/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.9.x.py similarity index 100% rename from rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.8.x.py rename to rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.9.x.py diff --git a/rest/call-feedback/instance-get-example-1/instance-get-example-1.8.x.py b/rest/call-feedback/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/call-feedback/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/call-feedback/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/call-feedback/instance-post-example-1/instance-post-example-1.8.x.py b/rest/call-feedback/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/call-feedback/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/call-feedback/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.8.x.py b/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.9.x.py similarity index 100% rename from rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.8.x.py rename to rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.9.x.py diff --git a/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.8.x.py b/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.9.x.py similarity index 100% rename from rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.8.x.py rename to rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.9.x.py diff --git a/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.8.x.py b/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.9.x.py similarity index 100% rename from rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.8.x.py rename to rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.9.x.py diff --git a/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.8.x.py b/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.9.x.py similarity index 100% rename from rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.8.x.py rename to rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.9.x.py diff --git a/rest/call/instance-get-example-1/instance-get-example-1.8.x.py b/rest/call/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/call/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/call/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/call/list-get-example-1/list-get-example-1.8.x.py b/rest/call/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/call/list-get-example-1/list-get-example-1.8.x.py rename to rest/call/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/call/list-get-example-2/list-get-example-2.8.x.py b/rest/call/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/call/list-get-example-2/list-get-example-2.8.x.py rename to rest/call/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/call/list-get-example-3/list-get-example-3.8.x.py b/rest/call/list-get-example-3/list-get-example-3.9.x.py similarity index 100% rename from rest/call/list-get-example-3/list-get-example-3.8.x.py rename to rest/call/list-get-example-3/list-get-example-3.9.x.py diff --git a/rest/call/list-get-example-4/list-get-example-4.8.x.py b/rest/call/list-get-example-4/list-get-example-4.9.x.py similarity index 100% rename from rest/call/list-get-example-4/list-get-example-4.8.x.py rename to rest/call/list-get-example-4/list-get-example-4.9.x.py diff --git a/rest/call/list-get-example-6/list-get-example-6.8.x.py b/rest/call/list-get-example-6/list-get-example-6.9.x.py similarity index 100% rename from rest/call/list-get-example-6/list-get-example-6.8.x.py rename to rest/call/list-get-example-6/list-get-example-6.9.x.py diff --git a/rest/call/list-get-example-7/list-get-example-7.8.x.py b/rest/call/list-get-example-7/list-get-example-7.9.x.py similarity index 100% rename from rest/call/list-get-example-7/list-get-example-7.8.x.py rename to rest/call/list-get-example-7/list-get-example-7.9.x.py diff --git a/rest/change-call-state/example-1/example-1.8.x.py b/rest/change-call-state/example-1/example-1.9.x.py similarity index 100% rename from rest/change-call-state/example-1/example-1.8.x.py rename to rest/change-call-state/example-1/example-1.9.x.py diff --git a/rest/change-call-state/list-get-example-2/list-get-example-2.8.x.py b/rest/change-call-state/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/change-call-state/list-get-example-2/list-get-example-2.8.x.py rename to rest/change-call-state/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/conference/instance-get-example-1/instance-get-example-1.8.x.py b/rest/conference/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/conference/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/conference/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/conference/list-get-example-1/list-get-example-1.8.x.py b/rest/conference/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/conference/list-get-example-1/list-get-example-1.8.x.py rename to rest/conference/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/conference/list-get-example-2/list-get-example-2.8.x.py b/rest/conference/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/conference/list-get-example-2/list-get-example-2.8.x.py rename to rest/conference/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/conference/list-get-example-3/list-get-example-3.8.x.py b/rest/conference/list-get-example-3/list-get-example-3.9.x.py similarity index 100% rename from rest/conference/list-get-example-3/list-get-example-3.8.x.py rename to rest/conference/list-get-example-3/list-get-example-3.9.x.py diff --git a/rest/conference/list-get-example-4/list-get-example-4.8.x.py b/rest/conference/list-get-example-4/list-get-example-4.9.x.py similarity index 100% rename from rest/conference/list-get-example-4/list-get-example-4.8.x.py rename to rest/conference/list-get-example-4/list-get-example-4.9.x.py diff --git a/rest/connect-apps/instance-get-example-1/instance-get-example-1.8.x.py b/rest/connect-apps/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/connect-apps/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/connect-apps/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/connect-apps/list-get-example-1/list-get-example-1.8.x.py b/rest/connect-apps/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/connect-apps/list-get-example-1/list-get-example-1.8.x.py rename to rest/connect-apps/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.8.x.py b/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.8.x.py b/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.8.x.py b/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.8.x.py rename to rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.8.x.py b/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.8.x.py rename to rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.8.x.py b/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.9.x.py similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.8.x.py rename to rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.9.x.py diff --git a/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.8.x.py b/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.9.x.py similarity index 100% rename from rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.8.x.py rename to rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.9.x.py diff --git a/rest/keys/instance-get-example/instance-get-example.8.x.py b/rest/keys/instance-get-example/instance-get-example.9.x.py similarity index 100% rename from rest/keys/instance-get-example/instance-get-example.8.x.py rename to rest/keys/instance-get-example/instance-get-example.9.x.py diff --git a/rest/keys/list-get-example/list-get-example.8.x.py b/rest/keys/list-get-example/list-get-example.9.x.py similarity index 100% rename from rest/keys/list-get-example/list-get-example.8.x.py rename to rest/keys/list-get-example/list-get-example.9.x.py diff --git a/rest/keys/list-post-example/list-post-example.8.x.py b/rest/keys/list-post-example/list-post-example.9.x.py similarity index 100% rename from rest/keys/list-post-example/list-post-example.8.x.py rename to rest/keys/list-post-example/list-post-example.9.x.py diff --git a/rest/keys/using-keys-example/example.8.x.py b/rest/keys/using-keys-example/example.9.x.py similarity index 100% rename from rest/keys/using-keys-example/example.8.x.py rename to rest/keys/using-keys-example/example.9.x.py diff --git a/rest/making-calls-sip/example-1/example-1.8.x.py b/rest/making-calls-sip/example-1/example-1.9.x.py similarity index 100% rename from rest/making-calls-sip/example-1/example-1.8.x.py rename to rest/making-calls-sip/example-1/example-1.9.x.py diff --git a/rest/making-calls-sip/example-2/example-2.8.x.py b/rest/making-calls-sip/example-2/example-2.9.x.py similarity index 100% rename from rest/making-calls-sip/example-2/example-2.8.x.py rename to rest/making-calls-sip/example-2/example-2.9.x.py diff --git a/rest/making-calls-sip/example-3/example-3.8.x.py b/rest/making-calls-sip/example-3/example-3.9.x.py similarity index 100% rename from rest/making-calls-sip/example-3/example-3.8.x.py rename to rest/making-calls-sip/example-3/example-3.9.x.py diff --git a/rest/making-calls/example-1/example-1.8.x.py b/rest/making-calls/example-1/example-1.9.x.py similarity index 100% rename from rest/making-calls/example-1/example-1.8.x.py rename to rest/making-calls/example-1/example-1.9.x.py diff --git a/rest/making-calls/example-2/example-2.8.x.py b/rest/making-calls/example-2/example-2.9.x.py similarity index 100% rename from rest/making-calls/example-2/example-2.8.x.py rename to rest/making-calls/example-2/example-2.9.x.py diff --git a/rest/making-calls/example-3/example-3.8.x.py b/rest/making-calls/example-3/example-3.9.x.py similarity index 100% rename from rest/making-calls/example-3/example-3.8.x.py rename to rest/making-calls/example-3/example-3.9.x.py diff --git a/rest/making-calls/example-4/example-4.8.x.py b/rest/making-calls/example-4/example-4.9.x.py similarity index 100% rename from rest/making-calls/example-4/example-4.8.x.py rename to rest/making-calls/example-4/example-4.9.x.py diff --git a/rest/media/instance-delete-example-1/instance-delete-example-1.8.x.py b/rest/media/instance-delete-example-1/instance-delete-example-1.9.x.py similarity index 100% rename from rest/media/instance-delete-example-1/instance-delete-example-1.8.x.py rename to rest/media/instance-delete-example-1/instance-delete-example-1.9.x.py diff --git a/rest/media/list-get-example-1/list-get-example-1.8.x.py b/rest/media/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/media/list-get-example-1/list-get-example-1.8.x.py rename to rest/media/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/member/instance-get-example-1/instance-get-example-1.8.x.py b/rest/member/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/member/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/member/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/member/instance-post-example-1/instance-post-example-1.8.x.py b/rest/member/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/member/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/member/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/member/instance-post-example-2/instance-post-example-2.8.x.py b/rest/member/instance-post-example-2/instance-post-example-2.9.x.py similarity index 100% rename from rest/member/instance-post-example-2/instance-post-example-2.8.x.py rename to rest/member/instance-post-example-2/instance-post-example-2.9.x.py diff --git a/rest/member/list-get-example-1/list-get-example-1.8.x.py b/rest/member/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/member/list-get-example-1/list-get-example-1.8.x.py rename to rest/member/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/message/instance-delete/example-1.8.x.py b/rest/message/instance-delete/example-1.9.x.py similarity index 100% rename from rest/message/instance-delete/example-1.8.x.py rename to rest/message/instance-delete/example-1.9.x.py diff --git a/rest/message/instance-get-example-1/instance-get-example-1.8.x.py b/rest/message/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/message/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/message/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/message/instance-post-example-1/instance-post-example-1.8.x.py b/rest/message/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/message/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/message/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/message/list-get-example-1/list-get-example-1.8.x.py b/rest/message/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/message/list-get-example-1/list-get-example-1.8.x.py rename to rest/message/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/message/list-get-example-2/list-get-example-2.8.x.py b/rest/message/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/message/list-get-example-2/list-get-example-2.8.x.py rename to rest/message/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/messages/feedback-confirm/feedback-confirm.8.x.py b/rest/messages/feedback-confirm/feedback-confirm.9.x.py similarity index 100% rename from rest/messages/feedback-confirm/feedback-confirm.8.x.py rename to rest/messages/feedback-confirm/feedback-confirm.9.x.py diff --git a/rest/messages/feedback-send-sms/feedback-send-sms.8.x.py b/rest/messages/feedback-send-sms/feedback-send-sms.9.x.py similarity index 100% rename from rest/messages/feedback-send-sms/feedback-send-sms.8.x.py rename to rest/messages/feedback-send-sms/feedback-send-sms.9.x.py diff --git a/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.8.x.py b/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.9.x.py similarity index 100% rename from rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.8.x.py rename to rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.9.x.py diff --git a/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.8.x.py b/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.9.x.py similarity index 100% rename from rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.8.x.py rename to rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.9.x.py diff --git a/rest/messages/generate-twiml-mms/generate-twiml-mms.8.x.py b/rest/messages/generate-twiml-mms/generate-twiml-mms.9.x.py similarity index 100% rename from rest/messages/generate-twiml-mms/generate-twiml-mms.8.x.py rename to rest/messages/generate-twiml-mms/generate-twiml-mms.9.x.py diff --git a/rest/messages/generate-twiml-sms-voice/example-1.8.x.py b/rest/messages/generate-twiml-sms-voice/example-1.9.x.py similarity index 100% rename from rest/messages/generate-twiml-sms-voice/example-1.8.x.py rename to rest/messages/generate-twiml-sms-voice/example-1.9.x.py diff --git a/rest/messages/generate-twiml-sms/generate-twiml-sms.8.x.py b/rest/messages/generate-twiml-sms/generate-twiml-sms.9.x.py similarity index 100% rename from rest/messages/generate-twiml-sms/generate-twiml-sms.8.x.py rename to rest/messages/generate-twiml-sms/generate-twiml-sms.9.x.py diff --git a/rest/messages/send-message/example-1.8.x.py b/rest/messages/send-message/example-1.9.x.py similarity index 100% rename from rest/messages/send-message/example-1.8.x.py rename to rest/messages/send-message/example-1.9.x.py diff --git a/rest/messages/send-messages-copilot/send-messages-copilot.8.x.py b/rest/messages/send-messages-copilot/send-messages-copilot.9.x.py similarity index 100% rename from rest/messages/send-messages-copilot/send-messages-copilot.8.x.py rename to rest/messages/send-messages-copilot/send-messages-copilot.9.x.py diff --git a/rest/messages/send-sms-callback/send-sms-callback.8.x.py b/rest/messages/send-sms-callback/send-sms-callback.9.x.py similarity index 100% rename from rest/messages/send-sms-callback/send-sms-callback.8.x.py rename to rest/messages/send-sms-callback/send-sms-callback.9.x.py diff --git a/rest/messages/send-sms/send-sms.8.x.py b/rest/messages/send-sms/send-sms.9.x.py similarity index 100% rename from rest/messages/send-sms/send-sms.8.x.py rename to rest/messages/send-sms/send-sms.9.x.py diff --git a/rest/messages/sms-conversation-tracking/sms-conversation-tracking.8.x.py b/rest/messages/sms-conversation-tracking/sms-conversation-tracking.9.x.py similarity index 100% rename from rest/messages/sms-conversation-tracking/sms-conversation-tracking.8.x.py rename to rest/messages/sms-conversation-tracking/sms-conversation-tracking.9.x.py diff --git a/rest/messages/sms-handle-callback/sms-handle-callback.8.x.py b/rest/messages/sms-handle-callback/sms-handle-callback.9.x.py similarity index 100% rename from rest/messages/sms-handle-callback/sms-handle-callback.8.x.py rename to rest/messages/sms-handle-callback/sms-handle-callback.9.x.py diff --git a/rest/notification/instance-delete-examples/instance-delete-examples.8.x.py b/rest/notification/instance-delete-examples/instance-delete-examples.9.x.py similarity index 100% rename from rest/notification/instance-delete-examples/instance-delete-examples.8.x.py rename to rest/notification/instance-delete-examples/instance-delete-examples.9.x.py diff --git a/rest/notification/instance-get-example-1/instance-get-example-1.8.x.py b/rest/notification/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/notification/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/notification/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/notification/list-get-example-1/list-get-example-1.8.x.py b/rest/notification/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/notification/list-get-example-1/list-get-example-1.8.x.py rename to rest/notification/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/notification/list-get-example-2/list-get-example-2.8.x.py b/rest/notification/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/notification/list-get-example-2/list-get-example-2.8.x.py rename to rest/notification/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/notification/list-get-example-3/list-get-example-3.8.x.py b/rest/notification/list-get-example-3/list-get-example-3.9.x.py similarity index 100% rename from rest/notification/list-get-example-3/list-get-example-3.8.x.py rename to rest/notification/list-get-example-3/list-get-example-3.9.x.py diff --git a/rest/notification/list-get-example-4/list-get-example-4.8.x.py b/rest/notification/list-get-example-4/list-get-example-4.9.x.py similarity index 100% rename from rest/notification/list-get-example-4/list-get-example-4.8.x.py rename to rest/notification/list-get-example-4/list-get-example-4.9.x.py diff --git a/rest/outgoing-caller-ids/instance-delete/instance-delete.8.x.py b/rest/outgoing-caller-ids/instance-delete/instance-delete.9.x.py similarity index 100% rename from rest/outgoing-caller-ids/instance-delete/instance-delete.8.x.py rename to rest/outgoing-caller-ids/instance-delete/instance-delete.9.x.py diff --git a/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.8.x.py b/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.8.x.py b/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.8.x.py b/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.8.x.py rename to rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.8.x.py b/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.8.x.py rename to rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.8.x.py b/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.9.x.py similarity index 100% rename from rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.8.x.py rename to rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.9.x.py diff --git a/rest/participant/instance-delete-example-1/instance-delete-example-1.8.x.py b/rest/participant/instance-delete-example-1/instance-delete-example-1.9.x.py similarity index 100% rename from rest/participant/instance-delete-example-1/instance-delete-example-1.8.x.py rename to rest/participant/instance-delete-example-1/instance-delete-example-1.9.x.py diff --git a/rest/participant/instance-get-example-1/instance-get-example-1.8.x.py b/rest/participant/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/participant/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/participant/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/participant/instance-post-example-1/instance-post-example-1.8.x.py b/rest/participant/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/participant/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/participant/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/participant/instance-post-example-2/instance-post-example-2.8.x.py b/rest/participant/instance-post-example-2/instance-post-example-2.9.x.py similarity index 100% rename from rest/participant/instance-post-example-2/instance-post-example-2.8.x.py rename to rest/participant/instance-post-example-2/instance-post-example-2.9.x.py diff --git a/rest/participant/list-get-example-1/list-get-example-1.8.x.py b/rest/participant/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/participant/list-get-example-1/list-get-example-1.8.x.py rename to rest/participant/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/participant/list-post-example-1/list-post-example-1.8.x.py b/rest/participant/list-post-example-1/list-post-example-1.9.x.py similarity index 100% rename from rest/participant/list-post-example-1/list-post-example-1.8.x.py rename to rest/participant/list-post-example-1/list-post-example-1.9.x.py diff --git a/rest/queue/instance-get-example-1/instance-get-example-1.8.x.py b/rest/queue/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/queue/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/queue/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/queue/instance-post-example-1/instance-post-example-1.8.x.py b/rest/queue/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/queue/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/queue/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/queue/list-get-example-1/list-get-example-1.8.x.py b/rest/queue/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/queue/list-get-example-1/list-get-example-1.8.x.py rename to rest/queue/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/queue/list-post-example-1/list-post-example-1.8.x.py b/rest/queue/list-post-example-1/list-post-example-1.9.x.py similarity index 100% rename from rest/queue/list-post-example-1/list-post-example-1.8.x.py rename to rest/queue/list-post-example-1/list-post-example-1.9.x.py diff --git a/rest/recording/get-recording-xml/get-recording-xml.8.x.py b/rest/recording/get-recording-xml/get-recording-xml.9.x.py similarity index 100% rename from rest/recording/get-recording-xml/get-recording-xml.8.x.py rename to rest/recording/get-recording-xml/get-recording-xml.9.x.py diff --git a/rest/recording/instance-delete-examples/instance-delete-examples.8.x.py b/rest/recording/instance-delete-examples/instance-delete-examples.9.x.py similarity index 100% rename from rest/recording/instance-delete-examples/instance-delete-examples.8.x.py rename to rest/recording/instance-delete-examples/instance-delete-examples.9.x.py diff --git a/rest/recording/list-get-example-1/list-get-example-1.8.x.py b/rest/recording/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/recording/list-get-example-1/list-get-example-1.8.x.py rename to rest/recording/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/recording/list-get-example-2/list-get-example-2.8.x.py b/rest/recording/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/recording/list-get-example-2/list-get-example-2.8.x.py rename to rest/recording/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/recording/list-get-example-3/list-get-example-3.8.x.py b/rest/recording/list-get-example-3/list-get-example-3.9.x.py similarity index 100% rename from rest/recording/list-get-example-3/list-get-example-3.8.x.py rename to rest/recording/list-get-example-3/list-get-example-3.9.x.py diff --git a/rest/recording/list-get-example-4/list-get-example-4.8.x.py b/rest/recording/list-get-example-4/list-get-example-4.9.x.py similarity index 100% rename from rest/recording/list-get-example-4/list-get-example-4.8.x.py rename to rest/recording/list-get-example-4/list-get-example-4.9.x.py diff --git a/rest/recording/list-get-example-5/list-get-example-5.8.x.py b/rest/recording/list-get-example-5/list-get-example-5.9.x.py similarity index 100% rename from rest/recording/list-get-example-5/list-get-example-5.8.x.py rename to rest/recording/list-get-example-5/list-get-example-5.9.x.py diff --git a/rest/recording/list-recording-transcriptions/list-recording-transcriptions-8.x.py b/rest/recording/list-recording-transcriptions/list-recording-transcriptions-9.x.py similarity index 100% rename from rest/recording/list-recording-transcriptions/list-recording-transcriptions-8.x.py rename to rest/recording/list-recording-transcriptions/list-recording-transcriptions-9.x.py diff --git a/rest/sending-messages/example-1/example-1.8.x.py b/rest/sending-messages/example-1/example-1.9.x.py similarity index 100% rename from rest/sending-messages/example-1/example-1.8.x.py rename to rest/sending-messages/example-1/example-1.9.x.py diff --git a/rest/short-codes/instance-get-example-1/instance-get-example-1.8.x.py b/rest/short-codes/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/short-codes/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/short-codes/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/short-codes/instance-post-example-1/instance-post-example-1.8.x.py b/rest/short-codes/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/short-codes/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/short-codes/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/short-codes/list-get-example-1/list-get-example-1.8.x.py b/rest/short-codes/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/short-codes/list-get-example-1/list-get-example-1.8.x.py rename to rest/short-codes/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/short-codes/list-get-example-2/list-get-example-2.8.x.py b/rest/short-codes/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/short-codes/list-get-example-2/list-get-example-2.8.x.py rename to rest/short-codes/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/short-codes/list-get-example-3/list-get-example-3.8.x.py b/rest/short-codes/list-get-example-3/list-get-example-3.9.x.py similarity index 100% rename from rest/short-codes/list-get-example-3/list-get-example-3.8.x.py rename to rest/short-codes/list-get-example-3/list-get-example-3.9.x.py diff --git a/rest/sip-in/associate-control-domain/associate-control-domain.8.x.py b/rest/sip-in/associate-control-domain/associate-control-domain.9.x.py similarity index 100% rename from rest/sip-in/associate-control-domain/associate-control-domain.8.x.py rename to rest/sip-in/associate-control-domain/associate-control-domain.9.x.py diff --git a/rest/sip-in/create-acl-address/create-acl-address.8.x.py b/rest/sip-in/create-acl-address/create-acl-address.9.x.py similarity index 100% rename from rest/sip-in/create-acl-address/create-acl-address.8.x.py rename to rest/sip-in/create-acl-address/create-acl-address.9.x.py diff --git a/rest/sip-in/create-credential-list/create-credential-list.8.x.py b/rest/sip-in/create-credential-list/create-credential-list.9.x.py similarity index 100% rename from rest/sip-in/create-credential-list/create-credential-list.8.x.py rename to rest/sip-in/create-credential-list/create-credential-list.9.x.py diff --git a/rest/sip-in/create-credential/create-credential.8.x.py b/rest/sip-in/create-credential/create-credential.9.x.py similarity index 100% rename from rest/sip-in/create-credential/create-credential.8.x.py rename to rest/sip-in/create-credential/create-credential.9.x.py diff --git a/rest/sip-in/create-domain/create-domain.8.x.py b/rest/sip-in/create-domain/create-domain.9.x.py similarity index 100% rename from rest/sip-in/create-domain/create-domain.8.x.py rename to rest/sip-in/create-domain/create-domain.9.x.py diff --git a/rest/sip-in/create-ip-acl/create-ip-acl.8.x.py b/rest/sip-in/create-ip-acl/create-ip-acl.9.x.py similarity index 100% rename from rest/sip-in/create-ip-acl/create-ip-acl.8.x.py rename to rest/sip-in/create-ip-acl/create-ip-acl.9.x.py diff --git a/rest/sip-in/delete-access-mapping-old/delete-access-mapping.8.x.py b/rest/sip-in/delete-access-mapping-old/delete-access-mapping.9.x.py similarity index 100% rename from rest/sip-in/delete-access-mapping-old/delete-access-mapping.8.x.py rename to rest/sip-in/delete-access-mapping-old/delete-access-mapping.9.x.py diff --git a/rest/sip-in/delete-access-mapping/delete-access-mapping.8.x.py b/rest/sip-in/delete-access-mapping/delete-access-mapping.9.x.py similarity index 100% rename from rest/sip-in/delete-access-mapping/delete-access-mapping.8.x.py rename to rest/sip-in/delete-access-mapping/delete-access-mapping.9.x.py diff --git a/rest/sip-in/delete-address-instance/delete-address-instance.8.x.py b/rest/sip-in/delete-address-instance/delete-address-instance.9.x.py similarity index 100% rename from rest/sip-in/delete-address-instance/delete-address-instance.8.x.py rename to rest/sip-in/delete-address-instance/delete-address-instance.9.x.py diff --git a/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.8.x.py b/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.9.x.py similarity index 100% rename from rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.8.x.py rename to rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.9.x.py diff --git a/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.8.x.py b/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.9.x.py similarity index 100% rename from rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.8.x.py rename to rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.9.x.py diff --git a/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.8.x.py b/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.9.x.py similarity index 100% rename from rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.8.x.py rename to rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.9.x.py diff --git a/rest/sip-in/delete-credential/delete-credential.8.x.py b/rest/sip-in/delete-credential/delete-credential.9.x.py similarity index 100% rename from rest/sip-in/delete-credential/delete-credential.8.x.py rename to rest/sip-in/delete-credential/delete-credential.9.x.py diff --git a/rest/sip-in/delete-domain-instance/delete-domain-instance.8.x.py b/rest/sip-in/delete-domain-instance/delete-domain-instance.9.x.py similarity index 100% rename from rest/sip-in/delete-domain-instance/delete-domain-instance.8.x.py rename to rest/sip-in/delete-domain-instance/delete-domain-instance.9.x.py diff --git a/rest/sip-in/delete-ip-acl/delete-ip-acl.8.x.py b/rest/sip-in/delete-ip-acl/delete-ip-acl.9.x.py similarity index 100% rename from rest/sip-in/delete-ip-acl/delete-ip-acl.8.x.py rename to rest/sip-in/delete-ip-acl/delete-ip-acl.9.x.py diff --git a/rest/sip-in/get-acl-addresses/get-acl-addresses.8.x.py b/rest/sip-in/get-acl-addresses/get-acl-addresses.9.x.py similarity index 100% rename from rest/sip-in/get-acl-addresses/get-acl-addresses.8.x.py rename to rest/sip-in/get-acl-addresses/get-acl-addresses.9.x.py diff --git a/rest/sip-in/get-acl-list/get-acl-list.8.x.py b/rest/sip-in/get-acl-list/get-acl-list.9.x.py similarity index 100% rename from rest/sip-in/get-acl-list/get-acl-list.8.x.py rename to rest/sip-in/get-acl-list/get-acl-list.9.x.py diff --git a/rest/sip-in/get-acl-lists/get-acl-lists.8.x.py b/rest/sip-in/get-acl-lists/get-acl-lists.9.x.py similarity index 100% rename from rest/sip-in/get-acl-lists/get-acl-lists.8.x.py rename to rest/sip-in/get-acl-lists/get-acl-lists.9.x.py diff --git a/rest/sip-in/get-address-instance/get-address-instance.8.x.py b/rest/sip-in/get-address-instance/get-address-instance.9.x.py similarity index 100% rename from rest/sip-in/get-address-instance/get-address-instance.8.x.py rename to rest/sip-in/get-address-instance/get-address-instance.9.x.py diff --git a/rest/sip-in/get-credential-list-instance/get-credential-list-instance.8.x.py b/rest/sip-in/get-credential-list-instance/get-credential-list-instance.9.x.py similarity index 100% rename from rest/sip-in/get-credential-list-instance/get-credential-list-instance.8.x.py rename to rest/sip-in/get-credential-list-instance/get-credential-list-instance.9.x.py diff --git a/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.8.x.py b/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.9.x.py similarity index 100% rename from rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.8.x.py rename to rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.9.x.py diff --git a/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.8.x.py b/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.9.x.py similarity index 100% rename from rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.8.x.py rename to rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.9.x.py diff --git a/rest/sip-in/get-credential-lists/get-credential-lists.8.x.py b/rest/sip-in/get-credential-lists/get-credential-lists.9.x.py similarity index 100% rename from rest/sip-in/get-credential-lists/get-credential-lists.8.x.py rename to rest/sip-in/get-credential-lists/get-credential-lists.9.x.py diff --git a/rest/sip-in/get-credential/get-credential.8.x.py b/rest/sip-in/get-credential/get-credential.9.x.py similarity index 100% rename from rest/sip-in/get-credential/get-credential.8.x.py rename to rest/sip-in/get-credential/get-credential.9.x.py diff --git a/rest/sip-in/get-domain-instance/get-domain-instance.8.x.py b/rest/sip-in/get-domain-instance/get-domain-instance.9.x.py similarity index 100% rename from rest/sip-in/get-domain-instance/get-domain-instance.8.x.py rename to rest/sip-in/get-domain-instance/get-domain-instance.9.x.py diff --git a/rest/sip-in/get-domain-mappings/get-domain-mappings.8.x.py b/rest/sip-in/get-domain-mappings/get-domain-mappings.9.x.py similarity index 100% rename from rest/sip-in/get-domain-mappings/get-domain-mappings.8.x.py rename to rest/sip-in/get-domain-mappings/get-domain-mappings.9.x.py diff --git a/rest/sip-in/get-domains/get-domains.8.x.py b/rest/sip-in/get-domains/get-domains.9.x.py similarity index 100% rename from rest/sip-in/get-domains/get-domains.8.x.py rename to rest/sip-in/get-domains/get-domains.9.x.py diff --git a/rest/sip-in/get-ip-acls/get-ip-acls.8.x.py b/rest/sip-in/get-ip-acls/get-ip-acls.9.x.py similarity index 100% rename from rest/sip-in/get-ip-acls/get-ip-acls.8.x.py rename to rest/sip-in/get-ip-acls/get-ip-acls.9.x.py diff --git a/rest/sip-in/get-mappings-instance-old/get-mappings-instance.8.x.py b/rest/sip-in/get-mappings-instance-old/get-mappings-instance.9.x.py similarity index 100% rename from rest/sip-in/get-mappings-instance-old/get-mappings-instance.8.x.py rename to rest/sip-in/get-mappings-instance-old/get-mappings-instance.9.x.py diff --git a/rest/sip-in/get-mappings-instance/get-mappings-instance.8.x.py b/rest/sip-in/get-mappings-instance/get-mappings-instance.9.x.py similarity index 100% rename from rest/sip-in/get-mappings-instance/get-mappings-instance.8.x.py rename to rest/sip-in/get-mappings-instance/get-mappings-instance.9.x.py diff --git a/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.8.x.py b/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.9.x.py similarity index 100% rename from rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.8.x.py rename to rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.9.x.py diff --git a/rest/sip-in/map-credential-list-domain/map-credential-list-domain.8.x.py b/rest/sip-in/map-credential-list-domain/map-credential-list-domain.9.x.py similarity index 100% rename from rest/sip-in/map-credential-list-domain/map-credential-list-domain.8.x.py rename to rest/sip-in/map-credential-list-domain/map-credential-list-domain.9.x.py diff --git a/rest/sip-in/map-list-domain-old/map-list-domain.8.x.py b/rest/sip-in/map-list-domain-old/map-list-domain.9.x.py similarity index 100% rename from rest/sip-in/map-list-domain-old/map-list-domain.8.x.py rename to rest/sip-in/map-list-domain-old/map-list-domain.9.x.py diff --git a/rest/sip-in/map-list-domain/map-list-domain.8.x.py b/rest/sip-in/map-list-domain/map-list-domain.9.x.py similarity index 100% rename from rest/sip-in/map-list-domain/map-list-domain.8.x.py rename to rest/sip-in/map-list-domain/map-list-domain.9.x.py diff --git a/rest/sip-in/update-address-instance/update-address-instance.8.x.py b/rest/sip-in/update-address-instance/update-address-instance.9.x.py similarity index 100% rename from rest/sip-in/update-address-instance/update-address-instance.8.x.py rename to rest/sip-in/update-address-instance/update-address-instance.9.x.py diff --git a/rest/sip-in/update-credential-list-instance/update-credential-list-instance.8.x.py b/rest/sip-in/update-credential-list-instance/update-credential-list-instance.9.x.py similarity index 100% rename from rest/sip-in/update-credential-list-instance/update-credential-list-instance.8.x.py rename to rest/sip-in/update-credential-list-instance/update-credential-list-instance.9.x.py diff --git a/rest/sip-in/update-credential/update-credential.8.x.py b/rest/sip-in/update-credential/update-credential.9.x.py similarity index 100% rename from rest/sip-in/update-credential/update-credential.8.x.py rename to rest/sip-in/update-credential/update-credential.9.x.py diff --git a/rest/sip-in/update-domain-instance/update-domain-instance.8.x.py b/rest/sip-in/update-domain-instance/update-domain-instance.9.x.py similarity index 100% rename from rest/sip-in/update-domain-instance/update-domain-instance.8.x.py rename to rest/sip-in/update-domain-instance/update-domain-instance.9.x.py diff --git a/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.8.x.py b/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.9.x.py similarity index 100% rename from rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.8.x.py rename to rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.9.x.py diff --git a/rest/sip/example-1/example-1.8.x.py b/rest/sip/example-1/example-1.9.x.py similarity index 100% rename from rest/sip/example-1/example-1.8.x.py rename to rest/sip/example-1/example-1.9.x.py diff --git a/rest/sip/example-2/example-2.8.x.py b/rest/sip/example-2/example-2.9.x.py similarity index 100% rename from rest/sip/example-2/example-2.8.x.py rename to rest/sip/example-2/example-2.9.x.py diff --git a/rest/sip/example-3/example-3.8.x.py b/rest/sip/example-3/example-3.9.x.py similarity index 100% rename from rest/sip/example-3/example-3.8.x.py rename to rest/sip/example-3/example-3.9.x.py diff --git a/rest/sms/instance-get-example-1/instance-get-example-1.8.x.py b/rest/sms/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/sms/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/sms/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/sms/list-get-example-1/list-get-example-1.8.x.py b/rest/sms/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/sms/list-get-example-1/list-get-example-1.8.x.py rename to rest/sms/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/subaccounts/billing-example/subaccount-billing.8.x.py b/rest/subaccounts/billing-example/subaccount-billing.9.x.py similarity index 100% rename from rest/subaccounts/billing-example/subaccount-billing.8.x.py rename to rest/subaccounts/billing-example/subaccount-billing.9.x.py diff --git a/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.8.x.py b/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.9.x.py similarity index 100% rename from rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.8.x.py rename to rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.9.x.py diff --git a/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.8.x.py b/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.9.x.py similarity index 100% rename from rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.8.x.py rename to rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.9.x.py diff --git a/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.8.x.py b/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.9.x.py similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.8.x.py rename to rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.9.x.py diff --git a/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.8.x.py b/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.9.x.py similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.8.x.py rename to rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.9.x.py diff --git a/rest/subaccounts/voice-example/subaccount-call.8.x.py b/rest/subaccounts/voice-example/subaccount-call.9.x.py similarity index 100% rename from rest/subaccounts/voice-example/subaccount-call.8.x.py rename to rest/subaccounts/voice-example/subaccount-call.9.x.py diff --git a/rest/taskrouter/activities/instance/delete/example-1/example-1.8.x.py b/rest/taskrouter/activities/instance/delete/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/activities/instance/delete/example-1/example-1.8.x.py rename to rest/taskrouter/activities/instance/delete/example-1/example-1.9.x.py diff --git a/rest/taskrouter/activities/instance/get/example-1/example-1.8.x.py b/rest/taskrouter/activities/instance/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/activities/instance/get/example-1/example-1.8.x.py rename to rest/taskrouter/activities/instance/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/activities/instance/post/example-1/example-1.8.x.py b/rest/taskrouter/activities/instance/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/activities/instance/post/example-1/example-1.8.x.py rename to rest/taskrouter/activities/instance/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/activities/list/get/example-1/example-1.8.x.py b/rest/taskrouter/activities/list/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/activities/list/get/example-1/example-1.8.x.py rename to rest/taskrouter/activities/list/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/activities/list/post/example-1/example-1.8.x.py b/rest/taskrouter/activities/list/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/activities/list/post/example-1/example-1.8.x.py rename to rest/taskrouter/activities/list/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/events/example-1/example-1.8.x.py b/rest/taskrouter/events/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/events/example-1/example-1.8.x.py rename to rest/taskrouter/events/example-1/example-1.9.x.py diff --git a/rest/taskrouter/jwts/taskqueue/example-1/example-1.8.x.py b/rest/taskrouter/jwts/taskqueue/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/jwts/taskqueue/example-1/example-1.8.x.py rename to rest/taskrouter/jwts/taskqueue/example-1/example-1.9.x.py diff --git a/rest/taskrouter/jwts/worker/example-1/example-1.8.x.py b/rest/taskrouter/jwts/worker/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/jwts/worker/example-1/example-1.8.x.py rename to rest/taskrouter/jwts/worker/example-1/example-1.9.x.py diff --git a/rest/taskrouter/jwts/workspace/example-1/example-1.8.x.py b/rest/taskrouter/jwts/workspace/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/jwts/workspace/example-1/example-1.8.x.py rename to rest/taskrouter/jwts/workspace/example-1/example-1.9.x.py diff --git a/rest/taskrouter/reservations/call/example-1.8.x.py b/rest/taskrouter/reservations/call/example-1.9.x.py similarity index 100% rename from rest/taskrouter/reservations/call/example-1.8.x.py rename to rest/taskrouter/reservations/call/example-1.9.x.py diff --git a/rest/taskrouter/reservations/conference/conference.8.x.py b/rest/taskrouter/reservations/conference/conference.9.x.py similarity index 100% rename from rest/taskrouter/reservations/conference/conference.8.x.py rename to rest/taskrouter/reservations/conference/conference.9.x.py diff --git a/rest/taskrouter/reservations/dequeue/example-1.8.x.py b/rest/taskrouter/reservations/dequeue/example-1.9.x.py similarity index 100% rename from rest/taskrouter/reservations/dequeue/example-1.8.x.py rename to rest/taskrouter/reservations/dequeue/example-1.9.x.py diff --git a/rest/taskrouter/reservations/instance/get/example-1/example-1.8.x.py b/rest/taskrouter/reservations/instance/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/reservations/instance/get/example-1/example-1.8.x.py rename to rest/taskrouter/reservations/instance/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/reservations/instance/post/example-1/example-1.8.x.py b/rest/taskrouter/reservations/instance/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/reservations/instance/post/example-1/example-1.8.x.py rename to rest/taskrouter/reservations/instance/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/reservations/list/get/example-1/example-1.8.x.py b/rest/taskrouter/reservations/list/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/reservations/list/get/example-1/example-1.8.x.py rename to rest/taskrouter/reservations/list/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/reservations/redirect/redirect.8.x.py b/rest/taskrouter/reservations/redirect/redirect.9.x.py similarity index 100% rename from rest/taskrouter/reservations/redirect/redirect.8.x.py rename to rest/taskrouter/reservations/redirect/redirect.9.x.py diff --git a/rest/taskrouter/reservations/reject/example-1.8.x.py b/rest/taskrouter/reservations/reject/example-1.9.x.py similarity index 100% rename from rest/taskrouter/reservations/reject/example-1.8.x.py rename to rest/taskrouter/reservations/reject/example-1.9.x.py diff --git a/rest/taskrouter/statistics/taskqueue/cumulative/example-1.8.x.py b/rest/taskrouter/statistics/taskqueue/cumulative/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/taskqueue/cumulative/example-1.8.x.py rename to rest/taskrouter/statistics/taskqueue/cumulative/example-1.9.x.py diff --git a/rest/taskrouter/statistics/taskqueue/example-1/example-1.8.x.py b/rest/taskrouter/statistics/taskqueue/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/taskqueue/example-1/example-1.8.x.py rename to rest/taskrouter/statistics/taskqueue/example-1/example-1.9.x.py diff --git a/rest/taskrouter/statistics/taskqueue/realtime/example-1.8.x.py b/rest/taskrouter/statistics/taskqueue/realtime/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/taskqueue/realtime/example-1.8.x.py rename to rest/taskrouter/statistics/taskqueue/realtime/example-1.9.x.py diff --git a/rest/taskrouter/statistics/worker/example-1/example-1.8.x.py b/rest/taskrouter/statistics/worker/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/worker/example-1/example-1.8.x.py rename to rest/taskrouter/statistics/worker/example-1/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workers/cumulative/example-1.8.x.py b/rest/taskrouter/statistics/workers/cumulative/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workers/cumulative/example-1.8.x.py rename to rest/taskrouter/statistics/workers/cumulative/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workers/example-1/example-1.8.x.py b/rest/taskrouter/statistics/workers/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workers/example-1/example-1.8.x.py rename to rest/taskrouter/statistics/workers/example-1/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workers/realtime/example-1.8.x.py b/rest/taskrouter/statistics/workers/realtime/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workers/realtime/example-1.8.x.py rename to rest/taskrouter/statistics/workers/realtime/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workflow/cumulative/example-1.8.x.py b/rest/taskrouter/statistics/workflow/cumulative/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workflow/cumulative/example-1.8.x.py rename to rest/taskrouter/statistics/workflow/cumulative/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workflow/example-1/example-1.8.x.py b/rest/taskrouter/statistics/workflow/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workflow/example-1/example-1.8.x.py rename to rest/taskrouter/statistics/workflow/example-1/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workflow/realtime/example-1.8.x.py b/rest/taskrouter/statistics/workflow/realtime/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workflow/realtime/example-1.8.x.py rename to rest/taskrouter/statistics/workflow/realtime/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workspace/cumulative/example-1.8.x.py b/rest/taskrouter/statistics/workspace/cumulative/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workspace/cumulative/example-1.8.x.py rename to rest/taskrouter/statistics/workspace/cumulative/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workspace/example-1/example-1.8.x.py b/rest/taskrouter/statistics/workspace/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workspace/example-1/example-1.8.x.py rename to rest/taskrouter/statistics/workspace/example-1/example-1.9.x.py diff --git a/rest/taskrouter/statistics/workspace/realtime/example-1.8.x.py b/rest/taskrouter/statistics/workspace/realtime/example-1.9.x.py similarity index 100% rename from rest/taskrouter/statistics/workspace/realtime/example-1.8.x.py rename to rest/taskrouter/statistics/workspace/realtime/example-1.9.x.py diff --git a/rest/taskrouter/taskchannels/instance/delete/example-1/example-1.8.x.py b/rest/taskrouter/taskchannels/instance/delete/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskchannels/instance/delete/example-1/example-1.8.x.py rename to rest/taskrouter/taskchannels/instance/delete/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskchannels/instance/get/example-1/example-1.8.x.py b/rest/taskrouter/taskchannels/instance/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskchannels/instance/get/example-1/example-1.8.x.py rename to rest/taskrouter/taskchannels/instance/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskchannels/instance/post/example-1/example-1.8.x.py b/rest/taskrouter/taskchannels/instance/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskchannels/instance/post/example-1/example-1.8.x.py rename to rest/taskrouter/taskchannels/instance/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskchannels/list/get/example-1/example-1.8.x.py b/rest/taskrouter/taskchannels/list/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskchannels/list/get/example-1/example-1.8.x.py rename to rest/taskrouter/taskchannels/list/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskchannels/list/post/example-1/example-1.8.x.py b/rest/taskrouter/taskchannels/list/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskchannels/list/post/example-1/example-1.8.x.py rename to rest/taskrouter/taskchannels/list/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.8.x.py b/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskqueues/instance/delete/example-1/example-1.8.x.py rename to rest/taskrouter/taskqueues/instance/delete/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskqueues/instance/get/example-1/example-1.8.x.py b/rest/taskrouter/taskqueues/instance/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskqueues/instance/get/example-1/example-1.8.x.py rename to rest/taskrouter/taskqueues/instance/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskqueues/instance/post/example-1/example-1.8.x.py b/rest/taskrouter/taskqueues/instance/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskqueues/instance/post/example-1/example-1.8.x.py rename to rest/taskrouter/taskqueues/instance/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskqueues/list/get/example-1/example-1.8.x.py b/rest/taskrouter/taskqueues/list/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskqueues/list/get/example-1/example-1.8.x.py rename to rest/taskrouter/taskqueues/list/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/taskqueues/list/post/example-1/example-1.8.x.py b/rest/taskrouter/taskqueues/list/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/taskqueues/list/post/example-1/example-1.8.x.py rename to rest/taskrouter/taskqueues/list/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/tasks/instance/delete/example-1/example-1.8.x.py b/rest/taskrouter/tasks/instance/delete/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/tasks/instance/delete/example-1/example-1.8.x.py rename to rest/taskrouter/tasks/instance/delete/example-1/example-1.9.x.py diff --git a/rest/taskrouter/tasks/instance/get/example-1/example-1.8.x.py b/rest/taskrouter/tasks/instance/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/tasks/instance/get/example-1/example-1.8.x.py rename to rest/taskrouter/tasks/instance/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/tasks/instance/post/example-1/example-1.8.x.py b/rest/taskrouter/tasks/instance/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/tasks/instance/post/example-1/example-1.8.x.py rename to rest/taskrouter/tasks/instance/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/tasks/list/get/example-1/example-1.8.x.py b/rest/taskrouter/tasks/list/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/tasks/list/get/example-1/example-1.8.x.py rename to rest/taskrouter/tasks/list/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/tasks/list/get/example-2/example-2.8.x.py b/rest/taskrouter/tasks/list/get/example-2/example-2.9.x.py similarity index 100% rename from rest/taskrouter/tasks/list/get/example-2/example-2.8.x.py rename to rest/taskrouter/tasks/list/get/example-2/example-2.9.x.py diff --git a/rest/taskrouter/tasks/list/post/example-1/example-1.8.x.py b/rest/taskrouter/tasks/list/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/tasks/list/post/example-1/example-1.8.x.py rename to rest/taskrouter/tasks/list/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/twiml/example1/example/example.8.x.py b/rest/taskrouter/twiml/example1/example/example.9.x.py similarity index 100% rename from rest/taskrouter/twiml/example1/example/example.8.x.py rename to rest/taskrouter/twiml/example1/example/example.9.x.py diff --git a/rest/taskrouter/twiml/example2/example/example.8.x.py b/rest/taskrouter/twiml/example2/example/example.9.x.py similarity index 100% rename from rest/taskrouter/twiml/example2/example/example.8.x.py rename to rest/taskrouter/twiml/example2/example/example.9.x.py diff --git a/rest/taskrouter/twiml/example3/example/example.8.x.py b/rest/taskrouter/twiml/example3/example/example.9.x.py similarity index 100% rename from rest/taskrouter/twiml/example3/example/example.8.x.py rename to rest/taskrouter/twiml/example3/example/example.9.x.py diff --git a/rest/taskrouter/twiml/example4/example/example.8.x.py b/rest/taskrouter/twiml/example4/example/example.9.x.py similarity index 100% rename from rest/taskrouter/twiml/example4/example/example.8.x.py rename to rest/taskrouter/twiml/example4/example/example.9.x.py diff --git a/rest/taskrouter/worker-reservations/accept/example-1.8.x.py b/rest/taskrouter/worker-reservations/accept/example-1.9.x.py similarity index 100% rename from rest/taskrouter/worker-reservations/accept/example-1.8.x.py rename to rest/taskrouter/worker-reservations/accept/example-1.9.x.py diff --git a/rest/taskrouter/worker-reservations/call/example-1.8.x.py b/rest/taskrouter/worker-reservations/call/example-1.9.x.py similarity index 100% rename from rest/taskrouter/worker-reservations/call/example-1.8.x.py rename to rest/taskrouter/worker-reservations/call/example-1.9.x.py diff --git a/rest/taskrouter/worker-reservations/dequeue/example-1.8.x.py b/rest/taskrouter/worker-reservations/dequeue/example-1.9.x.py similarity index 100% rename from rest/taskrouter/worker-reservations/dequeue/example-1.8.x.py rename to rest/taskrouter/worker-reservations/dequeue/example-1.9.x.py diff --git a/rest/taskrouter/worker-reservations/instance-get-example1/example-1.8.x.py b/rest/taskrouter/worker-reservations/instance-get-example1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/worker-reservations/instance-get-example1/example-1.8.x.py rename to rest/taskrouter/worker-reservations/instance-get-example1/example-1.9.x.py diff --git a/rest/taskrouter/worker-reservations/list-get-example1/example-1.8.x.py b/rest/taskrouter/worker-reservations/list-get-example1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/worker-reservations/list-get-example1/example-1.8.x.py rename to rest/taskrouter/worker-reservations/list-get-example1/example-1.9.x.py diff --git a/rest/taskrouter/worker-reservations/reject/example-1.8.x.py b/rest/taskrouter/worker-reservations/reject/example-1.9.x.py similarity index 100% rename from rest/taskrouter/worker-reservations/reject/example-1.8.x.py rename to rest/taskrouter/worker-reservations/reject/example-1.9.x.py diff --git a/rest/taskrouter/workers/instance/delete/example-1/example-1.8.x.py b/rest/taskrouter/workers/instance/delete/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workers/instance/delete/example-1/example-1.8.x.py rename to rest/taskrouter/workers/instance/delete/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workers/instance/get/example-1/example-1.8.x.py b/rest/taskrouter/workers/instance/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workers/instance/get/example-1/example-1.8.x.py rename to rest/taskrouter/workers/instance/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workers/instance/post/example-1/example-1.8.x.py b/rest/taskrouter/workers/instance/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workers/instance/post/example-1/example-1.8.x.py rename to rest/taskrouter/workers/instance/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workers/list/get/example-1/example-1.8.x.py b/rest/taskrouter/workers/list/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workers/list/get/example-1/example-1.8.x.py rename to rest/taskrouter/workers/list/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workers/list/get/example-2/example-2.8.x.py b/rest/taskrouter/workers/list/get/example-2/example-2.9.x.py similarity index 100% rename from rest/taskrouter/workers/list/get/example-2/example-2.8.x.py rename to rest/taskrouter/workers/list/get/example-2/example-2.9.x.py diff --git a/rest/taskrouter/workers/list/post/example-1/example-1.8.x.py b/rest/taskrouter/workers/list/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workers/list/post/example-1/example-1.8.x.py rename to rest/taskrouter/workers/list/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workflows/instance/delete/example-1/example-1.8.x.py b/rest/taskrouter/workflows/instance/delete/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workflows/instance/delete/example-1/example-1.8.x.py rename to rest/taskrouter/workflows/instance/delete/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workflows/instance/get/example-1/example-1.8.x.py b/rest/taskrouter/workflows/instance/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workflows/instance/get/example-1/example-1.8.x.py rename to rest/taskrouter/workflows/instance/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workflows/instance/post/example-1/example-1.8.x.py b/rest/taskrouter/workflows/instance/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workflows/instance/post/example-1/example-1.8.x.py rename to rest/taskrouter/workflows/instance/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workflows/list/get/example-1/example-1.8.x.py b/rest/taskrouter/workflows/list/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workflows/list/get/example-1/example-1.8.x.py rename to rest/taskrouter/workflows/list/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workflows/list/post/example-1/example-1.8.x.py b/rest/taskrouter/workflows/list/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workflows/list/post/example-1/example-1.8.x.py rename to rest/taskrouter/workflows/list/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workspaces/instance/delete/example-1/example-1.8.x.py b/rest/taskrouter/workspaces/instance/delete/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workspaces/instance/delete/example-1/example-1.8.x.py rename to rest/taskrouter/workspaces/instance/delete/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workspaces/instance/get/example-1/example-1.8.x.py b/rest/taskrouter/workspaces/instance/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workspaces/instance/get/example-1/example-1.8.x.py rename to rest/taskrouter/workspaces/instance/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workspaces/instance/post/example-1/example-1.8.x.py b/rest/taskrouter/workspaces/instance/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workspaces/instance/post/example-1/example-1.8.x.py rename to rest/taskrouter/workspaces/instance/post/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workspaces/list/get/example-1/example-1.8.x.py b/rest/taskrouter/workspaces/list/get/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workspaces/list/get/example-1/example-1.8.x.py rename to rest/taskrouter/workspaces/list/get/example-1/example-1.9.x.py diff --git a/rest/taskrouter/workspaces/list/post/example-1/example-1.8.x.py b/rest/taskrouter/workspaces/list/post/example-1/example-1.9.x.py similarity index 100% rename from rest/taskrouter/workspaces/list/post/example-1/example-1.8.x.py rename to rest/taskrouter/workspaces/list/post/example-1/example-1.9.x.py diff --git a/rest/test-credentials/test-calls-example-1/test-calls-example-1.8.x.py b/rest/test-credentials/test-calls-example-1/test-calls-example-1.9.x.py similarity index 100% rename from rest/test-credentials/test-calls-example-1/test-calls-example-1.8.x.py rename to rest/test-credentials/test-calls-example-1/test-calls-example-1.9.x.py diff --git a/rest/test-credentials/test-calls-example-2/test-calls-example-2.8.x.py b/rest/test-credentials/test-calls-example-2/test-calls-example-2.9.x.py similarity index 100% rename from rest/test-credentials/test-calls-example-2/test-calls-example-2.8.x.py rename to rest/test-credentials/test-calls-example-2/test-calls-example-2.9.x.py diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.8.x.py b/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.9.x.py similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.8.x.py rename to rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.9.x.py diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.8.x.py b/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.9.x.py similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.8.x.py rename to rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.9.x.py diff --git a/rest/test-credentials/test-post-example-3/test-post-example-3.8.x.py b/rest/test-credentials/test-post-example-3/test-post-example-3.9.x.py similarity index 100% rename from rest/test-credentials/test-post-example-3/test-post-example-3.8.x.py rename to rest/test-credentials/test-post-example-3/test-post-example-3.9.x.py diff --git a/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.8.x.py b/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.9.x.py similarity index 100% rename from rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.8.x.py rename to rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.9.x.py diff --git a/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.8.x.py b/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.9.x.py similarity index 100% rename from rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.8.x.py rename to rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.9.x.py diff --git a/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.8.x.py b/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.9.x.py similarity index 100% rename from rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.8.x.py rename to rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.9.x.py diff --git a/rest/token/list-post-1-hour-example/list-post-1-hour-example.8.x.py b/rest/token/list-post-1-hour-example/list-post-1-hour-example.9.x.py similarity index 100% rename from rest/token/list-post-1-hour-example/list-post-1-hour-example.8.x.py rename to rest/token/list-post-1-hour-example/list-post-1-hour-example.9.x.py diff --git a/rest/token/list-post-example/list-post-example.8.x.py b/rest/token/list-post-example/list-post-example.9.x.py similarity index 100% rename from rest/token/list-post-example/list-post-example.8.x.py rename to rest/token/list-post-example/list-post-example.9.x.py diff --git a/rest/transcription/instance-delete-examples/instance-delete-examples.8.x.py b/rest/transcription/instance-delete-examples/instance-delete-examples.9.x.py similarity index 100% rename from rest/transcription/instance-delete-examples/instance-delete-examples.8.x.py rename to rest/transcription/instance-delete-examples/instance-delete-examples.9.x.py diff --git a/rest/transcription/instance-get-example-1/instance-get-example-1.8.x.py b/rest/transcription/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/transcription/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/transcription/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/transcription/list-get-example-1/list-get-example-1.8.x.py b/rest/transcription/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/transcription/list-get-example-1/list-get-example-1.8.x.py rename to rest/transcription/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/usage-records/list-get-example-1/list-get-example-1.8.x.py b/rest/usage-records/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/usage-records/list-get-example-1/list-get-example-1.8.x.py rename to rest/usage-records/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/usage-records/list-get-example-2/list-get-example-2.8.x.py b/rest/usage-records/list-get-example-2/list-get-example-2.9.x.py similarity index 100% rename from rest/usage-records/list-get-example-2/list-get-example-2.8.x.py rename to rest/usage-records/list-get-example-2/list-get-example-2.9.x.py diff --git a/rest/usage-records/list-get-example-3/list-get-example-3.8.x.py b/rest/usage-records/list-get-example-3/list-get-example-3.9.x.py similarity index 100% rename from rest/usage-records/list-get-example-3/list-get-example-3.8.x.py rename to rest/usage-records/list-get-example-3/list-get-example-3.9.x.py diff --git a/rest/usage-records/list-get-example-4/list-get-example-4.8.x.py b/rest/usage-records/list-get-example-4/list-get-example-4.9.x.py similarity index 100% rename from rest/usage-records/list-get-example-4/list-get-example-4.8.x.py rename to rest/usage-records/list-get-example-4/list-get-example-4.9.x.py diff --git a/rest/usage-records/list-get-example-5/list-get-example-5.8.x.py b/rest/usage-records/list-get-example-5/list-get-example-5.9.x.py similarity index 100% rename from rest/usage-records/list-get-example-5/list-get-example-5.8.x.py rename to rest/usage-records/list-get-example-5/list-get-example-5.9.x.py diff --git a/rest/usage-triggers/instance-get-example-1/instance-get-example-1.8.x.py b/rest/usage-triggers/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from rest/usage-triggers/instance-get-example-1/instance-get-example-1.8.x.py rename to rest/usage-triggers/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/rest/usage-triggers/instance-post-example-1/instance-post-example-1.8.x.py b/rest/usage-triggers/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from rest/usage-triggers/instance-post-example-1/instance-post-example-1.8.x.py rename to rest/usage-triggers/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/rest/usage-triggers/list-get-example-1/list-get-example-1.8.x.py b/rest/usage-triggers/list-get-example-1/list-get-example-1.9.x.py similarity index 100% rename from rest/usage-triggers/list-get-example-1/list-get-example-1.8.x.py rename to rest/usage-triggers/list-get-example-1/list-get-example-1.9.x.py diff --git a/rest/usage-triggers/list-post-example-1/list-post-example-1.8.x.py b/rest/usage-triggers/list-post-example-1/list-post-example-1.9.x.py similarity index 100% rename from rest/usage-triggers/list-post-example-1/list-post-example-1.8.x.py rename to rest/usage-triggers/list-post-example-1/list-post-example-1.9.x.py diff --git a/rest/voice/generate-twiml-play/example-1.8.x.py b/rest/voice/generate-twiml-play/example-1.9.x.py similarity index 100% rename from rest/voice/generate-twiml-play/example-1.8.x.py rename to rest/voice/generate-twiml-play/example-1.9.x.py diff --git a/rest/voice/generate-twiml-say/generate-twiml-say.8.x.py b/rest/voice/generate-twiml-say/generate-twiml-say.9.x.py similarity index 100% rename from rest/voice/generate-twiml-say/generate-twiml-say.8.x.py rename to rest/voice/generate-twiml-say/generate-twiml-say.9.x.py diff --git a/rest/voice/outbound-calls/example-1/example-1.8.x.py b/rest/voice/outbound-calls/example-1/example-1.9.x.py similarity index 100% rename from rest/voice/outbound-calls/example-1/example-1.8.x.py rename to rest/voice/outbound-calls/example-1/example-1.9.x.py diff --git a/rest/voice/outbound-calls/example-2/example-2.8.x.py b/rest/voice/outbound-calls/example-2/example-2.9.x.py similarity index 100% rename from rest/voice/outbound-calls/example-2/example-2.8.x.py rename to rest/voice/outbound-calls/example-2/example-2.9.x.py diff --git a/rest/voice/outbound-calls/example-3/example-3.8.x.py b/rest/voice/outbound-calls/example-3/example-3.9.x.py similarity index 100% rename from rest/voice/outbound-calls/example-3/example-3.8.x.py rename to rest/voice/outbound-calls/example-3/example-3.9.x.py diff --git a/rest/voice/outbound-calls/example-4/example-4.8.x.py b/rest/voice/outbound-calls/example-4/example-4.9.x.py similarity index 100% rename from rest/voice/outbound-calls/example-4/example-4.8.x.py rename to rest/voice/outbound-calls/example-4/example-4.9.x.py diff --git a/rest/voice/twiml-recording-action/recording-action.8.x.py b/rest/voice/twiml-recording-action/recording-action.9.x.py similarity index 100% rename from rest/voice/twiml-recording-action/recording-action.8.x.py rename to rest/voice/twiml-recording-action/recording-action.9.x.py diff --git a/security/environment_variables/environment-variables-1.8.x.py b/security/environment_variables/environment-variables-1.9.x.py similarity index 100% rename from security/environment_variables/environment-variables-1.8.x.py rename to security/environment_variables/environment-variables-1.9.x.py diff --git a/security/signature_validation/signature_validation.8.x.py b/security/signature_validation/signature_validation.9.x.py similarity index 100% rename from security/signature_validation/signature_validation.8.x.py rename to security/signature_validation/signature_validation.9.x.py diff --git a/security/signature_validation_tests/signature_validation_tests.8.x.py b/security/signature_validation_tests/signature_validation_tests.9.x.py similarity index 100% rename from security/signature_validation_tests/signature_validation_tests.8.x.py rename to security/signature_validation_tests/signature_validation_tests.9.x.py diff --git a/stun-turn/list-post-example/list-post-example.8.x.py b/stun-turn/list-post-example/list-post-example.9.x.py similarity index 100% rename from stun-turn/list-post-example/list-post-example.8.x.py rename to stun-turn/list-post-example/list-post-example.9.x.py diff --git a/super-sim/sims/update-account/update-account.8.x.py b/super-sim/sims/update-account/update-account.9.x.py similarity index 100% rename from super-sim/sims/update-account/update-account.8.x.py rename to super-sim/sims/update-account/update-account.9.x.py diff --git a/sync/rest/document-permissions/delete-permission/delete-permission.8.x.py b/sync/rest/document-permissions/delete-permission/delete-permission.9.x.py similarity index 100% rename from sync/rest/document-permissions/delete-permission/delete-permission.8.x.py rename to sync/rest/document-permissions/delete-permission/delete-permission.9.x.py diff --git a/sync/rest/document-permissions/list-permissions/list-permissions.8.x.py b/sync/rest/document-permissions/list-permissions/list-permissions.9.x.py similarity index 100% rename from sync/rest/document-permissions/list-permissions/list-permissions.8.x.py rename to sync/rest/document-permissions/list-permissions/list-permissions.9.x.py diff --git a/sync/rest/document-permissions/retrieve-permission/retrieve-permission.8.x.py b/sync/rest/document-permissions/retrieve-permission/retrieve-permission.9.x.py similarity index 100% rename from sync/rest/document-permissions/retrieve-permission/retrieve-permission.8.x.py rename to sync/rest/document-permissions/retrieve-permission/retrieve-permission.9.x.py diff --git a/sync/rest/document-permissions/update-permission/update-permission.8.x.py b/sync/rest/document-permissions/update-permission/update-permission.9.x.py similarity index 100% rename from sync/rest/document-permissions/update-permission/update-permission.8.x.py rename to sync/rest/document-permissions/update-permission/update-permission.9.x.py diff --git a/sync/rest/documents/create-document/create-document.8.x.py b/sync/rest/documents/create-document/create-document.9.x.py similarity index 100% rename from sync/rest/documents/create-document/create-document.8.x.py rename to sync/rest/documents/create-document/create-document.9.x.py diff --git a/sync/rest/documents/delete-document/delete-document.8.x.py b/sync/rest/documents/delete-document/delete-document.9.x.py similarity index 100% rename from sync/rest/documents/delete-document/delete-document.8.x.py rename to sync/rest/documents/delete-document/delete-document.9.x.py diff --git a/sync/rest/documents/list-documents/list-documents.8.x.py b/sync/rest/documents/list-documents/list-documents.9.x.py similarity index 100% rename from sync/rest/documents/list-documents/list-documents.8.x.py rename to sync/rest/documents/list-documents/list-documents.9.x.py diff --git a/sync/rest/documents/retrieve-document/retrieve-document.8.x.py b/sync/rest/documents/retrieve-document/retrieve-document.9.x.py similarity index 100% rename from sync/rest/documents/retrieve-document/retrieve-document.8.x.py rename to sync/rest/documents/retrieve-document/retrieve-document.9.x.py diff --git a/sync/rest/documents/update-document/update-document.8.x.py b/sync/rest/documents/update-document/update-document.9.x.py similarity index 100% rename from sync/rest/documents/update-document/update-document.8.x.py rename to sync/rest/documents/update-document/update-document.9.x.py diff --git a/sync/rest/list-permissions/delete-permission/delete-permission.8.x.py b/sync/rest/list-permissions/delete-permission/delete-permission.9.x.py similarity index 100% rename from sync/rest/list-permissions/delete-permission/delete-permission.8.x.py rename to sync/rest/list-permissions/delete-permission/delete-permission.9.x.py diff --git a/sync/rest/list-permissions/list-permissions/list-permissions.8.x.py b/sync/rest/list-permissions/list-permissions/list-permissions.9.x.py similarity index 100% rename from sync/rest/list-permissions/list-permissions/list-permissions.8.x.py rename to sync/rest/list-permissions/list-permissions/list-permissions.9.x.py diff --git a/sync/rest/list-permissions/retrieve-permission/retrieve-permission.8.x.py b/sync/rest/list-permissions/retrieve-permission/retrieve-permission.9.x.py similarity index 100% rename from sync/rest/list-permissions/retrieve-permission/retrieve-permission.8.x.py rename to sync/rest/list-permissions/retrieve-permission/retrieve-permission.9.x.py diff --git a/sync/rest/list-permissions/update-permission/update-permission.8.x.py b/sync/rest/list-permissions/update-permission/update-permission.9.x.py similarity index 100% rename from sync/rest/list-permissions/update-permission/update-permission.8.x.py rename to sync/rest/list-permissions/update-permission/update-permission.9.x.py diff --git a/sync/rest/lists/create-list-item/create-list-item.8.x.py b/sync/rest/lists/create-list-item/create-list-item.9.x.py similarity index 100% rename from sync/rest/lists/create-list-item/create-list-item.8.x.py rename to sync/rest/lists/create-list-item/create-list-item.9.x.py diff --git a/sync/rest/lists/create-list/create-list.8.x.py b/sync/rest/lists/create-list/create-list.9.x.py similarity index 100% rename from sync/rest/lists/create-list/create-list.8.x.py rename to sync/rest/lists/create-list/create-list.9.x.py diff --git a/sync/rest/lists/delete-list-item/delete-list-item.8.x.py b/sync/rest/lists/delete-list-item/delete-list-item.9.x.py similarity index 100% rename from sync/rest/lists/delete-list-item/delete-list-item.8.x.py rename to sync/rest/lists/delete-list-item/delete-list-item.9.x.py diff --git a/sync/rest/lists/delete-list/delete-list.8.x.py b/sync/rest/lists/delete-list/delete-list.9.x.py similarity index 100% rename from sync/rest/lists/delete-list/delete-list.8.x.py rename to sync/rest/lists/delete-list/delete-list.9.x.py diff --git a/sync/rest/lists/list-lists/list-lists.8.x.py b/sync/rest/lists/list-lists/list-lists.9.x.py similarity index 100% rename from sync/rest/lists/list-lists/list-lists.8.x.py rename to sync/rest/lists/list-lists/list-lists.9.x.py diff --git a/sync/rest/lists/query-list/query-list.8.x.py b/sync/rest/lists/query-list/query-list.9.x.py similarity index 100% rename from sync/rest/lists/query-list/query-list.8.x.py rename to sync/rest/lists/query-list/query-list.9.x.py diff --git a/sync/rest/lists/retrieve-list-item/retrieve-list-item.8.x.py b/sync/rest/lists/retrieve-list-item/retrieve-list-item.9.x.py similarity index 100% rename from sync/rest/lists/retrieve-list-item/retrieve-list-item.8.x.py rename to sync/rest/lists/retrieve-list-item/retrieve-list-item.9.x.py diff --git a/sync/rest/lists/retrieve-list/retrieve-list.8.x.py b/sync/rest/lists/retrieve-list/retrieve-list.9.x.py similarity index 100% rename from sync/rest/lists/retrieve-list/retrieve-list.8.x.py rename to sync/rest/lists/retrieve-list/retrieve-list.9.x.py diff --git a/sync/rest/lists/update-list-item/update-list-item.8.x.py b/sync/rest/lists/update-list-item/update-list-item.9.x.py similarity index 100% rename from sync/rest/lists/update-list-item/update-list-item.8.x.py rename to sync/rest/lists/update-list-item/update-list-item.9.x.py diff --git a/sync/rest/lists/update-list/update-list.8.x.py b/sync/rest/lists/update-list/update-list.9.x.py similarity index 100% rename from sync/rest/lists/update-list/update-list.8.x.py rename to sync/rest/lists/update-list/update-list.9.x.py diff --git a/sync/rest/map-permissions/delete-permission/delete-permission.8.x.py b/sync/rest/map-permissions/delete-permission/delete-permission.9.x.py similarity index 100% rename from sync/rest/map-permissions/delete-permission/delete-permission.8.x.py rename to sync/rest/map-permissions/delete-permission/delete-permission.9.x.py diff --git a/sync/rest/map-permissions/list-permissions/list-permissions.8.x.py b/sync/rest/map-permissions/list-permissions/list-permissions.9.x.py similarity index 100% rename from sync/rest/map-permissions/list-permissions/list-permissions.8.x.py rename to sync/rest/map-permissions/list-permissions/list-permissions.9.x.py diff --git a/sync/rest/map-permissions/retrieve-permission/retrieve-permission.8.x.py b/sync/rest/map-permissions/retrieve-permission/retrieve-permission.9.x.py similarity index 100% rename from sync/rest/map-permissions/retrieve-permission/retrieve-permission.8.x.py rename to sync/rest/map-permissions/retrieve-permission/retrieve-permission.9.x.py diff --git a/sync/rest/map-permissions/update-permission/update-permission.8.x.py b/sync/rest/map-permissions/update-permission/update-permission.9.x.py similarity index 100% rename from sync/rest/map-permissions/update-permission/update-permission.8.x.py rename to sync/rest/map-permissions/update-permission/update-permission.9.x.py diff --git a/sync/rest/maps/create-map-item/create-map-item.8.x.py b/sync/rest/maps/create-map-item/create-map-item.9.x.py similarity index 100% rename from sync/rest/maps/create-map-item/create-map-item.8.x.py rename to sync/rest/maps/create-map-item/create-map-item.9.x.py diff --git a/sync/rest/maps/create-map/create-map.8.x.py b/sync/rest/maps/create-map/create-map.9.x.py similarity index 100% rename from sync/rest/maps/create-map/create-map.8.x.py rename to sync/rest/maps/create-map/create-map.9.x.py diff --git a/sync/rest/maps/delete-map-item/delete-map-item.8.x.py b/sync/rest/maps/delete-map-item/delete-map-item.9.x.py similarity index 100% rename from sync/rest/maps/delete-map-item/delete-map-item.8.x.py rename to sync/rest/maps/delete-map-item/delete-map-item.9.x.py diff --git a/sync/rest/maps/delete-map/delete-map.8.x.py b/sync/rest/maps/delete-map/delete-map.9.x.py similarity index 100% rename from sync/rest/maps/delete-map/delete-map.8.x.py rename to sync/rest/maps/delete-map/delete-map.9.x.py diff --git a/sync/rest/maps/list-maps/list-maps.8.x.py b/sync/rest/maps/list-maps/list-maps.9.x.py similarity index 100% rename from sync/rest/maps/list-maps/list-maps.8.x.py rename to sync/rest/maps/list-maps/list-maps.9.x.py diff --git a/sync/rest/maps/query-map/query-map.8.x.py b/sync/rest/maps/query-map/query-map.9.x.py similarity index 100% rename from sync/rest/maps/query-map/query-map.8.x.py rename to sync/rest/maps/query-map/query-map.9.x.py diff --git a/sync/rest/maps/retrieve-map-item/retrieve-map-item.8.x.py b/sync/rest/maps/retrieve-map-item/retrieve-map-item.9.x.py similarity index 100% rename from sync/rest/maps/retrieve-map-item/retrieve-map-item.8.x.py rename to sync/rest/maps/retrieve-map-item/retrieve-map-item.9.x.py diff --git a/sync/rest/maps/retrieve-map/retrieve-map.8.x.py b/sync/rest/maps/retrieve-map/retrieve-map.9.x.py similarity index 100% rename from sync/rest/maps/retrieve-map/retrieve-map.8.x.py rename to sync/rest/maps/retrieve-map/retrieve-map.9.x.py diff --git a/sync/rest/maps/update-map-item/update-map-item.8.x.py b/sync/rest/maps/update-map-item/update-map-item.9.x.py similarity index 100% rename from sync/rest/maps/update-map-item/update-map-item.8.x.py rename to sync/rest/maps/update-map-item/update-map-item.9.x.py diff --git a/sync/rest/maps/update-map/update-map.8.x.py b/sync/rest/maps/update-map/update-map.9.x.py similarity index 100% rename from sync/rest/maps/update-map/update-map.8.x.py rename to sync/rest/maps/update-map/update-map.9.x.py diff --git a/sync/rest/services/create-service-webhook/create-service-webhook.8.x.py b/sync/rest/services/create-service-webhook/create-service-webhook.9.x.py similarity index 100% rename from sync/rest/services/create-service-webhook/create-service-webhook.8.x.py rename to sync/rest/services/create-service-webhook/create-service-webhook.9.x.py diff --git a/sync/rest/services/create-service/create-service.8.x.py b/sync/rest/services/create-service/create-service.9.x.py similarity index 100% rename from sync/rest/services/create-service/create-service.8.x.py rename to sync/rest/services/create-service/create-service.9.x.py diff --git a/sync/rest/services/delete-service/delete-service.8.x.py b/sync/rest/services/delete-service/delete-service.9.x.py similarity index 100% rename from sync/rest/services/delete-service/delete-service.8.x.py rename to sync/rest/services/delete-service/delete-service.9.x.py diff --git a/sync/rest/services/list-services/list-services.8.x.py b/sync/rest/services/list-services/list-services.9.x.py similarity index 100% rename from sync/rest/services/list-services/list-services.8.x.py rename to sync/rest/services/list-services/list-services.9.x.py diff --git a/sync/rest/services/retrieve-service/retrieve-service.8.x.py b/sync/rest/services/retrieve-service/retrieve-service.9.x.py similarity index 100% rename from sync/rest/services/retrieve-service/retrieve-service.8.x.py rename to sync/rest/services/retrieve-service/retrieve-service.9.x.py diff --git a/sync/rest/services/update-service/update-service.8.x.py b/sync/rest/services/update-service/update-service.9.x.py similarity index 100% rename from sync/rest/services/update-service/update-service.8.x.py rename to sync/rest/services/update-service/update-service.9.x.py diff --git a/sync/rest/streams/create-stream/create-stream.8.x.py b/sync/rest/streams/create-stream/create-stream.9.x.py similarity index 100% rename from sync/rest/streams/create-stream/create-stream.8.x.py rename to sync/rest/streams/create-stream/create-stream.9.x.py diff --git a/sync/rest/streams/delete-stream/delete-stream.8.x.py b/sync/rest/streams/delete-stream/delete-stream.9.x.py similarity index 100% rename from sync/rest/streams/delete-stream/delete-stream.8.x.py rename to sync/rest/streams/delete-stream/delete-stream.9.x.py diff --git a/sync/rest/streams/list-streams/list-streams.8.x.py b/sync/rest/streams/list-streams/list-streams.9.x.py similarity index 100% rename from sync/rest/streams/list-streams/list-streams.8.x.py rename to sync/rest/streams/list-streams/list-streams.9.x.py diff --git a/sync/rest/streams/publish-stream-message/publish-stream-message.8.x.py b/sync/rest/streams/publish-stream-message/publish-stream-message.9.x.py similarity index 100% rename from sync/rest/streams/publish-stream-message/publish-stream-message.8.x.py rename to sync/rest/streams/publish-stream-message/publish-stream-message.9.x.py diff --git a/sync/rest/streams/retrieve-stream/retrieve-stream.8.x.py b/sync/rest/streams/retrieve-stream/retrieve-stream.9.x.py similarity index 100% rename from sync/rest/streams/retrieve-stream/retrieve-stream.8.x.py rename to sync/rest/streams/retrieve-stream/retrieve-stream.9.x.py diff --git a/sync/rest/streams/update-stream/update-stream.8.x.py b/sync/rest/streams/update-stream/update-stream.9.x.py similarity index 100% rename from sync/rest/streams/update-stream/update-stream.8.x.py rename to sync/rest/streams/update-stream/update-stream.9.x.py diff --git a/twiml/README.md b/twiml/README.md index e6ccfb29ac..e848d345e3 100644 --- a/twiml/README.md +++ b/twiml/README.md @@ -15,7 +15,7 @@ twiml/ <-- The TwiML snippet directory │ │ │ ├─ say-language-voice.5.x.rb │ │ │ ├─ say-language-voice.6.x.cs │ │ │ ├─ say-language-voice.6.x.php -│ │ │ ├─ say-language-voice.8.x.py +│ │ │ ├─ say-language-voice.9.x.py │ │ │ ├─ say-language-voice.10.x.java │ │ │ ├─ say-language-voice..x. │ │ │ ├─ meta.json @@ -130,4 +130,4 @@ Search for the TwiML snippet via the `title` field in its `meta.json` file. ## A note on `twilio-go` -Golang examples don't yet exist in this repo. They will be added once the `twilio-go` library's TwiML functionality is more in line with the rest of the Helper Libraries. \ No newline at end of file +Golang examples don't yet exist in this repo. They will be added once the `twilio-go` library's TwiML functionality is more in line with the rest of the Helper Libraries. diff --git a/twiml/message/message/message-1/message-1.8.x.py b/twiml/message/message/message-1/message-1.9.x.py similarity index 100% rename from twiml/message/message/message-1/message-1.8.x.py rename to twiml/message/message/message-1/message-1.9.x.py diff --git a/twiml/message/message/message-2/message-2.8.x.py b/twiml/message/message/message-2/message-2.9.x.py similarity index 100% rename from twiml/message/message/message-2/message-2.8.x.py rename to twiml/message/message/message-2/message-2.9.x.py diff --git a/twiml/message/message/message-3/message-3.8.x.py b/twiml/message/message/message-3/message-3.9.x.py similarity index 100% rename from twiml/message/message/message-3/message-3.8.x.py rename to twiml/message/message/message-3/message-3.9.x.py diff --git a/twiml/message/message/message-4/message-4.8.x.py b/twiml/message/message/message-4/message-4.9.x.py similarity index 100% rename from twiml/message/message/message-4/message-4.8.x.py rename to twiml/message/message/message-4/message-4.9.x.py diff --git a/twiml/message/redirect/redirect-1/redirect-1.8.x.py b/twiml/message/redirect/redirect-1/redirect-1.9.x.py similarity index 100% rename from twiml/message/redirect/redirect-1/redirect-1.8.x.py rename to twiml/message/redirect/redirect-1/redirect-1.9.x.py diff --git a/twiml/message/redirect/redirect-2/redirect-2.8.x.py b/twiml/message/redirect/redirect-2/redirect-2.9.x.py similarity index 100% rename from twiml/message/redirect/redirect-2/redirect-2.8.x.py rename to twiml/message/redirect/redirect-2/redirect-2.9.x.py diff --git a/twiml/message/your-response/your-response-1/your-response-1.8.x.py b/twiml/message/your-response/your-response-1/your-response-1.9.x.py similarity index 100% rename from twiml/message/your-response/your-response-1/your-response-1.8.x.py rename to twiml/message/your-response/your-response-1/your-response-1.9.x.py diff --git a/twiml/message/your-response/your-response-2/your-response-2.8.x.py b/twiml/message/your-response/your-response-2/your-response-2.9.x.py similarity index 100% rename from twiml/message/your-response/your-response-2/your-response-2.8.x.py rename to twiml/message/your-response/your-response-2/your-response-2.9.x.py diff --git a/twiml/message/your-response/your-response-3/your-response-3.8.x.py b/twiml/message/your-response/your-response-3/your-response-3.9.x.py similarity index 100% rename from twiml/message/your-response/your-response-3/your-response-3.8.x.py rename to twiml/message/your-response/your-response-3/your-response-3.9.x.py diff --git a/twiml/voice/application/dial-application-basic/dial-application-basic.8.x.py b/twiml/voice/application/dial-application-basic/dial-application-basic.9.x.py similarity index 100% rename from twiml/voice/application/dial-application-basic/dial-application-basic.8.x.py rename to twiml/voice/application/dial-application-basic/dial-application-basic.9.x.py diff --git a/twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.8.x.py b/twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.9.x.py similarity index 100% rename from twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.8.x.py rename to twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.9.x.py diff --git a/twiml/voice/application/dial-application-customerid/dial-application-customerid.8.x.py b/twiml/voice/application/dial-application-customerid/dial-application-customerid.9.x.py similarity index 100% rename from twiml/voice/application/dial-application-customerid/dial-application-customerid.8.x.py rename to twiml/voice/application/dial-application-customerid/dial-application-customerid.9.x.py diff --git a/twiml/voice/application/dial-application-parameter/dial-application-parameter.8.x.py b/twiml/voice/application/dial-application-parameter/dial-application-parameter.9.x.py similarity index 100% rename from twiml/voice/application/dial-application-parameter/dial-application-parameter.8.x.py rename to twiml/voice/application/dial-application-parameter/dial-application-parameter.9.x.py diff --git a/twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.8.x.py b/twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.9.x.py similarity index 100% rename from twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.8.x.py rename to twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.9.x.py diff --git a/twiml/voice/application/hangup-parameter/hangup-parameter.8.x.py b/twiml/voice/application/hangup-parameter/hangup-parameter.9.x.py similarity index 100% rename from twiml/voice/application/hangup-parameter/hangup-parameter.8.x.py rename to twiml/voice/application/hangup-parameter/hangup-parameter.9.x.py diff --git a/twiml/voice/application/reject-parameter/reject-parameter.8.x.py b/twiml/voice/application/reject-parameter/reject-parameter.9.x.py similarity index 100% rename from twiml/voice/application/reject-parameter/reject-parameter.8.x.py rename to twiml/voice/application/reject-parameter/reject-parameter.9.x.py diff --git a/twiml/voice/client/client-1/client-1.8.x.py b/twiml/voice/client/client-1/client-1.9.x.py similarity index 100% rename from twiml/voice/client/client-1/client-1.8.x.py rename to twiml/voice/client/client-1/client-1.9.x.py diff --git a/twiml/voice/client/client-2/client-2.8.x.py b/twiml/voice/client/client-2/client-2.9.x.py similarity index 100% rename from twiml/voice/client/client-2/client-2.8.x.py rename to twiml/voice/client/client-2/client-2.9.x.py diff --git a/twiml/voice/client/client-3/client-3.8.x.py b/twiml/voice/client/client-3/client-3.9.x.py similarity index 100% rename from twiml/voice/client/client-3/client-3.8.x.py rename to twiml/voice/client/client-3/client-3.9.x.py diff --git a/twiml/voice/conference/conference-1/conference-1.8.x.py b/twiml/voice/conference/conference-1/conference-1.9.x.py similarity index 100% rename from twiml/voice/conference/conference-1/conference-1.8.x.py rename to twiml/voice/conference/conference-1/conference-1.9.x.py diff --git a/twiml/voice/conference/conference-10/conference-10.8.x.py b/twiml/voice/conference/conference-10/conference-10.9.x.py similarity index 100% rename from twiml/voice/conference/conference-10/conference-10.8.x.py rename to twiml/voice/conference/conference-10/conference-10.9.x.py diff --git a/twiml/voice/conference/conference-2/conference-2.8.x.py b/twiml/voice/conference/conference-2/conference-2.9.x.py similarity index 100% rename from twiml/voice/conference/conference-2/conference-2.8.x.py rename to twiml/voice/conference/conference-2/conference-2.9.x.py diff --git a/twiml/voice/conference/conference-3/conference-3.8.x.py b/twiml/voice/conference/conference-3/conference-3.9.x.py similarity index 100% rename from twiml/voice/conference/conference-3/conference-3.8.x.py rename to twiml/voice/conference/conference-3/conference-3.9.x.py diff --git a/twiml/voice/conference/conference-4/conference-4.8.x.py b/twiml/voice/conference/conference-4/conference-4.9.x.py similarity index 100% rename from twiml/voice/conference/conference-4/conference-4.8.x.py rename to twiml/voice/conference/conference-4/conference-4.9.x.py diff --git a/twiml/voice/conference/conference-5/conference-5.8.x.py b/twiml/voice/conference/conference-5/conference-5.9.x.py similarity index 100% rename from twiml/voice/conference/conference-5/conference-5.8.x.py rename to twiml/voice/conference/conference-5/conference-5.9.x.py diff --git a/twiml/voice/conference/conference-6/conference-6.8.x.py b/twiml/voice/conference/conference-6/conference-6.9.x.py similarity index 100% rename from twiml/voice/conference/conference-6/conference-6.8.x.py rename to twiml/voice/conference/conference-6/conference-6.9.x.py diff --git a/twiml/voice/conference/conference-7/conference-7.8.x.py b/twiml/voice/conference/conference-7/conference-7.9.x.py similarity index 100% rename from twiml/voice/conference/conference-7/conference-7.8.x.py rename to twiml/voice/conference/conference-7/conference-7.9.x.py diff --git a/twiml/voice/conference/conference-8/conference-8.8.x.py b/twiml/voice/conference/conference-8/conference-8.9.x.py similarity index 100% rename from twiml/voice/conference/conference-8/conference-8.8.x.py rename to twiml/voice/conference/conference-8/conference-8.9.x.py diff --git a/twiml/voice/conference/conference-9/conference-9.8.x.py b/twiml/voice/conference/conference-9/conference-9.9.x.py similarity index 100% rename from twiml/voice/conference/conference-9/conference-9.8.x.py rename to twiml/voice/conference/conference-9/conference-9.9.x.py diff --git a/twiml/voice/connect/autopilot/connect-1.8.x.py b/twiml/voice/connect/autopilot/connect-1.9.x.py similarity index 100% rename from twiml/voice/connect/autopilot/connect-1.8.x.py rename to twiml/voice/connect/autopilot/connect-1.9.x.py diff --git a/twiml/voice/connect/connect-1/connect-1.8.x.py b/twiml/voice/connect/connect-1/connect-1.9.x.py similarity index 100% rename from twiml/voice/connect/connect-1/connect-1.8.x.py rename to twiml/voice/connect/connect-1/connect-1.9.x.py diff --git a/twiml/voice/connect/connect-2/connect-2.8.x.py b/twiml/voice/connect/connect-2/connect-2.9.x.py similarity index 100% rename from twiml/voice/connect/connect-2/connect-2.8.x.py rename to twiml/voice/connect/connect-2/connect-2.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.8.x.py b/twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.8.x.py rename to twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.8.x.py b/twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.8.x.py rename to twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-action/conversation-action.8.x.py b/twiml/voice/connect/conversation/conversation-action/conversation-action.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-action/conversation-action.8.x.py rename to twiml/voice/connect/conversation/conversation-action/conversation-action.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-basic/conversation-basic.8.x.py b/twiml/voice/connect/conversation/conversation-basic/conversation-basic.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-basic/conversation-basic.8.x.py rename to twiml/voice/connect/conversation/conversation-basic/conversation-basic.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.8.x.py b/twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.8.x.py rename to twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.8.x.py b/twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.8.x.py rename to twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.8.x.py b/twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.8.x.py rename to twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.8.x.py b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.8.x.py rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.8.x.py b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.8.x.py rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.8.x.py b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.8.x.py rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.8.x.py b/twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.8.x.py rename to twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-record/conversation-record.8.x.py b/twiml/voice/connect/conversation/conversation-record/conversation-record.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-record/conversation-record.8.x.py rename to twiml/voice/connect/conversation/conversation-record/conversation-record.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.8.x.py b/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.8.x.py rename to twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.8.x.py b/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.8.x.py rename to twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.9.x.py diff --git a/twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.8.x.py b/twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.9.x.py similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.8.x.py rename to twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.9.x.py diff --git a/twiml/voice/connect/stream/connect_stream.8.x.py b/twiml/voice/connect/stream/connect_stream.9.x.py similarity index 100% rename from twiml/voice/connect/stream/connect_stream.8.x.py rename to twiml/voice/connect/stream/connect_stream.9.x.py diff --git a/twiml/voice/connect/virtualagent-1/virtualagent-1.8.x.py b/twiml/voice/connect/virtualagent-1/virtualagent-1.9.x.py similarity index 100% rename from twiml/voice/connect/virtualagent-1/virtualagent-1.8.x.py rename to twiml/voice/connect/virtualagent-1/virtualagent-1.9.x.py diff --git a/twiml/voice/connect/virtualagent-2/virtualagent-2.8.x.py b/twiml/voice/connect/virtualagent-2/virtualagent-2.9.x.py similarity index 100% rename from twiml/voice/connect/virtualagent-2/virtualagent-2.8.x.py rename to twiml/voice/connect/virtualagent-2/virtualagent-2.9.x.py diff --git a/twiml/voice/connect/virtualagent-3/virtualagent-3.8.x.py b/twiml/voice/connect/virtualagent-3/virtualagent-3.9.x.py similarity index 100% rename from twiml/voice/connect/virtualagent-3/virtualagent-3.8.x.py rename to twiml/voice/connect/virtualagent-3/virtualagent-3.9.x.py diff --git a/twiml/voice/connect/virtualagent-4/virtualagent-4.8.x.py b/twiml/voice/connect/virtualagent-4/virtualagent-4.9.x.py similarity index 100% rename from twiml/voice/connect/virtualagent-4/virtualagent-4.8.x.py rename to twiml/voice/connect/virtualagent-4/virtualagent-4.9.x.py diff --git a/twiml/voice/connect/virtualagent-5/virtualagent-5.8.x.py b/twiml/voice/connect/virtualagent-5/virtualagent-5.9.x.py similarity index 100% rename from twiml/voice/connect/virtualagent-5/virtualagent-5.8.x.py rename to twiml/voice/connect/virtualagent-5/virtualagent-5.9.x.py diff --git a/twiml/voice/connect/virtualagent-6/virtualagent-6.8.x.py b/twiml/voice/connect/virtualagent-6/virtualagent-6.9.x.py similarity index 100% rename from twiml/voice/connect/virtualagent-6/virtualagent-6.8.x.py rename to twiml/voice/connect/virtualagent-6/virtualagent-6.9.x.py diff --git a/twiml/voice/dial/dial-1/dial-1.8.x.py b/twiml/voice/dial/dial-1/dial-1.9.x.py similarity index 100% rename from twiml/voice/dial/dial-1/dial-1.8.x.py rename to twiml/voice/dial/dial-1/dial-1.9.x.py diff --git a/twiml/voice/dial/dial-2/dial-2.8.x.py b/twiml/voice/dial/dial-2/dial-2.9.x.py similarity index 100% rename from twiml/voice/dial/dial-2/dial-2.8.x.py rename to twiml/voice/dial/dial-2/dial-2.9.x.py diff --git a/twiml/voice/dial/dial-3/dial-3.8.x.py b/twiml/voice/dial/dial-3/dial-3.9.x.py similarity index 100% rename from twiml/voice/dial/dial-3/dial-3.8.x.py rename to twiml/voice/dial/dial-3/dial-3.9.x.py diff --git a/twiml/voice/dial/dial-4/dial-4.8.x.py b/twiml/voice/dial/dial-4/dial-4.9.x.py similarity index 100% rename from twiml/voice/dial/dial-4/dial-4.8.x.py rename to twiml/voice/dial/dial-4/dial-4.9.x.py diff --git a/twiml/voice/dial/dial-5/dial-5.8.x.py b/twiml/voice/dial/dial-5/dial-5.9.x.py similarity index 100% rename from twiml/voice/dial/dial-5/dial-5.8.x.py rename to twiml/voice/dial/dial-5/dial-5.9.x.py diff --git a/twiml/voice/dial/dial-6/dial-6.8.x.py b/twiml/voice/dial/dial-6/dial-6.9.x.py similarity index 100% rename from twiml/voice/dial/dial-6/dial-6.8.x.py rename to twiml/voice/dial/dial-6/dial-6.9.x.py diff --git a/twiml/voice/dial/dial-7/dial-7.8.x.py b/twiml/voice/dial/dial-7/dial-7.9.x.py similarity index 100% rename from twiml/voice/dial/dial-7/dial-7.8.x.py rename to twiml/voice/dial/dial-7/dial-7.9.x.py diff --git a/twiml/voice/dial/dial-8/dial-8.8.x.py b/twiml/voice/dial/dial-8/dial-8.9.x.py similarity index 100% rename from twiml/voice/dial/dial-8/dial-8.8.x.py rename to twiml/voice/dial/dial-8/dial-8.9.x.py diff --git a/twiml/voice/dial/dial-9/dial-9.8.x.py b/twiml/voice/dial/dial-9/dial-9.9.x.py similarity index 100% rename from twiml/voice/dial/dial-9/dial-9.8.x.py rename to twiml/voice/dial/dial-9/dial-9.9.x.py diff --git a/twiml/voice/enqueue/enqueue-1/enqueue-1.8.x.py b/twiml/voice/enqueue/enqueue-1/enqueue-1.9.x.py similarity index 100% rename from twiml/voice/enqueue/enqueue-1/enqueue-1.8.x.py rename to twiml/voice/enqueue/enqueue-1/enqueue-1.9.x.py diff --git a/twiml/voice/enqueue/enqueue-2/enqueue-2.8.x.py b/twiml/voice/enqueue/enqueue-2/enqueue-2.9.x.py similarity index 100% rename from twiml/voice/enqueue/enqueue-2/enqueue-2.8.x.py rename to twiml/voice/enqueue/enqueue-2/enqueue-2.9.x.py diff --git a/twiml/voice/gather/gather-1/gather-1.8.x.py b/twiml/voice/gather/gather-1/gather-1.9.x.py similarity index 100% rename from twiml/voice/gather/gather-1/gather-1.8.x.py rename to twiml/voice/gather/gather-1/gather-1.9.x.py diff --git a/twiml/voice/gather/gather-2/gather-2.8.x.py b/twiml/voice/gather/gather-2/gather-2.9.x.py similarity index 100% rename from twiml/voice/gather/gather-2/gather-2.8.x.py rename to twiml/voice/gather/gather-2/gather-2.9.x.py diff --git a/twiml/voice/gather/gather-3/gather-3.8.x.py b/twiml/voice/gather/gather-3/gather-3.9.x.py similarity index 100% rename from twiml/voice/gather/gather-3/gather-3.8.x.py rename to twiml/voice/gather/gather-3/gather-3.9.x.py diff --git a/twiml/voice/gather/gather-4/gather-4.8.x.py b/twiml/voice/gather/gather-4/gather-4.9.x.py similarity index 100% rename from twiml/voice/gather/gather-4/gather-4.8.x.py rename to twiml/voice/gather/gather-4/gather-4.9.x.py diff --git a/twiml/voice/gather/gather-5/gather-5.8.x.py b/twiml/voice/gather/gather-5/gather-5.9.x.py similarity index 100% rename from twiml/voice/gather/gather-5/gather-5.8.x.py rename to twiml/voice/gather/gather-5/gather-5.9.x.py diff --git a/twiml/voice/hangup/hangup-1/hangup-1.8.x.py b/twiml/voice/hangup/hangup-1/hangup-1.9.x.py similarity index 100% rename from twiml/voice/hangup/hangup-1/hangup-1.8.x.py rename to twiml/voice/hangup/hangup-1/hangup-1.9.x.py diff --git a/twiml/voice/leave/leave-1/leave-1.8.x.py b/twiml/voice/leave/leave-1/leave-1.9.x.py similarity index 100% rename from twiml/voice/leave/leave-1/leave-1.8.x.py rename to twiml/voice/leave/leave-1/leave-1.9.x.py diff --git a/twiml/voice/leave/leave-2/leave-2.8.x.py b/twiml/voice/leave/leave-2/leave-2.9.x.py similarity index 100% rename from twiml/voice/leave/leave-2/leave-2.8.x.py rename to twiml/voice/leave/leave-2/leave-2.9.x.py diff --git a/twiml/voice/leave/leave-3/leave-3.8.x.py b/twiml/voice/leave/leave-3/leave-3.9.x.py similarity index 100% rename from twiml/voice/leave/leave-3/leave-3.8.x.py rename to twiml/voice/leave/leave-3/leave-3.9.x.py diff --git a/twiml/voice/number/number-1/number-1.8.x.py b/twiml/voice/number/number-1/number-1.9.x.py similarity index 100% rename from twiml/voice/number/number-1/number-1.8.x.py rename to twiml/voice/number/number-1/number-1.9.x.py diff --git a/twiml/voice/number/number-2/number-2.8.x.py b/twiml/voice/number/number-2/number-2.9.x.py similarity index 100% rename from twiml/voice/number/number-2/number-2.8.x.py rename to twiml/voice/number/number-2/number-2.9.x.py diff --git a/twiml/voice/number/number-3/number-3.8.x.py b/twiml/voice/number/number-3/number-3.9.x.py similarity index 100% rename from twiml/voice/number/number-3/number-3.8.x.py rename to twiml/voice/number/number-3/number-3.9.x.py diff --git a/twiml/voice/number/number-4/number-4.8.x.py b/twiml/voice/number/number-4/number-4.9.x.py similarity index 100% rename from twiml/voice/number/number-4/number-4.8.x.py rename to twiml/voice/number/number-4/number-4.9.x.py diff --git a/twiml/voice/number/number-5/number-5.8.x.py b/twiml/voice/number/number-5/number-5.9.x.py similarity index 100% rename from twiml/voice/number/number-5/number-5.8.x.py rename to twiml/voice/number/number-5/number-5.9.x.py diff --git a/twiml/voice/parameter/parameter-1/parameter-1.8.x.py b/twiml/voice/parameter/parameter-1/parameter-1.9.x.py similarity index 100% rename from twiml/voice/parameter/parameter-1/parameter-1.8.x.py rename to twiml/voice/parameter/parameter-1/parameter-1.9.x.py diff --git a/twiml/voice/pause/pause-1/pause-1.8.x.py b/twiml/voice/pause/pause-1/pause-1.9.x.py similarity index 100% rename from twiml/voice/pause/pause-1/pause-1.8.x.py rename to twiml/voice/pause/pause-1/pause-1.9.x.py diff --git a/twiml/voice/pause/pause-2/pause-2.8.x.py b/twiml/voice/pause/pause-2/pause-2.9.x.py similarity index 100% rename from twiml/voice/pause/pause-2/pause-2.8.x.py rename to twiml/voice/pause/pause-2/pause-2.9.x.py diff --git a/twiml/voice/pay/pay-1/pay-1.8.x.py b/twiml/voice/pay/pay-1/pay-1.9.x.py similarity index 100% rename from twiml/voice/pay/pay-1/pay-1.8.x.py rename to twiml/voice/pay/pay-1/pay-1.9.x.py diff --git a/twiml/voice/pay/pay-2/pay-2.8.x.py b/twiml/voice/pay/pay-2/pay-2.9.x.py similarity index 100% rename from twiml/voice/pay/pay-2/pay-2.8.x.py rename to twiml/voice/pay/pay-2/pay-2.9.x.py diff --git a/twiml/voice/pay/pay-3/pay-3.8.x.py b/twiml/voice/pay/pay-3/pay-3.9.x.py similarity index 100% rename from twiml/voice/pay/pay-3/pay-3.8.x.py rename to twiml/voice/pay/pay-3/pay-3.9.x.py diff --git a/twiml/voice/pay/pay-4/pay-4.8.x.py b/twiml/voice/pay/pay-4/pay-4.9.x.py similarity index 100% rename from twiml/voice/pay/pay-4/pay-4.8.x.py rename to twiml/voice/pay/pay-4/pay-4.9.x.py diff --git a/twiml/voice/pay/pay-5/pay-5.8.x.py b/twiml/voice/pay/pay-5/pay-5.9.x.py similarity index 100% rename from twiml/voice/pay/pay-5/pay-5.8.x.py rename to twiml/voice/pay/pay-5/pay-5.9.x.py diff --git a/twiml/voice/pay/pay-6/pay-6.8.x.py b/twiml/voice/pay/pay-6/pay-6.9.x.py similarity index 100% rename from twiml/voice/pay/pay-6/pay-6.8.x.py rename to twiml/voice/pay/pay-6/pay-6.9.x.py diff --git a/twiml/voice/pay/pay-7/pay-7.8.x.py b/twiml/voice/pay/pay-7/pay-7.9.x.py similarity index 100% rename from twiml/voice/pay/pay-7/pay-7.8.x.py rename to twiml/voice/pay/pay-7/pay-7.9.x.py diff --git a/twiml/voice/pay/pay-8/pay-8.8.x.py b/twiml/voice/pay/pay-8/pay-8.9.x.py similarity index 100% rename from twiml/voice/pay/pay-8/pay-8.8.x.py rename to twiml/voice/pay/pay-8/pay-8.9.x.py diff --git a/twiml/voice/pay/pay-9/pay-9.8.x.py b/twiml/voice/pay/pay-9/pay-9.9.x.py similarity index 100% rename from twiml/voice/pay/pay-9/pay-9.8.x.py rename to twiml/voice/pay/pay-9/pay-9.9.x.py diff --git a/twiml/voice/pay/pay-charge-connector/pay-charge-connector.8.x.py b/twiml/voice/pay/pay-charge-connector/pay-charge-connector.9.x.py similarity index 100% rename from twiml/voice/pay/pay-charge-connector/pay-charge-connector.8.x.py rename to twiml/voice/pay/pay-charge-connector/pay-charge-connector.9.x.py diff --git a/twiml/voice/pay/pay-parameter/pay-parameter.8.x.py b/twiml/voice/pay/pay-parameter/pay-parameter.9.x.py similarity index 100% rename from twiml/voice/pay/pay-parameter/pay-parameter.8.x.py rename to twiml/voice/pay/pay-parameter/pay-parameter.9.x.py diff --git a/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.8.x.py b/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.9.x.py similarity index 100% rename from twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.8.x.py rename to twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.9.x.py diff --git a/twiml/voice/pay/pay-tokenize/pay-tokenize.8.x.py b/twiml/voice/pay/pay-tokenize/pay-tokenize.9.x.py similarity index 100% rename from twiml/voice/pay/pay-tokenize/pay-tokenize.8.x.py rename to twiml/voice/pay/pay-tokenize/pay-tokenize.9.x.py diff --git a/twiml/voice/pay/prompt/full-example-ach/full-example-ach.8.x.py b/twiml/voice/pay/prompt/full-example-ach/full-example-ach.9.x.py similarity index 100% rename from twiml/voice/pay/prompt/full-example-ach/full-example-ach.8.x.py rename to twiml/voice/pay/prompt/full-example-ach/full-example-ach.9.x.py diff --git a/twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.8.x.py b/twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.9.x.py similarity index 100% rename from twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.8.x.py rename to twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.9.x.py diff --git a/twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.8.x.py b/twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.9.x.py similarity index 100% rename from twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.8.x.py rename to twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.9.x.py diff --git a/twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.8.x.py b/twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.9.x.py similarity index 100% rename from twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.8.x.py rename to twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.9.x.py diff --git a/twiml/voice/play/play-1/play-1.8.x.py b/twiml/voice/play/play-1/play-1.9.x.py similarity index 100% rename from twiml/voice/play/play-1/play-1.8.x.py rename to twiml/voice/play/play-1/play-1.9.x.py diff --git a/twiml/voice/play/play-2/play-2.8.x.py b/twiml/voice/play/play-2/play-2.9.x.py similarity index 100% rename from twiml/voice/play/play-2/play-2.8.x.py rename to twiml/voice/play/play-2/play-2.9.x.py diff --git a/twiml/voice/play/play-3/play-3.8.x.py b/twiml/voice/play/play-3/play-3.9.x.py similarity index 100% rename from twiml/voice/play/play-3/play-3.8.x.py rename to twiml/voice/play/play-3/play-3.9.x.py diff --git a/twiml/voice/queue/queue-1/queue-1.8.x.py b/twiml/voice/queue/queue-1/queue-1.9.x.py similarity index 100% rename from twiml/voice/queue/queue-1/queue-1.8.x.py rename to twiml/voice/queue/queue-1/queue-1.9.x.py diff --git a/twiml/voice/queue/queue-2/queue-2.8.x.py b/twiml/voice/queue/queue-2/queue-2.9.x.py similarity index 100% rename from twiml/voice/queue/queue-2/queue-2.8.x.py rename to twiml/voice/queue/queue-2/queue-2.9.x.py diff --git a/twiml/voice/record/record-1/record-1.8.x.py b/twiml/voice/record/record-1/record-1.9.x.py similarity index 100% rename from twiml/voice/record/record-1/record-1.8.x.py rename to twiml/voice/record/record-1/record-1.9.x.py diff --git a/twiml/voice/record/record-2/record-2.8.x.py b/twiml/voice/record/record-2/record-2.9.x.py similarity index 100% rename from twiml/voice/record/record-2/record-2.8.x.py rename to twiml/voice/record/record-2/record-2.9.x.py diff --git a/twiml/voice/record/record-3/record-3.8.x.py b/twiml/voice/record/record-3/record-3.9.x.py similarity index 100% rename from twiml/voice/record/record-3/record-3.8.x.py rename to twiml/voice/record/record-3/record-3.9.x.py diff --git a/twiml/voice/record/record-4/record-4.8.x.py b/twiml/voice/record/record-4/record-4.9.x.py similarity index 100% rename from twiml/voice/record/record-4/record-4.8.x.py rename to twiml/voice/record/record-4/record-4.9.x.py diff --git a/twiml/voice/redirect/redirect-1/redirect-1.8.x.py b/twiml/voice/redirect/redirect-1/redirect-1.9.x.py similarity index 100% rename from twiml/voice/redirect/redirect-1/redirect-1.8.x.py rename to twiml/voice/redirect/redirect-1/redirect-1.9.x.py diff --git a/twiml/voice/redirect/redirect-2/redirect-2.8.x.py b/twiml/voice/redirect/redirect-2/redirect-2.9.x.py similarity index 100% rename from twiml/voice/redirect/redirect-2/redirect-2.8.x.py rename to twiml/voice/redirect/redirect-2/redirect-2.9.x.py diff --git a/twiml/voice/redirect/redirect-3/redirect-3.8.x.py b/twiml/voice/redirect/redirect-3/redirect-3.9.x.py similarity index 100% rename from twiml/voice/redirect/redirect-3/redirect-3.8.x.py rename to twiml/voice/redirect/redirect-3/redirect-3.9.x.py diff --git a/twiml/voice/refer/refer-1/refer-1.8.x.py b/twiml/voice/refer/refer-1/refer-1.9.x.py similarity index 100% rename from twiml/voice/refer/refer-1/refer-1.8.x.py rename to twiml/voice/refer/refer-1/refer-1.9.x.py diff --git a/twiml/voice/refer/refer-2/refer-2.8.x.py b/twiml/voice/refer/refer-2/refer-2.9.x.py similarity index 100% rename from twiml/voice/refer/refer-2/refer-2.8.x.py rename to twiml/voice/refer/refer-2/refer-2.9.x.py diff --git a/twiml/voice/refer/refer-3/refer-3.8.x.py b/twiml/voice/refer/refer-3/refer-3.9.x.py similarity index 100% rename from twiml/voice/refer/refer-3/refer-3.8.x.py rename to twiml/voice/refer/refer-3/refer-3.9.x.py diff --git a/twiml/voice/refer/refer-4/refer-4.8.x.py b/twiml/voice/refer/refer-4/refer-4.9.x.py similarity index 100% rename from twiml/voice/refer/refer-4/refer-4.8.x.py rename to twiml/voice/refer/refer-4/refer-4.9.x.py diff --git a/twiml/voice/reject/reject-1/reject-1.8.x.py b/twiml/voice/reject/reject-1/reject-1.9.x.py similarity index 100% rename from twiml/voice/reject/reject-1/reject-1.8.x.py rename to twiml/voice/reject/reject-1/reject-1.9.x.py diff --git a/twiml/voice/reject/reject-2/reject-2.8.x.py b/twiml/voice/reject/reject-2/reject-2.9.x.py similarity index 100% rename from twiml/voice/reject/reject-2/reject-2.8.x.py rename to twiml/voice/reject/reject-2/reject-2.9.x.py diff --git a/twiml/voice/say/say-basic-usage/say-basic-usage.8.x.py b/twiml/voice/say/say-basic-usage/say-basic-usage.9.x.py similarity index 100% rename from twiml/voice/say/say-basic-usage/say-basic-usage.8.x.py rename to twiml/voice/say/say-basic-usage/say-basic-usage.9.x.py diff --git a/twiml/voice/say/say-language/say-language.8.x.py b/twiml/voice/say/say-language/say-language.9.x.py similarity index 100% rename from twiml/voice/say/say-language/say-language.8.x.py rename to twiml/voice/say/say-language/say-language.9.x.py diff --git a/twiml/voice/say/say-loop/say-loop.8.x.py b/twiml/voice/say/say-loop/say-loop.9.x.py similarity index 100% rename from twiml/voice/say/say-loop/say-loop.8.x.py rename to twiml/voice/say/say-loop/say-loop.9.x.py diff --git a/twiml/voice/say/say-voice/say-voice.8.x.py b/twiml/voice/say/say-voice/say-voice.9.x.py similarity index 100% rename from twiml/voice/say/say-voice/say-voice.8.x.py rename to twiml/voice/say/say-voice/say-voice.9.x.py diff --git a/twiml/voice/say/ssml/ssml.8.x.py b/twiml/voice/say/ssml/ssml.9.x.py similarity index 100% rename from twiml/voice/say/ssml/ssml.8.x.py rename to twiml/voice/say/ssml/ssml.9.x.py diff --git a/twiml/voice/sim/sim-1/sim-1.8.x.py b/twiml/voice/sim/sim-1/sim-1.9.x.py similarity index 100% rename from twiml/voice/sim/sim-1/sim-1.8.x.py rename to twiml/voice/sim/sim-1/sim-1.9.x.py diff --git a/twiml/voice/sim/sim-2/sim-2.8.x.py b/twiml/voice/sim/sim-2/sim-2.9.x.py similarity index 100% rename from twiml/voice/sim/sim-2/sim-2.8.x.py rename to twiml/voice/sim/sim-2/sim-2.9.x.py diff --git a/twiml/voice/sip/sip-1/sip-1.8.x.py b/twiml/voice/sip/sip-1/sip-1.9.x.py similarity index 100% rename from twiml/voice/sip/sip-1/sip-1.8.x.py rename to twiml/voice/sip/sip-1/sip-1.9.x.py diff --git a/twiml/voice/sip/sip-10/sip-10.8.x.py b/twiml/voice/sip/sip-10/sip-10.9.x.py similarity index 100% rename from twiml/voice/sip/sip-10/sip-10.8.x.py rename to twiml/voice/sip/sip-10/sip-10.9.x.py diff --git a/twiml/voice/sip/sip-11/sip-11.8.x.py b/twiml/voice/sip/sip-11/sip-11.9.x.py similarity index 100% rename from twiml/voice/sip/sip-11/sip-11.8.x.py rename to twiml/voice/sip/sip-11/sip-11.9.x.py diff --git a/twiml/voice/sip/sip-2/sip-2.8.x.py b/twiml/voice/sip/sip-2/sip-2.9.x.py similarity index 100% rename from twiml/voice/sip/sip-2/sip-2.8.x.py rename to twiml/voice/sip/sip-2/sip-2.9.x.py diff --git a/twiml/voice/sip/sip-3/sip-3.8.x.py b/twiml/voice/sip/sip-3/sip-3.9.x.py similarity index 100% rename from twiml/voice/sip/sip-3/sip-3.8.x.py rename to twiml/voice/sip/sip-3/sip-3.9.x.py diff --git a/twiml/voice/sip/sip-4/sip-4.8.x.py b/twiml/voice/sip/sip-4/sip-4.9.x.py similarity index 100% rename from twiml/voice/sip/sip-4/sip-4.8.x.py rename to twiml/voice/sip/sip-4/sip-4.9.x.py diff --git a/twiml/voice/sip/sip-5/sip-5.8.x.py b/twiml/voice/sip/sip-5/sip-5.9.x.py similarity index 100% rename from twiml/voice/sip/sip-5/sip-5.8.x.py rename to twiml/voice/sip/sip-5/sip-5.9.x.py diff --git a/twiml/voice/sip/sip-6/sip-6.8.x.py b/twiml/voice/sip/sip-6/sip-6.9.x.py similarity index 100% rename from twiml/voice/sip/sip-6/sip-6.8.x.py rename to twiml/voice/sip/sip-6/sip-6.9.x.py diff --git a/twiml/voice/sip/sip-7/sip-7.8.x.py b/twiml/voice/sip/sip-7/sip-7.9.x.py similarity index 100% rename from twiml/voice/sip/sip-7/sip-7.8.x.py rename to twiml/voice/sip/sip-7/sip-7.9.x.py diff --git a/twiml/voice/sip/sip-8/sip-8.8.x.py b/twiml/voice/sip/sip-8/sip-8.9.x.py similarity index 100% rename from twiml/voice/sip/sip-8/sip-8.8.x.py rename to twiml/voice/sip/sip-8/sip-8.9.x.py diff --git a/twiml/voice/sip/sip-9/sip-9.8.x.py b/twiml/voice/sip/sip-9/sip-9.9.x.py similarity index 100% rename from twiml/voice/sip/sip-9/sip-9.8.x.py rename to twiml/voice/sip/sip-9/sip-9.9.x.py diff --git a/twiml/voice/siprec/siprec-1/siprec-1.8.x.py b/twiml/voice/siprec/siprec-1/siprec-1.9.x.py similarity index 100% rename from twiml/voice/siprec/siprec-1/siprec-1.8.x.py rename to twiml/voice/siprec/siprec-1/siprec-1.9.x.py diff --git a/twiml/voice/sms/sms-1/sms-1.8.x.py b/twiml/voice/sms/sms-1/sms-1.9.x.py similarity index 100% rename from twiml/voice/sms/sms-1/sms-1.8.x.py rename to twiml/voice/sms/sms-1/sms-1.9.x.py diff --git a/twiml/voice/sms/sms-2/sms-2.8.x.py b/twiml/voice/sms/sms-2/sms-2.9.x.py similarity index 100% rename from twiml/voice/sms/sms-2/sms-2.8.x.py rename to twiml/voice/sms/sms-2/sms-2.9.x.py diff --git a/twiml/voice/sms/sms-3/sms-3.8.x.py b/twiml/voice/sms/sms-3/sms-3.9.x.py similarity index 100% rename from twiml/voice/sms/sms-3/sms-3.8.x.py rename to twiml/voice/sms/sms-3/sms-3.9.x.py diff --git a/twiml/voice/sms/sms-4/sms-4.8.x.py b/twiml/voice/sms/sms-4/sms-4.9.x.py similarity index 100% rename from twiml/voice/sms/sms-4/sms-4.8.x.py rename to twiml/voice/sms/sms-4/sms-4.9.x.py diff --git a/twiml/voice/stream/stream-1/stream-1.8.x.py b/twiml/voice/stream/stream-1/stream-1.9.x.py similarity index 100% rename from twiml/voice/stream/stream-1/stream-1.8.x.py rename to twiml/voice/stream/stream-1/stream-1.9.x.py diff --git a/twiml/voice/stream/stream-2/stream-2.8.x.py b/twiml/voice/stream/stream-2/stream-2.9.x.py similarity index 100% rename from twiml/voice/stream/stream-2/stream-2.8.x.py rename to twiml/voice/stream/stream-2/stream-2.9.x.py diff --git a/twiml/voice/your-response/your-response-1/your-response-1.8.x.py b/twiml/voice/your-response/your-response-1/your-response-1.9.x.py similarity index 100% rename from twiml/voice/your-response/your-response-1/your-response-1.8.x.py rename to twiml/voice/your-response/your-response-1/your-response-1.9.x.py diff --git a/twiml/voice/your-response/your-response-2/your-response-2.8.x.py b/twiml/voice/your-response/your-response-2/your-response-2.9.x.py similarity index 100% rename from twiml/voice/your-response/your-response-2/your-response-2.8.x.py rename to twiml/voice/your-response/your-response-2/your-response-2.9.x.py diff --git a/verify/verifications/approve-verification/approve-verification.8.x.py b/verify/verifications/approve-verification/approve-verification.9.x.py similarity index 100% rename from verify/verifications/approve-verification/approve-verification.8.x.py rename to verify/verifications/approve-verification/approve-verification.9.x.py diff --git a/video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.8.x.py b/video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.9.x.py similarity index 100% rename from video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.8.x.py rename to video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.9.x.py diff --git a/video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.8.x.py b/video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.9.x.py similarity index 100% rename from video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.8.x.py rename to video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.9.x.py diff --git a/video/rest/compositionhooks/delete-hook/delete-hook.8.x.py b/video/rest/compositionhooks/delete-hook/delete-hook.9.x.py similarity index 100% rename from video/rest/compositionhooks/delete-hook/delete-hook.8.x.py rename to video/rest/compositionhooks/delete-hook/delete-hook.9.x.py diff --git a/video/rest/compositionhooks/get-hook/get-hook.8.x.py b/video/rest/compositionhooks/get-hook/get-hook.9.x.py similarity index 100% rename from video/rest/compositionhooks/get-hook/get-hook.8.x.py rename to video/rest/compositionhooks/get-hook/get-hook.9.x.py diff --git a/video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.8.x.py b/video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.9.x.py similarity index 100% rename from video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.8.x.py rename to video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.9.x.py diff --git a/video/rest/compositionhooks/list-hooks/list-hooks.8.x.py b/video/rest/compositionhooks/list-hooks/list-hooks.9.x.py similarity index 100% rename from video/rest/compositionhooks/list-hooks/list-hooks.8.x.py rename to video/rest/compositionhooks/list-hooks/list-hooks.9.x.py diff --git a/video/rest/compositionhooks/update-hook/update-hook.8.x.py b/video/rest/compositionhooks/update-hook/update-hook.9.x.py similarity index 100% rename from video/rest/compositionhooks/update-hook/update-hook.8.x.py rename to video/rest/compositionhooks/update-hook/update-hook.9.x.py diff --git a/video/rest/compositions/compose-chess/compose-chess.8.x.py b/video/rest/compositions/compose-chess/compose-chess.9.x.py similarity index 100% rename from video/rest/compositions/compose-chess/compose-chess.8.x.py rename to video/rest/compositions/compose-chess/compose-chess.9.x.py diff --git a/video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.8.x.py b/video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.9.x.py similarity index 100% rename from video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.8.x.py rename to video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.9.x.py diff --git a/video/rest/compositions/compose-main-with-row/compose-main-with-row.8.x.py b/video/rest/compositions/compose-main-with-row/compose-main-with-row.9.x.py similarity index 100% rename from video/rest/compositions/compose-main-with-row/compose-main-with-row.8.x.py rename to video/rest/compositions/compose-main-with-row/compose-main-with-row.9.x.py diff --git a/video/rest/compositions/compose-mosaic/compose-mosaic.8.x.py b/video/rest/compositions/compose-mosaic/compose-mosaic.9.x.py similarity index 100% rename from video/rest/compositions/compose-mosaic/compose-mosaic.8.x.py rename to video/rest/compositions/compose-mosaic/compose-mosaic.9.x.py diff --git a/video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-with-all-audios.8.x.py b/video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-with-all-audios.9.x.py similarity index 100% rename from video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-with-all-audios.8.x.py rename to video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-with-all-audios.9.x.py diff --git a/video/rest/compositions/compose-participant/compose-participant.8.x.py b/video/rest/compositions/compose-participant/compose-participant.9.x.py similarity index 100% rename from video/rest/compositions/compose-participant/compose-participant.8.x.py rename to video/rest/compositions/compose-participant/compose-participant.9.x.py diff --git a/video/rest/compositions/compose-pip/compose-pip.8.x.py b/video/rest/compositions/compose-pip/compose-pip.9.x.py similarity index 100% rename from video/rest/compositions/compose-pip/compose-pip.8.x.py rename to video/rest/compositions/compose-pip/compose-pip.9.x.py diff --git a/video/rest/compositions/compose-room/compose-room.8.x.py b/video/rest/compositions/compose-room/compose-room.9.x.py similarity index 100% rename from video/rest/compositions/compose-room/compose-room.8.x.py rename to video/rest/compositions/compose-room/compose-room.9.x.py diff --git a/video/rest/compositions/compose-set-as-row/compose-set-as-row.8.x.py b/video/rest/compositions/compose-set-as-row/compose-set-as-row.9.x.py similarity index 100% rename from video/rest/compositions/compose-set-as-row/compose-set-as-row.8.x.py rename to video/rest/compositions/compose-set-as-row/compose-set-as-row.9.x.py diff --git a/video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.8.x.py b/video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.9.x.py similarity index 100% rename from video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.8.x.py rename to video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.9.x.py diff --git a/video/rest/compositions/delete-composition/delete-composition.8.x.py b/video/rest/compositions/delete-composition/delete-composition.9.x.py similarity index 100% rename from video/rest/compositions/delete-composition/delete-composition.8.x.py rename to video/rest/compositions/delete-composition/delete-composition.9.x.py diff --git a/video/rest/compositions/get-completed-compositions/get-completed-compositions.8.x.py b/video/rest/compositions/get-completed-compositions/get-completed-compositions.9.x.py similarity index 100% rename from video/rest/compositions/get-completed-compositions/get-completed-compositions.8.x.py rename to video/rest/compositions/get-completed-compositions/get-completed-compositions.9.x.py diff --git a/video/rest/compositions/get-composition-media-file/get-composition-media-file.8.x.py b/video/rest/compositions/get-composition-media-file/get-composition-media-file.9.x.py similarity index 100% rename from video/rest/compositions/get-composition-media-file/get-composition-media-file.8.x.py rename to video/rest/compositions/get-composition-media-file/get-composition-media-file.9.x.py diff --git a/video/rest/compositions/get-composition/get-composition.8.x.py b/video/rest/compositions/get-composition/get-composition.9.x.py similarity index 100% rename from video/rest/compositions/get-composition/get-composition.8.x.py rename to video/rest/compositions/get-composition/get-composition.9.x.py diff --git a/video/rest/compositions/get-room-compositions/get-room-compositions.8.x.py b/video/rest/compositions/get-room-compositions/get-room-compositions.9.x.py similarity index 100% rename from video/rest/compositions/get-room-compositions/get-room-compositions.8.x.py rename to video/rest/compositions/get-room-compositions/get-room-compositions.9.x.py diff --git a/video/rest/compositions/transcode-audio-recording/transcode-audio-recording.8.x.py b/video/rest/compositions/transcode-audio-recording/transcode-audio-recording.9.x.py similarity index 100% rename from video/rest/compositions/transcode-audio-recording/transcode-audio-recording.8.x.py rename to video/rest/compositions/transcode-audio-recording/transcode-audio-recording.9.x.py diff --git a/video/rest/compositions/transcode-video-recording/transcode-video-recording.8.x.py b/video/rest/compositions/transcode-video-recording/transcode-video-recording.9.x.py similarity index 100% rename from video/rest/compositions/transcode-video-recording/transcode-video-recording.8.x.py rename to video/rest/compositions/transcode-video-recording/transcode-video-recording.9.x.py diff --git a/video/rest/recordings/delete-recording/delete-recording.8.x.py b/video/rest/recordings/delete-recording/delete-recording.9.x.py similarity index 100% rename from video/rest/recordings/delete-recording/delete-recording.8.x.py rename to video/rest/recordings/delete-recording/delete-recording.9.x.py diff --git a/video/rest/recordings/list-deleted-recordings/list-deleted-recordings.8.x.py b/video/rest/recordings/list-deleted-recordings/list-deleted-recordings.9.x.py similarity index 100% rename from video/rest/recordings/list-deleted-recordings/list-deleted-recordings.8.x.py rename to video/rest/recordings/list-deleted-recordings/list-deleted-recordings.9.x.py diff --git a/video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.8.x.py b/video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.9.x.py similarity index 100% rename from video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.8.x.py rename to video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.9.x.py diff --git a/video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.8.x.py b/video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.9.x.py similarity index 100% rename from video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.8.x.py rename to video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.9.x.py diff --git a/video/rest/recordings/list-recordings-for-room/list-recordings-for-room.8.x.py b/video/rest/recordings/list-recordings-for-room/list-recordings-for-room.9.x.py similarity index 100% rename from video/rest/recordings/list-recordings-for-room/list-recordings-for-room.8.x.py rename to video/rest/recordings/list-recordings-for-room/list-recordings-for-room.9.x.py diff --git a/video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.8.x.py b/video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.9.x.py similarity index 100% rename from video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.8.x.py rename to video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.9.x.py diff --git a/video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.8.x.py b/video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.9.x.py similarity index 100% rename from video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.8.x.py rename to video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.9.x.py diff --git a/video/rest/rooms/create-group-room-with-h264/create-group-room.8.x.py b/video/rest/rooms/create-group-room-with-h264/create-group-room.9.x.py similarity index 100% rename from video/rest/rooms/create-group-room-with-h264/create-group-room.8.x.py rename to video/rest/rooms/create-group-room-with-h264/create-group-room.9.x.py diff --git a/video/rest/rooms/create-group-room/create-group-room.8.x.py b/video/rest/rooms/create-group-room/create-group-room.9.x.py similarity index 100% rename from video/rest/rooms/create-group-room/create-group-room.8.x.py rename to video/rest/rooms/create-group-room/create-group-room.9.x.py diff --git a/video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.8.x.py b/video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.9.x.py similarity index 100% rename from video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.8.x.py rename to video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.9.x.py diff --git a/video/rest/rooms/create-room/create-room.8.x.py b/video/rest/rooms/create-room/create-room.9.x.py similarity index 100% rename from video/rest/rooms/create-room/create-room.8.x.py rename to video/rest/rooms/create-room/create-room.9.x.py diff --git a/video/rest/rooms/list-room-recordings/list-room-recordings.8.x.py b/video/rest/rooms/list-room-recordings/list-room-recordings.9.x.py similarity index 100% rename from video/rest/rooms/list-room-recordings/list-room-recordings.8.x.py rename to video/rest/rooms/list-room-recordings/list-room-recordings.9.x.py diff --git a/video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.8.x.py b/video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.9.x.py similarity index 100% rename from video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.8.x.py rename to video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.9.x.py diff --git a/video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.8.x.py b/video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.9.x.py similarity index 100% rename from video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.8.x.py rename to video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.9.x.py diff --git a/video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.8.x.py b/video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.9.x.py similarity index 100% rename from video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.8.x.py rename to video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.9.x.py diff --git a/video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.8.x.py b/video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.9.x.py similarity index 100% rename from video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.8.x.py rename to video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.9.x.py diff --git a/video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.8.x.py b/video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.9.x.py similarity index 100% rename from video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.8.x.py rename to video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.9.x.py diff --git a/video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.8.x.py b/video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.9.x.py similarity index 100% rename from video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.8.x.py rename to video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.9.x.py diff --git a/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.8.x.py b/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.9.x.py similarity index 100% rename from video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.8.x.py rename to video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.9.x.py diff --git a/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.8.x.py b/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.9.x.py similarity index 100% rename from video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.8.x.py rename to video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.9.x.py diff --git a/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.8.x.py b/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.9.x.py similarity index 100% rename from video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.8.x.py rename to video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.9.x.py diff --git a/video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.8.x.py b/video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.9.x.py similarity index 100% rename from video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.8.x.py rename to video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.9.x.py diff --git a/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.8.x.py b/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.9.x.py similarity index 100% rename from video/rest/rooms/recording-rules-start-all/recording-rules-start-all.8.x.py rename to video/rest/rooms/recording-rules-start-all/recording-rules-start-all.9.x.py diff --git a/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.8.x.py b/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.9.x.py similarity index 100% rename from video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.8.x.py rename to video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.9.x.py diff --git a/video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.8.x.py b/video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.9.x.py similarity index 100% rename from video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.8.x.py rename to video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.9.x.py diff --git a/video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.8.x.py b/video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.9.x.py similarity index 100% rename from video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.8.x.py rename to video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.9.x.py diff --git a/video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.8.x.py b/video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.9.x.py similarity index 100% rename from video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.8.x.py rename to video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.9.x.py diff --git a/video/rest/rooms/retrieve-room-recording/retrieve-room-recording.8.x.py b/video/rest/rooms/retrieve-room-recording/retrieve-room-recording.9.x.py similarity index 100% rename from video/rest/rooms/retrieve-room-recording/retrieve-room-recording.8.x.py rename to video/rest/rooms/retrieve-room-recording/retrieve-room-recording.9.x.py diff --git a/video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.8.x.py b/video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.9.x.py similarity index 100% rename from video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.8.x.py rename to video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.9.x.py diff --git a/video/users/token-generation-server-rooms/token-generation-server.8.x.py b/video/users/token-generation-server-rooms/token-generation-server.9.x.py similarity index 100% rename from video/users/token-generation-server-rooms/token-generation-server.8.x.py rename to video/users/token-generation-server-rooms/token-generation-server.9.x.py diff --git a/video/users/token-generation-server/token-generation-server.8.x.py b/video/users/token-generation-server/token-generation-server.9.x.py similarity index 100% rename from video/users/token-generation-server/token-generation-server.8.x.py rename to video/users/token-generation-server/token-generation-server.9.x.py diff --git a/voice/queueing/agent/queue-agent.8.x.py b/voice/queueing/agent/queue-agent.9.x.py similarity index 100% rename from voice/queueing/agent/queue-agent.8.x.py rename to voice/queueing/agent/queue-agent.9.x.py diff --git a/voice/queueing/caller/queue-caller.8.x.py b/voice/queueing/caller/queue-caller.9.x.py similarity index 100% rename from voice/queueing/caller/queue-caller.8.x.py rename to voice/queueing/caller/queue-caller.9.x.py diff --git a/voice/queueing/redirect/queue-redirect.8.x.py b/voice/queueing/redirect/queue-redirect.9.x.py similarity index 100% rename from voice/queueing/redirect/queue-redirect.8.x.py rename to voice/queueing/redirect/queue-redirect.9.x.py diff --git a/voice/specify-edge/specify-edge.8.x.py b/voice/specify-edge/specify-edge.9.x.py similarity index 100% rename from voice/specify-edge/specify-edge.8.x.py rename to voice/specify-edge/specify-edge.9.x.py diff --git a/wireless/commands/create-binary-example-1/create-binary-example-1.8.x.py b/wireless/commands/create-binary-example-1/create-binary-example-1.9.x.py similarity index 100% rename from wireless/commands/create-binary-example-1/create-binary-example-1.8.x.py rename to wireless/commands/create-binary-example-1/create-binary-example-1.9.x.py diff --git a/wireless/commands/create-text-example-1/create-text-example-1.8.x.py b/wireless/commands/create-text-example-1/create-text-example-1.9.x.py similarity index 100% rename from wireless/commands/create-text-example-1/create-text-example-1.8.x.py rename to wireless/commands/create-text-example-1/create-text-example-1.9.x.py diff --git a/wireless/commands/instance-get-example-1/instance-get-example-1.8.x.py b/wireless/commands/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from wireless/commands/instance-get-example-1/instance-get-example-1.8.x.py rename to wireless/commands/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/wireless/commands/list-example-1/list-example-1.8.x.py b/wireless/commands/list-example-1/list-example-1.9.x.py similarity index 100% rename from wireless/commands/list-example-1/list-example-1.8.x.py rename to wireless/commands/list-example-1/list-example-1.9.x.py diff --git a/wireless/rateplans/create-example-1/create-example-1.8.x.py b/wireless/rateplans/create-example-1/create-example-1.9.x.py similarity index 100% rename from wireless/rateplans/create-example-1/create-example-1.8.x.py rename to wireless/rateplans/create-example-1/create-example-1.9.x.py diff --git a/wireless/rateplans/instance-delete-example-1/delete-example-1.8.x.py b/wireless/rateplans/instance-delete-example-1/delete-example-1.9.x.py similarity index 100% rename from wireless/rateplans/instance-delete-example-1/delete-example-1.8.x.py rename to wireless/rateplans/instance-delete-example-1/delete-example-1.9.x.py diff --git a/wireless/rateplans/instance-get-example-1/instance-get-example-1.8.x.py b/wireless/rateplans/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from wireless/rateplans/instance-get-example-1/instance-get-example-1.8.x.py rename to wireless/rateplans/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/wireless/rateplans/instance-get-example-2/instance-get-example-2.8.x.py b/wireless/rateplans/instance-get-example-2/instance-get-example-2.9.x.py similarity index 100% rename from wireless/rateplans/instance-get-example-2/instance-get-example-2.8.x.py rename to wireless/rateplans/instance-get-example-2/instance-get-example-2.9.x.py diff --git a/wireless/rateplans/list-example-1/list-example-1.8.x.py b/wireless/rateplans/list-example-1/list-example-1.9.x.py similarity index 100% rename from wireless/rateplans/list-example-1/list-example-1.8.x.py rename to wireless/rateplans/list-example-1/list-example-1.9.x.py diff --git a/wireless/sims-data-session/list-example-1/list-example-1.8.x.py b/wireless/sims-data-session/list-example-1/list-example-1.9.x.py similarity index 100% rename from wireless/sims-data-session/list-example-1/list-example-1.8.x.py rename to wireless/sims-data-session/list-example-1/list-example-1.9.x.py diff --git a/wireless/sims-usage-record/list-example-1/list-example-1.8.x.py b/wireless/sims-usage-record/list-example-1/list-example-1.9.x.py similarity index 100% rename from wireless/sims-usage-record/list-example-1/list-example-1.8.x.py rename to wireless/sims-usage-record/list-example-1/list-example-1.9.x.py diff --git a/wireless/sims/instance-get-example-1/instance-get-example-1.8.x.py b/wireless/sims/instance-get-example-1/instance-get-example-1.9.x.py similarity index 100% rename from wireless/sims/instance-get-example-1/instance-get-example-1.8.x.py rename to wireless/sims/instance-get-example-1/instance-get-example-1.9.x.py diff --git a/wireless/sims/instance-get-example-2/instance-get-example-2.8.x.py b/wireless/sims/instance-get-example-2/instance-get-example-2.9.x.py similarity index 100% rename from wireless/sims/instance-get-example-2/instance-get-example-2.8.x.py rename to wireless/sims/instance-get-example-2/instance-get-example-2.9.x.py diff --git a/wireless/sims/instance-post-example-1/instance-post-example-1.8.x.py b/wireless/sims/instance-post-example-1/instance-post-example-1.9.x.py similarity index 100% rename from wireless/sims/instance-post-example-1/instance-post-example-1.8.x.py rename to wireless/sims/instance-post-example-1/instance-post-example-1.9.x.py diff --git a/wireless/sims/list-example-1/list-example-1.8.x.py b/wireless/sims/list-example-1/list-example-1.9.x.py similarity index 100% rename from wireless/sims/list-example-1/list-example-1.8.x.py rename to wireless/sims/list-example-1/list-example-1.9.x.py From fd12ce625262805240affb52e5c72c7ef75425e6 Mon Sep 17 00:00:00 2001 From: Shubham Date: Thu, 14 Mar 2024 00:23:33 +0530 Subject: [PATCH 05/95] chore: updated node version to 5.x (#1050) * chore: bump node version * chore: Added renamed files * chore: removed utility function --- README.md | 2 +- ....4.x.js => payfone-tcpa-compliance.5.x.js} | 0 api-auth/{api-auth.4.x.js => api-auth.5.x.js} | 0 ...y-token.4.x.js => capability-token.5.x.js} | 0 ...4.x.js => capability-token-expires.5.x.js} | 0 ...y-token.4.x.js => capability-token.5.x.js} | 0 ...y-token.4.x.js => capability-token.5.x.js} | 0 ...y-token.4.x.js => capability-token.5.x.js} | 0 ...nt.4.x.js => response-twiml-client.5.x.js} | 0 ...dial.4.x.js => response-twiml-dial.5.x.js} | 0 ...nse-twiml.4.x.js => response-twiml.5.x.js} | 0 ...document.4.x.js => create-document.5.x.js} | 0 ...document.4.x.js => update-document.5.x.js} | 0 ...icate.4.x.js => create-certificate.5.x.js} | 0 ...icate.4.x.js => delete-certificate.5.x.js} | 0 ...icates.4.x.js => list-certificates.5.x.js} | 0 ...ate.4.x.js => retrieve-certificate.5.x.js} | 0 ...icate.4.x.js => update-certificate.5.x.js} | 0 ...oyment.4.x.js => create-deployment.5.x.js} | 0 ...oyment.4.x.js => delete-deployment.5.x.js} | 0 ...oyments.4.x.js => list-deployments.5.x.js} | 0 ...ment.4.x.js => retrieve-deployment.5.x.js} | 0 ...oyment.4.x.js => update-deployment.5.x.js} | 0 ...ate-device.4.x.js => create-device.5.x.js} | 0 ...ete-device.4.x.js => delete-device.5.x.js} | 0 ...ist-devices.4.x.js => list-devices.5.x.js} | 0 ...e-device.4.x.js => retrieve-device.5.x.js} | 0 ...ate-device.4.x.js => update-device.5.x.js} | 0 ...reate-fleet.4.x.js => create-fleet.5.x.js} | 0 ...elete-fleet.4.x.js => delete-fleet.5.x.js} | 0 ...{list-fleets.4.x.js => list-fleets.5.x.js} | 0 ...eve-fleet.4.x.js => retrieve-fleet.5.x.js} | 0 ...pdate-fleet.4.x.js => update-fleet.5.x.js} | 0 .../{create-key.4.x.js => create-key.5.x.js} | 0 .../{delete-key.4.x.js => delete-key.5.x.js} | 0 .../{list-key.4.x.js => list-key.5.x.js} | 0 ...etrieve-key.4.x.js => retrieve-key.5.x.js} | 0 .../{update-key.4.x.js => update-key.5.x.js} | 0 ...ic-receive.4.x.js => basic-receive.5.x.js} | 0 .../{basic-send.4.x.js => basic-send.5.x.js} | 0 ...ple.4.x.js => instance-get-example.5.x.js} | 0 ...le.4.x.js => instance-post-example.5.x.js} | 0 ...example.4.x.js => list-get-example.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-2.4.x.js => example-2.5.x.js} | 0 .../{example-3.4.x.js => example-3.5.x.js} | 0 ...e-function.4.x.js => joke-function.5.x.js} | 0 ...-function.4.x.js => jokes-function.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-2.4.x.js => example-2.5.x.js} | 0 ...nce.4.x.js => moderated-conference.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 ....js => lookup-get-addon-examples-1.5.x.js} | 0 ...x.js => lookup-get-addon-payfone-1.5.x.js} | 0 ...x.js => lookup-get-basic-example-1.5.x.js} | 0 ...x.js => lookup-get-basic-example-2.5.x.js} | 0 ...lookup-get-carrier-cname-example-1.5.x.js} | 0 ...x.js => lookup-get-cname-example-1.5.x.js} | 0 ...x.js => lookup-international-basic.5.x.js} | 0 ...ic.4.x.js => lookup-national-basic.5.x.js} | 0 ... => get-media-recording-media-file.5.x.js} | 0 ...edia-recording-timed-metadata-file.5.x.js} | 0 ....js => link-shortening-domain-cert.5.x.js} | 0 ...-sms.4.x.js => link-shortening-sms.5.x.js} | 0 ...4.x.js => link-shortening-whatsapp.5.x.js} | 0 ...ha-add.4.x.js => service-alpha-add.5.x.js} | 0 ...ete.4.x.js => service-alpha-delete.5.x.js} | 0 ...ha-get.4.x.js => service-alpha-get.5.x.js} | 0 ...-list.4.x.js => service-alpha-list.5.x.js} | 0 ...ce-create.4.x.js => service-create.5.x.js} | 0 ...ce-delete.4.x.js => service-delete.5.x.js} | 0 ...{service-get.4.x.js => service-get.5.x.js} | 0 ...ervice-list.4.x.js => service-list.5.x.js} | 0 ....js => service-multiple-number-add.5.x.js} | 0 ...r-add.4.x.js => service-number-add.5.x.js} | 0 ...te.4.x.js => service-number-delete.5.x.js} | 0 ...r-get.4.x.js => service-number-get.5.x.js} | 0 ...list.4.x.js => service-number-list.5.x.js} | 0 ...dd.4.x.js => service-shortcode-add.5.x.js} | 0 ...4.x.js => service-shortcode-delete.5.x.js} | 0 ...et.4.x.js => service-shortcode-get.5.x.js} | 0 ...t.4.x.js => service-shortcode-list.5.x.js} | 0 ...ce-update.4.x.js => service-update.5.x.js} | 0 ...e.4.x.js => identity-match-example.5.x.js} | 0 ....4.x.js => create-an-evurl-example.5.x.js} | 0 ...s => retrieve-evurl-result-example.5.x.js} | 0 ....4.x.js => instance-delete-example.5.x.js} | 0 ...ple.4.x.js => instance-get-example.5.x.js} | 0 ...all.4.x.js => list-get-example-all.5.x.js} | 0 ...t-get-example-warnings-apr01-apr30.5.x.js} | 0 ... instance-get-example-phone-number.5.x.js} | 0 ...example-actorsid-resourcesid-error.5.x.js} | 0 ...js => list-get-example-date-filter.5.x.js} | 0 ...ist-get-example-resourcesid-filter.5.x.js} | 0 ...get-example-sourceipaddress-filter.5.x.js} | 0 ....x.js => create-binding-server-apn.5.x.js} | 0 ....x.js => create-binding-server-fcm.5.x.js} | 0 ...er.4.x.js => create-binding-server.5.x.js} | 0 ...on-2.4.x.js => send-notification-2.5.x.js} | 0 ...s => send-notification-segment-tag.5.x.js} | 0 ....x.js => send-notification-segment.5.x.js} | 0 ...cation.4.x.js => send-notification.5.x.js} | 0 ...e-binding.4.x.js => create-binding.5.x.js} | 0 ...e-binding.4.x.js => delete-binding.5.x.js} | 0 ...ist-binding.4.x.js => list-binding.5.x.js} | 0 ...binding.4.x.js => retrieve-binding.5.x.js} | 0 ...al.4.x.js => create-apn-credential.5.x.js} | 0 ...al.4.x.js => create-fcm-credential.5.x.js} | 0 ...al.4.x.js => create-gcm-credential.5.x.js} | 0 ...ential.4.x.js => delete-credential.5.x.js} | 0 ...edential.4.x.js => list-credential.5.x.js} | 0 ...tial.4.x.js => retrieve-credential.5.x.js} | 0 ...ential.4.x.js => update-credential.5.x.js} | 0 ...x.js => send-notification-detailed.5.x.js} | 0 ...js => send-notification-with-badge.5.x.js} | 0 ...cation.4.x.js => send-notification.5.x.js} | 0 ...s => send-passthrough-notification.5.x.js} | 0 ...ist-segment.4.x.js => list-segment.5.x.js} | 0 ...e-service.4.x.js => create-service.5.x.js} | 0 ...e-service.4.x.js => delete-service.5.x.js} | 0 ...ist-service.4.x.js => list-service.5.x.js} | 0 ...service.4.x.js => retrieve-service.5.x.js} | 0 ...e-service.4.x.js => update-service.5.x.js} | 0 ...ment.4.x.js => add-user-to-segment.5.x.js} | 0 ...{create-user.4.x.js => create-user.5.x.js} | 0 ...{delete-user.4.x.js => delete-user.5.x.js} | 0 ...ser.4.x.js => list-binding-of-user.5.x.js} | 0 .../{list-users.4.x.js => list-users.5.x.js} | 0 ...4.x.js => remove-user-from-segment.5.x.js} | 0 ...rieve-user.4.x.js => retrieve-user.5.x.js} | 0 ...e-binding.4.x.js => create-binding.5.x.js} | 0 ....js => send-notification-to-number.5.x.js} | 0 ...cation.4.x.js => send-notification.5.x.js} | 0 ...ry.4.x.js => get-messaging-country.5.x.js} | 0 ...4.x.js => get-phone-number-country.5.x.js} | 0 ...ountry.4.x.js => get-voice-country.5.x.js} | 0 ...ice-number-with-origination-number.5.x.js} | 0 ...-number.4.x.js => get-voice-number.5.x.js} | 0 ...4.x.js => list-messaging-countries.5.x.js} | 0 ....js => list-phone-number-countries.5.x.js} | 0 ...ies.4.x.js => list-voice-countries.5.x.js} | 0 ...-number.4.x.js => add-phone-number.5.x.js} | 0 ...ipant.4.x.js => create-participant.5.x.js} | 0 ...e-service.4.x.js => create-service.5.x.js} | 0 ...e-session.4.x.js => create-session.5.x.js} | 0 ...end-message.4.x.js => send-message.5.x.js} | 0 ....4.x.js => create_hello_world_task.5.x.js} | 0 ...x.js => create_hello_world_samples.5.x.js} | 0 ...ples.4.x.js => create_joke_samples.5.x.js} | 0 ...ke_task.4.x.js => create_joke_task.5.x.js} | 0 .../{query_task.4.x.js => query_task.5.x.js} | 0 rename-files.py | 24 ------------------- ...ple.4.x.js => ip-messaging-example.5.x.js} | 0 ...ple.4.x.js => ip-messaging-example.5.x.js} | 0 ...ive-example.4.x.js => live-example.5.x.js} | 0 ...ync-example.4.x.js => sync-example.5.x.js} | 0 ...eo-example.4.x.js => video-example.5.x.js} | 0 ...ce-example.4.x.js => voice-example.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-2.5.x.js} | 0 ....4.x.js => instance-post-example-3.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ....4.x.js => instance-create-example.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...js => list-dependent-pns-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...le-1.4.x.js => list-post-example-1.5.x.js} | 0 ...g-call-1.4.x.js => outgoing-call-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...le-1.4.x.js => list-post-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...js => local-get-advanced-example-1.5.x.js} | 0 ....x.js => local-get-basic-example-1.5.x.js} | 0 ....x.js => local-get-basic-example-2.5.x.js} | 0 ....x.js => local-get-basic-example-3.5.x.js} | 0 ....x.js => local-get-basic-example-4.5.x.js} | 0 ....x.js => local-get-basic-example-5.5.x.js} | 0 ....x.js => local-get-basic-example-6.5.x.js} | 0 ....x.js => local-get-basic-example-7.5.x.js} | 0 ....x.js => local-get-basic-example-8.5.x.js} | 0 ...e-1.4.x.js => mobile-get-example-1.5.x.js} | 0 ....4.x.js => toll-free-get-example-1.5.x.js} | 0 ....4.x.js => toll-free-get-example-2.5.x.js} | 0 ....4.x.js => toll-free-get-example-3.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ... summary-instance-delete-example-1.5.x.js} | 0 ... => summary-instance-get-example-1.5.x.js} | 0 ... => summary-instance-get-example-2.5.x.js} | 0 ....js => summary-list-post-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...ple-3.4.x.js => list-get-example-3.5.x.js} | 0 ...ple-4.4.x.js => list-get-example-4.5.x.js} | 0 ...ple-6.4.x.js => list-get-example-6.5.x.js} | 0 ...ple-7.4.x.js => list-get-example-7.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...ple-3.4.x.js => list-get-example-3.5.x.js} | 0 ...ple-4.4.x.js => list-get-example-4.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...ple-3.4.x.js => list-get-example-3.5.x.js} | 0 ...le-1.4.x.js => list-post-example-1.5.x.js} | 0 ...ple.4.x.js => instance-get-example.5.x.js} | 0 ...example.4.x.js => list-get-example.5.x.js} | 0 ...xample.4.x.js => list-post-example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-2.4.x.js => example-2.5.x.js} | 0 .../{example-3.4.x.js => example-3.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-2.4.x.js => example-2.5.x.js} | 0 .../{example-3.4.x.js => example-3.5.x.js} | 0 .../{example-4.4.x.js => example-4.5.x.js} | 0 ....x.js => instance-delete-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-2.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...confirm.4.x.js => feedback-confirm.5.x.js} | 0 ...nd-sms.4.x.js => feedback-send-sms.5.x.js} | 0 ...x.js => generate-twiml-dynamic-sms.5.x.js} | 0 ...s => generate-twiml-empty-response.5.x.js} | 0 ...l-mms.4.x.js => generate-twiml-mms.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 ...l-sms.4.x.js => generate-twiml-sms.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 ...ot.4.x.js => send-messages-copilot.5.x.js} | 0 ...llback.4.x.js => send-sms-callback.5.x.js} | 0 .../{send-sms.4.x.js => send-sms.5.x.js} | 0 ....x.js => sms-conversation-tracking.5.x.js} | 0 ...back.4.x.js => sms-handle-callback.5.x.js} | 0 ...4.x.js => instance-delete-examples.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...ple-3.4.x.js => list-get-example-3.5.x.js} | 0 ...ple-4.4.x.js => list-get-example-4.5.x.js} | 0 ...e-delete.4.x.js => instance-delete.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...le-1.4.x.js => list-post-example-1.5.x.js} | 0 ....x.js => instance-delete-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-2.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...le-1.4.x.js => list-post-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...le-1.4.x.js => list-post-example-1.5.x.js} | 0 ...ng-xml.4.x.js => get-recording-xml.5.x.js} | 0 ...4.x.js => instance-delete-examples.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...ple-3.4.x.js => list-get-example-3.5.x.js} | 0 ...ple-4.4.x.js => list-get-example-4.5.x.js} | 0 ...ple-5.4.x.js => list-get-example-5.5.x.js} | 0 ...s => list-recording-transcriptions-5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...ple-3.4.x.js => list-get-example-3.5.x.js} | 0 ...4.x.js => associate-control-domain.5.x.js} | 0 ...dress.4.x.js => create-acl-address.5.x.js} | 0 ...t.4.x.js => create-credential-list.5.x.js} | 0 ...ential.4.x.js => create-credential.5.x.js} | 0 ...ate-domain.4.x.js => create-domain.5.x.js} | 0 ...ate-ip-acl.4.x.js => create-ip-acl.5.x.js} | 0 ...ng.4.x.js => delete-access-mapping.5.x.js} | 0 ...ng.4.x.js => delete-access-mapping.5.x.js} | 0 ....4.x.js => delete-address-instance.5.x.js} | 0 ...=> delete-credential-list-instance.5.x.js} | 0 ... => delete-credential-list-mapping.5.x.js} | 0 ... => delete-credential-list-mapping.5.x.js} | 0 ...ential.4.x.js => delete-credential.5.x.js} | 0 ...e.4.x.js => delete-domain-instance.5.x.js} | 0 ...ete-ip-acl.4.x.js => delete-ip-acl.5.x.js} | 0 ...resses.4.x.js => get-acl-addresses.5.x.js} | 0 ...et-acl-list.4.x.js => get-acl-list.5.x.js} | 0 ...-acl-lists.4.x.js => get-acl-lists.5.x.js} | 0 ...nce.4.x.js => get-address-instance.5.x.js} | 0 ...js => get-credential-list-instance.5.x.js} | 0 ...js => get-credential-list-mappings.5.x.js} | 0 ...> get-credential-lists-credentials.5.x.js} | 0 ...sts.4.x.js => get-credential-lists.5.x.js} | 0 ...redential.4.x.js => get-credential.5.x.js} | 0 ...ance.4.x.js => get-domain-instance.5.x.js} | 0 ...ings.4.x.js => get-domain-mappings.5.x.js} | 0 ...{get-domains.4.x.js => get-domains.5.x.js} | 0 ...{get-ip-acls.4.x.js => get-ip-acls.5.x.js} | 0 ...ce.4.x.js => get-mappings-instance.5.x.js} | 0 ...ce.4.x.js => get-mappings-instance.5.x.js} | 0 ...x.js => map-credential-list-domain.5.x.js} | 0 ...x.js => map-credential-list-domain.5.x.js} | 0 ...t-domain.4.x.js => map-list-domain.5.x.js} | 0 ...t-domain.4.x.js => map-list-domain.5.x.js} | 0 ....4.x.js => update-address-instance.5.x.js} | 0 ...=> update-credential-list-instance.5.x.js} | 0 ...ential.4.x.js => update-credential.5.x.js} | 0 ...e.4.x.js => update-domain-instance.5.x.js} | 0 ...e.4.x.js => update-ip-acl-instance.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-2.4.x.js => example-2.5.x.js} | 0 .../{example-3.4.x.js => example-3.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ... => creating-subaccounts-example-1.5.x.js} | 0 ...js => exchanging-numbers-example-1.5.x.js} | 0 ...s => listing-subaccounts-example-1.5.x.js} | 0 ...s => listing-subaccounts-example-2.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{conference.4.x.js => conference.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{redirect.4.x.js => redirect.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-2.4.x.js => example-2.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example.4.x.js => example.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-2.4.x.js => example-2.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 ...e-1.4.x.js => test-calls-example-1.5.x.js} | 0 ...e-2.4.x.js => test-calls-example-2.5.x.js} | 0 ...t-incoming-phone-numbers-example-1.5.x.js} | 0 ...t-incoming-phone-numbers-example-2.5.x.js} | 0 ...le-3.4.x.js => test-post-example-3.5.x.js} | 0 ....js => test-sms-messages-example-1.5.x.js} | 0 ....js => test-sms-messages-example-2.5.x.js} | 0 ....js => test-sms-messages-example-3.5.x.js} | 0 ...4.x.js => list-post-1-hour-example.5.x.js} | 0 ...xample.4.x.js => list-post-example.5.x.js} | 0 ...4.x.js => instance-delete-examples.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...ple-2.4.x.js => list-get-example-2.5.x.js} | 0 ...ple-3.4.x.js => list-get-example-3.5.x.js} | 0 ...ple-4.4.x.js => list-get-example-4.5.x.js} | 0 ...ple-5.4.x.js => list-get-example-5.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ...ple-1.4.x.js => list-get-example-1.5.x.js} | 0 ...le-1.4.x.js => list-post-example-1.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 ...l-say.4.x.js => generate-twiml-say.5.x.js} | 0 .../{example-1.4.x.js => example-1.5.x.js} | 0 .../{example-2.4.x.js => example-2.5.x.js} | 0 .../{example-3.4.x.js => example-3.5.x.js} | 0 .../{example-4.4.x.js => example-4.5.x.js} | 0 ...-action.4.x.js => recording-action.5.x.js} | 0 ....4.x.js => environment-variables-1.5.x.js} | 0 ...ion.4.x.js => signature_validation.5.x.js} | 0 ...x.js => signature_validation_tests.5.x.js} | 0 ...xample.4.x.js => list-post-example.5.x.js} | 0 ...e-account.4.x.js => update-account.5.x.js} | 0 ...ission.4.x.js => delete-permission.5.x.js} | 0 ...issions.4.x.js => list-permissions.5.x.js} | 0 ...sion.4.x.js => retrieve-permission.5.x.js} | 0 ...ission.4.x.js => update-permission.5.x.js} | 0 ...document.4.x.js => create-document.5.x.js} | 0 ...document.4.x.js => delete-document.5.x.js} | 0 ...documents.4.x.js => list-documents.5.x.js} | 0 ...cument.4.x.js => retrieve-document.5.x.js} | 0 ...document.4.x.js => update-document.5.x.js} | 0 ...ission.4.x.js => delete-permission.5.x.js} | 0 ...issions.4.x.js => list-permissions.5.x.js} | 0 ...sion.4.x.js => retrieve-permission.5.x.js} | 0 ...ission.4.x.js => update-permission.5.x.js} | 0 ...st-item.4.x.js => create-list-item.5.x.js} | 0 ...{create-list.4.x.js => create-list.5.x.js} | 0 ...st-item.4.x.js => delete-list-item.5.x.js} | 0 ...{delete-list.4.x.js => delete-list.5.x.js} | 0 .../{list-lists.4.x.js => list-lists.5.x.js} | 0 .../{query-list.4.x.js => query-list.5.x.js} | 0 ...-item.4.x.js => retrieve-list-item.5.x.js} | 0 ...rieve-list.4.x.js => retrieve-list.5.x.js} | 0 ...st-item.4.x.js => update-list-item.5.x.js} | 0 ...{update-list.4.x.js => update-list.5.x.js} | 0 ...ission.4.x.js => delete-permission.5.x.js} | 0 ...issions.4.x.js => list-permissions.5.x.js} | 0 ...sion.4.x.js => retrieve-permission.5.x.js} | 0 ...ission.4.x.js => update-permission.5.x.js} | 0 ...map-item.4.x.js => create-map-item.5.x.js} | 0 .../{create-map.4.x.js => create-map.5.x.js} | 0 ...map-item.4.x.js => delete-map-item.5.x.js} | 0 .../{delete-map.4.x.js => delete-map.5.x.js} | 0 .../{list-maps.4.x.js => list-maps.5.x.js} | 0 .../{query-map.4.x.js => query-map.5.x.js} | 0 ...p-item.4.x.js => retrieve-map-item.5.x.js} | 0 ...etrieve-map.4.x.js => retrieve-map.5.x.js} | 0 ...map-item.4.x.js => update-map-item.5.x.js} | 0 .../{update-map.4.x.js => update-map.5.x.js} | 0 ...k.4.x.js => create-service-webhook.5.x.js} | 0 ...e-service.4.x.js => create-service.5.x.js} | 0 ...e-service.4.x.js => delete-service.5.x.js} | 0 ...t-services.4.x.js => list-services.5.x.js} | 0 ...service.4.x.js => retrieve-service.5.x.js} | 0 ...e-service.4.x.js => update-service.5.x.js} | 0 ...ate-stream.4.x.js => create-stream.5.x.js} | 0 ...ete-stream.4.x.js => delete-stream.5.x.js} | 0 ...ist-streams.4.x.js => list-streams.5.x.js} | 0 ...e.4.x.js => publish-stream-message.5.x.js} | 0 ...e-stream.4.x.js => retrieve-stream.5.x.js} | 0 ...ate-stream.4.x.js => update-stream.5.x.js} | 0 twiml/README.md | 10 ++++---- .../{message-1.4.x.js => message-1.5.x.js} | 0 .../{message-2.4.x.js => message-2.5.x.js} | 0 .../{message-3.4.x.js => message-3.5.x.js} | 0 .../{message-4.4.x.js => message-4.5.x.js} | 0 .../{redirect-1.4.x.js => redirect-1.5.x.js} | 0 .../{redirect-2.4.x.js => redirect-2.5.x.js} | 0 ...sponse-1.4.x.js => your-response-1.5.x.js} | 0 ...sponse-2.4.x.js => your-response-2.5.x.js} | 0 ...sponse-3.4.x.js => your-response-3.5.x.js} | 0 ...c.4.x.js => dial-application-basic.5.x.js} | 0 ...s => dial-application-copyparentto.5.x.js} | 0 ....js => dial-application-customerid.5.x.js} | 0 ...x.js => dial-application-parameter.5.x.js} | 0 ....x.js => hangup-parameter-scenario.5.x.js} | 0 ...rameter.4.x.js => hangup-parameter.5.x.js} | 0 ...rameter.4.x.js => reject-parameter.5.x.js} | 0 .../{client-1.4.x.js => client-1.5.x.js} | 0 .../{client-2.4.x.js => client-2.5.x.js} | 0 .../{client-3.4.x.js => client-3.5.x.js} | 0 ...onference-1.4.x.js => conference-1.5.x.js} | 0 ...ference-10.4.x.js => conference-10.5.x.js} | 0 ...onference-2.4.x.js => conference-2.5.x.js} | 0 ...onference-3.4.x.js => conference-3.5.x.js} | 0 ...onference-4.4.x.js => conference-4.5.x.js} | 0 ...onference-5.4.x.js => conference-5.5.x.js} | 0 ...onference-6.4.x.js => conference-6.5.x.js} | 0 ...onference-7.4.x.js => conference-7.5.x.js} | 0 ...onference-8.4.x.js => conference-8.5.x.js} | 0 ...onference-9.4.x.js => conference-9.5.x.js} | 0 .../{connect-1.4.x.js => connect-1.5.x.js} | 0 .../dial-1/{dial-1.4.x.js => dial-1.5.x.js} | 0 .../dial-2/{dial-2.4.x.js => dial-2.5.x.js} | 0 .../dial-3/{dial-3.4.x.js => dial-3.5.x.js} | 0 .../dial-4/{dial-4.4.x.js => dial-4.5.x.js} | 0 .../dial-5/{dial-5.4.x.js => dial-5.5.x.js} | 0 .../dial-6/{dial-6.4.x.js => dial-6.5.x.js} | 0 .../dial-7/{dial-7.4.x.js => dial-7.5.x.js} | 0 .../dial-8/{dial-8.4.x.js => dial-8.5.x.js} | 0 .../dial-9/{dial-9.4.x.js => dial-9.5.x.js} | 0 .../{enqueue-1.4.x.js => enqueue-1.5.x.js} | 0 .../{enqueue-2.4.x.js => enqueue-2.5.x.js} | 0 .../{gather-1.4.x.js => gather-1.5.x.js} | 0 .../{gather-2.4.x.js => gather-2.5.x.js} | 0 .../{gather-3.4.x.js => gather-3.5.x.js} | 0 .../{gather-4.4.x.js => gather-4.5.x.js} | 0 .../{gather-5.4.x.js => gather-5.5.x.js} | 0 .../{hangup-1.4.x.js => hangup-1.5.x.js} | 0 .../{leave-1.4.x.js => leave-1.5.x.js} | 0 .../{leave-2.4.x.js => leave-2.5.x.js} | 0 .../{leave-3.4.x.js => leave-3.5.x.js} | 0 .../{number-1.4.x.js => number-1.5.x.js} | 0 .../{number-2.4.x.js => number-2.5.x.js} | 0 .../{number-3.4.x.js => number-3.5.x.js} | 0 .../{number-4.4.x.js => number-4.5.x.js} | 0 .../{number-5.4.x.js => number-5.5.x.js} | 0 ...{parameter-1.4.x.js => parameter-1.5.x.js} | 0 .../{pause-1.4.x.js => pause-1.5.x.js} | 0 .../{pause-2.4.x.js => pause-2.5.x.js} | 0 .../pay/pay-1/{pay-1.4.x.js => pay-1.5.x.js} | 0 .../pay/pay-2/{pay-2.4.x.js => pay-2.5.x.js} | 0 .../pay/pay-3/{pay-3.4.x.js => pay-3.5.x.js} | 0 .../pay/pay-4/{pay-4.4.x.js => pay-4.5.x.js} | 0 .../pay/pay-5/{pay-5.4.x.js => pay-5.5.x.js} | 0 .../pay/pay-6/{pay-6.4.x.js => pay-6.5.x.js} | 0 .../pay/pay-7/{pay-7.4.x.js => pay-7.5.x.js} | 0 .../pay/pay-8/{pay-8.4.x.js => pay-8.5.x.js} | 0 .../pay/pay-9/{pay-9.4.x.js => pay-9.5.x.js} | 0 ...tor.4.x.js => pay-charge-connector.5.x.js} | 0 ...-parameter.4.x.js => pay-parameter.5.x.js} | 0 ...r.4.x.js => pay-tokenize-connector.5.x.js} | 0 ...ay-tokenize.4.x.js => pay-tokenize.5.x.js} | 0 ...ple-ach.4.x.js => full-example-ach.5.x.js} | 0 ...4.x.js => full-example-credit-card.5.x.js} | 0 ...prompt-requireMatchingInputs-basic.5.x.js} | 0 ...pt-requireMatchingInputs-errorType.5.x.js} | 0 .../play-1/{play-1.4.x.js => play-1.5.x.js} | 0 .../play-2/{play-2.4.x.js => play-2.5.x.js} | 0 .../play-3/{play-3.4.x.js => play-3.5.x.js} | 0 .../{queue-1.4.x.js => queue-1.5.x.js} | 0 .../{queue-2.4.x.js => queue-2.5.x.js} | 0 .../{record-1.4.x.js => record-1.5.x.js} | 0 .../{record-2.4.x.js => record-2.5.x.js} | 0 .../{record-3.4.x.js => record-3.5.x.js} | 0 .../{record-4.4.x.js => record-4.5.x.js} | 0 .../{redirect-1.4.x.js => redirect-1.5.x.js} | 0 .../{redirect-2.4.x.js => redirect-2.5.x.js} | 0 .../{redirect-3.4.x.js => redirect-3.5.x.js} | 0 .../{refer-1.4.x.js => refer-1.5.x.js} | 0 .../{refer-2.4.x.js => refer-2.5.x.js} | 0 .../{refer-3.4.x.js => refer-3.5.x.js} | 0 .../{refer-4.4.x.js => refer-4.5.x.js} | 0 .../{reject-1.4.x.js => reject-1.5.x.js} | 0 .../{reject-2.4.x.js => reject-2.5.x.js} | 0 ...ic-usage.4.x.js => say-basic-usage.5.x.js} | 0 ...ay-language.4.x.js => say-language.5.x.js} | 0 .../{say-loop.4.x.js => say-loop.5.x.js} | 0 .../{say-voice.4.x.js => say-voice.5.x.js} | 0 .../say/ssml/{ssml.4.x.js => ssml.5.x.js} | 0 .../sim/sim-1/{sim-1.4.x.js => sim-1.5.x.js} | 0 .../sim/sim-2/{sim-2.4.x.js => sim-2.5.x.js} | 0 .../sip/sip-1/{sip-1.4.x.js => sip-1.5.x.js} | 0 .../sip-10/{sip-10.4.x.js => sip-10.5.x.js} | 0 .../sip-11/{sip-11.4.x.js => sip-11.5.x.js} | 0 .../sip-12/{sip-12.4.x.js => sip-12.5.x.js} | 0 .../sip/sip-2/{sip-2.4.x.js => sip-2.5.x.js} | 0 .../sip/sip-3/{sip-3.4.x.js => sip-3.5.x.js} | 0 .../sip/sip-4/{sip-4.4.x.js => sip-4.5.x.js} | 0 .../sip/sip-5/{sip-5.4.x.js => sip-5.5.x.js} | 0 .../sip/sip-6/{sip-6.4.x.js => sip-6.5.x.js} | 0 .../sip/sip-7/{sip-7.4.x.js => sip-7.5.x.js} | 0 .../sip/sip-8/{sip-8.4.x.js => sip-8.5.x.js} | 0 .../sip/sip-9/{sip-9.4.x.js => sip-9.5.x.js} | 0 .../{siprec-1.4.x.js => siprec-1.5.x.js} | 0 .../sms/sms-1/{sms-1.4.x.js => sms-1.5.x.js} | 0 .../sms/sms-2/{sms-2.4.x.js => sms-2.5.x.js} | 0 .../sms/sms-3/{sms-3.4.x.js => sms-3.5.x.js} | 0 .../sms/sms-4/{sms-4.4.x.js => sms-4.5.x.js} | 0 .../{stream-1.4.x.js => stream-1.5.x.js} | 0 .../{stream-2.4.x.js => stream-2.5.x.js} | 0 ...sponse-1.4.x.js => your-response-1.5.x.js} | 0 ...sponse-2.4.x.js => your-response-2.5.x.js} | 0 ...y-webhook.4.x.js => verify-webhook.5.x.js} | 0 ...ion.4.x.js => approve-verification.5.x.js} | 0 ...g-hook.4.x.js => audio-mixing-hook.5.x.js} | 0 ...hook.4.x.js => complex-layout-hook.5.x.js} | 0 ...{delete-hook.4.x.js => delete-hook.5.x.js} | 0 .../{get-hook.4.x.js => get-hook.5.x.js} | 0 ...ng-hook.4.x.js => grid-mixing-hook.5.x.js} | 0 .../{list-hooks.4.x.js => list-hooks.5.x.js} | 0 ...{update-hook.4.x.js => update-hook.5.x.js} | 0 ...pose-chess.4.x.js => compose-chess.5.x.js} | 0 ...s => compose-main-with-col-and-pip.5.x.js} | 0 ...ow.4.x.js => compose-main-with-row.5.x.js} | 0 ...se-mosaic.4.x.js => compose-mosaic.5.x.js} | 0 ...-participant-video-with-all-audios.5.x.js} | 0 ...pant.4.x.js => compose-participant.5.x.js} | 0 ...{compose-pip.4.x.js => compose-pip.5.x.js} | 0 ...ompose-room.4.x.js => compose-room.5.x.js} | 0 ...s-row.4.x.js => compose-set-as-row.5.x.js} | 0 ....4.x.js => compose-set-as-sequence.5.x.js} | 0 ...ition.4.x.js => delete-composition.5.x.js} | 0 ...x.js => get-completed-compositions.5.x.js} | 0 ...x.js => get-composition-media-file.5.x.js} | 0 ...position.4.x.js => get-composition.5.x.js} | 0 ...ns.4.x.js => get-room-compositions.5.x.js} | 0 ....x.js => transcode-audio-recording.5.x.js} | 0 ....x.js => transcode-video-recording.5.x.js} | 0 ....4.x.js => list-deleted-recordings.5.x.js} | 0 ...recordings-for-participant-in-room.5.x.js} | 0 ...=> list-recordings-for-participant.5.x.js} | 0 ...4.x.js => list-recordings-for-room.5.x.js} | 0 ... => retrieve-recording-binary-data.5.x.js} | 0 ....x.js => retrieve-recording-by-sid.5.x.js} | 0 ...p-room.4.x.js => create-group-room.5.x.js} | 0 ...p-room.4.x.js => create-group-room.5.x.js} | 0 ...4.x.js => create-peer-to-peer-room.5.x.js} | 0 ...{create-room.4.x.js => create-room.5.x.js} | 0 ...ngs.4.x.js => list-room-recordings.5.x.js} | 0 ....js => list-rooms-filtered-by-name.5.x.js} | 0 ...s => list-rooms-filtered-by-status.5.x.js} | 0 ....js => list-rooms-multiple-filters.5.x.js} | 0 ...s.4.x.js => list-subscribed-tracks.5.x.js} | 0 ...4.x.js => retrieve-subscribe-rules.5.x.js} | 0 ....x.js => retrieve-subscribed-track.5.x.js} | 0 ...es.4.x.js => update-customer-rules.5.x.js} | 0 ... => update-subscribe-rules-dynamic.5.x.js} | 0 ...es.4.x.js => update-customer-rules.5.x.js} | 0 ....x.js => recording-rules-audio-all.5.x.js} | 0 ...=> recording-rules-one-participant.5.x.js} | 0 ....x.js => recording-rules-start-all.5.x.js} | 0 ...4.x.js => recording-rules-stop-all.5.x.js} | 0 ... retrieve-media-for-room-recording.5.x.js} | 0 ...sid.4.x.js => retrieve-room-by-sid.5.x.js} | 0 ...js => retrieve-room-by-unique-name.5.x.js} | 0 ....4.x.js => retrieve-room-recording.5.x.js} | 0 ...=> update-room-status-to-completed.5.x.js} | 0 ....4.x.js => token-generation-server.5.x.js} | 0 ....4.x.js => token-generation-server.5.x.js} | 0 ...{queue-agent.4.x.js => queue-agent.5.x.js} | 0 ...ueue-caller.4.x.js => queue-caller.5.x.js} | 0 ...-redirect.4.x.js => queue-redirect.5.x.js} | 0 ...pecify-edge.4.x.js => specify-edge.5.x.js} | 0 ....4.x.js => create-binary-example-1.5.x.js} | 0 ...-1.4.x.js => create-text-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...example-1.4.x.js => list-example-1.5.x.js} | 0 ...ample-1.4.x.js => create-example-1.5.x.js} | 0 ...ample-1.4.x.js => delete-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...2.4.x.js => instance-get-example-2.5.x.js} | 0 ...example-1.4.x.js => list-example-1.5.x.js} | 0 ...example-1.4.x.js => list-example-1.5.x.js} | 0 ...example-1.4.x.js => list-example-1.5.x.js} | 0 ...1.4.x.js => instance-get-example-1.5.x.js} | 0 ...2.4.x.js => instance-get-example-2.5.x.js} | 0 ....4.x.js => instance-post-example-1.5.x.js} | 0 ...example-1.4.x.js => list-example-1.5.x.js} | 0 693 files changed, 6 insertions(+), 30 deletions(-) rename add-ons/lookups/payfone-tcpa-compliance/{payfone-tcpa-compliance.4.x.js => payfone-tcpa-compliance.5.x.js} (100%) rename api-auth/{api-auth.4.x.js => api-auth.5.x.js} (100%) rename client/capability-token-2way/{capability-token.4.x.js => capability-token.5.x.js} (100%) rename client/capability-token-expires/{capability-token-expires.4.x.js => capability-token-expires.5.x.js} (100%) rename client/capability-token-incoming/{capability-token.4.x.js => capability-token.5.x.js} (100%) rename client/capability-token-outgoing/{capability-token.4.x.js => capability-token.5.x.js} (100%) rename client/capability-token/{capability-token.4.x.js => capability-token.5.x.js} (100%) rename client/response-twiml-client/{response-twiml-client.4.x.js => response-twiml-client.5.x.js} (100%) rename client/response-twiml-dial/{response-twiml-dial.4.x.js => response-twiml-dial.5.x.js} (100%) rename client/response-twiml/{response-twiml.4.x.js => response-twiml.5.x.js} (100%) rename deployed-devices/quickstarts/sync-boardled/create-document/{create-document.4.x.js => create-document.5.x.js} (100%) rename deployed-devices/quickstarts/sync-boardled/update-document/{update-document.4.x.js => update-document.5.x.js} (100%) rename deployed-devices/rest/certificates/create-certificate/{create-certificate.4.x.js => create-certificate.5.x.js} (100%) rename deployed-devices/rest/certificates/delete-certificate/{delete-certificate.4.x.js => delete-certificate.5.x.js} (100%) rename deployed-devices/rest/certificates/list-certificates/{list-certificates.4.x.js => list-certificates.5.x.js} (100%) rename deployed-devices/rest/certificates/retrieve-certificate/{retrieve-certificate.4.x.js => retrieve-certificate.5.x.js} (100%) rename deployed-devices/rest/certificates/update-certificate/{update-certificate.4.x.js => update-certificate.5.x.js} (100%) rename deployed-devices/rest/deployments/create-deployment/{create-deployment.4.x.js => create-deployment.5.x.js} (100%) rename deployed-devices/rest/deployments/delete-deployment/{delete-deployment.4.x.js => delete-deployment.5.x.js} (100%) rename deployed-devices/rest/deployments/list-deployments/{list-deployments.4.x.js => list-deployments.5.x.js} (100%) rename deployed-devices/rest/deployments/retrieve-deployment/{retrieve-deployment.4.x.js => retrieve-deployment.5.x.js} (100%) rename deployed-devices/rest/deployments/update-deployment/{update-deployment.4.x.js => update-deployment.5.x.js} (100%) rename deployed-devices/rest/devices/create-device/{create-device.4.x.js => create-device.5.x.js} (100%) rename deployed-devices/rest/devices/delete-device/{delete-device.4.x.js => delete-device.5.x.js} (100%) rename deployed-devices/rest/devices/list-devices/{list-devices.4.x.js => list-devices.5.x.js} (100%) rename deployed-devices/rest/devices/retrieve-device/{retrieve-device.4.x.js => retrieve-device.5.x.js} (100%) rename deployed-devices/rest/devices/update-device/{update-device.4.x.js => update-device.5.x.js} (100%) rename deployed-devices/rest/fleets/create-fleet/{create-fleet.4.x.js => create-fleet.5.x.js} (100%) rename deployed-devices/rest/fleets/delete-fleet/{delete-fleet.4.x.js => delete-fleet.5.x.js} (100%) rename deployed-devices/rest/fleets/list-fleets/{list-fleets.4.x.js => list-fleets.5.x.js} (100%) rename deployed-devices/rest/fleets/retrieve-fleet/{retrieve-fleet.4.x.js => retrieve-fleet.5.x.js} (100%) rename deployed-devices/rest/fleets/update-fleet/{update-fleet.4.x.js => update-fleet.5.x.js} (100%) rename deployed-devices/rest/keys/create-key/{create-key.4.x.js => create-key.5.x.js} (100%) rename deployed-devices/rest/keys/delete-key/{delete-key.4.x.js => delete-key.5.x.js} (100%) rename deployed-devices/rest/keys/list-keys/{list-key.4.x.js => list-key.5.x.js} (100%) rename deployed-devices/rest/keys/retrieve-key/{retrieve-key.4.x.js => retrieve-key.5.x.js} (100%) rename deployed-devices/rest/keys/update-key/{update-key.4.x.js => update-key.5.x.js} (100%) rename fax/basic-receive/{basic-receive.4.x.js => basic-receive.5.x.js} (100%) rename fax/basic-send/{basic-send.4.x.js => basic-send.5.x.js} (100%) rename fax/instance-get-example/{instance-get-example.4.x.js => instance-get-example.5.x.js} (100%) rename fax/instance-post-example/{instance-post-example.4.x.js => instance-post-example.5.x.js} (100%) rename fax/list-get-example/{list-get-example.4.x.js => list-get-example.5.x.js} (100%) rename fax/sip-send/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename fax/sip-send/example-2/{example-2.4.x.js => example-2.5.x.js} (100%) rename fax/sip-send/example-3/{example-3.4.x.js => example-3.5.x.js} (100%) rename guides/functions/joke-function/{joke-function.4.x.js => joke-function.5.x.js} (100%) rename guides/functions/jokes-function/{jokes-function.4.x.js => jokes-function.5.x.js} (100%) rename guides/request-validation-express/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename guides/request-validation-express/example-2/{example-2.4.x.js => example-2.5.x.js} (100%) rename guides/voice/conference-calls-guide/moderated-conference/{moderated-conference.4.x.js => moderated-conference.5.x.js} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-0/{example.4.x.js => example.5.x.js} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-1/{example.4.x.js => example.5.x.js} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-2/{example.4.x.js => example.5.x.js} (100%) rename guides/voice/record-calls-guide/record-outgoing-call/{example-1.4.x.js => example-1.5.x.js} (100%) rename guides/voice/record-calls-guide/record-twiml-transcribe/{example.4.x.js => example.5.x.js} (100%) rename guides/voice/record-calls-guide/record-twiml/{example.4.x.js => example.5.x.js} (100%) rename guides/voice/recording-add-on-guide/use-add-on-data/{example.4.x.js => example.5.x.js} (100%) rename guides/voice/respond-incoming-calls-guide/respond-add-ons/{example.4.x.js => example.5.x.js} (100%) rename guides/voice/respond-incoming-calls-guide/respond-no-parameters/{example.4.x.js => example.5.x.js} (100%) rename guides/voice/respond-incoming-calls-guide/respond-with-parameters/{example.4.x.js => example.5.x.js} (100%) rename lookups/lookup-get-addon-example-1/{lookup-get-addon-examples-1.4.x.js => lookup-get-addon-examples-1.5.x.js} (100%) rename lookups/lookup-get-addon-payfone-example-1/{lookup-get-addon-payfone-1.4.x.js => lookup-get-addon-payfone-1.5.x.js} (100%) rename lookups/lookup-get-basic-example-1/{lookup-get-basic-example-1.4.x.js => lookup-get-basic-example-1.5.x.js} (100%) rename lookups/lookup-get-basic-example-2/{lookup-get-basic-example-2.4.x.js => lookup-get-basic-example-2.5.x.js} (100%) rename lookups/lookup-get-carrier-cname-example-1/{lookup-get-carrier-cname-example-1.4.x.js => lookup-get-carrier-cname-example-1.5.x.js} (100%) rename lookups/lookup-get-cname-example-1/{lookup-get-cname-example-1.4.x.js => lookup-get-cname-example-1.5.x.js} (100%) rename lookups/lookup-international-basic/{lookup-international-basic.4.x.js => lookup-international-basic.5.x.js} (100%) rename lookups/lookup-national-basic/{lookup-national-basic.4.x.js => lookup-national-basic.5.x.js} (100%) rename media/rest/recordings/get-media-recording-media-file/{get-media-recording-media-file.4.x.js => get-media-recording-media-file.5.x.js} (100%) rename media/rest/recordings/get-media-recording-timed-metadata-file/{get-media-recording-timed-metadata-file.4.x.js => get-media-recording-timed-metadata-file.5.x.js} (100%) rename messaging/link-shortening/link-shortening-domain-cert/{link-shortening-domain-cert.4.x.js => link-shortening-domain-cert.5.x.js} (100%) rename messaging/link-shortening/link-shortening-sms/{link-shortening-sms.4.x.js => link-shortening-sms.5.x.js} (100%) rename messaging/link-shortening/link-shortening-whatsapp/{link-shortening-whatsapp.4.x.js => link-shortening-whatsapp.5.x.js} (100%) rename messaging/services/service-alpha-add/{service-alpha-add.4.x.js => service-alpha-add.5.x.js} (100%) rename messaging/services/service-alpha-delete/{service-alpha-delete.4.x.js => service-alpha-delete.5.x.js} (100%) rename messaging/services/service-alpha-get/{service-alpha-get.4.x.js => service-alpha-get.5.x.js} (100%) rename messaging/services/service-alpha-list/{service-alpha-list.4.x.js => service-alpha-list.5.x.js} (100%) rename messaging/services/service-create/{service-create.4.x.js => service-create.5.x.js} (100%) rename messaging/services/service-delete/{service-delete.4.x.js => service-delete.5.x.js} (100%) rename messaging/services/service-get/{service-get.4.x.js => service-get.5.x.js} (100%) rename messaging/services/service-list/{service-list.4.x.js => service-list.5.x.js} (100%) rename messaging/services/service-multiple-number-add/{service-multiple-number-add.4.x.js => service-multiple-number-add.5.x.js} (100%) rename messaging/services/service-number-add/{service-number-add.4.x.js => service-number-add.5.x.js} (100%) rename messaging/services/service-number-delete/{service-number-delete.4.x.js => service-number-delete.5.x.js} (100%) rename messaging/services/service-number-get/{service-number-get.4.x.js => service-number-get.5.x.js} (100%) rename messaging/services/service-number-list/{service-number-list.4.x.js => service-number-list.5.x.js} (100%) rename messaging/services/service-shortcode-add/{service-shortcode-add.4.x.js => service-shortcode-add.5.x.js} (100%) rename messaging/services/service-shortcode-delete/{service-shortcode-delete.4.x.js => service-shortcode-delete.5.x.js} (100%) rename messaging/services/service-shortcode-get/{service-shortcode-get.4.x.js => service-shortcode-get.5.x.js} (100%) rename messaging/services/service-shortcode-list/{service-shortcode-list.4.x.js => service-shortcode-list.5.x.js} (100%) rename messaging/services/service-update/{service-update.4.x.js => service-update.5.x.js} (100%) rename mobile-identity/identity-match/{identity-match-example.4.x.js => identity-match-example.5.x.js} (100%) rename mobile-identity/silent-network-auth/create-an-evurl/{create-an-evurl-example.4.x.js => create-an-evurl-example.5.x.js} (100%) rename mobile-identity/silent-network-auth/retrieve-evurl-result/{retrieve-evurl-result-example.4.x.js => retrieve-evurl-result-example.5.x.js} (100%) rename monitor/alerts/instance-delete-example/{instance-delete-example.4.x.js => instance-delete-example.5.x.js} (100%) rename monitor/alerts/instance-get-example/{instance-get-example.4.x.js => instance-get-example.5.x.js} (100%) rename monitor/alerts/list-get-example-all/{list-get-example-all.4.x.js => list-get-example-all.5.x.js} (100%) rename monitor/alerts/list-get-example-warnings-apr01-apr30/{list-get-example-warnings-apr01-apr30.4.x.js => list-get-example-warnings-apr01-apr30.5.x.js} (100%) rename monitor/events/instance-get-example-phone-number/{instance-get-example-phone-number.4.x.js => instance-get-example-phone-number.5.x.js} (100%) rename monitor/events/list-get-example-actorsid-resourcesid-error/{list-get-example-actorsid-resourcesid-error.4.x.js => list-get-example-actorsid-resourcesid-error.5.x.js} (100%) rename monitor/events/list-get-example-date-filter/{list-get-example-date-filter.4.x.js => list-get-example-date-filter.5.x.js} (100%) rename monitor/events/list-get-example-resourcesid-filter/{list-get-example-resourcesid-filter.4.x.js => list-get-example-resourcesid-filter.5.x.js} (100%) rename monitor/events/list-get-example-sourceipaddress-filter/{list-get-example-sourceipaddress-filter.4.x.js => list-get-example-sourceipaddress-filter.5.x.js} (100%) rename notifications/register/create-binding-server-apns/{create-binding-server-apn.4.x.js => create-binding-server-apn.5.x.js} (100%) rename notifications/register/create-binding-server-fcm/{create-binding-server-fcm.4.x.js => create-binding-server-fcm.5.x.js} (100%) rename notifications/register/create-binding-server/{create-binding-server.4.x.js => create-binding-server.5.x.js} (100%) rename notifications/register/send-notification-2/{send-notification-2.4.x.js => send-notification-2.5.x.js} (100%) rename notifications/register/send-notification-segment-tag/{send-notification-segment-tag.4.x.js => send-notification-segment-tag.5.x.js} (100%) rename notifications/register/send-notification-segment/{send-notification-segment.4.x.js => send-notification-segment.5.x.js} (100%) rename notifications/register/send-notification/{send-notification.4.x.js => send-notification.5.x.js} (100%) rename notifications/rest/bindings/create-binding/{create-binding.4.x.js => create-binding.5.x.js} (100%) rename notifications/rest/bindings/delete-binding/{delete-binding.4.x.js => delete-binding.5.x.js} (100%) rename notifications/rest/bindings/list-binding/{list-binding.4.x.js => list-binding.5.x.js} (100%) rename notifications/rest/bindings/retrieve-binding/{retrieve-binding.4.x.js => retrieve-binding.5.x.js} (100%) rename notifications/rest/credentials/create-apn-credential/{create-apn-credential.4.x.js => create-apn-credential.5.x.js} (100%) rename notifications/rest/credentials/create-fcm-credential/{create-fcm-credential.4.x.js => create-fcm-credential.5.x.js} (100%) rename notifications/rest/credentials/create-gcm-credential/{create-gcm-credential.4.x.js => create-gcm-credential.5.x.js} (100%) rename notifications/rest/credentials/delete-credential/{delete-credential.4.x.js => delete-credential.5.x.js} (100%) rename notifications/rest/credentials/list-credential/{list-credential.4.x.js => list-credential.5.x.js} (100%) rename notifications/rest/credentials/retrieve-credential/{retrieve-credential.4.x.js => retrieve-credential.5.x.js} (100%) rename notifications/rest/credentials/update-credential/{update-credential.4.x.js => update-credential.5.x.js} (100%) rename notifications/rest/notifications/send-notification-detailed/{send-notification-detailed.4.x.js => send-notification-detailed.5.x.js} (100%) rename notifications/rest/notifications/send-notification-with-badge/{send-notification-with-badge.4.x.js => send-notification-with-badge.5.x.js} (100%) rename notifications/rest/notifications/send-notification/{send-notification.4.x.js => send-notification.5.x.js} (100%) rename notifications/rest/notifications/send-passthrough-notification/{send-passthrough-notification.4.x.js => send-passthrough-notification.5.x.js} (100%) rename notifications/rest/segments/list-segment/{list-segment.4.x.js => list-segment.5.x.js} (100%) rename notifications/rest/services/create-service/{create-service.4.x.js => create-service.5.x.js} (100%) rename notifications/rest/services/delete-service/{delete-service.4.x.js => delete-service.5.x.js} (100%) rename notifications/rest/services/list-service/{list-service.4.x.js => list-service.5.x.js} (100%) rename notifications/rest/services/retrieve-service/{retrieve-service.4.x.js => retrieve-service.5.x.js} (100%) rename notifications/rest/services/update-service/{update-service.4.x.js => update-service.5.x.js} (100%) rename notifications/rest/users/add-user-to-segment/{add-user-to-segment.4.x.js => add-user-to-segment.5.x.js} (100%) rename notifications/rest/users/create-user/{create-user.4.x.js => create-user.5.x.js} (100%) rename notifications/rest/users/delete-user/{delete-user.4.x.js => delete-user.5.x.js} (100%) rename notifications/rest/users/list-binding-of-user/{list-binding-of-user.4.x.js => list-binding-of-user.5.x.js} (100%) rename notifications/rest/users/list-users/{list-users.4.x.js => list-users.5.x.js} (100%) rename notifications/rest/users/remove-user-from-segment/{remove-user-from-segment.4.x.js => remove-user-from-segment.5.x.js} (100%) rename notifications/rest/users/retrieve-user/{retrieve-user.4.x.js => retrieve-user.5.x.js} (100%) rename notifications/sms-quickstart/create-binding/{create-binding.4.x.js => create-binding.5.x.js} (100%) rename notifications/sms-quickstart/send-notification-to-number/{send-notification-to-number.4.x.js => send-notification-to-number.5.x.js} (100%) rename notifications/sms-quickstart/send-notification/{send-notification.4.x.js => send-notification.5.x.js} (100%) rename pricing/get-messaging-country/{get-messaging-country.4.x.js => get-messaging-country.5.x.js} (100%) rename pricing/get-phone-number-country/{get-phone-number-country.4.x.js => get-phone-number-country.5.x.js} (100%) rename pricing/get-voice-country/{get-voice-country.4.x.js => get-voice-country.5.x.js} (100%) rename pricing/get-voice-number-with-origination-number/{get-voice-number-with-origination-number.4.x.js => get-voice-number-with-origination-number.5.x.js} (100%) rename pricing/get-voice-number/{get-voice-number.4.x.js => get-voice-number.5.x.js} (100%) rename pricing/list-messaging-countries/{list-messaging-countries.4.x.js => list-messaging-countries.5.x.js} (100%) rename pricing/list-phone-number-countries/{list-phone-number-countries.4.x.js => list-phone-number-countries.5.x.js} (100%) rename pricing/list-voice-countries/{list-voice-countries.4.x.js => list-voice-countries.5.x.js} (100%) rename proxy/quickstart/add-phone-number/{add-phone-number.4.x.js => add-phone-number.5.x.js} (100%) rename proxy/quickstart/create-participant/{create-participant.4.x.js => create-participant.5.x.js} (100%) rename proxy/quickstart/create-service/{create-service.4.x.js => create-service.5.x.js} (100%) rename proxy/quickstart/create-session/{create-session.4.x.js => create-session.5.x.js} (100%) rename proxy/quickstart/send-message/{send-message.4.x.js => send-message.5.x.js} (100%) rename quickstart/node/autopilot/create-first-task/{create_hello_world_task.4.x.js => create_hello_world_task.5.x.js} (100%) rename quickstart/node/autopilot/create-hello-world-samples/{create_hello_world_samples.4.x.js => create_hello_world_samples.5.x.js} (100%) rename quickstart/node/autopilot/create-joke-samples/{create_joke_samples.4.x.js => create_joke_samples.5.x.js} (100%) rename quickstart/node/autopilot/create-joke-task/{create_joke_task.4.x.js => create_joke_task.5.x.js} (100%) rename quickstart/node/autopilot/query-task/{query_task.4.x.js => query_task.5.x.js} (100%) delete mode 100644 rename-files.py rename rest/access-tokens/ip-messaging-example-push-credential/{ip-messaging-example.4.x.js => ip-messaging-example.5.x.js} (100%) rename rest/access-tokens/ip-messaging-example/{ip-messaging-example.4.x.js => ip-messaging-example.5.x.js} (100%) rename rest/access-tokens/live-example/{live-example.4.x.js => live-example.5.x.js} (100%) rename rest/access-tokens/sync-example/{sync-example.4.x.js => sync-example.5.x.js} (100%) rename rest/access-tokens/video-example/{video-example.4.x.js => video-example.5.x.js} (100%) rename rest/access-tokens/voice-example/{voice-example.4.x.js => voice-example.5.x.js} (100%) rename rest/accounts/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/accounts/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/accounts/instance-post-example-2/{instance-post-example-2.4.x.js => instance-post-example-2.5.x.js} (100%) rename rest/accounts/instance-post-example-3/{instance-post-example-3.4.x.js => instance-post-example-3.5.x.js} (100%) rename rest/accounts/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/accounts/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/addresses/instance-create-example/{instance-create-example.4.x.js => instance-create-example.5.x.js} (100%) rename rest/addresses/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/addresses/list-dependent-pns-example-1/{list-dependent-pns-example-1.4.x.js => list-dependent-pns-example-1.5.x.js} (100%) rename rest/addresses/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/addresses/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/addresses/list-post-example-1/{list-post-example-1.4.x.js => list-post-example-1.5.x.js} (100%) rename rest/answering-machine-detection/outgoing-call/{outgoing-call-1.4.x.js => outgoing-call-1.5.x.js} (100%) rename rest/applications/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/applications/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/applications/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/applications/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/applications/list-post-example-1/{list-post-example-1.4.x.js => list-post-example-1.5.x.js} (100%) rename rest/authorized-connect-apps/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/authorized-connect-apps/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/available-phone-numbers/local-advanced-example-1/{local-get-advanced-example-1.4.x.js => local-get-advanced-example-1.5.x.js} (100%) rename rest/available-phone-numbers/local-basic-example-1/{local-get-basic-example-1.4.x.js => local-get-basic-example-1.5.x.js} (100%) rename rest/available-phone-numbers/local-basic-example-2/{local-get-basic-example-2.4.x.js => local-get-basic-example-2.5.x.js} (100%) rename rest/available-phone-numbers/local-basic-example-3/{local-get-basic-example-3.4.x.js => local-get-basic-example-3.5.x.js} (100%) rename rest/available-phone-numbers/local-basic-example-4/{local-get-basic-example-4.4.x.js => local-get-basic-example-4.5.x.js} (100%) rename rest/available-phone-numbers/local-basic-example-5/{local-get-basic-example-5.4.x.js => local-get-basic-example-5.5.x.js} (100%) rename rest/available-phone-numbers/local-basic-example-6/{local-get-basic-example-6.4.x.js => local-get-basic-example-6.5.x.js} (100%) rename rest/available-phone-numbers/local-basic-example-7/{local-get-basic-example-7.4.x.js => local-get-basic-example-7.5.x.js} (100%) rename rest/available-phone-numbers/local-basic-example-8/{local-get-basic-example-8.4.x.js => local-get-basic-example-8.5.x.js} (100%) rename rest/available-phone-numbers/mobile-example/{mobile-get-example-1.4.x.js => mobile-get-example-1.5.x.js} (100%) rename rest/available-phone-numbers/toll-free-example-1/{toll-free-get-example-1.4.x.js => toll-free-get-example-1.5.x.js} (100%) rename rest/available-phone-numbers/toll-free-example-2/{toll-free-get-example-2.4.x.js => toll-free-get-example-2.5.x.js} (100%) rename rest/available-phone-numbers/toll-free-example-3/{toll-free-get-example-3.4.x.js => toll-free-get-example-3.5.x.js} (100%) rename rest/call-feedback/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/call-feedback/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/call-feedback/summary-instance-delete-example-1/{summary-instance-delete-example-1.4.x.js => summary-instance-delete-example-1.5.x.js} (100%) rename rest/call-feedback/summary-instance-get-example-1/{summary-instance-get-example-1.4.x.js => summary-instance-get-example-1.5.x.js} (100%) rename rest/call-feedback/summary-instance-get-example-2/{summary-instance-get-example-2.4.x.js => summary-instance-get-example-2.5.x.js} (100%) rename rest/call-feedback/summary-list-post-example-1/{summary-list-post-example-1.4.x.js => summary-list-post-example-1.5.x.js} (100%) rename rest/call/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/call/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/call/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/call/list-get-example-3/{list-get-example-3.4.x.js => list-get-example-3.5.x.js} (100%) rename rest/call/list-get-example-4/{list-get-example-4.4.x.js => list-get-example-4.5.x.js} (100%) rename rest/call/list-get-example-6/{list-get-example-6.4.x.js => list-get-example-6.5.x.js} (100%) rename rest/call/list-get-example-7/{list-get-example-7.4.x.js => list-get-example-7.5.x.js} (100%) rename rest/change-call-state/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/change-call-state/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/conference/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/conference/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/conference/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/conference/list-get-example-3/{list-get-example-3.4.x.js => list-get-example-3.5.x.js} (100%) rename rest/conference/list-get-example-4/{list-get-example-4.4.x.js => list-get-example-4.5.x.js} (100%) rename rest/connect-apps/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/connect-apps/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/incoming-phone-numbers/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/incoming-phone-numbers/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/incoming-phone-numbers/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/incoming-phone-numbers/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/incoming-phone-numbers/list-get-example-3/{list-get-example-3.4.x.js => list-get-example-3.5.x.js} (100%) rename rest/incoming-phone-numbers/list-post-example-1/{list-post-example-1.4.x.js => list-post-example-1.5.x.js} (100%) rename rest/keys/instance-get-example/{instance-get-example.4.x.js => instance-get-example.5.x.js} (100%) rename rest/keys/list-get-example/{list-get-example.4.x.js => list-get-example.5.x.js} (100%) rename rest/keys/list-post-example/{list-post-example.4.x.js => list-post-example.5.x.js} (100%) rename rest/keys/using-keys-example/{example.4.x.js => example.5.x.js} (100%) rename rest/making-calls-sip/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/making-calls-sip/example-2/{example-2.4.x.js => example-2.5.x.js} (100%) rename rest/making-calls-sip/example-3/{example-3.4.x.js => example-3.5.x.js} (100%) rename rest/making-calls/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/making-calls/example-2/{example-2.4.x.js => example-2.5.x.js} (100%) rename rest/making-calls/example-3/{example-3.4.x.js => example-3.5.x.js} (100%) rename rest/making-calls/example-4/{example-4.4.x.js => example-4.5.x.js} (100%) rename rest/media/instance-delete-example-1/{instance-delete-example-1.4.x.js => instance-delete-example-1.5.x.js} (100%) rename rest/media/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/member/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/member/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/member/instance-post-example-2/{instance-post-example-2.4.x.js => instance-post-example-2.5.x.js} (100%) rename rest/member/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/message/instance-delete/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/message/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/message/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/message/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/message/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/messages/feedback-confirm/{feedback-confirm.4.x.js => feedback-confirm.5.x.js} (100%) rename rest/messages/feedback-send-sms/{feedback-send-sms.4.x.js => feedback-send-sms.5.x.js} (100%) rename rest/messages/generate-twiml-dynamic-sms/{generate-twiml-dynamic-sms.4.x.js => generate-twiml-dynamic-sms.5.x.js} (100%) rename rest/messages/generate-twiml-empty-response/{generate-twiml-empty-response.4.x.js => generate-twiml-empty-response.5.x.js} (100%) rename rest/messages/generate-twiml-mms/{generate-twiml-mms.4.x.js => generate-twiml-mms.5.x.js} (100%) rename rest/messages/generate-twiml-sms-voice/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/messages/generate-twiml-sms/{generate-twiml-sms.4.x.js => generate-twiml-sms.5.x.js} (100%) rename rest/messages/send-message/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/messages/send-messages-copilot/{send-messages-copilot.4.x.js => send-messages-copilot.5.x.js} (100%) rename rest/messages/send-sms-callback/{send-sms-callback.4.x.js => send-sms-callback.5.x.js} (100%) rename rest/messages/send-sms/{send-sms.4.x.js => send-sms.5.x.js} (100%) rename rest/messages/sms-conversation-tracking/{sms-conversation-tracking.4.x.js => sms-conversation-tracking.5.x.js} (100%) rename rest/messages/sms-handle-callback/{sms-handle-callback.4.x.js => sms-handle-callback.5.x.js} (100%) rename rest/notification/instance-delete-examples/{instance-delete-examples.4.x.js => instance-delete-examples.5.x.js} (100%) rename rest/notification/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/notification/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/notification/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/notification/list-get-example-3/{list-get-example-3.4.x.js => list-get-example-3.5.x.js} (100%) rename rest/notification/list-get-example-4/{list-get-example-4.4.x.js => list-get-example-4.5.x.js} (100%) rename rest/outgoing-caller-ids/instance-delete/{instance-delete.4.x.js => instance-delete.5.x.js} (100%) rename rest/outgoing-caller-ids/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/outgoing-caller-ids/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/outgoing-caller-ids/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/outgoing-caller-ids/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/outgoing-caller-ids/list-post-example-1/{list-post-example-1.4.x.js => list-post-example-1.5.x.js} (100%) rename rest/participant/instance-delete-example-1/{instance-delete-example-1.4.x.js => instance-delete-example-1.5.x.js} (100%) rename rest/participant/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/participant/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/participant/instance-post-example-2/{instance-post-example-2.4.x.js => instance-post-example-2.5.x.js} (100%) rename rest/participant/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/participant/list-post-example-1/{list-post-example-1.4.x.js => list-post-example-1.5.x.js} (100%) rename rest/queue/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/queue/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/queue/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/queue/list-post-example-1/{list-post-example-1.4.x.js => list-post-example-1.5.x.js} (100%) rename rest/recording/get-recording-xml/{get-recording-xml.4.x.js => get-recording-xml.5.x.js} (100%) rename rest/recording/instance-delete-examples/{instance-delete-examples.4.x.js => instance-delete-examples.5.x.js} (100%) rename rest/recording/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/recording/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/recording/list-get-example-3/{list-get-example-3.4.x.js => list-get-example-3.5.x.js} (100%) rename rest/recording/list-get-example-4/{list-get-example-4.4.x.js => list-get-example-4.5.x.js} (100%) rename rest/recording/list-get-example-5/{list-get-example-5.4.x.js => list-get-example-5.5.x.js} (100%) rename rest/recording/list-recording-transcriptions/{list-recording-transcriptions-4.x.js => list-recording-transcriptions-5.x.js} (100%) rename rest/sending-messages/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/short-codes/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/short-codes/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/short-codes/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/short-codes/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/short-codes/list-get-example-3/{list-get-example-3.4.x.js => list-get-example-3.5.x.js} (100%) rename rest/sip-in/associate-control-domain/{associate-control-domain.4.x.js => associate-control-domain.5.x.js} (100%) rename rest/sip-in/create-acl-address/{create-acl-address.4.x.js => create-acl-address.5.x.js} (100%) rename rest/sip-in/create-credential-list/{create-credential-list.4.x.js => create-credential-list.5.x.js} (100%) rename rest/sip-in/create-credential/{create-credential.4.x.js => create-credential.5.x.js} (100%) rename rest/sip-in/create-domain/{create-domain.4.x.js => create-domain.5.x.js} (100%) rename rest/sip-in/create-ip-acl/{create-ip-acl.4.x.js => create-ip-acl.5.x.js} (100%) rename rest/sip-in/delete-access-mapping-old/{delete-access-mapping.4.x.js => delete-access-mapping.5.x.js} (100%) rename rest/sip-in/delete-access-mapping/{delete-access-mapping.4.x.js => delete-access-mapping.5.x.js} (100%) rename rest/sip-in/delete-address-instance/{delete-address-instance.4.x.js => delete-address-instance.5.x.js} (100%) rename rest/sip-in/delete-credential-list-instance/{delete-credential-list-instance.4.x.js => delete-credential-list-instance.5.x.js} (100%) rename rest/sip-in/delete-credential-list-mapping-old/{delete-credential-list-mapping.4.x.js => delete-credential-list-mapping.5.x.js} (100%) rename rest/sip-in/delete-credential-list-mapping/{delete-credential-list-mapping.4.x.js => delete-credential-list-mapping.5.x.js} (100%) rename rest/sip-in/delete-credential/{delete-credential.4.x.js => delete-credential.5.x.js} (100%) rename rest/sip-in/delete-domain-instance/{delete-domain-instance.4.x.js => delete-domain-instance.5.x.js} (100%) rename rest/sip-in/delete-ip-acl/{delete-ip-acl.4.x.js => delete-ip-acl.5.x.js} (100%) rename rest/sip-in/get-acl-addresses/{get-acl-addresses.4.x.js => get-acl-addresses.5.x.js} (100%) rename rest/sip-in/get-acl-list/{get-acl-list.4.x.js => get-acl-list.5.x.js} (100%) rename rest/sip-in/get-acl-lists/{get-acl-lists.4.x.js => get-acl-lists.5.x.js} (100%) rename rest/sip-in/get-address-instance/{get-address-instance.4.x.js => get-address-instance.5.x.js} (100%) rename rest/sip-in/get-credential-list-instance/{get-credential-list-instance.4.x.js => get-credential-list-instance.5.x.js} (100%) rename rest/sip-in/get-credential-list-mappings/{get-credential-list-mappings.4.x.js => get-credential-list-mappings.5.x.js} (100%) rename rest/sip-in/get-credential-lists-credentials/{get-credential-lists-credentials.4.x.js => get-credential-lists-credentials.5.x.js} (100%) rename rest/sip-in/get-credential-lists/{get-credential-lists.4.x.js => get-credential-lists.5.x.js} (100%) rename rest/sip-in/get-credential/{get-credential.4.x.js => get-credential.5.x.js} (100%) rename rest/sip-in/get-domain-instance/{get-domain-instance.4.x.js => get-domain-instance.5.x.js} (100%) rename rest/sip-in/get-domain-mappings/{get-domain-mappings.4.x.js => get-domain-mappings.5.x.js} (100%) rename rest/sip-in/get-domains/{get-domains.4.x.js => get-domains.5.x.js} (100%) rename rest/sip-in/get-ip-acls/{get-ip-acls.4.x.js => get-ip-acls.5.x.js} (100%) rename rest/sip-in/get-mappings-instance-old/{get-mappings-instance.4.x.js => get-mappings-instance.5.x.js} (100%) rename rest/sip-in/get-mappings-instance/{get-mappings-instance.4.x.js => get-mappings-instance.5.x.js} (100%) rename rest/sip-in/map-credential-list-domain-old/{map-credential-list-domain.4.x.js => map-credential-list-domain.5.x.js} (100%) rename rest/sip-in/map-credential-list-domain/{map-credential-list-domain.4.x.js => map-credential-list-domain.5.x.js} (100%) rename rest/sip-in/map-list-domain-old/{map-list-domain.4.x.js => map-list-domain.5.x.js} (100%) rename rest/sip-in/map-list-domain/{map-list-domain.4.x.js => map-list-domain.5.x.js} (100%) rename rest/sip-in/update-address-instance/{update-address-instance.4.x.js => update-address-instance.5.x.js} (100%) rename rest/sip-in/update-credential-list-instance/{update-credential-list-instance.4.x.js => update-credential-list-instance.5.x.js} (100%) rename rest/sip-in/update-credential/{update-credential.4.x.js => update-credential.5.x.js} (100%) rename rest/sip-in/update-domain-instance/{update-domain-instance.4.x.js => update-domain-instance.5.x.js} (100%) rename rest/sip-in/update-ip-acl-instance/{update-ip-acl-instance.4.x.js => update-ip-acl-instance.5.x.js} (100%) rename rest/sip/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/sip/example-2/{example-2.4.x.js => example-2.5.x.js} (100%) rename rest/sip/example-3/{example-3.4.x.js => example-3.5.x.js} (100%) rename rest/sms/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/sms/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/subaccounts/creating-subaccounts-example-1/{creating-subaccounts-example-1.4.x.js => creating-subaccounts-example-1.5.x.js} (100%) rename rest/subaccounts/exchanging-numbers-example-1/{exchanging-numbers-example-1.4.x.js => exchanging-numbers-example-1.5.x.js} (100%) rename rest/subaccounts/listing-subaccounts-example-1/{listing-subaccounts-example-1.4.x.js => listing-subaccounts-example-1.5.x.js} (100%) rename rest/subaccounts/listing-subaccounts-example-2/{listing-subaccounts-example-2.4.x.js => listing-subaccounts-example-2.5.x.js} (100%) rename rest/taskrouter/activities/instance/delete/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/activities/instance/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/activities/instance/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/events/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/jwts/taskqueue/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/jwts/worker/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/jwts/workspace/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/reservations/call/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/reservations/conference/{conference.4.x.js => conference.5.x.js} (100%) rename rest/taskrouter/reservations/dequeue/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/reservations/instance/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/reservations/instance/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/reservations/list/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/reservations/redirect/{redirect.4.x.js => redirect.5.x.js} (100%) rename rest/taskrouter/reservations/reject/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/taskqueue/cumulative/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/taskqueue/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/taskqueue/realtime/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/worker/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workers/cumulative/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workers/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workers/realtime/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workflow/cumulative/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workflow/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workflow/realtime/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workspace/cumulative/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workspace/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/statistics/workspace/realtime/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/taskqueues/instance/delete/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/taskqueues/instance/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/taskqueues/instance/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/taskqueues/list/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/taskqueues/list/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/tasks/instance/delete/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/tasks/instance/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/tasks/instance/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/tasks/list/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/tasks/list/get/example-2/{example-2.4.x.js => example-2.5.x.js} (100%) rename rest/taskrouter/tasks/list/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/twiml/example1/example/{example.4.x.js => example.5.x.js} (100%) rename rest/taskrouter/twiml/example2/example/{example.4.x.js => example.5.x.js} (100%) rename rest/taskrouter/twiml/example3/example/{example.4.x.js => example.5.x.js} (100%) rename rest/taskrouter/twiml/example4/example/{example.4.x.js => example.5.x.js} (100%) rename rest/taskrouter/worker-reservations/accept/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/worker-reservations/call/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/worker-reservations/dequeue/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/worker-reservations/instance-get-example1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/worker-reservations/list-get-example1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/worker-reservations/reject/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workers/instance/delete/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workers/instance/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workers/instance/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workers/list/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workers/list/get/example-2/{example-2.4.x.js => example-2.5.x.js} (100%) rename rest/taskrouter/workers/list/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workflows/instance/delete/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workflows/instance/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workflows/instance/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workflows/list/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workflows/list/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workspaces/instance/delete/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workspaces/instance/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workspaces/instance/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workspaces/list/get/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/taskrouter/workspaces/list/post/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/test-credentials/test-calls-example-1/{test-calls-example-1.4.x.js => test-calls-example-1.5.x.js} (100%) rename rest/test-credentials/test-calls-example-2/{test-calls-example-2.4.x.js => test-calls-example-2.5.x.js} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-1/{test-incoming-phone-numbers-example-1.4.x.js => test-incoming-phone-numbers-example-1.5.x.js} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-2/{test-incoming-phone-numbers-example-2.4.x.js => test-incoming-phone-numbers-example-2.5.x.js} (100%) rename rest/test-credentials/test-post-example-3/{test-post-example-3.4.x.js => test-post-example-3.5.x.js} (100%) rename rest/test-credentials/test-sms-messages-example-1/{test-sms-messages-example-1.4.x.js => test-sms-messages-example-1.5.x.js} (100%) rename rest/test-credentials/test-sms-messages-example-2/{test-sms-messages-example-2.4.x.js => test-sms-messages-example-2.5.x.js} (100%) rename rest/test-credentials/test-sms-messages-example-3/{test-sms-messages-example-3.4.x.js => test-sms-messages-example-3.5.x.js} (100%) rename rest/token/list-post-1-hour-example/{list-post-1-hour-example.4.x.js => list-post-1-hour-example.5.x.js} (100%) rename rest/token/list-post-example/{list-post-example.4.x.js => list-post-example.5.x.js} (100%) rename rest/transcription/instance-delete-examples/{instance-delete-examples.4.x.js => instance-delete-examples.5.x.js} (100%) rename rest/transcription/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/transcription/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/usage-records/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/usage-records/list-get-example-2/{list-get-example-2.4.x.js => list-get-example-2.5.x.js} (100%) rename rest/usage-records/list-get-example-3/{list-get-example-3.4.x.js => list-get-example-3.5.x.js} (100%) rename rest/usage-records/list-get-example-4/{list-get-example-4.4.x.js => list-get-example-4.5.x.js} (100%) rename rest/usage-records/list-get-example-5/{list-get-example-5.4.x.js => list-get-example-5.5.x.js} (100%) rename rest/usage-triggers/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename rest/usage-triggers/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename rest/usage-triggers/list-get-example-1/{list-get-example-1.4.x.js => list-get-example-1.5.x.js} (100%) rename rest/usage-triggers/list-post-example-1/{list-post-example-1.4.x.js => list-post-example-1.5.x.js} (100%) rename rest/voice/generate-twiml-play/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/voice/generate-twiml-say/{generate-twiml-say.4.x.js => generate-twiml-say.5.x.js} (100%) rename rest/voice/outbound-calls/example-1/{example-1.4.x.js => example-1.5.x.js} (100%) rename rest/voice/outbound-calls/example-2/{example-2.4.x.js => example-2.5.x.js} (100%) rename rest/voice/outbound-calls/example-3/{example-3.4.x.js => example-3.5.x.js} (100%) rename rest/voice/outbound-calls/example-4/{example-4.4.x.js => example-4.5.x.js} (100%) rename rest/voice/twiml-recording-action/{recording-action.4.x.js => recording-action.5.x.js} (100%) rename security/environment_variables/{environment-variables-1.4.x.js => environment-variables-1.5.x.js} (100%) rename security/signature_validation/{signature_validation.4.x.js => signature_validation.5.x.js} (100%) rename security/signature_validation_tests/{signature_validation_tests.4.x.js => signature_validation_tests.5.x.js} (100%) rename stun-turn/list-post-example/{list-post-example.4.x.js => list-post-example.5.x.js} (100%) rename super-sim/sims/update-account/{update-account.4.x.js => update-account.5.x.js} (100%) rename sync/rest/document-permissions/delete-permission/{delete-permission.4.x.js => delete-permission.5.x.js} (100%) rename sync/rest/document-permissions/list-permissions/{list-permissions.4.x.js => list-permissions.5.x.js} (100%) rename sync/rest/document-permissions/retrieve-permission/{retrieve-permission.4.x.js => retrieve-permission.5.x.js} (100%) rename sync/rest/document-permissions/update-permission/{update-permission.4.x.js => update-permission.5.x.js} (100%) rename sync/rest/documents/create-document/{create-document.4.x.js => create-document.5.x.js} (100%) rename sync/rest/documents/delete-document/{delete-document.4.x.js => delete-document.5.x.js} (100%) rename sync/rest/documents/list-documents/{list-documents.4.x.js => list-documents.5.x.js} (100%) rename sync/rest/documents/retrieve-document/{retrieve-document.4.x.js => retrieve-document.5.x.js} (100%) rename sync/rest/documents/update-document/{update-document.4.x.js => update-document.5.x.js} (100%) rename sync/rest/list-permissions/delete-permission/{delete-permission.4.x.js => delete-permission.5.x.js} (100%) rename sync/rest/list-permissions/list-permissions/{list-permissions.4.x.js => list-permissions.5.x.js} (100%) rename sync/rest/list-permissions/retrieve-permission/{retrieve-permission.4.x.js => retrieve-permission.5.x.js} (100%) rename sync/rest/list-permissions/update-permission/{update-permission.4.x.js => update-permission.5.x.js} (100%) rename sync/rest/lists/create-list-item/{create-list-item.4.x.js => create-list-item.5.x.js} (100%) rename sync/rest/lists/create-list/{create-list.4.x.js => create-list.5.x.js} (100%) rename sync/rest/lists/delete-list-item/{delete-list-item.4.x.js => delete-list-item.5.x.js} (100%) rename sync/rest/lists/delete-list/{delete-list.4.x.js => delete-list.5.x.js} (100%) rename sync/rest/lists/list-lists/{list-lists.4.x.js => list-lists.5.x.js} (100%) rename sync/rest/lists/query-list/{query-list.4.x.js => query-list.5.x.js} (100%) rename sync/rest/lists/retrieve-list-item/{retrieve-list-item.4.x.js => retrieve-list-item.5.x.js} (100%) rename sync/rest/lists/retrieve-list/{retrieve-list.4.x.js => retrieve-list.5.x.js} (100%) rename sync/rest/lists/update-list-item/{update-list-item.4.x.js => update-list-item.5.x.js} (100%) rename sync/rest/lists/update-list/{update-list.4.x.js => update-list.5.x.js} (100%) rename sync/rest/map-permissions/delete-permission/{delete-permission.4.x.js => delete-permission.5.x.js} (100%) rename sync/rest/map-permissions/list-permissions/{list-permissions.4.x.js => list-permissions.5.x.js} (100%) rename sync/rest/map-permissions/retrieve-permission/{retrieve-permission.4.x.js => retrieve-permission.5.x.js} (100%) rename sync/rest/map-permissions/update-permission/{update-permission.4.x.js => update-permission.5.x.js} (100%) rename sync/rest/maps/create-map-item/{create-map-item.4.x.js => create-map-item.5.x.js} (100%) rename sync/rest/maps/create-map/{create-map.4.x.js => create-map.5.x.js} (100%) rename sync/rest/maps/delete-map-item/{delete-map-item.4.x.js => delete-map-item.5.x.js} (100%) rename sync/rest/maps/delete-map/{delete-map.4.x.js => delete-map.5.x.js} (100%) rename sync/rest/maps/list-maps/{list-maps.4.x.js => list-maps.5.x.js} (100%) rename sync/rest/maps/query-map/{query-map.4.x.js => query-map.5.x.js} (100%) rename sync/rest/maps/retrieve-map-item/{retrieve-map-item.4.x.js => retrieve-map-item.5.x.js} (100%) rename sync/rest/maps/retrieve-map/{retrieve-map.4.x.js => retrieve-map.5.x.js} (100%) rename sync/rest/maps/update-map-item/{update-map-item.4.x.js => update-map-item.5.x.js} (100%) rename sync/rest/maps/update-map/{update-map.4.x.js => update-map.5.x.js} (100%) rename sync/rest/services/create-service-webhook/{create-service-webhook.4.x.js => create-service-webhook.5.x.js} (100%) rename sync/rest/services/create-service/{create-service.4.x.js => create-service.5.x.js} (100%) rename sync/rest/services/delete-service/{delete-service.4.x.js => delete-service.5.x.js} (100%) rename sync/rest/services/list-services/{list-services.4.x.js => list-services.5.x.js} (100%) rename sync/rest/services/retrieve-service/{retrieve-service.4.x.js => retrieve-service.5.x.js} (100%) rename sync/rest/services/update-service/{update-service.4.x.js => update-service.5.x.js} (100%) rename sync/rest/streams/create-stream/{create-stream.4.x.js => create-stream.5.x.js} (100%) rename sync/rest/streams/delete-stream/{delete-stream.4.x.js => delete-stream.5.x.js} (100%) rename sync/rest/streams/list-streams/{list-streams.4.x.js => list-streams.5.x.js} (100%) rename sync/rest/streams/publish-stream-message/{publish-stream-message.4.x.js => publish-stream-message.5.x.js} (100%) rename sync/rest/streams/retrieve-stream/{retrieve-stream.4.x.js => retrieve-stream.5.x.js} (100%) rename sync/rest/streams/update-stream/{update-stream.4.x.js => update-stream.5.x.js} (100%) rename twiml/message/message/message-1/{message-1.4.x.js => message-1.5.x.js} (100%) rename twiml/message/message/message-2/{message-2.4.x.js => message-2.5.x.js} (100%) rename twiml/message/message/message-3/{message-3.4.x.js => message-3.5.x.js} (100%) rename twiml/message/message/message-4/{message-4.4.x.js => message-4.5.x.js} (100%) rename twiml/message/redirect/redirect-1/{redirect-1.4.x.js => redirect-1.5.x.js} (100%) rename twiml/message/redirect/redirect-2/{redirect-2.4.x.js => redirect-2.5.x.js} (100%) rename twiml/message/your-response/your-response-1/{your-response-1.4.x.js => your-response-1.5.x.js} (100%) rename twiml/message/your-response/your-response-2/{your-response-2.4.x.js => your-response-2.5.x.js} (100%) rename twiml/message/your-response/your-response-3/{your-response-3.4.x.js => your-response-3.5.x.js} (100%) rename twiml/voice/application/dial-application-basic/{dial-application-basic.4.x.js => dial-application-basic.5.x.js} (100%) rename twiml/voice/application/dial-application-copyparentto/{dial-application-copyparentto.4.x.js => dial-application-copyparentto.5.x.js} (100%) rename twiml/voice/application/dial-application-customerid/{dial-application-customerid.4.x.js => dial-application-customerid.5.x.js} (100%) rename twiml/voice/application/dial-application-parameter/{dial-application-parameter.4.x.js => dial-application-parameter.5.x.js} (100%) rename twiml/voice/application/hangup-parameter-scenario/{hangup-parameter-scenario.4.x.js => hangup-parameter-scenario.5.x.js} (100%) rename twiml/voice/application/hangup-parameter/{hangup-parameter.4.x.js => hangup-parameter.5.x.js} (100%) rename twiml/voice/application/reject-parameter/{reject-parameter.4.x.js => reject-parameter.5.x.js} (100%) rename twiml/voice/client/client-1/{client-1.4.x.js => client-1.5.x.js} (100%) rename twiml/voice/client/client-2/{client-2.4.x.js => client-2.5.x.js} (100%) rename twiml/voice/client/client-3/{client-3.4.x.js => client-3.5.x.js} (100%) rename twiml/voice/conference/conference-1/{conference-1.4.x.js => conference-1.5.x.js} (100%) rename twiml/voice/conference/conference-10/{conference-10.4.x.js => conference-10.5.x.js} (100%) rename twiml/voice/conference/conference-2/{conference-2.4.x.js => conference-2.5.x.js} (100%) rename twiml/voice/conference/conference-3/{conference-3.4.x.js => conference-3.5.x.js} (100%) rename twiml/voice/conference/conference-4/{conference-4.4.x.js => conference-4.5.x.js} (100%) rename twiml/voice/conference/conference-5/{conference-5.4.x.js => conference-5.5.x.js} (100%) rename twiml/voice/conference/conference-6/{conference-6.4.x.js => conference-6.5.x.js} (100%) rename twiml/voice/conference/conference-7/{conference-7.4.x.js => conference-7.5.x.js} (100%) rename twiml/voice/conference/conference-8/{conference-8.4.x.js => conference-8.5.x.js} (100%) rename twiml/voice/conference/conference-9/{conference-9.4.x.js => conference-9.5.x.js} (100%) rename twiml/voice/connect/autopilot/{connect-1.4.x.js => connect-1.5.x.js} (100%) rename twiml/voice/dial/dial-1/{dial-1.4.x.js => dial-1.5.x.js} (100%) rename twiml/voice/dial/dial-2/{dial-2.4.x.js => dial-2.5.x.js} (100%) rename twiml/voice/dial/dial-3/{dial-3.4.x.js => dial-3.5.x.js} (100%) rename twiml/voice/dial/dial-4/{dial-4.4.x.js => dial-4.5.x.js} (100%) rename twiml/voice/dial/dial-5/{dial-5.4.x.js => dial-5.5.x.js} (100%) rename twiml/voice/dial/dial-6/{dial-6.4.x.js => dial-6.5.x.js} (100%) rename twiml/voice/dial/dial-7/{dial-7.4.x.js => dial-7.5.x.js} (100%) rename twiml/voice/dial/dial-8/{dial-8.4.x.js => dial-8.5.x.js} (100%) rename twiml/voice/dial/dial-9/{dial-9.4.x.js => dial-9.5.x.js} (100%) rename twiml/voice/enqueue/enqueue-1/{enqueue-1.4.x.js => enqueue-1.5.x.js} (100%) rename twiml/voice/enqueue/enqueue-2/{enqueue-2.4.x.js => enqueue-2.5.x.js} (100%) rename twiml/voice/gather/gather-1/{gather-1.4.x.js => gather-1.5.x.js} (100%) rename twiml/voice/gather/gather-2/{gather-2.4.x.js => gather-2.5.x.js} (100%) rename twiml/voice/gather/gather-3/{gather-3.4.x.js => gather-3.5.x.js} (100%) rename twiml/voice/gather/gather-4/{gather-4.4.x.js => gather-4.5.x.js} (100%) rename twiml/voice/gather/gather-5/{gather-5.4.x.js => gather-5.5.x.js} (100%) rename twiml/voice/hangup/hangup-1/{hangup-1.4.x.js => hangup-1.5.x.js} (100%) rename twiml/voice/leave/leave-1/{leave-1.4.x.js => leave-1.5.x.js} (100%) rename twiml/voice/leave/leave-2/{leave-2.4.x.js => leave-2.5.x.js} (100%) rename twiml/voice/leave/leave-3/{leave-3.4.x.js => leave-3.5.x.js} (100%) rename twiml/voice/number/number-1/{number-1.4.x.js => number-1.5.x.js} (100%) rename twiml/voice/number/number-2/{number-2.4.x.js => number-2.5.x.js} (100%) rename twiml/voice/number/number-3/{number-3.4.x.js => number-3.5.x.js} (100%) rename twiml/voice/number/number-4/{number-4.4.x.js => number-4.5.x.js} (100%) rename twiml/voice/number/number-5/{number-5.4.x.js => number-5.5.x.js} (100%) rename twiml/voice/parameter/parameter-1/{parameter-1.4.x.js => parameter-1.5.x.js} (100%) rename twiml/voice/pause/pause-1/{pause-1.4.x.js => pause-1.5.x.js} (100%) rename twiml/voice/pause/pause-2/{pause-2.4.x.js => pause-2.5.x.js} (100%) rename twiml/voice/pay/pay-1/{pay-1.4.x.js => pay-1.5.x.js} (100%) rename twiml/voice/pay/pay-2/{pay-2.4.x.js => pay-2.5.x.js} (100%) rename twiml/voice/pay/pay-3/{pay-3.4.x.js => pay-3.5.x.js} (100%) rename twiml/voice/pay/pay-4/{pay-4.4.x.js => pay-4.5.x.js} (100%) rename twiml/voice/pay/pay-5/{pay-5.4.x.js => pay-5.5.x.js} (100%) rename twiml/voice/pay/pay-6/{pay-6.4.x.js => pay-6.5.x.js} (100%) rename twiml/voice/pay/pay-7/{pay-7.4.x.js => pay-7.5.x.js} (100%) rename twiml/voice/pay/pay-8/{pay-8.4.x.js => pay-8.5.x.js} (100%) rename twiml/voice/pay/pay-9/{pay-9.4.x.js => pay-9.5.x.js} (100%) rename twiml/voice/pay/pay-charge-connector/{pay-charge-connector.4.x.js => pay-charge-connector.5.x.js} (100%) rename twiml/voice/pay/pay-parameter/{pay-parameter.4.x.js => pay-parameter.5.x.js} (100%) rename twiml/voice/pay/pay-tokenize-connector/{pay-tokenize-connector.4.x.js => pay-tokenize-connector.5.x.js} (100%) rename twiml/voice/pay/pay-tokenize/{pay-tokenize.4.x.js => pay-tokenize.5.x.js} (100%) rename twiml/voice/pay/prompt/full-example-ach/{full-example-ach.4.x.js => full-example-ach.5.x.js} (100%) rename twiml/voice/pay/prompt/full-example-credit-card/{full-example-credit-card.4.x.js => full-example-credit-card.5.x.js} (100%) rename twiml/voice/pay/prompt/requireMatchingInputs/basic/{prompt-requireMatchingInputs-basic.4.x.js => prompt-requireMatchingInputs-basic.5.x.js} (100%) rename twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/{prompt-requireMatchingInputs-errorType.4.x.js => prompt-requireMatchingInputs-errorType.5.x.js} (100%) rename twiml/voice/play/play-1/{play-1.4.x.js => play-1.5.x.js} (100%) rename twiml/voice/play/play-2/{play-2.4.x.js => play-2.5.x.js} (100%) rename twiml/voice/play/play-3/{play-3.4.x.js => play-3.5.x.js} (100%) rename twiml/voice/queue/queue-1/{queue-1.4.x.js => queue-1.5.x.js} (100%) rename twiml/voice/queue/queue-2/{queue-2.4.x.js => queue-2.5.x.js} (100%) rename twiml/voice/record/record-1/{record-1.4.x.js => record-1.5.x.js} (100%) rename twiml/voice/record/record-2/{record-2.4.x.js => record-2.5.x.js} (100%) rename twiml/voice/record/record-3/{record-3.4.x.js => record-3.5.x.js} (100%) rename twiml/voice/record/record-4/{record-4.4.x.js => record-4.5.x.js} (100%) rename twiml/voice/redirect/redirect-1/{redirect-1.4.x.js => redirect-1.5.x.js} (100%) rename twiml/voice/redirect/redirect-2/{redirect-2.4.x.js => redirect-2.5.x.js} (100%) rename twiml/voice/redirect/redirect-3/{redirect-3.4.x.js => redirect-3.5.x.js} (100%) rename twiml/voice/refer/refer-1/{refer-1.4.x.js => refer-1.5.x.js} (100%) rename twiml/voice/refer/refer-2/{refer-2.4.x.js => refer-2.5.x.js} (100%) rename twiml/voice/refer/refer-3/{refer-3.4.x.js => refer-3.5.x.js} (100%) rename twiml/voice/refer/refer-4/{refer-4.4.x.js => refer-4.5.x.js} (100%) rename twiml/voice/reject/reject-1/{reject-1.4.x.js => reject-1.5.x.js} (100%) rename twiml/voice/reject/reject-2/{reject-2.4.x.js => reject-2.5.x.js} (100%) rename twiml/voice/say/say-basic-usage/{say-basic-usage.4.x.js => say-basic-usage.5.x.js} (100%) rename twiml/voice/say/say-language/{say-language.4.x.js => say-language.5.x.js} (100%) rename twiml/voice/say/say-loop/{say-loop.4.x.js => say-loop.5.x.js} (100%) rename twiml/voice/say/say-voice/{say-voice.4.x.js => say-voice.5.x.js} (100%) rename twiml/voice/say/ssml/{ssml.4.x.js => ssml.5.x.js} (100%) rename twiml/voice/sim/sim-1/{sim-1.4.x.js => sim-1.5.x.js} (100%) rename twiml/voice/sim/sim-2/{sim-2.4.x.js => sim-2.5.x.js} (100%) rename twiml/voice/sip/sip-1/{sip-1.4.x.js => sip-1.5.x.js} (100%) rename twiml/voice/sip/sip-10/{sip-10.4.x.js => sip-10.5.x.js} (100%) rename twiml/voice/sip/sip-11/{sip-11.4.x.js => sip-11.5.x.js} (100%) rename twiml/voice/sip/sip-12/{sip-12.4.x.js => sip-12.5.x.js} (100%) rename twiml/voice/sip/sip-2/{sip-2.4.x.js => sip-2.5.x.js} (100%) rename twiml/voice/sip/sip-3/{sip-3.4.x.js => sip-3.5.x.js} (100%) rename twiml/voice/sip/sip-4/{sip-4.4.x.js => sip-4.5.x.js} (100%) rename twiml/voice/sip/sip-5/{sip-5.4.x.js => sip-5.5.x.js} (100%) rename twiml/voice/sip/sip-6/{sip-6.4.x.js => sip-6.5.x.js} (100%) rename twiml/voice/sip/sip-7/{sip-7.4.x.js => sip-7.5.x.js} (100%) rename twiml/voice/sip/sip-8/{sip-8.4.x.js => sip-8.5.x.js} (100%) rename twiml/voice/sip/sip-9/{sip-9.4.x.js => sip-9.5.x.js} (100%) rename twiml/voice/siprec/siprec-1/{siprec-1.4.x.js => siprec-1.5.x.js} (100%) rename twiml/voice/sms/sms-1/{sms-1.4.x.js => sms-1.5.x.js} (100%) rename twiml/voice/sms/sms-2/{sms-2.4.x.js => sms-2.5.x.js} (100%) rename twiml/voice/sms/sms-3/{sms-3.4.x.js => sms-3.5.x.js} (100%) rename twiml/voice/sms/sms-4/{sms-4.4.x.js => sms-4.5.x.js} (100%) rename twiml/voice/stream/stream-1/{stream-1.4.x.js => stream-1.5.x.js} (100%) rename twiml/voice/stream/stream-2/{stream-2.4.x.js => stream-2.5.x.js} (100%) rename twiml/voice/your-response/your-response-1/{your-response-1.4.x.js => your-response-1.5.x.js} (100%) rename twiml/voice/your-response/your-response-2/{your-response-2.4.x.js => your-response-2.5.x.js} (100%) rename two-factor-authentication/verify-webhook/{verify-webhook.4.x.js => verify-webhook.5.x.js} (100%) rename verify/verifications/approve-verification/{approve-verification.4.x.js => approve-verification.5.x.js} (100%) rename video/rest/compositionhooks/audio-mixing-hook/{audio-mixing-hook.4.x.js => audio-mixing-hook.5.x.js} (100%) rename video/rest/compositionhooks/complex-layout-hook/{complex-layout-hook.4.x.js => complex-layout-hook.5.x.js} (100%) rename video/rest/compositionhooks/delete-hook/{delete-hook.4.x.js => delete-hook.5.x.js} (100%) rename video/rest/compositionhooks/get-hook/{get-hook.4.x.js => get-hook.5.x.js} (100%) rename video/rest/compositionhooks/grid-mixing-hook/{grid-mixing-hook.4.x.js => grid-mixing-hook.5.x.js} (100%) rename video/rest/compositionhooks/list-hooks/{list-hooks.4.x.js => list-hooks.5.x.js} (100%) rename video/rest/compositionhooks/update-hook/{update-hook.4.x.js => update-hook.5.x.js} (100%) rename video/rest/compositions/compose-chess/{compose-chess.4.x.js => compose-chess.5.x.js} (100%) rename video/rest/compositions/compose-main-with-col-and-pip/{compose-main-with-col-and-pip.4.x.js => compose-main-with-col-and-pip.5.x.js} (100%) rename video/rest/compositions/compose-main-with-row/{compose-main-with-row.4.x.js => compose-main-with-row.5.x.js} (100%) rename video/rest/compositions/compose-mosaic/{compose-mosaic.4.x.js => compose-mosaic.5.x.js} (100%) rename video/rest/compositions/compose-participant-video-with-all-audios/{compose-participant-video-with-all-audios.4.x.js => compose-participant-video-with-all-audios.5.x.js} (100%) rename video/rest/compositions/compose-participant/{compose-participant.4.x.js => compose-participant.5.x.js} (100%) rename video/rest/compositions/compose-pip/{compose-pip.4.x.js => compose-pip.5.x.js} (100%) rename video/rest/compositions/compose-room/{compose-room.4.x.js => compose-room.5.x.js} (100%) rename video/rest/compositions/compose-set-as-row/{compose-set-as-row.4.x.js => compose-set-as-row.5.x.js} (100%) rename video/rest/compositions/compose-set-as-sequence/{compose-set-as-sequence.4.x.js => compose-set-as-sequence.5.x.js} (100%) rename video/rest/compositions/delete-composition/{delete-composition.4.x.js => delete-composition.5.x.js} (100%) rename video/rest/compositions/get-completed-compositions/{get-completed-compositions.4.x.js => get-completed-compositions.5.x.js} (100%) rename video/rest/compositions/get-composition-media-file/{get-composition-media-file.4.x.js => get-composition-media-file.5.x.js} (100%) rename video/rest/compositions/get-composition/{get-composition.4.x.js => get-composition.5.x.js} (100%) rename video/rest/compositions/get-room-compositions/{get-room-compositions.4.x.js => get-room-compositions.5.x.js} (100%) rename video/rest/compositions/transcode-audio-recording/{transcode-audio-recording.4.x.js => transcode-audio-recording.5.x.js} (100%) rename video/rest/compositions/transcode-video-recording/{transcode-video-recording.4.x.js => transcode-video-recording.5.x.js} (100%) rename video/rest/recordings/list-deleted-recordings/{list-deleted-recordings.4.x.js => list-deleted-recordings.5.x.js} (100%) rename video/rest/recordings/list-recordings-for-participant-in-room/{list-recordings-for-participant-in-room.4.x.js => list-recordings-for-participant-in-room.5.x.js} (100%) rename video/rest/recordings/list-recordings-for-participant/{list-recordings-for-participant.4.x.js => list-recordings-for-participant.5.x.js} (100%) rename video/rest/recordings/list-recordings-for-room/{list-recordings-for-room.4.x.js => list-recordings-for-room.5.x.js} (100%) rename video/rest/recordings/retrieve-recording-binary-data/{retrieve-recording-binary-data.4.x.js => retrieve-recording-binary-data.5.x.js} (100%) rename video/rest/recordings/retrieve-recording-by-sid/{retrieve-recording-by-sid.4.x.js => retrieve-recording-by-sid.5.x.js} (100%) rename video/rest/rooms/create-group-room-with-h264/{create-group-room.4.x.js => create-group-room.5.x.js} (100%) rename video/rest/rooms/create-group-room/{create-group-room.4.x.js => create-group-room.5.x.js} (100%) rename video/rest/rooms/create-peer-to-peer-room/{create-peer-to-peer-room.4.x.js => create-peer-to-peer-room.5.x.js} (100%) rename video/rest/rooms/create-room/{create-room.4.x.js => create-room.5.x.js} (100%) rename video/rest/rooms/list-room-recordings/{list-room-recordings.4.x.js => list-room-recordings.5.x.js} (100%) rename video/rest/rooms/list-rooms-filtered-by-name/{list-rooms-filtered-by-name.4.x.js => list-rooms-filtered-by-name.5.x.js} (100%) rename video/rest/rooms/list-rooms-filtered-by-status/{list-rooms-filtered-by-status.4.x.js => list-rooms-filtered-by-status.5.x.js} (100%) rename video/rest/rooms/list-rooms-multiple-filters/{list-rooms-multiple-filters.4.x.js => list-rooms-multiple-filters.5.x.js} (100%) rename video/rest/rooms/participants/list-subscribed-tracks/{list-subscribed-tracks.4.x.js => list-subscribed-tracks.5.x.js} (100%) rename video/rest/rooms/participants/retrieve-subscribe-rules/{retrieve-subscribe-rules.4.x.js => retrieve-subscribe-rules.5.x.js} (100%) rename video/rest/rooms/participants/retrieve-subscribed-track/{retrieve-subscribed-track.4.x.js => retrieve-subscribed-track.5.x.js} (100%) rename video/rest/rooms/participants/unsubscribe-media-transcriber/{update-customer-rules.4.x.js => update-customer-rules.5.x.js} (100%) rename video/rest/rooms/participants/update-subscribe-rules-dynamic/{update-subscribe-rules-dynamic.4.x.js => update-subscribe-rules-dynamic.5.x.js} (100%) rename video/rest/rooms/participants/update-subscribe-rules-static/{update-customer-rules.4.x.js => update-customer-rules.5.x.js} (100%) rename video/rest/rooms/recording-rules-audio-all/{recording-rules-audio-all.4.x.js => recording-rules-audio-all.5.x.js} (100%) rename video/rest/rooms/recording-rules-one-participant/{recording-rules-one-participant.4.x.js => recording-rules-one-participant.5.x.js} (100%) rename video/rest/rooms/recording-rules-start-all/{recording-rules-start-all.4.x.js => recording-rules-start-all.5.x.js} (100%) rename video/rest/rooms/recording-rules-stop-all/{recording-rules-stop-all.4.x.js => recording-rules-stop-all.5.x.js} (100%) rename video/rest/rooms/retrieve-media-for-room-recording/{retrieve-media-for-room-recording.4.x.js => retrieve-media-for-room-recording.5.x.js} (100%) rename video/rest/rooms/retrieve-room-by-sid/{retrieve-room-by-sid.4.x.js => retrieve-room-by-sid.5.x.js} (100%) rename video/rest/rooms/retrieve-room-by-unique-name/{retrieve-room-by-unique-name.4.x.js => retrieve-room-by-unique-name.5.x.js} (100%) rename video/rest/rooms/retrieve-room-recording/{retrieve-room-recording.4.x.js => retrieve-room-recording.5.x.js} (100%) rename video/rest/rooms/update-room-status-to-completed/{update-room-status-to-completed.4.x.js => update-room-status-to-completed.5.x.js} (100%) rename video/users/token-generation-server-rooms/{token-generation-server.4.x.js => token-generation-server.5.x.js} (100%) rename video/users/token-generation-server/{token-generation-server.4.x.js => token-generation-server.5.x.js} (100%) rename voice/queueing/agent/{queue-agent.4.x.js => queue-agent.5.x.js} (100%) rename voice/queueing/caller/{queue-caller.4.x.js => queue-caller.5.x.js} (100%) rename voice/queueing/redirect/{queue-redirect.4.x.js => queue-redirect.5.x.js} (100%) rename voice/specify-edge/{specify-edge.4.x.js => specify-edge.5.x.js} (100%) rename wireless/commands/create-binary-example-1/{create-binary-example-1.4.x.js => create-binary-example-1.5.x.js} (100%) rename wireless/commands/create-text-example-1/{create-text-example-1.4.x.js => create-text-example-1.5.x.js} (100%) rename wireless/commands/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename wireless/commands/list-example-1/{list-example-1.4.x.js => list-example-1.5.x.js} (100%) rename wireless/rateplans/create-example-1/{create-example-1.4.x.js => create-example-1.5.x.js} (100%) rename wireless/rateplans/instance-delete-example-1/{delete-example-1.4.x.js => delete-example-1.5.x.js} (100%) rename wireless/rateplans/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename wireless/rateplans/instance-get-example-2/{instance-get-example-2.4.x.js => instance-get-example-2.5.x.js} (100%) rename wireless/rateplans/list-example-1/{list-example-1.4.x.js => list-example-1.5.x.js} (100%) rename wireless/sims-data-session/list-example-1/{list-example-1.4.x.js => list-example-1.5.x.js} (100%) rename wireless/sims-usage-record/list-example-1/{list-example-1.4.x.js => list-example-1.5.x.js} (100%) rename wireless/sims/instance-get-example-1/{instance-get-example-1.4.x.js => instance-get-example-1.5.x.js} (100%) rename wireless/sims/instance-get-example-2/{instance-get-example-2.4.x.js => instance-get-example-2.5.x.js} (100%) rename wireless/sims/instance-post-example-1/{instance-post-example-1.4.x.js => instance-post-example-1.5.x.js} (100%) rename wireless/sims/list-example-1/{list-example-1.4.x.js => list-example-1.5.x.js} (100%) diff --git a/README.md b/README.md index 9a76b116a0..1cbc43388e 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ snippet-example-1.6.x.java snippet-example-1.7.x.java snippet-example-1.2.x.js - snippet-example-1.4.x.js + snippet-example-1.5.x.js snippet-example-1.6.x.rb snippet-example-1.6.x.cs snippet-example-1.4.x.php diff --git a/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.4.x.js b/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.5.x.js similarity index 100% rename from add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.4.x.js rename to add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.5.x.js diff --git a/api-auth/api-auth.4.x.js b/api-auth/api-auth.5.x.js similarity index 100% rename from api-auth/api-auth.4.x.js rename to api-auth/api-auth.5.x.js diff --git a/client/capability-token-2way/capability-token.4.x.js b/client/capability-token-2way/capability-token.5.x.js similarity index 100% rename from client/capability-token-2way/capability-token.4.x.js rename to client/capability-token-2way/capability-token.5.x.js diff --git a/client/capability-token-expires/capability-token-expires.4.x.js b/client/capability-token-expires/capability-token-expires.5.x.js similarity index 100% rename from client/capability-token-expires/capability-token-expires.4.x.js rename to client/capability-token-expires/capability-token-expires.5.x.js diff --git a/client/capability-token-incoming/capability-token.4.x.js b/client/capability-token-incoming/capability-token.5.x.js similarity index 100% rename from client/capability-token-incoming/capability-token.4.x.js rename to client/capability-token-incoming/capability-token.5.x.js diff --git a/client/capability-token-outgoing/capability-token.4.x.js b/client/capability-token-outgoing/capability-token.5.x.js similarity index 100% rename from client/capability-token-outgoing/capability-token.4.x.js rename to client/capability-token-outgoing/capability-token.5.x.js diff --git a/client/capability-token/capability-token.4.x.js b/client/capability-token/capability-token.5.x.js similarity index 100% rename from client/capability-token/capability-token.4.x.js rename to client/capability-token/capability-token.5.x.js diff --git a/client/response-twiml-client/response-twiml-client.4.x.js b/client/response-twiml-client/response-twiml-client.5.x.js similarity index 100% rename from client/response-twiml-client/response-twiml-client.4.x.js rename to client/response-twiml-client/response-twiml-client.5.x.js diff --git a/client/response-twiml-dial/response-twiml-dial.4.x.js b/client/response-twiml-dial/response-twiml-dial.5.x.js similarity index 100% rename from client/response-twiml-dial/response-twiml-dial.4.x.js rename to client/response-twiml-dial/response-twiml-dial.5.x.js diff --git a/client/response-twiml/response-twiml.4.x.js b/client/response-twiml/response-twiml.5.x.js similarity index 100% rename from client/response-twiml/response-twiml.4.x.js rename to client/response-twiml/response-twiml.5.x.js diff --git a/deployed-devices/quickstarts/sync-boardled/create-document/create-document.4.x.js b/deployed-devices/quickstarts/sync-boardled/create-document/create-document.5.x.js similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/create-document/create-document.4.x.js rename to deployed-devices/quickstarts/sync-boardled/create-document/create-document.5.x.js diff --git a/deployed-devices/quickstarts/sync-boardled/update-document/update-document.4.x.js b/deployed-devices/quickstarts/sync-boardled/update-document/update-document.5.x.js similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/update-document/update-document.4.x.js rename to deployed-devices/quickstarts/sync-boardled/update-document/update-document.5.x.js diff --git a/deployed-devices/rest/certificates/create-certificate/create-certificate.4.x.js b/deployed-devices/rest/certificates/create-certificate/create-certificate.5.x.js similarity index 100% rename from deployed-devices/rest/certificates/create-certificate/create-certificate.4.x.js rename to deployed-devices/rest/certificates/create-certificate/create-certificate.5.x.js diff --git a/deployed-devices/rest/certificates/delete-certificate/delete-certificate.4.x.js b/deployed-devices/rest/certificates/delete-certificate/delete-certificate.5.x.js similarity index 100% rename from deployed-devices/rest/certificates/delete-certificate/delete-certificate.4.x.js rename to deployed-devices/rest/certificates/delete-certificate/delete-certificate.5.x.js diff --git a/deployed-devices/rest/certificates/list-certificates/list-certificates.4.x.js b/deployed-devices/rest/certificates/list-certificates/list-certificates.5.x.js similarity index 100% rename from deployed-devices/rest/certificates/list-certificates/list-certificates.4.x.js rename to deployed-devices/rest/certificates/list-certificates/list-certificates.5.x.js diff --git a/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.4.x.js b/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.5.x.js similarity index 100% rename from deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.4.x.js rename to deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.5.x.js diff --git a/deployed-devices/rest/certificates/update-certificate/update-certificate.4.x.js b/deployed-devices/rest/certificates/update-certificate/update-certificate.5.x.js similarity index 100% rename from deployed-devices/rest/certificates/update-certificate/update-certificate.4.x.js rename to deployed-devices/rest/certificates/update-certificate/update-certificate.5.x.js diff --git a/deployed-devices/rest/deployments/create-deployment/create-deployment.4.x.js b/deployed-devices/rest/deployments/create-deployment/create-deployment.5.x.js similarity index 100% rename from deployed-devices/rest/deployments/create-deployment/create-deployment.4.x.js rename to deployed-devices/rest/deployments/create-deployment/create-deployment.5.x.js diff --git a/deployed-devices/rest/deployments/delete-deployment/delete-deployment.4.x.js b/deployed-devices/rest/deployments/delete-deployment/delete-deployment.5.x.js similarity index 100% rename from deployed-devices/rest/deployments/delete-deployment/delete-deployment.4.x.js rename to deployed-devices/rest/deployments/delete-deployment/delete-deployment.5.x.js diff --git a/deployed-devices/rest/deployments/list-deployments/list-deployments.4.x.js b/deployed-devices/rest/deployments/list-deployments/list-deployments.5.x.js similarity index 100% rename from deployed-devices/rest/deployments/list-deployments/list-deployments.4.x.js rename to deployed-devices/rest/deployments/list-deployments/list-deployments.5.x.js diff --git a/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.4.x.js b/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.5.x.js similarity index 100% rename from deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.4.x.js rename to deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.5.x.js diff --git a/deployed-devices/rest/deployments/update-deployment/update-deployment.4.x.js b/deployed-devices/rest/deployments/update-deployment/update-deployment.5.x.js similarity index 100% rename from deployed-devices/rest/deployments/update-deployment/update-deployment.4.x.js rename to deployed-devices/rest/deployments/update-deployment/update-deployment.5.x.js diff --git a/deployed-devices/rest/devices/create-device/create-device.4.x.js b/deployed-devices/rest/devices/create-device/create-device.5.x.js similarity index 100% rename from deployed-devices/rest/devices/create-device/create-device.4.x.js rename to deployed-devices/rest/devices/create-device/create-device.5.x.js diff --git a/deployed-devices/rest/devices/delete-device/delete-device.4.x.js b/deployed-devices/rest/devices/delete-device/delete-device.5.x.js similarity index 100% rename from deployed-devices/rest/devices/delete-device/delete-device.4.x.js rename to deployed-devices/rest/devices/delete-device/delete-device.5.x.js diff --git a/deployed-devices/rest/devices/list-devices/list-devices.4.x.js b/deployed-devices/rest/devices/list-devices/list-devices.5.x.js similarity index 100% rename from deployed-devices/rest/devices/list-devices/list-devices.4.x.js rename to deployed-devices/rest/devices/list-devices/list-devices.5.x.js diff --git a/deployed-devices/rest/devices/retrieve-device/retrieve-device.4.x.js b/deployed-devices/rest/devices/retrieve-device/retrieve-device.5.x.js similarity index 100% rename from deployed-devices/rest/devices/retrieve-device/retrieve-device.4.x.js rename to deployed-devices/rest/devices/retrieve-device/retrieve-device.5.x.js diff --git a/deployed-devices/rest/devices/update-device/update-device.4.x.js b/deployed-devices/rest/devices/update-device/update-device.5.x.js similarity index 100% rename from deployed-devices/rest/devices/update-device/update-device.4.x.js rename to deployed-devices/rest/devices/update-device/update-device.5.x.js diff --git a/deployed-devices/rest/fleets/create-fleet/create-fleet.4.x.js b/deployed-devices/rest/fleets/create-fleet/create-fleet.5.x.js similarity index 100% rename from deployed-devices/rest/fleets/create-fleet/create-fleet.4.x.js rename to deployed-devices/rest/fleets/create-fleet/create-fleet.5.x.js diff --git a/deployed-devices/rest/fleets/delete-fleet/delete-fleet.4.x.js b/deployed-devices/rest/fleets/delete-fleet/delete-fleet.5.x.js similarity index 100% rename from deployed-devices/rest/fleets/delete-fleet/delete-fleet.4.x.js rename to deployed-devices/rest/fleets/delete-fleet/delete-fleet.5.x.js diff --git a/deployed-devices/rest/fleets/list-fleets/list-fleets.4.x.js b/deployed-devices/rest/fleets/list-fleets/list-fleets.5.x.js similarity index 100% rename from deployed-devices/rest/fleets/list-fleets/list-fleets.4.x.js rename to deployed-devices/rest/fleets/list-fleets/list-fleets.5.x.js diff --git a/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.4.x.js b/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.5.x.js similarity index 100% rename from deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.4.x.js rename to deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.5.x.js diff --git a/deployed-devices/rest/fleets/update-fleet/update-fleet.4.x.js b/deployed-devices/rest/fleets/update-fleet/update-fleet.5.x.js similarity index 100% rename from deployed-devices/rest/fleets/update-fleet/update-fleet.4.x.js rename to deployed-devices/rest/fleets/update-fleet/update-fleet.5.x.js diff --git a/deployed-devices/rest/keys/create-key/create-key.4.x.js b/deployed-devices/rest/keys/create-key/create-key.5.x.js similarity index 100% rename from deployed-devices/rest/keys/create-key/create-key.4.x.js rename to deployed-devices/rest/keys/create-key/create-key.5.x.js diff --git a/deployed-devices/rest/keys/delete-key/delete-key.4.x.js b/deployed-devices/rest/keys/delete-key/delete-key.5.x.js similarity index 100% rename from deployed-devices/rest/keys/delete-key/delete-key.4.x.js rename to deployed-devices/rest/keys/delete-key/delete-key.5.x.js diff --git a/deployed-devices/rest/keys/list-keys/list-key.4.x.js b/deployed-devices/rest/keys/list-keys/list-key.5.x.js similarity index 100% rename from deployed-devices/rest/keys/list-keys/list-key.4.x.js rename to deployed-devices/rest/keys/list-keys/list-key.5.x.js diff --git a/deployed-devices/rest/keys/retrieve-key/retrieve-key.4.x.js b/deployed-devices/rest/keys/retrieve-key/retrieve-key.5.x.js similarity index 100% rename from deployed-devices/rest/keys/retrieve-key/retrieve-key.4.x.js rename to deployed-devices/rest/keys/retrieve-key/retrieve-key.5.x.js diff --git a/deployed-devices/rest/keys/update-key/update-key.4.x.js b/deployed-devices/rest/keys/update-key/update-key.5.x.js similarity index 100% rename from deployed-devices/rest/keys/update-key/update-key.4.x.js rename to deployed-devices/rest/keys/update-key/update-key.5.x.js diff --git a/fax/basic-receive/basic-receive.4.x.js b/fax/basic-receive/basic-receive.5.x.js similarity index 100% rename from fax/basic-receive/basic-receive.4.x.js rename to fax/basic-receive/basic-receive.5.x.js diff --git a/fax/basic-send/basic-send.4.x.js b/fax/basic-send/basic-send.5.x.js similarity index 100% rename from fax/basic-send/basic-send.4.x.js rename to fax/basic-send/basic-send.5.x.js diff --git a/fax/instance-get-example/instance-get-example.4.x.js b/fax/instance-get-example/instance-get-example.5.x.js similarity index 100% rename from fax/instance-get-example/instance-get-example.4.x.js rename to fax/instance-get-example/instance-get-example.5.x.js diff --git a/fax/instance-post-example/instance-post-example.4.x.js b/fax/instance-post-example/instance-post-example.5.x.js similarity index 100% rename from fax/instance-post-example/instance-post-example.4.x.js rename to fax/instance-post-example/instance-post-example.5.x.js diff --git a/fax/list-get-example/list-get-example.4.x.js b/fax/list-get-example/list-get-example.5.x.js similarity index 100% rename from fax/list-get-example/list-get-example.4.x.js rename to fax/list-get-example/list-get-example.5.x.js diff --git a/fax/sip-send/example-1/example-1.4.x.js b/fax/sip-send/example-1/example-1.5.x.js similarity index 100% rename from fax/sip-send/example-1/example-1.4.x.js rename to fax/sip-send/example-1/example-1.5.x.js diff --git a/fax/sip-send/example-2/example-2.4.x.js b/fax/sip-send/example-2/example-2.5.x.js similarity index 100% rename from fax/sip-send/example-2/example-2.4.x.js rename to fax/sip-send/example-2/example-2.5.x.js diff --git a/fax/sip-send/example-3/example-3.4.x.js b/fax/sip-send/example-3/example-3.5.x.js similarity index 100% rename from fax/sip-send/example-3/example-3.4.x.js rename to fax/sip-send/example-3/example-3.5.x.js diff --git a/guides/functions/joke-function/joke-function.4.x.js b/guides/functions/joke-function/joke-function.5.x.js similarity index 100% rename from guides/functions/joke-function/joke-function.4.x.js rename to guides/functions/joke-function/joke-function.5.x.js diff --git a/guides/functions/jokes-function/jokes-function.4.x.js b/guides/functions/jokes-function/jokes-function.5.x.js similarity index 100% rename from guides/functions/jokes-function/jokes-function.4.x.js rename to guides/functions/jokes-function/jokes-function.5.x.js diff --git a/guides/request-validation-express/example-1/example-1.4.x.js b/guides/request-validation-express/example-1/example-1.5.x.js similarity index 100% rename from guides/request-validation-express/example-1/example-1.4.x.js rename to guides/request-validation-express/example-1/example-1.5.x.js diff --git a/guides/request-validation-express/example-2/example-2.4.x.js b/guides/request-validation-express/example-2/example-2.5.x.js similarity index 100% rename from guides/request-validation-express/example-2/example-2.4.x.js rename to guides/request-validation-express/example-2/example-2.5.x.js diff --git a/guides/voice/conference-calls-guide/moderated-conference/moderated-conference.4.x.js b/guides/voice/conference-calls-guide/moderated-conference/moderated-conference.5.x.js similarity index 100% rename from guides/voice/conference-calls-guide/moderated-conference/moderated-conference.4.x.js rename to guides/voice/conference-calls-guide/moderated-conference/moderated-conference.5.x.js diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.4.x.js b/guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.5.x.js similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.4.x.js rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.5.x.js diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.4.x.js b/guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.5.x.js similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.4.x.js rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.5.x.js diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.4.x.js b/guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.5.x.js similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.4.x.js rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.5.x.js diff --git a/guides/voice/record-calls-guide/record-outgoing-call/example-1.4.x.js b/guides/voice/record-calls-guide/record-outgoing-call/example-1.5.x.js similarity index 100% rename from guides/voice/record-calls-guide/record-outgoing-call/example-1.4.x.js rename to guides/voice/record-calls-guide/record-outgoing-call/example-1.5.x.js diff --git a/guides/voice/record-calls-guide/record-twiml-transcribe/example.4.x.js b/guides/voice/record-calls-guide/record-twiml-transcribe/example.5.x.js similarity index 100% rename from guides/voice/record-calls-guide/record-twiml-transcribe/example.4.x.js rename to guides/voice/record-calls-guide/record-twiml-transcribe/example.5.x.js diff --git a/guides/voice/record-calls-guide/record-twiml/example.4.x.js b/guides/voice/record-calls-guide/record-twiml/example.5.x.js similarity index 100% rename from guides/voice/record-calls-guide/record-twiml/example.4.x.js rename to guides/voice/record-calls-guide/record-twiml/example.5.x.js diff --git a/guides/voice/recording-add-on-guide/use-add-on-data/example.4.x.js b/guides/voice/recording-add-on-guide/use-add-on-data/example.5.x.js similarity index 100% rename from guides/voice/recording-add-on-guide/use-add-on-data/example.4.x.js rename to guides/voice/recording-add-on-guide/use-add-on-data/example.5.x.js diff --git a/guides/voice/respond-incoming-calls-guide/respond-add-ons/example.4.x.js b/guides/voice/respond-incoming-calls-guide/respond-add-ons/example.5.x.js similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-add-ons/example.4.x.js rename to guides/voice/respond-incoming-calls-guide/respond-add-ons/example.5.x.js diff --git a/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.4.x.js b/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.5.x.js similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.4.x.js rename to guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.5.x.js diff --git a/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.4.x.js b/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.5.x.js similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.4.x.js rename to guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.5.x.js diff --git a/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.4.x.js b/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.5.x.js similarity index 100% rename from lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.4.x.js rename to lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.5.x.js diff --git a/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.4.x.js b/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.5.x.js similarity index 100% rename from lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.4.x.js rename to lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.5.x.js diff --git a/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.4.x.js b/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.5.x.js similarity index 100% rename from lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.4.x.js rename to lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.5.x.js diff --git a/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.4.x.js b/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.5.x.js similarity index 100% rename from lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.4.x.js rename to lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.5.x.js diff --git a/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.4.x.js b/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.5.x.js similarity index 100% rename from lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.4.x.js rename to lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.5.x.js diff --git a/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.4.x.js b/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.5.x.js similarity index 100% rename from lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.4.x.js rename to lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.5.x.js diff --git a/lookups/lookup-international-basic/lookup-international-basic.4.x.js b/lookups/lookup-international-basic/lookup-international-basic.5.x.js similarity index 100% rename from lookups/lookup-international-basic/lookup-international-basic.4.x.js rename to lookups/lookup-international-basic/lookup-international-basic.5.x.js diff --git a/lookups/lookup-national-basic/lookup-national-basic.4.x.js b/lookups/lookup-national-basic/lookup-national-basic.5.x.js similarity index 100% rename from lookups/lookup-national-basic/lookup-national-basic.4.x.js rename to lookups/lookup-national-basic/lookup-national-basic.5.x.js diff --git a/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.4.x.js b/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.5.x.js similarity index 100% rename from media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.4.x.js rename to media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.5.x.js diff --git a/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.4.x.js b/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.5.x.js similarity index 100% rename from media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.4.x.js rename to media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.5.x.js diff --git a/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.4.x.js b/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.5.x.js similarity index 100% rename from messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.4.x.js rename to messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.5.x.js diff --git a/messaging/link-shortening/link-shortening-sms/link-shortening-sms.4.x.js b/messaging/link-shortening/link-shortening-sms/link-shortening-sms.5.x.js similarity index 100% rename from messaging/link-shortening/link-shortening-sms/link-shortening-sms.4.x.js rename to messaging/link-shortening/link-shortening-sms/link-shortening-sms.5.x.js diff --git a/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.4.x.js b/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.5.x.js similarity index 100% rename from messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.4.x.js rename to messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.5.x.js diff --git a/messaging/services/service-alpha-add/service-alpha-add.4.x.js b/messaging/services/service-alpha-add/service-alpha-add.5.x.js similarity index 100% rename from messaging/services/service-alpha-add/service-alpha-add.4.x.js rename to messaging/services/service-alpha-add/service-alpha-add.5.x.js diff --git a/messaging/services/service-alpha-delete/service-alpha-delete.4.x.js b/messaging/services/service-alpha-delete/service-alpha-delete.5.x.js similarity index 100% rename from messaging/services/service-alpha-delete/service-alpha-delete.4.x.js rename to messaging/services/service-alpha-delete/service-alpha-delete.5.x.js diff --git a/messaging/services/service-alpha-get/service-alpha-get.4.x.js b/messaging/services/service-alpha-get/service-alpha-get.5.x.js similarity index 100% rename from messaging/services/service-alpha-get/service-alpha-get.4.x.js rename to messaging/services/service-alpha-get/service-alpha-get.5.x.js diff --git a/messaging/services/service-alpha-list/service-alpha-list.4.x.js b/messaging/services/service-alpha-list/service-alpha-list.5.x.js similarity index 100% rename from messaging/services/service-alpha-list/service-alpha-list.4.x.js rename to messaging/services/service-alpha-list/service-alpha-list.5.x.js diff --git a/messaging/services/service-create/service-create.4.x.js b/messaging/services/service-create/service-create.5.x.js similarity index 100% rename from messaging/services/service-create/service-create.4.x.js rename to messaging/services/service-create/service-create.5.x.js diff --git a/messaging/services/service-delete/service-delete.4.x.js b/messaging/services/service-delete/service-delete.5.x.js similarity index 100% rename from messaging/services/service-delete/service-delete.4.x.js rename to messaging/services/service-delete/service-delete.5.x.js diff --git a/messaging/services/service-get/service-get.4.x.js b/messaging/services/service-get/service-get.5.x.js similarity index 100% rename from messaging/services/service-get/service-get.4.x.js rename to messaging/services/service-get/service-get.5.x.js diff --git a/messaging/services/service-list/service-list.4.x.js b/messaging/services/service-list/service-list.5.x.js similarity index 100% rename from messaging/services/service-list/service-list.4.x.js rename to messaging/services/service-list/service-list.5.x.js diff --git a/messaging/services/service-multiple-number-add/service-multiple-number-add.4.x.js b/messaging/services/service-multiple-number-add/service-multiple-number-add.5.x.js similarity index 100% rename from messaging/services/service-multiple-number-add/service-multiple-number-add.4.x.js rename to messaging/services/service-multiple-number-add/service-multiple-number-add.5.x.js diff --git a/messaging/services/service-number-add/service-number-add.4.x.js b/messaging/services/service-number-add/service-number-add.5.x.js similarity index 100% rename from messaging/services/service-number-add/service-number-add.4.x.js rename to messaging/services/service-number-add/service-number-add.5.x.js diff --git a/messaging/services/service-number-delete/service-number-delete.4.x.js b/messaging/services/service-number-delete/service-number-delete.5.x.js similarity index 100% rename from messaging/services/service-number-delete/service-number-delete.4.x.js rename to messaging/services/service-number-delete/service-number-delete.5.x.js diff --git a/messaging/services/service-number-get/service-number-get.4.x.js b/messaging/services/service-number-get/service-number-get.5.x.js similarity index 100% rename from messaging/services/service-number-get/service-number-get.4.x.js rename to messaging/services/service-number-get/service-number-get.5.x.js diff --git a/messaging/services/service-number-list/service-number-list.4.x.js b/messaging/services/service-number-list/service-number-list.5.x.js similarity index 100% rename from messaging/services/service-number-list/service-number-list.4.x.js rename to messaging/services/service-number-list/service-number-list.5.x.js diff --git a/messaging/services/service-shortcode-add/service-shortcode-add.4.x.js b/messaging/services/service-shortcode-add/service-shortcode-add.5.x.js similarity index 100% rename from messaging/services/service-shortcode-add/service-shortcode-add.4.x.js rename to messaging/services/service-shortcode-add/service-shortcode-add.5.x.js diff --git a/messaging/services/service-shortcode-delete/service-shortcode-delete.4.x.js b/messaging/services/service-shortcode-delete/service-shortcode-delete.5.x.js similarity index 100% rename from messaging/services/service-shortcode-delete/service-shortcode-delete.4.x.js rename to messaging/services/service-shortcode-delete/service-shortcode-delete.5.x.js diff --git a/messaging/services/service-shortcode-get/service-shortcode-get.4.x.js b/messaging/services/service-shortcode-get/service-shortcode-get.5.x.js similarity index 100% rename from messaging/services/service-shortcode-get/service-shortcode-get.4.x.js rename to messaging/services/service-shortcode-get/service-shortcode-get.5.x.js diff --git a/messaging/services/service-shortcode-list/service-shortcode-list.4.x.js b/messaging/services/service-shortcode-list/service-shortcode-list.5.x.js similarity index 100% rename from messaging/services/service-shortcode-list/service-shortcode-list.4.x.js rename to messaging/services/service-shortcode-list/service-shortcode-list.5.x.js diff --git a/messaging/services/service-update/service-update.4.x.js b/messaging/services/service-update/service-update.5.x.js similarity index 100% rename from messaging/services/service-update/service-update.4.x.js rename to messaging/services/service-update/service-update.5.x.js diff --git a/mobile-identity/identity-match/identity-match-example.4.x.js b/mobile-identity/identity-match/identity-match-example.5.x.js similarity index 100% rename from mobile-identity/identity-match/identity-match-example.4.x.js rename to mobile-identity/identity-match/identity-match-example.5.x.js diff --git a/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.4.x.js b/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.5.x.js similarity index 100% rename from mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.4.x.js rename to mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.5.x.js diff --git a/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.4.x.js b/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.5.x.js similarity index 100% rename from mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.4.x.js rename to mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.5.x.js diff --git a/monitor/alerts/instance-delete-example/instance-delete-example.4.x.js b/monitor/alerts/instance-delete-example/instance-delete-example.5.x.js similarity index 100% rename from monitor/alerts/instance-delete-example/instance-delete-example.4.x.js rename to monitor/alerts/instance-delete-example/instance-delete-example.5.x.js diff --git a/monitor/alerts/instance-get-example/instance-get-example.4.x.js b/monitor/alerts/instance-get-example/instance-get-example.5.x.js similarity index 100% rename from monitor/alerts/instance-get-example/instance-get-example.4.x.js rename to monitor/alerts/instance-get-example/instance-get-example.5.x.js diff --git a/monitor/alerts/list-get-example-all/list-get-example-all.4.x.js b/monitor/alerts/list-get-example-all/list-get-example-all.5.x.js similarity index 100% rename from monitor/alerts/list-get-example-all/list-get-example-all.4.x.js rename to monitor/alerts/list-get-example-all/list-get-example-all.5.x.js diff --git a/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.4.x.js b/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.5.x.js similarity index 100% rename from monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.4.x.js rename to monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.5.x.js diff --git a/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.4.x.js b/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.5.x.js similarity index 100% rename from monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.4.x.js rename to monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.5.x.js diff --git a/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.4.x.js b/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.5.x.js similarity index 100% rename from monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.4.x.js rename to monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.5.x.js diff --git a/monitor/events/list-get-example-date-filter/list-get-example-date-filter.4.x.js b/monitor/events/list-get-example-date-filter/list-get-example-date-filter.5.x.js similarity index 100% rename from monitor/events/list-get-example-date-filter/list-get-example-date-filter.4.x.js rename to monitor/events/list-get-example-date-filter/list-get-example-date-filter.5.x.js diff --git a/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.4.x.js b/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.5.x.js similarity index 100% rename from monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.4.x.js rename to monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.5.x.js diff --git a/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.4.x.js b/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.5.x.js similarity index 100% rename from monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.4.x.js rename to monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.5.x.js diff --git a/notifications/register/create-binding-server-apns/create-binding-server-apn.4.x.js b/notifications/register/create-binding-server-apns/create-binding-server-apn.5.x.js similarity index 100% rename from notifications/register/create-binding-server-apns/create-binding-server-apn.4.x.js rename to notifications/register/create-binding-server-apns/create-binding-server-apn.5.x.js diff --git a/notifications/register/create-binding-server-fcm/create-binding-server-fcm.4.x.js b/notifications/register/create-binding-server-fcm/create-binding-server-fcm.5.x.js similarity index 100% rename from notifications/register/create-binding-server-fcm/create-binding-server-fcm.4.x.js rename to notifications/register/create-binding-server-fcm/create-binding-server-fcm.5.x.js diff --git a/notifications/register/create-binding-server/create-binding-server.4.x.js b/notifications/register/create-binding-server/create-binding-server.5.x.js similarity index 100% rename from notifications/register/create-binding-server/create-binding-server.4.x.js rename to notifications/register/create-binding-server/create-binding-server.5.x.js diff --git a/notifications/register/send-notification-2/send-notification-2.4.x.js b/notifications/register/send-notification-2/send-notification-2.5.x.js similarity index 100% rename from notifications/register/send-notification-2/send-notification-2.4.x.js rename to notifications/register/send-notification-2/send-notification-2.5.x.js diff --git a/notifications/register/send-notification-segment-tag/send-notification-segment-tag.4.x.js b/notifications/register/send-notification-segment-tag/send-notification-segment-tag.5.x.js similarity index 100% rename from notifications/register/send-notification-segment-tag/send-notification-segment-tag.4.x.js rename to notifications/register/send-notification-segment-tag/send-notification-segment-tag.5.x.js diff --git a/notifications/register/send-notification-segment/send-notification-segment.4.x.js b/notifications/register/send-notification-segment/send-notification-segment.5.x.js similarity index 100% rename from notifications/register/send-notification-segment/send-notification-segment.4.x.js rename to notifications/register/send-notification-segment/send-notification-segment.5.x.js diff --git a/notifications/register/send-notification/send-notification.4.x.js b/notifications/register/send-notification/send-notification.5.x.js similarity index 100% rename from notifications/register/send-notification/send-notification.4.x.js rename to notifications/register/send-notification/send-notification.5.x.js diff --git a/notifications/rest/bindings/create-binding/create-binding.4.x.js b/notifications/rest/bindings/create-binding/create-binding.5.x.js similarity index 100% rename from notifications/rest/bindings/create-binding/create-binding.4.x.js rename to notifications/rest/bindings/create-binding/create-binding.5.x.js diff --git a/notifications/rest/bindings/delete-binding/delete-binding.4.x.js b/notifications/rest/bindings/delete-binding/delete-binding.5.x.js similarity index 100% rename from notifications/rest/bindings/delete-binding/delete-binding.4.x.js rename to notifications/rest/bindings/delete-binding/delete-binding.5.x.js diff --git a/notifications/rest/bindings/list-binding/list-binding.4.x.js b/notifications/rest/bindings/list-binding/list-binding.5.x.js similarity index 100% rename from notifications/rest/bindings/list-binding/list-binding.4.x.js rename to notifications/rest/bindings/list-binding/list-binding.5.x.js diff --git a/notifications/rest/bindings/retrieve-binding/retrieve-binding.4.x.js b/notifications/rest/bindings/retrieve-binding/retrieve-binding.5.x.js similarity index 100% rename from notifications/rest/bindings/retrieve-binding/retrieve-binding.4.x.js rename to notifications/rest/bindings/retrieve-binding/retrieve-binding.5.x.js diff --git a/notifications/rest/credentials/create-apn-credential/create-apn-credential.4.x.js b/notifications/rest/credentials/create-apn-credential/create-apn-credential.5.x.js similarity index 100% rename from notifications/rest/credentials/create-apn-credential/create-apn-credential.4.x.js rename to notifications/rest/credentials/create-apn-credential/create-apn-credential.5.x.js diff --git a/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.4.x.js b/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.5.x.js similarity index 100% rename from notifications/rest/credentials/create-fcm-credential/create-fcm-credential.4.x.js rename to notifications/rest/credentials/create-fcm-credential/create-fcm-credential.5.x.js diff --git a/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.4.x.js b/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.5.x.js similarity index 100% rename from notifications/rest/credentials/create-gcm-credential/create-gcm-credential.4.x.js rename to notifications/rest/credentials/create-gcm-credential/create-gcm-credential.5.x.js diff --git a/notifications/rest/credentials/delete-credential/delete-credential.4.x.js b/notifications/rest/credentials/delete-credential/delete-credential.5.x.js similarity index 100% rename from notifications/rest/credentials/delete-credential/delete-credential.4.x.js rename to notifications/rest/credentials/delete-credential/delete-credential.5.x.js diff --git a/notifications/rest/credentials/list-credential/list-credential.4.x.js b/notifications/rest/credentials/list-credential/list-credential.5.x.js similarity index 100% rename from notifications/rest/credentials/list-credential/list-credential.4.x.js rename to notifications/rest/credentials/list-credential/list-credential.5.x.js diff --git a/notifications/rest/credentials/retrieve-credential/retrieve-credential.4.x.js b/notifications/rest/credentials/retrieve-credential/retrieve-credential.5.x.js similarity index 100% rename from notifications/rest/credentials/retrieve-credential/retrieve-credential.4.x.js rename to notifications/rest/credentials/retrieve-credential/retrieve-credential.5.x.js diff --git a/notifications/rest/credentials/update-credential/update-credential.4.x.js b/notifications/rest/credentials/update-credential/update-credential.5.x.js similarity index 100% rename from notifications/rest/credentials/update-credential/update-credential.4.x.js rename to notifications/rest/credentials/update-credential/update-credential.5.x.js diff --git a/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.4.x.js b/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.5.x.js similarity index 100% rename from notifications/rest/notifications/send-notification-detailed/send-notification-detailed.4.x.js rename to notifications/rest/notifications/send-notification-detailed/send-notification-detailed.5.x.js diff --git a/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.4.x.js b/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.5.x.js similarity index 100% rename from notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.4.x.js rename to notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.5.x.js diff --git a/notifications/rest/notifications/send-notification/send-notification.4.x.js b/notifications/rest/notifications/send-notification/send-notification.5.x.js similarity index 100% rename from notifications/rest/notifications/send-notification/send-notification.4.x.js rename to notifications/rest/notifications/send-notification/send-notification.5.x.js diff --git a/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.4.x.js b/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.5.x.js similarity index 100% rename from notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.4.x.js rename to notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.5.x.js diff --git a/notifications/rest/segments/list-segment/list-segment.4.x.js b/notifications/rest/segments/list-segment/list-segment.5.x.js similarity index 100% rename from notifications/rest/segments/list-segment/list-segment.4.x.js rename to notifications/rest/segments/list-segment/list-segment.5.x.js diff --git a/notifications/rest/services/create-service/create-service.4.x.js b/notifications/rest/services/create-service/create-service.5.x.js similarity index 100% rename from notifications/rest/services/create-service/create-service.4.x.js rename to notifications/rest/services/create-service/create-service.5.x.js diff --git a/notifications/rest/services/delete-service/delete-service.4.x.js b/notifications/rest/services/delete-service/delete-service.5.x.js similarity index 100% rename from notifications/rest/services/delete-service/delete-service.4.x.js rename to notifications/rest/services/delete-service/delete-service.5.x.js diff --git a/notifications/rest/services/list-service/list-service.4.x.js b/notifications/rest/services/list-service/list-service.5.x.js similarity index 100% rename from notifications/rest/services/list-service/list-service.4.x.js rename to notifications/rest/services/list-service/list-service.5.x.js diff --git a/notifications/rest/services/retrieve-service/retrieve-service.4.x.js b/notifications/rest/services/retrieve-service/retrieve-service.5.x.js similarity index 100% rename from notifications/rest/services/retrieve-service/retrieve-service.4.x.js rename to notifications/rest/services/retrieve-service/retrieve-service.5.x.js diff --git a/notifications/rest/services/update-service/update-service.4.x.js b/notifications/rest/services/update-service/update-service.5.x.js similarity index 100% rename from notifications/rest/services/update-service/update-service.4.x.js rename to notifications/rest/services/update-service/update-service.5.x.js diff --git a/notifications/rest/users/add-user-to-segment/add-user-to-segment.4.x.js b/notifications/rest/users/add-user-to-segment/add-user-to-segment.5.x.js similarity index 100% rename from notifications/rest/users/add-user-to-segment/add-user-to-segment.4.x.js rename to notifications/rest/users/add-user-to-segment/add-user-to-segment.5.x.js diff --git a/notifications/rest/users/create-user/create-user.4.x.js b/notifications/rest/users/create-user/create-user.5.x.js similarity index 100% rename from notifications/rest/users/create-user/create-user.4.x.js rename to notifications/rest/users/create-user/create-user.5.x.js diff --git a/notifications/rest/users/delete-user/delete-user.4.x.js b/notifications/rest/users/delete-user/delete-user.5.x.js similarity index 100% rename from notifications/rest/users/delete-user/delete-user.4.x.js rename to notifications/rest/users/delete-user/delete-user.5.x.js diff --git a/notifications/rest/users/list-binding-of-user/list-binding-of-user.4.x.js b/notifications/rest/users/list-binding-of-user/list-binding-of-user.5.x.js similarity index 100% rename from notifications/rest/users/list-binding-of-user/list-binding-of-user.4.x.js rename to notifications/rest/users/list-binding-of-user/list-binding-of-user.5.x.js diff --git a/notifications/rest/users/list-users/list-users.4.x.js b/notifications/rest/users/list-users/list-users.5.x.js similarity index 100% rename from notifications/rest/users/list-users/list-users.4.x.js rename to notifications/rest/users/list-users/list-users.5.x.js diff --git a/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.4.x.js b/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.5.x.js similarity index 100% rename from notifications/rest/users/remove-user-from-segment/remove-user-from-segment.4.x.js rename to notifications/rest/users/remove-user-from-segment/remove-user-from-segment.5.x.js diff --git a/notifications/rest/users/retrieve-user/retrieve-user.4.x.js b/notifications/rest/users/retrieve-user/retrieve-user.5.x.js similarity index 100% rename from notifications/rest/users/retrieve-user/retrieve-user.4.x.js rename to notifications/rest/users/retrieve-user/retrieve-user.5.x.js diff --git a/notifications/sms-quickstart/create-binding/create-binding.4.x.js b/notifications/sms-quickstart/create-binding/create-binding.5.x.js similarity index 100% rename from notifications/sms-quickstart/create-binding/create-binding.4.x.js rename to notifications/sms-quickstart/create-binding/create-binding.5.x.js diff --git a/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.4.x.js b/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.5.x.js similarity index 100% rename from notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.4.x.js rename to notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.5.x.js diff --git a/notifications/sms-quickstart/send-notification/send-notification.4.x.js b/notifications/sms-quickstart/send-notification/send-notification.5.x.js similarity index 100% rename from notifications/sms-quickstart/send-notification/send-notification.4.x.js rename to notifications/sms-quickstart/send-notification/send-notification.5.x.js diff --git a/pricing/get-messaging-country/get-messaging-country.4.x.js b/pricing/get-messaging-country/get-messaging-country.5.x.js similarity index 100% rename from pricing/get-messaging-country/get-messaging-country.4.x.js rename to pricing/get-messaging-country/get-messaging-country.5.x.js diff --git a/pricing/get-phone-number-country/get-phone-number-country.4.x.js b/pricing/get-phone-number-country/get-phone-number-country.5.x.js similarity index 100% rename from pricing/get-phone-number-country/get-phone-number-country.4.x.js rename to pricing/get-phone-number-country/get-phone-number-country.5.x.js diff --git a/pricing/get-voice-country/get-voice-country.4.x.js b/pricing/get-voice-country/get-voice-country.5.x.js similarity index 100% rename from pricing/get-voice-country/get-voice-country.4.x.js rename to pricing/get-voice-country/get-voice-country.5.x.js diff --git a/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.4.x.js b/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.5.x.js similarity index 100% rename from pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.4.x.js rename to pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.5.x.js diff --git a/pricing/get-voice-number/get-voice-number.4.x.js b/pricing/get-voice-number/get-voice-number.5.x.js similarity index 100% rename from pricing/get-voice-number/get-voice-number.4.x.js rename to pricing/get-voice-number/get-voice-number.5.x.js diff --git a/pricing/list-messaging-countries/list-messaging-countries.4.x.js b/pricing/list-messaging-countries/list-messaging-countries.5.x.js similarity index 100% rename from pricing/list-messaging-countries/list-messaging-countries.4.x.js rename to pricing/list-messaging-countries/list-messaging-countries.5.x.js diff --git a/pricing/list-phone-number-countries/list-phone-number-countries.4.x.js b/pricing/list-phone-number-countries/list-phone-number-countries.5.x.js similarity index 100% rename from pricing/list-phone-number-countries/list-phone-number-countries.4.x.js rename to pricing/list-phone-number-countries/list-phone-number-countries.5.x.js diff --git a/pricing/list-voice-countries/list-voice-countries.4.x.js b/pricing/list-voice-countries/list-voice-countries.5.x.js similarity index 100% rename from pricing/list-voice-countries/list-voice-countries.4.x.js rename to pricing/list-voice-countries/list-voice-countries.5.x.js diff --git a/proxy/quickstart/add-phone-number/add-phone-number.4.x.js b/proxy/quickstart/add-phone-number/add-phone-number.5.x.js similarity index 100% rename from proxy/quickstart/add-phone-number/add-phone-number.4.x.js rename to proxy/quickstart/add-phone-number/add-phone-number.5.x.js diff --git a/proxy/quickstart/create-participant/create-participant.4.x.js b/proxy/quickstart/create-participant/create-participant.5.x.js similarity index 100% rename from proxy/quickstart/create-participant/create-participant.4.x.js rename to proxy/quickstart/create-participant/create-participant.5.x.js diff --git a/proxy/quickstart/create-service/create-service.4.x.js b/proxy/quickstart/create-service/create-service.5.x.js similarity index 100% rename from proxy/quickstart/create-service/create-service.4.x.js rename to proxy/quickstart/create-service/create-service.5.x.js diff --git a/proxy/quickstart/create-session/create-session.4.x.js b/proxy/quickstart/create-session/create-session.5.x.js similarity index 100% rename from proxy/quickstart/create-session/create-session.4.x.js rename to proxy/quickstart/create-session/create-session.5.x.js diff --git a/proxy/quickstart/send-message/send-message.4.x.js b/proxy/quickstart/send-message/send-message.5.x.js similarity index 100% rename from proxy/quickstart/send-message/send-message.4.x.js rename to proxy/quickstart/send-message/send-message.5.x.js diff --git a/quickstart/node/autopilot/create-first-task/create_hello_world_task.4.x.js b/quickstart/node/autopilot/create-first-task/create_hello_world_task.5.x.js similarity index 100% rename from quickstart/node/autopilot/create-first-task/create_hello_world_task.4.x.js rename to quickstart/node/autopilot/create-first-task/create_hello_world_task.5.x.js diff --git a/quickstart/node/autopilot/create-hello-world-samples/create_hello_world_samples.4.x.js b/quickstart/node/autopilot/create-hello-world-samples/create_hello_world_samples.5.x.js similarity index 100% rename from quickstart/node/autopilot/create-hello-world-samples/create_hello_world_samples.4.x.js rename to quickstart/node/autopilot/create-hello-world-samples/create_hello_world_samples.5.x.js diff --git a/quickstart/node/autopilot/create-joke-samples/create_joke_samples.4.x.js b/quickstart/node/autopilot/create-joke-samples/create_joke_samples.5.x.js similarity index 100% rename from quickstart/node/autopilot/create-joke-samples/create_joke_samples.4.x.js rename to quickstart/node/autopilot/create-joke-samples/create_joke_samples.5.x.js diff --git a/quickstart/node/autopilot/create-joke-task/create_joke_task.4.x.js b/quickstart/node/autopilot/create-joke-task/create_joke_task.5.x.js similarity index 100% rename from quickstart/node/autopilot/create-joke-task/create_joke_task.4.x.js rename to quickstart/node/autopilot/create-joke-task/create_joke_task.5.x.js diff --git a/quickstart/node/autopilot/query-task/query_task.4.x.js b/quickstart/node/autopilot/query-task/query_task.5.x.js similarity index 100% rename from quickstart/node/autopilot/query-task/query_task.4.x.js rename to quickstart/node/autopilot/query-task/query_task.5.x.js diff --git a/rename-files.py b/rename-files.py deleted file mode 100644 index 1ed3a5ba15..0000000000 --- a/rename-files.py +++ /dev/null @@ -1,24 +0,0 @@ -import os - -def rename_files(directory): - # Iterate over all files and directories in the current directory - for root, dirs, files in os.walk(directory): - for filename in files: - # Check if the file ends with "8.x" and has a .py extension - if filename.endswith("8.x.py"): - # Construct the old and new file paths - old_filepath = os.path.join(root, filename) - new_filename = filename.replace("8.x", "9.x") - new_filepath = os.path.join(root, new_filename) - - # Rename the file - os.rename(old_filepath, new_filepath) - print(f"Renamed {old_filepath} to {new_filepath}") - - # Recursively call rename_files for subdirectories - for subdir in dirs: - rename_files(os.path.join(root, subdir)) - -if __name__ == "__main__": - # Start renaming from the current directory - rename_files(os.getcwd()) diff --git a/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.4.x.js b/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.5.x.js similarity index 100% rename from rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.4.x.js rename to rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.5.x.js diff --git a/rest/access-tokens/ip-messaging-example/ip-messaging-example.4.x.js b/rest/access-tokens/ip-messaging-example/ip-messaging-example.5.x.js similarity index 100% rename from rest/access-tokens/ip-messaging-example/ip-messaging-example.4.x.js rename to rest/access-tokens/ip-messaging-example/ip-messaging-example.5.x.js diff --git a/rest/access-tokens/live-example/live-example.4.x.js b/rest/access-tokens/live-example/live-example.5.x.js similarity index 100% rename from rest/access-tokens/live-example/live-example.4.x.js rename to rest/access-tokens/live-example/live-example.5.x.js diff --git a/rest/access-tokens/sync-example/sync-example.4.x.js b/rest/access-tokens/sync-example/sync-example.5.x.js similarity index 100% rename from rest/access-tokens/sync-example/sync-example.4.x.js rename to rest/access-tokens/sync-example/sync-example.5.x.js diff --git a/rest/access-tokens/video-example/video-example.4.x.js b/rest/access-tokens/video-example/video-example.5.x.js similarity index 100% rename from rest/access-tokens/video-example/video-example.4.x.js rename to rest/access-tokens/video-example/video-example.5.x.js diff --git a/rest/access-tokens/voice-example/voice-example.4.x.js b/rest/access-tokens/voice-example/voice-example.5.x.js similarity index 100% rename from rest/access-tokens/voice-example/voice-example.4.x.js rename to rest/access-tokens/voice-example/voice-example.5.x.js diff --git a/rest/accounts/instance-get-example-1/instance-get-example-1.4.x.js b/rest/accounts/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/accounts/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/accounts/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/accounts/instance-post-example-1/instance-post-example-1.4.x.js b/rest/accounts/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/accounts/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/accounts/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/accounts/instance-post-example-2/instance-post-example-2.4.x.js b/rest/accounts/instance-post-example-2/instance-post-example-2.5.x.js similarity index 100% rename from rest/accounts/instance-post-example-2/instance-post-example-2.4.x.js rename to rest/accounts/instance-post-example-2/instance-post-example-2.5.x.js diff --git a/rest/accounts/instance-post-example-3/instance-post-example-3.4.x.js b/rest/accounts/instance-post-example-3/instance-post-example-3.5.x.js similarity index 100% rename from rest/accounts/instance-post-example-3/instance-post-example-3.4.x.js rename to rest/accounts/instance-post-example-3/instance-post-example-3.5.x.js diff --git a/rest/accounts/list-get-example-1/list-get-example-1.4.x.js b/rest/accounts/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/accounts/list-get-example-1/list-get-example-1.4.x.js rename to rest/accounts/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/accounts/list-get-example-2/list-get-example-2.4.x.js b/rest/accounts/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/accounts/list-get-example-2/list-get-example-2.4.x.js rename to rest/accounts/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/addresses/instance-create-example/instance-create-example.4.x.js b/rest/addresses/instance-create-example/instance-create-example.5.x.js similarity index 100% rename from rest/addresses/instance-create-example/instance-create-example.4.x.js rename to rest/addresses/instance-create-example/instance-create-example.5.x.js diff --git a/rest/addresses/instance-get-example-1/instance-get-example-1.4.x.js b/rest/addresses/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/addresses/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/addresses/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.4.x.js b/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.5.x.js similarity index 100% rename from rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.4.x.js rename to rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.5.x.js diff --git a/rest/addresses/list-get-example-1/list-get-example-1.4.x.js b/rest/addresses/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/addresses/list-get-example-1/list-get-example-1.4.x.js rename to rest/addresses/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/addresses/list-get-example-2/list-get-example-2.4.x.js b/rest/addresses/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/addresses/list-get-example-2/list-get-example-2.4.x.js rename to rest/addresses/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/addresses/list-post-example-1/list-post-example-1.4.x.js b/rest/addresses/list-post-example-1/list-post-example-1.5.x.js similarity index 100% rename from rest/addresses/list-post-example-1/list-post-example-1.4.x.js rename to rest/addresses/list-post-example-1/list-post-example-1.5.x.js diff --git a/rest/answering-machine-detection/outgoing-call/outgoing-call-1.4.x.js b/rest/answering-machine-detection/outgoing-call/outgoing-call-1.5.x.js similarity index 100% rename from rest/answering-machine-detection/outgoing-call/outgoing-call-1.4.x.js rename to rest/answering-machine-detection/outgoing-call/outgoing-call-1.5.x.js diff --git a/rest/applications/instance-get-example-1/instance-get-example-1.4.x.js b/rest/applications/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/applications/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/applications/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/applications/instance-post-example-1/instance-post-example-1.4.x.js b/rest/applications/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/applications/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/applications/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/applications/list-get-example-1/list-get-example-1.4.x.js b/rest/applications/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/applications/list-get-example-1/list-get-example-1.4.x.js rename to rest/applications/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/applications/list-get-example-2/list-get-example-2.4.x.js b/rest/applications/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/applications/list-get-example-2/list-get-example-2.4.x.js rename to rest/applications/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/applications/list-post-example-1/list-post-example-1.4.x.js b/rest/applications/list-post-example-1/list-post-example-1.5.x.js similarity index 100% rename from rest/applications/list-post-example-1/list-post-example-1.4.x.js rename to rest/applications/list-post-example-1/list-post-example-1.5.x.js diff --git a/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.4.x.js b/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.4.x.js b/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/authorized-connect-apps/list-get-example-1/list-get-example-1.4.x.js rename to rest/authorized-connect-apps/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.4.x.js b/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.4.x.js rename to rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.5.x.js diff --git a/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.4.x.js b/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.4.x.js rename to rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.5.x.js diff --git a/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.4.x.js b/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.4.x.js rename to rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.5.x.js diff --git a/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.4.x.js b/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.4.x.js rename to rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.5.x.js diff --git a/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.4.x.js b/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.4.x.js rename to rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.5.x.js diff --git a/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.4.x.js b/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.4.x.js rename to rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.5.x.js diff --git a/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.4.x.js b/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.4.x.js rename to rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.5.x.js diff --git a/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.4.x.js b/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.4.x.js rename to rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.5.x.js diff --git a/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.4.x.js b/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.5.x.js similarity index 100% rename from rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.4.x.js rename to rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.5.x.js diff --git a/rest/available-phone-numbers/mobile-example/mobile-get-example-1.4.x.js b/rest/available-phone-numbers/mobile-example/mobile-get-example-1.5.x.js similarity index 100% rename from rest/available-phone-numbers/mobile-example/mobile-get-example-1.4.x.js rename to rest/available-phone-numbers/mobile-example/mobile-get-example-1.5.x.js diff --git a/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.4.x.js b/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.5.x.js similarity index 100% rename from rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.4.x.js rename to rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.5.x.js diff --git a/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.4.x.js b/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.5.x.js similarity index 100% rename from rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.4.x.js rename to rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.5.x.js diff --git a/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.4.x.js b/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.5.x.js similarity index 100% rename from rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.4.x.js rename to rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.5.x.js diff --git a/rest/call-feedback/instance-get-example-1/instance-get-example-1.4.x.js b/rest/call-feedback/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/call-feedback/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/call-feedback/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/call-feedback/instance-post-example-1/instance-post-example-1.4.x.js b/rest/call-feedback/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/call-feedback/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/call-feedback/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.4.x.js b/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.5.x.js similarity index 100% rename from rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.4.x.js rename to rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.5.x.js diff --git a/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.4.x.js b/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.5.x.js similarity index 100% rename from rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.4.x.js rename to rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.5.x.js diff --git a/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.4.x.js b/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.5.x.js similarity index 100% rename from rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.4.x.js rename to rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.5.x.js diff --git a/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.4.x.js b/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.5.x.js similarity index 100% rename from rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.4.x.js rename to rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.5.x.js diff --git a/rest/call/instance-get-example-1/instance-get-example-1.4.x.js b/rest/call/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/call/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/call/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/call/list-get-example-1/list-get-example-1.4.x.js b/rest/call/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/call/list-get-example-1/list-get-example-1.4.x.js rename to rest/call/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/call/list-get-example-2/list-get-example-2.4.x.js b/rest/call/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/call/list-get-example-2/list-get-example-2.4.x.js rename to rest/call/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/call/list-get-example-3/list-get-example-3.4.x.js b/rest/call/list-get-example-3/list-get-example-3.5.x.js similarity index 100% rename from rest/call/list-get-example-3/list-get-example-3.4.x.js rename to rest/call/list-get-example-3/list-get-example-3.5.x.js diff --git a/rest/call/list-get-example-4/list-get-example-4.4.x.js b/rest/call/list-get-example-4/list-get-example-4.5.x.js similarity index 100% rename from rest/call/list-get-example-4/list-get-example-4.4.x.js rename to rest/call/list-get-example-4/list-get-example-4.5.x.js diff --git a/rest/call/list-get-example-6/list-get-example-6.4.x.js b/rest/call/list-get-example-6/list-get-example-6.5.x.js similarity index 100% rename from rest/call/list-get-example-6/list-get-example-6.4.x.js rename to rest/call/list-get-example-6/list-get-example-6.5.x.js diff --git a/rest/call/list-get-example-7/list-get-example-7.4.x.js b/rest/call/list-get-example-7/list-get-example-7.5.x.js similarity index 100% rename from rest/call/list-get-example-7/list-get-example-7.4.x.js rename to rest/call/list-get-example-7/list-get-example-7.5.x.js diff --git a/rest/change-call-state/example-1/example-1.4.x.js b/rest/change-call-state/example-1/example-1.5.x.js similarity index 100% rename from rest/change-call-state/example-1/example-1.4.x.js rename to rest/change-call-state/example-1/example-1.5.x.js diff --git a/rest/change-call-state/list-get-example-2/list-get-example-2.4.x.js b/rest/change-call-state/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/change-call-state/list-get-example-2/list-get-example-2.4.x.js rename to rest/change-call-state/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/conference/instance-get-example-1/instance-get-example-1.4.x.js b/rest/conference/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/conference/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/conference/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/conference/list-get-example-1/list-get-example-1.4.x.js b/rest/conference/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/conference/list-get-example-1/list-get-example-1.4.x.js rename to rest/conference/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/conference/list-get-example-2/list-get-example-2.4.x.js b/rest/conference/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/conference/list-get-example-2/list-get-example-2.4.x.js rename to rest/conference/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/conference/list-get-example-3/list-get-example-3.4.x.js b/rest/conference/list-get-example-3/list-get-example-3.5.x.js similarity index 100% rename from rest/conference/list-get-example-3/list-get-example-3.4.x.js rename to rest/conference/list-get-example-3/list-get-example-3.5.x.js diff --git a/rest/conference/list-get-example-4/list-get-example-4.4.x.js b/rest/conference/list-get-example-4/list-get-example-4.5.x.js similarity index 100% rename from rest/conference/list-get-example-4/list-get-example-4.4.x.js rename to rest/conference/list-get-example-4/list-get-example-4.5.x.js diff --git a/rest/connect-apps/instance-get-example-1/instance-get-example-1.4.x.js b/rest/connect-apps/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/connect-apps/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/connect-apps/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/connect-apps/list-get-example-1/list-get-example-1.4.x.js b/rest/connect-apps/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/connect-apps/list-get-example-1/list-get-example-1.4.x.js rename to rest/connect-apps/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.4.x.js b/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.4.x.js b/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.4.x.js b/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.4.x.js rename to rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.4.x.js b/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.4.x.js rename to rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.4.x.js b/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.5.x.js similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.4.x.js rename to rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.5.x.js diff --git a/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.4.x.js b/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.5.x.js similarity index 100% rename from rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.4.x.js rename to rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.5.x.js diff --git a/rest/keys/instance-get-example/instance-get-example.4.x.js b/rest/keys/instance-get-example/instance-get-example.5.x.js similarity index 100% rename from rest/keys/instance-get-example/instance-get-example.4.x.js rename to rest/keys/instance-get-example/instance-get-example.5.x.js diff --git a/rest/keys/list-get-example/list-get-example.4.x.js b/rest/keys/list-get-example/list-get-example.5.x.js similarity index 100% rename from rest/keys/list-get-example/list-get-example.4.x.js rename to rest/keys/list-get-example/list-get-example.5.x.js diff --git a/rest/keys/list-post-example/list-post-example.4.x.js b/rest/keys/list-post-example/list-post-example.5.x.js similarity index 100% rename from rest/keys/list-post-example/list-post-example.4.x.js rename to rest/keys/list-post-example/list-post-example.5.x.js diff --git a/rest/keys/using-keys-example/example.4.x.js b/rest/keys/using-keys-example/example.5.x.js similarity index 100% rename from rest/keys/using-keys-example/example.4.x.js rename to rest/keys/using-keys-example/example.5.x.js diff --git a/rest/making-calls-sip/example-1/example-1.4.x.js b/rest/making-calls-sip/example-1/example-1.5.x.js similarity index 100% rename from rest/making-calls-sip/example-1/example-1.4.x.js rename to rest/making-calls-sip/example-1/example-1.5.x.js diff --git a/rest/making-calls-sip/example-2/example-2.4.x.js b/rest/making-calls-sip/example-2/example-2.5.x.js similarity index 100% rename from rest/making-calls-sip/example-2/example-2.4.x.js rename to rest/making-calls-sip/example-2/example-2.5.x.js diff --git a/rest/making-calls-sip/example-3/example-3.4.x.js b/rest/making-calls-sip/example-3/example-3.5.x.js similarity index 100% rename from rest/making-calls-sip/example-3/example-3.4.x.js rename to rest/making-calls-sip/example-3/example-3.5.x.js diff --git a/rest/making-calls/example-1/example-1.4.x.js b/rest/making-calls/example-1/example-1.5.x.js similarity index 100% rename from rest/making-calls/example-1/example-1.4.x.js rename to rest/making-calls/example-1/example-1.5.x.js diff --git a/rest/making-calls/example-2/example-2.4.x.js b/rest/making-calls/example-2/example-2.5.x.js similarity index 100% rename from rest/making-calls/example-2/example-2.4.x.js rename to rest/making-calls/example-2/example-2.5.x.js diff --git a/rest/making-calls/example-3/example-3.4.x.js b/rest/making-calls/example-3/example-3.5.x.js similarity index 100% rename from rest/making-calls/example-3/example-3.4.x.js rename to rest/making-calls/example-3/example-3.5.x.js diff --git a/rest/making-calls/example-4/example-4.4.x.js b/rest/making-calls/example-4/example-4.5.x.js similarity index 100% rename from rest/making-calls/example-4/example-4.4.x.js rename to rest/making-calls/example-4/example-4.5.x.js diff --git a/rest/media/instance-delete-example-1/instance-delete-example-1.4.x.js b/rest/media/instance-delete-example-1/instance-delete-example-1.5.x.js similarity index 100% rename from rest/media/instance-delete-example-1/instance-delete-example-1.4.x.js rename to rest/media/instance-delete-example-1/instance-delete-example-1.5.x.js diff --git a/rest/media/list-get-example-1/list-get-example-1.4.x.js b/rest/media/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/media/list-get-example-1/list-get-example-1.4.x.js rename to rest/media/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/member/instance-get-example-1/instance-get-example-1.4.x.js b/rest/member/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/member/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/member/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/member/instance-post-example-1/instance-post-example-1.4.x.js b/rest/member/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/member/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/member/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/member/instance-post-example-2/instance-post-example-2.4.x.js b/rest/member/instance-post-example-2/instance-post-example-2.5.x.js similarity index 100% rename from rest/member/instance-post-example-2/instance-post-example-2.4.x.js rename to rest/member/instance-post-example-2/instance-post-example-2.5.x.js diff --git a/rest/member/list-get-example-1/list-get-example-1.4.x.js b/rest/member/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/member/list-get-example-1/list-get-example-1.4.x.js rename to rest/member/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/message/instance-delete/example-1.4.x.js b/rest/message/instance-delete/example-1.5.x.js similarity index 100% rename from rest/message/instance-delete/example-1.4.x.js rename to rest/message/instance-delete/example-1.5.x.js diff --git a/rest/message/instance-get-example-1/instance-get-example-1.4.x.js b/rest/message/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/message/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/message/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/message/instance-post-example-1/instance-post-example-1.4.x.js b/rest/message/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/message/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/message/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/message/list-get-example-1/list-get-example-1.4.x.js b/rest/message/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/message/list-get-example-1/list-get-example-1.4.x.js rename to rest/message/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/message/list-get-example-2/list-get-example-2.4.x.js b/rest/message/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/message/list-get-example-2/list-get-example-2.4.x.js rename to rest/message/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/messages/feedback-confirm/feedback-confirm.4.x.js b/rest/messages/feedback-confirm/feedback-confirm.5.x.js similarity index 100% rename from rest/messages/feedback-confirm/feedback-confirm.4.x.js rename to rest/messages/feedback-confirm/feedback-confirm.5.x.js diff --git a/rest/messages/feedback-send-sms/feedback-send-sms.4.x.js b/rest/messages/feedback-send-sms/feedback-send-sms.5.x.js similarity index 100% rename from rest/messages/feedback-send-sms/feedback-send-sms.4.x.js rename to rest/messages/feedback-send-sms/feedback-send-sms.5.x.js diff --git a/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.4.x.js b/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.5.x.js similarity index 100% rename from rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.4.x.js rename to rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.5.x.js diff --git a/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.4.x.js b/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.5.x.js similarity index 100% rename from rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.4.x.js rename to rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.5.x.js diff --git a/rest/messages/generate-twiml-mms/generate-twiml-mms.4.x.js b/rest/messages/generate-twiml-mms/generate-twiml-mms.5.x.js similarity index 100% rename from rest/messages/generate-twiml-mms/generate-twiml-mms.4.x.js rename to rest/messages/generate-twiml-mms/generate-twiml-mms.5.x.js diff --git a/rest/messages/generate-twiml-sms-voice/example-1.4.x.js b/rest/messages/generate-twiml-sms-voice/example-1.5.x.js similarity index 100% rename from rest/messages/generate-twiml-sms-voice/example-1.4.x.js rename to rest/messages/generate-twiml-sms-voice/example-1.5.x.js diff --git a/rest/messages/generate-twiml-sms/generate-twiml-sms.4.x.js b/rest/messages/generate-twiml-sms/generate-twiml-sms.5.x.js similarity index 100% rename from rest/messages/generate-twiml-sms/generate-twiml-sms.4.x.js rename to rest/messages/generate-twiml-sms/generate-twiml-sms.5.x.js diff --git a/rest/messages/send-message/example-1.4.x.js b/rest/messages/send-message/example-1.5.x.js similarity index 100% rename from rest/messages/send-message/example-1.4.x.js rename to rest/messages/send-message/example-1.5.x.js diff --git a/rest/messages/send-messages-copilot/send-messages-copilot.4.x.js b/rest/messages/send-messages-copilot/send-messages-copilot.5.x.js similarity index 100% rename from rest/messages/send-messages-copilot/send-messages-copilot.4.x.js rename to rest/messages/send-messages-copilot/send-messages-copilot.5.x.js diff --git a/rest/messages/send-sms-callback/send-sms-callback.4.x.js b/rest/messages/send-sms-callback/send-sms-callback.5.x.js similarity index 100% rename from rest/messages/send-sms-callback/send-sms-callback.4.x.js rename to rest/messages/send-sms-callback/send-sms-callback.5.x.js diff --git a/rest/messages/send-sms/send-sms.4.x.js b/rest/messages/send-sms/send-sms.5.x.js similarity index 100% rename from rest/messages/send-sms/send-sms.4.x.js rename to rest/messages/send-sms/send-sms.5.x.js diff --git a/rest/messages/sms-conversation-tracking/sms-conversation-tracking.4.x.js b/rest/messages/sms-conversation-tracking/sms-conversation-tracking.5.x.js similarity index 100% rename from rest/messages/sms-conversation-tracking/sms-conversation-tracking.4.x.js rename to rest/messages/sms-conversation-tracking/sms-conversation-tracking.5.x.js diff --git a/rest/messages/sms-handle-callback/sms-handle-callback.4.x.js b/rest/messages/sms-handle-callback/sms-handle-callback.5.x.js similarity index 100% rename from rest/messages/sms-handle-callback/sms-handle-callback.4.x.js rename to rest/messages/sms-handle-callback/sms-handle-callback.5.x.js diff --git a/rest/notification/instance-delete-examples/instance-delete-examples.4.x.js b/rest/notification/instance-delete-examples/instance-delete-examples.5.x.js similarity index 100% rename from rest/notification/instance-delete-examples/instance-delete-examples.4.x.js rename to rest/notification/instance-delete-examples/instance-delete-examples.5.x.js diff --git a/rest/notification/instance-get-example-1/instance-get-example-1.4.x.js b/rest/notification/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/notification/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/notification/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/notification/list-get-example-1/list-get-example-1.4.x.js b/rest/notification/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/notification/list-get-example-1/list-get-example-1.4.x.js rename to rest/notification/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/notification/list-get-example-2/list-get-example-2.4.x.js b/rest/notification/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/notification/list-get-example-2/list-get-example-2.4.x.js rename to rest/notification/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/notification/list-get-example-3/list-get-example-3.4.x.js b/rest/notification/list-get-example-3/list-get-example-3.5.x.js similarity index 100% rename from rest/notification/list-get-example-3/list-get-example-3.4.x.js rename to rest/notification/list-get-example-3/list-get-example-3.5.x.js diff --git a/rest/notification/list-get-example-4/list-get-example-4.4.x.js b/rest/notification/list-get-example-4/list-get-example-4.5.x.js similarity index 100% rename from rest/notification/list-get-example-4/list-get-example-4.4.x.js rename to rest/notification/list-get-example-4/list-get-example-4.5.x.js diff --git a/rest/outgoing-caller-ids/instance-delete/instance-delete.4.x.js b/rest/outgoing-caller-ids/instance-delete/instance-delete.5.x.js similarity index 100% rename from rest/outgoing-caller-ids/instance-delete/instance-delete.4.x.js rename to rest/outgoing-caller-ids/instance-delete/instance-delete.5.x.js diff --git a/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.4.x.js b/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.4.x.js b/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.4.x.js b/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.4.x.js rename to rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.4.x.js b/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.4.x.js rename to rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.4.x.js b/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.5.x.js similarity index 100% rename from rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.4.x.js rename to rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.5.x.js diff --git a/rest/participant/instance-delete-example-1/instance-delete-example-1.4.x.js b/rest/participant/instance-delete-example-1/instance-delete-example-1.5.x.js similarity index 100% rename from rest/participant/instance-delete-example-1/instance-delete-example-1.4.x.js rename to rest/participant/instance-delete-example-1/instance-delete-example-1.5.x.js diff --git a/rest/participant/instance-get-example-1/instance-get-example-1.4.x.js b/rest/participant/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/participant/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/participant/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/participant/instance-post-example-1/instance-post-example-1.4.x.js b/rest/participant/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/participant/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/participant/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/participant/instance-post-example-2/instance-post-example-2.4.x.js b/rest/participant/instance-post-example-2/instance-post-example-2.5.x.js similarity index 100% rename from rest/participant/instance-post-example-2/instance-post-example-2.4.x.js rename to rest/participant/instance-post-example-2/instance-post-example-2.5.x.js diff --git a/rest/participant/list-get-example-1/list-get-example-1.4.x.js b/rest/participant/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/participant/list-get-example-1/list-get-example-1.4.x.js rename to rest/participant/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/participant/list-post-example-1/list-post-example-1.4.x.js b/rest/participant/list-post-example-1/list-post-example-1.5.x.js similarity index 100% rename from rest/participant/list-post-example-1/list-post-example-1.4.x.js rename to rest/participant/list-post-example-1/list-post-example-1.5.x.js diff --git a/rest/queue/instance-get-example-1/instance-get-example-1.4.x.js b/rest/queue/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/queue/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/queue/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/queue/instance-post-example-1/instance-post-example-1.4.x.js b/rest/queue/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/queue/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/queue/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/queue/list-get-example-1/list-get-example-1.4.x.js b/rest/queue/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/queue/list-get-example-1/list-get-example-1.4.x.js rename to rest/queue/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/queue/list-post-example-1/list-post-example-1.4.x.js b/rest/queue/list-post-example-1/list-post-example-1.5.x.js similarity index 100% rename from rest/queue/list-post-example-1/list-post-example-1.4.x.js rename to rest/queue/list-post-example-1/list-post-example-1.5.x.js diff --git a/rest/recording/get-recording-xml/get-recording-xml.4.x.js b/rest/recording/get-recording-xml/get-recording-xml.5.x.js similarity index 100% rename from rest/recording/get-recording-xml/get-recording-xml.4.x.js rename to rest/recording/get-recording-xml/get-recording-xml.5.x.js diff --git a/rest/recording/instance-delete-examples/instance-delete-examples.4.x.js b/rest/recording/instance-delete-examples/instance-delete-examples.5.x.js similarity index 100% rename from rest/recording/instance-delete-examples/instance-delete-examples.4.x.js rename to rest/recording/instance-delete-examples/instance-delete-examples.5.x.js diff --git a/rest/recording/list-get-example-1/list-get-example-1.4.x.js b/rest/recording/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/recording/list-get-example-1/list-get-example-1.4.x.js rename to rest/recording/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/recording/list-get-example-2/list-get-example-2.4.x.js b/rest/recording/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/recording/list-get-example-2/list-get-example-2.4.x.js rename to rest/recording/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/recording/list-get-example-3/list-get-example-3.4.x.js b/rest/recording/list-get-example-3/list-get-example-3.5.x.js similarity index 100% rename from rest/recording/list-get-example-3/list-get-example-3.4.x.js rename to rest/recording/list-get-example-3/list-get-example-3.5.x.js diff --git a/rest/recording/list-get-example-4/list-get-example-4.4.x.js b/rest/recording/list-get-example-4/list-get-example-4.5.x.js similarity index 100% rename from rest/recording/list-get-example-4/list-get-example-4.4.x.js rename to rest/recording/list-get-example-4/list-get-example-4.5.x.js diff --git a/rest/recording/list-get-example-5/list-get-example-5.4.x.js b/rest/recording/list-get-example-5/list-get-example-5.5.x.js similarity index 100% rename from rest/recording/list-get-example-5/list-get-example-5.4.x.js rename to rest/recording/list-get-example-5/list-get-example-5.5.x.js diff --git a/rest/recording/list-recording-transcriptions/list-recording-transcriptions-4.x.js b/rest/recording/list-recording-transcriptions/list-recording-transcriptions-5.x.js similarity index 100% rename from rest/recording/list-recording-transcriptions/list-recording-transcriptions-4.x.js rename to rest/recording/list-recording-transcriptions/list-recording-transcriptions-5.x.js diff --git a/rest/sending-messages/example-1/example-1.4.x.js b/rest/sending-messages/example-1/example-1.5.x.js similarity index 100% rename from rest/sending-messages/example-1/example-1.4.x.js rename to rest/sending-messages/example-1/example-1.5.x.js diff --git a/rest/short-codes/instance-get-example-1/instance-get-example-1.4.x.js b/rest/short-codes/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/short-codes/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/short-codes/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/short-codes/instance-post-example-1/instance-post-example-1.4.x.js b/rest/short-codes/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/short-codes/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/short-codes/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/short-codes/list-get-example-1/list-get-example-1.4.x.js b/rest/short-codes/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/short-codes/list-get-example-1/list-get-example-1.4.x.js rename to rest/short-codes/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/short-codes/list-get-example-2/list-get-example-2.4.x.js b/rest/short-codes/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/short-codes/list-get-example-2/list-get-example-2.4.x.js rename to rest/short-codes/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/short-codes/list-get-example-3/list-get-example-3.4.x.js b/rest/short-codes/list-get-example-3/list-get-example-3.5.x.js similarity index 100% rename from rest/short-codes/list-get-example-3/list-get-example-3.4.x.js rename to rest/short-codes/list-get-example-3/list-get-example-3.5.x.js diff --git a/rest/sip-in/associate-control-domain/associate-control-domain.4.x.js b/rest/sip-in/associate-control-domain/associate-control-domain.5.x.js similarity index 100% rename from rest/sip-in/associate-control-domain/associate-control-domain.4.x.js rename to rest/sip-in/associate-control-domain/associate-control-domain.5.x.js diff --git a/rest/sip-in/create-acl-address/create-acl-address.4.x.js b/rest/sip-in/create-acl-address/create-acl-address.5.x.js similarity index 100% rename from rest/sip-in/create-acl-address/create-acl-address.4.x.js rename to rest/sip-in/create-acl-address/create-acl-address.5.x.js diff --git a/rest/sip-in/create-credential-list/create-credential-list.4.x.js b/rest/sip-in/create-credential-list/create-credential-list.5.x.js similarity index 100% rename from rest/sip-in/create-credential-list/create-credential-list.4.x.js rename to rest/sip-in/create-credential-list/create-credential-list.5.x.js diff --git a/rest/sip-in/create-credential/create-credential.4.x.js b/rest/sip-in/create-credential/create-credential.5.x.js similarity index 100% rename from rest/sip-in/create-credential/create-credential.4.x.js rename to rest/sip-in/create-credential/create-credential.5.x.js diff --git a/rest/sip-in/create-domain/create-domain.4.x.js b/rest/sip-in/create-domain/create-domain.5.x.js similarity index 100% rename from rest/sip-in/create-domain/create-domain.4.x.js rename to rest/sip-in/create-domain/create-domain.5.x.js diff --git a/rest/sip-in/create-ip-acl/create-ip-acl.4.x.js b/rest/sip-in/create-ip-acl/create-ip-acl.5.x.js similarity index 100% rename from rest/sip-in/create-ip-acl/create-ip-acl.4.x.js rename to rest/sip-in/create-ip-acl/create-ip-acl.5.x.js diff --git a/rest/sip-in/delete-access-mapping-old/delete-access-mapping.4.x.js b/rest/sip-in/delete-access-mapping-old/delete-access-mapping.5.x.js similarity index 100% rename from rest/sip-in/delete-access-mapping-old/delete-access-mapping.4.x.js rename to rest/sip-in/delete-access-mapping-old/delete-access-mapping.5.x.js diff --git a/rest/sip-in/delete-access-mapping/delete-access-mapping.4.x.js b/rest/sip-in/delete-access-mapping/delete-access-mapping.5.x.js similarity index 100% rename from rest/sip-in/delete-access-mapping/delete-access-mapping.4.x.js rename to rest/sip-in/delete-access-mapping/delete-access-mapping.5.x.js diff --git a/rest/sip-in/delete-address-instance/delete-address-instance.4.x.js b/rest/sip-in/delete-address-instance/delete-address-instance.5.x.js similarity index 100% rename from rest/sip-in/delete-address-instance/delete-address-instance.4.x.js rename to rest/sip-in/delete-address-instance/delete-address-instance.5.x.js diff --git a/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.4.x.js b/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.5.x.js similarity index 100% rename from rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.4.x.js rename to rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.5.x.js diff --git a/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.4.x.js b/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.5.x.js similarity index 100% rename from rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.4.x.js rename to rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.5.x.js diff --git a/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.4.x.js b/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.5.x.js similarity index 100% rename from rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.4.x.js rename to rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.5.x.js diff --git a/rest/sip-in/delete-credential/delete-credential.4.x.js b/rest/sip-in/delete-credential/delete-credential.5.x.js similarity index 100% rename from rest/sip-in/delete-credential/delete-credential.4.x.js rename to rest/sip-in/delete-credential/delete-credential.5.x.js diff --git a/rest/sip-in/delete-domain-instance/delete-domain-instance.4.x.js b/rest/sip-in/delete-domain-instance/delete-domain-instance.5.x.js similarity index 100% rename from rest/sip-in/delete-domain-instance/delete-domain-instance.4.x.js rename to rest/sip-in/delete-domain-instance/delete-domain-instance.5.x.js diff --git a/rest/sip-in/delete-ip-acl/delete-ip-acl.4.x.js b/rest/sip-in/delete-ip-acl/delete-ip-acl.5.x.js similarity index 100% rename from rest/sip-in/delete-ip-acl/delete-ip-acl.4.x.js rename to rest/sip-in/delete-ip-acl/delete-ip-acl.5.x.js diff --git a/rest/sip-in/get-acl-addresses/get-acl-addresses.4.x.js b/rest/sip-in/get-acl-addresses/get-acl-addresses.5.x.js similarity index 100% rename from rest/sip-in/get-acl-addresses/get-acl-addresses.4.x.js rename to rest/sip-in/get-acl-addresses/get-acl-addresses.5.x.js diff --git a/rest/sip-in/get-acl-list/get-acl-list.4.x.js b/rest/sip-in/get-acl-list/get-acl-list.5.x.js similarity index 100% rename from rest/sip-in/get-acl-list/get-acl-list.4.x.js rename to rest/sip-in/get-acl-list/get-acl-list.5.x.js diff --git a/rest/sip-in/get-acl-lists/get-acl-lists.4.x.js b/rest/sip-in/get-acl-lists/get-acl-lists.5.x.js similarity index 100% rename from rest/sip-in/get-acl-lists/get-acl-lists.4.x.js rename to rest/sip-in/get-acl-lists/get-acl-lists.5.x.js diff --git a/rest/sip-in/get-address-instance/get-address-instance.4.x.js b/rest/sip-in/get-address-instance/get-address-instance.5.x.js similarity index 100% rename from rest/sip-in/get-address-instance/get-address-instance.4.x.js rename to rest/sip-in/get-address-instance/get-address-instance.5.x.js diff --git a/rest/sip-in/get-credential-list-instance/get-credential-list-instance.4.x.js b/rest/sip-in/get-credential-list-instance/get-credential-list-instance.5.x.js similarity index 100% rename from rest/sip-in/get-credential-list-instance/get-credential-list-instance.4.x.js rename to rest/sip-in/get-credential-list-instance/get-credential-list-instance.5.x.js diff --git a/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.4.x.js b/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.5.x.js similarity index 100% rename from rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.4.x.js rename to rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.5.x.js diff --git a/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.4.x.js b/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.5.x.js similarity index 100% rename from rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.4.x.js rename to rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.5.x.js diff --git a/rest/sip-in/get-credential-lists/get-credential-lists.4.x.js b/rest/sip-in/get-credential-lists/get-credential-lists.5.x.js similarity index 100% rename from rest/sip-in/get-credential-lists/get-credential-lists.4.x.js rename to rest/sip-in/get-credential-lists/get-credential-lists.5.x.js diff --git a/rest/sip-in/get-credential/get-credential.4.x.js b/rest/sip-in/get-credential/get-credential.5.x.js similarity index 100% rename from rest/sip-in/get-credential/get-credential.4.x.js rename to rest/sip-in/get-credential/get-credential.5.x.js diff --git a/rest/sip-in/get-domain-instance/get-domain-instance.4.x.js b/rest/sip-in/get-domain-instance/get-domain-instance.5.x.js similarity index 100% rename from rest/sip-in/get-domain-instance/get-domain-instance.4.x.js rename to rest/sip-in/get-domain-instance/get-domain-instance.5.x.js diff --git a/rest/sip-in/get-domain-mappings/get-domain-mappings.4.x.js b/rest/sip-in/get-domain-mappings/get-domain-mappings.5.x.js similarity index 100% rename from rest/sip-in/get-domain-mappings/get-domain-mappings.4.x.js rename to rest/sip-in/get-domain-mappings/get-domain-mappings.5.x.js diff --git a/rest/sip-in/get-domains/get-domains.4.x.js b/rest/sip-in/get-domains/get-domains.5.x.js similarity index 100% rename from rest/sip-in/get-domains/get-domains.4.x.js rename to rest/sip-in/get-domains/get-domains.5.x.js diff --git a/rest/sip-in/get-ip-acls/get-ip-acls.4.x.js b/rest/sip-in/get-ip-acls/get-ip-acls.5.x.js similarity index 100% rename from rest/sip-in/get-ip-acls/get-ip-acls.4.x.js rename to rest/sip-in/get-ip-acls/get-ip-acls.5.x.js diff --git a/rest/sip-in/get-mappings-instance-old/get-mappings-instance.4.x.js b/rest/sip-in/get-mappings-instance-old/get-mappings-instance.5.x.js similarity index 100% rename from rest/sip-in/get-mappings-instance-old/get-mappings-instance.4.x.js rename to rest/sip-in/get-mappings-instance-old/get-mappings-instance.5.x.js diff --git a/rest/sip-in/get-mappings-instance/get-mappings-instance.4.x.js b/rest/sip-in/get-mappings-instance/get-mappings-instance.5.x.js similarity index 100% rename from rest/sip-in/get-mappings-instance/get-mappings-instance.4.x.js rename to rest/sip-in/get-mappings-instance/get-mappings-instance.5.x.js diff --git a/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.4.x.js b/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.5.x.js similarity index 100% rename from rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.4.x.js rename to rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.5.x.js diff --git a/rest/sip-in/map-credential-list-domain/map-credential-list-domain.4.x.js b/rest/sip-in/map-credential-list-domain/map-credential-list-domain.5.x.js similarity index 100% rename from rest/sip-in/map-credential-list-domain/map-credential-list-domain.4.x.js rename to rest/sip-in/map-credential-list-domain/map-credential-list-domain.5.x.js diff --git a/rest/sip-in/map-list-domain-old/map-list-domain.4.x.js b/rest/sip-in/map-list-domain-old/map-list-domain.5.x.js similarity index 100% rename from rest/sip-in/map-list-domain-old/map-list-domain.4.x.js rename to rest/sip-in/map-list-domain-old/map-list-domain.5.x.js diff --git a/rest/sip-in/map-list-domain/map-list-domain.4.x.js b/rest/sip-in/map-list-domain/map-list-domain.5.x.js similarity index 100% rename from rest/sip-in/map-list-domain/map-list-domain.4.x.js rename to rest/sip-in/map-list-domain/map-list-domain.5.x.js diff --git a/rest/sip-in/update-address-instance/update-address-instance.4.x.js b/rest/sip-in/update-address-instance/update-address-instance.5.x.js similarity index 100% rename from rest/sip-in/update-address-instance/update-address-instance.4.x.js rename to rest/sip-in/update-address-instance/update-address-instance.5.x.js diff --git a/rest/sip-in/update-credential-list-instance/update-credential-list-instance.4.x.js b/rest/sip-in/update-credential-list-instance/update-credential-list-instance.5.x.js similarity index 100% rename from rest/sip-in/update-credential-list-instance/update-credential-list-instance.4.x.js rename to rest/sip-in/update-credential-list-instance/update-credential-list-instance.5.x.js diff --git a/rest/sip-in/update-credential/update-credential.4.x.js b/rest/sip-in/update-credential/update-credential.5.x.js similarity index 100% rename from rest/sip-in/update-credential/update-credential.4.x.js rename to rest/sip-in/update-credential/update-credential.5.x.js diff --git a/rest/sip-in/update-domain-instance/update-domain-instance.4.x.js b/rest/sip-in/update-domain-instance/update-domain-instance.5.x.js similarity index 100% rename from rest/sip-in/update-domain-instance/update-domain-instance.4.x.js rename to rest/sip-in/update-domain-instance/update-domain-instance.5.x.js diff --git a/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.4.x.js b/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.5.x.js similarity index 100% rename from rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.4.x.js rename to rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.5.x.js diff --git a/rest/sip/example-1/example-1.4.x.js b/rest/sip/example-1/example-1.5.x.js similarity index 100% rename from rest/sip/example-1/example-1.4.x.js rename to rest/sip/example-1/example-1.5.x.js diff --git a/rest/sip/example-2/example-2.4.x.js b/rest/sip/example-2/example-2.5.x.js similarity index 100% rename from rest/sip/example-2/example-2.4.x.js rename to rest/sip/example-2/example-2.5.x.js diff --git a/rest/sip/example-3/example-3.4.x.js b/rest/sip/example-3/example-3.5.x.js similarity index 100% rename from rest/sip/example-3/example-3.4.x.js rename to rest/sip/example-3/example-3.5.x.js diff --git a/rest/sms/instance-get-example-1/instance-get-example-1.4.x.js b/rest/sms/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/sms/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/sms/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/sms/list-get-example-1/list-get-example-1.4.x.js b/rest/sms/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/sms/list-get-example-1/list-get-example-1.4.x.js rename to rest/sms/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.4.x.js b/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.5.x.js similarity index 100% rename from rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.4.x.js rename to rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.5.x.js diff --git a/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.4.x.js b/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.5.x.js similarity index 100% rename from rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.4.x.js rename to rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.5.x.js diff --git a/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.4.x.js b/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.5.x.js similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.4.x.js rename to rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.5.x.js diff --git a/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.4.x.js b/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.5.x.js similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.4.x.js rename to rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.5.x.js diff --git a/rest/taskrouter/activities/instance/delete/example-1/example-1.4.x.js b/rest/taskrouter/activities/instance/delete/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/activities/instance/delete/example-1/example-1.4.x.js rename to rest/taskrouter/activities/instance/delete/example-1/example-1.5.x.js diff --git a/rest/taskrouter/activities/instance/get/example-1/example-1.4.x.js b/rest/taskrouter/activities/instance/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/activities/instance/get/example-1/example-1.4.x.js rename to rest/taskrouter/activities/instance/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/activities/instance/post/example-1/example-1.4.x.js b/rest/taskrouter/activities/instance/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/activities/instance/post/example-1/example-1.4.x.js rename to rest/taskrouter/activities/instance/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/events/example-1/example-1.4.x.js b/rest/taskrouter/events/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/events/example-1/example-1.4.x.js rename to rest/taskrouter/events/example-1/example-1.5.x.js diff --git a/rest/taskrouter/jwts/taskqueue/example-1/example-1.4.x.js b/rest/taskrouter/jwts/taskqueue/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/jwts/taskqueue/example-1/example-1.4.x.js rename to rest/taskrouter/jwts/taskqueue/example-1/example-1.5.x.js diff --git a/rest/taskrouter/jwts/worker/example-1/example-1.4.x.js b/rest/taskrouter/jwts/worker/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/jwts/worker/example-1/example-1.4.x.js rename to rest/taskrouter/jwts/worker/example-1/example-1.5.x.js diff --git a/rest/taskrouter/jwts/workspace/example-1/example-1.4.x.js b/rest/taskrouter/jwts/workspace/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/jwts/workspace/example-1/example-1.4.x.js rename to rest/taskrouter/jwts/workspace/example-1/example-1.5.x.js diff --git a/rest/taskrouter/reservations/call/example-1.4.x.js b/rest/taskrouter/reservations/call/example-1.5.x.js similarity index 100% rename from rest/taskrouter/reservations/call/example-1.4.x.js rename to rest/taskrouter/reservations/call/example-1.5.x.js diff --git a/rest/taskrouter/reservations/conference/conference.4.x.js b/rest/taskrouter/reservations/conference/conference.5.x.js similarity index 100% rename from rest/taskrouter/reservations/conference/conference.4.x.js rename to rest/taskrouter/reservations/conference/conference.5.x.js diff --git a/rest/taskrouter/reservations/dequeue/example-1.4.x.js b/rest/taskrouter/reservations/dequeue/example-1.5.x.js similarity index 100% rename from rest/taskrouter/reservations/dequeue/example-1.4.x.js rename to rest/taskrouter/reservations/dequeue/example-1.5.x.js diff --git a/rest/taskrouter/reservations/instance/get/example-1/example-1.4.x.js b/rest/taskrouter/reservations/instance/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/reservations/instance/get/example-1/example-1.4.x.js rename to rest/taskrouter/reservations/instance/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/reservations/instance/post/example-1/example-1.4.x.js b/rest/taskrouter/reservations/instance/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/reservations/instance/post/example-1/example-1.4.x.js rename to rest/taskrouter/reservations/instance/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/reservations/list/get/example-1/example-1.4.x.js b/rest/taskrouter/reservations/list/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/reservations/list/get/example-1/example-1.4.x.js rename to rest/taskrouter/reservations/list/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/reservations/redirect/redirect.4.x.js b/rest/taskrouter/reservations/redirect/redirect.5.x.js similarity index 100% rename from rest/taskrouter/reservations/redirect/redirect.4.x.js rename to rest/taskrouter/reservations/redirect/redirect.5.x.js diff --git a/rest/taskrouter/reservations/reject/example-1.4.x.js b/rest/taskrouter/reservations/reject/example-1.5.x.js similarity index 100% rename from rest/taskrouter/reservations/reject/example-1.4.x.js rename to rest/taskrouter/reservations/reject/example-1.5.x.js diff --git a/rest/taskrouter/statistics/taskqueue/cumulative/example-1.4.x.js b/rest/taskrouter/statistics/taskqueue/cumulative/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/taskqueue/cumulative/example-1.4.x.js rename to rest/taskrouter/statistics/taskqueue/cumulative/example-1.5.x.js diff --git a/rest/taskrouter/statistics/taskqueue/example-1/example-1.4.x.js b/rest/taskrouter/statistics/taskqueue/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/taskqueue/example-1/example-1.4.x.js rename to rest/taskrouter/statistics/taskqueue/example-1/example-1.5.x.js diff --git a/rest/taskrouter/statistics/taskqueue/realtime/example-1.4.x.js b/rest/taskrouter/statistics/taskqueue/realtime/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/taskqueue/realtime/example-1.4.x.js rename to rest/taskrouter/statistics/taskqueue/realtime/example-1.5.x.js diff --git a/rest/taskrouter/statistics/worker/example-1/example-1.4.x.js b/rest/taskrouter/statistics/worker/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/worker/example-1/example-1.4.x.js rename to rest/taskrouter/statistics/worker/example-1/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workers/cumulative/example-1.4.x.js b/rest/taskrouter/statistics/workers/cumulative/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workers/cumulative/example-1.4.x.js rename to rest/taskrouter/statistics/workers/cumulative/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workers/example-1/example-1.4.x.js b/rest/taskrouter/statistics/workers/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workers/example-1/example-1.4.x.js rename to rest/taskrouter/statistics/workers/example-1/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workers/realtime/example-1.4.x.js b/rest/taskrouter/statistics/workers/realtime/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workers/realtime/example-1.4.x.js rename to rest/taskrouter/statistics/workers/realtime/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workflow/cumulative/example-1.4.x.js b/rest/taskrouter/statistics/workflow/cumulative/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workflow/cumulative/example-1.4.x.js rename to rest/taskrouter/statistics/workflow/cumulative/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workflow/example-1/example-1.4.x.js b/rest/taskrouter/statistics/workflow/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workflow/example-1/example-1.4.x.js rename to rest/taskrouter/statistics/workflow/example-1/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workflow/realtime/example-1.4.x.js b/rest/taskrouter/statistics/workflow/realtime/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workflow/realtime/example-1.4.x.js rename to rest/taskrouter/statistics/workflow/realtime/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workspace/cumulative/example-1.4.x.js b/rest/taskrouter/statistics/workspace/cumulative/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workspace/cumulative/example-1.4.x.js rename to rest/taskrouter/statistics/workspace/cumulative/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workspace/example-1/example-1.4.x.js b/rest/taskrouter/statistics/workspace/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workspace/example-1/example-1.4.x.js rename to rest/taskrouter/statistics/workspace/example-1/example-1.5.x.js diff --git a/rest/taskrouter/statistics/workspace/realtime/example-1.4.x.js b/rest/taskrouter/statistics/workspace/realtime/example-1.5.x.js similarity index 100% rename from rest/taskrouter/statistics/workspace/realtime/example-1.4.x.js rename to rest/taskrouter/statistics/workspace/realtime/example-1.5.x.js diff --git a/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.4.x.js b/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/taskqueues/instance/delete/example-1/example-1.4.x.js rename to rest/taskrouter/taskqueues/instance/delete/example-1/example-1.5.x.js diff --git a/rest/taskrouter/taskqueues/instance/get/example-1/example-1.4.x.js b/rest/taskrouter/taskqueues/instance/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/taskqueues/instance/get/example-1/example-1.4.x.js rename to rest/taskrouter/taskqueues/instance/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/taskqueues/instance/post/example-1/example-1.4.x.js b/rest/taskrouter/taskqueues/instance/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/taskqueues/instance/post/example-1/example-1.4.x.js rename to rest/taskrouter/taskqueues/instance/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/taskqueues/list/get/example-1/example-1.4.x.js b/rest/taskrouter/taskqueues/list/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/taskqueues/list/get/example-1/example-1.4.x.js rename to rest/taskrouter/taskqueues/list/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/taskqueues/list/post/example-1/example-1.4.x.js b/rest/taskrouter/taskqueues/list/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/taskqueues/list/post/example-1/example-1.4.x.js rename to rest/taskrouter/taskqueues/list/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/tasks/instance/delete/example-1/example-1.4.x.js b/rest/taskrouter/tasks/instance/delete/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/tasks/instance/delete/example-1/example-1.4.x.js rename to rest/taskrouter/tasks/instance/delete/example-1/example-1.5.x.js diff --git a/rest/taskrouter/tasks/instance/get/example-1/example-1.4.x.js b/rest/taskrouter/tasks/instance/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/tasks/instance/get/example-1/example-1.4.x.js rename to rest/taskrouter/tasks/instance/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/tasks/instance/post/example-1/example-1.4.x.js b/rest/taskrouter/tasks/instance/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/tasks/instance/post/example-1/example-1.4.x.js rename to rest/taskrouter/tasks/instance/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/tasks/list/get/example-1/example-1.4.x.js b/rest/taskrouter/tasks/list/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/tasks/list/get/example-1/example-1.4.x.js rename to rest/taskrouter/tasks/list/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/tasks/list/get/example-2/example-2.4.x.js b/rest/taskrouter/tasks/list/get/example-2/example-2.5.x.js similarity index 100% rename from rest/taskrouter/tasks/list/get/example-2/example-2.4.x.js rename to rest/taskrouter/tasks/list/get/example-2/example-2.5.x.js diff --git a/rest/taskrouter/tasks/list/post/example-1/example-1.4.x.js b/rest/taskrouter/tasks/list/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/tasks/list/post/example-1/example-1.4.x.js rename to rest/taskrouter/tasks/list/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/twiml/example1/example/example.4.x.js b/rest/taskrouter/twiml/example1/example/example.5.x.js similarity index 100% rename from rest/taskrouter/twiml/example1/example/example.4.x.js rename to rest/taskrouter/twiml/example1/example/example.5.x.js diff --git a/rest/taskrouter/twiml/example2/example/example.4.x.js b/rest/taskrouter/twiml/example2/example/example.5.x.js similarity index 100% rename from rest/taskrouter/twiml/example2/example/example.4.x.js rename to rest/taskrouter/twiml/example2/example/example.5.x.js diff --git a/rest/taskrouter/twiml/example3/example/example.4.x.js b/rest/taskrouter/twiml/example3/example/example.5.x.js similarity index 100% rename from rest/taskrouter/twiml/example3/example/example.4.x.js rename to rest/taskrouter/twiml/example3/example/example.5.x.js diff --git a/rest/taskrouter/twiml/example4/example/example.4.x.js b/rest/taskrouter/twiml/example4/example/example.5.x.js similarity index 100% rename from rest/taskrouter/twiml/example4/example/example.4.x.js rename to rest/taskrouter/twiml/example4/example/example.5.x.js diff --git a/rest/taskrouter/worker-reservations/accept/example-1.4.x.js b/rest/taskrouter/worker-reservations/accept/example-1.5.x.js similarity index 100% rename from rest/taskrouter/worker-reservations/accept/example-1.4.x.js rename to rest/taskrouter/worker-reservations/accept/example-1.5.x.js diff --git a/rest/taskrouter/worker-reservations/call/example-1.4.x.js b/rest/taskrouter/worker-reservations/call/example-1.5.x.js similarity index 100% rename from rest/taskrouter/worker-reservations/call/example-1.4.x.js rename to rest/taskrouter/worker-reservations/call/example-1.5.x.js diff --git a/rest/taskrouter/worker-reservations/dequeue/example-1.4.x.js b/rest/taskrouter/worker-reservations/dequeue/example-1.5.x.js similarity index 100% rename from rest/taskrouter/worker-reservations/dequeue/example-1.4.x.js rename to rest/taskrouter/worker-reservations/dequeue/example-1.5.x.js diff --git a/rest/taskrouter/worker-reservations/instance-get-example1/example-1.4.x.js b/rest/taskrouter/worker-reservations/instance-get-example1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/worker-reservations/instance-get-example1/example-1.4.x.js rename to rest/taskrouter/worker-reservations/instance-get-example1/example-1.5.x.js diff --git a/rest/taskrouter/worker-reservations/list-get-example1/example-1.4.x.js b/rest/taskrouter/worker-reservations/list-get-example1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/worker-reservations/list-get-example1/example-1.4.x.js rename to rest/taskrouter/worker-reservations/list-get-example1/example-1.5.x.js diff --git a/rest/taskrouter/worker-reservations/reject/example-1.4.x.js b/rest/taskrouter/worker-reservations/reject/example-1.5.x.js similarity index 100% rename from rest/taskrouter/worker-reservations/reject/example-1.4.x.js rename to rest/taskrouter/worker-reservations/reject/example-1.5.x.js diff --git a/rest/taskrouter/workers/instance/delete/example-1/example-1.4.x.js b/rest/taskrouter/workers/instance/delete/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workers/instance/delete/example-1/example-1.4.x.js rename to rest/taskrouter/workers/instance/delete/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workers/instance/get/example-1/example-1.4.x.js b/rest/taskrouter/workers/instance/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workers/instance/get/example-1/example-1.4.x.js rename to rest/taskrouter/workers/instance/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workers/instance/post/example-1/example-1.4.x.js b/rest/taskrouter/workers/instance/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workers/instance/post/example-1/example-1.4.x.js rename to rest/taskrouter/workers/instance/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workers/list/get/example-1/example-1.4.x.js b/rest/taskrouter/workers/list/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workers/list/get/example-1/example-1.4.x.js rename to rest/taskrouter/workers/list/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workers/list/get/example-2/example-2.4.x.js b/rest/taskrouter/workers/list/get/example-2/example-2.5.x.js similarity index 100% rename from rest/taskrouter/workers/list/get/example-2/example-2.4.x.js rename to rest/taskrouter/workers/list/get/example-2/example-2.5.x.js diff --git a/rest/taskrouter/workers/list/post/example-1/example-1.4.x.js b/rest/taskrouter/workers/list/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workers/list/post/example-1/example-1.4.x.js rename to rest/taskrouter/workers/list/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workflows/instance/delete/example-1/example-1.4.x.js b/rest/taskrouter/workflows/instance/delete/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workflows/instance/delete/example-1/example-1.4.x.js rename to rest/taskrouter/workflows/instance/delete/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workflows/instance/get/example-1/example-1.4.x.js b/rest/taskrouter/workflows/instance/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workflows/instance/get/example-1/example-1.4.x.js rename to rest/taskrouter/workflows/instance/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workflows/instance/post/example-1/example-1.4.x.js b/rest/taskrouter/workflows/instance/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workflows/instance/post/example-1/example-1.4.x.js rename to rest/taskrouter/workflows/instance/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workflows/list/get/example-1/example-1.4.x.js b/rest/taskrouter/workflows/list/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workflows/list/get/example-1/example-1.4.x.js rename to rest/taskrouter/workflows/list/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workflows/list/post/example-1/example-1.4.x.js b/rest/taskrouter/workflows/list/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workflows/list/post/example-1/example-1.4.x.js rename to rest/taskrouter/workflows/list/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workspaces/instance/delete/example-1/example-1.4.x.js b/rest/taskrouter/workspaces/instance/delete/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workspaces/instance/delete/example-1/example-1.4.x.js rename to rest/taskrouter/workspaces/instance/delete/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workspaces/instance/get/example-1/example-1.4.x.js b/rest/taskrouter/workspaces/instance/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workspaces/instance/get/example-1/example-1.4.x.js rename to rest/taskrouter/workspaces/instance/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workspaces/instance/post/example-1/example-1.4.x.js b/rest/taskrouter/workspaces/instance/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workspaces/instance/post/example-1/example-1.4.x.js rename to rest/taskrouter/workspaces/instance/post/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workspaces/list/get/example-1/example-1.4.x.js b/rest/taskrouter/workspaces/list/get/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workspaces/list/get/example-1/example-1.4.x.js rename to rest/taskrouter/workspaces/list/get/example-1/example-1.5.x.js diff --git a/rest/taskrouter/workspaces/list/post/example-1/example-1.4.x.js b/rest/taskrouter/workspaces/list/post/example-1/example-1.5.x.js similarity index 100% rename from rest/taskrouter/workspaces/list/post/example-1/example-1.4.x.js rename to rest/taskrouter/workspaces/list/post/example-1/example-1.5.x.js diff --git a/rest/test-credentials/test-calls-example-1/test-calls-example-1.4.x.js b/rest/test-credentials/test-calls-example-1/test-calls-example-1.5.x.js similarity index 100% rename from rest/test-credentials/test-calls-example-1/test-calls-example-1.4.x.js rename to rest/test-credentials/test-calls-example-1/test-calls-example-1.5.x.js diff --git a/rest/test-credentials/test-calls-example-2/test-calls-example-2.4.x.js b/rest/test-credentials/test-calls-example-2/test-calls-example-2.5.x.js similarity index 100% rename from rest/test-credentials/test-calls-example-2/test-calls-example-2.4.x.js rename to rest/test-credentials/test-calls-example-2/test-calls-example-2.5.x.js diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.4.x.js b/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.5.x.js similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.4.x.js rename to rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.5.x.js diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.4.x.js b/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.5.x.js similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.4.x.js rename to rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.5.x.js diff --git a/rest/test-credentials/test-post-example-3/test-post-example-3.4.x.js b/rest/test-credentials/test-post-example-3/test-post-example-3.5.x.js similarity index 100% rename from rest/test-credentials/test-post-example-3/test-post-example-3.4.x.js rename to rest/test-credentials/test-post-example-3/test-post-example-3.5.x.js diff --git a/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.4.x.js b/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.5.x.js similarity index 100% rename from rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.4.x.js rename to rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.5.x.js diff --git a/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.4.x.js b/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.5.x.js similarity index 100% rename from rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.4.x.js rename to rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.5.x.js diff --git a/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.4.x.js b/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.5.x.js similarity index 100% rename from rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.4.x.js rename to rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.5.x.js diff --git a/rest/token/list-post-1-hour-example/list-post-1-hour-example.4.x.js b/rest/token/list-post-1-hour-example/list-post-1-hour-example.5.x.js similarity index 100% rename from rest/token/list-post-1-hour-example/list-post-1-hour-example.4.x.js rename to rest/token/list-post-1-hour-example/list-post-1-hour-example.5.x.js diff --git a/rest/token/list-post-example/list-post-example.4.x.js b/rest/token/list-post-example/list-post-example.5.x.js similarity index 100% rename from rest/token/list-post-example/list-post-example.4.x.js rename to rest/token/list-post-example/list-post-example.5.x.js diff --git a/rest/transcription/instance-delete-examples/instance-delete-examples.4.x.js b/rest/transcription/instance-delete-examples/instance-delete-examples.5.x.js similarity index 100% rename from rest/transcription/instance-delete-examples/instance-delete-examples.4.x.js rename to rest/transcription/instance-delete-examples/instance-delete-examples.5.x.js diff --git a/rest/transcription/instance-get-example-1/instance-get-example-1.4.x.js b/rest/transcription/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/transcription/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/transcription/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/transcription/list-get-example-1/list-get-example-1.4.x.js b/rest/transcription/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/transcription/list-get-example-1/list-get-example-1.4.x.js rename to rest/transcription/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/usage-records/list-get-example-1/list-get-example-1.4.x.js b/rest/usage-records/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/usage-records/list-get-example-1/list-get-example-1.4.x.js rename to rest/usage-records/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/usage-records/list-get-example-2/list-get-example-2.4.x.js b/rest/usage-records/list-get-example-2/list-get-example-2.5.x.js similarity index 100% rename from rest/usage-records/list-get-example-2/list-get-example-2.4.x.js rename to rest/usage-records/list-get-example-2/list-get-example-2.5.x.js diff --git a/rest/usage-records/list-get-example-3/list-get-example-3.4.x.js b/rest/usage-records/list-get-example-3/list-get-example-3.5.x.js similarity index 100% rename from rest/usage-records/list-get-example-3/list-get-example-3.4.x.js rename to rest/usage-records/list-get-example-3/list-get-example-3.5.x.js diff --git a/rest/usage-records/list-get-example-4/list-get-example-4.4.x.js b/rest/usage-records/list-get-example-4/list-get-example-4.5.x.js similarity index 100% rename from rest/usage-records/list-get-example-4/list-get-example-4.4.x.js rename to rest/usage-records/list-get-example-4/list-get-example-4.5.x.js diff --git a/rest/usage-records/list-get-example-5/list-get-example-5.4.x.js b/rest/usage-records/list-get-example-5/list-get-example-5.5.x.js similarity index 100% rename from rest/usage-records/list-get-example-5/list-get-example-5.4.x.js rename to rest/usage-records/list-get-example-5/list-get-example-5.5.x.js diff --git a/rest/usage-triggers/instance-get-example-1/instance-get-example-1.4.x.js b/rest/usage-triggers/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from rest/usage-triggers/instance-get-example-1/instance-get-example-1.4.x.js rename to rest/usage-triggers/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/rest/usage-triggers/instance-post-example-1/instance-post-example-1.4.x.js b/rest/usage-triggers/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from rest/usage-triggers/instance-post-example-1/instance-post-example-1.4.x.js rename to rest/usage-triggers/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/rest/usage-triggers/list-get-example-1/list-get-example-1.4.x.js b/rest/usage-triggers/list-get-example-1/list-get-example-1.5.x.js similarity index 100% rename from rest/usage-triggers/list-get-example-1/list-get-example-1.4.x.js rename to rest/usage-triggers/list-get-example-1/list-get-example-1.5.x.js diff --git a/rest/usage-triggers/list-post-example-1/list-post-example-1.4.x.js b/rest/usage-triggers/list-post-example-1/list-post-example-1.5.x.js similarity index 100% rename from rest/usage-triggers/list-post-example-1/list-post-example-1.4.x.js rename to rest/usage-triggers/list-post-example-1/list-post-example-1.5.x.js diff --git a/rest/voice/generate-twiml-play/example-1.4.x.js b/rest/voice/generate-twiml-play/example-1.5.x.js similarity index 100% rename from rest/voice/generate-twiml-play/example-1.4.x.js rename to rest/voice/generate-twiml-play/example-1.5.x.js diff --git a/rest/voice/generate-twiml-say/generate-twiml-say.4.x.js b/rest/voice/generate-twiml-say/generate-twiml-say.5.x.js similarity index 100% rename from rest/voice/generate-twiml-say/generate-twiml-say.4.x.js rename to rest/voice/generate-twiml-say/generate-twiml-say.5.x.js diff --git a/rest/voice/outbound-calls/example-1/example-1.4.x.js b/rest/voice/outbound-calls/example-1/example-1.5.x.js similarity index 100% rename from rest/voice/outbound-calls/example-1/example-1.4.x.js rename to rest/voice/outbound-calls/example-1/example-1.5.x.js diff --git a/rest/voice/outbound-calls/example-2/example-2.4.x.js b/rest/voice/outbound-calls/example-2/example-2.5.x.js similarity index 100% rename from rest/voice/outbound-calls/example-2/example-2.4.x.js rename to rest/voice/outbound-calls/example-2/example-2.5.x.js diff --git a/rest/voice/outbound-calls/example-3/example-3.4.x.js b/rest/voice/outbound-calls/example-3/example-3.5.x.js similarity index 100% rename from rest/voice/outbound-calls/example-3/example-3.4.x.js rename to rest/voice/outbound-calls/example-3/example-3.5.x.js diff --git a/rest/voice/outbound-calls/example-4/example-4.4.x.js b/rest/voice/outbound-calls/example-4/example-4.5.x.js similarity index 100% rename from rest/voice/outbound-calls/example-4/example-4.4.x.js rename to rest/voice/outbound-calls/example-4/example-4.5.x.js diff --git a/rest/voice/twiml-recording-action/recording-action.4.x.js b/rest/voice/twiml-recording-action/recording-action.5.x.js similarity index 100% rename from rest/voice/twiml-recording-action/recording-action.4.x.js rename to rest/voice/twiml-recording-action/recording-action.5.x.js diff --git a/security/environment_variables/environment-variables-1.4.x.js b/security/environment_variables/environment-variables-1.5.x.js similarity index 100% rename from security/environment_variables/environment-variables-1.4.x.js rename to security/environment_variables/environment-variables-1.5.x.js diff --git a/security/signature_validation/signature_validation.4.x.js b/security/signature_validation/signature_validation.5.x.js similarity index 100% rename from security/signature_validation/signature_validation.4.x.js rename to security/signature_validation/signature_validation.5.x.js diff --git a/security/signature_validation_tests/signature_validation_tests.4.x.js b/security/signature_validation_tests/signature_validation_tests.5.x.js similarity index 100% rename from security/signature_validation_tests/signature_validation_tests.4.x.js rename to security/signature_validation_tests/signature_validation_tests.5.x.js diff --git a/stun-turn/list-post-example/list-post-example.4.x.js b/stun-turn/list-post-example/list-post-example.5.x.js similarity index 100% rename from stun-turn/list-post-example/list-post-example.4.x.js rename to stun-turn/list-post-example/list-post-example.5.x.js diff --git a/super-sim/sims/update-account/update-account.4.x.js b/super-sim/sims/update-account/update-account.5.x.js similarity index 100% rename from super-sim/sims/update-account/update-account.4.x.js rename to super-sim/sims/update-account/update-account.5.x.js diff --git a/sync/rest/document-permissions/delete-permission/delete-permission.4.x.js b/sync/rest/document-permissions/delete-permission/delete-permission.5.x.js similarity index 100% rename from sync/rest/document-permissions/delete-permission/delete-permission.4.x.js rename to sync/rest/document-permissions/delete-permission/delete-permission.5.x.js diff --git a/sync/rest/document-permissions/list-permissions/list-permissions.4.x.js b/sync/rest/document-permissions/list-permissions/list-permissions.5.x.js similarity index 100% rename from sync/rest/document-permissions/list-permissions/list-permissions.4.x.js rename to sync/rest/document-permissions/list-permissions/list-permissions.5.x.js diff --git a/sync/rest/document-permissions/retrieve-permission/retrieve-permission.4.x.js b/sync/rest/document-permissions/retrieve-permission/retrieve-permission.5.x.js similarity index 100% rename from sync/rest/document-permissions/retrieve-permission/retrieve-permission.4.x.js rename to sync/rest/document-permissions/retrieve-permission/retrieve-permission.5.x.js diff --git a/sync/rest/document-permissions/update-permission/update-permission.4.x.js b/sync/rest/document-permissions/update-permission/update-permission.5.x.js similarity index 100% rename from sync/rest/document-permissions/update-permission/update-permission.4.x.js rename to sync/rest/document-permissions/update-permission/update-permission.5.x.js diff --git a/sync/rest/documents/create-document/create-document.4.x.js b/sync/rest/documents/create-document/create-document.5.x.js similarity index 100% rename from sync/rest/documents/create-document/create-document.4.x.js rename to sync/rest/documents/create-document/create-document.5.x.js diff --git a/sync/rest/documents/delete-document/delete-document.4.x.js b/sync/rest/documents/delete-document/delete-document.5.x.js similarity index 100% rename from sync/rest/documents/delete-document/delete-document.4.x.js rename to sync/rest/documents/delete-document/delete-document.5.x.js diff --git a/sync/rest/documents/list-documents/list-documents.4.x.js b/sync/rest/documents/list-documents/list-documents.5.x.js similarity index 100% rename from sync/rest/documents/list-documents/list-documents.4.x.js rename to sync/rest/documents/list-documents/list-documents.5.x.js diff --git a/sync/rest/documents/retrieve-document/retrieve-document.4.x.js b/sync/rest/documents/retrieve-document/retrieve-document.5.x.js similarity index 100% rename from sync/rest/documents/retrieve-document/retrieve-document.4.x.js rename to sync/rest/documents/retrieve-document/retrieve-document.5.x.js diff --git a/sync/rest/documents/update-document/update-document.4.x.js b/sync/rest/documents/update-document/update-document.5.x.js similarity index 100% rename from sync/rest/documents/update-document/update-document.4.x.js rename to sync/rest/documents/update-document/update-document.5.x.js diff --git a/sync/rest/list-permissions/delete-permission/delete-permission.4.x.js b/sync/rest/list-permissions/delete-permission/delete-permission.5.x.js similarity index 100% rename from sync/rest/list-permissions/delete-permission/delete-permission.4.x.js rename to sync/rest/list-permissions/delete-permission/delete-permission.5.x.js diff --git a/sync/rest/list-permissions/list-permissions/list-permissions.4.x.js b/sync/rest/list-permissions/list-permissions/list-permissions.5.x.js similarity index 100% rename from sync/rest/list-permissions/list-permissions/list-permissions.4.x.js rename to sync/rest/list-permissions/list-permissions/list-permissions.5.x.js diff --git a/sync/rest/list-permissions/retrieve-permission/retrieve-permission.4.x.js b/sync/rest/list-permissions/retrieve-permission/retrieve-permission.5.x.js similarity index 100% rename from sync/rest/list-permissions/retrieve-permission/retrieve-permission.4.x.js rename to sync/rest/list-permissions/retrieve-permission/retrieve-permission.5.x.js diff --git a/sync/rest/list-permissions/update-permission/update-permission.4.x.js b/sync/rest/list-permissions/update-permission/update-permission.5.x.js similarity index 100% rename from sync/rest/list-permissions/update-permission/update-permission.4.x.js rename to sync/rest/list-permissions/update-permission/update-permission.5.x.js diff --git a/sync/rest/lists/create-list-item/create-list-item.4.x.js b/sync/rest/lists/create-list-item/create-list-item.5.x.js similarity index 100% rename from sync/rest/lists/create-list-item/create-list-item.4.x.js rename to sync/rest/lists/create-list-item/create-list-item.5.x.js diff --git a/sync/rest/lists/create-list/create-list.4.x.js b/sync/rest/lists/create-list/create-list.5.x.js similarity index 100% rename from sync/rest/lists/create-list/create-list.4.x.js rename to sync/rest/lists/create-list/create-list.5.x.js diff --git a/sync/rest/lists/delete-list-item/delete-list-item.4.x.js b/sync/rest/lists/delete-list-item/delete-list-item.5.x.js similarity index 100% rename from sync/rest/lists/delete-list-item/delete-list-item.4.x.js rename to sync/rest/lists/delete-list-item/delete-list-item.5.x.js diff --git a/sync/rest/lists/delete-list/delete-list.4.x.js b/sync/rest/lists/delete-list/delete-list.5.x.js similarity index 100% rename from sync/rest/lists/delete-list/delete-list.4.x.js rename to sync/rest/lists/delete-list/delete-list.5.x.js diff --git a/sync/rest/lists/list-lists/list-lists.4.x.js b/sync/rest/lists/list-lists/list-lists.5.x.js similarity index 100% rename from sync/rest/lists/list-lists/list-lists.4.x.js rename to sync/rest/lists/list-lists/list-lists.5.x.js diff --git a/sync/rest/lists/query-list/query-list.4.x.js b/sync/rest/lists/query-list/query-list.5.x.js similarity index 100% rename from sync/rest/lists/query-list/query-list.4.x.js rename to sync/rest/lists/query-list/query-list.5.x.js diff --git a/sync/rest/lists/retrieve-list-item/retrieve-list-item.4.x.js b/sync/rest/lists/retrieve-list-item/retrieve-list-item.5.x.js similarity index 100% rename from sync/rest/lists/retrieve-list-item/retrieve-list-item.4.x.js rename to sync/rest/lists/retrieve-list-item/retrieve-list-item.5.x.js diff --git a/sync/rest/lists/retrieve-list/retrieve-list.4.x.js b/sync/rest/lists/retrieve-list/retrieve-list.5.x.js similarity index 100% rename from sync/rest/lists/retrieve-list/retrieve-list.4.x.js rename to sync/rest/lists/retrieve-list/retrieve-list.5.x.js diff --git a/sync/rest/lists/update-list-item/update-list-item.4.x.js b/sync/rest/lists/update-list-item/update-list-item.5.x.js similarity index 100% rename from sync/rest/lists/update-list-item/update-list-item.4.x.js rename to sync/rest/lists/update-list-item/update-list-item.5.x.js diff --git a/sync/rest/lists/update-list/update-list.4.x.js b/sync/rest/lists/update-list/update-list.5.x.js similarity index 100% rename from sync/rest/lists/update-list/update-list.4.x.js rename to sync/rest/lists/update-list/update-list.5.x.js diff --git a/sync/rest/map-permissions/delete-permission/delete-permission.4.x.js b/sync/rest/map-permissions/delete-permission/delete-permission.5.x.js similarity index 100% rename from sync/rest/map-permissions/delete-permission/delete-permission.4.x.js rename to sync/rest/map-permissions/delete-permission/delete-permission.5.x.js diff --git a/sync/rest/map-permissions/list-permissions/list-permissions.4.x.js b/sync/rest/map-permissions/list-permissions/list-permissions.5.x.js similarity index 100% rename from sync/rest/map-permissions/list-permissions/list-permissions.4.x.js rename to sync/rest/map-permissions/list-permissions/list-permissions.5.x.js diff --git a/sync/rest/map-permissions/retrieve-permission/retrieve-permission.4.x.js b/sync/rest/map-permissions/retrieve-permission/retrieve-permission.5.x.js similarity index 100% rename from sync/rest/map-permissions/retrieve-permission/retrieve-permission.4.x.js rename to sync/rest/map-permissions/retrieve-permission/retrieve-permission.5.x.js diff --git a/sync/rest/map-permissions/update-permission/update-permission.4.x.js b/sync/rest/map-permissions/update-permission/update-permission.5.x.js similarity index 100% rename from sync/rest/map-permissions/update-permission/update-permission.4.x.js rename to sync/rest/map-permissions/update-permission/update-permission.5.x.js diff --git a/sync/rest/maps/create-map-item/create-map-item.4.x.js b/sync/rest/maps/create-map-item/create-map-item.5.x.js similarity index 100% rename from sync/rest/maps/create-map-item/create-map-item.4.x.js rename to sync/rest/maps/create-map-item/create-map-item.5.x.js diff --git a/sync/rest/maps/create-map/create-map.4.x.js b/sync/rest/maps/create-map/create-map.5.x.js similarity index 100% rename from sync/rest/maps/create-map/create-map.4.x.js rename to sync/rest/maps/create-map/create-map.5.x.js diff --git a/sync/rest/maps/delete-map-item/delete-map-item.4.x.js b/sync/rest/maps/delete-map-item/delete-map-item.5.x.js similarity index 100% rename from sync/rest/maps/delete-map-item/delete-map-item.4.x.js rename to sync/rest/maps/delete-map-item/delete-map-item.5.x.js diff --git a/sync/rest/maps/delete-map/delete-map.4.x.js b/sync/rest/maps/delete-map/delete-map.5.x.js similarity index 100% rename from sync/rest/maps/delete-map/delete-map.4.x.js rename to sync/rest/maps/delete-map/delete-map.5.x.js diff --git a/sync/rest/maps/list-maps/list-maps.4.x.js b/sync/rest/maps/list-maps/list-maps.5.x.js similarity index 100% rename from sync/rest/maps/list-maps/list-maps.4.x.js rename to sync/rest/maps/list-maps/list-maps.5.x.js diff --git a/sync/rest/maps/query-map/query-map.4.x.js b/sync/rest/maps/query-map/query-map.5.x.js similarity index 100% rename from sync/rest/maps/query-map/query-map.4.x.js rename to sync/rest/maps/query-map/query-map.5.x.js diff --git a/sync/rest/maps/retrieve-map-item/retrieve-map-item.4.x.js b/sync/rest/maps/retrieve-map-item/retrieve-map-item.5.x.js similarity index 100% rename from sync/rest/maps/retrieve-map-item/retrieve-map-item.4.x.js rename to sync/rest/maps/retrieve-map-item/retrieve-map-item.5.x.js diff --git a/sync/rest/maps/retrieve-map/retrieve-map.4.x.js b/sync/rest/maps/retrieve-map/retrieve-map.5.x.js similarity index 100% rename from sync/rest/maps/retrieve-map/retrieve-map.4.x.js rename to sync/rest/maps/retrieve-map/retrieve-map.5.x.js diff --git a/sync/rest/maps/update-map-item/update-map-item.4.x.js b/sync/rest/maps/update-map-item/update-map-item.5.x.js similarity index 100% rename from sync/rest/maps/update-map-item/update-map-item.4.x.js rename to sync/rest/maps/update-map-item/update-map-item.5.x.js diff --git a/sync/rest/maps/update-map/update-map.4.x.js b/sync/rest/maps/update-map/update-map.5.x.js similarity index 100% rename from sync/rest/maps/update-map/update-map.4.x.js rename to sync/rest/maps/update-map/update-map.5.x.js diff --git a/sync/rest/services/create-service-webhook/create-service-webhook.4.x.js b/sync/rest/services/create-service-webhook/create-service-webhook.5.x.js similarity index 100% rename from sync/rest/services/create-service-webhook/create-service-webhook.4.x.js rename to sync/rest/services/create-service-webhook/create-service-webhook.5.x.js diff --git a/sync/rest/services/create-service/create-service.4.x.js b/sync/rest/services/create-service/create-service.5.x.js similarity index 100% rename from sync/rest/services/create-service/create-service.4.x.js rename to sync/rest/services/create-service/create-service.5.x.js diff --git a/sync/rest/services/delete-service/delete-service.4.x.js b/sync/rest/services/delete-service/delete-service.5.x.js similarity index 100% rename from sync/rest/services/delete-service/delete-service.4.x.js rename to sync/rest/services/delete-service/delete-service.5.x.js diff --git a/sync/rest/services/list-services/list-services.4.x.js b/sync/rest/services/list-services/list-services.5.x.js similarity index 100% rename from sync/rest/services/list-services/list-services.4.x.js rename to sync/rest/services/list-services/list-services.5.x.js diff --git a/sync/rest/services/retrieve-service/retrieve-service.4.x.js b/sync/rest/services/retrieve-service/retrieve-service.5.x.js similarity index 100% rename from sync/rest/services/retrieve-service/retrieve-service.4.x.js rename to sync/rest/services/retrieve-service/retrieve-service.5.x.js diff --git a/sync/rest/services/update-service/update-service.4.x.js b/sync/rest/services/update-service/update-service.5.x.js similarity index 100% rename from sync/rest/services/update-service/update-service.4.x.js rename to sync/rest/services/update-service/update-service.5.x.js diff --git a/sync/rest/streams/create-stream/create-stream.4.x.js b/sync/rest/streams/create-stream/create-stream.5.x.js similarity index 100% rename from sync/rest/streams/create-stream/create-stream.4.x.js rename to sync/rest/streams/create-stream/create-stream.5.x.js diff --git a/sync/rest/streams/delete-stream/delete-stream.4.x.js b/sync/rest/streams/delete-stream/delete-stream.5.x.js similarity index 100% rename from sync/rest/streams/delete-stream/delete-stream.4.x.js rename to sync/rest/streams/delete-stream/delete-stream.5.x.js diff --git a/sync/rest/streams/list-streams/list-streams.4.x.js b/sync/rest/streams/list-streams/list-streams.5.x.js similarity index 100% rename from sync/rest/streams/list-streams/list-streams.4.x.js rename to sync/rest/streams/list-streams/list-streams.5.x.js diff --git a/sync/rest/streams/publish-stream-message/publish-stream-message.4.x.js b/sync/rest/streams/publish-stream-message/publish-stream-message.5.x.js similarity index 100% rename from sync/rest/streams/publish-stream-message/publish-stream-message.4.x.js rename to sync/rest/streams/publish-stream-message/publish-stream-message.5.x.js diff --git a/sync/rest/streams/retrieve-stream/retrieve-stream.4.x.js b/sync/rest/streams/retrieve-stream/retrieve-stream.5.x.js similarity index 100% rename from sync/rest/streams/retrieve-stream/retrieve-stream.4.x.js rename to sync/rest/streams/retrieve-stream/retrieve-stream.5.x.js diff --git a/sync/rest/streams/update-stream/update-stream.4.x.js b/sync/rest/streams/update-stream/update-stream.5.x.js similarity index 100% rename from sync/rest/streams/update-stream/update-stream.4.x.js rename to sync/rest/streams/update-stream/update-stream.5.x.js diff --git a/twiml/README.md b/twiml/README.md index e848d345e3..e73cc4d58b 100644 --- a/twiml/README.md +++ b/twiml/README.md @@ -11,7 +11,7 @@ twiml/ <-- The TwiML snippet directory │ │ ├─ say-language-voice/ <-- The name of a TwiML snippet │ │ │ ├─ output/ │ │ │ │ ├─ say-language-voice.twiml -│ │ │ ├─ say-language-voice.4.x.js +│ │ │ ├─ say-language-voice.5.x.js │ │ │ ├─ say-language-voice.5.x.rb │ │ │ ├─ say-language-voice.6.x.cs │ │ │ ├─ say-language-voice.6.x.php @@ -29,7 +29,7 @@ A TwiML "snippet" is a set of Helper Library code samples that will all output t Each "snippet" is contained in a directory (e.g. `twiml/voice/say/say-language-voice/` from the diagram above) with the following: - an `output/` directory that contains a single file ending in `.twiml` -- several Helper Library code samples ending in the `.x.`, e.g. `say-language-voice.4.x.js` +- several Helper Library code samples ending in the `.x.`, e.g. `say-language-voice.5.x.js` - a `meta.json` file The snippet directory, the `.twiml` file, and all of the Helper Library code sample files have the same name. @@ -52,9 +52,9 @@ Example from `twiml/voice/stream/stream-1/output/stream-1.twiml`: ### The Helper Library code samples -The Helper Library code samples are the files with extensions like `4.x.js` and `9.x.java`. This is the Helper Library code that, when executed, will output the TwiML in the `.twiml` file. +The Helper Library code samples are the files with extensions like `5.x.js` and `9.x.java`. This is the Helper Library code that, when executed, will output the TwiML in the `.twiml` file. -For example, the `twiml/voice/stream/stream-1/stream-1.4.x.js` file is the `twilio-node` v4.x code that outputs the `` TwiML from above: +For example, the `twiml/voice/stream/stream-1/stream-1.5.x.js` file is the `twilio-node` v4.x code that outputs the `` TwiML from above: ```js const VoiceResponse = require('twilio').twiml.VoiceResponse; @@ -69,7 +69,7 @@ start.stream({ console.log(response.toString()); ``` -- The Helper Library code samples must have file extensions that match the version of the Helper Library. For example, code samples for version 4.x of the `twilio-node` Helper Library end in `4.x.js`, while version 3.x code samples end in `3.x.js`. +- The Helper Library code samples must have file extensions that match the version of the Helper Library. For example, code samples for version 4.x of the `twilio-node` Helper Library end in `5.x.js`, while version 3.x code samples end in `3.x.js`. - Use the [twiml-generator](https://github.com/TwilioDevEd/twiml-generator) project to generate the Helper Library code (it "backwards engineers" the code samples from the intended TwiML output). diff --git a/twiml/message/message/message-1/message-1.4.x.js b/twiml/message/message/message-1/message-1.5.x.js similarity index 100% rename from twiml/message/message/message-1/message-1.4.x.js rename to twiml/message/message/message-1/message-1.5.x.js diff --git a/twiml/message/message/message-2/message-2.4.x.js b/twiml/message/message/message-2/message-2.5.x.js similarity index 100% rename from twiml/message/message/message-2/message-2.4.x.js rename to twiml/message/message/message-2/message-2.5.x.js diff --git a/twiml/message/message/message-3/message-3.4.x.js b/twiml/message/message/message-3/message-3.5.x.js similarity index 100% rename from twiml/message/message/message-3/message-3.4.x.js rename to twiml/message/message/message-3/message-3.5.x.js diff --git a/twiml/message/message/message-4/message-4.4.x.js b/twiml/message/message/message-4/message-4.5.x.js similarity index 100% rename from twiml/message/message/message-4/message-4.4.x.js rename to twiml/message/message/message-4/message-4.5.x.js diff --git a/twiml/message/redirect/redirect-1/redirect-1.4.x.js b/twiml/message/redirect/redirect-1/redirect-1.5.x.js similarity index 100% rename from twiml/message/redirect/redirect-1/redirect-1.4.x.js rename to twiml/message/redirect/redirect-1/redirect-1.5.x.js diff --git a/twiml/message/redirect/redirect-2/redirect-2.4.x.js b/twiml/message/redirect/redirect-2/redirect-2.5.x.js similarity index 100% rename from twiml/message/redirect/redirect-2/redirect-2.4.x.js rename to twiml/message/redirect/redirect-2/redirect-2.5.x.js diff --git a/twiml/message/your-response/your-response-1/your-response-1.4.x.js b/twiml/message/your-response/your-response-1/your-response-1.5.x.js similarity index 100% rename from twiml/message/your-response/your-response-1/your-response-1.4.x.js rename to twiml/message/your-response/your-response-1/your-response-1.5.x.js diff --git a/twiml/message/your-response/your-response-2/your-response-2.4.x.js b/twiml/message/your-response/your-response-2/your-response-2.5.x.js similarity index 100% rename from twiml/message/your-response/your-response-2/your-response-2.4.x.js rename to twiml/message/your-response/your-response-2/your-response-2.5.x.js diff --git a/twiml/message/your-response/your-response-3/your-response-3.4.x.js b/twiml/message/your-response/your-response-3/your-response-3.5.x.js similarity index 100% rename from twiml/message/your-response/your-response-3/your-response-3.4.x.js rename to twiml/message/your-response/your-response-3/your-response-3.5.x.js diff --git a/twiml/voice/application/dial-application-basic/dial-application-basic.4.x.js b/twiml/voice/application/dial-application-basic/dial-application-basic.5.x.js similarity index 100% rename from twiml/voice/application/dial-application-basic/dial-application-basic.4.x.js rename to twiml/voice/application/dial-application-basic/dial-application-basic.5.x.js diff --git a/twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.4.x.js b/twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.5.x.js similarity index 100% rename from twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.4.x.js rename to twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.5.x.js diff --git a/twiml/voice/application/dial-application-customerid/dial-application-customerid.4.x.js b/twiml/voice/application/dial-application-customerid/dial-application-customerid.5.x.js similarity index 100% rename from twiml/voice/application/dial-application-customerid/dial-application-customerid.4.x.js rename to twiml/voice/application/dial-application-customerid/dial-application-customerid.5.x.js diff --git a/twiml/voice/application/dial-application-parameter/dial-application-parameter.4.x.js b/twiml/voice/application/dial-application-parameter/dial-application-parameter.5.x.js similarity index 100% rename from twiml/voice/application/dial-application-parameter/dial-application-parameter.4.x.js rename to twiml/voice/application/dial-application-parameter/dial-application-parameter.5.x.js diff --git a/twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.4.x.js b/twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.5.x.js similarity index 100% rename from twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.4.x.js rename to twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.5.x.js diff --git a/twiml/voice/application/hangup-parameter/hangup-parameter.4.x.js b/twiml/voice/application/hangup-parameter/hangup-parameter.5.x.js similarity index 100% rename from twiml/voice/application/hangup-parameter/hangup-parameter.4.x.js rename to twiml/voice/application/hangup-parameter/hangup-parameter.5.x.js diff --git a/twiml/voice/application/reject-parameter/reject-parameter.4.x.js b/twiml/voice/application/reject-parameter/reject-parameter.5.x.js similarity index 100% rename from twiml/voice/application/reject-parameter/reject-parameter.4.x.js rename to twiml/voice/application/reject-parameter/reject-parameter.5.x.js diff --git a/twiml/voice/client/client-1/client-1.4.x.js b/twiml/voice/client/client-1/client-1.5.x.js similarity index 100% rename from twiml/voice/client/client-1/client-1.4.x.js rename to twiml/voice/client/client-1/client-1.5.x.js diff --git a/twiml/voice/client/client-2/client-2.4.x.js b/twiml/voice/client/client-2/client-2.5.x.js similarity index 100% rename from twiml/voice/client/client-2/client-2.4.x.js rename to twiml/voice/client/client-2/client-2.5.x.js diff --git a/twiml/voice/client/client-3/client-3.4.x.js b/twiml/voice/client/client-3/client-3.5.x.js similarity index 100% rename from twiml/voice/client/client-3/client-3.4.x.js rename to twiml/voice/client/client-3/client-3.5.x.js diff --git a/twiml/voice/conference/conference-1/conference-1.4.x.js b/twiml/voice/conference/conference-1/conference-1.5.x.js similarity index 100% rename from twiml/voice/conference/conference-1/conference-1.4.x.js rename to twiml/voice/conference/conference-1/conference-1.5.x.js diff --git a/twiml/voice/conference/conference-10/conference-10.4.x.js b/twiml/voice/conference/conference-10/conference-10.5.x.js similarity index 100% rename from twiml/voice/conference/conference-10/conference-10.4.x.js rename to twiml/voice/conference/conference-10/conference-10.5.x.js diff --git a/twiml/voice/conference/conference-2/conference-2.4.x.js b/twiml/voice/conference/conference-2/conference-2.5.x.js similarity index 100% rename from twiml/voice/conference/conference-2/conference-2.4.x.js rename to twiml/voice/conference/conference-2/conference-2.5.x.js diff --git a/twiml/voice/conference/conference-3/conference-3.4.x.js b/twiml/voice/conference/conference-3/conference-3.5.x.js similarity index 100% rename from twiml/voice/conference/conference-3/conference-3.4.x.js rename to twiml/voice/conference/conference-3/conference-3.5.x.js diff --git a/twiml/voice/conference/conference-4/conference-4.4.x.js b/twiml/voice/conference/conference-4/conference-4.5.x.js similarity index 100% rename from twiml/voice/conference/conference-4/conference-4.4.x.js rename to twiml/voice/conference/conference-4/conference-4.5.x.js diff --git a/twiml/voice/conference/conference-5/conference-5.4.x.js b/twiml/voice/conference/conference-5/conference-5.5.x.js similarity index 100% rename from twiml/voice/conference/conference-5/conference-5.4.x.js rename to twiml/voice/conference/conference-5/conference-5.5.x.js diff --git a/twiml/voice/conference/conference-6/conference-6.4.x.js b/twiml/voice/conference/conference-6/conference-6.5.x.js similarity index 100% rename from twiml/voice/conference/conference-6/conference-6.4.x.js rename to twiml/voice/conference/conference-6/conference-6.5.x.js diff --git a/twiml/voice/conference/conference-7/conference-7.4.x.js b/twiml/voice/conference/conference-7/conference-7.5.x.js similarity index 100% rename from twiml/voice/conference/conference-7/conference-7.4.x.js rename to twiml/voice/conference/conference-7/conference-7.5.x.js diff --git a/twiml/voice/conference/conference-8/conference-8.4.x.js b/twiml/voice/conference/conference-8/conference-8.5.x.js similarity index 100% rename from twiml/voice/conference/conference-8/conference-8.4.x.js rename to twiml/voice/conference/conference-8/conference-8.5.x.js diff --git a/twiml/voice/conference/conference-9/conference-9.4.x.js b/twiml/voice/conference/conference-9/conference-9.5.x.js similarity index 100% rename from twiml/voice/conference/conference-9/conference-9.4.x.js rename to twiml/voice/conference/conference-9/conference-9.5.x.js diff --git a/twiml/voice/connect/autopilot/connect-1.4.x.js b/twiml/voice/connect/autopilot/connect-1.5.x.js similarity index 100% rename from twiml/voice/connect/autopilot/connect-1.4.x.js rename to twiml/voice/connect/autopilot/connect-1.5.x.js diff --git a/twiml/voice/dial/dial-1/dial-1.4.x.js b/twiml/voice/dial/dial-1/dial-1.5.x.js similarity index 100% rename from twiml/voice/dial/dial-1/dial-1.4.x.js rename to twiml/voice/dial/dial-1/dial-1.5.x.js diff --git a/twiml/voice/dial/dial-2/dial-2.4.x.js b/twiml/voice/dial/dial-2/dial-2.5.x.js similarity index 100% rename from twiml/voice/dial/dial-2/dial-2.4.x.js rename to twiml/voice/dial/dial-2/dial-2.5.x.js diff --git a/twiml/voice/dial/dial-3/dial-3.4.x.js b/twiml/voice/dial/dial-3/dial-3.5.x.js similarity index 100% rename from twiml/voice/dial/dial-3/dial-3.4.x.js rename to twiml/voice/dial/dial-3/dial-3.5.x.js diff --git a/twiml/voice/dial/dial-4/dial-4.4.x.js b/twiml/voice/dial/dial-4/dial-4.5.x.js similarity index 100% rename from twiml/voice/dial/dial-4/dial-4.4.x.js rename to twiml/voice/dial/dial-4/dial-4.5.x.js diff --git a/twiml/voice/dial/dial-5/dial-5.4.x.js b/twiml/voice/dial/dial-5/dial-5.5.x.js similarity index 100% rename from twiml/voice/dial/dial-5/dial-5.4.x.js rename to twiml/voice/dial/dial-5/dial-5.5.x.js diff --git a/twiml/voice/dial/dial-6/dial-6.4.x.js b/twiml/voice/dial/dial-6/dial-6.5.x.js similarity index 100% rename from twiml/voice/dial/dial-6/dial-6.4.x.js rename to twiml/voice/dial/dial-6/dial-6.5.x.js diff --git a/twiml/voice/dial/dial-7/dial-7.4.x.js b/twiml/voice/dial/dial-7/dial-7.5.x.js similarity index 100% rename from twiml/voice/dial/dial-7/dial-7.4.x.js rename to twiml/voice/dial/dial-7/dial-7.5.x.js diff --git a/twiml/voice/dial/dial-8/dial-8.4.x.js b/twiml/voice/dial/dial-8/dial-8.5.x.js similarity index 100% rename from twiml/voice/dial/dial-8/dial-8.4.x.js rename to twiml/voice/dial/dial-8/dial-8.5.x.js diff --git a/twiml/voice/dial/dial-9/dial-9.4.x.js b/twiml/voice/dial/dial-9/dial-9.5.x.js similarity index 100% rename from twiml/voice/dial/dial-9/dial-9.4.x.js rename to twiml/voice/dial/dial-9/dial-9.5.x.js diff --git a/twiml/voice/enqueue/enqueue-1/enqueue-1.4.x.js b/twiml/voice/enqueue/enqueue-1/enqueue-1.5.x.js similarity index 100% rename from twiml/voice/enqueue/enqueue-1/enqueue-1.4.x.js rename to twiml/voice/enqueue/enqueue-1/enqueue-1.5.x.js diff --git a/twiml/voice/enqueue/enqueue-2/enqueue-2.4.x.js b/twiml/voice/enqueue/enqueue-2/enqueue-2.5.x.js similarity index 100% rename from twiml/voice/enqueue/enqueue-2/enqueue-2.4.x.js rename to twiml/voice/enqueue/enqueue-2/enqueue-2.5.x.js diff --git a/twiml/voice/gather/gather-1/gather-1.4.x.js b/twiml/voice/gather/gather-1/gather-1.5.x.js similarity index 100% rename from twiml/voice/gather/gather-1/gather-1.4.x.js rename to twiml/voice/gather/gather-1/gather-1.5.x.js diff --git a/twiml/voice/gather/gather-2/gather-2.4.x.js b/twiml/voice/gather/gather-2/gather-2.5.x.js similarity index 100% rename from twiml/voice/gather/gather-2/gather-2.4.x.js rename to twiml/voice/gather/gather-2/gather-2.5.x.js diff --git a/twiml/voice/gather/gather-3/gather-3.4.x.js b/twiml/voice/gather/gather-3/gather-3.5.x.js similarity index 100% rename from twiml/voice/gather/gather-3/gather-3.4.x.js rename to twiml/voice/gather/gather-3/gather-3.5.x.js diff --git a/twiml/voice/gather/gather-4/gather-4.4.x.js b/twiml/voice/gather/gather-4/gather-4.5.x.js similarity index 100% rename from twiml/voice/gather/gather-4/gather-4.4.x.js rename to twiml/voice/gather/gather-4/gather-4.5.x.js diff --git a/twiml/voice/gather/gather-5/gather-5.4.x.js b/twiml/voice/gather/gather-5/gather-5.5.x.js similarity index 100% rename from twiml/voice/gather/gather-5/gather-5.4.x.js rename to twiml/voice/gather/gather-5/gather-5.5.x.js diff --git a/twiml/voice/hangup/hangup-1/hangup-1.4.x.js b/twiml/voice/hangup/hangup-1/hangup-1.5.x.js similarity index 100% rename from twiml/voice/hangup/hangup-1/hangup-1.4.x.js rename to twiml/voice/hangup/hangup-1/hangup-1.5.x.js diff --git a/twiml/voice/leave/leave-1/leave-1.4.x.js b/twiml/voice/leave/leave-1/leave-1.5.x.js similarity index 100% rename from twiml/voice/leave/leave-1/leave-1.4.x.js rename to twiml/voice/leave/leave-1/leave-1.5.x.js diff --git a/twiml/voice/leave/leave-2/leave-2.4.x.js b/twiml/voice/leave/leave-2/leave-2.5.x.js similarity index 100% rename from twiml/voice/leave/leave-2/leave-2.4.x.js rename to twiml/voice/leave/leave-2/leave-2.5.x.js diff --git a/twiml/voice/leave/leave-3/leave-3.4.x.js b/twiml/voice/leave/leave-3/leave-3.5.x.js similarity index 100% rename from twiml/voice/leave/leave-3/leave-3.4.x.js rename to twiml/voice/leave/leave-3/leave-3.5.x.js diff --git a/twiml/voice/number/number-1/number-1.4.x.js b/twiml/voice/number/number-1/number-1.5.x.js similarity index 100% rename from twiml/voice/number/number-1/number-1.4.x.js rename to twiml/voice/number/number-1/number-1.5.x.js diff --git a/twiml/voice/number/number-2/number-2.4.x.js b/twiml/voice/number/number-2/number-2.5.x.js similarity index 100% rename from twiml/voice/number/number-2/number-2.4.x.js rename to twiml/voice/number/number-2/number-2.5.x.js diff --git a/twiml/voice/number/number-3/number-3.4.x.js b/twiml/voice/number/number-3/number-3.5.x.js similarity index 100% rename from twiml/voice/number/number-3/number-3.4.x.js rename to twiml/voice/number/number-3/number-3.5.x.js diff --git a/twiml/voice/number/number-4/number-4.4.x.js b/twiml/voice/number/number-4/number-4.5.x.js similarity index 100% rename from twiml/voice/number/number-4/number-4.4.x.js rename to twiml/voice/number/number-4/number-4.5.x.js diff --git a/twiml/voice/number/number-5/number-5.4.x.js b/twiml/voice/number/number-5/number-5.5.x.js similarity index 100% rename from twiml/voice/number/number-5/number-5.4.x.js rename to twiml/voice/number/number-5/number-5.5.x.js diff --git a/twiml/voice/parameter/parameter-1/parameter-1.4.x.js b/twiml/voice/parameter/parameter-1/parameter-1.5.x.js similarity index 100% rename from twiml/voice/parameter/parameter-1/parameter-1.4.x.js rename to twiml/voice/parameter/parameter-1/parameter-1.5.x.js diff --git a/twiml/voice/pause/pause-1/pause-1.4.x.js b/twiml/voice/pause/pause-1/pause-1.5.x.js similarity index 100% rename from twiml/voice/pause/pause-1/pause-1.4.x.js rename to twiml/voice/pause/pause-1/pause-1.5.x.js diff --git a/twiml/voice/pause/pause-2/pause-2.4.x.js b/twiml/voice/pause/pause-2/pause-2.5.x.js similarity index 100% rename from twiml/voice/pause/pause-2/pause-2.4.x.js rename to twiml/voice/pause/pause-2/pause-2.5.x.js diff --git a/twiml/voice/pay/pay-1/pay-1.4.x.js b/twiml/voice/pay/pay-1/pay-1.5.x.js similarity index 100% rename from twiml/voice/pay/pay-1/pay-1.4.x.js rename to twiml/voice/pay/pay-1/pay-1.5.x.js diff --git a/twiml/voice/pay/pay-2/pay-2.4.x.js b/twiml/voice/pay/pay-2/pay-2.5.x.js similarity index 100% rename from twiml/voice/pay/pay-2/pay-2.4.x.js rename to twiml/voice/pay/pay-2/pay-2.5.x.js diff --git a/twiml/voice/pay/pay-3/pay-3.4.x.js b/twiml/voice/pay/pay-3/pay-3.5.x.js similarity index 100% rename from twiml/voice/pay/pay-3/pay-3.4.x.js rename to twiml/voice/pay/pay-3/pay-3.5.x.js diff --git a/twiml/voice/pay/pay-4/pay-4.4.x.js b/twiml/voice/pay/pay-4/pay-4.5.x.js similarity index 100% rename from twiml/voice/pay/pay-4/pay-4.4.x.js rename to twiml/voice/pay/pay-4/pay-4.5.x.js diff --git a/twiml/voice/pay/pay-5/pay-5.4.x.js b/twiml/voice/pay/pay-5/pay-5.5.x.js similarity index 100% rename from twiml/voice/pay/pay-5/pay-5.4.x.js rename to twiml/voice/pay/pay-5/pay-5.5.x.js diff --git a/twiml/voice/pay/pay-6/pay-6.4.x.js b/twiml/voice/pay/pay-6/pay-6.5.x.js similarity index 100% rename from twiml/voice/pay/pay-6/pay-6.4.x.js rename to twiml/voice/pay/pay-6/pay-6.5.x.js diff --git a/twiml/voice/pay/pay-7/pay-7.4.x.js b/twiml/voice/pay/pay-7/pay-7.5.x.js similarity index 100% rename from twiml/voice/pay/pay-7/pay-7.4.x.js rename to twiml/voice/pay/pay-7/pay-7.5.x.js diff --git a/twiml/voice/pay/pay-8/pay-8.4.x.js b/twiml/voice/pay/pay-8/pay-8.5.x.js similarity index 100% rename from twiml/voice/pay/pay-8/pay-8.4.x.js rename to twiml/voice/pay/pay-8/pay-8.5.x.js diff --git a/twiml/voice/pay/pay-9/pay-9.4.x.js b/twiml/voice/pay/pay-9/pay-9.5.x.js similarity index 100% rename from twiml/voice/pay/pay-9/pay-9.4.x.js rename to twiml/voice/pay/pay-9/pay-9.5.x.js diff --git a/twiml/voice/pay/pay-charge-connector/pay-charge-connector.4.x.js b/twiml/voice/pay/pay-charge-connector/pay-charge-connector.5.x.js similarity index 100% rename from twiml/voice/pay/pay-charge-connector/pay-charge-connector.4.x.js rename to twiml/voice/pay/pay-charge-connector/pay-charge-connector.5.x.js diff --git a/twiml/voice/pay/pay-parameter/pay-parameter.4.x.js b/twiml/voice/pay/pay-parameter/pay-parameter.5.x.js similarity index 100% rename from twiml/voice/pay/pay-parameter/pay-parameter.4.x.js rename to twiml/voice/pay/pay-parameter/pay-parameter.5.x.js diff --git a/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.4.x.js b/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.5.x.js similarity index 100% rename from twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.4.x.js rename to twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.5.x.js diff --git a/twiml/voice/pay/pay-tokenize/pay-tokenize.4.x.js b/twiml/voice/pay/pay-tokenize/pay-tokenize.5.x.js similarity index 100% rename from twiml/voice/pay/pay-tokenize/pay-tokenize.4.x.js rename to twiml/voice/pay/pay-tokenize/pay-tokenize.5.x.js diff --git a/twiml/voice/pay/prompt/full-example-ach/full-example-ach.4.x.js b/twiml/voice/pay/prompt/full-example-ach/full-example-ach.5.x.js similarity index 100% rename from twiml/voice/pay/prompt/full-example-ach/full-example-ach.4.x.js rename to twiml/voice/pay/prompt/full-example-ach/full-example-ach.5.x.js diff --git a/twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.4.x.js b/twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.5.x.js similarity index 100% rename from twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.4.x.js rename to twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.5.x.js diff --git a/twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.4.x.js b/twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.5.x.js similarity index 100% rename from twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.4.x.js rename to twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.5.x.js diff --git a/twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.4.x.js b/twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.5.x.js similarity index 100% rename from twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.4.x.js rename to twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.5.x.js diff --git a/twiml/voice/play/play-1/play-1.4.x.js b/twiml/voice/play/play-1/play-1.5.x.js similarity index 100% rename from twiml/voice/play/play-1/play-1.4.x.js rename to twiml/voice/play/play-1/play-1.5.x.js diff --git a/twiml/voice/play/play-2/play-2.4.x.js b/twiml/voice/play/play-2/play-2.5.x.js similarity index 100% rename from twiml/voice/play/play-2/play-2.4.x.js rename to twiml/voice/play/play-2/play-2.5.x.js diff --git a/twiml/voice/play/play-3/play-3.4.x.js b/twiml/voice/play/play-3/play-3.5.x.js similarity index 100% rename from twiml/voice/play/play-3/play-3.4.x.js rename to twiml/voice/play/play-3/play-3.5.x.js diff --git a/twiml/voice/queue/queue-1/queue-1.4.x.js b/twiml/voice/queue/queue-1/queue-1.5.x.js similarity index 100% rename from twiml/voice/queue/queue-1/queue-1.4.x.js rename to twiml/voice/queue/queue-1/queue-1.5.x.js diff --git a/twiml/voice/queue/queue-2/queue-2.4.x.js b/twiml/voice/queue/queue-2/queue-2.5.x.js similarity index 100% rename from twiml/voice/queue/queue-2/queue-2.4.x.js rename to twiml/voice/queue/queue-2/queue-2.5.x.js diff --git a/twiml/voice/record/record-1/record-1.4.x.js b/twiml/voice/record/record-1/record-1.5.x.js similarity index 100% rename from twiml/voice/record/record-1/record-1.4.x.js rename to twiml/voice/record/record-1/record-1.5.x.js diff --git a/twiml/voice/record/record-2/record-2.4.x.js b/twiml/voice/record/record-2/record-2.5.x.js similarity index 100% rename from twiml/voice/record/record-2/record-2.4.x.js rename to twiml/voice/record/record-2/record-2.5.x.js diff --git a/twiml/voice/record/record-3/record-3.4.x.js b/twiml/voice/record/record-3/record-3.5.x.js similarity index 100% rename from twiml/voice/record/record-3/record-3.4.x.js rename to twiml/voice/record/record-3/record-3.5.x.js diff --git a/twiml/voice/record/record-4/record-4.4.x.js b/twiml/voice/record/record-4/record-4.5.x.js similarity index 100% rename from twiml/voice/record/record-4/record-4.4.x.js rename to twiml/voice/record/record-4/record-4.5.x.js diff --git a/twiml/voice/redirect/redirect-1/redirect-1.4.x.js b/twiml/voice/redirect/redirect-1/redirect-1.5.x.js similarity index 100% rename from twiml/voice/redirect/redirect-1/redirect-1.4.x.js rename to twiml/voice/redirect/redirect-1/redirect-1.5.x.js diff --git a/twiml/voice/redirect/redirect-2/redirect-2.4.x.js b/twiml/voice/redirect/redirect-2/redirect-2.5.x.js similarity index 100% rename from twiml/voice/redirect/redirect-2/redirect-2.4.x.js rename to twiml/voice/redirect/redirect-2/redirect-2.5.x.js diff --git a/twiml/voice/redirect/redirect-3/redirect-3.4.x.js b/twiml/voice/redirect/redirect-3/redirect-3.5.x.js similarity index 100% rename from twiml/voice/redirect/redirect-3/redirect-3.4.x.js rename to twiml/voice/redirect/redirect-3/redirect-3.5.x.js diff --git a/twiml/voice/refer/refer-1/refer-1.4.x.js b/twiml/voice/refer/refer-1/refer-1.5.x.js similarity index 100% rename from twiml/voice/refer/refer-1/refer-1.4.x.js rename to twiml/voice/refer/refer-1/refer-1.5.x.js diff --git a/twiml/voice/refer/refer-2/refer-2.4.x.js b/twiml/voice/refer/refer-2/refer-2.5.x.js similarity index 100% rename from twiml/voice/refer/refer-2/refer-2.4.x.js rename to twiml/voice/refer/refer-2/refer-2.5.x.js diff --git a/twiml/voice/refer/refer-3/refer-3.4.x.js b/twiml/voice/refer/refer-3/refer-3.5.x.js similarity index 100% rename from twiml/voice/refer/refer-3/refer-3.4.x.js rename to twiml/voice/refer/refer-3/refer-3.5.x.js diff --git a/twiml/voice/refer/refer-4/refer-4.4.x.js b/twiml/voice/refer/refer-4/refer-4.5.x.js similarity index 100% rename from twiml/voice/refer/refer-4/refer-4.4.x.js rename to twiml/voice/refer/refer-4/refer-4.5.x.js diff --git a/twiml/voice/reject/reject-1/reject-1.4.x.js b/twiml/voice/reject/reject-1/reject-1.5.x.js similarity index 100% rename from twiml/voice/reject/reject-1/reject-1.4.x.js rename to twiml/voice/reject/reject-1/reject-1.5.x.js diff --git a/twiml/voice/reject/reject-2/reject-2.4.x.js b/twiml/voice/reject/reject-2/reject-2.5.x.js similarity index 100% rename from twiml/voice/reject/reject-2/reject-2.4.x.js rename to twiml/voice/reject/reject-2/reject-2.5.x.js diff --git a/twiml/voice/say/say-basic-usage/say-basic-usage.4.x.js b/twiml/voice/say/say-basic-usage/say-basic-usage.5.x.js similarity index 100% rename from twiml/voice/say/say-basic-usage/say-basic-usage.4.x.js rename to twiml/voice/say/say-basic-usage/say-basic-usage.5.x.js diff --git a/twiml/voice/say/say-language/say-language.4.x.js b/twiml/voice/say/say-language/say-language.5.x.js similarity index 100% rename from twiml/voice/say/say-language/say-language.4.x.js rename to twiml/voice/say/say-language/say-language.5.x.js diff --git a/twiml/voice/say/say-loop/say-loop.4.x.js b/twiml/voice/say/say-loop/say-loop.5.x.js similarity index 100% rename from twiml/voice/say/say-loop/say-loop.4.x.js rename to twiml/voice/say/say-loop/say-loop.5.x.js diff --git a/twiml/voice/say/say-voice/say-voice.4.x.js b/twiml/voice/say/say-voice/say-voice.5.x.js similarity index 100% rename from twiml/voice/say/say-voice/say-voice.4.x.js rename to twiml/voice/say/say-voice/say-voice.5.x.js diff --git a/twiml/voice/say/ssml/ssml.4.x.js b/twiml/voice/say/ssml/ssml.5.x.js similarity index 100% rename from twiml/voice/say/ssml/ssml.4.x.js rename to twiml/voice/say/ssml/ssml.5.x.js diff --git a/twiml/voice/sim/sim-1/sim-1.4.x.js b/twiml/voice/sim/sim-1/sim-1.5.x.js similarity index 100% rename from twiml/voice/sim/sim-1/sim-1.4.x.js rename to twiml/voice/sim/sim-1/sim-1.5.x.js diff --git a/twiml/voice/sim/sim-2/sim-2.4.x.js b/twiml/voice/sim/sim-2/sim-2.5.x.js similarity index 100% rename from twiml/voice/sim/sim-2/sim-2.4.x.js rename to twiml/voice/sim/sim-2/sim-2.5.x.js diff --git a/twiml/voice/sip/sip-1/sip-1.4.x.js b/twiml/voice/sip/sip-1/sip-1.5.x.js similarity index 100% rename from twiml/voice/sip/sip-1/sip-1.4.x.js rename to twiml/voice/sip/sip-1/sip-1.5.x.js diff --git a/twiml/voice/sip/sip-10/sip-10.4.x.js b/twiml/voice/sip/sip-10/sip-10.5.x.js similarity index 100% rename from twiml/voice/sip/sip-10/sip-10.4.x.js rename to twiml/voice/sip/sip-10/sip-10.5.x.js diff --git a/twiml/voice/sip/sip-11/sip-11.4.x.js b/twiml/voice/sip/sip-11/sip-11.5.x.js similarity index 100% rename from twiml/voice/sip/sip-11/sip-11.4.x.js rename to twiml/voice/sip/sip-11/sip-11.5.x.js diff --git a/twiml/voice/sip/sip-12/sip-12.4.x.js b/twiml/voice/sip/sip-12/sip-12.5.x.js similarity index 100% rename from twiml/voice/sip/sip-12/sip-12.4.x.js rename to twiml/voice/sip/sip-12/sip-12.5.x.js diff --git a/twiml/voice/sip/sip-2/sip-2.4.x.js b/twiml/voice/sip/sip-2/sip-2.5.x.js similarity index 100% rename from twiml/voice/sip/sip-2/sip-2.4.x.js rename to twiml/voice/sip/sip-2/sip-2.5.x.js diff --git a/twiml/voice/sip/sip-3/sip-3.4.x.js b/twiml/voice/sip/sip-3/sip-3.5.x.js similarity index 100% rename from twiml/voice/sip/sip-3/sip-3.4.x.js rename to twiml/voice/sip/sip-3/sip-3.5.x.js diff --git a/twiml/voice/sip/sip-4/sip-4.4.x.js b/twiml/voice/sip/sip-4/sip-4.5.x.js similarity index 100% rename from twiml/voice/sip/sip-4/sip-4.4.x.js rename to twiml/voice/sip/sip-4/sip-4.5.x.js diff --git a/twiml/voice/sip/sip-5/sip-5.4.x.js b/twiml/voice/sip/sip-5/sip-5.5.x.js similarity index 100% rename from twiml/voice/sip/sip-5/sip-5.4.x.js rename to twiml/voice/sip/sip-5/sip-5.5.x.js diff --git a/twiml/voice/sip/sip-6/sip-6.4.x.js b/twiml/voice/sip/sip-6/sip-6.5.x.js similarity index 100% rename from twiml/voice/sip/sip-6/sip-6.4.x.js rename to twiml/voice/sip/sip-6/sip-6.5.x.js diff --git a/twiml/voice/sip/sip-7/sip-7.4.x.js b/twiml/voice/sip/sip-7/sip-7.5.x.js similarity index 100% rename from twiml/voice/sip/sip-7/sip-7.4.x.js rename to twiml/voice/sip/sip-7/sip-7.5.x.js diff --git a/twiml/voice/sip/sip-8/sip-8.4.x.js b/twiml/voice/sip/sip-8/sip-8.5.x.js similarity index 100% rename from twiml/voice/sip/sip-8/sip-8.4.x.js rename to twiml/voice/sip/sip-8/sip-8.5.x.js diff --git a/twiml/voice/sip/sip-9/sip-9.4.x.js b/twiml/voice/sip/sip-9/sip-9.5.x.js similarity index 100% rename from twiml/voice/sip/sip-9/sip-9.4.x.js rename to twiml/voice/sip/sip-9/sip-9.5.x.js diff --git a/twiml/voice/siprec/siprec-1/siprec-1.4.x.js b/twiml/voice/siprec/siprec-1/siprec-1.5.x.js similarity index 100% rename from twiml/voice/siprec/siprec-1/siprec-1.4.x.js rename to twiml/voice/siprec/siprec-1/siprec-1.5.x.js diff --git a/twiml/voice/sms/sms-1/sms-1.4.x.js b/twiml/voice/sms/sms-1/sms-1.5.x.js similarity index 100% rename from twiml/voice/sms/sms-1/sms-1.4.x.js rename to twiml/voice/sms/sms-1/sms-1.5.x.js diff --git a/twiml/voice/sms/sms-2/sms-2.4.x.js b/twiml/voice/sms/sms-2/sms-2.5.x.js similarity index 100% rename from twiml/voice/sms/sms-2/sms-2.4.x.js rename to twiml/voice/sms/sms-2/sms-2.5.x.js diff --git a/twiml/voice/sms/sms-3/sms-3.4.x.js b/twiml/voice/sms/sms-3/sms-3.5.x.js similarity index 100% rename from twiml/voice/sms/sms-3/sms-3.4.x.js rename to twiml/voice/sms/sms-3/sms-3.5.x.js diff --git a/twiml/voice/sms/sms-4/sms-4.4.x.js b/twiml/voice/sms/sms-4/sms-4.5.x.js similarity index 100% rename from twiml/voice/sms/sms-4/sms-4.4.x.js rename to twiml/voice/sms/sms-4/sms-4.5.x.js diff --git a/twiml/voice/stream/stream-1/stream-1.4.x.js b/twiml/voice/stream/stream-1/stream-1.5.x.js similarity index 100% rename from twiml/voice/stream/stream-1/stream-1.4.x.js rename to twiml/voice/stream/stream-1/stream-1.5.x.js diff --git a/twiml/voice/stream/stream-2/stream-2.4.x.js b/twiml/voice/stream/stream-2/stream-2.5.x.js similarity index 100% rename from twiml/voice/stream/stream-2/stream-2.4.x.js rename to twiml/voice/stream/stream-2/stream-2.5.x.js diff --git a/twiml/voice/your-response/your-response-1/your-response-1.4.x.js b/twiml/voice/your-response/your-response-1/your-response-1.5.x.js similarity index 100% rename from twiml/voice/your-response/your-response-1/your-response-1.4.x.js rename to twiml/voice/your-response/your-response-1/your-response-1.5.x.js diff --git a/twiml/voice/your-response/your-response-2/your-response-2.4.x.js b/twiml/voice/your-response/your-response-2/your-response-2.5.x.js similarity index 100% rename from twiml/voice/your-response/your-response-2/your-response-2.4.x.js rename to twiml/voice/your-response/your-response-2/your-response-2.5.x.js diff --git a/two-factor-authentication/verify-webhook/verify-webhook.4.x.js b/two-factor-authentication/verify-webhook/verify-webhook.5.x.js similarity index 100% rename from two-factor-authentication/verify-webhook/verify-webhook.4.x.js rename to two-factor-authentication/verify-webhook/verify-webhook.5.x.js diff --git a/verify/verifications/approve-verification/approve-verification.4.x.js b/verify/verifications/approve-verification/approve-verification.5.x.js similarity index 100% rename from verify/verifications/approve-verification/approve-verification.4.x.js rename to verify/verifications/approve-verification/approve-verification.5.x.js diff --git a/video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.4.x.js b/video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.5.x.js similarity index 100% rename from video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.4.x.js rename to video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.5.x.js diff --git a/video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.4.x.js b/video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.5.x.js similarity index 100% rename from video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.4.x.js rename to video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.5.x.js diff --git a/video/rest/compositionhooks/delete-hook/delete-hook.4.x.js b/video/rest/compositionhooks/delete-hook/delete-hook.5.x.js similarity index 100% rename from video/rest/compositionhooks/delete-hook/delete-hook.4.x.js rename to video/rest/compositionhooks/delete-hook/delete-hook.5.x.js diff --git a/video/rest/compositionhooks/get-hook/get-hook.4.x.js b/video/rest/compositionhooks/get-hook/get-hook.5.x.js similarity index 100% rename from video/rest/compositionhooks/get-hook/get-hook.4.x.js rename to video/rest/compositionhooks/get-hook/get-hook.5.x.js diff --git a/video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.4.x.js b/video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.5.x.js similarity index 100% rename from video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.4.x.js rename to video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.5.x.js diff --git a/video/rest/compositionhooks/list-hooks/list-hooks.4.x.js b/video/rest/compositionhooks/list-hooks/list-hooks.5.x.js similarity index 100% rename from video/rest/compositionhooks/list-hooks/list-hooks.4.x.js rename to video/rest/compositionhooks/list-hooks/list-hooks.5.x.js diff --git a/video/rest/compositionhooks/update-hook/update-hook.4.x.js b/video/rest/compositionhooks/update-hook/update-hook.5.x.js similarity index 100% rename from video/rest/compositionhooks/update-hook/update-hook.4.x.js rename to video/rest/compositionhooks/update-hook/update-hook.5.x.js diff --git a/video/rest/compositions/compose-chess/compose-chess.4.x.js b/video/rest/compositions/compose-chess/compose-chess.5.x.js similarity index 100% rename from video/rest/compositions/compose-chess/compose-chess.4.x.js rename to video/rest/compositions/compose-chess/compose-chess.5.x.js diff --git a/video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.4.x.js b/video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.5.x.js similarity index 100% rename from video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.4.x.js rename to video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.5.x.js diff --git a/video/rest/compositions/compose-main-with-row/compose-main-with-row.4.x.js b/video/rest/compositions/compose-main-with-row/compose-main-with-row.5.x.js similarity index 100% rename from video/rest/compositions/compose-main-with-row/compose-main-with-row.4.x.js rename to video/rest/compositions/compose-main-with-row/compose-main-with-row.5.x.js diff --git a/video/rest/compositions/compose-mosaic/compose-mosaic.4.x.js b/video/rest/compositions/compose-mosaic/compose-mosaic.5.x.js similarity index 100% rename from video/rest/compositions/compose-mosaic/compose-mosaic.4.x.js rename to video/rest/compositions/compose-mosaic/compose-mosaic.5.x.js diff --git a/video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.4.x.js b/video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.5.x.js similarity index 100% rename from video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.4.x.js rename to video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.5.x.js diff --git a/video/rest/compositions/compose-participant/compose-participant.4.x.js b/video/rest/compositions/compose-participant/compose-participant.5.x.js similarity index 100% rename from video/rest/compositions/compose-participant/compose-participant.4.x.js rename to video/rest/compositions/compose-participant/compose-participant.5.x.js diff --git a/video/rest/compositions/compose-pip/compose-pip.4.x.js b/video/rest/compositions/compose-pip/compose-pip.5.x.js similarity index 100% rename from video/rest/compositions/compose-pip/compose-pip.4.x.js rename to video/rest/compositions/compose-pip/compose-pip.5.x.js diff --git a/video/rest/compositions/compose-room/compose-room.4.x.js b/video/rest/compositions/compose-room/compose-room.5.x.js similarity index 100% rename from video/rest/compositions/compose-room/compose-room.4.x.js rename to video/rest/compositions/compose-room/compose-room.5.x.js diff --git a/video/rest/compositions/compose-set-as-row/compose-set-as-row.4.x.js b/video/rest/compositions/compose-set-as-row/compose-set-as-row.5.x.js similarity index 100% rename from video/rest/compositions/compose-set-as-row/compose-set-as-row.4.x.js rename to video/rest/compositions/compose-set-as-row/compose-set-as-row.5.x.js diff --git a/video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.4.x.js b/video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.5.x.js similarity index 100% rename from video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.4.x.js rename to video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.5.x.js diff --git a/video/rest/compositions/delete-composition/delete-composition.4.x.js b/video/rest/compositions/delete-composition/delete-composition.5.x.js similarity index 100% rename from video/rest/compositions/delete-composition/delete-composition.4.x.js rename to video/rest/compositions/delete-composition/delete-composition.5.x.js diff --git a/video/rest/compositions/get-completed-compositions/get-completed-compositions.4.x.js b/video/rest/compositions/get-completed-compositions/get-completed-compositions.5.x.js similarity index 100% rename from video/rest/compositions/get-completed-compositions/get-completed-compositions.4.x.js rename to video/rest/compositions/get-completed-compositions/get-completed-compositions.5.x.js diff --git a/video/rest/compositions/get-composition-media-file/get-composition-media-file.4.x.js b/video/rest/compositions/get-composition-media-file/get-composition-media-file.5.x.js similarity index 100% rename from video/rest/compositions/get-composition-media-file/get-composition-media-file.4.x.js rename to video/rest/compositions/get-composition-media-file/get-composition-media-file.5.x.js diff --git a/video/rest/compositions/get-composition/get-composition.4.x.js b/video/rest/compositions/get-composition/get-composition.5.x.js similarity index 100% rename from video/rest/compositions/get-composition/get-composition.4.x.js rename to video/rest/compositions/get-composition/get-composition.5.x.js diff --git a/video/rest/compositions/get-room-compositions/get-room-compositions.4.x.js b/video/rest/compositions/get-room-compositions/get-room-compositions.5.x.js similarity index 100% rename from video/rest/compositions/get-room-compositions/get-room-compositions.4.x.js rename to video/rest/compositions/get-room-compositions/get-room-compositions.5.x.js diff --git a/video/rest/compositions/transcode-audio-recording/transcode-audio-recording.4.x.js b/video/rest/compositions/transcode-audio-recording/transcode-audio-recording.5.x.js similarity index 100% rename from video/rest/compositions/transcode-audio-recording/transcode-audio-recording.4.x.js rename to video/rest/compositions/transcode-audio-recording/transcode-audio-recording.5.x.js diff --git a/video/rest/compositions/transcode-video-recording/transcode-video-recording.4.x.js b/video/rest/compositions/transcode-video-recording/transcode-video-recording.5.x.js similarity index 100% rename from video/rest/compositions/transcode-video-recording/transcode-video-recording.4.x.js rename to video/rest/compositions/transcode-video-recording/transcode-video-recording.5.x.js diff --git a/video/rest/recordings/list-deleted-recordings/list-deleted-recordings.4.x.js b/video/rest/recordings/list-deleted-recordings/list-deleted-recordings.5.x.js similarity index 100% rename from video/rest/recordings/list-deleted-recordings/list-deleted-recordings.4.x.js rename to video/rest/recordings/list-deleted-recordings/list-deleted-recordings.5.x.js diff --git a/video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.4.x.js b/video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.5.x.js similarity index 100% rename from video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.4.x.js rename to video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.5.x.js diff --git a/video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.4.x.js b/video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.5.x.js similarity index 100% rename from video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.4.x.js rename to video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.5.x.js diff --git a/video/rest/recordings/list-recordings-for-room/list-recordings-for-room.4.x.js b/video/rest/recordings/list-recordings-for-room/list-recordings-for-room.5.x.js similarity index 100% rename from video/rest/recordings/list-recordings-for-room/list-recordings-for-room.4.x.js rename to video/rest/recordings/list-recordings-for-room/list-recordings-for-room.5.x.js diff --git a/video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.4.x.js b/video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.5.x.js similarity index 100% rename from video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.4.x.js rename to video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.5.x.js diff --git a/video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.4.x.js b/video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.5.x.js similarity index 100% rename from video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.4.x.js rename to video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.5.x.js diff --git a/video/rest/rooms/create-group-room-with-h264/create-group-room.4.x.js b/video/rest/rooms/create-group-room-with-h264/create-group-room.5.x.js similarity index 100% rename from video/rest/rooms/create-group-room-with-h264/create-group-room.4.x.js rename to video/rest/rooms/create-group-room-with-h264/create-group-room.5.x.js diff --git a/video/rest/rooms/create-group-room/create-group-room.4.x.js b/video/rest/rooms/create-group-room/create-group-room.5.x.js similarity index 100% rename from video/rest/rooms/create-group-room/create-group-room.4.x.js rename to video/rest/rooms/create-group-room/create-group-room.5.x.js diff --git a/video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.4.x.js b/video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.5.x.js similarity index 100% rename from video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.4.x.js rename to video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.5.x.js diff --git a/video/rest/rooms/create-room/create-room.4.x.js b/video/rest/rooms/create-room/create-room.5.x.js similarity index 100% rename from video/rest/rooms/create-room/create-room.4.x.js rename to video/rest/rooms/create-room/create-room.5.x.js diff --git a/video/rest/rooms/list-room-recordings/list-room-recordings.4.x.js b/video/rest/rooms/list-room-recordings/list-room-recordings.5.x.js similarity index 100% rename from video/rest/rooms/list-room-recordings/list-room-recordings.4.x.js rename to video/rest/rooms/list-room-recordings/list-room-recordings.5.x.js diff --git a/video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.4.x.js b/video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.5.x.js similarity index 100% rename from video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.4.x.js rename to video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.5.x.js diff --git a/video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.4.x.js b/video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.5.x.js similarity index 100% rename from video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.4.x.js rename to video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.5.x.js diff --git a/video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.4.x.js b/video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.5.x.js similarity index 100% rename from video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.4.x.js rename to video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.5.x.js diff --git a/video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.4.x.js b/video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.5.x.js similarity index 100% rename from video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.4.x.js rename to video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.5.x.js diff --git a/video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.4.x.js b/video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.5.x.js similarity index 100% rename from video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.4.x.js rename to video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.5.x.js diff --git a/video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.4.x.js b/video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.5.x.js similarity index 100% rename from video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.4.x.js rename to video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.5.x.js diff --git a/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.4.x.js b/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.5.x.js similarity index 100% rename from video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.4.x.js rename to video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.5.x.js diff --git a/video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.4.x.js b/video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.5.x.js similarity index 100% rename from video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.4.x.js rename to video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.5.x.js diff --git a/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.4.x.js b/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.5.x.js similarity index 100% rename from video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.4.x.js rename to video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.5.x.js diff --git a/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.4.x.js b/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.5.x.js similarity index 100% rename from video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.4.x.js rename to video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.5.x.js diff --git a/video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.4.x.js b/video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.5.x.js similarity index 100% rename from video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.4.x.js rename to video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.5.x.js diff --git a/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.4.x.js b/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.5.x.js similarity index 100% rename from video/rest/rooms/recording-rules-start-all/recording-rules-start-all.4.x.js rename to video/rest/rooms/recording-rules-start-all/recording-rules-start-all.5.x.js diff --git a/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.4.x.js b/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.5.x.js similarity index 100% rename from video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.4.x.js rename to video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.5.x.js diff --git a/video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.4.x.js b/video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.5.x.js similarity index 100% rename from video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.4.x.js rename to video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.5.x.js diff --git a/video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.4.x.js b/video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.5.x.js similarity index 100% rename from video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.4.x.js rename to video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.5.x.js diff --git a/video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.4.x.js b/video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.5.x.js similarity index 100% rename from video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.4.x.js rename to video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.5.x.js diff --git a/video/rest/rooms/retrieve-room-recording/retrieve-room-recording.4.x.js b/video/rest/rooms/retrieve-room-recording/retrieve-room-recording.5.x.js similarity index 100% rename from video/rest/rooms/retrieve-room-recording/retrieve-room-recording.4.x.js rename to video/rest/rooms/retrieve-room-recording/retrieve-room-recording.5.x.js diff --git a/video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.4.x.js b/video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.5.x.js similarity index 100% rename from video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.4.x.js rename to video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.5.x.js diff --git a/video/users/token-generation-server-rooms/token-generation-server.4.x.js b/video/users/token-generation-server-rooms/token-generation-server.5.x.js similarity index 100% rename from video/users/token-generation-server-rooms/token-generation-server.4.x.js rename to video/users/token-generation-server-rooms/token-generation-server.5.x.js diff --git a/video/users/token-generation-server/token-generation-server.4.x.js b/video/users/token-generation-server/token-generation-server.5.x.js similarity index 100% rename from video/users/token-generation-server/token-generation-server.4.x.js rename to video/users/token-generation-server/token-generation-server.5.x.js diff --git a/voice/queueing/agent/queue-agent.4.x.js b/voice/queueing/agent/queue-agent.5.x.js similarity index 100% rename from voice/queueing/agent/queue-agent.4.x.js rename to voice/queueing/agent/queue-agent.5.x.js diff --git a/voice/queueing/caller/queue-caller.4.x.js b/voice/queueing/caller/queue-caller.5.x.js similarity index 100% rename from voice/queueing/caller/queue-caller.4.x.js rename to voice/queueing/caller/queue-caller.5.x.js diff --git a/voice/queueing/redirect/queue-redirect.4.x.js b/voice/queueing/redirect/queue-redirect.5.x.js similarity index 100% rename from voice/queueing/redirect/queue-redirect.4.x.js rename to voice/queueing/redirect/queue-redirect.5.x.js diff --git a/voice/specify-edge/specify-edge.4.x.js b/voice/specify-edge/specify-edge.5.x.js similarity index 100% rename from voice/specify-edge/specify-edge.4.x.js rename to voice/specify-edge/specify-edge.5.x.js diff --git a/wireless/commands/create-binary-example-1/create-binary-example-1.4.x.js b/wireless/commands/create-binary-example-1/create-binary-example-1.5.x.js similarity index 100% rename from wireless/commands/create-binary-example-1/create-binary-example-1.4.x.js rename to wireless/commands/create-binary-example-1/create-binary-example-1.5.x.js diff --git a/wireless/commands/create-text-example-1/create-text-example-1.4.x.js b/wireless/commands/create-text-example-1/create-text-example-1.5.x.js similarity index 100% rename from wireless/commands/create-text-example-1/create-text-example-1.4.x.js rename to wireless/commands/create-text-example-1/create-text-example-1.5.x.js diff --git a/wireless/commands/instance-get-example-1/instance-get-example-1.4.x.js b/wireless/commands/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from wireless/commands/instance-get-example-1/instance-get-example-1.4.x.js rename to wireless/commands/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/wireless/commands/list-example-1/list-example-1.4.x.js b/wireless/commands/list-example-1/list-example-1.5.x.js similarity index 100% rename from wireless/commands/list-example-1/list-example-1.4.x.js rename to wireless/commands/list-example-1/list-example-1.5.x.js diff --git a/wireless/rateplans/create-example-1/create-example-1.4.x.js b/wireless/rateplans/create-example-1/create-example-1.5.x.js similarity index 100% rename from wireless/rateplans/create-example-1/create-example-1.4.x.js rename to wireless/rateplans/create-example-1/create-example-1.5.x.js diff --git a/wireless/rateplans/instance-delete-example-1/delete-example-1.4.x.js b/wireless/rateplans/instance-delete-example-1/delete-example-1.5.x.js similarity index 100% rename from wireless/rateplans/instance-delete-example-1/delete-example-1.4.x.js rename to wireless/rateplans/instance-delete-example-1/delete-example-1.5.x.js diff --git a/wireless/rateplans/instance-get-example-1/instance-get-example-1.4.x.js b/wireless/rateplans/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from wireless/rateplans/instance-get-example-1/instance-get-example-1.4.x.js rename to wireless/rateplans/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/wireless/rateplans/instance-get-example-2/instance-get-example-2.4.x.js b/wireless/rateplans/instance-get-example-2/instance-get-example-2.5.x.js similarity index 100% rename from wireless/rateplans/instance-get-example-2/instance-get-example-2.4.x.js rename to wireless/rateplans/instance-get-example-2/instance-get-example-2.5.x.js diff --git a/wireless/rateplans/list-example-1/list-example-1.4.x.js b/wireless/rateplans/list-example-1/list-example-1.5.x.js similarity index 100% rename from wireless/rateplans/list-example-1/list-example-1.4.x.js rename to wireless/rateplans/list-example-1/list-example-1.5.x.js diff --git a/wireless/sims-data-session/list-example-1/list-example-1.4.x.js b/wireless/sims-data-session/list-example-1/list-example-1.5.x.js similarity index 100% rename from wireless/sims-data-session/list-example-1/list-example-1.4.x.js rename to wireless/sims-data-session/list-example-1/list-example-1.5.x.js diff --git a/wireless/sims-usage-record/list-example-1/list-example-1.4.x.js b/wireless/sims-usage-record/list-example-1/list-example-1.5.x.js similarity index 100% rename from wireless/sims-usage-record/list-example-1/list-example-1.4.x.js rename to wireless/sims-usage-record/list-example-1/list-example-1.5.x.js diff --git a/wireless/sims/instance-get-example-1/instance-get-example-1.4.x.js b/wireless/sims/instance-get-example-1/instance-get-example-1.5.x.js similarity index 100% rename from wireless/sims/instance-get-example-1/instance-get-example-1.4.x.js rename to wireless/sims/instance-get-example-1/instance-get-example-1.5.x.js diff --git a/wireless/sims/instance-get-example-2/instance-get-example-2.4.x.js b/wireless/sims/instance-get-example-2/instance-get-example-2.5.x.js similarity index 100% rename from wireless/sims/instance-get-example-2/instance-get-example-2.4.x.js rename to wireless/sims/instance-get-example-2/instance-get-example-2.5.x.js diff --git a/wireless/sims/instance-post-example-1/instance-post-example-1.4.x.js b/wireless/sims/instance-post-example-1/instance-post-example-1.5.x.js similarity index 100% rename from wireless/sims/instance-post-example-1/instance-post-example-1.4.x.js rename to wireless/sims/instance-post-example-1/instance-post-example-1.5.x.js diff --git a/wireless/sims/list-example-1/list-example-1.4.x.js b/wireless/sims/list-example-1/list-example-1.5.x.js similarity index 100% rename from wireless/sims/list-example-1/list-example-1.4.x.js rename to wireless/sims/list-example-1/list-example-1.5.x.js From fb173a2972689aa70799c53bc1fc064b08f738c8 Mon Sep 17 00:00:00 2001 From: Shubham Tiwari Date: Tue, 26 Mar 2024 16:35:27 +0530 Subject: [PATCH 06/95] chore: bumped ruby version to 7.x --- README.md | 2 +- ...ne-tcpa-compliance.6.x.rb => payfone-tcpa-compliance.7.x.rb} | 0 api-auth/{api-auth.6.x.rb => api-auth.7.x.rb} | 0 .../{capability-token.6.x.rb => capability-token.7.x.rb} | 0 ...ity-token-expires.6.x.rb => capability-token-expires.7.x.rb} | 0 .../{capability-token.6.x.rb => capability-token.7.x.rb} | 0 .../{capability-token.6.x.rb => capability-token.7.x.rb} | 0 .../{capability-token.6.x.rb => capability-token.7.x.rb} | 0 ...esponse-twiml-client.6.x.rb => response-twiml-client.7.x.rb} | 0 .../{response-twiml-dial.6.x.rb => response-twiml-dial.7.x.rb} | 0 .../{response-twiml.6.x.rb => response-twiml.7.x.rb} | 0 .../{create-document.6.x.rb => create-document.7.x.rb} | 0 .../{update-document.6.x.rb => update-document.7.x.rb} | 0 .../{create-certificate.6.x.rb => create-certificate.7.x.rb} | 0 .../{delete-certificate.6.x.rb => delete-certificate.7.x.rb} | 0 .../{list-certificates.6.x.rb => list-certificates.7.x.rb} | 0 ...{retrieve-certificate.6.x.rb => retrieve-certificate.7.x.rb} | 0 .../{update-certificate.6.x.rb => update-certificate.7.x.rb} | 0 .../{create-deployment.6.x.rb => create-deployment.7.x.rb} | 0 .../{delete-deployment.6.x.rb => delete-deployment.7.x.rb} | 0 .../{list-deployments.6.x.rb => list-deployments.7.x.rb} | 0 .../{retrieve-deployment.6.x.rb => retrieve-deployment.7.x.rb} | 0 .../{update-deployment.6.x.rb => update-deployment.7.x.rb} | 0 .../{create-device.6.x.rb => create-device.7.x.rb} | 0 .../{delete-device.6.x.rb => delete-device.7.x.rb} | 0 .../list-devices/{list-devices.6.x.rb => list-devices.7.x.rb} | 0 .../{retrieve-device.6.x.rb => retrieve-device.7.x.rb} | 0 .../{update-device.6.x.rb => update-device.7.x.rb} | 0 .../create-fleet/{create-fleet.6.x.rb => create-fleet.7.x.rb} | 0 .../delete-fleet/{delete-fleet.6.x.rb => delete-fleet.7.x.rb} | 0 .../list-fleets/{list-fleets.6.x.rb => list-fleets.7.x.rb} | 0 .../{retrieve-fleet.6.x.rb => retrieve-fleet.7.x.rb} | 0 .../update-fleet/{update-fleet.6.x.rb => update-fleet.7.x.rb} | 0 .../keys/create-key/{create-key.6.x.rb => create-key.7.x.rb} | 0 .../keys/delete-key/{delete-key.6.x.rb => delete-key.7.x.rb} | 0 .../rest/keys/list-keys/{list-key.6.x.rb => list-key.7.x.rb} | 0 .../retrieve-key/{retrieve-key.6.x.rb => retrieve-key.7.x.rb} | 0 .../keys/update-key/{update-key.6.x.rb => update-key.7.x.rb} | 0 fax/basic-send/{basic-send.6.x.rb => basic-send.7.x.rb} | 0 ...{instance-get-example.6.x.rb => instance-get-example.7.x.rb} | 0 ...nstance-post-example.6.x.rb => instance-post-example.7.x.rb} | 0 .../{list-get-example.6.x.rb => list-get-example.7.x.rb} | 0 fax/sip-send/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 fax/sip-send/example-2/{example-2.6.x.rb => example-2.7.x.rb} | 0 fax/sip-send/example-3/{example-3.6.x.rb => example-3.7.x.rb} | 0 .../example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../example-2/{example-2.6.x.rb => example-2.7.x.rb} | 0 ...{moderated-conference.6.x.rb => moderated-conference.7.x.rb} | 0 .../gather-example-step-0/{example.6.x.rb => example.7.x.rb} | 0 .../gather-example-step-1/{example.6.x.rb => example.7.x.rb} | 0 .../gather-example-step-2/{example.6.x.rb => example.7.x.rb} | 0 .../record-outgoing-call/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../record-twiml-transcribe/{example.6.x.rb => example.7.x.rb} | 0 .../record-twiml/{example.6.x.rb => example.7.x.rb} | 0 .../{use-add-on-data.6.x.rb => use-add-on-data.7.x.rb} | 0 .../respond-no-parameters/{example.6.x.rb => example.7.x.rb} | 0 .../respond-with-parameters/{example.6.x.rb => example.7.x.rb} | 0 ...essage-push-config.6.x.rb => new-message-push-config.7.x.rb} | 0 .../{disable-indicator.6.x.rb => disable-indicator.7.x.rb} | 0 .../{enable-indicator.6.x.rb => enable-indicator.7.x.rb} | 0 .../{create-channels.6.x.rb => create-channels.7.x.rb} | 0 .../{delete-channels.6.x.rb => delete-channels.7.x.rb} | 0 .../{list-channels.6.x.rb => list-channels.7.x.rb} | 0 .../{retrieve-channels.6.x.rb => retrieve-channels.7.x.rb} | 0 .../{update-channels.6.x.rb => update-channels.7.x.rb} | 0 .../{create-credentials.6.x.rb => create-credentials.7.x.rb} | 0 .../{delete-credentials.6.x.rb => delete-credentials.7.x.rb} | 0 .../{list-credentials.6.x.rb => list-credentials.7.x.rb} | 0 ...{retrieve-credentials.6.x.rb => retrieve-credentials.7.x.rb} | 0 .../{update-credentials.6.x.rb => update-credentials.7.x.rb} | 0 .../members/add-member/{add-member.6.x.rb => add-member.7.x.rb} | 0 .../list-members/{list-members.6.x.rb => list-members.7.x.rb} | 0 .../{remove-member.6.x.rb => remove-member.7.x.rb} | 0 .../{retrieve-member.6.x.rb => retrieve-member.7.x.rb} | 0 .../{delete-messages.6.x.rb => delete-messages.7.x.rb} | 0 .../{list-messages.6.x.rb => list-messages.7.x.rb} | 0 .../{retrieve-messages.6.x.rb => retrieve-messages.7.x.rb} | 0 .../{send-messages.6.x.rb => send-messages.7.x.rb} | 0 .../{update-messages.6.x.rb => update-messages.7.x.rb} | 0 .../create-role/{create-role.6.x.rb => create-role.7.x.rb} | 0 .../delete-role/{delete-role.6.x.rb => delete-role.7.x.rb} | 0 .../roles/list-roles/{list-roles.6.x.rb => list-roles.7.x.rb} | 0 .../{retrieve-role.6.x.rb => retrieve-role.7.x.rb} | 0 .../update-role/{update-role.6.x.rb => update-role.7.x.rb} | 0 .../{create-service.6.x.rb => create-service.7.x.rb} | 0 .../{delete-service.6.x.rb => delete-service.7.x.rb} | 0 .../list-service/{list-service.6.x.rb => list-service.7.x.rb} | 0 .../{retrieve-service.6.x.rb => retrieve-service.7.x.rb} | 0 .../{update-service.6.x.rb => update-service.7.x.rb} | 0 .../create-user/{create-user.6.x.rb => create-user.7.x.rb} | 0 .../delete-user/{delete-user.6.x.rb => delete-user.7.x.rb} | 0 .../users/list-users/{list-users.6.x.rb => list-users.7.x.rb} | 0 .../{retrieve-user.6.x.rb => retrieve-user.7.x.rb} | 0 .../update-user/{update-user.6.x.rb => update-user.7.x.rb} | 0 ...oken-gen-server-push.6.x.rb => token-gen-server-push.7.x.rb} | 0 ...-generation-server.6.x.rb => token-generation-server.7.x.rb} | 0 ...don-examples-1.6.x.rb => lookup-get-addon-examples-1.7.x.rb} | 0 ...addon-payfone-1.6.x.rb => lookup-get-addon-payfone-1.7.x.rb} | 0 ...basic-example-1.6.x.rb => lookup-get-basic-example-1.7.x.rb} | 0 ...basic-example-2.6.x.rb => lookup-get-basic-example-2.7.x.rb} | 0 ...ample-1.6.x.rb => lookup-get-carrier-cname-example-1.7.x.rb} | 0 ...cname-example-1.6.x.rb => lookup-get-cname-example-1.7.x.rb} | 0 ...rnational-basic.6.x.rb => lookup-international-basic.7.x.rb} | 0 ...ookup-national-basic.6.x.rb => lookup-national-basic.7.x.rb} | 0 ...-media-file.6.x.rb => get-media-recording-media-file.7.x.rb} | 0 ...le.6.x.rb => get-media-recording-timed-metadata-file.7.x.rb} | 0 ...ng-domain-cert.6.x.rb => link-shortening-domain-cert.7.x.rb} | 0 .../{link-shortening-sms.6.x.rb => link-shortening-sms.7.x.rb} | 0 ...ortening-whatsapp.6.x.rb => link-shortening-whatsapp.7.x.rb} | 0 .../{service-alpha-add.6.x.rb => service-alpha-add.7.x.rb} | 0 ...{service-alpha-delete.6.x.rb => service-alpha-delete.7.x.rb} | 0 .../{service-alpha-get.6.x.rb => service-alpha-get.7.x.rb} | 0 .../{service-alpha-list.6.x.rb => service-alpha-list.7.x.rb} | 0 .../{service-create.6.x.rb => service-create.7.x.rb} | 0 .../{service-delete.6.x.rb => service-delete.7.x.rb} | 0 .../service-get/{service-get.6.x.rb => service-get.7.x.rb} | 0 .../service-list/{service-list.6.x.rb => service-list.7.x.rb} | 0 ...ple-number-add.6.x.rb => service-multiple-number-add.7.x.rb} | 0 .../{service-number-add.6.x.rb => service-number-add.7.x.rb} | 0 ...ervice-number-delete.6.x.rb => service-number-delete.7.x.rb} | 0 .../{service-number-get.6.x.rb => service-number-get.7.x.rb} | 0 .../{service-number-list.6.x.rb => service-number-list.7.x.rb} | 0 ...ervice-shortcode-add.6.x.rb => service-shortcode-add.7.x.rb} | 0 ...-shortcode-delete.6.x.rb => service-shortcode-delete.7.x.rb} | 0 ...ervice-shortcode-get.6.x.rb => service-shortcode-get.7.x.rb} | 0 ...vice-shortcode-list.6.x.rb => service-shortcode-list.7.x.rb} | 0 .../{service-update.6.x.rb => service-update.7.x.rb} | 0 ...ntity-match-example.6.x.rb => identity-match-example.7.x.rb} | 0 ...e-an-evurl-example.6.x.rb => create-an-evurl-example.7.x.rb} | 0 ...sult-example.6.x.rb => retrieve-evurl-result-example.7.x.rb} | 0 ...nce-delete-example.6.x.rb => instance-delete-example.7.x.rb} | 0 ...{instance-get-example.6.x.rb => instance-get-example.7.x.rb} | 0 ...{list-get-example-all.6.x.rb => list-get-example-all.7.x.rb} | 0 ...pr30.6.x.rb => list-get-example-warnings-apr01-apr30.7.x.rb} | 0 ...e-number.6.x.rb => instance-get-example-phone-number.7.x.rb} | 0 ....x.rb => list-get-example-actorsid-resourcesid-error.7.x.rb} | 0 ...e-date-filter.6.x.rb => list-get-example-date-filter.7.x.rb} | 0 ...filter.6.x.rb => list-get-example-resourcesid-filter.7.x.rb} | 0 ...er.6.x.rb => list-get-example-sourceipaddress-filter.7.x.rb} | 0 ...nding-server-fcm.6.x.rb => create-binding-server-fcm.7.x.rb} | 0 ...nding-server-apn.6.x.rb => create-binding-server-apn.7.x.rb} | 0 .../{send-notification-2.6.x.rb => send-notification-2.7.x.rb} | 0 ...-segment-tag.6.x.rb => send-notification-segment-tag.7.x.rb} | 0 ...fication-segment.6.x.rb => send-notification-segment.7.x.rb} | 0 .../{send-notification.6.x.rb => send-notification.7.x.rb} | 0 .../{create-binding.6.x.rb => create-binding.7.x.rb} | 0 .../{delete-binding.6.x.rb => delete-binding.7.x.rb} | 0 .../list-binding/{list-binding.6.x.rb => list-binding.7.x.rb} | 0 .../{retrieve-binding.6.x.rb => retrieve-binding.7.x.rb} | 0 ...reate-apn-credential.6.x.rb => create-apn-credential.7.x.rb} | 0 ...reate-fcm-credential.6.x.rb => create-fcm-credential.7.x.rb} | 0 ...reate-gcm-credential.6.x.rb => create-gcm-credential.7.x.rb} | 0 .../{delete-credential.6.x.rb => delete-credential.7.x.rb} | 0 .../{list-credential.6.x.rb => list-credential.7.x.rb} | 0 .../{retrieve-credential.6.x.rb => retrieve-credential.7.x.rb} | 0 .../{update-credential.6.x.rb => update-credential.7.x.rb} | 0 ...cation-detailed.6.x.rb => send-notification-detailed.7.x.rb} | 0 ...on-with-badge.6.x.rb => send-notification-with-badge.7.x.rb} | 0 .../{send-notification.6.x.rb => send-notification.7.x.rb} | 0 ...notification.6.x.rb => send-passthrough-notification.7.x.rb} | 0 .../list-segment/{list-segment.6.x.rb => list-segment.7.x.rb} | 0 .../{create-service.6.x.rb => create-service.7.x.rb} | 0 .../{delete-service.6.x.rb => delete-service.7.x.rb} | 0 .../list-service/{list-service.6.x.rb => list-service.7.x.rb} | 0 .../{retrieve-service.6.x.rb => retrieve-service.7.x.rb} | 0 .../{update-service.6.x.rb => update-service.7.x.rb} | 0 .../{add-user-to-segment.6.x.rb => add-user-to-segment.7.x.rb} | 0 .../create-user/{create-user.6.x.rb => create-user.7.x.rb} | 0 .../delete-user/{delete-user.6.x.rb => delete-user.7.x.rb} | 0 ...{list-binding-of-user.6.x.rb => list-binding-of-user.7.x.rb} | 0 .../users/list-users/{list-users.6.x.rb => list-users.7.x.rb} | 0 ...user-from-segment.6.x.rb => remove-user-from-segment.7.x.rb} | 0 .../{retrieve-user.6.x.rb => retrieve-user.7.x.rb} | 0 .../{create-binding.6.x.rb => create-binding.7.x.rb} | 0 ...tion-to-number.6.x.rb => send-notification-to-number.7.x.rb} | 0 .../{send-notification.6.x.rb => send-notification.7.x.rb} | 0 ...et-messaging-country.6.x.rb => get-messaging-country.7.x.rb} | 0 ...ne-number-country.6.x.rb => get-phone-number-country.7.x.rb} | 0 .../{get-voice-country.6.x.rb => get-voice-country.7.x.rb} | 0 ...r.6.x.rb => get-voice-number-with-origination-number.7.x.rb} | 0 .../{get-voice-number.6.x.rb => get-voice-number.7.x.rb} | 0 ...ssaging-countries.6.x.rb => list-messaging-countries.7.x.rb} | 0 ...mber-countries.6.x.rb => list-phone-number-countries.7.x.rb} | 0 ...{list-voice-countries.6.x.rb => list-voice-countries.7.x.rb} | 0 .../{add-phone-number.6.x.rb => add-phone-number.7.x.rb} | 0 .../{create-participant.6.x.rb => create-participant.7.x.rb} | 0 .../{create-service.6.x.rb => create-service.7.x.rb} | 0 .../{create-session.6.x.rb => create-session.7.x.rb} | 0 .../send-message/{send-message.6.x.rb => send-message.7.x.rb} | 0 ...e_hello_world_task.6.x.rb => create_hello_world_task.7.x.rb} | 0 ...o_world_samples.6.x.rb => create_hello_world_samples.7.x.rb} | 0 .../{create_joke_samples.6.x.rb => create_joke_samples.7.x.rb} | 0 .../{create_joke_task.6.x.rb => create_joke_task.7.x.rb} | 0 .../query-task/{query_task.6.x.rb => query_task.7.x.rb} | 0 .../{send_notifications.6.x.rb => send_notifications.7.x.rb} | 0 .../{send_notifications.6.x.rb => send_notifications.7.x.rb} | 0 .../example-3/{sms_reply_ahoy.6.x.rb => sms_reply_ahoy.7.x.rb} | 0 .../{mms_hello_friend.6.x.rb => mms_hello_friend.7.x.rb} | 0 .../example-5/{reply_by_name.6.x.rb => reply_by_name.7.x.rb} | 0 ...s_conversations.6.x.rb => tracking_sms_conversations.7.x.rb} | 0 ...{send_sms_during_call.6.x.rb => send_sms_during_call.7.x.rb} | 0 .../{outgoing_call.6.x.rb => outgoing_call.7.x.rb} | 0 .../{respond_to_call.6.x.rb => respond_to_call.7.x.rb} | 0 ...{ip-messaging-example.6.x.rb => ip-messaging-example.7.x.rb} | 0 ...{ip-messaging-example.6.x.rb => ip-messaging-example.7.x.rb} | 0 .../live-example/{live-example.6.x.rb => live-example.7.x.rb} | 0 .../sync-example/{sync-example.6.x.rb => sync-example.7.x.rb} | 0 .../{video-example.6.x.rb => video-example.7.x.rb} | 0 .../{voice-example.6.x.rb => voice-example.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 ...nce-post-example-2.6.x.rb => instance-post-example-2.7.x.rb} | 0 ...nce-post-example-3.6.x.rb => instance-post-example-3.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 ...nce-create-example.6.x.rb => instance-create-example.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 ...pns-example-1.6.x.rb => list-dependent-pns-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} | 0 .../{outgoing-call-1.6.x.rb => outgoing-call-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 ...ced-example-1.6.x.rb => local-get-advanced-example-1.7.x.rb} | 0 ...-basic-example-1.6.x.rb => local-get-basic-example-1.7.x.rb} | 0 ...-basic-example-2.6.x.rb => local-get-basic-example-2.7.x.rb} | 0 ...-basic-example-3.6.x.rb => local-get-basic-example-3.7.x.rb} | 0 ...-basic-example-4.6.x.rb => local-get-basic-example-4.7.x.rb} | 0 ...-basic-example-6.6.x.rb => local-get-basic-example-6.7.x.rb} | 0 ...-basic-example-6.6.x.rb => local-get-basic-example-6.7.x.rb} | 0 ...-basic-example-7.6.x.rb => local-get-basic-example-7.7.x.rb} | 0 ...-basic-example-8.6.x.rb => local-get-basic-example-8.7.x.rb} | 0 ...{mobile-get-example-1.6.x.rb => mobile-get-example-1.7.x.rb} | 0 ...free-get-example-1.6.x.rb => toll-free-get-example-1.7.x.rb} | 0 ...free-get-example-2.6.x.rb => toll-free-get-example-2.7.x.rb} | 0 ...free-get-example-3.6.x.rb => toll-free-get-example-3.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 ...xample-1.6.x.rb => summary-instance-delete-example-1.7.x.rb} | 0 ...t-example-1.6.x.rb => summary-instance-get-example-1.7.x.rb} | 0 ...t-example-2.6.x.rb => summary-instance-get-example-2.7.x.rb} | 0 ...post-example-1.6.x.rb => summary-list-post-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} | 0 .../{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} | 0 .../{list-get-example-6.6.x.rb => list-get-example-6.7.x.rb} | 0 .../{list-get-example-7.6.x.rb => list-get-example-7.7.x.rb} | 0 .../example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} | 0 .../{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} | 0 .../{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} | 0 ...{instance-get-example.6.x.rb => instance-get-example.7.x.rb} | 0 .../{list-get-example.6.x.rb => list-get-example.7.x.rb} | 0 .../{list-post-example.6.x.rb => list-post-example.7.x.rb} | 0 rest/keys/using-keys-example/{example.6.x.rb => example.7.x.rb} | 0 .../example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../example-2/{example-2.6.x.rb => example-2.7.x.rb} | 0 .../example-3/{example-3.6.x.rb => example-3.7.x.rb} | 0 .../example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../example-2/{example-2.6.x.rb => example-2.7.x.rb} | 0 .../example-3/{example-3.6.x.rb => example-3.7.x.rb} | 0 .../example-4/{example-4.6.x.rb => example-4.7.x.rb} | 0 ...delete-example-1.6.x.rb => instance-delete-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 ...nce-post-example-2.6.x.rb => instance-post-example-2.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../instance-delete/{example-1.6.x.rb => example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{feedback-confirm.6.x.rb => feedback-confirm.7.x.rb} | 0 .../{feedback-send-sms.6.x.rb => feedback-send-sms.7.x.rb} | 0 ...iml-dynamic-sms.6.x.rb => generate-twiml-dynamic-sms.7.x.rb} | 0 ...pty-response.6.x.rb => generate-twiml-empty-response.7.x.rb} | 0 .../{generate-twiml-mms.6.x.rb => generate-twiml-mms.7.x.rb} | 0 .../{example-1.6.x.rb => example-1.7.x.rb} | 0 .../{generate-twiml-sms.6.x.rb => generate-twiml-sms.7.x.rb} | 0 .../send-message/{example-1.6.x.rb => example-1.7.x.rb} | 0 ...end-messages-copilot.6.x.rb => send-messages-copilot.7.x.rb} | 0 .../{send-sms-callback.6.x.rb => send-sms-callback.7.x.rb} | 0 rest/messages/send-sms/{send-sms.6.x.rb => send-sms.7.x.rb} | 0 ...rsation-tracking.6.x.rb => sms-conversation-tracking.7.x.rb} | 0 .../{sms-handle-callback.6.x.rb => sms-handle-callback.7.x.rb} | 0 ...e-delete-examples.6.x.rb => instance-delete-examples.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} | 0 .../{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} | 0 .../{instance-delete.6.x.rb => instance-delete.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} | 0 ...delete-example-1.6.x.rb => instance-delete-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 ...nce-post-example-2.6.x.rb => instance-post-example-2.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} | 0 .../{get-recording-xml.6.x.rb => get-recording-xml.7.x.rb} | 0 ...e-delete-examples.6.x.rb => instance-delete-examples.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} | 0 .../{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} | 0 .../{list-get-example-6.6.x.rb => list-get-example-6.7.x.rb} | 0 ...anscriptions-6.x.rb => list-recording-transcriptions-7.x.rb} | 0 .../example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} | 0 ...te-control-domain.6.x.rb => associate-control-domain.7.x.rb} | 0 .../{create-acl-address.6.x.rb => create-acl-address.7.x.rb} | 0 ...ate-credential-list.6.x.rb => create-credential-list.7.x.rb} | 0 .../{create-credential.6.x.rb => create-credential.7.x.rb} | 0 .../{create-domain.6.x.rb => create-domain.7.x.rb} | 0 .../{create-ip-acl.6.x.rb => create-ip-acl.7.x.rb} | 0 ...elete-access-mapping.6.x.rb => delete-access-mapping.7.x.rb} | 0 ...elete-access-mapping.6.x.rb => delete-access-mapping.7.x.rb} | 0 ...e-address-instance.6.x.rb => delete-address-instance.7.x.rb} | 0 ...t-instance.6.x.rb => delete-credential-list-instance.7.x.rb} | 0 ...ist-mapping.6.x.rb => delete-credential-list-mapping.7.x.rb} | 0 ...ist-mapping.6.x.rb => delete-credential-list-mapping.7.x.rb} | 0 .../{delete-credential.6.x.rb => delete-credential.7.x.rb} | 0 ...ete-domain-instance.6.x.rb => delete-domain-instance.7.x.rb} | 0 .../{delete-ip-acl.6.x.rb => delete-ip-acl.7.x.rb} | 0 .../{get-acl-addresses.6.x.rb => get-acl-addresses.7.x.rb} | 0 .../get-acl-list/{get-acl-list.6.x.rb => get-acl-list.7.x.rb} | 0 .../{get-acl-lists.6.x.rb => get-acl-lists.7.x.rb} | 0 ...{get-address-instance.6.x.rb => get-address-instance.7.x.rb} | 0 ...list-instance.6.x.rb => get-credential-list-instance.7.x.rb} | 0 ...list-mappings.6.x.rb => get-credential-list-mappings.7.x.rb} | 0 ...edentials.6.x.rb => get-credential-lists-credentials.7.x.rb} | 0 ...{get-credential-lists.6.x.rb => get-credential-lists.7.x.rb} | 0 .../{get-credential.6.x.rb => get-credential.7.x.rb} | 0 .../{get-domain-instance.6.x.rb => get-domain-instance.7.x.rb} | 0 .../{get-domain-mappings.6.x.rb => get-domain-mappings.7.x.rb} | 0 .../get-domains/{get-domains.6.x.rb => get-domains.7.x.rb} | 0 .../get-ip-acls/{get-ip-acls.6.x.rb => get-ip-acls.7.x.rb} | 0 ...et-mappings-instance.6.x.rb => get-mappings-instance.7.x.rb} | 0 ...et-mappings-instance.6.x.rb => get-mappings-instance.7.x.rb} | 0 ...ial-list-domain.6.x.rb => map-credential-list-domain.7.x.rb} | 0 ...ial-list-domain.6.x.rb => map-credential-list-domain.7.x.rb} | 0 .../{map-list-domain.6.x.rb => map-list-domain.7.x.rb} | 0 .../{map-list-domain.6.x.rb => map-list-domain.7.x.rb} | 0 ...e-address-instance.6.x.rb => update-address-instance.7.x.rb} | 0 ...t-instance.6.x.rb => update-credential-list-instance.7.x.rb} | 0 .../{update-credential.6.x.rb => update-credential.7.x.rb} | 0 ...ate-domain-instance.6.x.rb => update-domain-instance.7.x.rb} | 0 ...ate-ip-acl-instance.6.x.rb => update-ip-acl-instance.7.x.rb} | 0 rest/sip/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 rest/sip/example-2/{example-2.6.x.rb => example-2.7.x.rb} | 0 rest/sip/example-3/{example-3.6.x.rb => example-3.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{subaccount-billing.6.x.rb => subaccount-billing.7.x.rb} | 0 ...s-example-1.6.x.rb => creating-subaccounts-example-1.7.x.rb} | 0 ...ers-example-1.6.x.rb => exchanging-numbers-example-1.7.x.rb} | 0 ...ts-example-1.6.x.rb => listing-subaccounts-example-1.7.x.rb} | 0 ...ts-example-2.6.x.rb => listing-subaccounts-example-2.7.x.rb} | 0 .../{subaccount-call.6.x.rb => subaccount-call.7.x.rb} | 0 .../delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../events/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../taskqueue/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../worker/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workspace/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../reservations/call/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../conference/{conference.6.x.rb => conference.7.x.rb} | 0 .../reservations/dequeue/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../reservations/redirect/{redirect.6.x.rb => redirect.7.x.rb} | 0 .../reservations/reject/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../taskqueue/cumulative/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../taskqueue/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../taskqueue/realtime/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../worker/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workers/cumulative/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workers/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workers/realtime/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workflow/cumulative/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workflow/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workflow/realtime/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workspace/cumulative/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workspace/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../workspace/realtime/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-2/{example-2.6.x.rb => example-2.7.x.rb} | 0 .../list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../twiml/example1/example/{example.6.x.rb => example.7.x.rb} | 0 .../twiml/example2/example/{example.6.x.rb => example.7.x.rb} | 0 .../twiml/example3/example/{example.6.x.rb => example.7.x.rb} | 0 .../twiml/example4/example/{example.6.x.rb => example.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../call/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../dequeue/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list-get-example1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../reject/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-2/{example-2.6.x.rb => example-2.7.x.rb} | 0 .../list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 ...{test-calls-example-1.6.x.rb => test-calls-example-1.7.x.rb} | 0 ...{test-calls-example-2.6.x.rb => test-calls-example-2.7.x.rb} | 0 ...le-1.6.x.rb => test-incoming-phone-numbers-example-1.7.x.rb} | 0 ...le-2.6.x.rb => test-incoming-phone-numbers-example-2.7.x.rb} | 0 .../{test-post-example-3.6.x.rb => test-post-example-3.7.x.rb} | 0 ...ages-example-1.6.x.rb => test-sms-messages-example-1.7.x.rb} | 0 ...ages-example-2.6.x.rb => test-sms-messages-example-2.7.x.rb} | 0 ...ages-example-3.6.x.rb => test-sms-messages-example-3.7.x.rb} | 0 ...st-1-hour-example.6.x.rb => list-post-1-hour-example.7.x.rb} | 0 .../{list-post-example.6.x.rb => list-post-example.7.x.rb} | 0 ...e-delete-examples.6.x.rb => instance-delete-examples.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} | 0 .../{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} | 0 .../{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} | 0 .../{list-get-example-6.6.x.rb => list-get-example-6.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 .../{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} | 0 .../{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} | 0 .../{twiml-play.6.x.rb => twiml-play.7.x.rb} | 0 .../{generate-twiml-say.6.x.rb => generate-twiml-say.7.x.rb} | 0 .../example-1/{example-1.6.x.rb => example-1.7.x.rb} | 0 .../example-2/{example-2.6.x.rb => example-2.7.x.rb} | 0 .../example-3/{example-3.6.x.rb => example-3.7.x.rb} | 0 .../example-4/{example-4.6.x.rb => example-4.7.x.rb} | 0 .../{recording-action.6.x.rb => recording-action.7.x.rb} | 0 ...onment-variables-1.6.x.rb => environment-variables-1.7.x.rb} | 0 ...{signature_validation.6.x.rb => signature_validation.7.x.rb} | 0 ...alidation_tests.6.x.rb => signature_validation_tests.7.x.rb} | 0 .../{list-post-example.6.x.rb => list-post-example.7.x.rb} | 0 .../{update-account.6.x.rb => update-account.7.x.rb} | 0 .../{delete-permission.6.x.rb => delete-permission.7.x.rb} | 0 .../{list-permissions.6.x.rb => list-permissions.7.x.rb} | 0 .../{retrieve-permission.6.x.rb => retrieve-permission.7.x.rb} | 0 .../{update-permission.6.x.rb => update-permission.7.x.rb} | 0 .../{create-document.6.x.rb => create-document.7.x.rb} | 0 .../{delete-document.6.x.rb => delete-document.7.x.rb} | 0 .../{list-documents.6.x.rb => list-documents.7.x.rb} | 0 .../{retrieve-document.6.x.rb => retrieve-document.7.x.rb} | 0 .../{update-document.6.x.rb => update-document.7.x.rb} | 0 .../{delete-permission.6.x.rb => delete-permission.7.x.rb} | 0 .../{list-permissions.6.x.rb => list-permissions.7.x.rb} | 0 .../{retrieve-permission.6.x.rb => retrieve-permission.7.x.rb} | 0 .../{update-permission.6.x.rb => update-permission.7.x.rb} | 0 .../{create-list-item.6.x.rb => create-list-item.7.x.rb} | 0 .../create-list/{create-list.6.x.rb => create-list.7.x.rb} | 0 .../{delete-list-item.6.x.rb => delete-list-item.7.x.rb} | 0 .../delete-list/{delete-list.6.x.rb => delete-list.7.x.rb} | 0 .../lists/list-lists/{list-lists.6.x.rb => list-lists.7.x.rb} | 0 .../lists/query-list/{query-list.6.x.rb => query-list.7.x.rb} | 0 .../{retrieve-list-item.6.x.rb => retrieve-list-item.7.x.rb} | 0 .../{retrieve-list.6.x.rb => retrieve-list.7.x.rb} | 0 .../{update-list-item.6.x.rb => update-list-item.7.x.rb} | 0 .../update-list/{update-list.6.x.rb => update-list.7.x.rb} | 0 .../{delete-permission.6.x.rb => delete-permission.7.x.rb} | 0 .../{list-permissions.6.x.rb => list-permissions.7.x.rb} | 0 .../{retrieve-permission.6.x.rb => retrieve-permission.7.x.rb} | 0 .../{update-permission.6.x.rb => update-permission.7.x.rb} | 0 .../{create-map-item.6.x.rb => create-map-item.7.x.rb} | 0 .../maps/create-map/{create-map.6.x.rb => create-map.7.x.rb} | 0 .../{delete-map-item.6.x.rb => delete-map-item.7.x.rb} | 0 .../maps/delete-map/{delete-map.6.x.rb => delete-map.7.x.rb} | 0 sync/rest/maps/list-maps/{list-maps.6.x.rb => list-maps.7.x.rb} | 0 sync/rest/maps/query-map/{query-map.6.x.rb => query-map.7.x.rb} | 0 .../{retrieve-map-item.6.x.rb => retrieve-map-item.7.x.rb} | 0 .../retrieve-map/{retrieve-map.6.x.rb => retrieve-map.7.x.rb} | 0 .../{update-map-item.6.x.rb => update-map-item.7.x.rb} | 0 .../maps/update-map/{update-map.6.x.rb => update-map.7.x.rb} | 0 ...ate-service-webhook.6.x.rb => create-service-webhook.7.x.rb} | 0 .../{create-service.6.x.rb => create-service.7.x.rb} | 0 .../{delete-service.6.x.rb => delete-service.7.x.rb} | 0 .../{list-services.6.x.rb => list-services.7.x.rb} | 0 .../{retrieve-service.6.x.rb => retrieve-service.7.x.rb} | 0 .../{update-service.6.x.rb => update-service.7.x.rb} | 0 .../{create-stream.6.x.rb => create-stream.7.x.rb} | 0 .../{delete-stream.6.x.rb => delete-stream.7.x.rb} | 0 .../list-streams/{list-streams.6.x.rb => list-streams.7.x.rb} | 0 ...lish-stream-message.6.x.rb => publish-stream-message.7.x.rb} | 0 .../{retrieve-stream.6.x.rb => retrieve-stream.7.x.rb} | 0 .../{update-stream.6.x.rb => update-stream.7.x.rb} | 0 .../message/message-1/{message-1.6.x.rb => message-1.7.x.rb} | 0 .../message/message-2/{message-2.6.x.rb => message-2.7.x.rb} | 0 .../message/message-3/{message-3.6.x.rb => message-3.7.x.rb} | 0 .../message/message-4/{message-4.6.x.rb => message-4.7.x.rb} | 0 .../redirect-1/{redirect-1.6.x.rb => redirect-1.7.x.rb} | 0 .../redirect-2/{redirect-2.6.x.rb => redirect-2.7.x.rb} | 0 .../{your-response-1.6.x.rb => your-response-1.7.x.rb} | 0 .../{your-response-2.6.x.rb => your-response-2.7.x.rb} | 0 .../{your-response-3.6.x.rb => your-response-3.7.x.rb} | 0 ...l-application-basic.6.x.rb => dial-application-basic.7.x.rb} | 0 ...copyparentto.6.x.rb => dial-application-copyparentto.7.x.rb} | 0 ...ion-customerid.6.x.rb => dial-application-customerid.7.x.rb} | 0 ...ation-parameter.6.x.rb => dial-application-parameter.7.x.rb} | 0 ...rameter-scenario.6.x.rb => hangup-parameter-scenario.7.x.rb} | 0 .../{hangup-parameter.6.x.rb => hangup-parameter.7.x.rb} | 0 .../{reject-parameter.6.x.rb => reject-parameter.7.x.rb} | 0 .../voice/client/client-1/{client-1.6.x.rb => client-1.7.x.rb} | 0 .../voice/client/client-2/{client-2.6.x.rb => client-2.7.x.rb} | 0 .../voice/client/client-3/{client-3.6.x.rb => client-3.7.x.rb} | 0 .../conference-1/{conference-1.6.x.rb => conference-1.7.x.rb} | 0 .../{conference-10.6.x.rb => conference-10.7.x.rb} | 0 .../conference-2/{conference-2.6.x.rb => conference-2.7.x.rb} | 0 .../conference-3/{conference-3.6.x.rb => conference-3.7.x.rb} | 0 .../conference-4/{conference-4.6.x.rb => conference-4.7.x.rb} | 0 .../conference-5/{conference-6.6.x.rb => conference-6.7.x.rb} | 0 .../conference-6/{conference-6.6.x.rb => conference-6.7.x.rb} | 0 .../conference-7/{conference-7.6.x.rb => conference-7.7.x.rb} | 0 .../conference-8/{conference-8.6.x.rb => conference-8.7.x.rb} | 0 .../conference-9/{conference-9.6.x.rb => conference-9.7.x.rb} | 0 .../connect/autopilot/{connect-1.6.x.rb => connect-1.7.x.rb} | 0 .../connect/connect-1/{connect-1.6.x.rb => connect-1.7.x.rb} | 0 .../connect/connect-2/{connect-2.6.x.rb => connect-2.7.x.rb} | 0 ...n-action-method.6.x.rb => conversation-action-method.7.x.rb} | 0 ...allback.6.x.rb => conversation-action-statuscallback.7.x.rb} | 0 .../{conversation-action.6.x.rb => conversation-action.7.x.rb} | 0 .../{conversation-basic.6.x.rb => conversation-basic.7.x.rb} | 0 ...rsation-inboundautocreation-routingassignmenttimeout.7.x.rb} | 0 ...ocreation.6.x.rb => conversation-inboundautocreation.7.x.rb} | 0 ...inboundtimeout.6.x.rb => conversation-inboundtimeout.7.x.rb} | 0 ...onversation-record-recordingstatuscallback-and-event.7.x.rb} | 0 ...nversation-record-recordingstatuscallback-and-method.7.x.rb} | 0 ....x.rb => conversation-record-recordingstatuscallback.7.x.rb} | 0 ...ation-record-trim.6.x.rb => conversation-record-trim.7.x.rb} | 0 .../{conversation-record.6.x.rb => conversation-record.7.x.rb} | 0 ...b => conversation-statuscallback-statuscallbackevent.7.x.rb} | 0 ... => conversation-statuscallback-statuscallbackmethod.7.x.rb} | 0 ...statuscallback.6.x.rb => conversation-statuscallback.7.x.rb} | 0 .../stream/{connect_stream.6.x.rb => connect_stream.7.x.rb} | 0 .../{virtualagent-1.6.x.rb => virtualagent-1.7.x.rb} | 0 .../{virtualagent-2.6.x.rb => virtualagent-2.7.x.rb} | 0 .../{virtualagent-3.6.x.rb => virtualagent-3.7.x.rb} | 0 .../{virtualagent-4.6.x.rb => virtualagent-4.7.x.rb} | 0 .../{virtualagent-5.6.x.rb => virtualagent-5.7.x.rb} | 0 .../{virtualagent-6.6.x.rb => virtualagent-6.7.x.rb} | 0 twiml/voice/dial/dial-1/{dial-1.6.x.rb => dial-1.7.x.rb} | 0 twiml/voice/dial/dial-2/{dial-2.6.x.rb => dial-2.7.x.rb} | 0 twiml/voice/dial/dial-3/{dial-3.6.x.rb => dial-3.7.x.rb} | 0 twiml/voice/dial/dial-4/{dial-4.6.x.rb => dial-4.7.x.rb} | 0 twiml/voice/dial/dial-5/{dial-6.6.x.rb => dial-6.7.x.rb} | 0 twiml/voice/dial/dial-6/{dial-6.6.x.rb => dial-6.7.x.rb} | 0 twiml/voice/dial/dial-7/{dial-7.6.x.rb => dial-7.7.x.rb} | 0 twiml/voice/dial/dial-8/{dial-8.6.x.rb => dial-8.7.x.rb} | 0 twiml/voice/dial/dial-9/{dial-9.6.x.rb => dial-9.7.x.rb} | 0 .../enqueue/enqueue-1/{enqueue-1.6.x.rb => enqueue-1.7.x.rb} | 0 .../enqueue/enqueue-2/{enqueue-2.6.x.rb => enqueue-2.7.x.rb} | 0 .../voice/gather/gather-1/{gather-1.6.x.rb => gather-1.7.x.rb} | 0 .../voice/gather/gather-2/{gather-2.6.x.rb => gather-2.7.x.rb} | 0 .../voice/gather/gather-3/{gather-3.6.x.rb => gather-3.7.x.rb} | 0 .../voice/gather/gather-4/{gather-4.6.x.rb => gather-4.7.x.rb} | 0 .../voice/gather/gather-5/{gather-6.6.x.rb => gather-6.7.x.rb} | 0 .../voice/hangup/hangup-1/{hangup-1.6.x.rb => hangup-1.7.x.rb} | 0 twiml/voice/leave/leave-1/{leave-1.6.x.rb => leave-1.7.x.rb} | 0 twiml/voice/leave/leave-2/{leave-2.6.x.rb => leave-2.7.x.rb} | 0 twiml/voice/leave/leave-3/{leave-3.6.x.rb => leave-3.7.x.rb} | 0 .../voice/number/number-1/{number-1.6.x.rb => number-1.7.x.rb} | 0 .../voice/number/number-2/{number-2.6.x.rb => number-2.7.x.rb} | 0 .../voice/number/number-3/{number-3.6.x.rb => number-3.7.x.rb} | 0 .../voice/number/number-4/{number-4.6.x.rb => number-4.7.x.rb} | 0 .../voice/number/number-5/{number-6.6.x.rb => number-6.7.x.rb} | 0 .../parameter-1/{parameter-6.x.rb => parameter-7.x.rb} | 0 twiml/voice/pause/pause-1/{pause-1.6.x.rb => pause-1.7.x.rb} | 0 twiml/voice/pause/pause-2/{pause-2.6.x.rb => pause-2.7.x.rb} | 0 twiml/voice/pay/pay-1/{pay-1.6.x.rb => pay-1.7.x.rb} | 0 twiml/voice/pay/pay-2/{pay-2.6.x.rb => pay-2.7.x.rb} | 0 twiml/voice/pay/pay-3/{pay-3.6.x.rb => pay-3.7.x.rb} | 0 twiml/voice/pay/pay-4/{pay-4.6.x.rb => pay-4.7.x.rb} | 0 twiml/voice/pay/pay-5/{pay-6.6.x.rb => pay-6.7.x.rb} | 0 twiml/voice/pay/pay-6/{pay-6.6.x.rb => pay-6.7.x.rb} | 0 twiml/voice/pay/pay-7/{pay-7.6.x.rb => pay-7.7.x.rb} | 0 twiml/voice/pay/pay-8/{pay-8.6.x.rb => pay-8.7.x.rb} | 0 twiml/voice/pay/pay-9/{pay-9.6.x.rb => pay-9.7.x.rb} | 0 ...{pay-charge-connector.6.x.rb => pay-charge-connector.7.x.rb} | 0 .../{pay-parameter.6.x.rb => pay-parameter.7.x.rb} | 0 ...-tokenize-connector.6.x.rb => pay-tokenize-connector.7.x.rb} | 0 .../pay-tokenize/{pay-tokenize.6.x.rb => pay-tokenize.7.x.rb} | 0 .../{full-example-ach.6.x.rb => full-example-ach.7.x.rb} | 0 ...ample-credit-card.6.x.rb => full-example-credit-card.7.x.rb} | 0 ...s-basic.6.x.rb => prompt-requireMatchingInputs-basic.7.x.rb} | 0 ...ype.6.x.rb => prompt-requireMatchingInputs-errorType.7.x.rb} | 0 twiml/voice/play/play-1/{play-1.6.x.rb => play-1.7.x.rb} | 0 twiml/voice/play/play-2/{play-2.6.x.rb => play-2.7.x.rb} | 0 twiml/voice/play/play-3/{play-3.6.x.rb => play-3.7.x.rb} | 0 twiml/voice/queue/queue-1/{queue-1.6.x.rb => queue-1.7.x.rb} | 0 twiml/voice/queue/queue-2/{queue-2.6.x.rb => queue-2.7.x.rb} | 0 .../voice/record/record-1/{record-1.6.x.rb => record-1.7.x.rb} | 0 .../voice/record/record-2/{record-2.6.x.rb => record-2.7.x.rb} | 0 .../voice/record/record-3/{record-3.6.x.rb => record-3.7.x.rb} | 0 .../voice/record/record-4/{record-4.6.x.rb => record-4.7.x.rb} | 0 .../redirect-1/{redirect-1.6.x.rb => redirect-1.7.x.rb} | 0 .../redirect-2/{redirect-2.6.x.rb => redirect-2.7.x.rb} | 0 .../redirect-3/{redirect-3.6.x.rb => redirect-3.7.x.rb} | 0 twiml/voice/refer/refer-1/{refer-1.6.x.rb => refer-1.7.x.rb} | 0 twiml/voice/refer/refer-2/{refer-2.6.x.rb => refer-2.7.x.rb} | 0 twiml/voice/refer/refer-3/{refer-3.6.x.rb => refer-3.7.x.rb} | 0 twiml/voice/refer/refer-4/{refer-4.6.x.rb => refer-4.7.x.rb} | 0 .../voice/reject/reject-1/{reject-1.6.x.rb => reject-1.7.x.rb} | 0 .../voice/reject/reject-2/{reject-2.6.x.rb => reject-2.7.x.rb} | 0 .../{say-basic-usage.6.x.rb => say-basic-usage.7.x.rb} | 0 .../say-language/{say-language.6.x.rb => say-language.7.x.rb} | 0 twiml/voice/say/say-loop/{say-loop.6.x.rb => say-loop.7.x.rb} | 0 .../voice/say/say-voice/{say-voice.6.x.rb => say-voice.7.x.rb} | 0 twiml/voice/say/ssml/{ssml.6.x.rb => ssml.7.x.rb} | 0 twiml/voice/sim/sim-1/{sim-1.6.x.rb => sim-1.7.x.rb} | 0 twiml/voice/sim/sim-2/{sim-2.6.x.rb => sim-2.7.x.rb} | 0 twiml/voice/sip/sip-1/{sip-1.6.x.rb => sip-1.7.x.rb} | 0 twiml/voice/sip/sip-10/{sip-10.6.x.rb => sip-10.7.x.rb} | 0 twiml/voice/sip/sip-11/{sip-11.6.x.rb => sip-11.7.x.rb} | 0 twiml/voice/sip/sip-2/{sip-2.6.x.rb => sip-2.7.x.rb} | 0 twiml/voice/sip/sip-3/{sip-3.6.x.rb => sip-3.7.x.rb} | 0 twiml/voice/sip/sip-4/{sip-4.6.x.rb => sip-4.7.x.rb} | 0 twiml/voice/sip/sip-5/{sip-6.6.x.rb => sip-6.7.x.rb} | 0 twiml/voice/sip/sip-6/{sip-6.6.x.rb => sip-6.7.x.rb} | 0 twiml/voice/sip/sip-7/{sip-7.6.x.rb => sip-7.7.x.rb} | 0 twiml/voice/sip/sip-8/{sip-8.6.x.rb => sip-8.7.x.rb} | 0 twiml/voice/sip/sip-9/{sip-9.6.x.rb => sip-9.7.x.rb} | 0 .../voice/siprec/siprec-1/{siprec-1.6.x.rb => siprec-1.7.x.rb} | 0 twiml/voice/sms/sms-1/{sms-1.6.x.rb => sms-1.7.x.rb} | 0 twiml/voice/sms/sms-2/{sms-2.6.x.rb => sms-2.7.x.rb} | 0 twiml/voice/sms/sms-3/{sms-3.6.x.rb => sms-3.7.x.rb} | 0 twiml/voice/sms/sms-4/{sms-4.6.x.rb => sms-4.7.x.rb} | 0 .../voice/stream/stream-1/{stream-1.6.x.rb => stream-1.7.x.rb} | 0 .../voice/stream/stream-2/{stream-2.6.x.rb => stream-2.7.x.rb} | 0 .../{your-response-1.6.x.rb => your-response-1.7.x.rb} | 0 .../{your-response-2.6.x.rb => your-response-2.7.x.rb} | 0 .../{verify-webhook.6.x.rb => verify-webhook.7.x.rb} | 0 ...{approve-verification.6.x.rb => approve-verification.7.x.rb} | 0 .../{audio-mixing-hook.6.x.rb => audio-mixing-hook.7.x.rb} | 0 .../{complex-layout-hook.6.x.rb => complex-layout-hook.7.x.rb} | 0 .../delete-hook/{delete-hook.6.x.rb => delete-hook.7.x.rb} | 0 .../get-hook/{get-hook.6.x.rb => get-hook.7.x.rb} | 0 .../{grid-mixing-hook.6.x.rb => grid-mixing-hook.7.x.rb} | 0 .../list-hooks/{list-hooks.6.x.rb => list-hooks.7.x.rb} | 0 .../update-hook/{update-hook.6.x.rb => update-hook.7.x.rb} | 0 .../{compose-chess.6.x.rb => compose-chess.7.x.rb} | 0 ...-col-and-pip.6.x.rb => compose-main-with-col-and-pip.7.x.rb} | 0 ...ompose-main-with-row.6.x.rb => compose-main-with-row.7.x.rb} | 0 .../{compose-mosaic.6.x.rb => compose-mosaic.7.x.rb} | 0 ....6.x.rb => compose-participant-video-with-all-audios.7.x.rb} | 0 .../{compose-participant.6.x.rb => compose-participant.7.x.rb} | 0 .../compose-pip/{compose-pip.6.x.rb => compose-pip.7.x.rb} | 0 .../compose-room/{compose-room.6.x.rb => compose-room.7.x.rb} | 0 .../{compose-set-as-row.6.x.rb => compose-set-as-row.7.x.rb} | 0 ...se-set-as-sequence.6.x.rb => compose-set-as-sequence.7.x.rb} | 0 .../{delete-composition.6.x.rb => delete-composition.7.x.rb} | 0 ...ed-compositions.6.x.rb => get-completed-compositions.7.x.rb} | 0 ...tion-media-file.6.x.rb => get-composition-media-file.7.x.rb} | 0 .../{get-composition.6.x.rb => get-composition.7.x.rb} | 0 ...et-room-compositions.6.x.rb => get-room-compositions.7.x.rb} | 0 ...-audio-recording.6.x.rb => transcode-audio-recording.7.x.rb} | 0 ...-video-recording.6.x.rb => transcode-video-recording.7.x.rb} | 0 .../{delete-recording.6.x.rb => delete-recording.7.x.rb} | 0 ...deleted-recordings.6.x.rb => list-deleted-recordings.7.x.rb} | 0 ...om.6.x.rb => list-recordings-for-participant-in-room.7.x.rb} | 0 ...articipant.6.x.rb => list-recordings-for-participant.7.x.rb} | 0 ...cordings-for-room.6.x.rb => list-recordings-for-room.7.x.rb} | 0 ...binary-data.6.x.rb => retrieve-recording-binary-data.7.x.rb} | 0 ...recording-by-sid.6.x.rb => retrieve-recording-by-sid.7.x.rb} | 0 .../{create-group-room.6.x.rb => create-group-room.7.x.rb} | 0 .../{create-group-room.6.x.rb => create-group-room.7.x.rb} | 0 ...peer-to-peer-room.6.x.rb => create-peer-to-peer-room.7.x.rb} | 0 .../create-room/{create-room.6.x.rb => create-room.7.x.rb} | 0 ...{list-room-recordings.6.x.rb => list-room-recordings.7.x.rb} | 0 ...ltered-by-name.6.x.rb => list-rooms-filtered-by-name.7.x.rb} | 0 ...ed-by-status.6.x.rb => list-rooms-filtered-by-status.7.x.rb} | 0 ...ltiple-filters.6.x.rb => list-rooms-multiple-filters.7.x.rb} | 0 ...t-subscribed-tracks.6.x.rb => list-subscribed-tracks.7.x.rb} | 0 ...e-subscribe-rules.6.x.rb => retrieve-subscribe-rules.7.x.rb} | 0 ...subscribed-track.6.x.rb => retrieve-subscribed-track.7.x.rb} | 0 ...pdate-customer-rules.6.x.rb => update-customer-rules.7.x.rb} | 0 ...les-dynamic.6.x.rb => update-subscribe-rules-dynamic.7.x.rb} | 0 ...pdate-customer-rules.6.x.rb => update-customer-rules.7.x.rb} | 0 ...-rules-audio-all.6.x.rb => recording-rules-audio-all.7.x.rb} | 0 ...articipant.6.x.rb => recording-rules-one-participant.7.x.rb} | 0 ...-rules-start-all.6.x.rb => recording-rules-start-all.7.x.rb} | 0 ...ng-rules-stop-all.6.x.rb => recording-rules-stop-all.7.x.rb} | 0 ...ecording.6.x.rb => retrieve-media-for-room-recording.7.x.rb} | 0 ...{retrieve-room-by-sid.6.x.rb => retrieve-room-by-sid.7.x.rb} | 0 ...y-unique-name.6.x.rb => retrieve-room-by-unique-name.7.x.rb} | 0 ...eve-room-recording.6.x.rb => retrieve-room-recording.7.x.rb} | 0 ...-completed.6.x.rb => update-room-status-to-completed.7.x.rb} | 0 ...-generation-server.6.x.rb => token-generation-server.7.x.rb} | 0 ...-generation-server.6.x.rb => token-generation-server.7.x.rb} | 0 voice/queueing/agent/{queue-agent.6.x.rb => queue-agent.7.x.rb} | 0 .../caller/{queue-caller.6.x.rb => queue-caller.7.x.rb} | 0 .../redirect/{queue-redirect.6.x.rb => queue-redirect.7.x.rb} | 0 voice/specify-edge/{specify-edge.6.x.rb => specify-edge.7.x.rb} | 0 ...e-binary-example-1.6.x.rb => create-binary-example-1.7.x.rb} | 0 ...reate-text-example-1.6.x.rb => create-text-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 .../{list-example-1.6.x.rb => list-example-1.7.x.rb} | 0 .../{create-example-1.6.x.rb => create-example-1.7.x.rb} | 0 .../{delete-example-1.6.x.rb => delete-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...tance-get-example-2.6.x.rb => instance-get-example-2.7.x.rb} | 0 .../{list-example-1.6.x.rb => list-example-1.7.x.rb} | 0 .../{list-example-1.6.x.rb => list-example-1.7.x.rb} | 0 .../{list-example-1.6.x.rb => list-example-1.7.x.rb} | 0 ...tance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} | 0 ...tance-get-example-2.6.x.rb => instance-get-example-2.7.x.rb} | 0 ...nce-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} | 0 .../{list-example-1.6.x.rb => list-example-1.7.x.rb} | 0 770 files changed, 1 insertion(+), 1 deletion(-) rename add-ons/lookups/payfone-tcpa-compliance/{payfone-tcpa-compliance.6.x.rb => payfone-tcpa-compliance.7.x.rb} (100%) rename api-auth/{api-auth.6.x.rb => api-auth.7.x.rb} (100%) rename client/capability-token-2way/{capability-token.6.x.rb => capability-token.7.x.rb} (100%) rename client/capability-token-expires/{capability-token-expires.6.x.rb => capability-token-expires.7.x.rb} (100%) rename client/capability-token-incoming/{capability-token.6.x.rb => capability-token.7.x.rb} (100%) rename client/capability-token-outgoing/{capability-token.6.x.rb => capability-token.7.x.rb} (100%) rename client/capability-token/{capability-token.6.x.rb => capability-token.7.x.rb} (100%) rename client/response-twiml-client/{response-twiml-client.6.x.rb => response-twiml-client.7.x.rb} (100%) rename client/response-twiml-dial/{response-twiml-dial.6.x.rb => response-twiml-dial.7.x.rb} (100%) rename client/response-twiml/{response-twiml.6.x.rb => response-twiml.7.x.rb} (100%) rename deployed-devices/quickstarts/sync-boardled/create-document/{create-document.6.x.rb => create-document.7.x.rb} (100%) rename deployed-devices/quickstarts/sync-boardled/update-document/{update-document.6.x.rb => update-document.7.x.rb} (100%) rename deployed-devices/rest/certificates/create-certificate/{create-certificate.6.x.rb => create-certificate.7.x.rb} (100%) rename deployed-devices/rest/certificates/delete-certificate/{delete-certificate.6.x.rb => delete-certificate.7.x.rb} (100%) rename deployed-devices/rest/certificates/list-certificates/{list-certificates.6.x.rb => list-certificates.7.x.rb} (100%) rename deployed-devices/rest/certificates/retrieve-certificate/{retrieve-certificate.6.x.rb => retrieve-certificate.7.x.rb} (100%) rename deployed-devices/rest/certificates/update-certificate/{update-certificate.6.x.rb => update-certificate.7.x.rb} (100%) rename deployed-devices/rest/deployments/create-deployment/{create-deployment.6.x.rb => create-deployment.7.x.rb} (100%) rename deployed-devices/rest/deployments/delete-deployment/{delete-deployment.6.x.rb => delete-deployment.7.x.rb} (100%) rename deployed-devices/rest/deployments/list-deployments/{list-deployments.6.x.rb => list-deployments.7.x.rb} (100%) rename deployed-devices/rest/deployments/retrieve-deployment/{retrieve-deployment.6.x.rb => retrieve-deployment.7.x.rb} (100%) rename deployed-devices/rest/deployments/update-deployment/{update-deployment.6.x.rb => update-deployment.7.x.rb} (100%) rename deployed-devices/rest/devices/create-device/{create-device.6.x.rb => create-device.7.x.rb} (100%) rename deployed-devices/rest/devices/delete-device/{delete-device.6.x.rb => delete-device.7.x.rb} (100%) rename deployed-devices/rest/devices/list-devices/{list-devices.6.x.rb => list-devices.7.x.rb} (100%) rename deployed-devices/rest/devices/retrieve-device/{retrieve-device.6.x.rb => retrieve-device.7.x.rb} (100%) rename deployed-devices/rest/devices/update-device/{update-device.6.x.rb => update-device.7.x.rb} (100%) rename deployed-devices/rest/fleets/create-fleet/{create-fleet.6.x.rb => create-fleet.7.x.rb} (100%) rename deployed-devices/rest/fleets/delete-fleet/{delete-fleet.6.x.rb => delete-fleet.7.x.rb} (100%) rename deployed-devices/rest/fleets/list-fleets/{list-fleets.6.x.rb => list-fleets.7.x.rb} (100%) rename deployed-devices/rest/fleets/retrieve-fleet/{retrieve-fleet.6.x.rb => retrieve-fleet.7.x.rb} (100%) rename deployed-devices/rest/fleets/update-fleet/{update-fleet.6.x.rb => update-fleet.7.x.rb} (100%) rename deployed-devices/rest/keys/create-key/{create-key.6.x.rb => create-key.7.x.rb} (100%) rename deployed-devices/rest/keys/delete-key/{delete-key.6.x.rb => delete-key.7.x.rb} (100%) rename deployed-devices/rest/keys/list-keys/{list-key.6.x.rb => list-key.7.x.rb} (100%) rename deployed-devices/rest/keys/retrieve-key/{retrieve-key.6.x.rb => retrieve-key.7.x.rb} (100%) rename deployed-devices/rest/keys/update-key/{update-key.6.x.rb => update-key.7.x.rb} (100%) rename fax/basic-send/{basic-send.6.x.rb => basic-send.7.x.rb} (100%) rename fax/instance-get-example/{instance-get-example.6.x.rb => instance-get-example.7.x.rb} (100%) rename fax/instance-post-example/{instance-post-example.6.x.rb => instance-post-example.7.x.rb} (100%) rename fax/list-get-example/{list-get-example.6.x.rb => list-get-example.7.x.rb} (100%) rename fax/sip-send/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename fax/sip-send/example-2/{example-2.6.x.rb => example-2.7.x.rb} (100%) rename fax/sip-send/example-3/{example-3.6.x.rb => example-3.7.x.rb} (100%) rename guides/request-validation-sinatra/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename guides/request-validation-sinatra/example-2/{example-2.6.x.rb => example-2.7.x.rb} (100%) rename guides/voice/conference-calls-guide/moderated-conference/{moderated-conference.6.x.rb => moderated-conference.7.x.rb} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-0/{example.6.x.rb => example.7.x.rb} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-1/{example.6.x.rb => example.7.x.rb} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-2/{example.6.x.rb => example.7.x.rb} (100%) rename guides/voice/record-calls-guide/record-outgoing-call/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename guides/voice/record-calls-guide/record-twiml-transcribe/{example.6.x.rb => example.7.x.rb} (100%) rename guides/voice/record-calls-guide/record-twiml/{example.6.x.rb => example.7.x.rb} (100%) rename guides/voice/recording-add-on-guide/use-add-on-data/{use-add-on-data.6.x.rb => use-add-on-data.7.x.rb} (100%) rename guides/voice/respond-incoming-calls-guide/respond-no-parameters/{example.6.x.rb => example.7.x.rb} (100%) rename guides/voice/respond-incoming-calls-guide/respond-with-parameters/{example.6.x.rb => example.7.x.rb} (100%) rename ip-messaging/push-config/new-message-push-config/{new-message-push-config.6.x.rb => new-message-push-config.7.x.rb} (100%) rename ip-messaging/reachability-indicator/disable-indicator/{disable-indicator.6.x.rb => disable-indicator.7.x.rb} (100%) rename ip-messaging/reachability-indicator/enable-indicator/{enable-indicator.6.x.rb => enable-indicator.7.x.rb} (100%) rename ip-messaging/rest/channels/create-channels/{create-channels.6.x.rb => create-channels.7.x.rb} (100%) rename ip-messaging/rest/channels/delete-channels/{delete-channels.6.x.rb => delete-channels.7.x.rb} (100%) rename ip-messaging/rest/channels/list-channels/{list-channels.6.x.rb => list-channels.7.x.rb} (100%) rename ip-messaging/rest/channels/retrieve-channels/{retrieve-channels.6.x.rb => retrieve-channels.7.x.rb} (100%) rename ip-messaging/rest/channels/update-channels/{update-channels.6.x.rb => update-channels.7.x.rb} (100%) rename ip-messaging/rest/credentials/create-credentials/{create-credentials.6.x.rb => create-credentials.7.x.rb} (100%) rename ip-messaging/rest/credentials/delete-credentials/{delete-credentials.6.x.rb => delete-credentials.7.x.rb} (100%) rename ip-messaging/rest/credentials/list-credentials/{list-credentials.6.x.rb => list-credentials.7.x.rb} (100%) rename ip-messaging/rest/credentials/retrieve-credentials/{retrieve-credentials.6.x.rb => retrieve-credentials.7.x.rb} (100%) rename ip-messaging/rest/credentials/update-credentials/{update-credentials.6.x.rb => update-credentials.7.x.rb} (100%) rename ip-messaging/rest/members/add-member/{add-member.6.x.rb => add-member.7.x.rb} (100%) rename ip-messaging/rest/members/list-members/{list-members.6.x.rb => list-members.7.x.rb} (100%) rename ip-messaging/rest/members/remove-member/{remove-member.6.x.rb => remove-member.7.x.rb} (100%) rename ip-messaging/rest/members/retrieve-member/{retrieve-member.6.x.rb => retrieve-member.7.x.rb} (100%) rename ip-messaging/rest/messages/delete-messages/{delete-messages.6.x.rb => delete-messages.7.x.rb} (100%) rename ip-messaging/rest/messages/list-messages/{list-messages.6.x.rb => list-messages.7.x.rb} (100%) rename ip-messaging/rest/messages/retrieve-messages/{retrieve-messages.6.x.rb => retrieve-messages.7.x.rb} (100%) rename ip-messaging/rest/messages/send-messages/{send-messages.6.x.rb => send-messages.7.x.rb} (100%) rename ip-messaging/rest/messages/update-messages/{update-messages.6.x.rb => update-messages.7.x.rb} (100%) rename ip-messaging/rest/roles/create-role/{create-role.6.x.rb => create-role.7.x.rb} (100%) rename ip-messaging/rest/roles/delete-role/{delete-role.6.x.rb => delete-role.7.x.rb} (100%) rename ip-messaging/rest/roles/list-roles/{list-roles.6.x.rb => list-roles.7.x.rb} (100%) rename ip-messaging/rest/roles/retrieve-role/{retrieve-role.6.x.rb => retrieve-role.7.x.rb} (100%) rename ip-messaging/rest/roles/update-role/{update-role.6.x.rb => update-role.7.x.rb} (100%) rename ip-messaging/rest/services/create-service/{create-service.6.x.rb => create-service.7.x.rb} (100%) rename ip-messaging/rest/services/delete-service/{delete-service.6.x.rb => delete-service.7.x.rb} (100%) rename ip-messaging/rest/services/list-service/{list-service.6.x.rb => list-service.7.x.rb} (100%) rename ip-messaging/rest/services/retrieve-service/{retrieve-service.6.x.rb => retrieve-service.7.x.rb} (100%) rename ip-messaging/rest/services/update-service/{update-service.6.x.rb => update-service.7.x.rb} (100%) rename ip-messaging/rest/users/create-user/{create-user.6.x.rb => create-user.7.x.rb} (100%) rename ip-messaging/rest/users/delete-user/{delete-user.6.x.rb => delete-user.7.x.rb} (100%) rename ip-messaging/rest/users/list-users/{list-users.6.x.rb => list-users.7.x.rb} (100%) rename ip-messaging/rest/users/retrieve-user/{retrieve-user.6.x.rb => retrieve-user.7.x.rb} (100%) rename ip-messaging/rest/users/update-user/{update-user.6.x.rb => update-user.7.x.rb} (100%) rename ip-messaging/users/token-gen-server-push/{token-gen-server-push.6.x.rb => token-gen-server-push.7.x.rb} (100%) rename ip-messaging/users/token-generation-server/{token-generation-server.6.x.rb => token-generation-server.7.x.rb} (100%) rename lookups/lookup-get-addon-example-1/{lookup-get-addon-examples-1.6.x.rb => lookup-get-addon-examples-1.7.x.rb} (100%) rename lookups/lookup-get-addon-payfone-example-1/{lookup-get-addon-payfone-1.6.x.rb => lookup-get-addon-payfone-1.7.x.rb} (100%) rename lookups/lookup-get-basic-example-1/{lookup-get-basic-example-1.6.x.rb => lookup-get-basic-example-1.7.x.rb} (100%) rename lookups/lookup-get-basic-example-2/{lookup-get-basic-example-2.6.x.rb => lookup-get-basic-example-2.7.x.rb} (100%) rename lookups/lookup-get-carrier-cname-example-1/{lookup-get-carrier-cname-example-1.6.x.rb => lookup-get-carrier-cname-example-1.7.x.rb} (100%) rename lookups/lookup-get-cname-example-1/{lookup-get-cname-example-1.6.x.rb => lookup-get-cname-example-1.7.x.rb} (100%) rename lookups/lookup-international-basic/{lookup-international-basic.6.x.rb => lookup-international-basic.7.x.rb} (100%) rename lookups/lookup-national-basic/{lookup-national-basic.6.x.rb => lookup-national-basic.7.x.rb} (100%) rename media/rest/recordings/get-media-recording-media-file/{get-media-recording-media-file.6.x.rb => get-media-recording-media-file.7.x.rb} (100%) rename media/rest/recordings/get-media-recording-timed-metadata-file/{get-media-recording-timed-metadata-file.6.x.rb => get-media-recording-timed-metadata-file.7.x.rb} (100%) rename messaging/link-shortening/link-shortening-domain-cert/{link-shortening-domain-cert.6.x.rb => link-shortening-domain-cert.7.x.rb} (100%) rename messaging/link-shortening/link-shortening-sms/{link-shortening-sms.6.x.rb => link-shortening-sms.7.x.rb} (100%) rename messaging/link-shortening/link-shortening-whatsapp/{link-shortening-whatsapp.6.x.rb => link-shortening-whatsapp.7.x.rb} (100%) rename messaging/services/service-alpha-add/{service-alpha-add.6.x.rb => service-alpha-add.7.x.rb} (100%) rename messaging/services/service-alpha-delete/{service-alpha-delete.6.x.rb => service-alpha-delete.7.x.rb} (100%) rename messaging/services/service-alpha-get/{service-alpha-get.6.x.rb => service-alpha-get.7.x.rb} (100%) rename messaging/services/service-alpha-list/{service-alpha-list.6.x.rb => service-alpha-list.7.x.rb} (100%) rename messaging/services/service-create/{service-create.6.x.rb => service-create.7.x.rb} (100%) rename messaging/services/service-delete/{service-delete.6.x.rb => service-delete.7.x.rb} (100%) rename messaging/services/service-get/{service-get.6.x.rb => service-get.7.x.rb} (100%) rename messaging/services/service-list/{service-list.6.x.rb => service-list.7.x.rb} (100%) rename messaging/services/service-multiple-number-add/{service-multiple-number-add.6.x.rb => service-multiple-number-add.7.x.rb} (100%) rename messaging/services/service-number-add/{service-number-add.6.x.rb => service-number-add.7.x.rb} (100%) rename messaging/services/service-number-delete/{service-number-delete.6.x.rb => service-number-delete.7.x.rb} (100%) rename messaging/services/service-number-get/{service-number-get.6.x.rb => service-number-get.7.x.rb} (100%) rename messaging/services/service-number-list/{service-number-list.6.x.rb => service-number-list.7.x.rb} (100%) rename messaging/services/service-shortcode-add/{service-shortcode-add.6.x.rb => service-shortcode-add.7.x.rb} (100%) rename messaging/services/service-shortcode-delete/{service-shortcode-delete.6.x.rb => service-shortcode-delete.7.x.rb} (100%) rename messaging/services/service-shortcode-get/{service-shortcode-get.6.x.rb => service-shortcode-get.7.x.rb} (100%) rename messaging/services/service-shortcode-list/{service-shortcode-list.6.x.rb => service-shortcode-list.7.x.rb} (100%) rename messaging/services/service-update/{service-update.6.x.rb => service-update.7.x.rb} (100%) rename mobile-identity/identity-match/{identity-match-example.6.x.rb => identity-match-example.7.x.rb} (100%) rename mobile-identity/silent-network-auth/create-an-evurl/{create-an-evurl-example.6.x.rb => create-an-evurl-example.7.x.rb} (100%) rename mobile-identity/silent-network-auth/retrieve-evurl-result/{retrieve-evurl-result-example.6.x.rb => retrieve-evurl-result-example.7.x.rb} (100%) rename monitor/alerts/instance-delete-example/{instance-delete-example.6.x.rb => instance-delete-example.7.x.rb} (100%) rename monitor/alerts/instance-get-example/{instance-get-example.6.x.rb => instance-get-example.7.x.rb} (100%) rename monitor/alerts/list-get-example-all/{list-get-example-all.6.x.rb => list-get-example-all.7.x.rb} (100%) rename monitor/alerts/list-get-example-warnings-apr01-apr30/{list-get-example-warnings-apr01-apr30.6.x.rb => list-get-example-warnings-apr01-apr30.7.x.rb} (100%) rename monitor/events/instance-get-example-phone-number/{instance-get-example-phone-number.6.x.rb => instance-get-example-phone-number.7.x.rb} (100%) rename monitor/events/list-get-example-actorsid-resourcesid-error/{list-get-example-actorsid-resourcesid-error.6.x.rb => list-get-example-actorsid-resourcesid-error.7.x.rb} (100%) rename monitor/events/list-get-example-date-filter/{list-get-example-date-filter.6.x.rb => list-get-example-date-filter.7.x.rb} (100%) rename monitor/events/list-get-example-resourcesid-filter/{list-get-example-resourcesid-filter.6.x.rb => list-get-example-resourcesid-filter.7.x.rb} (100%) rename monitor/events/list-get-example-sourceipaddress-filter/{list-get-example-sourceipaddress-filter.6.x.rb => list-get-example-sourceipaddress-filter.7.x.rb} (100%) rename notifications/register/create-binding-server-fcm/{create-binding-server-fcm.6.x.rb => create-binding-server-fcm.7.x.rb} (100%) rename notifications/register/create-binding-server/{create-binding-server-apn.6.x.rb => create-binding-server-apn.7.x.rb} (100%) rename notifications/register/send-notification-2/{send-notification-2.6.x.rb => send-notification-2.7.x.rb} (100%) rename notifications/register/send-notification-segment-tag/{send-notification-segment-tag.6.x.rb => send-notification-segment-tag.7.x.rb} (100%) rename notifications/register/send-notification-segment/{send-notification-segment.6.x.rb => send-notification-segment.7.x.rb} (100%) rename notifications/register/send-notification/{send-notification.6.x.rb => send-notification.7.x.rb} (100%) rename notifications/rest/bindings/create-binding/{create-binding.6.x.rb => create-binding.7.x.rb} (100%) rename notifications/rest/bindings/delete-binding/{delete-binding.6.x.rb => delete-binding.7.x.rb} (100%) rename notifications/rest/bindings/list-binding/{list-binding.6.x.rb => list-binding.7.x.rb} (100%) rename notifications/rest/bindings/retrieve-binding/{retrieve-binding.6.x.rb => retrieve-binding.7.x.rb} (100%) rename notifications/rest/credentials/create-apn-credential/{create-apn-credential.6.x.rb => create-apn-credential.7.x.rb} (100%) rename notifications/rest/credentials/create-fcm-credential/{create-fcm-credential.6.x.rb => create-fcm-credential.7.x.rb} (100%) rename notifications/rest/credentials/create-gcm-credential/{create-gcm-credential.6.x.rb => create-gcm-credential.7.x.rb} (100%) rename notifications/rest/credentials/delete-credential/{delete-credential.6.x.rb => delete-credential.7.x.rb} (100%) rename notifications/rest/credentials/list-credential/{list-credential.6.x.rb => list-credential.7.x.rb} (100%) rename notifications/rest/credentials/retrieve-credential/{retrieve-credential.6.x.rb => retrieve-credential.7.x.rb} (100%) rename notifications/rest/credentials/update-credential/{update-credential.6.x.rb => update-credential.7.x.rb} (100%) rename notifications/rest/notifications/send-notification-detailed/{send-notification-detailed.6.x.rb => send-notification-detailed.7.x.rb} (100%) rename notifications/rest/notifications/send-notification-with-badge/{send-notification-with-badge.6.x.rb => send-notification-with-badge.7.x.rb} (100%) rename notifications/rest/notifications/send-notification/{send-notification.6.x.rb => send-notification.7.x.rb} (100%) rename notifications/rest/notifications/send-passthrough-notification/{send-passthrough-notification.6.x.rb => send-passthrough-notification.7.x.rb} (100%) rename notifications/rest/segments/list-segment/{list-segment.6.x.rb => list-segment.7.x.rb} (100%) rename notifications/rest/services/create-service/{create-service.6.x.rb => create-service.7.x.rb} (100%) rename notifications/rest/services/delete-service/{delete-service.6.x.rb => delete-service.7.x.rb} (100%) rename notifications/rest/services/list-service/{list-service.6.x.rb => list-service.7.x.rb} (100%) rename notifications/rest/services/retrieve-service/{retrieve-service.6.x.rb => retrieve-service.7.x.rb} (100%) rename notifications/rest/services/update-service/{update-service.6.x.rb => update-service.7.x.rb} (100%) rename notifications/rest/users/add-user-to-segment/{add-user-to-segment.6.x.rb => add-user-to-segment.7.x.rb} (100%) rename notifications/rest/users/create-user/{create-user.6.x.rb => create-user.7.x.rb} (100%) rename notifications/rest/users/delete-user/{delete-user.6.x.rb => delete-user.7.x.rb} (100%) rename notifications/rest/users/list-binding-of-user/{list-binding-of-user.6.x.rb => list-binding-of-user.7.x.rb} (100%) rename notifications/rest/users/list-users/{list-users.6.x.rb => list-users.7.x.rb} (100%) rename notifications/rest/users/remove-user-from-segment/{remove-user-from-segment.6.x.rb => remove-user-from-segment.7.x.rb} (100%) rename notifications/rest/users/retrieve-user/{retrieve-user.6.x.rb => retrieve-user.7.x.rb} (100%) rename notifications/sms-quickstart/create-binding/{create-binding.6.x.rb => create-binding.7.x.rb} (100%) rename notifications/sms-quickstart/send-notification-to-number/{send-notification-to-number.6.x.rb => send-notification-to-number.7.x.rb} (100%) rename notifications/sms-quickstart/send-notification/{send-notification.6.x.rb => send-notification.7.x.rb} (100%) rename pricing/get-messaging-country/{get-messaging-country.6.x.rb => get-messaging-country.7.x.rb} (100%) rename pricing/get-phone-number-country/{get-phone-number-country.6.x.rb => get-phone-number-country.7.x.rb} (100%) rename pricing/get-voice-country/{get-voice-country.6.x.rb => get-voice-country.7.x.rb} (100%) rename pricing/get-voice-number-with-origination-number/{get-voice-number-with-origination-number.6.x.rb => get-voice-number-with-origination-number.7.x.rb} (100%) rename pricing/get-voice-number/{get-voice-number.6.x.rb => get-voice-number.7.x.rb} (100%) rename pricing/list-messaging-countries/{list-messaging-countries.6.x.rb => list-messaging-countries.7.x.rb} (100%) rename pricing/list-phone-number-countries/{list-phone-number-countries.6.x.rb => list-phone-number-countries.7.x.rb} (100%) rename pricing/list-voice-countries/{list-voice-countries.6.x.rb => list-voice-countries.7.x.rb} (100%) rename proxy/quickstart/add-phone-number/{add-phone-number.6.x.rb => add-phone-number.7.x.rb} (100%) rename proxy/quickstart/create-participant/{create-participant.6.x.rb => create-participant.7.x.rb} (100%) rename proxy/quickstart/create-service/{create-service.6.x.rb => create-service.7.x.rb} (100%) rename proxy/quickstart/create-session/{create-session.6.x.rb => create-session.7.x.rb} (100%) rename proxy/quickstart/send-message/{send-message.6.x.rb => send-message.7.x.rb} (100%) rename quickstart/ruby/autopilot/create-first-task/{create_hello_world_task.6.x.rb => create_hello_world_task.7.x.rb} (100%) rename quickstart/ruby/autopilot/create-hello-world-samples/{create_hello_world_samples.6.x.rb => create_hello_world_samples.7.x.rb} (100%) rename quickstart/ruby/autopilot/create-joke-samples/{create_joke_samples.6.x.rb => create_joke_samples.7.x.rb} (100%) rename quickstart/ruby/autopilot/create-joke-task/{create_joke_task.6.x.rb => create_joke_task.7.x.rb} (100%) rename quickstart/ruby/autopilot/query-task/{query_task.6.x.rb => query_task.7.x.rb} (100%) rename quickstart/ruby/sms/example-1/{send_notifications.6.x.rb => send_notifications.7.x.rb} (100%) rename quickstart/ruby/sms/example-2/{send_notifications.6.x.rb => send_notifications.7.x.rb} (100%) rename quickstart/ruby/sms/example-3/{sms_reply_ahoy.6.x.rb => sms_reply_ahoy.7.x.rb} (100%) rename quickstart/ruby/sms/example-4/{mms_hello_friend.6.x.rb => mms_hello_friend.7.x.rb} (100%) rename quickstart/ruby/sms/example-5/{reply_by_name.6.x.rb => reply_by_name.7.x.rb} (100%) rename quickstart/ruby/sms/example-6/{tracking_sms_conversations.6.x.rb => tracking_sms_conversations.7.x.rb} (100%) rename quickstart/ruby/sms/example-7/{send_sms_during_call.6.x.rb => send_sms_during_call.7.x.rb} (100%) rename quickstart/ruby/voice/example-1-make-call/{outgoing_call.6.x.rb => outgoing_call.7.x.rb} (100%) rename quickstart/ruby/voice/example-2-receive-call/{respond_to_call.6.x.rb => respond_to_call.7.x.rb} (100%) rename rest/access-tokens/ip-messaging-example-push-credential/{ip-messaging-example.6.x.rb => ip-messaging-example.7.x.rb} (100%) rename rest/access-tokens/ip-messaging-example/{ip-messaging-example.6.x.rb => ip-messaging-example.7.x.rb} (100%) rename rest/access-tokens/live-example/{live-example.6.x.rb => live-example.7.x.rb} (100%) rename rest/access-tokens/sync-example/{sync-example.6.x.rb => sync-example.7.x.rb} (100%) rename rest/access-tokens/video-example/{video-example.6.x.rb => video-example.7.x.rb} (100%) rename rest/access-tokens/voice-example/{voice-example.6.x.rb => voice-example.7.x.rb} (100%) rename rest/accounts/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/accounts/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/accounts/instance-post-example-2/{instance-post-example-2.6.x.rb => instance-post-example-2.7.x.rb} (100%) rename rest/accounts/instance-post-example-3/{instance-post-example-3.6.x.rb => instance-post-example-3.7.x.rb} (100%) rename rest/accounts/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/accounts/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/addresses/instance-create-example/{instance-create-example.6.x.rb => instance-create-example.7.x.rb} (100%) rename rest/addresses/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/addresses/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/addresses/list-dependent-pns-example-1/{list-dependent-pns-example-1.6.x.rb => list-dependent-pns-example-1.7.x.rb} (100%) rename rest/addresses/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/addresses/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/addresses/list-post-example-1/{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} (100%) rename rest/answering-machine-detection/outgoing-call/{outgoing-call-1.6.x.rb => outgoing-call-1.7.x.rb} (100%) rename rest/applications/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/applications/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/applications/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/applications/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/applications/list-post-example-1/{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} (100%) rename rest/authorized-connect-apps/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/authorized-connect-apps/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/available-phone-numbers/local-advanced-example-1/{local-get-advanced-example-1.6.x.rb => local-get-advanced-example-1.7.x.rb} (100%) rename rest/available-phone-numbers/local-basic-example-1/{local-get-basic-example-1.6.x.rb => local-get-basic-example-1.7.x.rb} (100%) rename rest/available-phone-numbers/local-basic-example-2/{local-get-basic-example-2.6.x.rb => local-get-basic-example-2.7.x.rb} (100%) rename rest/available-phone-numbers/local-basic-example-3/{local-get-basic-example-3.6.x.rb => local-get-basic-example-3.7.x.rb} (100%) rename rest/available-phone-numbers/local-basic-example-4/{local-get-basic-example-4.6.x.rb => local-get-basic-example-4.7.x.rb} (100%) rename rest/available-phone-numbers/local-basic-example-5/{local-get-basic-example-6.6.x.rb => local-get-basic-example-6.7.x.rb} (100%) rename rest/available-phone-numbers/local-basic-example-6/{local-get-basic-example-6.6.x.rb => local-get-basic-example-6.7.x.rb} (100%) rename rest/available-phone-numbers/local-basic-example-7/{local-get-basic-example-7.6.x.rb => local-get-basic-example-7.7.x.rb} (100%) rename rest/available-phone-numbers/local-basic-example-8/{local-get-basic-example-8.6.x.rb => local-get-basic-example-8.7.x.rb} (100%) rename rest/available-phone-numbers/mobile-example/{mobile-get-example-1.6.x.rb => mobile-get-example-1.7.x.rb} (100%) rename rest/available-phone-numbers/toll-free-example-1/{toll-free-get-example-1.6.x.rb => toll-free-get-example-1.7.x.rb} (100%) rename rest/available-phone-numbers/toll-free-example-2/{toll-free-get-example-2.6.x.rb => toll-free-get-example-2.7.x.rb} (100%) rename rest/available-phone-numbers/toll-free-example-3/{toll-free-get-example-3.6.x.rb => toll-free-get-example-3.7.x.rb} (100%) rename rest/call-feedback/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/call-feedback/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/call-feedback/summary-instance-delete-example-1/{summary-instance-delete-example-1.6.x.rb => summary-instance-delete-example-1.7.x.rb} (100%) rename rest/call-feedback/summary-instance-get-example-1/{summary-instance-get-example-1.6.x.rb => summary-instance-get-example-1.7.x.rb} (100%) rename rest/call-feedback/summary-instance-get-example-2/{summary-instance-get-example-2.6.x.rb => summary-instance-get-example-2.7.x.rb} (100%) rename rest/call-feedback/summary-list-post-example-1/{summary-list-post-example-1.6.x.rb => summary-list-post-example-1.7.x.rb} (100%) rename rest/call/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/call/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/call/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/call/list-get-example-3/{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} (100%) rename rest/call/list-get-example-4/{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} (100%) rename rest/call/list-get-example-6/{list-get-example-6.6.x.rb => list-get-example-6.7.x.rb} (100%) rename rest/call/list-get-example-7/{list-get-example-7.6.x.rb => list-get-example-7.7.x.rb} (100%) rename rest/change-call-state/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/change-call-state/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/conference/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/conference/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/conference/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/conference/list-get-example-3/{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} (100%) rename rest/conference/list-get-example-4/{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} (100%) rename rest/connect-apps/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/connect-apps/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/incoming-phone-numbers/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/incoming-phone-numbers/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/incoming-phone-numbers/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/incoming-phone-numbers/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/incoming-phone-numbers/list-get-example-3/{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} (100%) rename rest/incoming-phone-numbers/list-post-example-1/{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} (100%) rename rest/keys/instance-get-example/{instance-get-example.6.x.rb => instance-get-example.7.x.rb} (100%) rename rest/keys/list-get-example/{list-get-example.6.x.rb => list-get-example.7.x.rb} (100%) rename rest/keys/list-post-example/{list-post-example.6.x.rb => list-post-example.7.x.rb} (100%) rename rest/keys/using-keys-example/{example.6.x.rb => example.7.x.rb} (100%) rename rest/making-calls-sip/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/making-calls-sip/example-2/{example-2.6.x.rb => example-2.7.x.rb} (100%) rename rest/making-calls-sip/example-3/{example-3.6.x.rb => example-3.7.x.rb} (100%) rename rest/making-calls/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/making-calls/example-2/{example-2.6.x.rb => example-2.7.x.rb} (100%) rename rest/making-calls/example-3/{example-3.6.x.rb => example-3.7.x.rb} (100%) rename rest/making-calls/example-4/{example-4.6.x.rb => example-4.7.x.rb} (100%) rename rest/media/instance-delete-example-1/{instance-delete-example-1.6.x.rb => instance-delete-example-1.7.x.rb} (100%) rename rest/media/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/member/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/member/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/member/instance-post-example-2/{instance-post-example-2.6.x.rb => instance-post-example-2.7.x.rb} (100%) rename rest/member/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/message/instance-delete/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/message/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/message/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/message/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/message/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/messages/feedback-confirm/{feedback-confirm.6.x.rb => feedback-confirm.7.x.rb} (100%) rename rest/messages/feedback-send-sms/{feedback-send-sms.6.x.rb => feedback-send-sms.7.x.rb} (100%) rename rest/messages/generate-twiml-dynamic-sms/{generate-twiml-dynamic-sms.6.x.rb => generate-twiml-dynamic-sms.7.x.rb} (100%) rename rest/messages/generate-twiml-empty-response/{generate-twiml-empty-response.6.x.rb => generate-twiml-empty-response.7.x.rb} (100%) rename rest/messages/generate-twiml-mms/{generate-twiml-mms.6.x.rb => generate-twiml-mms.7.x.rb} (100%) rename rest/messages/generate-twiml-sms-voice/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/messages/generate-twiml-sms/{generate-twiml-sms.6.x.rb => generate-twiml-sms.7.x.rb} (100%) rename rest/messages/send-message/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/messages/send-messages-copilot/{send-messages-copilot.6.x.rb => send-messages-copilot.7.x.rb} (100%) rename rest/messages/send-sms-callback/{send-sms-callback.6.x.rb => send-sms-callback.7.x.rb} (100%) rename rest/messages/send-sms/{send-sms.6.x.rb => send-sms.7.x.rb} (100%) rename rest/messages/sms-conversation-tracking/{sms-conversation-tracking.6.x.rb => sms-conversation-tracking.7.x.rb} (100%) rename rest/messages/sms-handle-callback/{sms-handle-callback.6.x.rb => sms-handle-callback.7.x.rb} (100%) rename rest/notification/instance-delete-examples/{instance-delete-examples.6.x.rb => instance-delete-examples.7.x.rb} (100%) rename rest/notification/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/notification/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/notification/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/notification/list-get-example-3/{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} (100%) rename rest/notification/list-get-example-4/{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} (100%) rename rest/outgoing-caller-ids/instance-delete/{instance-delete.6.x.rb => instance-delete.7.x.rb} (100%) rename rest/outgoing-caller-ids/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/outgoing-caller-ids/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/outgoing-caller-ids/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/outgoing-caller-ids/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/outgoing-caller-ids/list-post-example-1/{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} (100%) rename rest/participant/instance-delete-example-1/{instance-delete-example-1.6.x.rb => instance-delete-example-1.7.x.rb} (100%) rename rest/participant/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/participant/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/participant/instance-post-example-2/{instance-post-example-2.6.x.rb => instance-post-example-2.7.x.rb} (100%) rename rest/participant/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/participant/list-post-example-1/{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} (100%) rename rest/queue/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/queue/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/queue/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/queue/list-post-example-1/{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} (100%) rename rest/recording/get-recording-xml/{get-recording-xml.6.x.rb => get-recording-xml.7.x.rb} (100%) rename rest/recording/instance-delete-examples/{instance-delete-examples.6.x.rb => instance-delete-examples.7.x.rb} (100%) rename rest/recording/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/recording/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/recording/list-get-example-3/{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} (100%) rename rest/recording/list-get-example-4/{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} (100%) rename rest/recording/list-get-example-5/{list-get-example-6.6.x.rb => list-get-example-6.7.x.rb} (100%) rename rest/recording/list-recording-transcriptions/{list-recording-transcriptions-6.x.rb => list-recording-transcriptions-7.x.rb} (100%) rename rest/sending-messages/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/short-codes/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/short-codes/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/short-codes/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/short-codes/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/short-codes/list-get-example-3/{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} (100%) rename rest/sip-in/associate-control-domain/{associate-control-domain.6.x.rb => associate-control-domain.7.x.rb} (100%) rename rest/sip-in/create-acl-address/{create-acl-address.6.x.rb => create-acl-address.7.x.rb} (100%) rename rest/sip-in/create-credential-list/{create-credential-list.6.x.rb => create-credential-list.7.x.rb} (100%) rename rest/sip-in/create-credential/{create-credential.6.x.rb => create-credential.7.x.rb} (100%) rename rest/sip-in/create-domain/{create-domain.6.x.rb => create-domain.7.x.rb} (100%) rename rest/sip-in/create-ip-acl/{create-ip-acl.6.x.rb => create-ip-acl.7.x.rb} (100%) rename rest/sip-in/delete-access-mapping-old/{delete-access-mapping.6.x.rb => delete-access-mapping.7.x.rb} (100%) rename rest/sip-in/delete-access-mapping/{delete-access-mapping.6.x.rb => delete-access-mapping.7.x.rb} (100%) rename rest/sip-in/delete-address-instance/{delete-address-instance.6.x.rb => delete-address-instance.7.x.rb} (100%) rename rest/sip-in/delete-credential-list-instance/{delete-credential-list-instance.6.x.rb => delete-credential-list-instance.7.x.rb} (100%) rename rest/sip-in/delete-credential-list-mapping-old/{delete-credential-list-mapping.6.x.rb => delete-credential-list-mapping.7.x.rb} (100%) rename rest/sip-in/delete-credential-list-mapping/{delete-credential-list-mapping.6.x.rb => delete-credential-list-mapping.7.x.rb} (100%) rename rest/sip-in/delete-credential/{delete-credential.6.x.rb => delete-credential.7.x.rb} (100%) rename rest/sip-in/delete-domain-instance/{delete-domain-instance.6.x.rb => delete-domain-instance.7.x.rb} (100%) rename rest/sip-in/delete-ip-acl/{delete-ip-acl.6.x.rb => delete-ip-acl.7.x.rb} (100%) rename rest/sip-in/get-acl-addresses/{get-acl-addresses.6.x.rb => get-acl-addresses.7.x.rb} (100%) rename rest/sip-in/get-acl-list/{get-acl-list.6.x.rb => get-acl-list.7.x.rb} (100%) rename rest/sip-in/get-acl-lists/{get-acl-lists.6.x.rb => get-acl-lists.7.x.rb} (100%) rename rest/sip-in/get-address-instance/{get-address-instance.6.x.rb => get-address-instance.7.x.rb} (100%) rename rest/sip-in/get-credential-list-instance/{get-credential-list-instance.6.x.rb => get-credential-list-instance.7.x.rb} (100%) rename rest/sip-in/get-credential-list-mappings/{get-credential-list-mappings.6.x.rb => get-credential-list-mappings.7.x.rb} (100%) rename rest/sip-in/get-credential-lists-credentials/{get-credential-lists-credentials.6.x.rb => get-credential-lists-credentials.7.x.rb} (100%) rename rest/sip-in/get-credential-lists/{get-credential-lists.6.x.rb => get-credential-lists.7.x.rb} (100%) rename rest/sip-in/get-credential/{get-credential.6.x.rb => get-credential.7.x.rb} (100%) rename rest/sip-in/get-domain-instance/{get-domain-instance.6.x.rb => get-domain-instance.7.x.rb} (100%) rename rest/sip-in/get-domain-mappings/{get-domain-mappings.6.x.rb => get-domain-mappings.7.x.rb} (100%) rename rest/sip-in/get-domains/{get-domains.6.x.rb => get-domains.7.x.rb} (100%) rename rest/sip-in/get-ip-acls/{get-ip-acls.6.x.rb => get-ip-acls.7.x.rb} (100%) rename rest/sip-in/get-mappings-instance-old/{get-mappings-instance.6.x.rb => get-mappings-instance.7.x.rb} (100%) rename rest/sip-in/get-mappings-instance/{get-mappings-instance.6.x.rb => get-mappings-instance.7.x.rb} (100%) rename rest/sip-in/map-credential-list-domain-old/{map-credential-list-domain.6.x.rb => map-credential-list-domain.7.x.rb} (100%) rename rest/sip-in/map-credential-list-domain/{map-credential-list-domain.6.x.rb => map-credential-list-domain.7.x.rb} (100%) rename rest/sip-in/map-list-domain-old/{map-list-domain.6.x.rb => map-list-domain.7.x.rb} (100%) rename rest/sip-in/map-list-domain/{map-list-domain.6.x.rb => map-list-domain.7.x.rb} (100%) rename rest/sip-in/update-address-instance/{update-address-instance.6.x.rb => update-address-instance.7.x.rb} (100%) rename rest/sip-in/update-credential-list-instance/{update-credential-list-instance.6.x.rb => update-credential-list-instance.7.x.rb} (100%) rename rest/sip-in/update-credential/{update-credential.6.x.rb => update-credential.7.x.rb} (100%) rename rest/sip-in/update-domain-instance/{update-domain-instance.6.x.rb => update-domain-instance.7.x.rb} (100%) rename rest/sip-in/update-ip-acl-instance/{update-ip-acl-instance.6.x.rb => update-ip-acl-instance.7.x.rb} (100%) rename rest/sip/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/sip/example-2/{example-2.6.x.rb => example-2.7.x.rb} (100%) rename rest/sip/example-3/{example-3.6.x.rb => example-3.7.x.rb} (100%) rename rest/sms/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/sms/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/subaccounts/billing-example/{subaccount-billing.6.x.rb => subaccount-billing.7.x.rb} (100%) rename rest/subaccounts/creating-subaccounts-example-1/{creating-subaccounts-example-1.6.x.rb => creating-subaccounts-example-1.7.x.rb} (100%) rename rest/subaccounts/exchanging-numbers-example-1/{exchanging-numbers-example-1.6.x.rb => exchanging-numbers-example-1.7.x.rb} (100%) rename rest/subaccounts/listing-subaccounts-example-1/{listing-subaccounts-example-1.6.x.rb => listing-subaccounts-example-1.7.x.rb} (100%) rename rest/subaccounts/listing-subaccounts-example-2/{listing-subaccounts-example-2.6.x.rb => listing-subaccounts-example-2.7.x.rb} (100%) rename rest/subaccounts/voice-example/{subaccount-call.6.x.rb => subaccount-call.7.x.rb} (100%) rename rest/taskrouter/activities/instance/delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/activities/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/activities/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/activities/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/activities/list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/events/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/jwts/taskqueue/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/jwts/worker/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/jwts/workspace/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/reservations/call/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/reservations/conference/{conference.6.x.rb => conference.7.x.rb} (100%) rename rest/taskrouter/reservations/dequeue/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/reservations/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/reservations/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/reservations/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/reservations/redirect/{redirect.6.x.rb => redirect.7.x.rb} (100%) rename rest/taskrouter/reservations/reject/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/taskqueue/cumulative/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/taskqueue/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/taskqueue/realtime/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/worker/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workers/cumulative/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workers/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workers/realtime/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workflow/cumulative/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workflow/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workflow/realtime/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workspace/cumulative/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workspace/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/statistics/workspace/realtime/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskchannels/instance/delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskchannels/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskchannels/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskchannels/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskchannels/list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskqueues/instance/delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskqueues/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskqueues/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskqueues/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/taskqueues/list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/tasks/instance/delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/tasks/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/tasks/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/tasks/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/tasks/list/get/example-2/{example-2.6.x.rb => example-2.7.x.rb} (100%) rename rest/taskrouter/tasks/list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/twiml/example1/example/{example.6.x.rb => example.7.x.rb} (100%) rename rest/taskrouter/twiml/example2/example/{example.6.x.rb => example.7.x.rb} (100%) rename rest/taskrouter/twiml/example3/example/{example.6.x.rb => example.7.x.rb} (100%) rename rest/taskrouter/twiml/example4/example/{example.6.x.rb => example.7.x.rb} (100%) rename rest/taskrouter/worker-channels/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/worker-channels/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/worker-channels/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/worker-reservations/call/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/worker-reservations/dequeue/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/worker-reservations/instance-get-example1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/worker-reservations/list-get-example1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/worker-reservations/reject/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workers/instance/delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workers/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workers/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workers/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workers/list/get/example-2/{example-2.6.x.rb => example-2.7.x.rb} (100%) rename rest/taskrouter/workers/list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workflows/instance/delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workflows/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workflows/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workflows/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workflows/list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workspaces/instance/delete/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workspaces/instance/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workspaces/instance/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workspaces/list/get/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/taskrouter/workspaces/list/post/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/test-credentials/test-calls-example-1/{test-calls-example-1.6.x.rb => test-calls-example-1.7.x.rb} (100%) rename rest/test-credentials/test-calls-example-2/{test-calls-example-2.6.x.rb => test-calls-example-2.7.x.rb} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-1/{test-incoming-phone-numbers-example-1.6.x.rb => test-incoming-phone-numbers-example-1.7.x.rb} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-2/{test-incoming-phone-numbers-example-2.6.x.rb => test-incoming-phone-numbers-example-2.7.x.rb} (100%) rename rest/test-credentials/test-post-example-3/{test-post-example-3.6.x.rb => test-post-example-3.7.x.rb} (100%) rename rest/test-credentials/test-sms-messages-example-1/{test-sms-messages-example-1.6.x.rb => test-sms-messages-example-1.7.x.rb} (100%) rename rest/test-credentials/test-sms-messages-example-2/{test-sms-messages-example-2.6.x.rb => test-sms-messages-example-2.7.x.rb} (100%) rename rest/test-credentials/test-sms-messages-example-3/{test-sms-messages-example-3.6.x.rb => test-sms-messages-example-3.7.x.rb} (100%) rename rest/token/list-post-1-hour-example/{list-post-1-hour-example.6.x.rb => list-post-1-hour-example.7.x.rb} (100%) rename rest/token/list-post-example/{list-post-example.6.x.rb => list-post-example.7.x.rb} (100%) rename rest/transcription/instance-delete-examples/{instance-delete-examples.6.x.rb => instance-delete-examples.7.x.rb} (100%) rename rest/transcription/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/transcription/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/usage-records/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/usage-records/list-get-example-2/{list-get-example-2.6.x.rb => list-get-example-2.7.x.rb} (100%) rename rest/usage-records/list-get-example-3/{list-get-example-3.6.x.rb => list-get-example-3.7.x.rb} (100%) rename rest/usage-records/list-get-example-4/{list-get-example-4.6.x.rb => list-get-example-4.7.x.rb} (100%) rename rest/usage-records/list-get-example-5/{list-get-example-6.6.x.rb => list-get-example-6.7.x.rb} (100%) rename rest/usage-triggers/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename rest/usage-triggers/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename rest/usage-triggers/list-get-example-1/{list-get-example-1.6.x.rb => list-get-example-1.7.x.rb} (100%) rename rest/usage-triggers/list-post-example-1/{list-post-example-1.6.x.rb => list-post-example-1.7.x.rb} (100%) rename rest/voice/generate-twiml-play/{twiml-play.6.x.rb => twiml-play.7.x.rb} (100%) rename rest/voice/generate-twiml-say/{generate-twiml-say.6.x.rb => generate-twiml-say.7.x.rb} (100%) rename rest/voice/outbound-calls/example-1/{example-1.6.x.rb => example-1.7.x.rb} (100%) rename rest/voice/outbound-calls/example-2/{example-2.6.x.rb => example-2.7.x.rb} (100%) rename rest/voice/outbound-calls/example-3/{example-3.6.x.rb => example-3.7.x.rb} (100%) rename rest/voice/outbound-calls/example-4/{example-4.6.x.rb => example-4.7.x.rb} (100%) rename rest/voice/twiml-recording-action/{recording-action.6.x.rb => recording-action.7.x.rb} (100%) rename security/environment_variables/{environment-variables-1.6.x.rb => environment-variables-1.7.x.rb} (100%) rename security/signature_validation/{signature_validation.6.x.rb => signature_validation.7.x.rb} (100%) rename security/signature_validation_tests/{signature_validation_tests.6.x.rb => signature_validation_tests.7.x.rb} (100%) rename stun-turn/list-post-example/{list-post-example.6.x.rb => list-post-example.7.x.rb} (100%) rename super-sim/sims/update-account/{update-account.6.x.rb => update-account.7.x.rb} (100%) rename sync/rest/document-permissions/delete-permission/{delete-permission.6.x.rb => delete-permission.7.x.rb} (100%) rename sync/rest/document-permissions/list-permissions/{list-permissions.6.x.rb => list-permissions.7.x.rb} (100%) rename sync/rest/document-permissions/retrieve-permission/{retrieve-permission.6.x.rb => retrieve-permission.7.x.rb} (100%) rename sync/rest/document-permissions/update-permission/{update-permission.6.x.rb => update-permission.7.x.rb} (100%) rename sync/rest/documents/create-document/{create-document.6.x.rb => create-document.7.x.rb} (100%) rename sync/rest/documents/delete-document/{delete-document.6.x.rb => delete-document.7.x.rb} (100%) rename sync/rest/documents/list-documents/{list-documents.6.x.rb => list-documents.7.x.rb} (100%) rename sync/rest/documents/retrieve-document/{retrieve-document.6.x.rb => retrieve-document.7.x.rb} (100%) rename sync/rest/documents/update-document/{update-document.6.x.rb => update-document.7.x.rb} (100%) rename sync/rest/list-permissions/delete-permission/{delete-permission.6.x.rb => delete-permission.7.x.rb} (100%) rename sync/rest/list-permissions/list-permissions/{list-permissions.6.x.rb => list-permissions.7.x.rb} (100%) rename sync/rest/list-permissions/retrieve-permission/{retrieve-permission.6.x.rb => retrieve-permission.7.x.rb} (100%) rename sync/rest/list-permissions/update-permission/{update-permission.6.x.rb => update-permission.7.x.rb} (100%) rename sync/rest/lists/create-list-item/{create-list-item.6.x.rb => create-list-item.7.x.rb} (100%) rename sync/rest/lists/create-list/{create-list.6.x.rb => create-list.7.x.rb} (100%) rename sync/rest/lists/delete-list-item/{delete-list-item.6.x.rb => delete-list-item.7.x.rb} (100%) rename sync/rest/lists/delete-list/{delete-list.6.x.rb => delete-list.7.x.rb} (100%) rename sync/rest/lists/list-lists/{list-lists.6.x.rb => list-lists.7.x.rb} (100%) rename sync/rest/lists/query-list/{query-list.6.x.rb => query-list.7.x.rb} (100%) rename sync/rest/lists/retrieve-list-item/{retrieve-list-item.6.x.rb => retrieve-list-item.7.x.rb} (100%) rename sync/rest/lists/retrieve-list/{retrieve-list.6.x.rb => retrieve-list.7.x.rb} (100%) rename sync/rest/lists/update-list-item/{update-list-item.6.x.rb => update-list-item.7.x.rb} (100%) rename sync/rest/lists/update-list/{update-list.6.x.rb => update-list.7.x.rb} (100%) rename sync/rest/map-permissions/delete-permission/{delete-permission.6.x.rb => delete-permission.7.x.rb} (100%) rename sync/rest/map-permissions/list-permissions/{list-permissions.6.x.rb => list-permissions.7.x.rb} (100%) rename sync/rest/map-permissions/retrieve-permission/{retrieve-permission.6.x.rb => retrieve-permission.7.x.rb} (100%) rename sync/rest/map-permissions/update-permission/{update-permission.6.x.rb => update-permission.7.x.rb} (100%) rename sync/rest/maps/create-map-item/{create-map-item.6.x.rb => create-map-item.7.x.rb} (100%) rename sync/rest/maps/create-map/{create-map.6.x.rb => create-map.7.x.rb} (100%) rename sync/rest/maps/delete-map-item/{delete-map-item.6.x.rb => delete-map-item.7.x.rb} (100%) rename sync/rest/maps/delete-map/{delete-map.6.x.rb => delete-map.7.x.rb} (100%) rename sync/rest/maps/list-maps/{list-maps.6.x.rb => list-maps.7.x.rb} (100%) rename sync/rest/maps/query-map/{query-map.6.x.rb => query-map.7.x.rb} (100%) rename sync/rest/maps/retrieve-map-item/{retrieve-map-item.6.x.rb => retrieve-map-item.7.x.rb} (100%) rename sync/rest/maps/retrieve-map/{retrieve-map.6.x.rb => retrieve-map.7.x.rb} (100%) rename sync/rest/maps/update-map-item/{update-map-item.6.x.rb => update-map-item.7.x.rb} (100%) rename sync/rest/maps/update-map/{update-map.6.x.rb => update-map.7.x.rb} (100%) rename sync/rest/services/create-service-webhook/{create-service-webhook.6.x.rb => create-service-webhook.7.x.rb} (100%) rename sync/rest/services/create-service/{create-service.6.x.rb => create-service.7.x.rb} (100%) rename sync/rest/services/delete-service/{delete-service.6.x.rb => delete-service.7.x.rb} (100%) rename sync/rest/services/list-services/{list-services.6.x.rb => list-services.7.x.rb} (100%) rename sync/rest/services/retrieve-service/{retrieve-service.6.x.rb => retrieve-service.7.x.rb} (100%) rename sync/rest/services/update-service/{update-service.6.x.rb => update-service.7.x.rb} (100%) rename sync/rest/streams/create-stream/{create-stream.6.x.rb => create-stream.7.x.rb} (100%) rename sync/rest/streams/delete-stream/{delete-stream.6.x.rb => delete-stream.7.x.rb} (100%) rename sync/rest/streams/list-streams/{list-streams.6.x.rb => list-streams.7.x.rb} (100%) rename sync/rest/streams/publish-stream-message/{publish-stream-message.6.x.rb => publish-stream-message.7.x.rb} (100%) rename sync/rest/streams/retrieve-stream/{retrieve-stream.6.x.rb => retrieve-stream.7.x.rb} (100%) rename sync/rest/streams/update-stream/{update-stream.6.x.rb => update-stream.7.x.rb} (100%) rename twiml/message/message/message-1/{message-1.6.x.rb => message-1.7.x.rb} (100%) rename twiml/message/message/message-2/{message-2.6.x.rb => message-2.7.x.rb} (100%) rename twiml/message/message/message-3/{message-3.6.x.rb => message-3.7.x.rb} (100%) rename twiml/message/message/message-4/{message-4.6.x.rb => message-4.7.x.rb} (100%) rename twiml/message/redirect/redirect-1/{redirect-1.6.x.rb => redirect-1.7.x.rb} (100%) rename twiml/message/redirect/redirect-2/{redirect-2.6.x.rb => redirect-2.7.x.rb} (100%) rename twiml/message/your-response/your-response-1/{your-response-1.6.x.rb => your-response-1.7.x.rb} (100%) rename twiml/message/your-response/your-response-2/{your-response-2.6.x.rb => your-response-2.7.x.rb} (100%) rename twiml/message/your-response/your-response-3/{your-response-3.6.x.rb => your-response-3.7.x.rb} (100%) rename twiml/voice/application/dial-application-basic/{dial-application-basic.6.x.rb => dial-application-basic.7.x.rb} (100%) rename twiml/voice/application/dial-application-copyparentto/{dial-application-copyparentto.6.x.rb => dial-application-copyparentto.7.x.rb} (100%) rename twiml/voice/application/dial-application-customerid/{dial-application-customerid.6.x.rb => dial-application-customerid.7.x.rb} (100%) rename twiml/voice/application/dial-application-parameter/{dial-application-parameter.6.x.rb => dial-application-parameter.7.x.rb} (100%) rename twiml/voice/application/hangup-parameter-scenario/{hangup-parameter-scenario.6.x.rb => hangup-parameter-scenario.7.x.rb} (100%) rename twiml/voice/application/hangup-parameter/{hangup-parameter.6.x.rb => hangup-parameter.7.x.rb} (100%) rename twiml/voice/application/reject-parameter/{reject-parameter.6.x.rb => reject-parameter.7.x.rb} (100%) rename twiml/voice/client/client-1/{client-1.6.x.rb => client-1.7.x.rb} (100%) rename twiml/voice/client/client-2/{client-2.6.x.rb => client-2.7.x.rb} (100%) rename twiml/voice/client/client-3/{client-3.6.x.rb => client-3.7.x.rb} (100%) rename twiml/voice/conference/conference-1/{conference-1.6.x.rb => conference-1.7.x.rb} (100%) rename twiml/voice/conference/conference-10/{conference-10.6.x.rb => conference-10.7.x.rb} (100%) rename twiml/voice/conference/conference-2/{conference-2.6.x.rb => conference-2.7.x.rb} (100%) rename twiml/voice/conference/conference-3/{conference-3.6.x.rb => conference-3.7.x.rb} (100%) rename twiml/voice/conference/conference-4/{conference-4.6.x.rb => conference-4.7.x.rb} (100%) rename twiml/voice/conference/conference-5/{conference-6.6.x.rb => conference-6.7.x.rb} (100%) rename twiml/voice/conference/conference-6/{conference-6.6.x.rb => conference-6.7.x.rb} (100%) rename twiml/voice/conference/conference-7/{conference-7.6.x.rb => conference-7.7.x.rb} (100%) rename twiml/voice/conference/conference-8/{conference-8.6.x.rb => conference-8.7.x.rb} (100%) rename twiml/voice/conference/conference-9/{conference-9.6.x.rb => conference-9.7.x.rb} (100%) rename twiml/voice/connect/autopilot/{connect-1.6.x.rb => connect-1.7.x.rb} (100%) rename twiml/voice/connect/connect-1/{connect-1.6.x.rb => connect-1.7.x.rb} (100%) rename twiml/voice/connect/connect-2/{connect-2.6.x.rb => connect-2.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-action-method/{conversation-action-method.6.x.rb => conversation-action-method.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-action-statuscallback/{conversation-action-statuscallback.6.x.rb => conversation-action-statuscallback.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-action/{conversation-action.6.x.rb => conversation-action.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-basic/{conversation-basic.6.x.rb => conversation-basic.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/{conversation-inboundautocreation-routingassignmenttimeout.6.x.rb => conversation-inboundautocreation-routingassignmenttimeout.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-inboundautocreation/{conversation-inboundautocreation.6.x.rb => conversation-inboundautocreation.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-inboundtimeout/{conversation-inboundtimeout.6.x.rb => conversation-inboundtimeout.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/{conversation-record-recordingstatuscallback-and-event.6.x.rb => conversation-record-recordingstatuscallback-and-event.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/{conversation-record-recordingstatuscallback-and-method.6.x.rb => conversation-record-recordingstatuscallback-and-method.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/{conversation-record-recordingstatuscallback.6.x.rb => conversation-record-recordingstatuscallback.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-record-trim/{conversation-record-trim.6.x.rb => conversation-record-trim.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-record/{conversation-record.6.x.rb => conversation-record.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/{conversation-statuscallback-statuscallbackevent.6.x.rb => conversation-statuscallback-statuscallbackevent.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/{conversation-statuscallback-statuscallbackmethod.6.x.rb => conversation-statuscallback-statuscallbackmethod.7.x.rb} (100%) rename twiml/voice/connect/conversation/conversation-statuscallback/{conversation-statuscallback.6.x.rb => conversation-statuscallback.7.x.rb} (100%) rename twiml/voice/connect/stream/{connect_stream.6.x.rb => connect_stream.7.x.rb} (100%) rename twiml/voice/connect/virtualagent-1/{virtualagent-1.6.x.rb => virtualagent-1.7.x.rb} (100%) rename twiml/voice/connect/virtualagent-2/{virtualagent-2.6.x.rb => virtualagent-2.7.x.rb} (100%) rename twiml/voice/connect/virtualagent-3/{virtualagent-3.6.x.rb => virtualagent-3.7.x.rb} (100%) rename twiml/voice/connect/virtualagent-4/{virtualagent-4.6.x.rb => virtualagent-4.7.x.rb} (100%) rename twiml/voice/connect/virtualagent-5/{virtualagent-5.6.x.rb => virtualagent-5.7.x.rb} (100%) rename twiml/voice/connect/virtualagent-6/{virtualagent-6.6.x.rb => virtualagent-6.7.x.rb} (100%) rename twiml/voice/dial/dial-1/{dial-1.6.x.rb => dial-1.7.x.rb} (100%) rename twiml/voice/dial/dial-2/{dial-2.6.x.rb => dial-2.7.x.rb} (100%) rename twiml/voice/dial/dial-3/{dial-3.6.x.rb => dial-3.7.x.rb} (100%) rename twiml/voice/dial/dial-4/{dial-4.6.x.rb => dial-4.7.x.rb} (100%) rename twiml/voice/dial/dial-5/{dial-6.6.x.rb => dial-6.7.x.rb} (100%) rename twiml/voice/dial/dial-6/{dial-6.6.x.rb => dial-6.7.x.rb} (100%) rename twiml/voice/dial/dial-7/{dial-7.6.x.rb => dial-7.7.x.rb} (100%) rename twiml/voice/dial/dial-8/{dial-8.6.x.rb => dial-8.7.x.rb} (100%) rename twiml/voice/dial/dial-9/{dial-9.6.x.rb => dial-9.7.x.rb} (100%) rename twiml/voice/enqueue/enqueue-1/{enqueue-1.6.x.rb => enqueue-1.7.x.rb} (100%) rename twiml/voice/enqueue/enqueue-2/{enqueue-2.6.x.rb => enqueue-2.7.x.rb} (100%) rename twiml/voice/gather/gather-1/{gather-1.6.x.rb => gather-1.7.x.rb} (100%) rename twiml/voice/gather/gather-2/{gather-2.6.x.rb => gather-2.7.x.rb} (100%) rename twiml/voice/gather/gather-3/{gather-3.6.x.rb => gather-3.7.x.rb} (100%) rename twiml/voice/gather/gather-4/{gather-4.6.x.rb => gather-4.7.x.rb} (100%) rename twiml/voice/gather/gather-5/{gather-6.6.x.rb => gather-6.7.x.rb} (100%) rename twiml/voice/hangup/hangup-1/{hangup-1.6.x.rb => hangup-1.7.x.rb} (100%) rename twiml/voice/leave/leave-1/{leave-1.6.x.rb => leave-1.7.x.rb} (100%) rename twiml/voice/leave/leave-2/{leave-2.6.x.rb => leave-2.7.x.rb} (100%) rename twiml/voice/leave/leave-3/{leave-3.6.x.rb => leave-3.7.x.rb} (100%) rename twiml/voice/number/number-1/{number-1.6.x.rb => number-1.7.x.rb} (100%) rename twiml/voice/number/number-2/{number-2.6.x.rb => number-2.7.x.rb} (100%) rename twiml/voice/number/number-3/{number-3.6.x.rb => number-3.7.x.rb} (100%) rename twiml/voice/number/number-4/{number-4.6.x.rb => number-4.7.x.rb} (100%) rename twiml/voice/number/number-5/{number-6.6.x.rb => number-6.7.x.rb} (100%) rename twiml/voice/parameter/parameter-1/{parameter-6.x.rb => parameter-7.x.rb} (100%) rename twiml/voice/pause/pause-1/{pause-1.6.x.rb => pause-1.7.x.rb} (100%) rename twiml/voice/pause/pause-2/{pause-2.6.x.rb => pause-2.7.x.rb} (100%) rename twiml/voice/pay/pay-1/{pay-1.6.x.rb => pay-1.7.x.rb} (100%) rename twiml/voice/pay/pay-2/{pay-2.6.x.rb => pay-2.7.x.rb} (100%) rename twiml/voice/pay/pay-3/{pay-3.6.x.rb => pay-3.7.x.rb} (100%) rename twiml/voice/pay/pay-4/{pay-4.6.x.rb => pay-4.7.x.rb} (100%) rename twiml/voice/pay/pay-5/{pay-6.6.x.rb => pay-6.7.x.rb} (100%) rename twiml/voice/pay/pay-6/{pay-6.6.x.rb => pay-6.7.x.rb} (100%) rename twiml/voice/pay/pay-7/{pay-7.6.x.rb => pay-7.7.x.rb} (100%) rename twiml/voice/pay/pay-8/{pay-8.6.x.rb => pay-8.7.x.rb} (100%) rename twiml/voice/pay/pay-9/{pay-9.6.x.rb => pay-9.7.x.rb} (100%) rename twiml/voice/pay/pay-charge-connector/{pay-charge-connector.6.x.rb => pay-charge-connector.7.x.rb} (100%) rename twiml/voice/pay/pay-parameter/{pay-parameter.6.x.rb => pay-parameter.7.x.rb} (100%) rename twiml/voice/pay/pay-tokenize-connector/{pay-tokenize-connector.6.x.rb => pay-tokenize-connector.7.x.rb} (100%) rename twiml/voice/pay/pay-tokenize/{pay-tokenize.6.x.rb => pay-tokenize.7.x.rb} (100%) rename twiml/voice/pay/prompt/full-example-ach/{full-example-ach.6.x.rb => full-example-ach.7.x.rb} (100%) rename twiml/voice/pay/prompt/full-example-credit-card/{full-example-credit-card.6.x.rb => full-example-credit-card.7.x.rb} (100%) rename twiml/voice/pay/prompt/requireMatchingInputs/basic/{prompt-requireMatchingInputs-basic.6.x.rb => prompt-requireMatchingInputs-basic.7.x.rb} (100%) rename twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/{prompt-requireMatchingInputs-errorType.6.x.rb => prompt-requireMatchingInputs-errorType.7.x.rb} (100%) rename twiml/voice/play/play-1/{play-1.6.x.rb => play-1.7.x.rb} (100%) rename twiml/voice/play/play-2/{play-2.6.x.rb => play-2.7.x.rb} (100%) rename twiml/voice/play/play-3/{play-3.6.x.rb => play-3.7.x.rb} (100%) rename twiml/voice/queue/queue-1/{queue-1.6.x.rb => queue-1.7.x.rb} (100%) rename twiml/voice/queue/queue-2/{queue-2.6.x.rb => queue-2.7.x.rb} (100%) rename twiml/voice/record/record-1/{record-1.6.x.rb => record-1.7.x.rb} (100%) rename twiml/voice/record/record-2/{record-2.6.x.rb => record-2.7.x.rb} (100%) rename twiml/voice/record/record-3/{record-3.6.x.rb => record-3.7.x.rb} (100%) rename twiml/voice/record/record-4/{record-4.6.x.rb => record-4.7.x.rb} (100%) rename twiml/voice/redirect/redirect-1/{redirect-1.6.x.rb => redirect-1.7.x.rb} (100%) rename twiml/voice/redirect/redirect-2/{redirect-2.6.x.rb => redirect-2.7.x.rb} (100%) rename twiml/voice/redirect/redirect-3/{redirect-3.6.x.rb => redirect-3.7.x.rb} (100%) rename twiml/voice/refer/refer-1/{refer-1.6.x.rb => refer-1.7.x.rb} (100%) rename twiml/voice/refer/refer-2/{refer-2.6.x.rb => refer-2.7.x.rb} (100%) rename twiml/voice/refer/refer-3/{refer-3.6.x.rb => refer-3.7.x.rb} (100%) rename twiml/voice/refer/refer-4/{refer-4.6.x.rb => refer-4.7.x.rb} (100%) rename twiml/voice/reject/reject-1/{reject-1.6.x.rb => reject-1.7.x.rb} (100%) rename twiml/voice/reject/reject-2/{reject-2.6.x.rb => reject-2.7.x.rb} (100%) rename twiml/voice/say/say-basic-usage/{say-basic-usage.6.x.rb => say-basic-usage.7.x.rb} (100%) rename twiml/voice/say/say-language/{say-language.6.x.rb => say-language.7.x.rb} (100%) rename twiml/voice/say/say-loop/{say-loop.6.x.rb => say-loop.7.x.rb} (100%) rename twiml/voice/say/say-voice/{say-voice.6.x.rb => say-voice.7.x.rb} (100%) rename twiml/voice/say/ssml/{ssml.6.x.rb => ssml.7.x.rb} (100%) rename twiml/voice/sim/sim-1/{sim-1.6.x.rb => sim-1.7.x.rb} (100%) rename twiml/voice/sim/sim-2/{sim-2.6.x.rb => sim-2.7.x.rb} (100%) rename twiml/voice/sip/sip-1/{sip-1.6.x.rb => sip-1.7.x.rb} (100%) rename twiml/voice/sip/sip-10/{sip-10.6.x.rb => sip-10.7.x.rb} (100%) rename twiml/voice/sip/sip-11/{sip-11.6.x.rb => sip-11.7.x.rb} (100%) rename twiml/voice/sip/sip-2/{sip-2.6.x.rb => sip-2.7.x.rb} (100%) rename twiml/voice/sip/sip-3/{sip-3.6.x.rb => sip-3.7.x.rb} (100%) rename twiml/voice/sip/sip-4/{sip-4.6.x.rb => sip-4.7.x.rb} (100%) rename twiml/voice/sip/sip-5/{sip-6.6.x.rb => sip-6.7.x.rb} (100%) rename twiml/voice/sip/sip-6/{sip-6.6.x.rb => sip-6.7.x.rb} (100%) rename twiml/voice/sip/sip-7/{sip-7.6.x.rb => sip-7.7.x.rb} (100%) rename twiml/voice/sip/sip-8/{sip-8.6.x.rb => sip-8.7.x.rb} (100%) rename twiml/voice/sip/sip-9/{sip-9.6.x.rb => sip-9.7.x.rb} (100%) rename twiml/voice/siprec/siprec-1/{siprec-1.6.x.rb => siprec-1.7.x.rb} (100%) rename twiml/voice/sms/sms-1/{sms-1.6.x.rb => sms-1.7.x.rb} (100%) rename twiml/voice/sms/sms-2/{sms-2.6.x.rb => sms-2.7.x.rb} (100%) rename twiml/voice/sms/sms-3/{sms-3.6.x.rb => sms-3.7.x.rb} (100%) rename twiml/voice/sms/sms-4/{sms-4.6.x.rb => sms-4.7.x.rb} (100%) rename twiml/voice/stream/stream-1/{stream-1.6.x.rb => stream-1.7.x.rb} (100%) rename twiml/voice/stream/stream-2/{stream-2.6.x.rb => stream-2.7.x.rb} (100%) rename twiml/voice/your-response/your-response-1/{your-response-1.6.x.rb => your-response-1.7.x.rb} (100%) rename twiml/voice/your-response/your-response-2/{your-response-2.6.x.rb => your-response-2.7.x.rb} (100%) rename two-factor-authentication/verify-webhook/{verify-webhook.6.x.rb => verify-webhook.7.x.rb} (100%) rename verify/verifications/approve-verification/{approve-verification.6.x.rb => approve-verification.7.x.rb} (100%) rename video/rest/compositionhooks/audio-mixing-hook/{audio-mixing-hook.6.x.rb => audio-mixing-hook.7.x.rb} (100%) rename video/rest/compositionhooks/complex-layout-hook/{complex-layout-hook.6.x.rb => complex-layout-hook.7.x.rb} (100%) rename video/rest/compositionhooks/delete-hook/{delete-hook.6.x.rb => delete-hook.7.x.rb} (100%) rename video/rest/compositionhooks/get-hook/{get-hook.6.x.rb => get-hook.7.x.rb} (100%) rename video/rest/compositionhooks/grid-mixing-hook/{grid-mixing-hook.6.x.rb => grid-mixing-hook.7.x.rb} (100%) rename video/rest/compositionhooks/list-hooks/{list-hooks.6.x.rb => list-hooks.7.x.rb} (100%) rename video/rest/compositionhooks/update-hook/{update-hook.6.x.rb => update-hook.7.x.rb} (100%) rename video/rest/compositions/compose-chess/{compose-chess.6.x.rb => compose-chess.7.x.rb} (100%) rename video/rest/compositions/compose-main-with-col-and-pip/{compose-main-with-col-and-pip.6.x.rb => compose-main-with-col-and-pip.7.x.rb} (100%) rename video/rest/compositions/compose-main-with-row/{compose-main-with-row.6.x.rb => compose-main-with-row.7.x.rb} (100%) rename video/rest/compositions/compose-mosaic/{compose-mosaic.6.x.rb => compose-mosaic.7.x.rb} (100%) rename video/rest/compositions/compose-participant-video-with-all-audios/{compose-participant-video-with-all-audios.6.x.rb => compose-participant-video-with-all-audios.7.x.rb} (100%) rename video/rest/compositions/compose-participant/{compose-participant.6.x.rb => compose-participant.7.x.rb} (100%) rename video/rest/compositions/compose-pip/{compose-pip.6.x.rb => compose-pip.7.x.rb} (100%) rename video/rest/compositions/compose-room/{compose-room.6.x.rb => compose-room.7.x.rb} (100%) rename video/rest/compositions/compose-set-as-row/{compose-set-as-row.6.x.rb => compose-set-as-row.7.x.rb} (100%) rename video/rest/compositions/compose-set-as-sequence/{compose-set-as-sequence.6.x.rb => compose-set-as-sequence.7.x.rb} (100%) rename video/rest/compositions/delete-composition/{delete-composition.6.x.rb => delete-composition.7.x.rb} (100%) rename video/rest/compositions/get-completed-compositions/{get-completed-compositions.6.x.rb => get-completed-compositions.7.x.rb} (100%) rename video/rest/compositions/get-composition-media-file/{get-composition-media-file.6.x.rb => get-composition-media-file.7.x.rb} (100%) rename video/rest/compositions/get-composition/{get-composition.6.x.rb => get-composition.7.x.rb} (100%) rename video/rest/compositions/get-room-compositions/{get-room-compositions.6.x.rb => get-room-compositions.7.x.rb} (100%) rename video/rest/compositions/transcode-audio-recording/{transcode-audio-recording.6.x.rb => transcode-audio-recording.7.x.rb} (100%) rename video/rest/compositions/transcode-video-recording/{transcode-video-recording.6.x.rb => transcode-video-recording.7.x.rb} (100%) rename video/rest/recordings/delete-recording/{delete-recording.6.x.rb => delete-recording.7.x.rb} (100%) rename video/rest/recordings/list-deleted-recordings/{list-deleted-recordings.6.x.rb => list-deleted-recordings.7.x.rb} (100%) rename video/rest/recordings/list-recordings-for-participant-in-room/{list-recordings-for-participant-in-room.6.x.rb => list-recordings-for-participant-in-room.7.x.rb} (100%) rename video/rest/recordings/list-recordings-for-participant/{list-recordings-for-participant.6.x.rb => list-recordings-for-participant.7.x.rb} (100%) rename video/rest/recordings/list-recordings-for-room/{list-recordings-for-room.6.x.rb => list-recordings-for-room.7.x.rb} (100%) rename video/rest/recordings/retrieve-recording-binary-data/{retrieve-recording-binary-data.6.x.rb => retrieve-recording-binary-data.7.x.rb} (100%) rename video/rest/recordings/retrieve-recording-by-sid/{retrieve-recording-by-sid.6.x.rb => retrieve-recording-by-sid.7.x.rb} (100%) rename video/rest/rooms/create-group-room-with-h264/{create-group-room.6.x.rb => create-group-room.7.x.rb} (100%) rename video/rest/rooms/create-group-room/{create-group-room.6.x.rb => create-group-room.7.x.rb} (100%) rename video/rest/rooms/create-peer-to-peer-room/{create-peer-to-peer-room.6.x.rb => create-peer-to-peer-room.7.x.rb} (100%) rename video/rest/rooms/create-room/{create-room.6.x.rb => create-room.7.x.rb} (100%) rename video/rest/rooms/list-room-recordings/{list-room-recordings.6.x.rb => list-room-recordings.7.x.rb} (100%) rename video/rest/rooms/list-rooms-filtered-by-name/{list-rooms-filtered-by-name.6.x.rb => list-rooms-filtered-by-name.7.x.rb} (100%) rename video/rest/rooms/list-rooms-filtered-by-status/{list-rooms-filtered-by-status.6.x.rb => list-rooms-filtered-by-status.7.x.rb} (100%) rename video/rest/rooms/list-rooms-multiple-filters/{list-rooms-multiple-filters.6.x.rb => list-rooms-multiple-filters.7.x.rb} (100%) rename video/rest/rooms/participants/list-subscribed-tracks/{list-subscribed-tracks.6.x.rb => list-subscribed-tracks.7.x.rb} (100%) rename video/rest/rooms/participants/retrieve-subscribe-rules/{retrieve-subscribe-rules.6.x.rb => retrieve-subscribe-rules.7.x.rb} (100%) rename video/rest/rooms/participants/retrieve-subscribed-track/{retrieve-subscribed-track.6.x.rb => retrieve-subscribed-track.7.x.rb} (100%) rename video/rest/rooms/participants/unsubscribe-media-transcriber/{update-customer-rules.6.x.rb => update-customer-rules.7.x.rb} (100%) rename video/rest/rooms/participants/update-subscribe-rules-dynamic/{update-subscribe-rules-dynamic.6.x.rb => update-subscribe-rules-dynamic.7.x.rb} (100%) rename video/rest/rooms/participants/update-subscribe-rules-static/{update-customer-rules.6.x.rb => update-customer-rules.7.x.rb} (100%) rename video/rest/rooms/recording-rules-audio-all/{recording-rules-audio-all.6.x.rb => recording-rules-audio-all.7.x.rb} (100%) rename video/rest/rooms/recording-rules-one-participant/{recording-rules-one-participant.6.x.rb => recording-rules-one-participant.7.x.rb} (100%) rename video/rest/rooms/recording-rules-start-all/{recording-rules-start-all.6.x.rb => recording-rules-start-all.7.x.rb} (100%) rename video/rest/rooms/recording-rules-stop-all/{recording-rules-stop-all.6.x.rb => recording-rules-stop-all.7.x.rb} (100%) rename video/rest/rooms/retrieve-media-for-room-recording/{retrieve-media-for-room-recording.6.x.rb => retrieve-media-for-room-recording.7.x.rb} (100%) rename video/rest/rooms/retrieve-room-by-sid/{retrieve-room-by-sid.6.x.rb => retrieve-room-by-sid.7.x.rb} (100%) rename video/rest/rooms/retrieve-room-by-unique-name/{retrieve-room-by-unique-name.6.x.rb => retrieve-room-by-unique-name.7.x.rb} (100%) rename video/rest/rooms/retrieve-room-recording/{retrieve-room-recording.6.x.rb => retrieve-room-recording.7.x.rb} (100%) rename video/rest/rooms/update-room-status-to-completed/{update-room-status-to-completed.6.x.rb => update-room-status-to-completed.7.x.rb} (100%) rename video/users/token-generation-server-rooms/{token-generation-server.6.x.rb => token-generation-server.7.x.rb} (100%) rename video/users/token-generation-server/{token-generation-server.6.x.rb => token-generation-server.7.x.rb} (100%) rename voice/queueing/agent/{queue-agent.6.x.rb => queue-agent.7.x.rb} (100%) rename voice/queueing/caller/{queue-caller.6.x.rb => queue-caller.7.x.rb} (100%) rename voice/queueing/redirect/{queue-redirect.6.x.rb => queue-redirect.7.x.rb} (100%) rename voice/specify-edge/{specify-edge.6.x.rb => specify-edge.7.x.rb} (100%) rename wireless/commands/create-binary-example-1/{create-binary-example-1.6.x.rb => create-binary-example-1.7.x.rb} (100%) rename wireless/commands/create-text-example-1/{create-text-example-1.6.x.rb => create-text-example-1.7.x.rb} (100%) rename wireless/commands/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename wireless/commands/list-example-1/{list-example-1.6.x.rb => list-example-1.7.x.rb} (100%) rename wireless/rateplans/create-example-1/{create-example-1.6.x.rb => create-example-1.7.x.rb} (100%) rename wireless/rateplans/instance-delete-example-1/{delete-example-1.6.x.rb => delete-example-1.7.x.rb} (100%) rename wireless/rateplans/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename wireless/rateplans/instance-get-example-2/{instance-get-example-2.6.x.rb => instance-get-example-2.7.x.rb} (100%) rename wireless/rateplans/list-example-1/{list-example-1.6.x.rb => list-example-1.7.x.rb} (100%) rename wireless/sims-data-session/list-example-1/{list-example-1.6.x.rb => list-example-1.7.x.rb} (100%) rename wireless/sims-usage-record/list-example-1/{list-example-1.6.x.rb => list-example-1.7.x.rb} (100%) rename wireless/sims/instance-get-example-1/{instance-get-example-1.6.x.rb => instance-get-example-1.7.x.rb} (100%) rename wireless/sims/instance-get-example-2/{instance-get-example-2.6.x.rb => instance-get-example-2.7.x.rb} (100%) rename wireless/sims/instance-post-example-1/{instance-post-example-1.6.x.rb => instance-post-example-1.7.x.rb} (100%) rename wireless/sims/list-example-1/{list-example-1.6.x.rb => list-example-1.7.x.rb} (100%) diff --git a/README.md b/README.md index 1cbc43388e..b5a5c4118e 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ snippet-example-1.7.x.java snippet-example-1.2.x.js snippet-example-1.5.x.js - snippet-example-1.6.x.rb + snippet-example-1.7.x.rb snippet-example-1.6.x.cs snippet-example-1.4.x.php snippet-example-1.7.x.php diff --git a/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.6.x.rb b/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.7.x.rb similarity index 100% rename from add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.6.x.rb rename to add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.7.x.rb diff --git a/api-auth/api-auth.6.x.rb b/api-auth/api-auth.7.x.rb similarity index 100% rename from api-auth/api-auth.6.x.rb rename to api-auth/api-auth.7.x.rb diff --git a/client/capability-token-2way/capability-token.6.x.rb b/client/capability-token-2way/capability-token.7.x.rb similarity index 100% rename from client/capability-token-2way/capability-token.6.x.rb rename to client/capability-token-2way/capability-token.7.x.rb diff --git a/client/capability-token-expires/capability-token-expires.6.x.rb b/client/capability-token-expires/capability-token-expires.7.x.rb similarity index 100% rename from client/capability-token-expires/capability-token-expires.6.x.rb rename to client/capability-token-expires/capability-token-expires.7.x.rb diff --git a/client/capability-token-incoming/capability-token.6.x.rb b/client/capability-token-incoming/capability-token.7.x.rb similarity index 100% rename from client/capability-token-incoming/capability-token.6.x.rb rename to client/capability-token-incoming/capability-token.7.x.rb diff --git a/client/capability-token-outgoing/capability-token.6.x.rb b/client/capability-token-outgoing/capability-token.7.x.rb similarity index 100% rename from client/capability-token-outgoing/capability-token.6.x.rb rename to client/capability-token-outgoing/capability-token.7.x.rb diff --git a/client/capability-token/capability-token.6.x.rb b/client/capability-token/capability-token.7.x.rb similarity index 100% rename from client/capability-token/capability-token.6.x.rb rename to client/capability-token/capability-token.7.x.rb diff --git a/client/response-twiml-client/response-twiml-client.6.x.rb b/client/response-twiml-client/response-twiml-client.7.x.rb similarity index 100% rename from client/response-twiml-client/response-twiml-client.6.x.rb rename to client/response-twiml-client/response-twiml-client.7.x.rb diff --git a/client/response-twiml-dial/response-twiml-dial.6.x.rb b/client/response-twiml-dial/response-twiml-dial.7.x.rb similarity index 100% rename from client/response-twiml-dial/response-twiml-dial.6.x.rb rename to client/response-twiml-dial/response-twiml-dial.7.x.rb diff --git a/client/response-twiml/response-twiml.6.x.rb b/client/response-twiml/response-twiml.7.x.rb similarity index 100% rename from client/response-twiml/response-twiml.6.x.rb rename to client/response-twiml/response-twiml.7.x.rb diff --git a/deployed-devices/quickstarts/sync-boardled/create-document/create-document.6.x.rb b/deployed-devices/quickstarts/sync-boardled/create-document/create-document.7.x.rb similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/create-document/create-document.6.x.rb rename to deployed-devices/quickstarts/sync-boardled/create-document/create-document.7.x.rb diff --git a/deployed-devices/quickstarts/sync-boardled/update-document/update-document.6.x.rb b/deployed-devices/quickstarts/sync-boardled/update-document/update-document.7.x.rb similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/update-document/update-document.6.x.rb rename to deployed-devices/quickstarts/sync-boardled/update-document/update-document.7.x.rb diff --git a/deployed-devices/rest/certificates/create-certificate/create-certificate.6.x.rb b/deployed-devices/rest/certificates/create-certificate/create-certificate.7.x.rb similarity index 100% rename from deployed-devices/rest/certificates/create-certificate/create-certificate.6.x.rb rename to deployed-devices/rest/certificates/create-certificate/create-certificate.7.x.rb diff --git a/deployed-devices/rest/certificates/delete-certificate/delete-certificate.6.x.rb b/deployed-devices/rest/certificates/delete-certificate/delete-certificate.7.x.rb similarity index 100% rename from deployed-devices/rest/certificates/delete-certificate/delete-certificate.6.x.rb rename to deployed-devices/rest/certificates/delete-certificate/delete-certificate.7.x.rb diff --git a/deployed-devices/rest/certificates/list-certificates/list-certificates.6.x.rb b/deployed-devices/rest/certificates/list-certificates/list-certificates.7.x.rb similarity index 100% rename from deployed-devices/rest/certificates/list-certificates/list-certificates.6.x.rb rename to deployed-devices/rest/certificates/list-certificates/list-certificates.7.x.rb diff --git a/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.6.x.rb b/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.7.x.rb similarity index 100% rename from deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.6.x.rb rename to deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.7.x.rb diff --git a/deployed-devices/rest/certificates/update-certificate/update-certificate.6.x.rb b/deployed-devices/rest/certificates/update-certificate/update-certificate.7.x.rb similarity index 100% rename from deployed-devices/rest/certificates/update-certificate/update-certificate.6.x.rb rename to deployed-devices/rest/certificates/update-certificate/update-certificate.7.x.rb diff --git a/deployed-devices/rest/deployments/create-deployment/create-deployment.6.x.rb b/deployed-devices/rest/deployments/create-deployment/create-deployment.7.x.rb similarity index 100% rename from deployed-devices/rest/deployments/create-deployment/create-deployment.6.x.rb rename to deployed-devices/rest/deployments/create-deployment/create-deployment.7.x.rb diff --git a/deployed-devices/rest/deployments/delete-deployment/delete-deployment.6.x.rb b/deployed-devices/rest/deployments/delete-deployment/delete-deployment.7.x.rb similarity index 100% rename from deployed-devices/rest/deployments/delete-deployment/delete-deployment.6.x.rb rename to deployed-devices/rest/deployments/delete-deployment/delete-deployment.7.x.rb diff --git a/deployed-devices/rest/deployments/list-deployments/list-deployments.6.x.rb b/deployed-devices/rest/deployments/list-deployments/list-deployments.7.x.rb similarity index 100% rename from deployed-devices/rest/deployments/list-deployments/list-deployments.6.x.rb rename to deployed-devices/rest/deployments/list-deployments/list-deployments.7.x.rb diff --git a/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.6.x.rb b/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.7.x.rb similarity index 100% rename from deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.6.x.rb rename to deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.7.x.rb diff --git a/deployed-devices/rest/deployments/update-deployment/update-deployment.6.x.rb b/deployed-devices/rest/deployments/update-deployment/update-deployment.7.x.rb similarity index 100% rename from deployed-devices/rest/deployments/update-deployment/update-deployment.6.x.rb rename to deployed-devices/rest/deployments/update-deployment/update-deployment.7.x.rb diff --git a/deployed-devices/rest/devices/create-device/create-device.6.x.rb b/deployed-devices/rest/devices/create-device/create-device.7.x.rb similarity index 100% rename from deployed-devices/rest/devices/create-device/create-device.6.x.rb rename to deployed-devices/rest/devices/create-device/create-device.7.x.rb diff --git a/deployed-devices/rest/devices/delete-device/delete-device.6.x.rb b/deployed-devices/rest/devices/delete-device/delete-device.7.x.rb similarity index 100% rename from deployed-devices/rest/devices/delete-device/delete-device.6.x.rb rename to deployed-devices/rest/devices/delete-device/delete-device.7.x.rb diff --git a/deployed-devices/rest/devices/list-devices/list-devices.6.x.rb b/deployed-devices/rest/devices/list-devices/list-devices.7.x.rb similarity index 100% rename from deployed-devices/rest/devices/list-devices/list-devices.6.x.rb rename to deployed-devices/rest/devices/list-devices/list-devices.7.x.rb diff --git a/deployed-devices/rest/devices/retrieve-device/retrieve-device.6.x.rb b/deployed-devices/rest/devices/retrieve-device/retrieve-device.7.x.rb similarity index 100% rename from deployed-devices/rest/devices/retrieve-device/retrieve-device.6.x.rb rename to deployed-devices/rest/devices/retrieve-device/retrieve-device.7.x.rb diff --git a/deployed-devices/rest/devices/update-device/update-device.6.x.rb b/deployed-devices/rest/devices/update-device/update-device.7.x.rb similarity index 100% rename from deployed-devices/rest/devices/update-device/update-device.6.x.rb rename to deployed-devices/rest/devices/update-device/update-device.7.x.rb diff --git a/deployed-devices/rest/fleets/create-fleet/create-fleet.6.x.rb b/deployed-devices/rest/fleets/create-fleet/create-fleet.7.x.rb similarity index 100% rename from deployed-devices/rest/fleets/create-fleet/create-fleet.6.x.rb rename to deployed-devices/rest/fleets/create-fleet/create-fleet.7.x.rb diff --git a/deployed-devices/rest/fleets/delete-fleet/delete-fleet.6.x.rb b/deployed-devices/rest/fleets/delete-fleet/delete-fleet.7.x.rb similarity index 100% rename from deployed-devices/rest/fleets/delete-fleet/delete-fleet.6.x.rb rename to deployed-devices/rest/fleets/delete-fleet/delete-fleet.7.x.rb diff --git a/deployed-devices/rest/fleets/list-fleets/list-fleets.6.x.rb b/deployed-devices/rest/fleets/list-fleets/list-fleets.7.x.rb similarity index 100% rename from deployed-devices/rest/fleets/list-fleets/list-fleets.6.x.rb rename to deployed-devices/rest/fleets/list-fleets/list-fleets.7.x.rb diff --git a/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.6.x.rb b/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.7.x.rb similarity index 100% rename from deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.6.x.rb rename to deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.7.x.rb diff --git a/deployed-devices/rest/fleets/update-fleet/update-fleet.6.x.rb b/deployed-devices/rest/fleets/update-fleet/update-fleet.7.x.rb similarity index 100% rename from deployed-devices/rest/fleets/update-fleet/update-fleet.6.x.rb rename to deployed-devices/rest/fleets/update-fleet/update-fleet.7.x.rb diff --git a/deployed-devices/rest/keys/create-key/create-key.6.x.rb b/deployed-devices/rest/keys/create-key/create-key.7.x.rb similarity index 100% rename from deployed-devices/rest/keys/create-key/create-key.6.x.rb rename to deployed-devices/rest/keys/create-key/create-key.7.x.rb diff --git a/deployed-devices/rest/keys/delete-key/delete-key.6.x.rb b/deployed-devices/rest/keys/delete-key/delete-key.7.x.rb similarity index 100% rename from deployed-devices/rest/keys/delete-key/delete-key.6.x.rb rename to deployed-devices/rest/keys/delete-key/delete-key.7.x.rb diff --git a/deployed-devices/rest/keys/list-keys/list-key.6.x.rb b/deployed-devices/rest/keys/list-keys/list-key.7.x.rb similarity index 100% rename from deployed-devices/rest/keys/list-keys/list-key.6.x.rb rename to deployed-devices/rest/keys/list-keys/list-key.7.x.rb diff --git a/deployed-devices/rest/keys/retrieve-key/retrieve-key.6.x.rb b/deployed-devices/rest/keys/retrieve-key/retrieve-key.7.x.rb similarity index 100% rename from deployed-devices/rest/keys/retrieve-key/retrieve-key.6.x.rb rename to deployed-devices/rest/keys/retrieve-key/retrieve-key.7.x.rb diff --git a/deployed-devices/rest/keys/update-key/update-key.6.x.rb b/deployed-devices/rest/keys/update-key/update-key.7.x.rb similarity index 100% rename from deployed-devices/rest/keys/update-key/update-key.6.x.rb rename to deployed-devices/rest/keys/update-key/update-key.7.x.rb diff --git a/fax/basic-send/basic-send.6.x.rb b/fax/basic-send/basic-send.7.x.rb similarity index 100% rename from fax/basic-send/basic-send.6.x.rb rename to fax/basic-send/basic-send.7.x.rb diff --git a/fax/instance-get-example/instance-get-example.6.x.rb b/fax/instance-get-example/instance-get-example.7.x.rb similarity index 100% rename from fax/instance-get-example/instance-get-example.6.x.rb rename to fax/instance-get-example/instance-get-example.7.x.rb diff --git a/fax/instance-post-example/instance-post-example.6.x.rb b/fax/instance-post-example/instance-post-example.7.x.rb similarity index 100% rename from fax/instance-post-example/instance-post-example.6.x.rb rename to fax/instance-post-example/instance-post-example.7.x.rb diff --git a/fax/list-get-example/list-get-example.6.x.rb b/fax/list-get-example/list-get-example.7.x.rb similarity index 100% rename from fax/list-get-example/list-get-example.6.x.rb rename to fax/list-get-example/list-get-example.7.x.rb diff --git a/fax/sip-send/example-1/example-1.6.x.rb b/fax/sip-send/example-1/example-1.7.x.rb similarity index 100% rename from fax/sip-send/example-1/example-1.6.x.rb rename to fax/sip-send/example-1/example-1.7.x.rb diff --git a/fax/sip-send/example-2/example-2.6.x.rb b/fax/sip-send/example-2/example-2.7.x.rb similarity index 100% rename from fax/sip-send/example-2/example-2.6.x.rb rename to fax/sip-send/example-2/example-2.7.x.rb diff --git a/fax/sip-send/example-3/example-3.6.x.rb b/fax/sip-send/example-3/example-3.7.x.rb similarity index 100% rename from fax/sip-send/example-3/example-3.6.x.rb rename to fax/sip-send/example-3/example-3.7.x.rb diff --git a/guides/request-validation-sinatra/example-1/example-1.6.x.rb b/guides/request-validation-sinatra/example-1/example-1.7.x.rb similarity index 100% rename from guides/request-validation-sinatra/example-1/example-1.6.x.rb rename to guides/request-validation-sinatra/example-1/example-1.7.x.rb diff --git a/guides/request-validation-sinatra/example-2/example-2.6.x.rb b/guides/request-validation-sinatra/example-2/example-2.7.x.rb similarity index 100% rename from guides/request-validation-sinatra/example-2/example-2.6.x.rb rename to guides/request-validation-sinatra/example-2/example-2.7.x.rb diff --git a/guides/voice/conference-calls-guide/moderated-conference/moderated-conference.6.x.rb b/guides/voice/conference-calls-guide/moderated-conference/moderated-conference.7.x.rb similarity index 100% rename from guides/voice/conference-calls-guide/moderated-conference/moderated-conference.6.x.rb rename to guides/voice/conference-calls-guide/moderated-conference/moderated-conference.7.x.rb diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.6.x.rb b/guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.7.x.rb similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.6.x.rb rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.7.x.rb diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.6.x.rb b/guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.7.x.rb similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.6.x.rb rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.7.x.rb diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.6.x.rb b/guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.7.x.rb similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.6.x.rb rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.7.x.rb diff --git a/guides/voice/record-calls-guide/record-outgoing-call/example-1.6.x.rb b/guides/voice/record-calls-guide/record-outgoing-call/example-1.7.x.rb similarity index 100% rename from guides/voice/record-calls-guide/record-outgoing-call/example-1.6.x.rb rename to guides/voice/record-calls-guide/record-outgoing-call/example-1.7.x.rb diff --git a/guides/voice/record-calls-guide/record-twiml-transcribe/example.6.x.rb b/guides/voice/record-calls-guide/record-twiml-transcribe/example.7.x.rb similarity index 100% rename from guides/voice/record-calls-guide/record-twiml-transcribe/example.6.x.rb rename to guides/voice/record-calls-guide/record-twiml-transcribe/example.7.x.rb diff --git a/guides/voice/record-calls-guide/record-twiml/example.6.x.rb b/guides/voice/record-calls-guide/record-twiml/example.7.x.rb similarity index 100% rename from guides/voice/record-calls-guide/record-twiml/example.6.x.rb rename to guides/voice/record-calls-guide/record-twiml/example.7.x.rb diff --git a/guides/voice/recording-add-on-guide/use-add-on-data/use-add-on-data.6.x.rb b/guides/voice/recording-add-on-guide/use-add-on-data/use-add-on-data.7.x.rb similarity index 100% rename from guides/voice/recording-add-on-guide/use-add-on-data/use-add-on-data.6.x.rb rename to guides/voice/recording-add-on-guide/use-add-on-data/use-add-on-data.7.x.rb diff --git a/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.6.x.rb b/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.7.x.rb similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.6.x.rb rename to guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.7.x.rb diff --git a/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.6.x.rb b/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.7.x.rb similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.6.x.rb rename to guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.7.x.rb diff --git a/ip-messaging/push-config/new-message-push-config/new-message-push-config.6.x.rb b/ip-messaging/push-config/new-message-push-config/new-message-push-config.7.x.rb similarity index 100% rename from ip-messaging/push-config/new-message-push-config/new-message-push-config.6.x.rb rename to ip-messaging/push-config/new-message-push-config/new-message-push-config.7.x.rb diff --git a/ip-messaging/reachability-indicator/disable-indicator/disable-indicator.6.x.rb b/ip-messaging/reachability-indicator/disable-indicator/disable-indicator.7.x.rb similarity index 100% rename from ip-messaging/reachability-indicator/disable-indicator/disable-indicator.6.x.rb rename to ip-messaging/reachability-indicator/disable-indicator/disable-indicator.7.x.rb diff --git a/ip-messaging/reachability-indicator/enable-indicator/enable-indicator.6.x.rb b/ip-messaging/reachability-indicator/enable-indicator/enable-indicator.7.x.rb similarity index 100% rename from ip-messaging/reachability-indicator/enable-indicator/enable-indicator.6.x.rb rename to ip-messaging/reachability-indicator/enable-indicator/enable-indicator.7.x.rb diff --git a/ip-messaging/rest/channels/create-channels/create-channels.6.x.rb b/ip-messaging/rest/channels/create-channels/create-channels.7.x.rb similarity index 100% rename from ip-messaging/rest/channels/create-channels/create-channels.6.x.rb rename to ip-messaging/rest/channels/create-channels/create-channels.7.x.rb diff --git a/ip-messaging/rest/channels/delete-channels/delete-channels.6.x.rb b/ip-messaging/rest/channels/delete-channels/delete-channels.7.x.rb similarity index 100% rename from ip-messaging/rest/channels/delete-channels/delete-channels.6.x.rb rename to ip-messaging/rest/channels/delete-channels/delete-channels.7.x.rb diff --git a/ip-messaging/rest/channels/list-channels/list-channels.6.x.rb b/ip-messaging/rest/channels/list-channels/list-channels.7.x.rb similarity index 100% rename from ip-messaging/rest/channels/list-channels/list-channels.6.x.rb rename to ip-messaging/rest/channels/list-channels/list-channels.7.x.rb diff --git a/ip-messaging/rest/channels/retrieve-channels/retrieve-channels.6.x.rb b/ip-messaging/rest/channels/retrieve-channels/retrieve-channels.7.x.rb similarity index 100% rename from ip-messaging/rest/channels/retrieve-channels/retrieve-channels.6.x.rb rename to ip-messaging/rest/channels/retrieve-channels/retrieve-channels.7.x.rb diff --git a/ip-messaging/rest/channels/update-channels/update-channels.6.x.rb b/ip-messaging/rest/channels/update-channels/update-channels.7.x.rb similarity index 100% rename from ip-messaging/rest/channels/update-channels/update-channels.6.x.rb rename to ip-messaging/rest/channels/update-channels/update-channels.7.x.rb diff --git a/ip-messaging/rest/credentials/create-credentials/create-credentials.6.x.rb b/ip-messaging/rest/credentials/create-credentials/create-credentials.7.x.rb similarity index 100% rename from ip-messaging/rest/credentials/create-credentials/create-credentials.6.x.rb rename to ip-messaging/rest/credentials/create-credentials/create-credentials.7.x.rb diff --git a/ip-messaging/rest/credentials/delete-credentials/delete-credentials.6.x.rb b/ip-messaging/rest/credentials/delete-credentials/delete-credentials.7.x.rb similarity index 100% rename from ip-messaging/rest/credentials/delete-credentials/delete-credentials.6.x.rb rename to ip-messaging/rest/credentials/delete-credentials/delete-credentials.7.x.rb diff --git a/ip-messaging/rest/credentials/list-credentials/list-credentials.6.x.rb b/ip-messaging/rest/credentials/list-credentials/list-credentials.7.x.rb similarity index 100% rename from ip-messaging/rest/credentials/list-credentials/list-credentials.6.x.rb rename to ip-messaging/rest/credentials/list-credentials/list-credentials.7.x.rb diff --git a/ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.6.x.rb b/ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.7.x.rb similarity index 100% rename from ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.6.x.rb rename to ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.7.x.rb diff --git a/ip-messaging/rest/credentials/update-credentials/update-credentials.6.x.rb b/ip-messaging/rest/credentials/update-credentials/update-credentials.7.x.rb similarity index 100% rename from ip-messaging/rest/credentials/update-credentials/update-credentials.6.x.rb rename to ip-messaging/rest/credentials/update-credentials/update-credentials.7.x.rb diff --git a/ip-messaging/rest/members/add-member/add-member.6.x.rb b/ip-messaging/rest/members/add-member/add-member.7.x.rb similarity index 100% rename from ip-messaging/rest/members/add-member/add-member.6.x.rb rename to ip-messaging/rest/members/add-member/add-member.7.x.rb diff --git a/ip-messaging/rest/members/list-members/list-members.6.x.rb b/ip-messaging/rest/members/list-members/list-members.7.x.rb similarity index 100% rename from ip-messaging/rest/members/list-members/list-members.6.x.rb rename to ip-messaging/rest/members/list-members/list-members.7.x.rb diff --git a/ip-messaging/rest/members/remove-member/remove-member.6.x.rb b/ip-messaging/rest/members/remove-member/remove-member.7.x.rb similarity index 100% rename from ip-messaging/rest/members/remove-member/remove-member.6.x.rb rename to ip-messaging/rest/members/remove-member/remove-member.7.x.rb diff --git a/ip-messaging/rest/members/retrieve-member/retrieve-member.6.x.rb b/ip-messaging/rest/members/retrieve-member/retrieve-member.7.x.rb similarity index 100% rename from ip-messaging/rest/members/retrieve-member/retrieve-member.6.x.rb rename to ip-messaging/rest/members/retrieve-member/retrieve-member.7.x.rb diff --git a/ip-messaging/rest/messages/delete-messages/delete-messages.6.x.rb b/ip-messaging/rest/messages/delete-messages/delete-messages.7.x.rb similarity index 100% rename from ip-messaging/rest/messages/delete-messages/delete-messages.6.x.rb rename to ip-messaging/rest/messages/delete-messages/delete-messages.7.x.rb diff --git a/ip-messaging/rest/messages/list-messages/list-messages.6.x.rb b/ip-messaging/rest/messages/list-messages/list-messages.7.x.rb similarity index 100% rename from ip-messaging/rest/messages/list-messages/list-messages.6.x.rb rename to ip-messaging/rest/messages/list-messages/list-messages.7.x.rb diff --git a/ip-messaging/rest/messages/retrieve-messages/retrieve-messages.6.x.rb b/ip-messaging/rest/messages/retrieve-messages/retrieve-messages.7.x.rb similarity index 100% rename from ip-messaging/rest/messages/retrieve-messages/retrieve-messages.6.x.rb rename to ip-messaging/rest/messages/retrieve-messages/retrieve-messages.7.x.rb diff --git a/ip-messaging/rest/messages/send-messages/send-messages.6.x.rb b/ip-messaging/rest/messages/send-messages/send-messages.7.x.rb similarity index 100% rename from ip-messaging/rest/messages/send-messages/send-messages.6.x.rb rename to ip-messaging/rest/messages/send-messages/send-messages.7.x.rb diff --git a/ip-messaging/rest/messages/update-messages/update-messages.6.x.rb b/ip-messaging/rest/messages/update-messages/update-messages.7.x.rb similarity index 100% rename from ip-messaging/rest/messages/update-messages/update-messages.6.x.rb rename to ip-messaging/rest/messages/update-messages/update-messages.7.x.rb diff --git a/ip-messaging/rest/roles/create-role/create-role.6.x.rb b/ip-messaging/rest/roles/create-role/create-role.7.x.rb similarity index 100% rename from ip-messaging/rest/roles/create-role/create-role.6.x.rb rename to ip-messaging/rest/roles/create-role/create-role.7.x.rb diff --git a/ip-messaging/rest/roles/delete-role/delete-role.6.x.rb b/ip-messaging/rest/roles/delete-role/delete-role.7.x.rb similarity index 100% rename from ip-messaging/rest/roles/delete-role/delete-role.6.x.rb rename to ip-messaging/rest/roles/delete-role/delete-role.7.x.rb diff --git a/ip-messaging/rest/roles/list-roles/list-roles.6.x.rb b/ip-messaging/rest/roles/list-roles/list-roles.7.x.rb similarity index 100% rename from ip-messaging/rest/roles/list-roles/list-roles.6.x.rb rename to ip-messaging/rest/roles/list-roles/list-roles.7.x.rb diff --git a/ip-messaging/rest/roles/retrieve-role/retrieve-role.6.x.rb b/ip-messaging/rest/roles/retrieve-role/retrieve-role.7.x.rb similarity index 100% rename from ip-messaging/rest/roles/retrieve-role/retrieve-role.6.x.rb rename to ip-messaging/rest/roles/retrieve-role/retrieve-role.7.x.rb diff --git a/ip-messaging/rest/roles/update-role/update-role.6.x.rb b/ip-messaging/rest/roles/update-role/update-role.7.x.rb similarity index 100% rename from ip-messaging/rest/roles/update-role/update-role.6.x.rb rename to ip-messaging/rest/roles/update-role/update-role.7.x.rb diff --git a/ip-messaging/rest/services/create-service/create-service.6.x.rb b/ip-messaging/rest/services/create-service/create-service.7.x.rb similarity index 100% rename from ip-messaging/rest/services/create-service/create-service.6.x.rb rename to ip-messaging/rest/services/create-service/create-service.7.x.rb diff --git a/ip-messaging/rest/services/delete-service/delete-service.6.x.rb b/ip-messaging/rest/services/delete-service/delete-service.7.x.rb similarity index 100% rename from ip-messaging/rest/services/delete-service/delete-service.6.x.rb rename to ip-messaging/rest/services/delete-service/delete-service.7.x.rb diff --git a/ip-messaging/rest/services/list-service/list-service.6.x.rb b/ip-messaging/rest/services/list-service/list-service.7.x.rb similarity index 100% rename from ip-messaging/rest/services/list-service/list-service.6.x.rb rename to ip-messaging/rest/services/list-service/list-service.7.x.rb diff --git a/ip-messaging/rest/services/retrieve-service/retrieve-service.6.x.rb b/ip-messaging/rest/services/retrieve-service/retrieve-service.7.x.rb similarity index 100% rename from ip-messaging/rest/services/retrieve-service/retrieve-service.6.x.rb rename to ip-messaging/rest/services/retrieve-service/retrieve-service.7.x.rb diff --git a/ip-messaging/rest/services/update-service/update-service.6.x.rb b/ip-messaging/rest/services/update-service/update-service.7.x.rb similarity index 100% rename from ip-messaging/rest/services/update-service/update-service.6.x.rb rename to ip-messaging/rest/services/update-service/update-service.7.x.rb diff --git a/ip-messaging/rest/users/create-user/create-user.6.x.rb b/ip-messaging/rest/users/create-user/create-user.7.x.rb similarity index 100% rename from ip-messaging/rest/users/create-user/create-user.6.x.rb rename to ip-messaging/rest/users/create-user/create-user.7.x.rb diff --git a/ip-messaging/rest/users/delete-user/delete-user.6.x.rb b/ip-messaging/rest/users/delete-user/delete-user.7.x.rb similarity index 100% rename from ip-messaging/rest/users/delete-user/delete-user.6.x.rb rename to ip-messaging/rest/users/delete-user/delete-user.7.x.rb diff --git a/ip-messaging/rest/users/list-users/list-users.6.x.rb b/ip-messaging/rest/users/list-users/list-users.7.x.rb similarity index 100% rename from ip-messaging/rest/users/list-users/list-users.6.x.rb rename to ip-messaging/rest/users/list-users/list-users.7.x.rb diff --git a/ip-messaging/rest/users/retrieve-user/retrieve-user.6.x.rb b/ip-messaging/rest/users/retrieve-user/retrieve-user.7.x.rb similarity index 100% rename from ip-messaging/rest/users/retrieve-user/retrieve-user.6.x.rb rename to ip-messaging/rest/users/retrieve-user/retrieve-user.7.x.rb diff --git a/ip-messaging/rest/users/update-user/update-user.6.x.rb b/ip-messaging/rest/users/update-user/update-user.7.x.rb similarity index 100% rename from ip-messaging/rest/users/update-user/update-user.6.x.rb rename to ip-messaging/rest/users/update-user/update-user.7.x.rb diff --git a/ip-messaging/users/token-gen-server-push/token-gen-server-push.6.x.rb b/ip-messaging/users/token-gen-server-push/token-gen-server-push.7.x.rb similarity index 100% rename from ip-messaging/users/token-gen-server-push/token-gen-server-push.6.x.rb rename to ip-messaging/users/token-gen-server-push/token-gen-server-push.7.x.rb diff --git a/ip-messaging/users/token-generation-server/token-generation-server.6.x.rb b/ip-messaging/users/token-generation-server/token-generation-server.7.x.rb similarity index 100% rename from ip-messaging/users/token-generation-server/token-generation-server.6.x.rb rename to ip-messaging/users/token-generation-server/token-generation-server.7.x.rb diff --git a/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.6.x.rb b/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.7.x.rb similarity index 100% rename from lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.6.x.rb rename to lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.7.x.rb diff --git a/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.6.x.rb b/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.7.x.rb similarity index 100% rename from lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.6.x.rb rename to lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.7.x.rb diff --git a/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.6.x.rb b/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.7.x.rb similarity index 100% rename from lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.6.x.rb rename to lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.7.x.rb diff --git a/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.6.x.rb b/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.7.x.rb similarity index 100% rename from lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.6.x.rb rename to lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.7.x.rb diff --git a/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.6.x.rb b/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.7.x.rb similarity index 100% rename from lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.6.x.rb rename to lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.7.x.rb diff --git a/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.6.x.rb b/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.7.x.rb similarity index 100% rename from lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.6.x.rb rename to lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.7.x.rb diff --git a/lookups/lookup-international-basic/lookup-international-basic.6.x.rb b/lookups/lookup-international-basic/lookup-international-basic.7.x.rb similarity index 100% rename from lookups/lookup-international-basic/lookup-international-basic.6.x.rb rename to lookups/lookup-international-basic/lookup-international-basic.7.x.rb diff --git a/lookups/lookup-national-basic/lookup-national-basic.6.x.rb b/lookups/lookup-national-basic/lookup-national-basic.7.x.rb similarity index 100% rename from lookups/lookup-national-basic/lookup-national-basic.6.x.rb rename to lookups/lookup-national-basic/lookup-national-basic.7.x.rb diff --git a/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.6.x.rb b/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.7.x.rb similarity index 100% rename from media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.6.x.rb rename to media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.7.x.rb diff --git a/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.6.x.rb b/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.7.x.rb similarity index 100% rename from media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.6.x.rb rename to media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.7.x.rb diff --git a/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.6.x.rb b/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.7.x.rb similarity index 100% rename from messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.6.x.rb rename to messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.7.x.rb diff --git a/messaging/link-shortening/link-shortening-sms/link-shortening-sms.6.x.rb b/messaging/link-shortening/link-shortening-sms/link-shortening-sms.7.x.rb similarity index 100% rename from messaging/link-shortening/link-shortening-sms/link-shortening-sms.6.x.rb rename to messaging/link-shortening/link-shortening-sms/link-shortening-sms.7.x.rb diff --git a/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.6.x.rb b/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.7.x.rb similarity index 100% rename from messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.6.x.rb rename to messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.7.x.rb diff --git a/messaging/services/service-alpha-add/service-alpha-add.6.x.rb b/messaging/services/service-alpha-add/service-alpha-add.7.x.rb similarity index 100% rename from messaging/services/service-alpha-add/service-alpha-add.6.x.rb rename to messaging/services/service-alpha-add/service-alpha-add.7.x.rb diff --git a/messaging/services/service-alpha-delete/service-alpha-delete.6.x.rb b/messaging/services/service-alpha-delete/service-alpha-delete.7.x.rb similarity index 100% rename from messaging/services/service-alpha-delete/service-alpha-delete.6.x.rb rename to messaging/services/service-alpha-delete/service-alpha-delete.7.x.rb diff --git a/messaging/services/service-alpha-get/service-alpha-get.6.x.rb b/messaging/services/service-alpha-get/service-alpha-get.7.x.rb similarity index 100% rename from messaging/services/service-alpha-get/service-alpha-get.6.x.rb rename to messaging/services/service-alpha-get/service-alpha-get.7.x.rb diff --git a/messaging/services/service-alpha-list/service-alpha-list.6.x.rb b/messaging/services/service-alpha-list/service-alpha-list.7.x.rb similarity index 100% rename from messaging/services/service-alpha-list/service-alpha-list.6.x.rb rename to messaging/services/service-alpha-list/service-alpha-list.7.x.rb diff --git a/messaging/services/service-create/service-create.6.x.rb b/messaging/services/service-create/service-create.7.x.rb similarity index 100% rename from messaging/services/service-create/service-create.6.x.rb rename to messaging/services/service-create/service-create.7.x.rb diff --git a/messaging/services/service-delete/service-delete.6.x.rb b/messaging/services/service-delete/service-delete.7.x.rb similarity index 100% rename from messaging/services/service-delete/service-delete.6.x.rb rename to messaging/services/service-delete/service-delete.7.x.rb diff --git a/messaging/services/service-get/service-get.6.x.rb b/messaging/services/service-get/service-get.7.x.rb similarity index 100% rename from messaging/services/service-get/service-get.6.x.rb rename to messaging/services/service-get/service-get.7.x.rb diff --git a/messaging/services/service-list/service-list.6.x.rb b/messaging/services/service-list/service-list.7.x.rb similarity index 100% rename from messaging/services/service-list/service-list.6.x.rb rename to messaging/services/service-list/service-list.7.x.rb diff --git a/messaging/services/service-multiple-number-add/service-multiple-number-add.6.x.rb b/messaging/services/service-multiple-number-add/service-multiple-number-add.7.x.rb similarity index 100% rename from messaging/services/service-multiple-number-add/service-multiple-number-add.6.x.rb rename to messaging/services/service-multiple-number-add/service-multiple-number-add.7.x.rb diff --git a/messaging/services/service-number-add/service-number-add.6.x.rb b/messaging/services/service-number-add/service-number-add.7.x.rb similarity index 100% rename from messaging/services/service-number-add/service-number-add.6.x.rb rename to messaging/services/service-number-add/service-number-add.7.x.rb diff --git a/messaging/services/service-number-delete/service-number-delete.6.x.rb b/messaging/services/service-number-delete/service-number-delete.7.x.rb similarity index 100% rename from messaging/services/service-number-delete/service-number-delete.6.x.rb rename to messaging/services/service-number-delete/service-number-delete.7.x.rb diff --git a/messaging/services/service-number-get/service-number-get.6.x.rb b/messaging/services/service-number-get/service-number-get.7.x.rb similarity index 100% rename from messaging/services/service-number-get/service-number-get.6.x.rb rename to messaging/services/service-number-get/service-number-get.7.x.rb diff --git a/messaging/services/service-number-list/service-number-list.6.x.rb b/messaging/services/service-number-list/service-number-list.7.x.rb similarity index 100% rename from messaging/services/service-number-list/service-number-list.6.x.rb rename to messaging/services/service-number-list/service-number-list.7.x.rb diff --git a/messaging/services/service-shortcode-add/service-shortcode-add.6.x.rb b/messaging/services/service-shortcode-add/service-shortcode-add.7.x.rb similarity index 100% rename from messaging/services/service-shortcode-add/service-shortcode-add.6.x.rb rename to messaging/services/service-shortcode-add/service-shortcode-add.7.x.rb diff --git a/messaging/services/service-shortcode-delete/service-shortcode-delete.6.x.rb b/messaging/services/service-shortcode-delete/service-shortcode-delete.7.x.rb similarity index 100% rename from messaging/services/service-shortcode-delete/service-shortcode-delete.6.x.rb rename to messaging/services/service-shortcode-delete/service-shortcode-delete.7.x.rb diff --git a/messaging/services/service-shortcode-get/service-shortcode-get.6.x.rb b/messaging/services/service-shortcode-get/service-shortcode-get.7.x.rb similarity index 100% rename from messaging/services/service-shortcode-get/service-shortcode-get.6.x.rb rename to messaging/services/service-shortcode-get/service-shortcode-get.7.x.rb diff --git a/messaging/services/service-shortcode-list/service-shortcode-list.6.x.rb b/messaging/services/service-shortcode-list/service-shortcode-list.7.x.rb similarity index 100% rename from messaging/services/service-shortcode-list/service-shortcode-list.6.x.rb rename to messaging/services/service-shortcode-list/service-shortcode-list.7.x.rb diff --git a/messaging/services/service-update/service-update.6.x.rb b/messaging/services/service-update/service-update.7.x.rb similarity index 100% rename from messaging/services/service-update/service-update.6.x.rb rename to messaging/services/service-update/service-update.7.x.rb diff --git a/mobile-identity/identity-match/identity-match-example.6.x.rb b/mobile-identity/identity-match/identity-match-example.7.x.rb similarity index 100% rename from mobile-identity/identity-match/identity-match-example.6.x.rb rename to mobile-identity/identity-match/identity-match-example.7.x.rb diff --git a/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.6.x.rb b/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.7.x.rb similarity index 100% rename from mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.6.x.rb rename to mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.7.x.rb diff --git a/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.6.x.rb b/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.7.x.rb similarity index 100% rename from mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.6.x.rb rename to mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.7.x.rb diff --git a/monitor/alerts/instance-delete-example/instance-delete-example.6.x.rb b/monitor/alerts/instance-delete-example/instance-delete-example.7.x.rb similarity index 100% rename from monitor/alerts/instance-delete-example/instance-delete-example.6.x.rb rename to monitor/alerts/instance-delete-example/instance-delete-example.7.x.rb diff --git a/monitor/alerts/instance-get-example/instance-get-example.6.x.rb b/monitor/alerts/instance-get-example/instance-get-example.7.x.rb similarity index 100% rename from monitor/alerts/instance-get-example/instance-get-example.6.x.rb rename to monitor/alerts/instance-get-example/instance-get-example.7.x.rb diff --git a/monitor/alerts/list-get-example-all/list-get-example-all.6.x.rb b/monitor/alerts/list-get-example-all/list-get-example-all.7.x.rb similarity index 100% rename from monitor/alerts/list-get-example-all/list-get-example-all.6.x.rb rename to monitor/alerts/list-get-example-all/list-get-example-all.7.x.rb diff --git a/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.6.x.rb b/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.7.x.rb similarity index 100% rename from monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.6.x.rb rename to monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.7.x.rb diff --git a/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.6.x.rb b/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.7.x.rb similarity index 100% rename from monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.6.x.rb rename to monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.7.x.rb diff --git a/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.6.x.rb b/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.7.x.rb similarity index 100% rename from monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.6.x.rb rename to monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.7.x.rb diff --git a/monitor/events/list-get-example-date-filter/list-get-example-date-filter.6.x.rb b/monitor/events/list-get-example-date-filter/list-get-example-date-filter.7.x.rb similarity index 100% rename from monitor/events/list-get-example-date-filter/list-get-example-date-filter.6.x.rb rename to monitor/events/list-get-example-date-filter/list-get-example-date-filter.7.x.rb diff --git a/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.6.x.rb b/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.7.x.rb similarity index 100% rename from monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.6.x.rb rename to monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.7.x.rb diff --git a/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.6.x.rb b/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.7.x.rb similarity index 100% rename from monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.6.x.rb rename to monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.7.x.rb diff --git a/notifications/register/create-binding-server-fcm/create-binding-server-fcm.6.x.rb b/notifications/register/create-binding-server-fcm/create-binding-server-fcm.7.x.rb similarity index 100% rename from notifications/register/create-binding-server-fcm/create-binding-server-fcm.6.x.rb rename to notifications/register/create-binding-server-fcm/create-binding-server-fcm.7.x.rb diff --git a/notifications/register/create-binding-server/create-binding-server-apn.6.x.rb b/notifications/register/create-binding-server/create-binding-server-apn.7.x.rb similarity index 100% rename from notifications/register/create-binding-server/create-binding-server-apn.6.x.rb rename to notifications/register/create-binding-server/create-binding-server-apn.7.x.rb diff --git a/notifications/register/send-notification-2/send-notification-2.6.x.rb b/notifications/register/send-notification-2/send-notification-2.7.x.rb similarity index 100% rename from notifications/register/send-notification-2/send-notification-2.6.x.rb rename to notifications/register/send-notification-2/send-notification-2.7.x.rb diff --git a/notifications/register/send-notification-segment-tag/send-notification-segment-tag.6.x.rb b/notifications/register/send-notification-segment-tag/send-notification-segment-tag.7.x.rb similarity index 100% rename from notifications/register/send-notification-segment-tag/send-notification-segment-tag.6.x.rb rename to notifications/register/send-notification-segment-tag/send-notification-segment-tag.7.x.rb diff --git a/notifications/register/send-notification-segment/send-notification-segment.6.x.rb b/notifications/register/send-notification-segment/send-notification-segment.7.x.rb similarity index 100% rename from notifications/register/send-notification-segment/send-notification-segment.6.x.rb rename to notifications/register/send-notification-segment/send-notification-segment.7.x.rb diff --git a/notifications/register/send-notification/send-notification.6.x.rb b/notifications/register/send-notification/send-notification.7.x.rb similarity index 100% rename from notifications/register/send-notification/send-notification.6.x.rb rename to notifications/register/send-notification/send-notification.7.x.rb diff --git a/notifications/rest/bindings/create-binding/create-binding.6.x.rb b/notifications/rest/bindings/create-binding/create-binding.7.x.rb similarity index 100% rename from notifications/rest/bindings/create-binding/create-binding.6.x.rb rename to notifications/rest/bindings/create-binding/create-binding.7.x.rb diff --git a/notifications/rest/bindings/delete-binding/delete-binding.6.x.rb b/notifications/rest/bindings/delete-binding/delete-binding.7.x.rb similarity index 100% rename from notifications/rest/bindings/delete-binding/delete-binding.6.x.rb rename to notifications/rest/bindings/delete-binding/delete-binding.7.x.rb diff --git a/notifications/rest/bindings/list-binding/list-binding.6.x.rb b/notifications/rest/bindings/list-binding/list-binding.7.x.rb similarity index 100% rename from notifications/rest/bindings/list-binding/list-binding.6.x.rb rename to notifications/rest/bindings/list-binding/list-binding.7.x.rb diff --git a/notifications/rest/bindings/retrieve-binding/retrieve-binding.6.x.rb b/notifications/rest/bindings/retrieve-binding/retrieve-binding.7.x.rb similarity index 100% rename from notifications/rest/bindings/retrieve-binding/retrieve-binding.6.x.rb rename to notifications/rest/bindings/retrieve-binding/retrieve-binding.7.x.rb diff --git a/notifications/rest/credentials/create-apn-credential/create-apn-credential.6.x.rb b/notifications/rest/credentials/create-apn-credential/create-apn-credential.7.x.rb similarity index 100% rename from notifications/rest/credentials/create-apn-credential/create-apn-credential.6.x.rb rename to notifications/rest/credentials/create-apn-credential/create-apn-credential.7.x.rb diff --git a/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.6.x.rb b/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.7.x.rb similarity index 100% rename from notifications/rest/credentials/create-fcm-credential/create-fcm-credential.6.x.rb rename to notifications/rest/credentials/create-fcm-credential/create-fcm-credential.7.x.rb diff --git a/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.6.x.rb b/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.7.x.rb similarity index 100% rename from notifications/rest/credentials/create-gcm-credential/create-gcm-credential.6.x.rb rename to notifications/rest/credentials/create-gcm-credential/create-gcm-credential.7.x.rb diff --git a/notifications/rest/credentials/delete-credential/delete-credential.6.x.rb b/notifications/rest/credentials/delete-credential/delete-credential.7.x.rb similarity index 100% rename from notifications/rest/credentials/delete-credential/delete-credential.6.x.rb rename to notifications/rest/credentials/delete-credential/delete-credential.7.x.rb diff --git a/notifications/rest/credentials/list-credential/list-credential.6.x.rb b/notifications/rest/credentials/list-credential/list-credential.7.x.rb similarity index 100% rename from notifications/rest/credentials/list-credential/list-credential.6.x.rb rename to notifications/rest/credentials/list-credential/list-credential.7.x.rb diff --git a/notifications/rest/credentials/retrieve-credential/retrieve-credential.6.x.rb b/notifications/rest/credentials/retrieve-credential/retrieve-credential.7.x.rb similarity index 100% rename from notifications/rest/credentials/retrieve-credential/retrieve-credential.6.x.rb rename to notifications/rest/credentials/retrieve-credential/retrieve-credential.7.x.rb diff --git a/notifications/rest/credentials/update-credential/update-credential.6.x.rb b/notifications/rest/credentials/update-credential/update-credential.7.x.rb similarity index 100% rename from notifications/rest/credentials/update-credential/update-credential.6.x.rb rename to notifications/rest/credentials/update-credential/update-credential.7.x.rb diff --git a/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.6.x.rb b/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.7.x.rb similarity index 100% rename from notifications/rest/notifications/send-notification-detailed/send-notification-detailed.6.x.rb rename to notifications/rest/notifications/send-notification-detailed/send-notification-detailed.7.x.rb diff --git a/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.6.x.rb b/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.7.x.rb similarity index 100% rename from notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.6.x.rb rename to notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.7.x.rb diff --git a/notifications/rest/notifications/send-notification/send-notification.6.x.rb b/notifications/rest/notifications/send-notification/send-notification.7.x.rb similarity index 100% rename from notifications/rest/notifications/send-notification/send-notification.6.x.rb rename to notifications/rest/notifications/send-notification/send-notification.7.x.rb diff --git a/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.6.x.rb b/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.7.x.rb similarity index 100% rename from notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.6.x.rb rename to notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.7.x.rb diff --git a/notifications/rest/segments/list-segment/list-segment.6.x.rb b/notifications/rest/segments/list-segment/list-segment.7.x.rb similarity index 100% rename from notifications/rest/segments/list-segment/list-segment.6.x.rb rename to notifications/rest/segments/list-segment/list-segment.7.x.rb diff --git a/notifications/rest/services/create-service/create-service.6.x.rb b/notifications/rest/services/create-service/create-service.7.x.rb similarity index 100% rename from notifications/rest/services/create-service/create-service.6.x.rb rename to notifications/rest/services/create-service/create-service.7.x.rb diff --git a/notifications/rest/services/delete-service/delete-service.6.x.rb b/notifications/rest/services/delete-service/delete-service.7.x.rb similarity index 100% rename from notifications/rest/services/delete-service/delete-service.6.x.rb rename to notifications/rest/services/delete-service/delete-service.7.x.rb diff --git a/notifications/rest/services/list-service/list-service.6.x.rb b/notifications/rest/services/list-service/list-service.7.x.rb similarity index 100% rename from notifications/rest/services/list-service/list-service.6.x.rb rename to notifications/rest/services/list-service/list-service.7.x.rb diff --git a/notifications/rest/services/retrieve-service/retrieve-service.6.x.rb b/notifications/rest/services/retrieve-service/retrieve-service.7.x.rb similarity index 100% rename from notifications/rest/services/retrieve-service/retrieve-service.6.x.rb rename to notifications/rest/services/retrieve-service/retrieve-service.7.x.rb diff --git a/notifications/rest/services/update-service/update-service.6.x.rb b/notifications/rest/services/update-service/update-service.7.x.rb similarity index 100% rename from notifications/rest/services/update-service/update-service.6.x.rb rename to notifications/rest/services/update-service/update-service.7.x.rb diff --git a/notifications/rest/users/add-user-to-segment/add-user-to-segment.6.x.rb b/notifications/rest/users/add-user-to-segment/add-user-to-segment.7.x.rb similarity index 100% rename from notifications/rest/users/add-user-to-segment/add-user-to-segment.6.x.rb rename to notifications/rest/users/add-user-to-segment/add-user-to-segment.7.x.rb diff --git a/notifications/rest/users/create-user/create-user.6.x.rb b/notifications/rest/users/create-user/create-user.7.x.rb similarity index 100% rename from notifications/rest/users/create-user/create-user.6.x.rb rename to notifications/rest/users/create-user/create-user.7.x.rb diff --git a/notifications/rest/users/delete-user/delete-user.6.x.rb b/notifications/rest/users/delete-user/delete-user.7.x.rb similarity index 100% rename from notifications/rest/users/delete-user/delete-user.6.x.rb rename to notifications/rest/users/delete-user/delete-user.7.x.rb diff --git a/notifications/rest/users/list-binding-of-user/list-binding-of-user.6.x.rb b/notifications/rest/users/list-binding-of-user/list-binding-of-user.7.x.rb similarity index 100% rename from notifications/rest/users/list-binding-of-user/list-binding-of-user.6.x.rb rename to notifications/rest/users/list-binding-of-user/list-binding-of-user.7.x.rb diff --git a/notifications/rest/users/list-users/list-users.6.x.rb b/notifications/rest/users/list-users/list-users.7.x.rb similarity index 100% rename from notifications/rest/users/list-users/list-users.6.x.rb rename to notifications/rest/users/list-users/list-users.7.x.rb diff --git a/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.6.x.rb b/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.7.x.rb similarity index 100% rename from notifications/rest/users/remove-user-from-segment/remove-user-from-segment.6.x.rb rename to notifications/rest/users/remove-user-from-segment/remove-user-from-segment.7.x.rb diff --git a/notifications/rest/users/retrieve-user/retrieve-user.6.x.rb b/notifications/rest/users/retrieve-user/retrieve-user.7.x.rb similarity index 100% rename from notifications/rest/users/retrieve-user/retrieve-user.6.x.rb rename to notifications/rest/users/retrieve-user/retrieve-user.7.x.rb diff --git a/notifications/sms-quickstart/create-binding/create-binding.6.x.rb b/notifications/sms-quickstart/create-binding/create-binding.7.x.rb similarity index 100% rename from notifications/sms-quickstart/create-binding/create-binding.6.x.rb rename to notifications/sms-quickstart/create-binding/create-binding.7.x.rb diff --git a/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.6.x.rb b/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.7.x.rb similarity index 100% rename from notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.6.x.rb rename to notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.7.x.rb diff --git a/notifications/sms-quickstart/send-notification/send-notification.6.x.rb b/notifications/sms-quickstart/send-notification/send-notification.7.x.rb similarity index 100% rename from notifications/sms-quickstart/send-notification/send-notification.6.x.rb rename to notifications/sms-quickstart/send-notification/send-notification.7.x.rb diff --git a/pricing/get-messaging-country/get-messaging-country.6.x.rb b/pricing/get-messaging-country/get-messaging-country.7.x.rb similarity index 100% rename from pricing/get-messaging-country/get-messaging-country.6.x.rb rename to pricing/get-messaging-country/get-messaging-country.7.x.rb diff --git a/pricing/get-phone-number-country/get-phone-number-country.6.x.rb b/pricing/get-phone-number-country/get-phone-number-country.7.x.rb similarity index 100% rename from pricing/get-phone-number-country/get-phone-number-country.6.x.rb rename to pricing/get-phone-number-country/get-phone-number-country.7.x.rb diff --git a/pricing/get-voice-country/get-voice-country.6.x.rb b/pricing/get-voice-country/get-voice-country.7.x.rb similarity index 100% rename from pricing/get-voice-country/get-voice-country.6.x.rb rename to pricing/get-voice-country/get-voice-country.7.x.rb diff --git a/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.6.x.rb b/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.7.x.rb similarity index 100% rename from pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.6.x.rb rename to pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.7.x.rb diff --git a/pricing/get-voice-number/get-voice-number.6.x.rb b/pricing/get-voice-number/get-voice-number.7.x.rb similarity index 100% rename from pricing/get-voice-number/get-voice-number.6.x.rb rename to pricing/get-voice-number/get-voice-number.7.x.rb diff --git a/pricing/list-messaging-countries/list-messaging-countries.6.x.rb b/pricing/list-messaging-countries/list-messaging-countries.7.x.rb similarity index 100% rename from pricing/list-messaging-countries/list-messaging-countries.6.x.rb rename to pricing/list-messaging-countries/list-messaging-countries.7.x.rb diff --git a/pricing/list-phone-number-countries/list-phone-number-countries.6.x.rb b/pricing/list-phone-number-countries/list-phone-number-countries.7.x.rb similarity index 100% rename from pricing/list-phone-number-countries/list-phone-number-countries.6.x.rb rename to pricing/list-phone-number-countries/list-phone-number-countries.7.x.rb diff --git a/pricing/list-voice-countries/list-voice-countries.6.x.rb b/pricing/list-voice-countries/list-voice-countries.7.x.rb similarity index 100% rename from pricing/list-voice-countries/list-voice-countries.6.x.rb rename to pricing/list-voice-countries/list-voice-countries.7.x.rb diff --git a/proxy/quickstart/add-phone-number/add-phone-number.6.x.rb b/proxy/quickstart/add-phone-number/add-phone-number.7.x.rb similarity index 100% rename from proxy/quickstart/add-phone-number/add-phone-number.6.x.rb rename to proxy/quickstart/add-phone-number/add-phone-number.7.x.rb diff --git a/proxy/quickstart/create-participant/create-participant.6.x.rb b/proxy/quickstart/create-participant/create-participant.7.x.rb similarity index 100% rename from proxy/quickstart/create-participant/create-participant.6.x.rb rename to proxy/quickstart/create-participant/create-participant.7.x.rb diff --git a/proxy/quickstart/create-service/create-service.6.x.rb b/proxy/quickstart/create-service/create-service.7.x.rb similarity index 100% rename from proxy/quickstart/create-service/create-service.6.x.rb rename to proxy/quickstart/create-service/create-service.7.x.rb diff --git a/proxy/quickstart/create-session/create-session.6.x.rb b/proxy/quickstart/create-session/create-session.7.x.rb similarity index 100% rename from proxy/quickstart/create-session/create-session.6.x.rb rename to proxy/quickstart/create-session/create-session.7.x.rb diff --git a/proxy/quickstart/send-message/send-message.6.x.rb b/proxy/quickstart/send-message/send-message.7.x.rb similarity index 100% rename from proxy/quickstart/send-message/send-message.6.x.rb rename to proxy/quickstart/send-message/send-message.7.x.rb diff --git a/quickstart/ruby/autopilot/create-first-task/create_hello_world_task.6.x.rb b/quickstart/ruby/autopilot/create-first-task/create_hello_world_task.7.x.rb similarity index 100% rename from quickstart/ruby/autopilot/create-first-task/create_hello_world_task.6.x.rb rename to quickstart/ruby/autopilot/create-first-task/create_hello_world_task.7.x.rb diff --git a/quickstart/ruby/autopilot/create-hello-world-samples/create_hello_world_samples.6.x.rb b/quickstart/ruby/autopilot/create-hello-world-samples/create_hello_world_samples.7.x.rb similarity index 100% rename from quickstart/ruby/autopilot/create-hello-world-samples/create_hello_world_samples.6.x.rb rename to quickstart/ruby/autopilot/create-hello-world-samples/create_hello_world_samples.7.x.rb diff --git a/quickstart/ruby/autopilot/create-joke-samples/create_joke_samples.6.x.rb b/quickstart/ruby/autopilot/create-joke-samples/create_joke_samples.7.x.rb similarity index 100% rename from quickstart/ruby/autopilot/create-joke-samples/create_joke_samples.6.x.rb rename to quickstart/ruby/autopilot/create-joke-samples/create_joke_samples.7.x.rb diff --git a/quickstart/ruby/autopilot/create-joke-task/create_joke_task.6.x.rb b/quickstart/ruby/autopilot/create-joke-task/create_joke_task.7.x.rb similarity index 100% rename from quickstart/ruby/autopilot/create-joke-task/create_joke_task.6.x.rb rename to quickstart/ruby/autopilot/create-joke-task/create_joke_task.7.x.rb diff --git a/quickstart/ruby/autopilot/query-task/query_task.6.x.rb b/quickstart/ruby/autopilot/query-task/query_task.7.x.rb similarity index 100% rename from quickstart/ruby/autopilot/query-task/query_task.6.x.rb rename to quickstart/ruby/autopilot/query-task/query_task.7.x.rb diff --git a/quickstart/ruby/sms/example-1/send_notifications.6.x.rb b/quickstart/ruby/sms/example-1/send_notifications.7.x.rb similarity index 100% rename from quickstart/ruby/sms/example-1/send_notifications.6.x.rb rename to quickstart/ruby/sms/example-1/send_notifications.7.x.rb diff --git a/quickstart/ruby/sms/example-2/send_notifications.6.x.rb b/quickstart/ruby/sms/example-2/send_notifications.7.x.rb similarity index 100% rename from quickstart/ruby/sms/example-2/send_notifications.6.x.rb rename to quickstart/ruby/sms/example-2/send_notifications.7.x.rb diff --git a/quickstart/ruby/sms/example-3/sms_reply_ahoy.6.x.rb b/quickstart/ruby/sms/example-3/sms_reply_ahoy.7.x.rb similarity index 100% rename from quickstart/ruby/sms/example-3/sms_reply_ahoy.6.x.rb rename to quickstart/ruby/sms/example-3/sms_reply_ahoy.7.x.rb diff --git a/quickstart/ruby/sms/example-4/mms_hello_friend.6.x.rb b/quickstart/ruby/sms/example-4/mms_hello_friend.7.x.rb similarity index 100% rename from quickstart/ruby/sms/example-4/mms_hello_friend.6.x.rb rename to quickstart/ruby/sms/example-4/mms_hello_friend.7.x.rb diff --git a/quickstart/ruby/sms/example-5/reply_by_name.6.x.rb b/quickstart/ruby/sms/example-5/reply_by_name.7.x.rb similarity index 100% rename from quickstart/ruby/sms/example-5/reply_by_name.6.x.rb rename to quickstart/ruby/sms/example-5/reply_by_name.7.x.rb diff --git a/quickstart/ruby/sms/example-6/tracking_sms_conversations.6.x.rb b/quickstart/ruby/sms/example-6/tracking_sms_conversations.7.x.rb similarity index 100% rename from quickstart/ruby/sms/example-6/tracking_sms_conversations.6.x.rb rename to quickstart/ruby/sms/example-6/tracking_sms_conversations.7.x.rb diff --git a/quickstart/ruby/sms/example-7/send_sms_during_call.6.x.rb b/quickstart/ruby/sms/example-7/send_sms_during_call.7.x.rb similarity index 100% rename from quickstart/ruby/sms/example-7/send_sms_during_call.6.x.rb rename to quickstart/ruby/sms/example-7/send_sms_during_call.7.x.rb diff --git a/quickstart/ruby/voice/example-1-make-call/outgoing_call.6.x.rb b/quickstart/ruby/voice/example-1-make-call/outgoing_call.7.x.rb similarity index 100% rename from quickstart/ruby/voice/example-1-make-call/outgoing_call.6.x.rb rename to quickstart/ruby/voice/example-1-make-call/outgoing_call.7.x.rb diff --git a/quickstart/ruby/voice/example-2-receive-call/respond_to_call.6.x.rb b/quickstart/ruby/voice/example-2-receive-call/respond_to_call.7.x.rb similarity index 100% rename from quickstart/ruby/voice/example-2-receive-call/respond_to_call.6.x.rb rename to quickstart/ruby/voice/example-2-receive-call/respond_to_call.7.x.rb diff --git a/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.6.x.rb b/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.7.x.rb similarity index 100% rename from rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.6.x.rb rename to rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.7.x.rb diff --git a/rest/access-tokens/ip-messaging-example/ip-messaging-example.6.x.rb b/rest/access-tokens/ip-messaging-example/ip-messaging-example.7.x.rb similarity index 100% rename from rest/access-tokens/ip-messaging-example/ip-messaging-example.6.x.rb rename to rest/access-tokens/ip-messaging-example/ip-messaging-example.7.x.rb diff --git a/rest/access-tokens/live-example/live-example.6.x.rb b/rest/access-tokens/live-example/live-example.7.x.rb similarity index 100% rename from rest/access-tokens/live-example/live-example.6.x.rb rename to rest/access-tokens/live-example/live-example.7.x.rb diff --git a/rest/access-tokens/sync-example/sync-example.6.x.rb b/rest/access-tokens/sync-example/sync-example.7.x.rb similarity index 100% rename from rest/access-tokens/sync-example/sync-example.6.x.rb rename to rest/access-tokens/sync-example/sync-example.7.x.rb diff --git a/rest/access-tokens/video-example/video-example.6.x.rb b/rest/access-tokens/video-example/video-example.7.x.rb similarity index 100% rename from rest/access-tokens/video-example/video-example.6.x.rb rename to rest/access-tokens/video-example/video-example.7.x.rb diff --git a/rest/access-tokens/voice-example/voice-example.6.x.rb b/rest/access-tokens/voice-example/voice-example.7.x.rb similarity index 100% rename from rest/access-tokens/voice-example/voice-example.6.x.rb rename to rest/access-tokens/voice-example/voice-example.7.x.rb diff --git a/rest/accounts/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/accounts/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/accounts/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/accounts/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/accounts/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/accounts/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/accounts/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/accounts/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/accounts/instance-post-example-2/instance-post-example-2.6.x.rb b/rest/accounts/instance-post-example-2/instance-post-example-2.7.x.rb similarity index 100% rename from rest/accounts/instance-post-example-2/instance-post-example-2.6.x.rb rename to rest/accounts/instance-post-example-2/instance-post-example-2.7.x.rb diff --git a/rest/accounts/instance-post-example-3/instance-post-example-3.6.x.rb b/rest/accounts/instance-post-example-3/instance-post-example-3.7.x.rb similarity index 100% rename from rest/accounts/instance-post-example-3/instance-post-example-3.6.x.rb rename to rest/accounts/instance-post-example-3/instance-post-example-3.7.x.rb diff --git a/rest/accounts/list-get-example-1/list-get-example-1.6.x.rb b/rest/accounts/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/accounts/list-get-example-1/list-get-example-1.6.x.rb rename to rest/accounts/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/accounts/list-get-example-2/list-get-example-2.6.x.rb b/rest/accounts/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/accounts/list-get-example-2/list-get-example-2.6.x.rb rename to rest/accounts/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/addresses/instance-create-example/instance-create-example.6.x.rb b/rest/addresses/instance-create-example/instance-create-example.7.x.rb similarity index 100% rename from rest/addresses/instance-create-example/instance-create-example.6.x.rb rename to rest/addresses/instance-create-example/instance-create-example.7.x.rb diff --git a/rest/addresses/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/addresses/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/addresses/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/addresses/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/addresses/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/addresses/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/addresses/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/addresses/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.6.x.rb b/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.7.x.rb similarity index 100% rename from rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.6.x.rb rename to rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.7.x.rb diff --git a/rest/addresses/list-get-example-1/list-get-example-1.6.x.rb b/rest/addresses/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/addresses/list-get-example-1/list-get-example-1.6.x.rb rename to rest/addresses/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/addresses/list-get-example-2/list-get-example-2.6.x.rb b/rest/addresses/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/addresses/list-get-example-2/list-get-example-2.6.x.rb rename to rest/addresses/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/addresses/list-post-example-1/list-post-example-1.6.x.rb b/rest/addresses/list-post-example-1/list-post-example-1.7.x.rb similarity index 100% rename from rest/addresses/list-post-example-1/list-post-example-1.6.x.rb rename to rest/addresses/list-post-example-1/list-post-example-1.7.x.rb diff --git a/rest/answering-machine-detection/outgoing-call/outgoing-call-1.6.x.rb b/rest/answering-machine-detection/outgoing-call/outgoing-call-1.7.x.rb similarity index 100% rename from rest/answering-machine-detection/outgoing-call/outgoing-call-1.6.x.rb rename to rest/answering-machine-detection/outgoing-call/outgoing-call-1.7.x.rb diff --git a/rest/applications/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/applications/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/applications/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/applications/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/applications/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/applications/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/applications/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/applications/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/applications/list-get-example-1/list-get-example-1.6.x.rb b/rest/applications/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/applications/list-get-example-1/list-get-example-1.6.x.rb rename to rest/applications/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/applications/list-get-example-2/list-get-example-2.6.x.rb b/rest/applications/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/applications/list-get-example-2/list-get-example-2.6.x.rb rename to rest/applications/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/applications/list-post-example-1/list-post-example-1.6.x.rb b/rest/applications/list-post-example-1/list-post-example-1.7.x.rb similarity index 100% rename from rest/applications/list-post-example-1/list-post-example-1.6.x.rb rename to rest/applications/list-post-example-1/list-post-example-1.7.x.rb diff --git a/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.6.x.rb b/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/authorized-connect-apps/list-get-example-1/list-get-example-1.6.x.rb rename to rest/authorized-connect-apps/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.6.x.rb b/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.6.x.rb rename to rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.7.x.rb diff --git a/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.6.x.rb b/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.6.x.rb rename to rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.7.x.rb diff --git a/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.6.x.rb b/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.6.x.rb rename to rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.7.x.rb diff --git a/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.6.x.rb b/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.6.x.rb rename to rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.7.x.rb diff --git a/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.6.x.rb b/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.6.x.rb rename to rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.7.x.rb diff --git a/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-6.6.x.rb b/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-6.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-6.6.x.rb rename to rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-6.7.x.rb diff --git a/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.6.x.rb b/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.6.x.rb rename to rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.7.x.rb diff --git a/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.6.x.rb b/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.6.x.rb rename to rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.7.x.rb diff --git a/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.6.x.rb b/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.7.x.rb similarity index 100% rename from rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.6.x.rb rename to rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.7.x.rb diff --git a/rest/available-phone-numbers/mobile-example/mobile-get-example-1.6.x.rb b/rest/available-phone-numbers/mobile-example/mobile-get-example-1.7.x.rb similarity index 100% rename from rest/available-phone-numbers/mobile-example/mobile-get-example-1.6.x.rb rename to rest/available-phone-numbers/mobile-example/mobile-get-example-1.7.x.rb diff --git a/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.6.x.rb b/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.7.x.rb similarity index 100% rename from rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.6.x.rb rename to rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.7.x.rb diff --git a/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.6.x.rb b/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.7.x.rb similarity index 100% rename from rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.6.x.rb rename to rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.7.x.rb diff --git a/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.6.x.rb b/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.7.x.rb similarity index 100% rename from rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.6.x.rb rename to rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.7.x.rb diff --git a/rest/call-feedback/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/call-feedback/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/call-feedback/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/call-feedback/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/call-feedback/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/call-feedback/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/call-feedback/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/call-feedback/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.6.x.rb b/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.7.x.rb similarity index 100% rename from rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.6.x.rb rename to rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.7.x.rb diff --git a/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.6.x.rb b/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.7.x.rb similarity index 100% rename from rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.6.x.rb rename to rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.7.x.rb diff --git a/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.6.x.rb b/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.7.x.rb similarity index 100% rename from rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.6.x.rb rename to rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.7.x.rb diff --git a/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.6.x.rb b/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.7.x.rb similarity index 100% rename from rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.6.x.rb rename to rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.7.x.rb diff --git a/rest/call/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/call/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/call/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/call/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/call/list-get-example-1/list-get-example-1.6.x.rb b/rest/call/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/call/list-get-example-1/list-get-example-1.6.x.rb rename to rest/call/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/call/list-get-example-2/list-get-example-2.6.x.rb b/rest/call/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/call/list-get-example-2/list-get-example-2.6.x.rb rename to rest/call/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/call/list-get-example-3/list-get-example-3.6.x.rb b/rest/call/list-get-example-3/list-get-example-3.7.x.rb similarity index 100% rename from rest/call/list-get-example-3/list-get-example-3.6.x.rb rename to rest/call/list-get-example-3/list-get-example-3.7.x.rb diff --git a/rest/call/list-get-example-4/list-get-example-4.6.x.rb b/rest/call/list-get-example-4/list-get-example-4.7.x.rb similarity index 100% rename from rest/call/list-get-example-4/list-get-example-4.6.x.rb rename to rest/call/list-get-example-4/list-get-example-4.7.x.rb diff --git a/rest/call/list-get-example-6/list-get-example-6.6.x.rb b/rest/call/list-get-example-6/list-get-example-6.7.x.rb similarity index 100% rename from rest/call/list-get-example-6/list-get-example-6.6.x.rb rename to rest/call/list-get-example-6/list-get-example-6.7.x.rb diff --git a/rest/call/list-get-example-7/list-get-example-7.6.x.rb b/rest/call/list-get-example-7/list-get-example-7.7.x.rb similarity index 100% rename from rest/call/list-get-example-7/list-get-example-7.6.x.rb rename to rest/call/list-get-example-7/list-get-example-7.7.x.rb diff --git a/rest/change-call-state/example-1/example-1.6.x.rb b/rest/change-call-state/example-1/example-1.7.x.rb similarity index 100% rename from rest/change-call-state/example-1/example-1.6.x.rb rename to rest/change-call-state/example-1/example-1.7.x.rb diff --git a/rest/change-call-state/list-get-example-2/list-get-example-2.6.x.rb b/rest/change-call-state/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/change-call-state/list-get-example-2/list-get-example-2.6.x.rb rename to rest/change-call-state/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/conference/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/conference/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/conference/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/conference/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/conference/list-get-example-1/list-get-example-1.6.x.rb b/rest/conference/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/conference/list-get-example-1/list-get-example-1.6.x.rb rename to rest/conference/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/conference/list-get-example-2/list-get-example-2.6.x.rb b/rest/conference/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/conference/list-get-example-2/list-get-example-2.6.x.rb rename to rest/conference/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/conference/list-get-example-3/list-get-example-3.6.x.rb b/rest/conference/list-get-example-3/list-get-example-3.7.x.rb similarity index 100% rename from rest/conference/list-get-example-3/list-get-example-3.6.x.rb rename to rest/conference/list-get-example-3/list-get-example-3.7.x.rb diff --git a/rest/conference/list-get-example-4/list-get-example-4.6.x.rb b/rest/conference/list-get-example-4/list-get-example-4.7.x.rb similarity index 100% rename from rest/conference/list-get-example-4/list-get-example-4.6.x.rb rename to rest/conference/list-get-example-4/list-get-example-4.7.x.rb diff --git a/rest/connect-apps/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/connect-apps/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/connect-apps/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/connect-apps/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/connect-apps/list-get-example-1/list-get-example-1.6.x.rb b/rest/connect-apps/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/connect-apps/list-get-example-1/list-get-example-1.6.x.rb rename to rest/connect-apps/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.6.x.rb b/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.6.x.rb rename to rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.6.x.rb b/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.6.x.rb rename to rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.6.x.rb b/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.7.x.rb similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.6.x.rb rename to rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.7.x.rb diff --git a/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.6.x.rb b/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.7.x.rb similarity index 100% rename from rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.6.x.rb rename to rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.7.x.rb diff --git a/rest/keys/instance-get-example/instance-get-example.6.x.rb b/rest/keys/instance-get-example/instance-get-example.7.x.rb similarity index 100% rename from rest/keys/instance-get-example/instance-get-example.6.x.rb rename to rest/keys/instance-get-example/instance-get-example.7.x.rb diff --git a/rest/keys/list-get-example/list-get-example.6.x.rb b/rest/keys/list-get-example/list-get-example.7.x.rb similarity index 100% rename from rest/keys/list-get-example/list-get-example.6.x.rb rename to rest/keys/list-get-example/list-get-example.7.x.rb diff --git a/rest/keys/list-post-example/list-post-example.6.x.rb b/rest/keys/list-post-example/list-post-example.7.x.rb similarity index 100% rename from rest/keys/list-post-example/list-post-example.6.x.rb rename to rest/keys/list-post-example/list-post-example.7.x.rb diff --git a/rest/keys/using-keys-example/example.6.x.rb b/rest/keys/using-keys-example/example.7.x.rb similarity index 100% rename from rest/keys/using-keys-example/example.6.x.rb rename to rest/keys/using-keys-example/example.7.x.rb diff --git a/rest/making-calls-sip/example-1/example-1.6.x.rb b/rest/making-calls-sip/example-1/example-1.7.x.rb similarity index 100% rename from rest/making-calls-sip/example-1/example-1.6.x.rb rename to rest/making-calls-sip/example-1/example-1.7.x.rb diff --git a/rest/making-calls-sip/example-2/example-2.6.x.rb b/rest/making-calls-sip/example-2/example-2.7.x.rb similarity index 100% rename from rest/making-calls-sip/example-2/example-2.6.x.rb rename to rest/making-calls-sip/example-2/example-2.7.x.rb diff --git a/rest/making-calls-sip/example-3/example-3.6.x.rb b/rest/making-calls-sip/example-3/example-3.7.x.rb similarity index 100% rename from rest/making-calls-sip/example-3/example-3.6.x.rb rename to rest/making-calls-sip/example-3/example-3.7.x.rb diff --git a/rest/making-calls/example-1/example-1.6.x.rb b/rest/making-calls/example-1/example-1.7.x.rb similarity index 100% rename from rest/making-calls/example-1/example-1.6.x.rb rename to rest/making-calls/example-1/example-1.7.x.rb diff --git a/rest/making-calls/example-2/example-2.6.x.rb b/rest/making-calls/example-2/example-2.7.x.rb similarity index 100% rename from rest/making-calls/example-2/example-2.6.x.rb rename to rest/making-calls/example-2/example-2.7.x.rb diff --git a/rest/making-calls/example-3/example-3.6.x.rb b/rest/making-calls/example-3/example-3.7.x.rb similarity index 100% rename from rest/making-calls/example-3/example-3.6.x.rb rename to rest/making-calls/example-3/example-3.7.x.rb diff --git a/rest/making-calls/example-4/example-4.6.x.rb b/rest/making-calls/example-4/example-4.7.x.rb similarity index 100% rename from rest/making-calls/example-4/example-4.6.x.rb rename to rest/making-calls/example-4/example-4.7.x.rb diff --git a/rest/media/instance-delete-example-1/instance-delete-example-1.6.x.rb b/rest/media/instance-delete-example-1/instance-delete-example-1.7.x.rb similarity index 100% rename from rest/media/instance-delete-example-1/instance-delete-example-1.6.x.rb rename to rest/media/instance-delete-example-1/instance-delete-example-1.7.x.rb diff --git a/rest/media/list-get-example-1/list-get-example-1.6.x.rb b/rest/media/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/media/list-get-example-1/list-get-example-1.6.x.rb rename to rest/media/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/member/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/member/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/member/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/member/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/member/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/member/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/member/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/member/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/member/instance-post-example-2/instance-post-example-2.6.x.rb b/rest/member/instance-post-example-2/instance-post-example-2.7.x.rb similarity index 100% rename from rest/member/instance-post-example-2/instance-post-example-2.6.x.rb rename to rest/member/instance-post-example-2/instance-post-example-2.7.x.rb diff --git a/rest/member/list-get-example-1/list-get-example-1.6.x.rb b/rest/member/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/member/list-get-example-1/list-get-example-1.6.x.rb rename to rest/member/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/message/instance-delete/example-1.6.x.rb b/rest/message/instance-delete/example-1.7.x.rb similarity index 100% rename from rest/message/instance-delete/example-1.6.x.rb rename to rest/message/instance-delete/example-1.7.x.rb diff --git a/rest/message/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/message/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/message/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/message/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/message/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/message/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/message/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/message/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/message/list-get-example-1/list-get-example-1.6.x.rb b/rest/message/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/message/list-get-example-1/list-get-example-1.6.x.rb rename to rest/message/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/message/list-get-example-2/list-get-example-2.6.x.rb b/rest/message/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/message/list-get-example-2/list-get-example-2.6.x.rb rename to rest/message/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/messages/feedback-confirm/feedback-confirm.6.x.rb b/rest/messages/feedback-confirm/feedback-confirm.7.x.rb similarity index 100% rename from rest/messages/feedback-confirm/feedback-confirm.6.x.rb rename to rest/messages/feedback-confirm/feedback-confirm.7.x.rb diff --git a/rest/messages/feedback-send-sms/feedback-send-sms.6.x.rb b/rest/messages/feedback-send-sms/feedback-send-sms.7.x.rb similarity index 100% rename from rest/messages/feedback-send-sms/feedback-send-sms.6.x.rb rename to rest/messages/feedback-send-sms/feedback-send-sms.7.x.rb diff --git a/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.6.x.rb b/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.7.x.rb similarity index 100% rename from rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.6.x.rb rename to rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.7.x.rb diff --git a/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.6.x.rb b/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.7.x.rb similarity index 100% rename from rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.6.x.rb rename to rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.7.x.rb diff --git a/rest/messages/generate-twiml-mms/generate-twiml-mms.6.x.rb b/rest/messages/generate-twiml-mms/generate-twiml-mms.7.x.rb similarity index 100% rename from rest/messages/generate-twiml-mms/generate-twiml-mms.6.x.rb rename to rest/messages/generate-twiml-mms/generate-twiml-mms.7.x.rb diff --git a/rest/messages/generate-twiml-sms-voice/example-1.6.x.rb b/rest/messages/generate-twiml-sms-voice/example-1.7.x.rb similarity index 100% rename from rest/messages/generate-twiml-sms-voice/example-1.6.x.rb rename to rest/messages/generate-twiml-sms-voice/example-1.7.x.rb diff --git a/rest/messages/generate-twiml-sms/generate-twiml-sms.6.x.rb b/rest/messages/generate-twiml-sms/generate-twiml-sms.7.x.rb similarity index 100% rename from rest/messages/generate-twiml-sms/generate-twiml-sms.6.x.rb rename to rest/messages/generate-twiml-sms/generate-twiml-sms.7.x.rb diff --git a/rest/messages/send-message/example-1.6.x.rb b/rest/messages/send-message/example-1.7.x.rb similarity index 100% rename from rest/messages/send-message/example-1.6.x.rb rename to rest/messages/send-message/example-1.7.x.rb diff --git a/rest/messages/send-messages-copilot/send-messages-copilot.6.x.rb b/rest/messages/send-messages-copilot/send-messages-copilot.7.x.rb similarity index 100% rename from rest/messages/send-messages-copilot/send-messages-copilot.6.x.rb rename to rest/messages/send-messages-copilot/send-messages-copilot.7.x.rb diff --git a/rest/messages/send-sms-callback/send-sms-callback.6.x.rb b/rest/messages/send-sms-callback/send-sms-callback.7.x.rb similarity index 100% rename from rest/messages/send-sms-callback/send-sms-callback.6.x.rb rename to rest/messages/send-sms-callback/send-sms-callback.7.x.rb diff --git a/rest/messages/send-sms/send-sms.6.x.rb b/rest/messages/send-sms/send-sms.7.x.rb similarity index 100% rename from rest/messages/send-sms/send-sms.6.x.rb rename to rest/messages/send-sms/send-sms.7.x.rb diff --git a/rest/messages/sms-conversation-tracking/sms-conversation-tracking.6.x.rb b/rest/messages/sms-conversation-tracking/sms-conversation-tracking.7.x.rb similarity index 100% rename from rest/messages/sms-conversation-tracking/sms-conversation-tracking.6.x.rb rename to rest/messages/sms-conversation-tracking/sms-conversation-tracking.7.x.rb diff --git a/rest/messages/sms-handle-callback/sms-handle-callback.6.x.rb b/rest/messages/sms-handle-callback/sms-handle-callback.7.x.rb similarity index 100% rename from rest/messages/sms-handle-callback/sms-handle-callback.6.x.rb rename to rest/messages/sms-handle-callback/sms-handle-callback.7.x.rb diff --git a/rest/notification/instance-delete-examples/instance-delete-examples.6.x.rb b/rest/notification/instance-delete-examples/instance-delete-examples.7.x.rb similarity index 100% rename from rest/notification/instance-delete-examples/instance-delete-examples.6.x.rb rename to rest/notification/instance-delete-examples/instance-delete-examples.7.x.rb diff --git a/rest/notification/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/notification/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/notification/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/notification/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/notification/list-get-example-1/list-get-example-1.6.x.rb b/rest/notification/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/notification/list-get-example-1/list-get-example-1.6.x.rb rename to rest/notification/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/notification/list-get-example-2/list-get-example-2.6.x.rb b/rest/notification/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/notification/list-get-example-2/list-get-example-2.6.x.rb rename to rest/notification/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/notification/list-get-example-3/list-get-example-3.6.x.rb b/rest/notification/list-get-example-3/list-get-example-3.7.x.rb similarity index 100% rename from rest/notification/list-get-example-3/list-get-example-3.6.x.rb rename to rest/notification/list-get-example-3/list-get-example-3.7.x.rb diff --git a/rest/notification/list-get-example-4/list-get-example-4.6.x.rb b/rest/notification/list-get-example-4/list-get-example-4.7.x.rb similarity index 100% rename from rest/notification/list-get-example-4/list-get-example-4.6.x.rb rename to rest/notification/list-get-example-4/list-get-example-4.7.x.rb diff --git a/rest/outgoing-caller-ids/instance-delete/instance-delete.6.x.rb b/rest/outgoing-caller-ids/instance-delete/instance-delete.7.x.rb similarity index 100% rename from rest/outgoing-caller-ids/instance-delete/instance-delete.6.x.rb rename to rest/outgoing-caller-ids/instance-delete/instance-delete.7.x.rb diff --git a/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.6.x.rb b/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.6.x.rb rename to rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.6.x.rb b/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.6.x.rb rename to rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.6.x.rb b/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.7.x.rb similarity index 100% rename from rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.6.x.rb rename to rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.7.x.rb diff --git a/rest/participant/instance-delete-example-1/instance-delete-example-1.6.x.rb b/rest/participant/instance-delete-example-1/instance-delete-example-1.7.x.rb similarity index 100% rename from rest/participant/instance-delete-example-1/instance-delete-example-1.6.x.rb rename to rest/participant/instance-delete-example-1/instance-delete-example-1.7.x.rb diff --git a/rest/participant/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/participant/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/participant/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/participant/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/participant/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/participant/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/participant/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/participant/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/participant/instance-post-example-2/instance-post-example-2.6.x.rb b/rest/participant/instance-post-example-2/instance-post-example-2.7.x.rb similarity index 100% rename from rest/participant/instance-post-example-2/instance-post-example-2.6.x.rb rename to rest/participant/instance-post-example-2/instance-post-example-2.7.x.rb diff --git a/rest/participant/list-get-example-1/list-get-example-1.6.x.rb b/rest/participant/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/participant/list-get-example-1/list-get-example-1.6.x.rb rename to rest/participant/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/participant/list-post-example-1/list-post-example-1.6.x.rb b/rest/participant/list-post-example-1/list-post-example-1.7.x.rb similarity index 100% rename from rest/participant/list-post-example-1/list-post-example-1.6.x.rb rename to rest/participant/list-post-example-1/list-post-example-1.7.x.rb diff --git a/rest/queue/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/queue/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/queue/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/queue/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/queue/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/queue/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/queue/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/queue/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/queue/list-get-example-1/list-get-example-1.6.x.rb b/rest/queue/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/queue/list-get-example-1/list-get-example-1.6.x.rb rename to rest/queue/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/queue/list-post-example-1/list-post-example-1.6.x.rb b/rest/queue/list-post-example-1/list-post-example-1.7.x.rb similarity index 100% rename from rest/queue/list-post-example-1/list-post-example-1.6.x.rb rename to rest/queue/list-post-example-1/list-post-example-1.7.x.rb diff --git a/rest/recording/get-recording-xml/get-recording-xml.6.x.rb b/rest/recording/get-recording-xml/get-recording-xml.7.x.rb similarity index 100% rename from rest/recording/get-recording-xml/get-recording-xml.6.x.rb rename to rest/recording/get-recording-xml/get-recording-xml.7.x.rb diff --git a/rest/recording/instance-delete-examples/instance-delete-examples.6.x.rb b/rest/recording/instance-delete-examples/instance-delete-examples.7.x.rb similarity index 100% rename from rest/recording/instance-delete-examples/instance-delete-examples.6.x.rb rename to rest/recording/instance-delete-examples/instance-delete-examples.7.x.rb diff --git a/rest/recording/list-get-example-1/list-get-example-1.6.x.rb b/rest/recording/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/recording/list-get-example-1/list-get-example-1.6.x.rb rename to rest/recording/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/recording/list-get-example-2/list-get-example-2.6.x.rb b/rest/recording/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/recording/list-get-example-2/list-get-example-2.6.x.rb rename to rest/recording/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/recording/list-get-example-3/list-get-example-3.6.x.rb b/rest/recording/list-get-example-3/list-get-example-3.7.x.rb similarity index 100% rename from rest/recording/list-get-example-3/list-get-example-3.6.x.rb rename to rest/recording/list-get-example-3/list-get-example-3.7.x.rb diff --git a/rest/recording/list-get-example-4/list-get-example-4.6.x.rb b/rest/recording/list-get-example-4/list-get-example-4.7.x.rb similarity index 100% rename from rest/recording/list-get-example-4/list-get-example-4.6.x.rb rename to rest/recording/list-get-example-4/list-get-example-4.7.x.rb diff --git a/rest/recording/list-get-example-5/list-get-example-6.6.x.rb b/rest/recording/list-get-example-5/list-get-example-6.7.x.rb similarity index 100% rename from rest/recording/list-get-example-5/list-get-example-6.6.x.rb rename to rest/recording/list-get-example-5/list-get-example-6.7.x.rb diff --git a/rest/recording/list-recording-transcriptions/list-recording-transcriptions-6.x.rb b/rest/recording/list-recording-transcriptions/list-recording-transcriptions-7.x.rb similarity index 100% rename from rest/recording/list-recording-transcriptions/list-recording-transcriptions-6.x.rb rename to rest/recording/list-recording-transcriptions/list-recording-transcriptions-7.x.rb diff --git a/rest/sending-messages/example-1/example-1.6.x.rb b/rest/sending-messages/example-1/example-1.7.x.rb similarity index 100% rename from rest/sending-messages/example-1/example-1.6.x.rb rename to rest/sending-messages/example-1/example-1.7.x.rb diff --git a/rest/short-codes/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/short-codes/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/short-codes/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/short-codes/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/short-codes/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/short-codes/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/short-codes/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/short-codes/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/short-codes/list-get-example-1/list-get-example-1.6.x.rb b/rest/short-codes/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/short-codes/list-get-example-1/list-get-example-1.6.x.rb rename to rest/short-codes/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/short-codes/list-get-example-2/list-get-example-2.6.x.rb b/rest/short-codes/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/short-codes/list-get-example-2/list-get-example-2.6.x.rb rename to rest/short-codes/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/short-codes/list-get-example-3/list-get-example-3.6.x.rb b/rest/short-codes/list-get-example-3/list-get-example-3.7.x.rb similarity index 100% rename from rest/short-codes/list-get-example-3/list-get-example-3.6.x.rb rename to rest/short-codes/list-get-example-3/list-get-example-3.7.x.rb diff --git a/rest/sip-in/associate-control-domain/associate-control-domain.6.x.rb b/rest/sip-in/associate-control-domain/associate-control-domain.7.x.rb similarity index 100% rename from rest/sip-in/associate-control-domain/associate-control-domain.6.x.rb rename to rest/sip-in/associate-control-domain/associate-control-domain.7.x.rb diff --git a/rest/sip-in/create-acl-address/create-acl-address.6.x.rb b/rest/sip-in/create-acl-address/create-acl-address.7.x.rb similarity index 100% rename from rest/sip-in/create-acl-address/create-acl-address.6.x.rb rename to rest/sip-in/create-acl-address/create-acl-address.7.x.rb diff --git a/rest/sip-in/create-credential-list/create-credential-list.6.x.rb b/rest/sip-in/create-credential-list/create-credential-list.7.x.rb similarity index 100% rename from rest/sip-in/create-credential-list/create-credential-list.6.x.rb rename to rest/sip-in/create-credential-list/create-credential-list.7.x.rb diff --git a/rest/sip-in/create-credential/create-credential.6.x.rb b/rest/sip-in/create-credential/create-credential.7.x.rb similarity index 100% rename from rest/sip-in/create-credential/create-credential.6.x.rb rename to rest/sip-in/create-credential/create-credential.7.x.rb diff --git a/rest/sip-in/create-domain/create-domain.6.x.rb b/rest/sip-in/create-domain/create-domain.7.x.rb similarity index 100% rename from rest/sip-in/create-domain/create-domain.6.x.rb rename to rest/sip-in/create-domain/create-domain.7.x.rb diff --git a/rest/sip-in/create-ip-acl/create-ip-acl.6.x.rb b/rest/sip-in/create-ip-acl/create-ip-acl.7.x.rb similarity index 100% rename from rest/sip-in/create-ip-acl/create-ip-acl.6.x.rb rename to rest/sip-in/create-ip-acl/create-ip-acl.7.x.rb diff --git a/rest/sip-in/delete-access-mapping-old/delete-access-mapping.6.x.rb b/rest/sip-in/delete-access-mapping-old/delete-access-mapping.7.x.rb similarity index 100% rename from rest/sip-in/delete-access-mapping-old/delete-access-mapping.6.x.rb rename to rest/sip-in/delete-access-mapping-old/delete-access-mapping.7.x.rb diff --git a/rest/sip-in/delete-access-mapping/delete-access-mapping.6.x.rb b/rest/sip-in/delete-access-mapping/delete-access-mapping.7.x.rb similarity index 100% rename from rest/sip-in/delete-access-mapping/delete-access-mapping.6.x.rb rename to rest/sip-in/delete-access-mapping/delete-access-mapping.7.x.rb diff --git a/rest/sip-in/delete-address-instance/delete-address-instance.6.x.rb b/rest/sip-in/delete-address-instance/delete-address-instance.7.x.rb similarity index 100% rename from rest/sip-in/delete-address-instance/delete-address-instance.6.x.rb rename to rest/sip-in/delete-address-instance/delete-address-instance.7.x.rb diff --git a/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.6.x.rb b/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.7.x.rb similarity index 100% rename from rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.6.x.rb rename to rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.7.x.rb diff --git a/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.6.x.rb b/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.7.x.rb similarity index 100% rename from rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.6.x.rb rename to rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.7.x.rb diff --git a/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.6.x.rb b/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.7.x.rb similarity index 100% rename from rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.6.x.rb rename to rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.7.x.rb diff --git a/rest/sip-in/delete-credential/delete-credential.6.x.rb b/rest/sip-in/delete-credential/delete-credential.7.x.rb similarity index 100% rename from rest/sip-in/delete-credential/delete-credential.6.x.rb rename to rest/sip-in/delete-credential/delete-credential.7.x.rb diff --git a/rest/sip-in/delete-domain-instance/delete-domain-instance.6.x.rb b/rest/sip-in/delete-domain-instance/delete-domain-instance.7.x.rb similarity index 100% rename from rest/sip-in/delete-domain-instance/delete-domain-instance.6.x.rb rename to rest/sip-in/delete-domain-instance/delete-domain-instance.7.x.rb diff --git a/rest/sip-in/delete-ip-acl/delete-ip-acl.6.x.rb b/rest/sip-in/delete-ip-acl/delete-ip-acl.7.x.rb similarity index 100% rename from rest/sip-in/delete-ip-acl/delete-ip-acl.6.x.rb rename to rest/sip-in/delete-ip-acl/delete-ip-acl.7.x.rb diff --git a/rest/sip-in/get-acl-addresses/get-acl-addresses.6.x.rb b/rest/sip-in/get-acl-addresses/get-acl-addresses.7.x.rb similarity index 100% rename from rest/sip-in/get-acl-addresses/get-acl-addresses.6.x.rb rename to rest/sip-in/get-acl-addresses/get-acl-addresses.7.x.rb diff --git a/rest/sip-in/get-acl-list/get-acl-list.6.x.rb b/rest/sip-in/get-acl-list/get-acl-list.7.x.rb similarity index 100% rename from rest/sip-in/get-acl-list/get-acl-list.6.x.rb rename to rest/sip-in/get-acl-list/get-acl-list.7.x.rb diff --git a/rest/sip-in/get-acl-lists/get-acl-lists.6.x.rb b/rest/sip-in/get-acl-lists/get-acl-lists.7.x.rb similarity index 100% rename from rest/sip-in/get-acl-lists/get-acl-lists.6.x.rb rename to rest/sip-in/get-acl-lists/get-acl-lists.7.x.rb diff --git a/rest/sip-in/get-address-instance/get-address-instance.6.x.rb b/rest/sip-in/get-address-instance/get-address-instance.7.x.rb similarity index 100% rename from rest/sip-in/get-address-instance/get-address-instance.6.x.rb rename to rest/sip-in/get-address-instance/get-address-instance.7.x.rb diff --git a/rest/sip-in/get-credential-list-instance/get-credential-list-instance.6.x.rb b/rest/sip-in/get-credential-list-instance/get-credential-list-instance.7.x.rb similarity index 100% rename from rest/sip-in/get-credential-list-instance/get-credential-list-instance.6.x.rb rename to rest/sip-in/get-credential-list-instance/get-credential-list-instance.7.x.rb diff --git a/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.6.x.rb b/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.7.x.rb similarity index 100% rename from rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.6.x.rb rename to rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.7.x.rb diff --git a/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.6.x.rb b/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.7.x.rb similarity index 100% rename from rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.6.x.rb rename to rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.7.x.rb diff --git a/rest/sip-in/get-credential-lists/get-credential-lists.6.x.rb b/rest/sip-in/get-credential-lists/get-credential-lists.7.x.rb similarity index 100% rename from rest/sip-in/get-credential-lists/get-credential-lists.6.x.rb rename to rest/sip-in/get-credential-lists/get-credential-lists.7.x.rb diff --git a/rest/sip-in/get-credential/get-credential.6.x.rb b/rest/sip-in/get-credential/get-credential.7.x.rb similarity index 100% rename from rest/sip-in/get-credential/get-credential.6.x.rb rename to rest/sip-in/get-credential/get-credential.7.x.rb diff --git a/rest/sip-in/get-domain-instance/get-domain-instance.6.x.rb b/rest/sip-in/get-domain-instance/get-domain-instance.7.x.rb similarity index 100% rename from rest/sip-in/get-domain-instance/get-domain-instance.6.x.rb rename to rest/sip-in/get-domain-instance/get-domain-instance.7.x.rb diff --git a/rest/sip-in/get-domain-mappings/get-domain-mappings.6.x.rb b/rest/sip-in/get-domain-mappings/get-domain-mappings.7.x.rb similarity index 100% rename from rest/sip-in/get-domain-mappings/get-domain-mappings.6.x.rb rename to rest/sip-in/get-domain-mappings/get-domain-mappings.7.x.rb diff --git a/rest/sip-in/get-domains/get-domains.6.x.rb b/rest/sip-in/get-domains/get-domains.7.x.rb similarity index 100% rename from rest/sip-in/get-domains/get-domains.6.x.rb rename to rest/sip-in/get-domains/get-domains.7.x.rb diff --git a/rest/sip-in/get-ip-acls/get-ip-acls.6.x.rb b/rest/sip-in/get-ip-acls/get-ip-acls.7.x.rb similarity index 100% rename from rest/sip-in/get-ip-acls/get-ip-acls.6.x.rb rename to rest/sip-in/get-ip-acls/get-ip-acls.7.x.rb diff --git a/rest/sip-in/get-mappings-instance-old/get-mappings-instance.6.x.rb b/rest/sip-in/get-mappings-instance-old/get-mappings-instance.7.x.rb similarity index 100% rename from rest/sip-in/get-mappings-instance-old/get-mappings-instance.6.x.rb rename to rest/sip-in/get-mappings-instance-old/get-mappings-instance.7.x.rb diff --git a/rest/sip-in/get-mappings-instance/get-mappings-instance.6.x.rb b/rest/sip-in/get-mappings-instance/get-mappings-instance.7.x.rb similarity index 100% rename from rest/sip-in/get-mappings-instance/get-mappings-instance.6.x.rb rename to rest/sip-in/get-mappings-instance/get-mappings-instance.7.x.rb diff --git a/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.6.x.rb b/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.7.x.rb similarity index 100% rename from rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.6.x.rb rename to rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.7.x.rb diff --git a/rest/sip-in/map-credential-list-domain/map-credential-list-domain.6.x.rb b/rest/sip-in/map-credential-list-domain/map-credential-list-domain.7.x.rb similarity index 100% rename from rest/sip-in/map-credential-list-domain/map-credential-list-domain.6.x.rb rename to rest/sip-in/map-credential-list-domain/map-credential-list-domain.7.x.rb diff --git a/rest/sip-in/map-list-domain-old/map-list-domain.6.x.rb b/rest/sip-in/map-list-domain-old/map-list-domain.7.x.rb similarity index 100% rename from rest/sip-in/map-list-domain-old/map-list-domain.6.x.rb rename to rest/sip-in/map-list-domain-old/map-list-domain.7.x.rb diff --git a/rest/sip-in/map-list-domain/map-list-domain.6.x.rb b/rest/sip-in/map-list-domain/map-list-domain.7.x.rb similarity index 100% rename from rest/sip-in/map-list-domain/map-list-domain.6.x.rb rename to rest/sip-in/map-list-domain/map-list-domain.7.x.rb diff --git a/rest/sip-in/update-address-instance/update-address-instance.6.x.rb b/rest/sip-in/update-address-instance/update-address-instance.7.x.rb similarity index 100% rename from rest/sip-in/update-address-instance/update-address-instance.6.x.rb rename to rest/sip-in/update-address-instance/update-address-instance.7.x.rb diff --git a/rest/sip-in/update-credential-list-instance/update-credential-list-instance.6.x.rb b/rest/sip-in/update-credential-list-instance/update-credential-list-instance.7.x.rb similarity index 100% rename from rest/sip-in/update-credential-list-instance/update-credential-list-instance.6.x.rb rename to rest/sip-in/update-credential-list-instance/update-credential-list-instance.7.x.rb diff --git a/rest/sip-in/update-credential/update-credential.6.x.rb b/rest/sip-in/update-credential/update-credential.7.x.rb similarity index 100% rename from rest/sip-in/update-credential/update-credential.6.x.rb rename to rest/sip-in/update-credential/update-credential.7.x.rb diff --git a/rest/sip-in/update-domain-instance/update-domain-instance.6.x.rb b/rest/sip-in/update-domain-instance/update-domain-instance.7.x.rb similarity index 100% rename from rest/sip-in/update-domain-instance/update-domain-instance.6.x.rb rename to rest/sip-in/update-domain-instance/update-domain-instance.7.x.rb diff --git a/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.6.x.rb b/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.7.x.rb similarity index 100% rename from rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.6.x.rb rename to rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.7.x.rb diff --git a/rest/sip/example-1/example-1.6.x.rb b/rest/sip/example-1/example-1.7.x.rb similarity index 100% rename from rest/sip/example-1/example-1.6.x.rb rename to rest/sip/example-1/example-1.7.x.rb diff --git a/rest/sip/example-2/example-2.6.x.rb b/rest/sip/example-2/example-2.7.x.rb similarity index 100% rename from rest/sip/example-2/example-2.6.x.rb rename to rest/sip/example-2/example-2.7.x.rb diff --git a/rest/sip/example-3/example-3.6.x.rb b/rest/sip/example-3/example-3.7.x.rb similarity index 100% rename from rest/sip/example-3/example-3.6.x.rb rename to rest/sip/example-3/example-3.7.x.rb diff --git a/rest/sms/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/sms/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/sms/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/sms/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/sms/list-get-example-1/list-get-example-1.6.x.rb b/rest/sms/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/sms/list-get-example-1/list-get-example-1.6.x.rb rename to rest/sms/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/subaccounts/billing-example/subaccount-billing.6.x.rb b/rest/subaccounts/billing-example/subaccount-billing.7.x.rb similarity index 100% rename from rest/subaccounts/billing-example/subaccount-billing.6.x.rb rename to rest/subaccounts/billing-example/subaccount-billing.7.x.rb diff --git a/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.6.x.rb b/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.7.x.rb similarity index 100% rename from rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.6.x.rb rename to rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.7.x.rb diff --git a/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.6.x.rb b/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.7.x.rb similarity index 100% rename from rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.6.x.rb rename to rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.7.x.rb diff --git a/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.6.x.rb b/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.7.x.rb similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.6.x.rb rename to rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.7.x.rb diff --git a/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.6.x.rb b/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.7.x.rb similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.6.x.rb rename to rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.7.x.rb diff --git a/rest/subaccounts/voice-example/subaccount-call.6.x.rb b/rest/subaccounts/voice-example/subaccount-call.7.x.rb similarity index 100% rename from rest/subaccounts/voice-example/subaccount-call.6.x.rb rename to rest/subaccounts/voice-example/subaccount-call.7.x.rb diff --git a/rest/taskrouter/activities/instance/delete/example-1/example-1.6.x.rb b/rest/taskrouter/activities/instance/delete/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/activities/instance/delete/example-1/example-1.6.x.rb rename to rest/taskrouter/activities/instance/delete/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/activities/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/activities/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/activities/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/activities/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/activities/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/activities/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/activities/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/activities/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/activities/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/activities/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/activities/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/activities/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/activities/list/post/example-1/example-1.6.x.rb b/rest/taskrouter/activities/list/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/activities/list/post/example-1/example-1.6.x.rb rename to rest/taskrouter/activities/list/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/events/example-1/example-1.6.x.rb b/rest/taskrouter/events/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/events/example-1/example-1.6.x.rb rename to rest/taskrouter/events/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/jwts/taskqueue/example-1/example-1.6.x.rb b/rest/taskrouter/jwts/taskqueue/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/jwts/taskqueue/example-1/example-1.6.x.rb rename to rest/taskrouter/jwts/taskqueue/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/jwts/worker/example-1/example-1.6.x.rb b/rest/taskrouter/jwts/worker/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/jwts/worker/example-1/example-1.6.x.rb rename to rest/taskrouter/jwts/worker/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/jwts/workspace/example-1/example-1.6.x.rb b/rest/taskrouter/jwts/workspace/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/jwts/workspace/example-1/example-1.6.x.rb rename to rest/taskrouter/jwts/workspace/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/reservations/call/example-1.6.x.rb b/rest/taskrouter/reservations/call/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/reservations/call/example-1.6.x.rb rename to rest/taskrouter/reservations/call/example-1.7.x.rb diff --git a/rest/taskrouter/reservations/conference/conference.6.x.rb b/rest/taskrouter/reservations/conference/conference.7.x.rb similarity index 100% rename from rest/taskrouter/reservations/conference/conference.6.x.rb rename to rest/taskrouter/reservations/conference/conference.7.x.rb diff --git a/rest/taskrouter/reservations/dequeue/example-1.6.x.rb b/rest/taskrouter/reservations/dequeue/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/reservations/dequeue/example-1.6.x.rb rename to rest/taskrouter/reservations/dequeue/example-1.7.x.rb diff --git a/rest/taskrouter/reservations/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/reservations/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/reservations/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/reservations/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/reservations/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/reservations/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/reservations/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/reservations/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/reservations/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/reservations/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/reservations/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/reservations/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/reservations/redirect/redirect.6.x.rb b/rest/taskrouter/reservations/redirect/redirect.7.x.rb similarity index 100% rename from rest/taskrouter/reservations/redirect/redirect.6.x.rb rename to rest/taskrouter/reservations/redirect/redirect.7.x.rb diff --git a/rest/taskrouter/reservations/reject/example-1.6.x.rb b/rest/taskrouter/reservations/reject/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/reservations/reject/example-1.6.x.rb rename to rest/taskrouter/reservations/reject/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/taskqueue/cumulative/example-1.6.x.rb b/rest/taskrouter/statistics/taskqueue/cumulative/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/taskqueue/cumulative/example-1.6.x.rb rename to rest/taskrouter/statistics/taskqueue/cumulative/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/taskqueue/example-1/example-1.6.x.rb b/rest/taskrouter/statistics/taskqueue/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/taskqueue/example-1/example-1.6.x.rb rename to rest/taskrouter/statistics/taskqueue/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/taskqueue/realtime/example-1.6.x.rb b/rest/taskrouter/statistics/taskqueue/realtime/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/taskqueue/realtime/example-1.6.x.rb rename to rest/taskrouter/statistics/taskqueue/realtime/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/worker/example-1/example-1.6.x.rb b/rest/taskrouter/statistics/worker/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/worker/example-1/example-1.6.x.rb rename to rest/taskrouter/statistics/worker/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workers/cumulative/example-1.6.x.rb b/rest/taskrouter/statistics/workers/cumulative/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workers/cumulative/example-1.6.x.rb rename to rest/taskrouter/statistics/workers/cumulative/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workers/example-1/example-1.6.x.rb b/rest/taskrouter/statistics/workers/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workers/example-1/example-1.6.x.rb rename to rest/taskrouter/statistics/workers/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workers/realtime/example-1.6.x.rb b/rest/taskrouter/statistics/workers/realtime/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workers/realtime/example-1.6.x.rb rename to rest/taskrouter/statistics/workers/realtime/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workflow/cumulative/example-1.6.x.rb b/rest/taskrouter/statistics/workflow/cumulative/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workflow/cumulative/example-1.6.x.rb rename to rest/taskrouter/statistics/workflow/cumulative/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workflow/example-1/example-1.6.x.rb b/rest/taskrouter/statistics/workflow/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workflow/example-1/example-1.6.x.rb rename to rest/taskrouter/statistics/workflow/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workflow/realtime/example-1.6.x.rb b/rest/taskrouter/statistics/workflow/realtime/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workflow/realtime/example-1.6.x.rb rename to rest/taskrouter/statistics/workflow/realtime/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workspace/cumulative/example-1.6.x.rb b/rest/taskrouter/statistics/workspace/cumulative/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workspace/cumulative/example-1.6.x.rb rename to rest/taskrouter/statistics/workspace/cumulative/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workspace/example-1/example-1.6.x.rb b/rest/taskrouter/statistics/workspace/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workspace/example-1/example-1.6.x.rb rename to rest/taskrouter/statistics/workspace/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/statistics/workspace/realtime/example-1.6.x.rb b/rest/taskrouter/statistics/workspace/realtime/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/statistics/workspace/realtime/example-1.6.x.rb rename to rest/taskrouter/statistics/workspace/realtime/example-1.7.x.rb diff --git a/rest/taskrouter/taskchannels/instance/delete/example-1/example-1.6.x.rb b/rest/taskrouter/taskchannels/instance/delete/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskchannels/instance/delete/example-1/example-1.6.x.rb rename to rest/taskrouter/taskchannels/instance/delete/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskchannels/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/taskchannels/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskchannels/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/taskchannels/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskchannels/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/taskchannels/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskchannels/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/taskchannels/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskchannels/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/taskchannels/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskchannels/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/taskchannels/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskchannels/list/post/example-1/example-1.6.x.rb b/rest/taskrouter/taskchannels/list/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskchannels/list/post/example-1/example-1.6.x.rb rename to rest/taskrouter/taskchannels/list/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.6.x.rb b/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskqueues/instance/delete/example-1/example-1.6.x.rb rename to rest/taskrouter/taskqueues/instance/delete/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskqueues/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/taskqueues/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskqueues/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/taskqueues/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskqueues/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/taskqueues/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskqueues/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/taskqueues/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskqueues/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/taskqueues/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskqueues/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/taskqueues/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/taskqueues/list/post/example-1/example-1.6.x.rb b/rest/taskrouter/taskqueues/list/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/taskqueues/list/post/example-1/example-1.6.x.rb rename to rest/taskrouter/taskqueues/list/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/tasks/instance/delete/example-1/example-1.6.x.rb b/rest/taskrouter/tasks/instance/delete/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/tasks/instance/delete/example-1/example-1.6.x.rb rename to rest/taskrouter/tasks/instance/delete/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/tasks/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/tasks/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/tasks/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/tasks/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/tasks/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/tasks/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/tasks/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/tasks/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/tasks/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/tasks/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/tasks/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/tasks/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/tasks/list/get/example-2/example-2.6.x.rb b/rest/taskrouter/tasks/list/get/example-2/example-2.7.x.rb similarity index 100% rename from rest/taskrouter/tasks/list/get/example-2/example-2.6.x.rb rename to rest/taskrouter/tasks/list/get/example-2/example-2.7.x.rb diff --git a/rest/taskrouter/tasks/list/post/example-1/example-1.6.x.rb b/rest/taskrouter/tasks/list/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/tasks/list/post/example-1/example-1.6.x.rb rename to rest/taskrouter/tasks/list/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/twiml/example1/example/example.6.x.rb b/rest/taskrouter/twiml/example1/example/example.7.x.rb similarity index 100% rename from rest/taskrouter/twiml/example1/example/example.6.x.rb rename to rest/taskrouter/twiml/example1/example/example.7.x.rb diff --git a/rest/taskrouter/twiml/example2/example/example.6.x.rb b/rest/taskrouter/twiml/example2/example/example.7.x.rb similarity index 100% rename from rest/taskrouter/twiml/example2/example/example.6.x.rb rename to rest/taskrouter/twiml/example2/example/example.7.x.rb diff --git a/rest/taskrouter/twiml/example3/example/example.6.x.rb b/rest/taskrouter/twiml/example3/example/example.7.x.rb similarity index 100% rename from rest/taskrouter/twiml/example3/example/example.6.x.rb rename to rest/taskrouter/twiml/example3/example/example.7.x.rb diff --git a/rest/taskrouter/twiml/example4/example/example.6.x.rb b/rest/taskrouter/twiml/example4/example/example.7.x.rb similarity index 100% rename from rest/taskrouter/twiml/example4/example/example.6.x.rb rename to rest/taskrouter/twiml/example4/example/example.7.x.rb diff --git a/rest/taskrouter/worker-channels/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/worker-channels/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/worker-channels/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/worker-channels/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/worker-channels/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/worker-channels/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/worker-channels/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/worker-channels/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/worker-channels/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/worker-channels/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/worker-channels/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/worker-channels/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/worker-reservations/call/example-1.6.x.rb b/rest/taskrouter/worker-reservations/call/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/worker-reservations/call/example-1.6.x.rb rename to rest/taskrouter/worker-reservations/call/example-1.7.x.rb diff --git a/rest/taskrouter/worker-reservations/dequeue/example-1.6.x.rb b/rest/taskrouter/worker-reservations/dequeue/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/worker-reservations/dequeue/example-1.6.x.rb rename to rest/taskrouter/worker-reservations/dequeue/example-1.7.x.rb diff --git a/rest/taskrouter/worker-reservations/instance-get-example1/example-1.6.x.rb b/rest/taskrouter/worker-reservations/instance-get-example1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/worker-reservations/instance-get-example1/example-1.6.x.rb rename to rest/taskrouter/worker-reservations/instance-get-example1/example-1.7.x.rb diff --git a/rest/taskrouter/worker-reservations/list-get-example1/example-1.6.x.rb b/rest/taskrouter/worker-reservations/list-get-example1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/worker-reservations/list-get-example1/example-1.6.x.rb rename to rest/taskrouter/worker-reservations/list-get-example1/example-1.7.x.rb diff --git a/rest/taskrouter/worker-reservations/reject/example-1.6.x.rb b/rest/taskrouter/worker-reservations/reject/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/worker-reservations/reject/example-1.6.x.rb rename to rest/taskrouter/worker-reservations/reject/example-1.7.x.rb diff --git a/rest/taskrouter/workers/instance/delete/example-1/example-1.6.x.rb b/rest/taskrouter/workers/instance/delete/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workers/instance/delete/example-1/example-1.6.x.rb rename to rest/taskrouter/workers/instance/delete/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workers/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/workers/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workers/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/workers/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workers/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/workers/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workers/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/workers/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workers/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/workers/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workers/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/workers/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workers/list/get/example-2/example-2.6.x.rb b/rest/taskrouter/workers/list/get/example-2/example-2.7.x.rb similarity index 100% rename from rest/taskrouter/workers/list/get/example-2/example-2.6.x.rb rename to rest/taskrouter/workers/list/get/example-2/example-2.7.x.rb diff --git a/rest/taskrouter/workers/list/post/example-1/example-1.6.x.rb b/rest/taskrouter/workers/list/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workers/list/post/example-1/example-1.6.x.rb rename to rest/taskrouter/workers/list/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workflows/instance/delete/example-1/example-1.6.x.rb b/rest/taskrouter/workflows/instance/delete/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workflows/instance/delete/example-1/example-1.6.x.rb rename to rest/taskrouter/workflows/instance/delete/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workflows/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/workflows/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workflows/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/workflows/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workflows/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/workflows/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workflows/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/workflows/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workflows/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/workflows/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workflows/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/workflows/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workflows/list/post/example-1/example-1.6.x.rb b/rest/taskrouter/workflows/list/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workflows/list/post/example-1/example-1.6.x.rb rename to rest/taskrouter/workflows/list/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workspaces/instance/delete/example-1/example-1.6.x.rb b/rest/taskrouter/workspaces/instance/delete/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workspaces/instance/delete/example-1/example-1.6.x.rb rename to rest/taskrouter/workspaces/instance/delete/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workspaces/instance/get/example-1/example-1.6.x.rb b/rest/taskrouter/workspaces/instance/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workspaces/instance/get/example-1/example-1.6.x.rb rename to rest/taskrouter/workspaces/instance/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workspaces/instance/post/example-1/example-1.6.x.rb b/rest/taskrouter/workspaces/instance/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workspaces/instance/post/example-1/example-1.6.x.rb rename to rest/taskrouter/workspaces/instance/post/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workspaces/list/get/example-1/example-1.6.x.rb b/rest/taskrouter/workspaces/list/get/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workspaces/list/get/example-1/example-1.6.x.rb rename to rest/taskrouter/workspaces/list/get/example-1/example-1.7.x.rb diff --git a/rest/taskrouter/workspaces/list/post/example-1/example-1.6.x.rb b/rest/taskrouter/workspaces/list/post/example-1/example-1.7.x.rb similarity index 100% rename from rest/taskrouter/workspaces/list/post/example-1/example-1.6.x.rb rename to rest/taskrouter/workspaces/list/post/example-1/example-1.7.x.rb diff --git a/rest/test-credentials/test-calls-example-1/test-calls-example-1.6.x.rb b/rest/test-credentials/test-calls-example-1/test-calls-example-1.7.x.rb similarity index 100% rename from rest/test-credentials/test-calls-example-1/test-calls-example-1.6.x.rb rename to rest/test-credentials/test-calls-example-1/test-calls-example-1.7.x.rb diff --git a/rest/test-credentials/test-calls-example-2/test-calls-example-2.6.x.rb b/rest/test-credentials/test-calls-example-2/test-calls-example-2.7.x.rb similarity index 100% rename from rest/test-credentials/test-calls-example-2/test-calls-example-2.6.x.rb rename to rest/test-credentials/test-calls-example-2/test-calls-example-2.7.x.rb diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.6.x.rb b/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.7.x.rb similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.6.x.rb rename to rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.7.x.rb diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.6.x.rb b/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.7.x.rb similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.6.x.rb rename to rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.7.x.rb diff --git a/rest/test-credentials/test-post-example-3/test-post-example-3.6.x.rb b/rest/test-credentials/test-post-example-3/test-post-example-3.7.x.rb similarity index 100% rename from rest/test-credentials/test-post-example-3/test-post-example-3.6.x.rb rename to rest/test-credentials/test-post-example-3/test-post-example-3.7.x.rb diff --git a/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.6.x.rb b/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.7.x.rb similarity index 100% rename from rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.6.x.rb rename to rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.7.x.rb diff --git a/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.6.x.rb b/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.7.x.rb similarity index 100% rename from rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.6.x.rb rename to rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.7.x.rb diff --git a/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.6.x.rb b/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.7.x.rb similarity index 100% rename from rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.6.x.rb rename to rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.7.x.rb diff --git a/rest/token/list-post-1-hour-example/list-post-1-hour-example.6.x.rb b/rest/token/list-post-1-hour-example/list-post-1-hour-example.7.x.rb similarity index 100% rename from rest/token/list-post-1-hour-example/list-post-1-hour-example.6.x.rb rename to rest/token/list-post-1-hour-example/list-post-1-hour-example.7.x.rb diff --git a/rest/token/list-post-example/list-post-example.6.x.rb b/rest/token/list-post-example/list-post-example.7.x.rb similarity index 100% rename from rest/token/list-post-example/list-post-example.6.x.rb rename to rest/token/list-post-example/list-post-example.7.x.rb diff --git a/rest/transcription/instance-delete-examples/instance-delete-examples.6.x.rb b/rest/transcription/instance-delete-examples/instance-delete-examples.7.x.rb similarity index 100% rename from rest/transcription/instance-delete-examples/instance-delete-examples.6.x.rb rename to rest/transcription/instance-delete-examples/instance-delete-examples.7.x.rb diff --git a/rest/transcription/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/transcription/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/transcription/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/transcription/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/transcription/list-get-example-1/list-get-example-1.6.x.rb b/rest/transcription/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/transcription/list-get-example-1/list-get-example-1.6.x.rb rename to rest/transcription/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/usage-records/list-get-example-1/list-get-example-1.6.x.rb b/rest/usage-records/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/usage-records/list-get-example-1/list-get-example-1.6.x.rb rename to rest/usage-records/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/usage-records/list-get-example-2/list-get-example-2.6.x.rb b/rest/usage-records/list-get-example-2/list-get-example-2.7.x.rb similarity index 100% rename from rest/usage-records/list-get-example-2/list-get-example-2.6.x.rb rename to rest/usage-records/list-get-example-2/list-get-example-2.7.x.rb diff --git a/rest/usage-records/list-get-example-3/list-get-example-3.6.x.rb b/rest/usage-records/list-get-example-3/list-get-example-3.7.x.rb similarity index 100% rename from rest/usage-records/list-get-example-3/list-get-example-3.6.x.rb rename to rest/usage-records/list-get-example-3/list-get-example-3.7.x.rb diff --git a/rest/usage-records/list-get-example-4/list-get-example-4.6.x.rb b/rest/usage-records/list-get-example-4/list-get-example-4.7.x.rb similarity index 100% rename from rest/usage-records/list-get-example-4/list-get-example-4.6.x.rb rename to rest/usage-records/list-get-example-4/list-get-example-4.7.x.rb diff --git a/rest/usage-records/list-get-example-5/list-get-example-6.6.x.rb b/rest/usage-records/list-get-example-5/list-get-example-6.7.x.rb similarity index 100% rename from rest/usage-records/list-get-example-5/list-get-example-6.6.x.rb rename to rest/usage-records/list-get-example-5/list-get-example-6.7.x.rb diff --git a/rest/usage-triggers/instance-get-example-1/instance-get-example-1.6.x.rb b/rest/usage-triggers/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from rest/usage-triggers/instance-get-example-1/instance-get-example-1.6.x.rb rename to rest/usage-triggers/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/rest/usage-triggers/instance-post-example-1/instance-post-example-1.6.x.rb b/rest/usage-triggers/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from rest/usage-triggers/instance-post-example-1/instance-post-example-1.6.x.rb rename to rest/usage-triggers/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/rest/usage-triggers/list-get-example-1/list-get-example-1.6.x.rb b/rest/usage-triggers/list-get-example-1/list-get-example-1.7.x.rb similarity index 100% rename from rest/usage-triggers/list-get-example-1/list-get-example-1.6.x.rb rename to rest/usage-triggers/list-get-example-1/list-get-example-1.7.x.rb diff --git a/rest/usage-triggers/list-post-example-1/list-post-example-1.6.x.rb b/rest/usage-triggers/list-post-example-1/list-post-example-1.7.x.rb similarity index 100% rename from rest/usage-triggers/list-post-example-1/list-post-example-1.6.x.rb rename to rest/usage-triggers/list-post-example-1/list-post-example-1.7.x.rb diff --git a/rest/voice/generate-twiml-play/twiml-play.6.x.rb b/rest/voice/generate-twiml-play/twiml-play.7.x.rb similarity index 100% rename from rest/voice/generate-twiml-play/twiml-play.6.x.rb rename to rest/voice/generate-twiml-play/twiml-play.7.x.rb diff --git a/rest/voice/generate-twiml-say/generate-twiml-say.6.x.rb b/rest/voice/generate-twiml-say/generate-twiml-say.7.x.rb similarity index 100% rename from rest/voice/generate-twiml-say/generate-twiml-say.6.x.rb rename to rest/voice/generate-twiml-say/generate-twiml-say.7.x.rb diff --git a/rest/voice/outbound-calls/example-1/example-1.6.x.rb b/rest/voice/outbound-calls/example-1/example-1.7.x.rb similarity index 100% rename from rest/voice/outbound-calls/example-1/example-1.6.x.rb rename to rest/voice/outbound-calls/example-1/example-1.7.x.rb diff --git a/rest/voice/outbound-calls/example-2/example-2.6.x.rb b/rest/voice/outbound-calls/example-2/example-2.7.x.rb similarity index 100% rename from rest/voice/outbound-calls/example-2/example-2.6.x.rb rename to rest/voice/outbound-calls/example-2/example-2.7.x.rb diff --git a/rest/voice/outbound-calls/example-3/example-3.6.x.rb b/rest/voice/outbound-calls/example-3/example-3.7.x.rb similarity index 100% rename from rest/voice/outbound-calls/example-3/example-3.6.x.rb rename to rest/voice/outbound-calls/example-3/example-3.7.x.rb diff --git a/rest/voice/outbound-calls/example-4/example-4.6.x.rb b/rest/voice/outbound-calls/example-4/example-4.7.x.rb similarity index 100% rename from rest/voice/outbound-calls/example-4/example-4.6.x.rb rename to rest/voice/outbound-calls/example-4/example-4.7.x.rb diff --git a/rest/voice/twiml-recording-action/recording-action.6.x.rb b/rest/voice/twiml-recording-action/recording-action.7.x.rb similarity index 100% rename from rest/voice/twiml-recording-action/recording-action.6.x.rb rename to rest/voice/twiml-recording-action/recording-action.7.x.rb diff --git a/security/environment_variables/environment-variables-1.6.x.rb b/security/environment_variables/environment-variables-1.7.x.rb similarity index 100% rename from security/environment_variables/environment-variables-1.6.x.rb rename to security/environment_variables/environment-variables-1.7.x.rb diff --git a/security/signature_validation/signature_validation.6.x.rb b/security/signature_validation/signature_validation.7.x.rb similarity index 100% rename from security/signature_validation/signature_validation.6.x.rb rename to security/signature_validation/signature_validation.7.x.rb diff --git a/security/signature_validation_tests/signature_validation_tests.6.x.rb b/security/signature_validation_tests/signature_validation_tests.7.x.rb similarity index 100% rename from security/signature_validation_tests/signature_validation_tests.6.x.rb rename to security/signature_validation_tests/signature_validation_tests.7.x.rb diff --git a/stun-turn/list-post-example/list-post-example.6.x.rb b/stun-turn/list-post-example/list-post-example.7.x.rb similarity index 100% rename from stun-turn/list-post-example/list-post-example.6.x.rb rename to stun-turn/list-post-example/list-post-example.7.x.rb diff --git a/super-sim/sims/update-account/update-account.6.x.rb b/super-sim/sims/update-account/update-account.7.x.rb similarity index 100% rename from super-sim/sims/update-account/update-account.6.x.rb rename to super-sim/sims/update-account/update-account.7.x.rb diff --git a/sync/rest/document-permissions/delete-permission/delete-permission.6.x.rb b/sync/rest/document-permissions/delete-permission/delete-permission.7.x.rb similarity index 100% rename from sync/rest/document-permissions/delete-permission/delete-permission.6.x.rb rename to sync/rest/document-permissions/delete-permission/delete-permission.7.x.rb diff --git a/sync/rest/document-permissions/list-permissions/list-permissions.6.x.rb b/sync/rest/document-permissions/list-permissions/list-permissions.7.x.rb similarity index 100% rename from sync/rest/document-permissions/list-permissions/list-permissions.6.x.rb rename to sync/rest/document-permissions/list-permissions/list-permissions.7.x.rb diff --git a/sync/rest/document-permissions/retrieve-permission/retrieve-permission.6.x.rb b/sync/rest/document-permissions/retrieve-permission/retrieve-permission.7.x.rb similarity index 100% rename from sync/rest/document-permissions/retrieve-permission/retrieve-permission.6.x.rb rename to sync/rest/document-permissions/retrieve-permission/retrieve-permission.7.x.rb diff --git a/sync/rest/document-permissions/update-permission/update-permission.6.x.rb b/sync/rest/document-permissions/update-permission/update-permission.7.x.rb similarity index 100% rename from sync/rest/document-permissions/update-permission/update-permission.6.x.rb rename to sync/rest/document-permissions/update-permission/update-permission.7.x.rb diff --git a/sync/rest/documents/create-document/create-document.6.x.rb b/sync/rest/documents/create-document/create-document.7.x.rb similarity index 100% rename from sync/rest/documents/create-document/create-document.6.x.rb rename to sync/rest/documents/create-document/create-document.7.x.rb diff --git a/sync/rest/documents/delete-document/delete-document.6.x.rb b/sync/rest/documents/delete-document/delete-document.7.x.rb similarity index 100% rename from sync/rest/documents/delete-document/delete-document.6.x.rb rename to sync/rest/documents/delete-document/delete-document.7.x.rb diff --git a/sync/rest/documents/list-documents/list-documents.6.x.rb b/sync/rest/documents/list-documents/list-documents.7.x.rb similarity index 100% rename from sync/rest/documents/list-documents/list-documents.6.x.rb rename to sync/rest/documents/list-documents/list-documents.7.x.rb diff --git a/sync/rest/documents/retrieve-document/retrieve-document.6.x.rb b/sync/rest/documents/retrieve-document/retrieve-document.7.x.rb similarity index 100% rename from sync/rest/documents/retrieve-document/retrieve-document.6.x.rb rename to sync/rest/documents/retrieve-document/retrieve-document.7.x.rb diff --git a/sync/rest/documents/update-document/update-document.6.x.rb b/sync/rest/documents/update-document/update-document.7.x.rb similarity index 100% rename from sync/rest/documents/update-document/update-document.6.x.rb rename to sync/rest/documents/update-document/update-document.7.x.rb diff --git a/sync/rest/list-permissions/delete-permission/delete-permission.6.x.rb b/sync/rest/list-permissions/delete-permission/delete-permission.7.x.rb similarity index 100% rename from sync/rest/list-permissions/delete-permission/delete-permission.6.x.rb rename to sync/rest/list-permissions/delete-permission/delete-permission.7.x.rb diff --git a/sync/rest/list-permissions/list-permissions/list-permissions.6.x.rb b/sync/rest/list-permissions/list-permissions/list-permissions.7.x.rb similarity index 100% rename from sync/rest/list-permissions/list-permissions/list-permissions.6.x.rb rename to sync/rest/list-permissions/list-permissions/list-permissions.7.x.rb diff --git a/sync/rest/list-permissions/retrieve-permission/retrieve-permission.6.x.rb b/sync/rest/list-permissions/retrieve-permission/retrieve-permission.7.x.rb similarity index 100% rename from sync/rest/list-permissions/retrieve-permission/retrieve-permission.6.x.rb rename to sync/rest/list-permissions/retrieve-permission/retrieve-permission.7.x.rb diff --git a/sync/rest/list-permissions/update-permission/update-permission.6.x.rb b/sync/rest/list-permissions/update-permission/update-permission.7.x.rb similarity index 100% rename from sync/rest/list-permissions/update-permission/update-permission.6.x.rb rename to sync/rest/list-permissions/update-permission/update-permission.7.x.rb diff --git a/sync/rest/lists/create-list-item/create-list-item.6.x.rb b/sync/rest/lists/create-list-item/create-list-item.7.x.rb similarity index 100% rename from sync/rest/lists/create-list-item/create-list-item.6.x.rb rename to sync/rest/lists/create-list-item/create-list-item.7.x.rb diff --git a/sync/rest/lists/create-list/create-list.6.x.rb b/sync/rest/lists/create-list/create-list.7.x.rb similarity index 100% rename from sync/rest/lists/create-list/create-list.6.x.rb rename to sync/rest/lists/create-list/create-list.7.x.rb diff --git a/sync/rest/lists/delete-list-item/delete-list-item.6.x.rb b/sync/rest/lists/delete-list-item/delete-list-item.7.x.rb similarity index 100% rename from sync/rest/lists/delete-list-item/delete-list-item.6.x.rb rename to sync/rest/lists/delete-list-item/delete-list-item.7.x.rb diff --git a/sync/rest/lists/delete-list/delete-list.6.x.rb b/sync/rest/lists/delete-list/delete-list.7.x.rb similarity index 100% rename from sync/rest/lists/delete-list/delete-list.6.x.rb rename to sync/rest/lists/delete-list/delete-list.7.x.rb diff --git a/sync/rest/lists/list-lists/list-lists.6.x.rb b/sync/rest/lists/list-lists/list-lists.7.x.rb similarity index 100% rename from sync/rest/lists/list-lists/list-lists.6.x.rb rename to sync/rest/lists/list-lists/list-lists.7.x.rb diff --git a/sync/rest/lists/query-list/query-list.6.x.rb b/sync/rest/lists/query-list/query-list.7.x.rb similarity index 100% rename from sync/rest/lists/query-list/query-list.6.x.rb rename to sync/rest/lists/query-list/query-list.7.x.rb diff --git a/sync/rest/lists/retrieve-list-item/retrieve-list-item.6.x.rb b/sync/rest/lists/retrieve-list-item/retrieve-list-item.7.x.rb similarity index 100% rename from sync/rest/lists/retrieve-list-item/retrieve-list-item.6.x.rb rename to sync/rest/lists/retrieve-list-item/retrieve-list-item.7.x.rb diff --git a/sync/rest/lists/retrieve-list/retrieve-list.6.x.rb b/sync/rest/lists/retrieve-list/retrieve-list.7.x.rb similarity index 100% rename from sync/rest/lists/retrieve-list/retrieve-list.6.x.rb rename to sync/rest/lists/retrieve-list/retrieve-list.7.x.rb diff --git a/sync/rest/lists/update-list-item/update-list-item.6.x.rb b/sync/rest/lists/update-list-item/update-list-item.7.x.rb similarity index 100% rename from sync/rest/lists/update-list-item/update-list-item.6.x.rb rename to sync/rest/lists/update-list-item/update-list-item.7.x.rb diff --git a/sync/rest/lists/update-list/update-list.6.x.rb b/sync/rest/lists/update-list/update-list.7.x.rb similarity index 100% rename from sync/rest/lists/update-list/update-list.6.x.rb rename to sync/rest/lists/update-list/update-list.7.x.rb diff --git a/sync/rest/map-permissions/delete-permission/delete-permission.6.x.rb b/sync/rest/map-permissions/delete-permission/delete-permission.7.x.rb similarity index 100% rename from sync/rest/map-permissions/delete-permission/delete-permission.6.x.rb rename to sync/rest/map-permissions/delete-permission/delete-permission.7.x.rb diff --git a/sync/rest/map-permissions/list-permissions/list-permissions.6.x.rb b/sync/rest/map-permissions/list-permissions/list-permissions.7.x.rb similarity index 100% rename from sync/rest/map-permissions/list-permissions/list-permissions.6.x.rb rename to sync/rest/map-permissions/list-permissions/list-permissions.7.x.rb diff --git a/sync/rest/map-permissions/retrieve-permission/retrieve-permission.6.x.rb b/sync/rest/map-permissions/retrieve-permission/retrieve-permission.7.x.rb similarity index 100% rename from sync/rest/map-permissions/retrieve-permission/retrieve-permission.6.x.rb rename to sync/rest/map-permissions/retrieve-permission/retrieve-permission.7.x.rb diff --git a/sync/rest/map-permissions/update-permission/update-permission.6.x.rb b/sync/rest/map-permissions/update-permission/update-permission.7.x.rb similarity index 100% rename from sync/rest/map-permissions/update-permission/update-permission.6.x.rb rename to sync/rest/map-permissions/update-permission/update-permission.7.x.rb diff --git a/sync/rest/maps/create-map-item/create-map-item.6.x.rb b/sync/rest/maps/create-map-item/create-map-item.7.x.rb similarity index 100% rename from sync/rest/maps/create-map-item/create-map-item.6.x.rb rename to sync/rest/maps/create-map-item/create-map-item.7.x.rb diff --git a/sync/rest/maps/create-map/create-map.6.x.rb b/sync/rest/maps/create-map/create-map.7.x.rb similarity index 100% rename from sync/rest/maps/create-map/create-map.6.x.rb rename to sync/rest/maps/create-map/create-map.7.x.rb diff --git a/sync/rest/maps/delete-map-item/delete-map-item.6.x.rb b/sync/rest/maps/delete-map-item/delete-map-item.7.x.rb similarity index 100% rename from sync/rest/maps/delete-map-item/delete-map-item.6.x.rb rename to sync/rest/maps/delete-map-item/delete-map-item.7.x.rb diff --git a/sync/rest/maps/delete-map/delete-map.6.x.rb b/sync/rest/maps/delete-map/delete-map.7.x.rb similarity index 100% rename from sync/rest/maps/delete-map/delete-map.6.x.rb rename to sync/rest/maps/delete-map/delete-map.7.x.rb diff --git a/sync/rest/maps/list-maps/list-maps.6.x.rb b/sync/rest/maps/list-maps/list-maps.7.x.rb similarity index 100% rename from sync/rest/maps/list-maps/list-maps.6.x.rb rename to sync/rest/maps/list-maps/list-maps.7.x.rb diff --git a/sync/rest/maps/query-map/query-map.6.x.rb b/sync/rest/maps/query-map/query-map.7.x.rb similarity index 100% rename from sync/rest/maps/query-map/query-map.6.x.rb rename to sync/rest/maps/query-map/query-map.7.x.rb diff --git a/sync/rest/maps/retrieve-map-item/retrieve-map-item.6.x.rb b/sync/rest/maps/retrieve-map-item/retrieve-map-item.7.x.rb similarity index 100% rename from sync/rest/maps/retrieve-map-item/retrieve-map-item.6.x.rb rename to sync/rest/maps/retrieve-map-item/retrieve-map-item.7.x.rb diff --git a/sync/rest/maps/retrieve-map/retrieve-map.6.x.rb b/sync/rest/maps/retrieve-map/retrieve-map.7.x.rb similarity index 100% rename from sync/rest/maps/retrieve-map/retrieve-map.6.x.rb rename to sync/rest/maps/retrieve-map/retrieve-map.7.x.rb diff --git a/sync/rest/maps/update-map-item/update-map-item.6.x.rb b/sync/rest/maps/update-map-item/update-map-item.7.x.rb similarity index 100% rename from sync/rest/maps/update-map-item/update-map-item.6.x.rb rename to sync/rest/maps/update-map-item/update-map-item.7.x.rb diff --git a/sync/rest/maps/update-map/update-map.6.x.rb b/sync/rest/maps/update-map/update-map.7.x.rb similarity index 100% rename from sync/rest/maps/update-map/update-map.6.x.rb rename to sync/rest/maps/update-map/update-map.7.x.rb diff --git a/sync/rest/services/create-service-webhook/create-service-webhook.6.x.rb b/sync/rest/services/create-service-webhook/create-service-webhook.7.x.rb similarity index 100% rename from sync/rest/services/create-service-webhook/create-service-webhook.6.x.rb rename to sync/rest/services/create-service-webhook/create-service-webhook.7.x.rb diff --git a/sync/rest/services/create-service/create-service.6.x.rb b/sync/rest/services/create-service/create-service.7.x.rb similarity index 100% rename from sync/rest/services/create-service/create-service.6.x.rb rename to sync/rest/services/create-service/create-service.7.x.rb diff --git a/sync/rest/services/delete-service/delete-service.6.x.rb b/sync/rest/services/delete-service/delete-service.7.x.rb similarity index 100% rename from sync/rest/services/delete-service/delete-service.6.x.rb rename to sync/rest/services/delete-service/delete-service.7.x.rb diff --git a/sync/rest/services/list-services/list-services.6.x.rb b/sync/rest/services/list-services/list-services.7.x.rb similarity index 100% rename from sync/rest/services/list-services/list-services.6.x.rb rename to sync/rest/services/list-services/list-services.7.x.rb diff --git a/sync/rest/services/retrieve-service/retrieve-service.6.x.rb b/sync/rest/services/retrieve-service/retrieve-service.7.x.rb similarity index 100% rename from sync/rest/services/retrieve-service/retrieve-service.6.x.rb rename to sync/rest/services/retrieve-service/retrieve-service.7.x.rb diff --git a/sync/rest/services/update-service/update-service.6.x.rb b/sync/rest/services/update-service/update-service.7.x.rb similarity index 100% rename from sync/rest/services/update-service/update-service.6.x.rb rename to sync/rest/services/update-service/update-service.7.x.rb diff --git a/sync/rest/streams/create-stream/create-stream.6.x.rb b/sync/rest/streams/create-stream/create-stream.7.x.rb similarity index 100% rename from sync/rest/streams/create-stream/create-stream.6.x.rb rename to sync/rest/streams/create-stream/create-stream.7.x.rb diff --git a/sync/rest/streams/delete-stream/delete-stream.6.x.rb b/sync/rest/streams/delete-stream/delete-stream.7.x.rb similarity index 100% rename from sync/rest/streams/delete-stream/delete-stream.6.x.rb rename to sync/rest/streams/delete-stream/delete-stream.7.x.rb diff --git a/sync/rest/streams/list-streams/list-streams.6.x.rb b/sync/rest/streams/list-streams/list-streams.7.x.rb similarity index 100% rename from sync/rest/streams/list-streams/list-streams.6.x.rb rename to sync/rest/streams/list-streams/list-streams.7.x.rb diff --git a/sync/rest/streams/publish-stream-message/publish-stream-message.6.x.rb b/sync/rest/streams/publish-stream-message/publish-stream-message.7.x.rb similarity index 100% rename from sync/rest/streams/publish-stream-message/publish-stream-message.6.x.rb rename to sync/rest/streams/publish-stream-message/publish-stream-message.7.x.rb diff --git a/sync/rest/streams/retrieve-stream/retrieve-stream.6.x.rb b/sync/rest/streams/retrieve-stream/retrieve-stream.7.x.rb similarity index 100% rename from sync/rest/streams/retrieve-stream/retrieve-stream.6.x.rb rename to sync/rest/streams/retrieve-stream/retrieve-stream.7.x.rb diff --git a/sync/rest/streams/update-stream/update-stream.6.x.rb b/sync/rest/streams/update-stream/update-stream.7.x.rb similarity index 100% rename from sync/rest/streams/update-stream/update-stream.6.x.rb rename to sync/rest/streams/update-stream/update-stream.7.x.rb diff --git a/twiml/message/message/message-1/message-1.6.x.rb b/twiml/message/message/message-1/message-1.7.x.rb similarity index 100% rename from twiml/message/message/message-1/message-1.6.x.rb rename to twiml/message/message/message-1/message-1.7.x.rb diff --git a/twiml/message/message/message-2/message-2.6.x.rb b/twiml/message/message/message-2/message-2.7.x.rb similarity index 100% rename from twiml/message/message/message-2/message-2.6.x.rb rename to twiml/message/message/message-2/message-2.7.x.rb diff --git a/twiml/message/message/message-3/message-3.6.x.rb b/twiml/message/message/message-3/message-3.7.x.rb similarity index 100% rename from twiml/message/message/message-3/message-3.6.x.rb rename to twiml/message/message/message-3/message-3.7.x.rb diff --git a/twiml/message/message/message-4/message-4.6.x.rb b/twiml/message/message/message-4/message-4.7.x.rb similarity index 100% rename from twiml/message/message/message-4/message-4.6.x.rb rename to twiml/message/message/message-4/message-4.7.x.rb diff --git a/twiml/message/redirect/redirect-1/redirect-1.6.x.rb b/twiml/message/redirect/redirect-1/redirect-1.7.x.rb similarity index 100% rename from twiml/message/redirect/redirect-1/redirect-1.6.x.rb rename to twiml/message/redirect/redirect-1/redirect-1.7.x.rb diff --git a/twiml/message/redirect/redirect-2/redirect-2.6.x.rb b/twiml/message/redirect/redirect-2/redirect-2.7.x.rb similarity index 100% rename from twiml/message/redirect/redirect-2/redirect-2.6.x.rb rename to twiml/message/redirect/redirect-2/redirect-2.7.x.rb diff --git a/twiml/message/your-response/your-response-1/your-response-1.6.x.rb b/twiml/message/your-response/your-response-1/your-response-1.7.x.rb similarity index 100% rename from twiml/message/your-response/your-response-1/your-response-1.6.x.rb rename to twiml/message/your-response/your-response-1/your-response-1.7.x.rb diff --git a/twiml/message/your-response/your-response-2/your-response-2.6.x.rb b/twiml/message/your-response/your-response-2/your-response-2.7.x.rb similarity index 100% rename from twiml/message/your-response/your-response-2/your-response-2.6.x.rb rename to twiml/message/your-response/your-response-2/your-response-2.7.x.rb diff --git a/twiml/message/your-response/your-response-3/your-response-3.6.x.rb b/twiml/message/your-response/your-response-3/your-response-3.7.x.rb similarity index 100% rename from twiml/message/your-response/your-response-3/your-response-3.6.x.rb rename to twiml/message/your-response/your-response-3/your-response-3.7.x.rb diff --git a/twiml/voice/application/dial-application-basic/dial-application-basic.6.x.rb b/twiml/voice/application/dial-application-basic/dial-application-basic.7.x.rb similarity index 100% rename from twiml/voice/application/dial-application-basic/dial-application-basic.6.x.rb rename to twiml/voice/application/dial-application-basic/dial-application-basic.7.x.rb diff --git a/twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.6.x.rb b/twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.7.x.rb similarity index 100% rename from twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.6.x.rb rename to twiml/voice/application/dial-application-copyparentto/dial-application-copyparentto.7.x.rb diff --git a/twiml/voice/application/dial-application-customerid/dial-application-customerid.6.x.rb b/twiml/voice/application/dial-application-customerid/dial-application-customerid.7.x.rb similarity index 100% rename from twiml/voice/application/dial-application-customerid/dial-application-customerid.6.x.rb rename to twiml/voice/application/dial-application-customerid/dial-application-customerid.7.x.rb diff --git a/twiml/voice/application/dial-application-parameter/dial-application-parameter.6.x.rb b/twiml/voice/application/dial-application-parameter/dial-application-parameter.7.x.rb similarity index 100% rename from twiml/voice/application/dial-application-parameter/dial-application-parameter.6.x.rb rename to twiml/voice/application/dial-application-parameter/dial-application-parameter.7.x.rb diff --git a/twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.6.x.rb b/twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.7.x.rb similarity index 100% rename from twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.6.x.rb rename to twiml/voice/application/hangup-parameter-scenario/hangup-parameter-scenario.7.x.rb diff --git a/twiml/voice/application/hangup-parameter/hangup-parameter.6.x.rb b/twiml/voice/application/hangup-parameter/hangup-parameter.7.x.rb similarity index 100% rename from twiml/voice/application/hangup-parameter/hangup-parameter.6.x.rb rename to twiml/voice/application/hangup-parameter/hangup-parameter.7.x.rb diff --git a/twiml/voice/application/reject-parameter/reject-parameter.6.x.rb b/twiml/voice/application/reject-parameter/reject-parameter.7.x.rb similarity index 100% rename from twiml/voice/application/reject-parameter/reject-parameter.6.x.rb rename to twiml/voice/application/reject-parameter/reject-parameter.7.x.rb diff --git a/twiml/voice/client/client-1/client-1.6.x.rb b/twiml/voice/client/client-1/client-1.7.x.rb similarity index 100% rename from twiml/voice/client/client-1/client-1.6.x.rb rename to twiml/voice/client/client-1/client-1.7.x.rb diff --git a/twiml/voice/client/client-2/client-2.6.x.rb b/twiml/voice/client/client-2/client-2.7.x.rb similarity index 100% rename from twiml/voice/client/client-2/client-2.6.x.rb rename to twiml/voice/client/client-2/client-2.7.x.rb diff --git a/twiml/voice/client/client-3/client-3.6.x.rb b/twiml/voice/client/client-3/client-3.7.x.rb similarity index 100% rename from twiml/voice/client/client-3/client-3.6.x.rb rename to twiml/voice/client/client-3/client-3.7.x.rb diff --git a/twiml/voice/conference/conference-1/conference-1.6.x.rb b/twiml/voice/conference/conference-1/conference-1.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-1/conference-1.6.x.rb rename to twiml/voice/conference/conference-1/conference-1.7.x.rb diff --git a/twiml/voice/conference/conference-10/conference-10.6.x.rb b/twiml/voice/conference/conference-10/conference-10.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-10/conference-10.6.x.rb rename to twiml/voice/conference/conference-10/conference-10.7.x.rb diff --git a/twiml/voice/conference/conference-2/conference-2.6.x.rb b/twiml/voice/conference/conference-2/conference-2.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-2/conference-2.6.x.rb rename to twiml/voice/conference/conference-2/conference-2.7.x.rb diff --git a/twiml/voice/conference/conference-3/conference-3.6.x.rb b/twiml/voice/conference/conference-3/conference-3.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-3/conference-3.6.x.rb rename to twiml/voice/conference/conference-3/conference-3.7.x.rb diff --git a/twiml/voice/conference/conference-4/conference-4.6.x.rb b/twiml/voice/conference/conference-4/conference-4.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-4/conference-4.6.x.rb rename to twiml/voice/conference/conference-4/conference-4.7.x.rb diff --git a/twiml/voice/conference/conference-5/conference-6.6.x.rb b/twiml/voice/conference/conference-5/conference-6.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-5/conference-6.6.x.rb rename to twiml/voice/conference/conference-5/conference-6.7.x.rb diff --git a/twiml/voice/conference/conference-6/conference-6.6.x.rb b/twiml/voice/conference/conference-6/conference-6.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-6/conference-6.6.x.rb rename to twiml/voice/conference/conference-6/conference-6.7.x.rb diff --git a/twiml/voice/conference/conference-7/conference-7.6.x.rb b/twiml/voice/conference/conference-7/conference-7.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-7/conference-7.6.x.rb rename to twiml/voice/conference/conference-7/conference-7.7.x.rb diff --git a/twiml/voice/conference/conference-8/conference-8.6.x.rb b/twiml/voice/conference/conference-8/conference-8.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-8/conference-8.6.x.rb rename to twiml/voice/conference/conference-8/conference-8.7.x.rb diff --git a/twiml/voice/conference/conference-9/conference-9.6.x.rb b/twiml/voice/conference/conference-9/conference-9.7.x.rb similarity index 100% rename from twiml/voice/conference/conference-9/conference-9.6.x.rb rename to twiml/voice/conference/conference-9/conference-9.7.x.rb diff --git a/twiml/voice/connect/autopilot/connect-1.6.x.rb b/twiml/voice/connect/autopilot/connect-1.7.x.rb similarity index 100% rename from twiml/voice/connect/autopilot/connect-1.6.x.rb rename to twiml/voice/connect/autopilot/connect-1.7.x.rb diff --git a/twiml/voice/connect/connect-1/connect-1.6.x.rb b/twiml/voice/connect/connect-1/connect-1.7.x.rb similarity index 100% rename from twiml/voice/connect/connect-1/connect-1.6.x.rb rename to twiml/voice/connect/connect-1/connect-1.7.x.rb diff --git a/twiml/voice/connect/connect-2/connect-2.6.x.rb b/twiml/voice/connect/connect-2/connect-2.7.x.rb similarity index 100% rename from twiml/voice/connect/connect-2/connect-2.6.x.rb rename to twiml/voice/connect/connect-2/connect-2.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.6.x.rb b/twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.6.x.rb rename to twiml/voice/connect/conversation/conversation-action-method/conversation-action-method.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.6.x.rb b/twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.6.x.rb rename to twiml/voice/connect/conversation/conversation-action-statuscallback/conversation-action-statuscallback.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-action/conversation-action.6.x.rb b/twiml/voice/connect/conversation/conversation-action/conversation-action.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-action/conversation-action.6.x.rb rename to twiml/voice/connect/conversation/conversation-action/conversation-action.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-basic/conversation-basic.6.x.rb b/twiml/voice/connect/conversation/conversation-basic/conversation-basic.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-basic/conversation-basic.6.x.rb rename to twiml/voice/connect/conversation/conversation-basic/conversation-basic.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.6.x.rb b/twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.6.x.rb rename to twiml/voice/connect/conversation/conversation-inboundautocreation-routingassignmenttimeout/conversation-inboundautocreation-routingassignmenttimeout.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.6.x.rb b/twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.6.x.rb rename to twiml/voice/connect/conversation/conversation-inboundautocreation/conversation-inboundautocreation.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.6.x.rb b/twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.6.x.rb rename to twiml/voice/connect/conversation/conversation-inboundtimeout/conversation-inboundtimeout.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.6.x.rb b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.6.x.rb rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-event/conversation-record-recordingstatuscallback-and-event.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.6.x.rb b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.6.x.rb rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback-and-method/conversation-record-recordingstatuscallback-and-method.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.6.x.rb b/twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.6.x.rb rename to twiml/voice/connect/conversation/conversation-record-recordingstatuscallback/conversation-record-recordingstatuscallback.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.6.x.rb b/twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.6.x.rb rename to twiml/voice/connect/conversation/conversation-record-trim/conversation-record-trim.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-record/conversation-record.6.x.rb b/twiml/voice/connect/conversation/conversation-record/conversation-record.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-record/conversation-record.6.x.rb rename to twiml/voice/connect/conversation/conversation-record/conversation-record.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.6.x.rb b/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.6.x.rb rename to twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackevent/conversation-statuscallback-statuscallbackevent.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.6.x.rb b/twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.6.x.rb rename to twiml/voice/connect/conversation/conversation-statuscallback-statuscallbackmethod/conversation-statuscallback-statuscallbackmethod.7.x.rb diff --git a/twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.6.x.rb b/twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.7.x.rb similarity index 100% rename from twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.6.x.rb rename to twiml/voice/connect/conversation/conversation-statuscallback/conversation-statuscallback.7.x.rb diff --git a/twiml/voice/connect/stream/connect_stream.6.x.rb b/twiml/voice/connect/stream/connect_stream.7.x.rb similarity index 100% rename from twiml/voice/connect/stream/connect_stream.6.x.rb rename to twiml/voice/connect/stream/connect_stream.7.x.rb diff --git a/twiml/voice/connect/virtualagent-1/virtualagent-1.6.x.rb b/twiml/voice/connect/virtualagent-1/virtualagent-1.7.x.rb similarity index 100% rename from twiml/voice/connect/virtualagent-1/virtualagent-1.6.x.rb rename to twiml/voice/connect/virtualagent-1/virtualagent-1.7.x.rb diff --git a/twiml/voice/connect/virtualagent-2/virtualagent-2.6.x.rb b/twiml/voice/connect/virtualagent-2/virtualagent-2.7.x.rb similarity index 100% rename from twiml/voice/connect/virtualagent-2/virtualagent-2.6.x.rb rename to twiml/voice/connect/virtualagent-2/virtualagent-2.7.x.rb diff --git a/twiml/voice/connect/virtualagent-3/virtualagent-3.6.x.rb b/twiml/voice/connect/virtualagent-3/virtualagent-3.7.x.rb similarity index 100% rename from twiml/voice/connect/virtualagent-3/virtualagent-3.6.x.rb rename to twiml/voice/connect/virtualagent-3/virtualagent-3.7.x.rb diff --git a/twiml/voice/connect/virtualagent-4/virtualagent-4.6.x.rb b/twiml/voice/connect/virtualagent-4/virtualagent-4.7.x.rb similarity index 100% rename from twiml/voice/connect/virtualagent-4/virtualagent-4.6.x.rb rename to twiml/voice/connect/virtualagent-4/virtualagent-4.7.x.rb diff --git a/twiml/voice/connect/virtualagent-5/virtualagent-5.6.x.rb b/twiml/voice/connect/virtualagent-5/virtualagent-5.7.x.rb similarity index 100% rename from twiml/voice/connect/virtualagent-5/virtualagent-5.6.x.rb rename to twiml/voice/connect/virtualagent-5/virtualagent-5.7.x.rb diff --git a/twiml/voice/connect/virtualagent-6/virtualagent-6.6.x.rb b/twiml/voice/connect/virtualagent-6/virtualagent-6.7.x.rb similarity index 100% rename from twiml/voice/connect/virtualagent-6/virtualagent-6.6.x.rb rename to twiml/voice/connect/virtualagent-6/virtualagent-6.7.x.rb diff --git a/twiml/voice/dial/dial-1/dial-1.6.x.rb b/twiml/voice/dial/dial-1/dial-1.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-1/dial-1.6.x.rb rename to twiml/voice/dial/dial-1/dial-1.7.x.rb diff --git a/twiml/voice/dial/dial-2/dial-2.6.x.rb b/twiml/voice/dial/dial-2/dial-2.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-2/dial-2.6.x.rb rename to twiml/voice/dial/dial-2/dial-2.7.x.rb diff --git a/twiml/voice/dial/dial-3/dial-3.6.x.rb b/twiml/voice/dial/dial-3/dial-3.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-3/dial-3.6.x.rb rename to twiml/voice/dial/dial-3/dial-3.7.x.rb diff --git a/twiml/voice/dial/dial-4/dial-4.6.x.rb b/twiml/voice/dial/dial-4/dial-4.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-4/dial-4.6.x.rb rename to twiml/voice/dial/dial-4/dial-4.7.x.rb diff --git a/twiml/voice/dial/dial-5/dial-6.6.x.rb b/twiml/voice/dial/dial-5/dial-6.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-5/dial-6.6.x.rb rename to twiml/voice/dial/dial-5/dial-6.7.x.rb diff --git a/twiml/voice/dial/dial-6/dial-6.6.x.rb b/twiml/voice/dial/dial-6/dial-6.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-6/dial-6.6.x.rb rename to twiml/voice/dial/dial-6/dial-6.7.x.rb diff --git a/twiml/voice/dial/dial-7/dial-7.6.x.rb b/twiml/voice/dial/dial-7/dial-7.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-7/dial-7.6.x.rb rename to twiml/voice/dial/dial-7/dial-7.7.x.rb diff --git a/twiml/voice/dial/dial-8/dial-8.6.x.rb b/twiml/voice/dial/dial-8/dial-8.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-8/dial-8.6.x.rb rename to twiml/voice/dial/dial-8/dial-8.7.x.rb diff --git a/twiml/voice/dial/dial-9/dial-9.6.x.rb b/twiml/voice/dial/dial-9/dial-9.7.x.rb similarity index 100% rename from twiml/voice/dial/dial-9/dial-9.6.x.rb rename to twiml/voice/dial/dial-9/dial-9.7.x.rb diff --git a/twiml/voice/enqueue/enqueue-1/enqueue-1.6.x.rb b/twiml/voice/enqueue/enqueue-1/enqueue-1.7.x.rb similarity index 100% rename from twiml/voice/enqueue/enqueue-1/enqueue-1.6.x.rb rename to twiml/voice/enqueue/enqueue-1/enqueue-1.7.x.rb diff --git a/twiml/voice/enqueue/enqueue-2/enqueue-2.6.x.rb b/twiml/voice/enqueue/enqueue-2/enqueue-2.7.x.rb similarity index 100% rename from twiml/voice/enqueue/enqueue-2/enqueue-2.6.x.rb rename to twiml/voice/enqueue/enqueue-2/enqueue-2.7.x.rb diff --git a/twiml/voice/gather/gather-1/gather-1.6.x.rb b/twiml/voice/gather/gather-1/gather-1.7.x.rb similarity index 100% rename from twiml/voice/gather/gather-1/gather-1.6.x.rb rename to twiml/voice/gather/gather-1/gather-1.7.x.rb diff --git a/twiml/voice/gather/gather-2/gather-2.6.x.rb b/twiml/voice/gather/gather-2/gather-2.7.x.rb similarity index 100% rename from twiml/voice/gather/gather-2/gather-2.6.x.rb rename to twiml/voice/gather/gather-2/gather-2.7.x.rb diff --git a/twiml/voice/gather/gather-3/gather-3.6.x.rb b/twiml/voice/gather/gather-3/gather-3.7.x.rb similarity index 100% rename from twiml/voice/gather/gather-3/gather-3.6.x.rb rename to twiml/voice/gather/gather-3/gather-3.7.x.rb diff --git a/twiml/voice/gather/gather-4/gather-4.6.x.rb b/twiml/voice/gather/gather-4/gather-4.7.x.rb similarity index 100% rename from twiml/voice/gather/gather-4/gather-4.6.x.rb rename to twiml/voice/gather/gather-4/gather-4.7.x.rb diff --git a/twiml/voice/gather/gather-5/gather-6.6.x.rb b/twiml/voice/gather/gather-5/gather-6.7.x.rb similarity index 100% rename from twiml/voice/gather/gather-5/gather-6.6.x.rb rename to twiml/voice/gather/gather-5/gather-6.7.x.rb diff --git a/twiml/voice/hangup/hangup-1/hangup-1.6.x.rb b/twiml/voice/hangup/hangup-1/hangup-1.7.x.rb similarity index 100% rename from twiml/voice/hangup/hangup-1/hangup-1.6.x.rb rename to twiml/voice/hangup/hangup-1/hangup-1.7.x.rb diff --git a/twiml/voice/leave/leave-1/leave-1.6.x.rb b/twiml/voice/leave/leave-1/leave-1.7.x.rb similarity index 100% rename from twiml/voice/leave/leave-1/leave-1.6.x.rb rename to twiml/voice/leave/leave-1/leave-1.7.x.rb diff --git a/twiml/voice/leave/leave-2/leave-2.6.x.rb b/twiml/voice/leave/leave-2/leave-2.7.x.rb similarity index 100% rename from twiml/voice/leave/leave-2/leave-2.6.x.rb rename to twiml/voice/leave/leave-2/leave-2.7.x.rb diff --git a/twiml/voice/leave/leave-3/leave-3.6.x.rb b/twiml/voice/leave/leave-3/leave-3.7.x.rb similarity index 100% rename from twiml/voice/leave/leave-3/leave-3.6.x.rb rename to twiml/voice/leave/leave-3/leave-3.7.x.rb diff --git a/twiml/voice/number/number-1/number-1.6.x.rb b/twiml/voice/number/number-1/number-1.7.x.rb similarity index 100% rename from twiml/voice/number/number-1/number-1.6.x.rb rename to twiml/voice/number/number-1/number-1.7.x.rb diff --git a/twiml/voice/number/number-2/number-2.6.x.rb b/twiml/voice/number/number-2/number-2.7.x.rb similarity index 100% rename from twiml/voice/number/number-2/number-2.6.x.rb rename to twiml/voice/number/number-2/number-2.7.x.rb diff --git a/twiml/voice/number/number-3/number-3.6.x.rb b/twiml/voice/number/number-3/number-3.7.x.rb similarity index 100% rename from twiml/voice/number/number-3/number-3.6.x.rb rename to twiml/voice/number/number-3/number-3.7.x.rb diff --git a/twiml/voice/number/number-4/number-4.6.x.rb b/twiml/voice/number/number-4/number-4.7.x.rb similarity index 100% rename from twiml/voice/number/number-4/number-4.6.x.rb rename to twiml/voice/number/number-4/number-4.7.x.rb diff --git a/twiml/voice/number/number-5/number-6.6.x.rb b/twiml/voice/number/number-5/number-6.7.x.rb similarity index 100% rename from twiml/voice/number/number-5/number-6.6.x.rb rename to twiml/voice/number/number-5/number-6.7.x.rb diff --git a/twiml/voice/parameter/parameter-1/parameter-6.x.rb b/twiml/voice/parameter/parameter-1/parameter-7.x.rb similarity index 100% rename from twiml/voice/parameter/parameter-1/parameter-6.x.rb rename to twiml/voice/parameter/parameter-1/parameter-7.x.rb diff --git a/twiml/voice/pause/pause-1/pause-1.6.x.rb b/twiml/voice/pause/pause-1/pause-1.7.x.rb similarity index 100% rename from twiml/voice/pause/pause-1/pause-1.6.x.rb rename to twiml/voice/pause/pause-1/pause-1.7.x.rb diff --git a/twiml/voice/pause/pause-2/pause-2.6.x.rb b/twiml/voice/pause/pause-2/pause-2.7.x.rb similarity index 100% rename from twiml/voice/pause/pause-2/pause-2.6.x.rb rename to twiml/voice/pause/pause-2/pause-2.7.x.rb diff --git a/twiml/voice/pay/pay-1/pay-1.6.x.rb b/twiml/voice/pay/pay-1/pay-1.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-1/pay-1.6.x.rb rename to twiml/voice/pay/pay-1/pay-1.7.x.rb diff --git a/twiml/voice/pay/pay-2/pay-2.6.x.rb b/twiml/voice/pay/pay-2/pay-2.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-2/pay-2.6.x.rb rename to twiml/voice/pay/pay-2/pay-2.7.x.rb diff --git a/twiml/voice/pay/pay-3/pay-3.6.x.rb b/twiml/voice/pay/pay-3/pay-3.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-3/pay-3.6.x.rb rename to twiml/voice/pay/pay-3/pay-3.7.x.rb diff --git a/twiml/voice/pay/pay-4/pay-4.6.x.rb b/twiml/voice/pay/pay-4/pay-4.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-4/pay-4.6.x.rb rename to twiml/voice/pay/pay-4/pay-4.7.x.rb diff --git a/twiml/voice/pay/pay-5/pay-6.6.x.rb b/twiml/voice/pay/pay-5/pay-6.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-5/pay-6.6.x.rb rename to twiml/voice/pay/pay-5/pay-6.7.x.rb diff --git a/twiml/voice/pay/pay-6/pay-6.6.x.rb b/twiml/voice/pay/pay-6/pay-6.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-6/pay-6.6.x.rb rename to twiml/voice/pay/pay-6/pay-6.7.x.rb diff --git a/twiml/voice/pay/pay-7/pay-7.6.x.rb b/twiml/voice/pay/pay-7/pay-7.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-7/pay-7.6.x.rb rename to twiml/voice/pay/pay-7/pay-7.7.x.rb diff --git a/twiml/voice/pay/pay-8/pay-8.6.x.rb b/twiml/voice/pay/pay-8/pay-8.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-8/pay-8.6.x.rb rename to twiml/voice/pay/pay-8/pay-8.7.x.rb diff --git a/twiml/voice/pay/pay-9/pay-9.6.x.rb b/twiml/voice/pay/pay-9/pay-9.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-9/pay-9.6.x.rb rename to twiml/voice/pay/pay-9/pay-9.7.x.rb diff --git a/twiml/voice/pay/pay-charge-connector/pay-charge-connector.6.x.rb b/twiml/voice/pay/pay-charge-connector/pay-charge-connector.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-charge-connector/pay-charge-connector.6.x.rb rename to twiml/voice/pay/pay-charge-connector/pay-charge-connector.7.x.rb diff --git a/twiml/voice/pay/pay-parameter/pay-parameter.6.x.rb b/twiml/voice/pay/pay-parameter/pay-parameter.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-parameter/pay-parameter.6.x.rb rename to twiml/voice/pay/pay-parameter/pay-parameter.7.x.rb diff --git a/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.6.x.rb b/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.6.x.rb rename to twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.7.x.rb diff --git a/twiml/voice/pay/pay-tokenize/pay-tokenize.6.x.rb b/twiml/voice/pay/pay-tokenize/pay-tokenize.7.x.rb similarity index 100% rename from twiml/voice/pay/pay-tokenize/pay-tokenize.6.x.rb rename to twiml/voice/pay/pay-tokenize/pay-tokenize.7.x.rb diff --git a/twiml/voice/pay/prompt/full-example-ach/full-example-ach.6.x.rb b/twiml/voice/pay/prompt/full-example-ach/full-example-ach.7.x.rb similarity index 100% rename from twiml/voice/pay/prompt/full-example-ach/full-example-ach.6.x.rb rename to twiml/voice/pay/prompt/full-example-ach/full-example-ach.7.x.rb diff --git a/twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.6.x.rb b/twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.7.x.rb similarity index 100% rename from twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.6.x.rb rename to twiml/voice/pay/prompt/full-example-credit-card/full-example-credit-card.7.x.rb diff --git a/twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.6.x.rb b/twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.7.x.rb similarity index 100% rename from twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.6.x.rb rename to twiml/voice/pay/prompt/requireMatchingInputs/basic/prompt-requireMatchingInputs-basic.7.x.rb diff --git a/twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.6.x.rb b/twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.7.x.rb similarity index 100% rename from twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.6.x.rb rename to twiml/voice/pay/prompt/requireMatchingInputs/with-errorType/prompt-requireMatchingInputs-errorType.7.x.rb diff --git a/twiml/voice/play/play-1/play-1.6.x.rb b/twiml/voice/play/play-1/play-1.7.x.rb similarity index 100% rename from twiml/voice/play/play-1/play-1.6.x.rb rename to twiml/voice/play/play-1/play-1.7.x.rb diff --git a/twiml/voice/play/play-2/play-2.6.x.rb b/twiml/voice/play/play-2/play-2.7.x.rb similarity index 100% rename from twiml/voice/play/play-2/play-2.6.x.rb rename to twiml/voice/play/play-2/play-2.7.x.rb diff --git a/twiml/voice/play/play-3/play-3.6.x.rb b/twiml/voice/play/play-3/play-3.7.x.rb similarity index 100% rename from twiml/voice/play/play-3/play-3.6.x.rb rename to twiml/voice/play/play-3/play-3.7.x.rb diff --git a/twiml/voice/queue/queue-1/queue-1.6.x.rb b/twiml/voice/queue/queue-1/queue-1.7.x.rb similarity index 100% rename from twiml/voice/queue/queue-1/queue-1.6.x.rb rename to twiml/voice/queue/queue-1/queue-1.7.x.rb diff --git a/twiml/voice/queue/queue-2/queue-2.6.x.rb b/twiml/voice/queue/queue-2/queue-2.7.x.rb similarity index 100% rename from twiml/voice/queue/queue-2/queue-2.6.x.rb rename to twiml/voice/queue/queue-2/queue-2.7.x.rb diff --git a/twiml/voice/record/record-1/record-1.6.x.rb b/twiml/voice/record/record-1/record-1.7.x.rb similarity index 100% rename from twiml/voice/record/record-1/record-1.6.x.rb rename to twiml/voice/record/record-1/record-1.7.x.rb diff --git a/twiml/voice/record/record-2/record-2.6.x.rb b/twiml/voice/record/record-2/record-2.7.x.rb similarity index 100% rename from twiml/voice/record/record-2/record-2.6.x.rb rename to twiml/voice/record/record-2/record-2.7.x.rb diff --git a/twiml/voice/record/record-3/record-3.6.x.rb b/twiml/voice/record/record-3/record-3.7.x.rb similarity index 100% rename from twiml/voice/record/record-3/record-3.6.x.rb rename to twiml/voice/record/record-3/record-3.7.x.rb diff --git a/twiml/voice/record/record-4/record-4.6.x.rb b/twiml/voice/record/record-4/record-4.7.x.rb similarity index 100% rename from twiml/voice/record/record-4/record-4.6.x.rb rename to twiml/voice/record/record-4/record-4.7.x.rb diff --git a/twiml/voice/redirect/redirect-1/redirect-1.6.x.rb b/twiml/voice/redirect/redirect-1/redirect-1.7.x.rb similarity index 100% rename from twiml/voice/redirect/redirect-1/redirect-1.6.x.rb rename to twiml/voice/redirect/redirect-1/redirect-1.7.x.rb diff --git a/twiml/voice/redirect/redirect-2/redirect-2.6.x.rb b/twiml/voice/redirect/redirect-2/redirect-2.7.x.rb similarity index 100% rename from twiml/voice/redirect/redirect-2/redirect-2.6.x.rb rename to twiml/voice/redirect/redirect-2/redirect-2.7.x.rb diff --git a/twiml/voice/redirect/redirect-3/redirect-3.6.x.rb b/twiml/voice/redirect/redirect-3/redirect-3.7.x.rb similarity index 100% rename from twiml/voice/redirect/redirect-3/redirect-3.6.x.rb rename to twiml/voice/redirect/redirect-3/redirect-3.7.x.rb diff --git a/twiml/voice/refer/refer-1/refer-1.6.x.rb b/twiml/voice/refer/refer-1/refer-1.7.x.rb similarity index 100% rename from twiml/voice/refer/refer-1/refer-1.6.x.rb rename to twiml/voice/refer/refer-1/refer-1.7.x.rb diff --git a/twiml/voice/refer/refer-2/refer-2.6.x.rb b/twiml/voice/refer/refer-2/refer-2.7.x.rb similarity index 100% rename from twiml/voice/refer/refer-2/refer-2.6.x.rb rename to twiml/voice/refer/refer-2/refer-2.7.x.rb diff --git a/twiml/voice/refer/refer-3/refer-3.6.x.rb b/twiml/voice/refer/refer-3/refer-3.7.x.rb similarity index 100% rename from twiml/voice/refer/refer-3/refer-3.6.x.rb rename to twiml/voice/refer/refer-3/refer-3.7.x.rb diff --git a/twiml/voice/refer/refer-4/refer-4.6.x.rb b/twiml/voice/refer/refer-4/refer-4.7.x.rb similarity index 100% rename from twiml/voice/refer/refer-4/refer-4.6.x.rb rename to twiml/voice/refer/refer-4/refer-4.7.x.rb diff --git a/twiml/voice/reject/reject-1/reject-1.6.x.rb b/twiml/voice/reject/reject-1/reject-1.7.x.rb similarity index 100% rename from twiml/voice/reject/reject-1/reject-1.6.x.rb rename to twiml/voice/reject/reject-1/reject-1.7.x.rb diff --git a/twiml/voice/reject/reject-2/reject-2.6.x.rb b/twiml/voice/reject/reject-2/reject-2.7.x.rb similarity index 100% rename from twiml/voice/reject/reject-2/reject-2.6.x.rb rename to twiml/voice/reject/reject-2/reject-2.7.x.rb diff --git a/twiml/voice/say/say-basic-usage/say-basic-usage.6.x.rb b/twiml/voice/say/say-basic-usage/say-basic-usage.7.x.rb similarity index 100% rename from twiml/voice/say/say-basic-usage/say-basic-usage.6.x.rb rename to twiml/voice/say/say-basic-usage/say-basic-usage.7.x.rb diff --git a/twiml/voice/say/say-language/say-language.6.x.rb b/twiml/voice/say/say-language/say-language.7.x.rb similarity index 100% rename from twiml/voice/say/say-language/say-language.6.x.rb rename to twiml/voice/say/say-language/say-language.7.x.rb diff --git a/twiml/voice/say/say-loop/say-loop.6.x.rb b/twiml/voice/say/say-loop/say-loop.7.x.rb similarity index 100% rename from twiml/voice/say/say-loop/say-loop.6.x.rb rename to twiml/voice/say/say-loop/say-loop.7.x.rb diff --git a/twiml/voice/say/say-voice/say-voice.6.x.rb b/twiml/voice/say/say-voice/say-voice.7.x.rb similarity index 100% rename from twiml/voice/say/say-voice/say-voice.6.x.rb rename to twiml/voice/say/say-voice/say-voice.7.x.rb diff --git a/twiml/voice/say/ssml/ssml.6.x.rb b/twiml/voice/say/ssml/ssml.7.x.rb similarity index 100% rename from twiml/voice/say/ssml/ssml.6.x.rb rename to twiml/voice/say/ssml/ssml.7.x.rb diff --git a/twiml/voice/sim/sim-1/sim-1.6.x.rb b/twiml/voice/sim/sim-1/sim-1.7.x.rb similarity index 100% rename from twiml/voice/sim/sim-1/sim-1.6.x.rb rename to twiml/voice/sim/sim-1/sim-1.7.x.rb diff --git a/twiml/voice/sim/sim-2/sim-2.6.x.rb b/twiml/voice/sim/sim-2/sim-2.7.x.rb similarity index 100% rename from twiml/voice/sim/sim-2/sim-2.6.x.rb rename to twiml/voice/sim/sim-2/sim-2.7.x.rb diff --git a/twiml/voice/sip/sip-1/sip-1.6.x.rb b/twiml/voice/sip/sip-1/sip-1.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-1/sip-1.6.x.rb rename to twiml/voice/sip/sip-1/sip-1.7.x.rb diff --git a/twiml/voice/sip/sip-10/sip-10.6.x.rb b/twiml/voice/sip/sip-10/sip-10.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-10/sip-10.6.x.rb rename to twiml/voice/sip/sip-10/sip-10.7.x.rb diff --git a/twiml/voice/sip/sip-11/sip-11.6.x.rb b/twiml/voice/sip/sip-11/sip-11.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-11/sip-11.6.x.rb rename to twiml/voice/sip/sip-11/sip-11.7.x.rb diff --git a/twiml/voice/sip/sip-2/sip-2.6.x.rb b/twiml/voice/sip/sip-2/sip-2.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-2/sip-2.6.x.rb rename to twiml/voice/sip/sip-2/sip-2.7.x.rb diff --git a/twiml/voice/sip/sip-3/sip-3.6.x.rb b/twiml/voice/sip/sip-3/sip-3.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-3/sip-3.6.x.rb rename to twiml/voice/sip/sip-3/sip-3.7.x.rb diff --git a/twiml/voice/sip/sip-4/sip-4.6.x.rb b/twiml/voice/sip/sip-4/sip-4.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-4/sip-4.6.x.rb rename to twiml/voice/sip/sip-4/sip-4.7.x.rb diff --git a/twiml/voice/sip/sip-5/sip-6.6.x.rb b/twiml/voice/sip/sip-5/sip-6.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-5/sip-6.6.x.rb rename to twiml/voice/sip/sip-5/sip-6.7.x.rb diff --git a/twiml/voice/sip/sip-6/sip-6.6.x.rb b/twiml/voice/sip/sip-6/sip-6.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-6/sip-6.6.x.rb rename to twiml/voice/sip/sip-6/sip-6.7.x.rb diff --git a/twiml/voice/sip/sip-7/sip-7.6.x.rb b/twiml/voice/sip/sip-7/sip-7.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-7/sip-7.6.x.rb rename to twiml/voice/sip/sip-7/sip-7.7.x.rb diff --git a/twiml/voice/sip/sip-8/sip-8.6.x.rb b/twiml/voice/sip/sip-8/sip-8.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-8/sip-8.6.x.rb rename to twiml/voice/sip/sip-8/sip-8.7.x.rb diff --git a/twiml/voice/sip/sip-9/sip-9.6.x.rb b/twiml/voice/sip/sip-9/sip-9.7.x.rb similarity index 100% rename from twiml/voice/sip/sip-9/sip-9.6.x.rb rename to twiml/voice/sip/sip-9/sip-9.7.x.rb diff --git a/twiml/voice/siprec/siprec-1/siprec-1.6.x.rb b/twiml/voice/siprec/siprec-1/siprec-1.7.x.rb similarity index 100% rename from twiml/voice/siprec/siprec-1/siprec-1.6.x.rb rename to twiml/voice/siprec/siprec-1/siprec-1.7.x.rb diff --git a/twiml/voice/sms/sms-1/sms-1.6.x.rb b/twiml/voice/sms/sms-1/sms-1.7.x.rb similarity index 100% rename from twiml/voice/sms/sms-1/sms-1.6.x.rb rename to twiml/voice/sms/sms-1/sms-1.7.x.rb diff --git a/twiml/voice/sms/sms-2/sms-2.6.x.rb b/twiml/voice/sms/sms-2/sms-2.7.x.rb similarity index 100% rename from twiml/voice/sms/sms-2/sms-2.6.x.rb rename to twiml/voice/sms/sms-2/sms-2.7.x.rb diff --git a/twiml/voice/sms/sms-3/sms-3.6.x.rb b/twiml/voice/sms/sms-3/sms-3.7.x.rb similarity index 100% rename from twiml/voice/sms/sms-3/sms-3.6.x.rb rename to twiml/voice/sms/sms-3/sms-3.7.x.rb diff --git a/twiml/voice/sms/sms-4/sms-4.6.x.rb b/twiml/voice/sms/sms-4/sms-4.7.x.rb similarity index 100% rename from twiml/voice/sms/sms-4/sms-4.6.x.rb rename to twiml/voice/sms/sms-4/sms-4.7.x.rb diff --git a/twiml/voice/stream/stream-1/stream-1.6.x.rb b/twiml/voice/stream/stream-1/stream-1.7.x.rb similarity index 100% rename from twiml/voice/stream/stream-1/stream-1.6.x.rb rename to twiml/voice/stream/stream-1/stream-1.7.x.rb diff --git a/twiml/voice/stream/stream-2/stream-2.6.x.rb b/twiml/voice/stream/stream-2/stream-2.7.x.rb similarity index 100% rename from twiml/voice/stream/stream-2/stream-2.6.x.rb rename to twiml/voice/stream/stream-2/stream-2.7.x.rb diff --git a/twiml/voice/your-response/your-response-1/your-response-1.6.x.rb b/twiml/voice/your-response/your-response-1/your-response-1.7.x.rb similarity index 100% rename from twiml/voice/your-response/your-response-1/your-response-1.6.x.rb rename to twiml/voice/your-response/your-response-1/your-response-1.7.x.rb diff --git a/twiml/voice/your-response/your-response-2/your-response-2.6.x.rb b/twiml/voice/your-response/your-response-2/your-response-2.7.x.rb similarity index 100% rename from twiml/voice/your-response/your-response-2/your-response-2.6.x.rb rename to twiml/voice/your-response/your-response-2/your-response-2.7.x.rb diff --git a/two-factor-authentication/verify-webhook/verify-webhook.6.x.rb b/two-factor-authentication/verify-webhook/verify-webhook.7.x.rb similarity index 100% rename from two-factor-authentication/verify-webhook/verify-webhook.6.x.rb rename to two-factor-authentication/verify-webhook/verify-webhook.7.x.rb diff --git a/verify/verifications/approve-verification/approve-verification.6.x.rb b/verify/verifications/approve-verification/approve-verification.7.x.rb similarity index 100% rename from verify/verifications/approve-verification/approve-verification.6.x.rb rename to verify/verifications/approve-verification/approve-verification.7.x.rb diff --git a/video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.6.x.rb b/video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.7.x.rb similarity index 100% rename from video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.6.x.rb rename to video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.7.x.rb diff --git a/video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.6.x.rb b/video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.7.x.rb similarity index 100% rename from video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.6.x.rb rename to video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.7.x.rb diff --git a/video/rest/compositionhooks/delete-hook/delete-hook.6.x.rb b/video/rest/compositionhooks/delete-hook/delete-hook.7.x.rb similarity index 100% rename from video/rest/compositionhooks/delete-hook/delete-hook.6.x.rb rename to video/rest/compositionhooks/delete-hook/delete-hook.7.x.rb diff --git a/video/rest/compositionhooks/get-hook/get-hook.6.x.rb b/video/rest/compositionhooks/get-hook/get-hook.7.x.rb similarity index 100% rename from video/rest/compositionhooks/get-hook/get-hook.6.x.rb rename to video/rest/compositionhooks/get-hook/get-hook.7.x.rb diff --git a/video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.6.x.rb b/video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.7.x.rb similarity index 100% rename from video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.6.x.rb rename to video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.7.x.rb diff --git a/video/rest/compositionhooks/list-hooks/list-hooks.6.x.rb b/video/rest/compositionhooks/list-hooks/list-hooks.7.x.rb similarity index 100% rename from video/rest/compositionhooks/list-hooks/list-hooks.6.x.rb rename to video/rest/compositionhooks/list-hooks/list-hooks.7.x.rb diff --git a/video/rest/compositionhooks/update-hook/update-hook.6.x.rb b/video/rest/compositionhooks/update-hook/update-hook.7.x.rb similarity index 100% rename from video/rest/compositionhooks/update-hook/update-hook.6.x.rb rename to video/rest/compositionhooks/update-hook/update-hook.7.x.rb diff --git a/video/rest/compositions/compose-chess/compose-chess.6.x.rb b/video/rest/compositions/compose-chess/compose-chess.7.x.rb similarity index 100% rename from video/rest/compositions/compose-chess/compose-chess.6.x.rb rename to video/rest/compositions/compose-chess/compose-chess.7.x.rb diff --git a/video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.6.x.rb b/video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.7.x.rb similarity index 100% rename from video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.6.x.rb rename to video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.7.x.rb diff --git a/video/rest/compositions/compose-main-with-row/compose-main-with-row.6.x.rb b/video/rest/compositions/compose-main-with-row/compose-main-with-row.7.x.rb similarity index 100% rename from video/rest/compositions/compose-main-with-row/compose-main-with-row.6.x.rb rename to video/rest/compositions/compose-main-with-row/compose-main-with-row.7.x.rb diff --git a/video/rest/compositions/compose-mosaic/compose-mosaic.6.x.rb b/video/rest/compositions/compose-mosaic/compose-mosaic.7.x.rb similarity index 100% rename from video/rest/compositions/compose-mosaic/compose-mosaic.6.x.rb rename to video/rest/compositions/compose-mosaic/compose-mosaic.7.x.rb diff --git a/video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.6.x.rb b/video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.7.x.rb similarity index 100% rename from video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.6.x.rb rename to video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.7.x.rb diff --git a/video/rest/compositions/compose-participant/compose-participant.6.x.rb b/video/rest/compositions/compose-participant/compose-participant.7.x.rb similarity index 100% rename from video/rest/compositions/compose-participant/compose-participant.6.x.rb rename to video/rest/compositions/compose-participant/compose-participant.7.x.rb diff --git a/video/rest/compositions/compose-pip/compose-pip.6.x.rb b/video/rest/compositions/compose-pip/compose-pip.7.x.rb similarity index 100% rename from video/rest/compositions/compose-pip/compose-pip.6.x.rb rename to video/rest/compositions/compose-pip/compose-pip.7.x.rb diff --git a/video/rest/compositions/compose-room/compose-room.6.x.rb b/video/rest/compositions/compose-room/compose-room.7.x.rb similarity index 100% rename from video/rest/compositions/compose-room/compose-room.6.x.rb rename to video/rest/compositions/compose-room/compose-room.7.x.rb diff --git a/video/rest/compositions/compose-set-as-row/compose-set-as-row.6.x.rb b/video/rest/compositions/compose-set-as-row/compose-set-as-row.7.x.rb similarity index 100% rename from video/rest/compositions/compose-set-as-row/compose-set-as-row.6.x.rb rename to video/rest/compositions/compose-set-as-row/compose-set-as-row.7.x.rb diff --git a/video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.6.x.rb b/video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.7.x.rb similarity index 100% rename from video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.6.x.rb rename to video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.7.x.rb diff --git a/video/rest/compositions/delete-composition/delete-composition.6.x.rb b/video/rest/compositions/delete-composition/delete-composition.7.x.rb similarity index 100% rename from video/rest/compositions/delete-composition/delete-composition.6.x.rb rename to video/rest/compositions/delete-composition/delete-composition.7.x.rb diff --git a/video/rest/compositions/get-completed-compositions/get-completed-compositions.6.x.rb b/video/rest/compositions/get-completed-compositions/get-completed-compositions.7.x.rb similarity index 100% rename from video/rest/compositions/get-completed-compositions/get-completed-compositions.6.x.rb rename to video/rest/compositions/get-completed-compositions/get-completed-compositions.7.x.rb diff --git a/video/rest/compositions/get-composition-media-file/get-composition-media-file.6.x.rb b/video/rest/compositions/get-composition-media-file/get-composition-media-file.7.x.rb similarity index 100% rename from video/rest/compositions/get-composition-media-file/get-composition-media-file.6.x.rb rename to video/rest/compositions/get-composition-media-file/get-composition-media-file.7.x.rb diff --git a/video/rest/compositions/get-composition/get-composition.6.x.rb b/video/rest/compositions/get-composition/get-composition.7.x.rb similarity index 100% rename from video/rest/compositions/get-composition/get-composition.6.x.rb rename to video/rest/compositions/get-composition/get-composition.7.x.rb diff --git a/video/rest/compositions/get-room-compositions/get-room-compositions.6.x.rb b/video/rest/compositions/get-room-compositions/get-room-compositions.7.x.rb similarity index 100% rename from video/rest/compositions/get-room-compositions/get-room-compositions.6.x.rb rename to video/rest/compositions/get-room-compositions/get-room-compositions.7.x.rb diff --git a/video/rest/compositions/transcode-audio-recording/transcode-audio-recording.6.x.rb b/video/rest/compositions/transcode-audio-recording/transcode-audio-recording.7.x.rb similarity index 100% rename from video/rest/compositions/transcode-audio-recording/transcode-audio-recording.6.x.rb rename to video/rest/compositions/transcode-audio-recording/transcode-audio-recording.7.x.rb diff --git a/video/rest/compositions/transcode-video-recording/transcode-video-recording.6.x.rb b/video/rest/compositions/transcode-video-recording/transcode-video-recording.7.x.rb similarity index 100% rename from video/rest/compositions/transcode-video-recording/transcode-video-recording.6.x.rb rename to video/rest/compositions/transcode-video-recording/transcode-video-recording.7.x.rb diff --git a/video/rest/recordings/delete-recording/delete-recording.6.x.rb b/video/rest/recordings/delete-recording/delete-recording.7.x.rb similarity index 100% rename from video/rest/recordings/delete-recording/delete-recording.6.x.rb rename to video/rest/recordings/delete-recording/delete-recording.7.x.rb diff --git a/video/rest/recordings/list-deleted-recordings/list-deleted-recordings.6.x.rb b/video/rest/recordings/list-deleted-recordings/list-deleted-recordings.7.x.rb similarity index 100% rename from video/rest/recordings/list-deleted-recordings/list-deleted-recordings.6.x.rb rename to video/rest/recordings/list-deleted-recordings/list-deleted-recordings.7.x.rb diff --git a/video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.6.x.rb b/video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.7.x.rb similarity index 100% rename from video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.6.x.rb rename to video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.7.x.rb diff --git a/video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.6.x.rb b/video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.7.x.rb similarity index 100% rename from video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.6.x.rb rename to video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.7.x.rb diff --git a/video/rest/recordings/list-recordings-for-room/list-recordings-for-room.6.x.rb b/video/rest/recordings/list-recordings-for-room/list-recordings-for-room.7.x.rb similarity index 100% rename from video/rest/recordings/list-recordings-for-room/list-recordings-for-room.6.x.rb rename to video/rest/recordings/list-recordings-for-room/list-recordings-for-room.7.x.rb diff --git a/video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.6.x.rb b/video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.7.x.rb similarity index 100% rename from video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.6.x.rb rename to video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.7.x.rb diff --git a/video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.6.x.rb b/video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.7.x.rb similarity index 100% rename from video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.6.x.rb rename to video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.7.x.rb diff --git a/video/rest/rooms/create-group-room-with-h264/create-group-room.6.x.rb b/video/rest/rooms/create-group-room-with-h264/create-group-room.7.x.rb similarity index 100% rename from video/rest/rooms/create-group-room-with-h264/create-group-room.6.x.rb rename to video/rest/rooms/create-group-room-with-h264/create-group-room.7.x.rb diff --git a/video/rest/rooms/create-group-room/create-group-room.6.x.rb b/video/rest/rooms/create-group-room/create-group-room.7.x.rb similarity index 100% rename from video/rest/rooms/create-group-room/create-group-room.6.x.rb rename to video/rest/rooms/create-group-room/create-group-room.7.x.rb diff --git a/video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.6.x.rb b/video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.7.x.rb similarity index 100% rename from video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.6.x.rb rename to video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.7.x.rb diff --git a/video/rest/rooms/create-room/create-room.6.x.rb b/video/rest/rooms/create-room/create-room.7.x.rb similarity index 100% rename from video/rest/rooms/create-room/create-room.6.x.rb rename to video/rest/rooms/create-room/create-room.7.x.rb diff --git a/video/rest/rooms/list-room-recordings/list-room-recordings.6.x.rb b/video/rest/rooms/list-room-recordings/list-room-recordings.7.x.rb similarity index 100% rename from video/rest/rooms/list-room-recordings/list-room-recordings.6.x.rb rename to video/rest/rooms/list-room-recordings/list-room-recordings.7.x.rb diff --git a/video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.6.x.rb b/video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.7.x.rb similarity index 100% rename from video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.6.x.rb rename to video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.7.x.rb diff --git a/video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.6.x.rb b/video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.7.x.rb similarity index 100% rename from video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.6.x.rb rename to video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.7.x.rb diff --git a/video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.6.x.rb b/video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.7.x.rb similarity index 100% rename from video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.6.x.rb rename to video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.7.x.rb diff --git a/video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.6.x.rb b/video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.7.x.rb similarity index 100% rename from video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.6.x.rb rename to video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.7.x.rb diff --git a/video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.6.x.rb b/video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.7.x.rb similarity index 100% rename from video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.6.x.rb rename to video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.7.x.rb diff --git a/video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.6.x.rb b/video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.7.x.rb similarity index 100% rename from video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.6.x.rb rename to video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.7.x.rb diff --git a/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.6.x.rb b/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.7.x.rb similarity index 100% rename from video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.6.x.rb rename to video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.7.x.rb diff --git a/video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.6.x.rb b/video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.7.x.rb similarity index 100% rename from video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.6.x.rb rename to video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.7.x.rb diff --git a/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.6.x.rb b/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.7.x.rb similarity index 100% rename from video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.6.x.rb rename to video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.7.x.rb diff --git a/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.6.x.rb b/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.7.x.rb similarity index 100% rename from video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.6.x.rb rename to video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.7.x.rb diff --git a/video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.6.x.rb b/video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.7.x.rb similarity index 100% rename from video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.6.x.rb rename to video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.7.x.rb diff --git a/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.6.x.rb b/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.7.x.rb similarity index 100% rename from video/rest/rooms/recording-rules-start-all/recording-rules-start-all.6.x.rb rename to video/rest/rooms/recording-rules-start-all/recording-rules-start-all.7.x.rb diff --git a/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.6.x.rb b/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.7.x.rb similarity index 100% rename from video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.6.x.rb rename to video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.7.x.rb diff --git a/video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.6.x.rb b/video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.7.x.rb similarity index 100% rename from video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.6.x.rb rename to video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.7.x.rb diff --git a/video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.6.x.rb b/video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.7.x.rb similarity index 100% rename from video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.6.x.rb rename to video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.7.x.rb diff --git a/video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.6.x.rb b/video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.7.x.rb similarity index 100% rename from video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.6.x.rb rename to video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.7.x.rb diff --git a/video/rest/rooms/retrieve-room-recording/retrieve-room-recording.6.x.rb b/video/rest/rooms/retrieve-room-recording/retrieve-room-recording.7.x.rb similarity index 100% rename from video/rest/rooms/retrieve-room-recording/retrieve-room-recording.6.x.rb rename to video/rest/rooms/retrieve-room-recording/retrieve-room-recording.7.x.rb diff --git a/video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.6.x.rb b/video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.7.x.rb similarity index 100% rename from video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.6.x.rb rename to video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.7.x.rb diff --git a/video/users/token-generation-server-rooms/token-generation-server.6.x.rb b/video/users/token-generation-server-rooms/token-generation-server.7.x.rb similarity index 100% rename from video/users/token-generation-server-rooms/token-generation-server.6.x.rb rename to video/users/token-generation-server-rooms/token-generation-server.7.x.rb diff --git a/video/users/token-generation-server/token-generation-server.6.x.rb b/video/users/token-generation-server/token-generation-server.7.x.rb similarity index 100% rename from video/users/token-generation-server/token-generation-server.6.x.rb rename to video/users/token-generation-server/token-generation-server.7.x.rb diff --git a/voice/queueing/agent/queue-agent.6.x.rb b/voice/queueing/agent/queue-agent.7.x.rb similarity index 100% rename from voice/queueing/agent/queue-agent.6.x.rb rename to voice/queueing/agent/queue-agent.7.x.rb diff --git a/voice/queueing/caller/queue-caller.6.x.rb b/voice/queueing/caller/queue-caller.7.x.rb similarity index 100% rename from voice/queueing/caller/queue-caller.6.x.rb rename to voice/queueing/caller/queue-caller.7.x.rb diff --git a/voice/queueing/redirect/queue-redirect.6.x.rb b/voice/queueing/redirect/queue-redirect.7.x.rb similarity index 100% rename from voice/queueing/redirect/queue-redirect.6.x.rb rename to voice/queueing/redirect/queue-redirect.7.x.rb diff --git a/voice/specify-edge/specify-edge.6.x.rb b/voice/specify-edge/specify-edge.7.x.rb similarity index 100% rename from voice/specify-edge/specify-edge.6.x.rb rename to voice/specify-edge/specify-edge.7.x.rb diff --git a/wireless/commands/create-binary-example-1/create-binary-example-1.6.x.rb b/wireless/commands/create-binary-example-1/create-binary-example-1.7.x.rb similarity index 100% rename from wireless/commands/create-binary-example-1/create-binary-example-1.6.x.rb rename to wireless/commands/create-binary-example-1/create-binary-example-1.7.x.rb diff --git a/wireless/commands/create-text-example-1/create-text-example-1.6.x.rb b/wireless/commands/create-text-example-1/create-text-example-1.7.x.rb similarity index 100% rename from wireless/commands/create-text-example-1/create-text-example-1.6.x.rb rename to wireless/commands/create-text-example-1/create-text-example-1.7.x.rb diff --git a/wireless/commands/instance-get-example-1/instance-get-example-1.6.x.rb b/wireless/commands/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from wireless/commands/instance-get-example-1/instance-get-example-1.6.x.rb rename to wireless/commands/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/wireless/commands/list-example-1/list-example-1.6.x.rb b/wireless/commands/list-example-1/list-example-1.7.x.rb similarity index 100% rename from wireless/commands/list-example-1/list-example-1.6.x.rb rename to wireless/commands/list-example-1/list-example-1.7.x.rb diff --git a/wireless/rateplans/create-example-1/create-example-1.6.x.rb b/wireless/rateplans/create-example-1/create-example-1.7.x.rb similarity index 100% rename from wireless/rateplans/create-example-1/create-example-1.6.x.rb rename to wireless/rateplans/create-example-1/create-example-1.7.x.rb diff --git a/wireless/rateplans/instance-delete-example-1/delete-example-1.6.x.rb b/wireless/rateplans/instance-delete-example-1/delete-example-1.7.x.rb similarity index 100% rename from wireless/rateplans/instance-delete-example-1/delete-example-1.6.x.rb rename to wireless/rateplans/instance-delete-example-1/delete-example-1.7.x.rb diff --git a/wireless/rateplans/instance-get-example-1/instance-get-example-1.6.x.rb b/wireless/rateplans/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from wireless/rateplans/instance-get-example-1/instance-get-example-1.6.x.rb rename to wireless/rateplans/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/wireless/rateplans/instance-get-example-2/instance-get-example-2.6.x.rb b/wireless/rateplans/instance-get-example-2/instance-get-example-2.7.x.rb similarity index 100% rename from wireless/rateplans/instance-get-example-2/instance-get-example-2.6.x.rb rename to wireless/rateplans/instance-get-example-2/instance-get-example-2.7.x.rb diff --git a/wireless/rateplans/list-example-1/list-example-1.6.x.rb b/wireless/rateplans/list-example-1/list-example-1.7.x.rb similarity index 100% rename from wireless/rateplans/list-example-1/list-example-1.6.x.rb rename to wireless/rateplans/list-example-1/list-example-1.7.x.rb diff --git a/wireless/sims-data-session/list-example-1/list-example-1.6.x.rb b/wireless/sims-data-session/list-example-1/list-example-1.7.x.rb similarity index 100% rename from wireless/sims-data-session/list-example-1/list-example-1.6.x.rb rename to wireless/sims-data-session/list-example-1/list-example-1.7.x.rb diff --git a/wireless/sims-usage-record/list-example-1/list-example-1.6.x.rb b/wireless/sims-usage-record/list-example-1/list-example-1.7.x.rb similarity index 100% rename from wireless/sims-usage-record/list-example-1/list-example-1.6.x.rb rename to wireless/sims-usage-record/list-example-1/list-example-1.7.x.rb diff --git a/wireless/sims/instance-get-example-1/instance-get-example-1.6.x.rb b/wireless/sims/instance-get-example-1/instance-get-example-1.7.x.rb similarity index 100% rename from wireless/sims/instance-get-example-1/instance-get-example-1.6.x.rb rename to wireless/sims/instance-get-example-1/instance-get-example-1.7.x.rb diff --git a/wireless/sims/instance-get-example-2/instance-get-example-2.6.x.rb b/wireless/sims/instance-get-example-2/instance-get-example-2.7.x.rb similarity index 100% rename from wireless/sims/instance-get-example-2/instance-get-example-2.6.x.rb rename to wireless/sims/instance-get-example-2/instance-get-example-2.7.x.rb diff --git a/wireless/sims/instance-post-example-1/instance-post-example-1.6.x.rb b/wireless/sims/instance-post-example-1/instance-post-example-1.7.x.rb similarity index 100% rename from wireless/sims/instance-post-example-1/instance-post-example-1.6.x.rb rename to wireless/sims/instance-post-example-1/instance-post-example-1.7.x.rb diff --git a/wireless/sims/list-example-1/list-example-1.6.x.rb b/wireless/sims/list-example-1/list-example-1.7.x.rb similarity index 100% rename from wireless/sims/list-example-1/list-example-1.6.x.rb rename to wireless/sims/list-example-1/list-example-1.7.x.rb From e062e28e19e02ddbe28d8b20b9ef3151cacdbec3 Mon Sep 17 00:00:00 2001 From: Shubham Tiwari Date: Thu, 4 Apr 2024 18:36:14 +0530 Subject: [PATCH 07/95] chore: bumped php version to 8.x --- README.md | 2 +- ....x.php => payfone-tcpa-compliance.8.x.php} | 0 .../{api-auth.7.x.php => api-auth.8.x.php} | 0 ...token.7.x.php => capability-token.8.x.php} | 0 ...token.7.x.php => capability-token.8.x.php} | 0 ...token.7.x.php => capability-token.8.x.php} | 0 ...token.7.x.php => capability-token.8.x.php} | 0 ....7.x.php => response-twiml-client.8.x.php} | 0 ...al.7.x.php => response-twiml-dial.8.x.php} | 0 ...e-twiml.7.x.php => response-twiml.8.x.php} | 0 ...cument.7.x.php => create-document.8.x.php} | 0 ...cument.7.x.php => update-document.8.x.php} | 0 ...ate.7.x.php => create-certificate.8.x.php} | 0 ...ate.7.x.php => delete-certificate.8.x.php} | 0 ...ates.7.x.php => list-certificates.8.x.php} | 0 ...e.7.x.php => retrieve-certificate.8.x.php} | 0 ...ate.7.x.php => update-certificate.8.x.php} | 0 ...ment.7.x.php => create-deployment.8.x.php} | 0 ...ment.7.x.php => delete-deployment.8.x.php} | 0 ...ments.7.x.php => list-deployments.8.x.php} | 0 ...nt.7.x.php => retrieve-deployment.8.x.php} | 0 ...ment.7.x.php => update-deployment.8.x.php} | 0 ...e-device.7.x.php => create-device.8.x.php} | 0 ...e-device.7.x.php => delete-device.8.x.php} | 0 ...t-devices.7.x.php => list-devices.8.x.php} | 0 ...device.7.x.php => retrieve-device.8.x.php} | 0 ...e-device.7.x.php => update-device.8.x.php} | 0 ...ate-fleet.7.x.php => create-fleet.8.x.php} | 0 ...ete-fleet.7.x.php => delete-fleet.8.x.php} | 0 ...ist-fleets.7.x.php => list-fleets.8.x.php} | 0 ...e-fleet.7.x.php => retrieve-fleet.8.x.php} | 0 ...ate-fleet.7.x.php => update-fleet.8.x.php} | 0 ...{create-key.7.x.php => create-key.8.x.php} | 0 ...{delete-key.7.x.php => delete-key.8.x.php} | 0 .../{list-key.7.x.php => list-key.8.x.php} | 0 ...rieve-key.7.x.php => retrieve-key.8.x.php} | 0 ...{update-key.7.x.php => update-key.8.x.php} | 0 ...-receive.7.x.php => basic-receive.8.x.php} | 0 ...{basic-send.7.x.php => basic-send.8.x.php} | 0 ...e.7.x.php => instance-get-example.8.x.php} | 0 ....7.x.php => instance-post-example.8.x.php} | 0 ...ample.7.x.php => list-get-example.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-2.7.x.php => example-2.8.x.php} | 0 .../{example-3.7.x.php => example-3.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-2.7.x.php => example-2.8.x.php} | 0 .../{example-3.7.x.php => example-3.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 ....x.php => new-message-push-config.8.x.php} | 0 ...ator.7.x.php => disable-indicator.8.x.php} | 0 ...cator.7.x.php => enable-indicator.8.x.php} | 0 ...annels.7.x.php => create-channels.8.x.php} | 0 ...annels.7.x.php => delete-channels.8.x.php} | 0 ...channels.7.x.php => list-channels.8.x.php} | 0 ...nels.7.x.php => retrieve-channels.8.x.php} | 0 ...annels.7.x.php => update-channels.8.x.php} | 0 ...als.7.x.php => create-credentials.8.x.php} | 0 ...als.7.x.php => delete-credentials.8.x.php} | 0 ...tials.7.x.php => list-credentials.8.x.php} | 0 ...s.7.x.php => retrieve-credentials.8.x.php} | 0 ...als.7.x.php => update-credentials.8.x.php} | 0 ...{add-member.7.x.php => add-member.8.x.php} | 0 ...t-members.7.x.php => list-members.8.x.php} | 0 ...e-member.7.x.php => remove-member.8.x.php} | 0 ...member.7.x.php => retrieve-member.8.x.php} | 0 ...ssages.7.x.php => delete-messages.8.x.php} | 0 ...messages.7.x.php => list-messages.8.x.php} | 0 ...ages.7.x.php => retrieve-messages.8.x.php} | 0 ...messages.7.x.php => send-messages.8.x.php} | 0 ...ssages.7.x.php => update-messages.8.x.php} | 0 ...reate-role.7.x.php => create-role.8.x.php} | 0 ...elete-role.7.x.php => delete-role.8.x.php} | 0 ...{list-roles.7.x.php => list-roles.8.x.php} | 0 ...eve-role.7.x.php => retrieve-role.8.x.php} | 0 ...pdate-role.7.x.php => update-role.8.x.php} | 0 ...service.7.x.php => create-service.8.x.php} | 0 ...service.7.x.php => delete-service.8.x.php} | 0 ...t-service.7.x.php => list-service.8.x.php} | 0 ...rvice.7.x.php => retrieve-service.8.x.php} | 0 ...service.7.x.php => update-service.8.x.php} | 0 ...reate-user.7.x.php => create-user.8.x.php} | 0 ...elete-user.7.x.php => delete-user.8.x.php} | 0 ...{list-users.7.x.php => list-users.8.x.php} | 0 ...eve-user.7.x.php => retrieve-user.8.x.php} | 0 ...pdate-user.7.x.php => update-user.8.x.php} | 0 ....7.x.php => token-gen-server-push.8.x.php} | 0 ....x.php => token-generation-server.8.x.php} | 0 ...hp => lookup-get-addon-examples-1.8.x.php} | 0 ...php => lookup-get-addon-payfone-1.8.x.php} | 0 ...php => lookup-get-basic-example-1.8.x.php} | 0 ...php => lookup-get-basic-example-2.8.x.php} | 0 ...ookup-get-carrier-cname-example-1.8.x.php} | 0 ...php => lookup-get-cname-example-1.8.x.php} | 0 ...php => lookup-international-basic.8.x.php} | 0 ....7.x.php => lookup-national-basic.8.x.php} | 0 ...=> get-media-recording-media-file.8.x.php} | 0 ...dia-recording-timed-metadata-file.8.x.php} | 0 ...hp => link-shortening-domain-cert.8.x.php} | 0 ...ms.7.x.php => link-shortening-sms.8.x.php} | 0 ...x.php => link-shortening-whatsapp.8.x.php} | 0 ...-add.7.x.php => service-alpha-add.8.x.php} | 0 ...e.7.x.php => service-alpha-delete.8.x.php} | 0 ...-get.7.x.php => service-alpha-get.8.x.php} | 0 ...ist.7.x.php => service-alpha-list.8.x.php} | 0 ...-create.7.x.php => service-create.8.x.php} | 0 ...-delete.7.x.php => service-delete.8.x.php} | 0 ...ervice-get.7.x.php => service-get.8.x.php} | 0 ...vice-list.7.x.php => service-list.8.x.php} | 0 ...hp => service-multiple-number-add.8.x.php} | 0 ...add.7.x.php => service-number-add.8.x.php} | 0 ....7.x.php => service-number-delete.8.x.php} | 0 ...get.7.x.php => service-number-get.8.x.php} | 0 ...st.7.x.php => service-number-list.8.x.php} | 0 ....7.x.php => service-shortcode-add.8.x.php} | 0 ...x.php => service-shortcode-delete.8.x.php} | 0 ....7.x.php => service-shortcode-get.8.x.php} | 0 ...7.x.php => service-shortcode-list.8.x.php} | 0 ...-update.7.x.php => service-update.8.x.php} | 0 ...7.x.php => identity-match-example.8.x.php} | 0 ....x.php => create-an-evurl-example.8.x.php} | 0 ... => retrieve-evurl-result-example.8.x.php} | 0 ....x.php => instance-delete-example.8.x.php} | 0 ...e.7.x.php => instance-get-example.8.x.php} | 0 ...l.7.x.php => list-get-example-all.8.x.php} | 0 ...-get-example-warnings-apr01-apr30.8.x.php} | 0 ...instance-get-example-phone-number.8.x.php} | 0 ...xample-actorsid-resourcesid-error.8.x.php} | 0 ...p => list-get-example-date-filter.8.x.php} | 0 ...st-get-example-resourcesid-filter.8.x.php} | 0 ...et-example-sourceipaddress-filter.8.x.php} | 0 ....php => create-binding-server-apn.8.x.php} | 0 ....php => create-binding-server-fcm.8.x.php} | 0 ....7.x.php => create-binding-server.8.x.php} | 0 ...-2.7.x.php => send-notification-2.8.x.php} | 0 ... => send-notification-segment-tag.8.x.php} | 0 ....php => send-notification-segment.8.x.php} | 0 ...tion.7.x.php => send-notification.8.x.php} | 0 ...binding.7.x.php => create-binding.8.x.php} | 0 ...binding.7.x.php => delete-binding.8.x.php} | 0 ...t-binding.7.x.php => list-binding.8.x.php} | 0 ...nding.7.x.php => retrieve-binding.8.x.php} | 0 ....7.x.php => create-apn-credential.8.x.php} | 0 ....7.x.php => create-fcm-credential.8.x.php} | 0 ....7.x.php => create-gcm-credential.8.x.php} | 0 ...tial.7.x.php => delete-credential.8.x.php} | 0 ...ential.7.x.php => list-credential.8.x.php} | 0 ...al.7.x.php => retrieve-credential.8.x.php} | 0 ...tial.7.x.php => update-credential.8.x.php} | 0 ...php => send-notification-detailed.8.x.php} | 0 ...p => send-notification-with-badge.8.x.php} | 0 ...tion.7.x.php => send-notification.8.x.php} | 0 ... => send-passthrough-notification.8.x.php} | 0 ...t-segment.7.x.php => list-segment.8.x.php} | 0 ...service.7.x.php => create-service.8.x.php} | 0 ...service.7.x.php => delete-service.8.x.php} | 0 ...t-service.7.x.php => list-service.8.x.php} | 0 ...rvice.7.x.php => retrieve-service.8.x.php} | 0 ...service.7.x.php => update-service.8.x.php} | 0 ...nt.7.x.php => add-user-to-segment.8.x.php} | 0 ...reate-user.7.x.php => create-user.8.x.php} | 0 ...elete-user.7.x.php => delete-user.8.x.php} | 0 ...r.7.x.php => list-binding-of-user.8.x.php} | 0 ...{list-users.7.x.php => list-users.8.x.php} | 0 ...x.php => remove-user-from-segment.8.x.php} | 0 ...eve-user.7.x.php => retrieve-user.8.x.php} | 0 ...binding.7.x.php => create-binding.8.x.php} | 0 ...hp => send-notification-to-number.8.x.php} | 0 ...tion.7.x.php => send-notification.8.x.php} | 0 ....7.x.php => get-messaging-country.8.x.php} | 0 ...x.php => get-phone-number-country.8.x.php} | 0 ...ntry.7.x.php => get-voice-country.8.x.php} | 0 ...ce-number-with-origination-number.8.x.php} | 0 ...umber.7.x.php => get-voice-number.8.x.php} | 0 ...x.php => list-messaging-countries.8.x.php} | 0 ...hp => list-phone-number-countries.8.x.php} | 0 ...s.7.x.php => list-voice-countries.8.x.php} | 0 ...umber.7.x.php => add-phone-number.8.x.php} | 0 ...ant.7.x.php => create-participant.8.x.php} | 0 ...service.7.x.php => create-service.8.x.php} | 0 ...session.7.x.php => create-session.8.x.php} | 0 ...d-message.7.x.php => send-message.8.x.php} | 0 ....x.php => create_hello_world_task.8.x.php} | 0 ...php => create_hello_world_samples.8.x.php} | 0 ...es.7.x.php => create_joke_samples.8.x.php} | 0 ..._task.7.x.php => create_joke_task.8.x.php} | 0 ...{query_task.7.x.php => query_task.8.x.php} | 0 ...lo-client.7.x.php => hello-client.8.x.php} | 0 ...lient-2.7.x.php => hello-client-2.8.x.php} | 0 ...lient-3.7.x.php => hello-client-3.8.x.php} | 0 ...lient-4.7.x.php => hello-client-4.8.x.php} | 0 ...lient-5.7.x.php => hello-client-5.8.x.php} | 0 ...ions.7.x.php => sendnotifications.8.x.php} | 0 ...ions.7.x.php => sendnotifications.8.x.php} | 0 ...onkey.7.x.php => sms-hello-monkey.8.x.php} | 0 ...onkey.7.x.php => mms-hello-monkey.8.x.php} | 0 ...-by-name.7.x.php => reply-by-name.8.x.php} | 0 ...php => tracking-sms-conversations.8.x.php} | 0 ...l.7.x.php => send-sms-during-call.8.x.php} | 0 .../{reply_sms.7.x.php => reply_sms.8.x.php} | 0 .../{reply_sms.7.x.php => reply_sms.8.x.php} | 0 .../{send_sms.7.x.php => send_sms.8.x.php} | 0 .../{send_sms.7.x.php => send_sms.8.x.php} | 0 ...ion.7.x.php => accept-reservation.8.x.php} | 0 .../agent/{agent.7.x.php => agent.8.x.php} | 0 ...reate-task.7.x.php => create-task.8.x.php} | 0 ...nswer_call.7.x.php => answer_call.8.x.php} | 0 ...nswer_call.7.x.php => answer_call.8.x.php} | 0 .../{call-log.7.x.php => call-log.8.x.php} | 0 .../{make_call.7.x.php => make_call.8.x.php} | 0 .../{make_call.7.x.php => make_call.8.x.php} | 0 .../{call.7.x.php => call.8.x.php} | 0 rename-files.py | 24 +++++++++++++++++++ ...e.7.x.php => ip-messaging-example.8.x.php} | 0 ...e.7.x.php => ip-messaging-example.8.x.php} | 0 ...e-example.7.x.php => live-example.8.x.php} | 0 ...c-example.7.x.php => sync-example.8.x.php} | 0 ...-example.7.x.php => video-example.8.x.php} | 0 ...-example.7.x.php => voice-example.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ....x.php => instance-post-example-2.8.x.php} | 0 ....x.php => instance-post-example-3.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ....x.php => instance-create-example.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...p => list-dependent-pns-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...-1.7.x.php => list-post-example-1.8.x.php} | 0 ...call-1.7.x.php => outgoing-call-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...-1.7.x.php => list-post-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...p => local-get-advanced-example-1.8.x.php} | 0 ....php => local-get-basic-example-1.8.x.php} | 0 ....php => local-get-basic-example-2.8.x.php} | 0 ....php => local-get-basic-example-3.8.x.php} | 0 ....php => local-get-basic-example-4.8.x.php} | 0 ....php => local-get-basic-example-5.8.x.php} | 0 ....php => local-get-basic-example-6.8.x.php} | 0 ....php => local-get-basic-example-7.8.x.php} | 0 ....php => local-get-basic-example-8.8.x.php} | 0 ...1.7.x.php => mobile-get-example-1.8.x.php} | 0 ....x.php => toll-free-get-example-1.8.x.php} | 0 ....x.php => toll-free-get-example-2.8.x.php} | 0 ....x.php => toll-free-get-example-3.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...summary-instance-delete-example-1.8.x.php} | 0 ...=> summary-instance-get-example-1.8.x.php} | 0 ...=> summary-instance-get-example-2.8.x.php} | 0 ...hp => summary-list-post-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...e-3.7.x.php => list-get-example-3.8.x.php} | 0 ...e-4.7.x.php => list-get-example-4.8.x.php} | 0 ...e-6.7.x.php => list-get-example-6.8.x.php} | 0 ...e-7.7.x.php => list-get-example-7.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...e-3.7.x.php => list-get-example-3.8.x.php} | 0 ...e-4.7.x.php => list-get-example-4.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...e-3.7.x.php => list-get-example-3.8.x.php} | 0 ...-1.7.x.php => list-post-example-1.8.x.php} | 0 ...e.7.x.php => instance-get-example.8.x.php} | 0 ...ample.7.x.php => list-get-example.8.x.php} | 0 ...mple.7.x.php => list-post-example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-2.7.x.php => example-2.8.x.php} | 0 .../{example-3.7.x.php => example-3.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-2.7.x.php => example-2.8.x.php} | 0 .../{example-3.7.x.php => example-3.8.x.php} | 0 .../{example-4.7.x.php => example-4.8.x.php} | 0 ....php => instance-delete-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ....x.php => instance-post-example-2.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...-sms.7.x.php => feedback-send-sms.8.x.php} | 0 ...php => generate-twiml-dynamic-sms.8.x.php} | 0 ... => generate-twiml-empty-response.8.x.php} | 0 ...mms.7.x.php => generate-twiml-mms.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 ...sms.7.x.php => generate-twiml-sms.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 ....7.x.php => send-messages-copilot.8.x.php} | 0 ...back.7.x.php => send-sms-callback.8.x.php} | 0 .../{send-sms.7.x.php => send-sms.8.x.php} | 0 ...x.php => instance-delete-examples.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...e-3.7.x.php => list-get-example-3.8.x.php} | 0 ...e-4.7.x.php => list-get-example-4.8.x.php} | 0 ...delete.7.x.php => instance-delete.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...-1.7.x.php => list-post-example-1.8.x.php} | 0 ....php => instance-delete-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ....x.php => instance-post-example-2.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...-1.7.x.php => list-post-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...-1.7.x.php => list-post-example-1.8.x.php} | 0 ...-xml.7.x.php => get-recording-xml.8.x.php} | 0 ...x.php => instance-delete-examples.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...e-3.7.x.php => list-get-example-3.8.x.php} | 0 ...e-4.7.x.php => list-get-example-4.8.x.php} | 0 ...e-5.7.x.php => list-get-example-5.8.x.php} | 0 ... => list-recording-transcriptions-8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...e-3.7.x.php => list-get-example-3.8.x.php} | 0 ...x.php => associate-control-domain.8.x.php} | 0 ...ess.7.x.php => create-acl-address.8.x.php} | 0 ...7.x.php => create-credential-list.8.x.php} | 0 ...tial.7.x.php => create-credential.8.x.php} | 0 ...e-domain.7.x.php => create-domain.8.x.php} | 0 ...e-ip-acl.7.x.php => create-ip-acl.8.x.php} | 0 ....7.x.php => delete-access-mapping.8.x.php} | 0 ....7.x.php => delete-access-mapping.8.x.php} | 0 ....x.php => delete-address-instance.8.x.php} | 0 ...> delete-credential-list-instance.8.x.php} | 0 ...=> delete-credential-list-mapping.8.x.php} | 0 ...=> delete-credential-list-mapping.8.x.php} | 0 ...tial.7.x.php => delete-credential.8.x.php} | 0 ...7.x.php => delete-domain-instance.8.x.php} | 0 ...e-ip-acl.7.x.php => delete-ip-acl.8.x.php} | 0 ...sses.7.x.php => get-acl-addresses.8.x.php} | 0 ...-acl-list.7.x.php => get-acl-list.8.x.php} | 0 ...cl-lists.7.x.php => get-acl-lists.8.x.php} | 0 ...e.7.x.php => get-address-instance.8.x.php} | 0 ...p => get-credential-list-instance.8.x.php} | 0 ...p => get-credential-list-mappings.8.x.php} | 0 ... get-credential-lists-credentials.8.x.php} | 0 ...s.7.x.php => get-credential-lists.8.x.php} | 0 ...dential.7.x.php => get-credential.8.x.php} | 0 ...ce.7.x.php => get-domain-instance.8.x.php} | 0 ...gs.7.x.php => get-domain-mappings.8.x.php} | 0 ...et-domains.7.x.php => get-domains.8.x.php} | 0 ...et-ip-acls.7.x.php => get-ip-acls.8.x.php} | 0 ....7.x.php => get-mappings-instance.8.x.php} | 0 ....7.x.php => get-mappings-instance.8.x.php} | 0 ...php => map-credential-list-domain.8.x.php} | 0 ...php => map-credential-list-domain.8.x.php} | 0 ...domain.7.x.php => map-list-domain.8.x.php} | 0 ...domain.7.x.php => map-list-domain.8.x.php} | 0 ....x.php => update-address-instance.8.x.php} | 0 ...> update-credential-list-instance.8.x.php} | 0 ...tial.7.x.php => update-credential.8.x.php} | 0 ...7.x.php => update-domain-instance.8.x.php} | 0 ...7.x.php => update-ip-acl-instance.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-2.7.x.php => example-2.8.x.php} | 0 .../{example-3.7.x.php => example-3.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...ing.7.x.php => subaccount-billing.8.x.php} | 0 ...=> creating-subaccounts-example-1.8.x.php} | 0 ...p => exchanging-numbers-example-1.8.x.php} | 0 ... => listing-subaccounts-example-1.8.x.php} | 0 ... => listing-subaccounts-example-2.8.x.php} | 0 ...t-call.7.x.php => subaccount-call.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 ...{conference.7.x.php => conference.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{redirect.7.x.php => redirect.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-2.7.x.php => example-2.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example.7.x.php => example.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-2.7.x.php => example-2.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 ...1.7.x.php => test-calls-example-1.8.x.php} | 0 ...2.7.x.php => test-calls-example-2.8.x.php} | 0 ...-incoming-phone-numbers-example-1.8.x.php} | 0 ...-incoming-phone-numbers-example-2.8.x.php} | 0 ...-3.7.x.php => test-post-example-3.8.x.php} | 0 ...hp => test-sms-messages-example-1.8.x.php} | 0 ...hp => test-sms-messages-example-2.8.x.php} | 0 ...hp => test-sms-messages-example-3.8.x.php} | 0 ...x.php => list-post-1-hour-example.8.x.php} | 0 ...mple.7.x.php => list-post-example.8.x.php} | 0 ...x.php => instance-delete-examples.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...e-2.7.x.php => list-get-example-2.8.x.php} | 0 ...e-3.7.x.php => list-get-example-3.8.x.php} | 0 ...e-4.7.x.php => list-get-example-4.8.x.php} | 0 ...e-5.7.x.php => list-get-example-5.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...e-1.7.x.php => list-get-example-1.8.x.php} | 0 ...-1.7.x.php => list-post-example-1.8.x.php} | 0 .../{example-1.7.x.php => example-1.8.x.php} | 0 .../{example-2.7.x.php => example-2.8.x.php} | 0 .../{example-3.7.x.php => example-3.8.x.php} | 0 .../{example-4.7.x.php => example-4.8.x.php} | 0 ....x.php => environment-variables-1.8.x.php} | 0 ...n.7.x.php => signature_validation.8.x.php} | 0 ...php => signature_validation_tests.8.x.php} | 0 ...mple.7.x.php => list-post-example.8.x.php} | 0 ...account.7.x.php => update-account.8.x.php} | 0 ...sion.7.x.php => delete-permission.8.x.php} | 0 ...sions.7.x.php => list-permissions.8.x.php} | 0 ...on.7.x.php => retrieve-permission.8.x.php} | 0 ...sion.7.x.php => update-permission.8.x.php} | 0 ...cument.7.x.php => create-document.8.x.php} | 0 ...cument.7.x.php => delete-document.8.x.php} | 0 ...cuments.7.x.php => list-documents.8.x.php} | 0 ...ment.7.x.php => retrieve-document.8.x.php} | 0 ...cument.7.x.php => update-document.8.x.php} | 0 ...sion.7.x.php => delete-permission.8.x.php} | 0 ...sions.7.x.php => list-permissions.8.x.php} | 0 ...on.7.x.php => retrieve-permission.8.x.php} | 0 ...sion.7.x.php => update-permission.8.x.php} | 0 ...-item.7.x.php => create-list-item.8.x.php} | 0 ...reate-list.7.x.php => create-list.8.x.php} | 0 ...-item.7.x.php => delete-list-item.8.x.php} | 0 ...elete-list.7.x.php => delete-list.8.x.php} | 0 ...{list-lists.7.x.php => list-lists.8.x.php} | 0 ...{query-list.7.x.php => query-list.8.x.php} | 0 ...tem.7.x.php => retrieve-list-item.8.x.php} | 0 ...eve-list.7.x.php => retrieve-list.8.x.php} | 0 ...-item.7.x.php => update-list-item.8.x.php} | 0 ...pdate-list.7.x.php => update-list.8.x.php} | 0 ...sion.7.x.php => delete-permission.8.x.php} | 0 ...sions.7.x.php => list-permissions.8.x.php} | 0 ...on.7.x.php => retrieve-permission.8.x.php} | 0 ...sion.7.x.php => update-permission.8.x.php} | 0 ...p-item.7.x.php => create-map-item.8.x.php} | 0 ...{create-map.7.x.php => create-map.8.x.php} | 0 ...p-item.7.x.php => delete-map-item.8.x.php} | 0 ...{delete-map.7.x.php => delete-map.8.x.php} | 0 .../{list-maps.7.x.php => list-maps.8.x.php} | 0 .../{query-map.7.x.php => query-map.8.x.php} | 0 ...item.7.x.php => retrieve-map-item.8.x.php} | 0 ...rieve-map.7.x.php => retrieve-map.8.x.php} | 0 ...p-item.7.x.php => update-map-item.8.x.php} | 0 ...{update-map.7.x.php => update-map.8.x.php} | 0 ...7.x.php => create-service-webhook.8.x.php} | 0 ...service.7.x.php => create-service.8.x.php} | 0 ...service.7.x.php => delete-service.8.x.php} | 0 ...services.7.x.php => list-services.8.x.php} | 0 ...rvice.7.x.php => retrieve-service.8.x.php} | 0 ...service.7.x.php => update-service.8.x.php} | 0 ...e-stream.7.x.php => create-stream.8.x.php} | 0 ...e-stream.7.x.php => delete-stream.8.x.php} | 0 ...t-streams.7.x.php => list-streams.8.x.php} | 0 ...7.x.php => publish-stream-message.8.x.php} | 0 ...stream.7.x.php => retrieve-stream.8.x.php} | 0 ...e-stream.7.x.php => update-stream.8.x.php} | 0 twiml/README.md | 2 +- .../{message-1.7.x.php => message-1.8.x.php} | 0 .../{message-2.7.x.php => message-2.8.x.php} | 0 .../{message-3.7.x.php => message-3.8.x.php} | 0 .../{message-4.7.x.php => message-4.8.x.php} | 0 ...{redirect-1.7.x.php => redirect-1.8.x.php} | 0 ...{redirect-2.7.x.php => redirect-2.8.x.php} | 0 ...onse-1.7.x.php => your-response-1.8.x.php} | 0 ...onse-2.7.x.php => your-response-2.8.x.php} | 0 ...onse-3.7.x.php => your-response-3.8.x.php} | 0 .../{client-1.7.x.php => client-1.8.x.php} | 0 .../{client-2.7.x.php => client-2.8.x.php} | 0 .../{client-3.7.x.php => client-3.8.x.php} | 0 ...ference-1.7.x.php => conference-1.8.x.php} | 0 ...rence-10.7.x.php => conference-10.8.x.php} | 0 ...ference-2.7.x.php => conference-2.8.x.php} | 0 ...ference-3.7.x.php => conference-3.8.x.php} | 0 ...ference-4.7.x.php => conference-4.8.x.php} | 0 ...ference-5.7.x.php => conference-5.8.x.php} | 0 ...ference-6.7.x.php => conference-6.8.x.php} | 0 ...ference-7.7.x.php => conference-7.8.x.php} | 0 ...ference-8.7.x.php => conference-8.8.x.php} | 0 ...ference-9.7.x.php => conference-9.8.x.php} | 0 .../{connect-1.7.x.php => connect-1.8.x.php} | 0 .../{connect-1.7.x.php => connect-1.8.x.php} | 0 .../{connect-2.7.x.php => connect-2.8.x.php} | 0 ..._stream.7.x.php => connect_stream.8.x.php} | 0 ...agent-1.7.x.php => virtualagent-1.8.x.php} | 0 ...agent-2.7.x.php => virtualagent-2.8.x.php} | 0 ...agent-3.7.x.php => virtualagent-3.8.x.php} | 0 ...agent-4.7.x.php => virtualagent-4.8.x.php} | 0 .../dial-1/{dial-1.7.x.php => dial-1.8.x.php} | 0 .../dial-2/{dial-2.7.x.php => dial-2.8.x.php} | 0 .../dial-3/{dial-3.7.x.php => dial-3.8.x.php} | 0 .../dial-4/{dial-4.7.x.php => dial-4.8.x.php} | 0 .../dial-5/{dial-5.7.x.php => dial-5.8.x.php} | 0 .../dial-6/{dial-6.7.x.php => dial-6.8.x.php} | 0 .../dial-7/{dial-7.7.x.php => dial-7.8.x.php} | 0 .../{enqueue-1.7.x.php => enqueue-1.8.x.php} | 0 .../{enqueue-2.7.x.php => enqueue-2.8.x.php} | 0 .../{gather-1.7.x.php => gather-1.8.x.php} | 0 .../{gather-2.7.x.php => gather-2.8.x.php} | 0 .../{gather-3.7.x.php => gather-3.8.x.php} | 0 .../{gather-4.7.x.php => gather-4.8.x.php} | 0 .../{gather-5.7.x.php => gather-5.8.x.php} | 0 .../{hangup-1.7.x.php => hangup-1.8.x.php} | 0 .../{leave-1.7.x.php => leave-1.8.x.php} | 0 .../{leave-2.7.x.php => leave-2.8.x.php} | 0 .../{leave-3.7.x.php => leave-3.8.x.php} | 0 .../{number-1.7.x.php => number-1.8.x.php} | 0 .../{number-2.7.x.php => number-2.8.x.php} | 0 .../{number-3.7.x.php => number-3.8.x.php} | 0 .../{number-4.7.x.php => number-4.8.x.php} | 0 .../{number-5.7.x.php => number-5.8.x.php} | 0 ...arameter-1.7.x.php => parameter-1.8.x.php} | 0 .../{pause-1.7.x.php => pause-1.8.x.php} | 0 .../{pause-2.7.x.php => pause-2.8.x.php} | 0 .../pay-1/{pay-1.7.x.php => pay-1.8.x.php} | 0 .../pay-2/{pay-2.7.x.php => pay-2.8.x.php} | 0 .../pay-3/{pay-3.7.x.php => pay-3.8.x.php} | 0 .../pay-4/{pay-4.7.x.php => pay-4.8.x.php} | 0 .../pay-5/{pay-5.7.x.php => pay-5.8.x.php} | 0 .../pay-6/{pay-6.7.x.php => pay-6.8.x.php} | 0 .../pay-7/{pay-7.7.x.php => pay-7.8.x.php} | 0 .../pay-8/{pay-8.7.x.php => pay-8.8.x.php} | 0 .../pay-9/{pay-9.7.x.php => pay-9.8.x.php} | 0 ...r.7.x.php => pay-charge-connector.8.x.php} | 0 ...7.x.php => pay-tokenize-connector.8.x.php} | 0 ...-tokenize.7.x.php => pay-tokenize.8.x.php} | 0 .../play-1/{play-1.7.x.php => play-1.8.x.php} | 0 .../play-2/{play-2.7.x.php => play-2.8.x.php} | 0 .../play-3/{play-3.7.x.php => play-3.8.x.php} | 0 .../{queue-1.7.x.php => queue-1.8.x.php} | 0 .../{queue-2.7.x.php => queue-2.8.x.php} | 0 .../{record-1.7.x.php => record-1.8.x.php} | 0 .../{record-2.7.x.php => record-2.8.x.php} | 0 .../{record-3.7.x.php => record-3.8.x.php} | 0 .../{record-4.7.x.php => record-4.8.x.php} | 0 ...{redirect-1.7.x.php => redirect-1.8.x.php} | 0 ...{redirect-2.7.x.php => redirect-2.8.x.php} | 0 ...{redirect-3.7.x.php => redirect-3.8.x.php} | 0 .../{refer-1.7.x.php => refer-1.8.x.php} | 0 .../{refer-2.7.x.php => refer-2.8.x.php} | 0 .../{refer-3.7.x.php => refer-3.8.x.php} | 0 .../{refer-4.7.x.php => refer-4.8.x.php} | 0 .../{reject-1.7.x.php => reject-1.8.x.php} | 0 .../{reject-2.7.x.php => reject-2.8.x.php} | 0 ...-usage.7.x.php => say-basic-usage.8.x.php} | 0 ...-language.7.x.php => say-language.8.x.php} | 0 .../{say-loop.7.x.php => say-loop.8.x.php} | 0 .../{say-voice.7.x.php => say-voice.8.x.php} | 0 .../say/ssml/{ssml.7.x.php => ssml.8.x.php} | 0 .../sim-1/{sim-1.7.x.php => sim-1.8.x.php} | 0 .../sim-2/{sim-2.7.x.php => sim-2.8.x.php} | 0 .../sip-1/{sip-1.7.x.php => sip-1.8.x.php} | 0 .../sip-10/{sip-10.7.x.php => sip-10.8.x.php} | 0 .../sip-11/{sip-11.7.x.php => sip-11.8.x.php} | 0 .../sip-2/{sip-2.7.x.php => sip-2.8.x.php} | 0 .../sip-3/{sip-3.7.x.php => sip-3.8.x.php} | 0 .../sip-4/{sip-4.7.x.php => sip-4.8.x.php} | 0 .../sip-5/{sip-5.7.x.php => sip-5.8.x.php} | 0 .../sip-6/{sip-6.7.x.php => sip-6.8.x.php} | 0 .../sip-7/{sip-7.7.x.php => sip-7.8.x.php} | 0 .../sip-8/{sip-8.7.x.php => sip-8.8.x.php} | 0 .../sip-9/{sip-9.7.x.php => sip-9.8.x.php} | 0 .../{siprec-1.7.x.php => siprec-1.8.x.php} | 0 .../sms-1/{sms-1.7.x.php => sms-1.8.x.php} | 0 .../sms-2/{sms-2.7.x.php => sms-2.8.x.php} | 0 .../sms-3/{sms-3.7.x.php => sms-3.8.x.php} | 0 .../sms-4/{sms-4.7.x.php => sms-4.8.x.php} | 0 .../{stream-1.7.x.php => stream-1.8.x.php} | 0 .../{stream-2.7.x.php => stream-2.8.x.php} | 0 ...onse-1.7.x.php => your-response-1.8.x.php} | 0 ...onse-2.7.x.php => your-response-2.8.x.php} | 0 ...n.7.x.php => approve-verification.8.x.php} | 0 ...hook.7.x.php => audio-mixing-hook.8.x.php} | 0 ...ok.7.x.php => complex-layout-hook.8.x.php} | 0 ...elete-hook.7.x.php => delete-hook.8.x.php} | 0 .../{get-hook.7.x.php => get-hook.8.x.php} | 0 ...-hook.7.x.php => grid-mixing-hook.8.x.php} | 0 ...{list-hooks.7.x.php => list-hooks.8.x.php} | 0 ...pdate-hook.7.x.php => update-hook.8.x.php} | 0 ...se-chess.7.x.php => compose-chess.8.x.php} | 0 ... => compose-main-with-col-and-pip.8.x.php} | 0 ....7.x.php => compose-main-with-row.8.x.php} | 0 ...-mosaic.7.x.php => compose-mosaic.8.x.php} | 0 ...participant-video-with-all-audios.8.x.php} | 0 ...x.php => transcode-video-recoding.8.x.php} | 0 ...ompose-pip.7.x.php => compose-pip.8.x.php} | 0 ...pose-room.7.x.php => compose-room.8.x.php} | 0 ...row.7.x.php => compose-set-as-row.8.x.php} | 0 ....x.php => compose-set-as-sequence.8.x.php} | 0 ...ion.7.x.php => delete-composition.8.x.php} | 0 ...php => get-completed-compositions.8.x.php} | 0 ...php => get-composition-media-file.8.x.php} | 0 ...sition.7.x.php => get-composition.8.x.php} | 0 ....7.x.php => get-room-compositions.8.x.php} | 0 ...x.php => transcode-audio-recoding.8.x.php} | 0 ...x.php => transcode-video-recoding.8.x.php} | 0 ...rding.7.x.php => delete-recording.8.x.php} | 0 ....x.php => list-deleted-recordings.8.x.php} | 0 ...ecordings-for-participant-in-room.8.x.php} | 0 ...> list-recordings-for-participant.8.x.php} | 0 ...x.php => list-recordings-for-room.8.x.php} | 0 ...=> retrieve-recording-binary-data.8.x.php} | 0 ....php => retrieve-recording-by-sid.8.x.php} | 0 ...room.7.x.php => create-group-room.8.x.php} | 0 ...room.7.x.php => create-group-room.8.x.php} | 0 ...x.php => create-peer-to-peer-room.8.x.php} | 0 ...reate-room.7.x.php => create-room.8.x.php} | 0 ...s.7.x.php => list-room-recordings.8.x.php} | 0 ...hp => list-rooms-filtered-by-name.8.x.php} | 0 ... => list-rooms-filtered-by-status.8.x.php} | 0 ...hp => list-rooms-multiple-filters.8.x.php} | 0 ...7.x.php => list-subscribed-tracks.8.x.php} | 0 ...x.php => retrieve-subscribe-rules.8.x.php} | 0 ....php => retrieve-subscribed-track.8.x.php} | 0 ....7.x.php => update-customer-rules.8.x.php} | 0 ...=> update-subscribe-rules-dynamic.8.x.php} | 0 ....7.x.php => update-customer-rules.8.x.php} | 0 ....php => recording-rules-audio-all.8.x.php} | 0 ...> recording-rules-one-participant.8.x.php} | 0 ....php => recording-rules-start-all.8.x.php} | 0 ...x.php => recording-rules-stop-all.8.x.php} | 0 ...retrieve-media-for-room-recording.8.x.php} | 0 ...d.7.x.php => retrieve-room-by-sid.8.x.php} | 0 ...p => retrieve-room-by-unique-name.8.x.php} | 0 ....x.php => retrieve-room-recording.8.x.php} | 0 ...> update-room-status-to-completed.8.x.php} | 0 ....x.php => token-generation-server.8.x.php} | 0 ....x.php => token-generation-server.8.x.php} | 0 ...ueue-agent.7.x.php => queue-agent.8.x.php} | 0 ...ue-caller.7.x.php => queue-caller.8.x.php} | 0 ...edirect.7.x.php => queue-redirect.8.x.php} | 0 ...cify-edge.7.x.php => specify-edge.8.x.php} | 0 ....x.php => create-binary-example-1.8.x.php} | 0 ....7.x.php => create-text-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...ample-1.7.x.php => list-example-1.8.x.php} | 0 ...ple-1.7.x.php => create-example-1.8.x.php} | 0 ...ple-1.7.x.php => delete-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-2.8.x.php} | 0 ...ample-1.7.x.php => list-example-1.8.x.php} | 0 ...ample-1.7.x.php => list-example-1.8.x.php} | 0 ...ample-1.7.x.php => list-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-1.8.x.php} | 0 ...7.x.php => instance-get-example-2.8.x.php} | 0 ....x.php => instance-post-example-1.8.x.php} | 0 ...ample-1.7.x.php => list-example-1.8.x.php} | 0 743 files changed, 26 insertions(+), 2 deletions(-) rename add-ons/lookups/payfone-tcpa-compliance/{payfone-tcpa-compliance.7.x.php => payfone-tcpa-compliance.8.x.php} (100%) rename api-auth/{api-auth.7.x.php => api-auth.8.x.php} (100%) rename client/capability-token-2way/{capability-token.7.x.php => capability-token.8.x.php} (100%) rename client/capability-token-incoming/{capability-token.7.x.php => capability-token.8.x.php} (100%) rename client/capability-token-outgoing/{capability-token.7.x.php => capability-token.8.x.php} (100%) rename client/capability-token/{capability-token.7.x.php => capability-token.8.x.php} (100%) rename client/response-twiml-client/{response-twiml-client.7.x.php => response-twiml-client.8.x.php} (100%) rename client/response-twiml-dial/{response-twiml-dial.7.x.php => response-twiml-dial.8.x.php} (100%) rename client/response-twiml/{response-twiml.7.x.php => response-twiml.8.x.php} (100%) rename deployed-devices/quickstarts/sync-boardled/create-document/{create-document.7.x.php => create-document.8.x.php} (100%) rename deployed-devices/quickstarts/sync-boardled/update-document/{update-document.7.x.php => update-document.8.x.php} (100%) rename deployed-devices/rest/certificates/create-certificate/{create-certificate.7.x.php => create-certificate.8.x.php} (100%) rename deployed-devices/rest/certificates/delete-certificate/{delete-certificate.7.x.php => delete-certificate.8.x.php} (100%) rename deployed-devices/rest/certificates/list-certificates/{list-certificates.7.x.php => list-certificates.8.x.php} (100%) rename deployed-devices/rest/certificates/retrieve-certificate/{retrieve-certificate.7.x.php => retrieve-certificate.8.x.php} (100%) rename deployed-devices/rest/certificates/update-certificate/{update-certificate.7.x.php => update-certificate.8.x.php} (100%) rename deployed-devices/rest/deployments/create-deployment/{create-deployment.7.x.php => create-deployment.8.x.php} (100%) rename deployed-devices/rest/deployments/delete-deployment/{delete-deployment.7.x.php => delete-deployment.8.x.php} (100%) rename deployed-devices/rest/deployments/list-deployments/{list-deployments.7.x.php => list-deployments.8.x.php} (100%) rename deployed-devices/rest/deployments/retrieve-deployment/{retrieve-deployment.7.x.php => retrieve-deployment.8.x.php} (100%) rename deployed-devices/rest/deployments/update-deployment/{update-deployment.7.x.php => update-deployment.8.x.php} (100%) rename deployed-devices/rest/devices/create-device/{create-device.7.x.php => create-device.8.x.php} (100%) rename deployed-devices/rest/devices/delete-device/{delete-device.7.x.php => delete-device.8.x.php} (100%) rename deployed-devices/rest/devices/list-devices/{list-devices.7.x.php => list-devices.8.x.php} (100%) rename deployed-devices/rest/devices/retrieve-device/{retrieve-device.7.x.php => retrieve-device.8.x.php} (100%) rename deployed-devices/rest/devices/update-device/{update-device.7.x.php => update-device.8.x.php} (100%) rename deployed-devices/rest/fleets/create-fleet/{create-fleet.7.x.php => create-fleet.8.x.php} (100%) rename deployed-devices/rest/fleets/delete-fleet/{delete-fleet.7.x.php => delete-fleet.8.x.php} (100%) rename deployed-devices/rest/fleets/list-fleets/{list-fleets.7.x.php => list-fleets.8.x.php} (100%) rename deployed-devices/rest/fleets/retrieve-fleet/{retrieve-fleet.7.x.php => retrieve-fleet.8.x.php} (100%) rename deployed-devices/rest/fleets/update-fleet/{update-fleet.7.x.php => update-fleet.8.x.php} (100%) rename deployed-devices/rest/keys/create-key/{create-key.7.x.php => create-key.8.x.php} (100%) rename deployed-devices/rest/keys/delete-key/{delete-key.7.x.php => delete-key.8.x.php} (100%) rename deployed-devices/rest/keys/list-keys/{list-key.7.x.php => list-key.8.x.php} (100%) rename deployed-devices/rest/keys/retrieve-key/{retrieve-key.7.x.php => retrieve-key.8.x.php} (100%) rename deployed-devices/rest/keys/update-key/{update-key.7.x.php => update-key.8.x.php} (100%) rename fax/basic-receive/{basic-receive.7.x.php => basic-receive.8.x.php} (100%) rename fax/basic-send/{basic-send.7.x.php => basic-send.8.x.php} (100%) rename fax/instance-get-example/{instance-get-example.7.x.php => instance-get-example.8.x.php} (100%) rename fax/instance-post-example/{instance-post-example.7.x.php => instance-post-example.8.x.php} (100%) rename fax/list-get-example/{list-get-example.7.x.php => list-get-example.8.x.php} (100%) rename fax/sip-send/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename fax/sip-send/example-2/{example-2.7.x.php => example-2.8.x.php} (100%) rename fax/sip-send/example-3/{example-3.7.x.php => example-3.8.x.php} (100%) rename guides/request-validation-php-lumen/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename guides/request-validation-php-lumen/example-2/{example-2.7.x.php => example-2.8.x.php} (100%) rename guides/request-validation-php-lumen/example-3/{example-3.7.x.php => example-3.8.x.php} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-0/{example.7.x.php => example.8.x.php} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-1/{example.7.x.php => example.8.x.php} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-2.1/{example.7.x.php => example.8.x.php} (100%) rename guides/voice/gather-dtmf-tones-guide/gather-example-step-2/{example.7.x.php => example.8.x.php} (100%) rename guides/voice/record-calls-guide/record-outgoing-call/{example-1.7.x.php => example-1.8.x.php} (100%) rename guides/voice/recording-add-on-guide/use-add-on-data/{example.7.x.php => example.8.x.php} (100%) rename guides/voice/respond-incoming-calls-guide/respond-no-parameters/{example.7.x.php => example.8.x.php} (100%) rename guides/voice/respond-incoming-calls-guide/respond-with-parameters/{example.7.x.php => example.8.x.php} (100%) rename ip-messaging/push-config/new-message-push-config/{new-message-push-config.7.x.php => new-message-push-config.8.x.php} (100%) rename ip-messaging/reachability-indicator/disable-indicator/{disable-indicator.7.x.php => disable-indicator.8.x.php} (100%) rename ip-messaging/reachability-indicator/enable-indicator/{enable-indicator.7.x.php => enable-indicator.8.x.php} (100%) rename ip-messaging/rest/channels/create-channels/{create-channels.7.x.php => create-channels.8.x.php} (100%) rename ip-messaging/rest/channels/delete-channels/{delete-channels.7.x.php => delete-channels.8.x.php} (100%) rename ip-messaging/rest/channels/list-channels/{list-channels.7.x.php => list-channels.8.x.php} (100%) rename ip-messaging/rest/channels/retrieve-channels/{retrieve-channels.7.x.php => retrieve-channels.8.x.php} (100%) rename ip-messaging/rest/channels/update-channels/{update-channels.7.x.php => update-channels.8.x.php} (100%) rename ip-messaging/rest/credentials/create-credentials/{create-credentials.7.x.php => create-credentials.8.x.php} (100%) rename ip-messaging/rest/credentials/delete-credentials/{delete-credentials.7.x.php => delete-credentials.8.x.php} (100%) rename ip-messaging/rest/credentials/list-credentials/{list-credentials.7.x.php => list-credentials.8.x.php} (100%) rename ip-messaging/rest/credentials/retrieve-credentials/{retrieve-credentials.7.x.php => retrieve-credentials.8.x.php} (100%) rename ip-messaging/rest/credentials/update-credentials/{update-credentials.7.x.php => update-credentials.8.x.php} (100%) rename ip-messaging/rest/members/add-member/{add-member.7.x.php => add-member.8.x.php} (100%) rename ip-messaging/rest/members/list-members/{list-members.7.x.php => list-members.8.x.php} (100%) rename ip-messaging/rest/members/remove-member/{remove-member.7.x.php => remove-member.8.x.php} (100%) rename ip-messaging/rest/members/retrieve-member/{retrieve-member.7.x.php => retrieve-member.8.x.php} (100%) rename ip-messaging/rest/messages/delete-messages/{delete-messages.7.x.php => delete-messages.8.x.php} (100%) rename ip-messaging/rest/messages/list-messages/{list-messages.7.x.php => list-messages.8.x.php} (100%) rename ip-messaging/rest/messages/retrieve-messages/{retrieve-messages.7.x.php => retrieve-messages.8.x.php} (100%) rename ip-messaging/rest/messages/send-messages/{send-messages.7.x.php => send-messages.8.x.php} (100%) rename ip-messaging/rest/messages/update-messages/{update-messages.7.x.php => update-messages.8.x.php} (100%) rename ip-messaging/rest/roles/create-role/{create-role.7.x.php => create-role.8.x.php} (100%) rename ip-messaging/rest/roles/delete-role/{delete-role.7.x.php => delete-role.8.x.php} (100%) rename ip-messaging/rest/roles/list-roles/{list-roles.7.x.php => list-roles.8.x.php} (100%) rename ip-messaging/rest/roles/retrieve-role/{retrieve-role.7.x.php => retrieve-role.8.x.php} (100%) rename ip-messaging/rest/roles/update-role/{update-role.7.x.php => update-role.8.x.php} (100%) rename ip-messaging/rest/services/create-service/{create-service.7.x.php => create-service.8.x.php} (100%) rename ip-messaging/rest/services/delete-service/{delete-service.7.x.php => delete-service.8.x.php} (100%) rename ip-messaging/rest/services/list-service/{list-service.7.x.php => list-service.8.x.php} (100%) rename ip-messaging/rest/services/retrieve-service/{retrieve-service.7.x.php => retrieve-service.8.x.php} (100%) rename ip-messaging/rest/services/update-service/{update-service.7.x.php => update-service.8.x.php} (100%) rename ip-messaging/rest/users/create-user/{create-user.7.x.php => create-user.8.x.php} (100%) rename ip-messaging/rest/users/delete-user/{delete-user.7.x.php => delete-user.8.x.php} (100%) rename ip-messaging/rest/users/list-users/{list-users.7.x.php => list-users.8.x.php} (100%) rename ip-messaging/rest/users/retrieve-user/{retrieve-user.7.x.php => retrieve-user.8.x.php} (100%) rename ip-messaging/rest/users/update-user/{update-user.7.x.php => update-user.8.x.php} (100%) rename ip-messaging/users/token-gen-server-push/{token-gen-server-push.7.x.php => token-gen-server-push.8.x.php} (100%) rename ip-messaging/users/token-generation-server/{token-generation-server.7.x.php => token-generation-server.8.x.php} (100%) rename lookups/lookup-get-addon-example-1/{lookup-get-addon-examples-1.7.x.php => lookup-get-addon-examples-1.8.x.php} (100%) rename lookups/lookup-get-addon-payfone-example-1/{lookup-get-addon-payfone-1.7.x.php => lookup-get-addon-payfone-1.8.x.php} (100%) rename lookups/lookup-get-basic-example-1/{lookup-get-basic-example-1.7.x.php => lookup-get-basic-example-1.8.x.php} (100%) rename lookups/lookup-get-basic-example-2/{lookup-get-basic-example-2.7.x.php => lookup-get-basic-example-2.8.x.php} (100%) rename lookups/lookup-get-carrier-cname-example-1/{lookup-get-carrier-cname-example-1.7.x.php => lookup-get-carrier-cname-example-1.8.x.php} (100%) rename lookups/lookup-get-cname-example-1/{lookup-get-cname-example-1.7.x.php => lookup-get-cname-example-1.8.x.php} (100%) rename lookups/lookup-international-basic/{lookup-international-basic.7.x.php => lookup-international-basic.8.x.php} (100%) rename lookups/lookup-national-basic/{lookup-national-basic.7.x.php => lookup-national-basic.8.x.php} (100%) rename media/rest/recordings/get-media-recording-media-file/{get-media-recording-media-file.7.x.php => get-media-recording-media-file.8.x.php} (100%) rename media/rest/recordings/get-media-recording-timed-metadata-file/{get-media-recording-timed-metadata-file.7.x.php => get-media-recording-timed-metadata-file.8.x.php} (100%) rename messaging/link-shortening/link-shortening-domain-cert/{link-shortening-domain-cert.7.x.php => link-shortening-domain-cert.8.x.php} (100%) rename messaging/link-shortening/link-shortening-sms/{link-shortening-sms.7.x.php => link-shortening-sms.8.x.php} (100%) rename messaging/link-shortening/link-shortening-whatsapp/{link-shortening-whatsapp.7.x.php => link-shortening-whatsapp.8.x.php} (100%) rename messaging/services/service-alpha-add/{service-alpha-add.7.x.php => service-alpha-add.8.x.php} (100%) rename messaging/services/service-alpha-delete/{service-alpha-delete.7.x.php => service-alpha-delete.8.x.php} (100%) rename messaging/services/service-alpha-get/{service-alpha-get.7.x.php => service-alpha-get.8.x.php} (100%) rename messaging/services/service-alpha-list/{service-alpha-list.7.x.php => service-alpha-list.8.x.php} (100%) rename messaging/services/service-create/{service-create.7.x.php => service-create.8.x.php} (100%) rename messaging/services/service-delete/{service-delete.7.x.php => service-delete.8.x.php} (100%) rename messaging/services/service-get/{service-get.7.x.php => service-get.8.x.php} (100%) rename messaging/services/service-list/{service-list.7.x.php => service-list.8.x.php} (100%) rename messaging/services/service-multiple-number-add/{service-multiple-number-add.7.x.php => service-multiple-number-add.8.x.php} (100%) rename messaging/services/service-number-add/{service-number-add.7.x.php => service-number-add.8.x.php} (100%) rename messaging/services/service-number-delete/{service-number-delete.7.x.php => service-number-delete.8.x.php} (100%) rename messaging/services/service-number-get/{service-number-get.7.x.php => service-number-get.8.x.php} (100%) rename messaging/services/service-number-list/{service-number-list.7.x.php => service-number-list.8.x.php} (100%) rename messaging/services/service-shortcode-add/{service-shortcode-add.7.x.php => service-shortcode-add.8.x.php} (100%) rename messaging/services/service-shortcode-delete/{service-shortcode-delete.7.x.php => service-shortcode-delete.8.x.php} (100%) rename messaging/services/service-shortcode-get/{service-shortcode-get.7.x.php => service-shortcode-get.8.x.php} (100%) rename messaging/services/service-shortcode-list/{service-shortcode-list.7.x.php => service-shortcode-list.8.x.php} (100%) rename messaging/services/service-update/{service-update.7.x.php => service-update.8.x.php} (100%) rename mobile-identity/identity-match/{identity-match-example.7.x.php => identity-match-example.8.x.php} (100%) rename mobile-identity/silent-network-auth/create-an-evurl/{create-an-evurl-example.7.x.php => create-an-evurl-example.8.x.php} (100%) rename mobile-identity/silent-network-auth/retrieve-evurl-result/{retrieve-evurl-result-example.7.x.php => retrieve-evurl-result-example.8.x.php} (100%) rename monitor/alerts/instance-delete-example/{instance-delete-example.7.x.php => instance-delete-example.8.x.php} (100%) rename monitor/alerts/instance-get-example/{instance-get-example.7.x.php => instance-get-example.8.x.php} (100%) rename monitor/alerts/list-get-example-all/{list-get-example-all.7.x.php => list-get-example-all.8.x.php} (100%) rename monitor/alerts/list-get-example-warnings-apr01-apr30/{list-get-example-warnings-apr01-apr30.7.x.php => list-get-example-warnings-apr01-apr30.8.x.php} (100%) rename monitor/events/instance-get-example-phone-number/{instance-get-example-phone-number.7.x.php => instance-get-example-phone-number.8.x.php} (100%) rename monitor/events/list-get-example-actorsid-resourcesid-error/{list-get-example-actorsid-resourcesid-error.7.x.php => list-get-example-actorsid-resourcesid-error.8.x.php} (100%) rename monitor/events/list-get-example-date-filter/{list-get-example-date-filter.7.x.php => list-get-example-date-filter.8.x.php} (100%) rename monitor/events/list-get-example-resourcesid-filter/{list-get-example-resourcesid-filter.7.x.php => list-get-example-resourcesid-filter.8.x.php} (100%) rename monitor/events/list-get-example-sourceipaddress-filter/{list-get-example-sourceipaddress-filter.7.x.php => list-get-example-sourceipaddress-filter.8.x.php} (100%) rename notifications/register/create-binding-server-apns/{create-binding-server-apn.7.x.php => create-binding-server-apn.8.x.php} (100%) rename notifications/register/create-binding-server-fcm/{create-binding-server-fcm.7.x.php => create-binding-server-fcm.8.x.php} (100%) rename notifications/register/create-binding-server/{create-binding-server.7.x.php => create-binding-server.8.x.php} (100%) rename notifications/register/send-notification-2/{send-notification-2.7.x.php => send-notification-2.8.x.php} (100%) rename notifications/register/send-notification-segment-tag/{send-notification-segment-tag.7.x.php => send-notification-segment-tag.8.x.php} (100%) rename notifications/register/send-notification-segment/{send-notification-segment.7.x.php => send-notification-segment.8.x.php} (100%) rename notifications/register/send-notification/{send-notification.7.x.php => send-notification.8.x.php} (100%) rename notifications/rest/bindings/create-binding/{create-binding.7.x.php => create-binding.8.x.php} (100%) rename notifications/rest/bindings/delete-binding/{delete-binding.7.x.php => delete-binding.8.x.php} (100%) rename notifications/rest/bindings/list-binding/{list-binding.7.x.php => list-binding.8.x.php} (100%) rename notifications/rest/bindings/retrieve-binding/{retrieve-binding.7.x.php => retrieve-binding.8.x.php} (100%) rename notifications/rest/credentials/create-apn-credential/{create-apn-credential.7.x.php => create-apn-credential.8.x.php} (100%) rename notifications/rest/credentials/create-fcm-credential/{create-fcm-credential.7.x.php => create-fcm-credential.8.x.php} (100%) rename notifications/rest/credentials/create-gcm-credential/{create-gcm-credential.7.x.php => create-gcm-credential.8.x.php} (100%) rename notifications/rest/credentials/delete-credential/{delete-credential.7.x.php => delete-credential.8.x.php} (100%) rename notifications/rest/credentials/list-credential/{list-credential.7.x.php => list-credential.8.x.php} (100%) rename notifications/rest/credentials/retrieve-credential/{retrieve-credential.7.x.php => retrieve-credential.8.x.php} (100%) rename notifications/rest/credentials/update-credential/{update-credential.7.x.php => update-credential.8.x.php} (100%) rename notifications/rest/notifications/send-notification-detailed/{send-notification-detailed.7.x.php => send-notification-detailed.8.x.php} (100%) rename notifications/rest/notifications/send-notification-with-badge/{send-notification-with-badge.7.x.php => send-notification-with-badge.8.x.php} (100%) rename notifications/rest/notifications/send-notification/{send-notification.7.x.php => send-notification.8.x.php} (100%) rename notifications/rest/notifications/send-passthrough-notification/{send-passthrough-notification.7.x.php => send-passthrough-notification.8.x.php} (100%) rename notifications/rest/segments/list-segment/{list-segment.7.x.php => list-segment.8.x.php} (100%) rename notifications/rest/services/create-service/{create-service.7.x.php => create-service.8.x.php} (100%) rename notifications/rest/services/delete-service/{delete-service.7.x.php => delete-service.8.x.php} (100%) rename notifications/rest/services/list-service/{list-service.7.x.php => list-service.8.x.php} (100%) rename notifications/rest/services/retrieve-service/{retrieve-service.7.x.php => retrieve-service.8.x.php} (100%) rename notifications/rest/services/update-service/{update-service.7.x.php => update-service.8.x.php} (100%) rename notifications/rest/users/add-user-to-segment/{add-user-to-segment.7.x.php => add-user-to-segment.8.x.php} (100%) rename notifications/rest/users/create-user/{create-user.7.x.php => create-user.8.x.php} (100%) rename notifications/rest/users/delete-user/{delete-user.7.x.php => delete-user.8.x.php} (100%) rename notifications/rest/users/list-binding-of-user/{list-binding-of-user.7.x.php => list-binding-of-user.8.x.php} (100%) rename notifications/rest/users/list-users/{list-users.7.x.php => list-users.8.x.php} (100%) rename notifications/rest/users/remove-user-from-segment/{remove-user-from-segment.7.x.php => remove-user-from-segment.8.x.php} (100%) rename notifications/rest/users/retrieve-user/{retrieve-user.7.x.php => retrieve-user.8.x.php} (100%) rename notifications/sms-quickstart/create-binding/{create-binding.7.x.php => create-binding.8.x.php} (100%) rename notifications/sms-quickstart/send-notification-to-number/{send-notification-to-number.7.x.php => send-notification-to-number.8.x.php} (100%) rename notifications/sms-quickstart/send-notification/{send-notification.7.x.php => send-notification.8.x.php} (100%) rename pricing/get-messaging-country/{get-messaging-country.7.x.php => get-messaging-country.8.x.php} (100%) rename pricing/get-phone-number-country/{get-phone-number-country.7.x.php => get-phone-number-country.8.x.php} (100%) rename pricing/get-voice-country/{get-voice-country.7.x.php => get-voice-country.8.x.php} (100%) rename pricing/get-voice-number-with-origination-number/{get-voice-number-with-origination-number.7.x.php => get-voice-number-with-origination-number.8.x.php} (100%) rename pricing/get-voice-number/{get-voice-number.7.x.php => get-voice-number.8.x.php} (100%) rename pricing/list-messaging-countries/{list-messaging-countries.7.x.php => list-messaging-countries.8.x.php} (100%) rename pricing/list-phone-number-countries/{list-phone-number-countries.7.x.php => list-phone-number-countries.8.x.php} (100%) rename pricing/list-voice-countries/{list-voice-countries.7.x.php => list-voice-countries.8.x.php} (100%) rename proxy/quickstart/add-phone-number/{add-phone-number.7.x.php => add-phone-number.8.x.php} (100%) rename proxy/quickstart/create-participant/{create-participant.7.x.php => create-participant.8.x.php} (100%) rename proxy/quickstart/create-service/{create-service.7.x.php => create-service.8.x.php} (100%) rename proxy/quickstart/create-session/{create-session.7.x.php => create-session.8.x.php} (100%) rename proxy/quickstart/send-message/{send-message.7.x.php => send-message.8.x.php} (100%) rename quickstart/php/autopilot/create-first-task/{create_hello_world_task.7.x.php => create_hello_world_task.8.x.php} (100%) rename quickstart/php/autopilot/create-hello-world-samples/{create_hello_world_samples.7.x.php => create_hello_world_samples.8.x.php} (100%) rename quickstart/php/autopilot/create-joke-samples/{create_joke_samples.7.x.php => create_joke_samples.8.x.php} (100%) rename quickstart/php/autopilot/create-joke-task/{create_joke_task.7.x.php => create_joke_task.8.x.php} (100%) rename quickstart/php/autopilot/query-task/{query_task.7.x.php => query_task.8.x.php} (100%) rename quickstart/php/client/example-1/{hello-client.7.x.php => hello-client.8.x.php} (100%) rename quickstart/php/client/example-2/{hello-client-2.7.x.php => hello-client-2.8.x.php} (100%) rename quickstart/php/client/example-3/{hello-client-3.7.x.php => hello-client-3.8.x.php} (100%) rename quickstart/php/client/example-4/{hello-client-4.7.x.php => hello-client-4.8.x.php} (100%) rename quickstart/php/client/example-5/{hello-client-5.7.x.php => hello-client-5.8.x.php} (100%) rename quickstart/php/sms/example-1/{sendnotifications.7.x.php => sendnotifications.8.x.php} (100%) rename quickstart/php/sms/example-2/{sendnotifications.7.x.php => sendnotifications.8.x.php} (100%) rename quickstart/php/sms/example-3/{sms-hello-monkey.7.x.php => sms-hello-monkey.8.x.php} (100%) rename quickstart/php/sms/example-4/{mms-hello-monkey.7.x.php => mms-hello-monkey.8.x.php} (100%) rename quickstart/php/sms/example-5/{reply-by-name.7.x.php => reply-by-name.8.x.php} (100%) rename quickstart/php/sms/example-6/{tracking-sms-conversations.7.x.php => tracking-sms-conversations.8.x.php} (100%) rename quickstart/php/sms/example-7/{send-sms-during-call.7.x.php => send-sms-during-call.8.x.php} (100%) rename quickstart/php/sms/reply_sms/{reply_sms.7.x.php => reply_sms.8.x.php} (100%) rename quickstart/php/sms/reply_sms_without_composer/{reply_sms.7.x.php => reply_sms.8.x.php} (100%) rename quickstart/php/sms/send_sms/{send_sms.7.x.php => send_sms.8.x.php} (100%) rename quickstart/php/sms/send_sms_without_composer/{send_sms.7.x.php => send_sms.8.x.php} (100%) rename quickstart/php/taskrouter/accept-reservation/{accept-reservation.7.x.php => accept-reservation.8.x.php} (100%) rename quickstart/php/taskrouter/agent/{agent.7.x.php => agent.8.x.php} (100%) rename quickstart/php/taskrouter/create-task/{create-task.7.x.php => create-task.8.x.php} (100%) rename quickstart/php/voice/answer_call/{answer_call.7.x.php => answer_call.8.x.php} (100%) rename quickstart/php/voice/answer_call_without_composer/{answer_call.7.x.php => answer_call.8.x.php} (100%) rename quickstart/php/voice/call-logs/{call-log.7.x.php => call-log.8.x.php} (100%) rename quickstart/php/voice/make_call/{make_call.7.x.php => make_call.8.x.php} (100%) rename quickstart/php/voice/make_call_without_composer/{make_call.7.x.php => make_call.8.x.php} (100%) rename quickstart/php/voice/outgoing-call/{call.7.x.php => call.8.x.php} (100%) create mode 100644 rename-files.py rename rest/access-tokens/ip-messaging-example-push-credential/{ip-messaging-example.7.x.php => ip-messaging-example.8.x.php} (100%) rename rest/access-tokens/ip-messaging-example/{ip-messaging-example.7.x.php => ip-messaging-example.8.x.php} (100%) rename rest/access-tokens/live-example/{live-example.7.x.php => live-example.8.x.php} (100%) rename rest/access-tokens/sync-example/{sync-example.7.x.php => sync-example.8.x.php} (100%) rename rest/access-tokens/video-example/{video-example.7.x.php => video-example.8.x.php} (100%) rename rest/access-tokens/voice-example/{voice-example.7.x.php => voice-example.8.x.php} (100%) rename rest/accounts/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/accounts/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/accounts/instance-post-example-2/{instance-post-example-2.7.x.php => instance-post-example-2.8.x.php} (100%) rename rest/accounts/instance-post-example-3/{instance-post-example-3.7.x.php => instance-post-example-3.8.x.php} (100%) rename rest/accounts/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/accounts/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/addresses/instance-create-example/{instance-create-example.7.x.php => instance-create-example.8.x.php} (100%) rename rest/addresses/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/addresses/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/addresses/list-dependent-pns-example-1/{list-dependent-pns-example-1.7.x.php => list-dependent-pns-example-1.8.x.php} (100%) rename rest/addresses/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/addresses/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/addresses/list-post-example-1/{list-post-example-1.7.x.php => list-post-example-1.8.x.php} (100%) rename rest/answering-machine-detection/outgoing-call/{outgoing-call-1.7.x.php => outgoing-call-1.8.x.php} (100%) rename rest/applications/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/applications/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/applications/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/applications/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/applications/list-post-example-1/{list-post-example-1.7.x.php => list-post-example-1.8.x.php} (100%) rename rest/authorized-connect-apps/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/authorized-connect-apps/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/available-phone-numbers/local-advanced-example-1/{local-get-advanced-example-1.7.x.php => local-get-advanced-example-1.8.x.php} (100%) rename rest/available-phone-numbers/local-basic-example-1/{local-get-basic-example-1.7.x.php => local-get-basic-example-1.8.x.php} (100%) rename rest/available-phone-numbers/local-basic-example-2/{local-get-basic-example-2.7.x.php => local-get-basic-example-2.8.x.php} (100%) rename rest/available-phone-numbers/local-basic-example-3/{local-get-basic-example-3.7.x.php => local-get-basic-example-3.8.x.php} (100%) rename rest/available-phone-numbers/local-basic-example-4/{local-get-basic-example-4.7.x.php => local-get-basic-example-4.8.x.php} (100%) rename rest/available-phone-numbers/local-basic-example-5/{local-get-basic-example-5.7.x.php => local-get-basic-example-5.8.x.php} (100%) rename rest/available-phone-numbers/local-basic-example-6/{local-get-basic-example-6.7.x.php => local-get-basic-example-6.8.x.php} (100%) rename rest/available-phone-numbers/local-basic-example-7/{local-get-basic-example-7.7.x.php => local-get-basic-example-7.8.x.php} (100%) rename rest/available-phone-numbers/local-basic-example-8/{local-get-basic-example-8.7.x.php => local-get-basic-example-8.8.x.php} (100%) rename rest/available-phone-numbers/mobile-example/{mobile-get-example-1.7.x.php => mobile-get-example-1.8.x.php} (100%) rename rest/available-phone-numbers/toll-free-example-1/{toll-free-get-example-1.7.x.php => toll-free-get-example-1.8.x.php} (100%) rename rest/available-phone-numbers/toll-free-example-2/{toll-free-get-example-2.7.x.php => toll-free-get-example-2.8.x.php} (100%) rename rest/available-phone-numbers/toll-free-example-3/{toll-free-get-example-3.7.x.php => toll-free-get-example-3.8.x.php} (100%) rename rest/call-feedback/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/call-feedback/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/call-feedback/summary-instance-delete-example-1/{summary-instance-delete-example-1.7.x.php => summary-instance-delete-example-1.8.x.php} (100%) rename rest/call-feedback/summary-instance-get-example-1/{summary-instance-get-example-1.7.x.php => summary-instance-get-example-1.8.x.php} (100%) rename rest/call-feedback/summary-instance-get-example-2/{summary-instance-get-example-2.7.x.php => summary-instance-get-example-2.8.x.php} (100%) rename rest/call-feedback/summary-list-post-example-1/{summary-list-post-example-1.7.x.php => summary-list-post-example-1.8.x.php} (100%) rename rest/call/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/call/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/call/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/call/list-get-example-3/{list-get-example-3.7.x.php => list-get-example-3.8.x.php} (100%) rename rest/call/list-get-example-4/{list-get-example-4.7.x.php => list-get-example-4.8.x.php} (100%) rename rest/call/list-get-example-6/{list-get-example-6.7.x.php => list-get-example-6.8.x.php} (100%) rename rest/call/list-get-example-7/{list-get-example-7.7.x.php => list-get-example-7.8.x.php} (100%) rename rest/change-call-state/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/change-call-state/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/conference/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/conference/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/conference/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/conference/list-get-example-3/{list-get-example-3.7.x.php => list-get-example-3.8.x.php} (100%) rename rest/conference/list-get-example-4/{list-get-example-4.7.x.php => list-get-example-4.8.x.php} (100%) rename rest/connect-apps/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/connect-apps/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/incoming-phone-numbers/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/incoming-phone-numbers/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/incoming-phone-numbers/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/incoming-phone-numbers/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/incoming-phone-numbers/list-get-example-3/{list-get-example-3.7.x.php => list-get-example-3.8.x.php} (100%) rename rest/incoming-phone-numbers/list-post-example-1/{list-post-example-1.7.x.php => list-post-example-1.8.x.php} (100%) rename rest/keys/instance-get-example/{instance-get-example.7.x.php => instance-get-example.8.x.php} (100%) rename rest/keys/list-get-example/{list-get-example.7.x.php => list-get-example.8.x.php} (100%) rename rest/keys/list-post-example/{list-post-example.7.x.php => list-post-example.8.x.php} (100%) rename rest/keys/using-keys-example/{example.7.x.php => example.8.x.php} (100%) rename rest/making-calls-sip/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/making-calls-sip/example-2/{example-2.7.x.php => example-2.8.x.php} (100%) rename rest/making-calls-sip/example-3/{example-3.7.x.php => example-3.8.x.php} (100%) rename rest/making-calls/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/making-calls/example-2/{example-2.7.x.php => example-2.8.x.php} (100%) rename rest/making-calls/example-3/{example-3.7.x.php => example-3.8.x.php} (100%) rename rest/making-calls/example-4/{example-4.7.x.php => example-4.8.x.php} (100%) rename rest/media/instance-delete-example-1/{instance-delete-example-1.7.x.php => instance-delete-example-1.8.x.php} (100%) rename rest/media/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/member/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/member/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/member/instance-post-example-2/{instance-post-example-2.7.x.php => instance-post-example-2.8.x.php} (100%) rename rest/member/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/message/instance-delete/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/message/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/message/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/message/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/message/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/messages/feedback-send-sms/{feedback-send-sms.7.x.php => feedback-send-sms.8.x.php} (100%) rename rest/messages/generate-twiml-dynamic-sms/{generate-twiml-dynamic-sms.7.x.php => generate-twiml-dynamic-sms.8.x.php} (100%) rename rest/messages/generate-twiml-empty-response/{generate-twiml-empty-response.7.x.php => generate-twiml-empty-response.8.x.php} (100%) rename rest/messages/generate-twiml-mms/{generate-twiml-mms.7.x.php => generate-twiml-mms.8.x.php} (100%) rename rest/messages/generate-twiml-sms-voice/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/messages/generate-twiml-sms/{generate-twiml-sms.7.x.php => generate-twiml-sms.8.x.php} (100%) rename rest/messages/send-message/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/messages/send-messages-copilot/{send-messages-copilot.7.x.php => send-messages-copilot.8.x.php} (100%) rename rest/messages/send-sms-callback/{send-sms-callback.7.x.php => send-sms-callback.8.x.php} (100%) rename rest/messages/send-sms/{send-sms.7.x.php => send-sms.8.x.php} (100%) rename rest/notification/instance-delete-examples/{instance-delete-examples.7.x.php => instance-delete-examples.8.x.php} (100%) rename rest/notification/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/notification/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/notification/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/notification/list-get-example-3/{list-get-example-3.7.x.php => list-get-example-3.8.x.php} (100%) rename rest/notification/list-get-example-4/{list-get-example-4.7.x.php => list-get-example-4.8.x.php} (100%) rename rest/outgoing-caller-ids/instance-delete/{instance-delete.7.x.php => instance-delete.8.x.php} (100%) rename rest/outgoing-caller-ids/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/outgoing-caller-ids/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/outgoing-caller-ids/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/outgoing-caller-ids/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/outgoing-caller-ids/list-post-example-1/{list-post-example-1.7.x.php => list-post-example-1.8.x.php} (100%) rename rest/participant/instance-delete-example-1/{instance-delete-example-1.7.x.php => instance-delete-example-1.8.x.php} (100%) rename rest/participant/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/participant/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/participant/instance-post-example-2/{instance-post-example-2.7.x.php => instance-post-example-2.8.x.php} (100%) rename rest/participant/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/participant/list-post-example-1/{list-post-example-1.7.x.php => list-post-example-1.8.x.php} (100%) rename rest/queue/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/queue/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/queue/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/queue/list-post-example-1/{list-post-example-1.7.x.php => list-post-example-1.8.x.php} (100%) rename rest/recording/get-recording-xml/{get-recording-xml.7.x.php => get-recording-xml.8.x.php} (100%) rename rest/recording/instance-delete-examples/{instance-delete-examples.7.x.php => instance-delete-examples.8.x.php} (100%) rename rest/recording/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/recording/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/recording/list-get-example-3/{list-get-example-3.7.x.php => list-get-example-3.8.x.php} (100%) rename rest/recording/list-get-example-4/{list-get-example-4.7.x.php => list-get-example-4.8.x.php} (100%) rename rest/recording/list-get-example-5/{list-get-example-5.7.x.php => list-get-example-5.8.x.php} (100%) rename rest/recording/list-recording-transcriptions/{list-recording-transcriptions-7.x.php => list-recording-transcriptions-8.x.php} (100%) rename rest/sending-messages/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/short-codes/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/short-codes/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/short-codes/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/short-codes/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/short-codes/list-get-example-3/{list-get-example-3.7.x.php => list-get-example-3.8.x.php} (100%) rename rest/sip-in/associate-control-domain/{associate-control-domain.7.x.php => associate-control-domain.8.x.php} (100%) rename rest/sip-in/create-acl-address/{create-acl-address.7.x.php => create-acl-address.8.x.php} (100%) rename rest/sip-in/create-credential-list/{create-credential-list.7.x.php => create-credential-list.8.x.php} (100%) rename rest/sip-in/create-credential/{create-credential.7.x.php => create-credential.8.x.php} (100%) rename rest/sip-in/create-domain/{create-domain.7.x.php => create-domain.8.x.php} (100%) rename rest/sip-in/create-ip-acl/{create-ip-acl.7.x.php => create-ip-acl.8.x.php} (100%) rename rest/sip-in/delete-access-mapping-old/{delete-access-mapping.7.x.php => delete-access-mapping.8.x.php} (100%) rename rest/sip-in/delete-access-mapping/{delete-access-mapping.7.x.php => delete-access-mapping.8.x.php} (100%) rename rest/sip-in/delete-address-instance/{delete-address-instance.7.x.php => delete-address-instance.8.x.php} (100%) rename rest/sip-in/delete-credential-list-instance/{delete-credential-list-instance.7.x.php => delete-credential-list-instance.8.x.php} (100%) rename rest/sip-in/delete-credential-list-mapping-old/{delete-credential-list-mapping.7.x.php => delete-credential-list-mapping.8.x.php} (100%) rename rest/sip-in/delete-credential-list-mapping/{delete-credential-list-mapping.7.x.php => delete-credential-list-mapping.8.x.php} (100%) rename rest/sip-in/delete-credential/{delete-credential.7.x.php => delete-credential.8.x.php} (100%) rename rest/sip-in/delete-domain-instance/{delete-domain-instance.7.x.php => delete-domain-instance.8.x.php} (100%) rename rest/sip-in/delete-ip-acl/{delete-ip-acl.7.x.php => delete-ip-acl.8.x.php} (100%) rename rest/sip-in/get-acl-addresses/{get-acl-addresses.7.x.php => get-acl-addresses.8.x.php} (100%) rename rest/sip-in/get-acl-list/{get-acl-list.7.x.php => get-acl-list.8.x.php} (100%) rename rest/sip-in/get-acl-lists/{get-acl-lists.7.x.php => get-acl-lists.8.x.php} (100%) rename rest/sip-in/get-address-instance/{get-address-instance.7.x.php => get-address-instance.8.x.php} (100%) rename rest/sip-in/get-credential-list-instance/{get-credential-list-instance.7.x.php => get-credential-list-instance.8.x.php} (100%) rename rest/sip-in/get-credential-list-mappings/{get-credential-list-mappings.7.x.php => get-credential-list-mappings.8.x.php} (100%) rename rest/sip-in/get-credential-lists-credentials/{get-credential-lists-credentials.7.x.php => get-credential-lists-credentials.8.x.php} (100%) rename rest/sip-in/get-credential-lists/{get-credential-lists.7.x.php => get-credential-lists.8.x.php} (100%) rename rest/sip-in/get-credential/{get-credential.7.x.php => get-credential.8.x.php} (100%) rename rest/sip-in/get-domain-instance/{get-domain-instance.7.x.php => get-domain-instance.8.x.php} (100%) rename rest/sip-in/get-domain-mappings/{get-domain-mappings.7.x.php => get-domain-mappings.8.x.php} (100%) rename rest/sip-in/get-domains/{get-domains.7.x.php => get-domains.8.x.php} (100%) rename rest/sip-in/get-ip-acls/{get-ip-acls.7.x.php => get-ip-acls.8.x.php} (100%) rename rest/sip-in/get-mappings-instance-old/{get-mappings-instance.7.x.php => get-mappings-instance.8.x.php} (100%) rename rest/sip-in/get-mappings-instance/{get-mappings-instance.7.x.php => get-mappings-instance.8.x.php} (100%) rename rest/sip-in/map-credential-list-domain-old/{map-credential-list-domain.7.x.php => map-credential-list-domain.8.x.php} (100%) rename rest/sip-in/map-credential-list-domain/{map-credential-list-domain.7.x.php => map-credential-list-domain.8.x.php} (100%) rename rest/sip-in/map-list-domain-old/{map-list-domain.7.x.php => map-list-domain.8.x.php} (100%) rename rest/sip-in/map-list-domain/{map-list-domain.7.x.php => map-list-domain.8.x.php} (100%) rename rest/sip-in/update-address-instance/{update-address-instance.7.x.php => update-address-instance.8.x.php} (100%) rename rest/sip-in/update-credential-list-instance/{update-credential-list-instance.7.x.php => update-credential-list-instance.8.x.php} (100%) rename rest/sip-in/update-credential/{update-credential.7.x.php => update-credential.8.x.php} (100%) rename rest/sip-in/update-domain-instance/{update-domain-instance.7.x.php => update-domain-instance.8.x.php} (100%) rename rest/sip-in/update-ip-acl-instance/{update-ip-acl-instance.7.x.php => update-ip-acl-instance.8.x.php} (100%) rename rest/sip/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/sip/example-2/{example-2.7.x.php => example-2.8.x.php} (100%) rename rest/sip/example-3/{example-3.7.x.php => example-3.8.x.php} (100%) rename rest/sms/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/sms/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/subaccounts/billing-example/{subaccount-billing.7.x.php => subaccount-billing.8.x.php} (100%) rename rest/subaccounts/creating-subaccounts-example-1/{creating-subaccounts-example-1.7.x.php => creating-subaccounts-example-1.8.x.php} (100%) rename rest/subaccounts/exchanging-numbers-example-1/{exchanging-numbers-example-1.7.x.php => exchanging-numbers-example-1.8.x.php} (100%) rename rest/subaccounts/listing-subaccounts-example-1/{listing-subaccounts-example-1.7.x.php => listing-subaccounts-example-1.8.x.php} (100%) rename rest/subaccounts/listing-subaccounts-example-2/{listing-subaccounts-example-2.7.x.php => listing-subaccounts-example-2.8.x.php} (100%) rename rest/subaccounts/voice-example/{subaccount-call.7.x.php => subaccount-call.8.x.php} (100%) rename rest/taskrouter/activities/instance/delete/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/activities/instance/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/activities/instance/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/activities/list/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/activities/list/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/events/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/jwts/taskqueue/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/jwts/worker/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/jwts/workspace/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/reservations/call/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/reservations/conference/{conference.7.x.php => conference.8.x.php} (100%) rename rest/taskrouter/reservations/dequeue/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/reservations/instance/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/reservations/instance/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/reservations/list/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/reservations/redirect/{redirect.7.x.php => redirect.8.x.php} (100%) rename rest/taskrouter/reservations/reject/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/taskqueue/cumulative/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/taskqueue/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/taskqueue/realtime/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/worker/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workers/cumulative/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workers/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workers/realtime/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workflow/cumulative/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workflow/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workflow/realtime/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workspace/cumulative/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workspace/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/statistics/workspace/realtime/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/taskqueues/instance/delete/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/taskqueues/instance/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/taskqueues/instance/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/taskqueues/list/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/taskqueues/list/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/tasks/instance/delete/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/tasks/instance/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/tasks/instance/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/tasks/list/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/tasks/list/get/example-2/{example-2.7.x.php => example-2.8.x.php} (100%) rename rest/taskrouter/tasks/list/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/twiml/example1/example/{example.7.x.php => example.8.x.php} (100%) rename rest/taskrouter/twiml/example2/example/{example.7.x.php => example.8.x.php} (100%) rename rest/taskrouter/twiml/example3/example/{example.7.x.php => example.8.x.php} (100%) rename rest/taskrouter/twiml/example4/example/{example.7.x.php => example.8.x.php} (100%) rename rest/taskrouter/worker-reservations/accept/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/worker-reservations/call/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/worker-reservations/dequeue/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/worker-reservations/instance-get-example1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/worker-reservations/list-get-example1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/worker-reservations/reject/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workers/instance/delete/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workers/instance/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workers/instance/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workers/list/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workers/list/get/example-2/{example-2.7.x.php => example-2.8.x.php} (100%) rename rest/taskrouter/workers/list/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workflows/instance/delete/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workflows/instance/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workflows/instance/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workflows/list/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workflows/list/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workspaces/instance/delete/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workspaces/instance/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workspaces/instance/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workspaces/list/get/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/taskrouter/workspaces/list/post/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/test-credentials/test-calls-example-1/{test-calls-example-1.7.x.php => test-calls-example-1.8.x.php} (100%) rename rest/test-credentials/test-calls-example-2/{test-calls-example-2.7.x.php => test-calls-example-2.8.x.php} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-1/{test-incoming-phone-numbers-example-1.7.x.php => test-incoming-phone-numbers-example-1.8.x.php} (100%) rename rest/test-credentials/test-incoming-phone-numbers-example-2/{test-incoming-phone-numbers-example-2.7.x.php => test-incoming-phone-numbers-example-2.8.x.php} (100%) rename rest/test-credentials/test-post-example-3/{test-post-example-3.7.x.php => test-post-example-3.8.x.php} (100%) rename rest/test-credentials/test-sms-messages-example-1/{test-sms-messages-example-1.7.x.php => test-sms-messages-example-1.8.x.php} (100%) rename rest/test-credentials/test-sms-messages-example-2/{test-sms-messages-example-2.7.x.php => test-sms-messages-example-2.8.x.php} (100%) rename rest/test-credentials/test-sms-messages-example-3/{test-sms-messages-example-3.7.x.php => test-sms-messages-example-3.8.x.php} (100%) rename rest/token/list-post-1-hour-example/{list-post-1-hour-example.7.x.php => list-post-1-hour-example.8.x.php} (100%) rename rest/token/list-post-example/{list-post-example.7.x.php => list-post-example.8.x.php} (100%) rename rest/transcription/instance-delete-examples/{instance-delete-examples.7.x.php => instance-delete-examples.8.x.php} (100%) rename rest/transcription/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/transcription/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/usage-records/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/usage-records/list-get-example-2/{list-get-example-2.7.x.php => list-get-example-2.8.x.php} (100%) rename rest/usage-records/list-get-example-3/{list-get-example-3.7.x.php => list-get-example-3.8.x.php} (100%) rename rest/usage-records/list-get-example-4/{list-get-example-4.7.x.php => list-get-example-4.8.x.php} (100%) rename rest/usage-records/list-get-example-5/{list-get-example-5.7.x.php => list-get-example-5.8.x.php} (100%) rename rest/usage-triggers/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename rest/usage-triggers/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename rest/usage-triggers/list-get-example-1/{list-get-example-1.7.x.php => list-get-example-1.8.x.php} (100%) rename rest/usage-triggers/list-post-example-1/{list-post-example-1.7.x.php => list-post-example-1.8.x.php} (100%) rename rest/voice/outbound-calls/example-1/{example-1.7.x.php => example-1.8.x.php} (100%) rename rest/voice/outbound-calls/example-2/{example-2.7.x.php => example-2.8.x.php} (100%) rename rest/voice/outbound-calls/example-3/{example-3.7.x.php => example-3.8.x.php} (100%) rename rest/voice/outbound-calls/example-4/{example-4.7.x.php => example-4.8.x.php} (100%) rename security/environment_variables/{environment-variables-1.7.x.php => environment-variables-1.8.x.php} (100%) rename security/signature_validation/{signature_validation.7.x.php => signature_validation.8.x.php} (100%) rename security/signature_validation_tests/{signature_validation_tests.7.x.php => signature_validation_tests.8.x.php} (100%) rename stun-turn/list-post-example/{list-post-example.7.x.php => list-post-example.8.x.php} (100%) rename super-sim/sims/update-account/{update-account.7.x.php => update-account.8.x.php} (100%) rename sync/rest/document-permissions/delete-permission/{delete-permission.7.x.php => delete-permission.8.x.php} (100%) rename sync/rest/document-permissions/list-permissions/{list-permissions.7.x.php => list-permissions.8.x.php} (100%) rename sync/rest/document-permissions/retrieve-permission/{retrieve-permission.7.x.php => retrieve-permission.8.x.php} (100%) rename sync/rest/document-permissions/update-permission/{update-permission.7.x.php => update-permission.8.x.php} (100%) rename sync/rest/documents/create-document/{create-document.7.x.php => create-document.8.x.php} (100%) rename sync/rest/documents/delete-document/{delete-document.7.x.php => delete-document.8.x.php} (100%) rename sync/rest/documents/list-documents/{list-documents.7.x.php => list-documents.8.x.php} (100%) rename sync/rest/documents/retrieve-document/{retrieve-document.7.x.php => retrieve-document.8.x.php} (100%) rename sync/rest/documents/update-document/{update-document.7.x.php => update-document.8.x.php} (100%) rename sync/rest/list-permissions/delete-permission/{delete-permission.7.x.php => delete-permission.8.x.php} (100%) rename sync/rest/list-permissions/list-permissions/{list-permissions.7.x.php => list-permissions.8.x.php} (100%) rename sync/rest/list-permissions/retrieve-permission/{retrieve-permission.7.x.php => retrieve-permission.8.x.php} (100%) rename sync/rest/list-permissions/update-permission/{update-permission.7.x.php => update-permission.8.x.php} (100%) rename sync/rest/lists/create-list-item/{create-list-item.7.x.php => create-list-item.8.x.php} (100%) rename sync/rest/lists/create-list/{create-list.7.x.php => create-list.8.x.php} (100%) rename sync/rest/lists/delete-list-item/{delete-list-item.7.x.php => delete-list-item.8.x.php} (100%) rename sync/rest/lists/delete-list/{delete-list.7.x.php => delete-list.8.x.php} (100%) rename sync/rest/lists/list-lists/{list-lists.7.x.php => list-lists.8.x.php} (100%) rename sync/rest/lists/query-list/{query-list.7.x.php => query-list.8.x.php} (100%) rename sync/rest/lists/retrieve-list-item/{retrieve-list-item.7.x.php => retrieve-list-item.8.x.php} (100%) rename sync/rest/lists/retrieve-list/{retrieve-list.7.x.php => retrieve-list.8.x.php} (100%) rename sync/rest/lists/update-list-item/{update-list-item.7.x.php => update-list-item.8.x.php} (100%) rename sync/rest/lists/update-list/{update-list.7.x.php => update-list.8.x.php} (100%) rename sync/rest/map-permissions/delete-permission/{delete-permission.7.x.php => delete-permission.8.x.php} (100%) rename sync/rest/map-permissions/list-permissions/{list-permissions.7.x.php => list-permissions.8.x.php} (100%) rename sync/rest/map-permissions/retrieve-permission/{retrieve-permission.7.x.php => retrieve-permission.8.x.php} (100%) rename sync/rest/map-permissions/update-permission/{update-permission.7.x.php => update-permission.8.x.php} (100%) rename sync/rest/maps/create-map-item/{create-map-item.7.x.php => create-map-item.8.x.php} (100%) rename sync/rest/maps/create-map/{create-map.7.x.php => create-map.8.x.php} (100%) rename sync/rest/maps/delete-map-item/{delete-map-item.7.x.php => delete-map-item.8.x.php} (100%) rename sync/rest/maps/delete-map/{delete-map.7.x.php => delete-map.8.x.php} (100%) rename sync/rest/maps/list-maps/{list-maps.7.x.php => list-maps.8.x.php} (100%) rename sync/rest/maps/query-map/{query-map.7.x.php => query-map.8.x.php} (100%) rename sync/rest/maps/retrieve-map-item/{retrieve-map-item.7.x.php => retrieve-map-item.8.x.php} (100%) rename sync/rest/maps/retrieve-map/{retrieve-map.7.x.php => retrieve-map.8.x.php} (100%) rename sync/rest/maps/update-map-item/{update-map-item.7.x.php => update-map-item.8.x.php} (100%) rename sync/rest/maps/update-map/{update-map.7.x.php => update-map.8.x.php} (100%) rename sync/rest/services/create-service-webhook/{create-service-webhook.7.x.php => create-service-webhook.8.x.php} (100%) rename sync/rest/services/create-service/{create-service.7.x.php => create-service.8.x.php} (100%) rename sync/rest/services/delete-service/{delete-service.7.x.php => delete-service.8.x.php} (100%) rename sync/rest/services/list-services/{list-services.7.x.php => list-services.8.x.php} (100%) rename sync/rest/services/retrieve-service/{retrieve-service.7.x.php => retrieve-service.8.x.php} (100%) rename sync/rest/services/update-service/{update-service.7.x.php => update-service.8.x.php} (100%) rename sync/rest/streams/create-stream/{create-stream.7.x.php => create-stream.8.x.php} (100%) rename sync/rest/streams/delete-stream/{delete-stream.7.x.php => delete-stream.8.x.php} (100%) rename sync/rest/streams/list-streams/{list-streams.7.x.php => list-streams.8.x.php} (100%) rename sync/rest/streams/publish-stream-message/{publish-stream-message.7.x.php => publish-stream-message.8.x.php} (100%) rename sync/rest/streams/retrieve-stream/{retrieve-stream.7.x.php => retrieve-stream.8.x.php} (100%) rename sync/rest/streams/update-stream/{update-stream.7.x.php => update-stream.8.x.php} (100%) rename twiml/message/message/message-1/{message-1.7.x.php => message-1.8.x.php} (100%) rename twiml/message/message/message-2/{message-2.7.x.php => message-2.8.x.php} (100%) rename twiml/message/message/message-3/{message-3.7.x.php => message-3.8.x.php} (100%) rename twiml/message/message/message-4/{message-4.7.x.php => message-4.8.x.php} (100%) rename twiml/message/redirect/redirect-1/{redirect-1.7.x.php => redirect-1.8.x.php} (100%) rename twiml/message/redirect/redirect-2/{redirect-2.7.x.php => redirect-2.8.x.php} (100%) rename twiml/message/your-response/your-response-1/{your-response-1.7.x.php => your-response-1.8.x.php} (100%) rename twiml/message/your-response/your-response-2/{your-response-2.7.x.php => your-response-2.8.x.php} (100%) rename twiml/message/your-response/your-response-3/{your-response-3.7.x.php => your-response-3.8.x.php} (100%) rename twiml/voice/client/client-1/{client-1.7.x.php => client-1.8.x.php} (100%) rename twiml/voice/client/client-2/{client-2.7.x.php => client-2.8.x.php} (100%) rename twiml/voice/client/client-3/{client-3.7.x.php => client-3.8.x.php} (100%) rename twiml/voice/conference/conference-1/{conference-1.7.x.php => conference-1.8.x.php} (100%) rename twiml/voice/conference/conference-10/{conference-10.7.x.php => conference-10.8.x.php} (100%) rename twiml/voice/conference/conference-2/{conference-2.7.x.php => conference-2.8.x.php} (100%) rename twiml/voice/conference/conference-3/{conference-3.7.x.php => conference-3.8.x.php} (100%) rename twiml/voice/conference/conference-4/{conference-4.7.x.php => conference-4.8.x.php} (100%) rename twiml/voice/conference/conference-5/{conference-5.7.x.php => conference-5.8.x.php} (100%) rename twiml/voice/conference/conference-6/{conference-6.7.x.php => conference-6.8.x.php} (100%) rename twiml/voice/conference/conference-7/{conference-7.7.x.php => conference-7.8.x.php} (100%) rename twiml/voice/conference/conference-8/{conference-8.7.x.php => conference-8.8.x.php} (100%) rename twiml/voice/conference/conference-9/{conference-9.7.x.php => conference-9.8.x.php} (100%) rename twiml/voice/connect/autopilot/{connect-1.7.x.php => connect-1.8.x.php} (100%) rename twiml/voice/connect/connect-1/{connect-1.7.x.php => connect-1.8.x.php} (100%) rename twiml/voice/connect/connect-2/{connect-2.7.x.php => connect-2.8.x.php} (100%) rename twiml/voice/connect/stream/{connect_stream.7.x.php => connect_stream.8.x.php} (100%) rename twiml/voice/connect/virtualagent-1/{virtualagent-1.7.x.php => virtualagent-1.8.x.php} (100%) rename twiml/voice/connect/virtualagent-2/{virtualagent-2.7.x.php => virtualagent-2.8.x.php} (100%) rename twiml/voice/connect/virtualagent-3/{virtualagent-3.7.x.php => virtualagent-3.8.x.php} (100%) rename twiml/voice/connect/virtualagent-4/{virtualagent-4.7.x.php => virtualagent-4.8.x.php} (100%) rename twiml/voice/dial/dial-1/{dial-1.7.x.php => dial-1.8.x.php} (100%) rename twiml/voice/dial/dial-2/{dial-2.7.x.php => dial-2.8.x.php} (100%) rename twiml/voice/dial/dial-3/{dial-3.7.x.php => dial-3.8.x.php} (100%) rename twiml/voice/dial/dial-4/{dial-4.7.x.php => dial-4.8.x.php} (100%) rename twiml/voice/dial/dial-5/{dial-5.7.x.php => dial-5.8.x.php} (100%) rename twiml/voice/dial/dial-6/{dial-6.7.x.php => dial-6.8.x.php} (100%) rename twiml/voice/dial/dial-7/{dial-7.7.x.php => dial-7.8.x.php} (100%) rename twiml/voice/enqueue/enqueue-1/{enqueue-1.7.x.php => enqueue-1.8.x.php} (100%) rename twiml/voice/enqueue/enqueue-2/{enqueue-2.7.x.php => enqueue-2.8.x.php} (100%) rename twiml/voice/gather/gather-1/{gather-1.7.x.php => gather-1.8.x.php} (100%) rename twiml/voice/gather/gather-2/{gather-2.7.x.php => gather-2.8.x.php} (100%) rename twiml/voice/gather/gather-3/{gather-3.7.x.php => gather-3.8.x.php} (100%) rename twiml/voice/gather/gather-4/{gather-4.7.x.php => gather-4.8.x.php} (100%) rename twiml/voice/gather/gather-5/{gather-5.7.x.php => gather-5.8.x.php} (100%) rename twiml/voice/hangup/hangup-1/{hangup-1.7.x.php => hangup-1.8.x.php} (100%) rename twiml/voice/leave/leave-1/{leave-1.7.x.php => leave-1.8.x.php} (100%) rename twiml/voice/leave/leave-2/{leave-2.7.x.php => leave-2.8.x.php} (100%) rename twiml/voice/leave/leave-3/{leave-3.7.x.php => leave-3.8.x.php} (100%) rename twiml/voice/number/number-1/{number-1.7.x.php => number-1.8.x.php} (100%) rename twiml/voice/number/number-2/{number-2.7.x.php => number-2.8.x.php} (100%) rename twiml/voice/number/number-3/{number-3.7.x.php => number-3.8.x.php} (100%) rename twiml/voice/number/number-4/{number-4.7.x.php => number-4.8.x.php} (100%) rename twiml/voice/number/number-5/{number-5.7.x.php => number-5.8.x.php} (100%) rename twiml/voice/parameter/parameter-1/{parameter-1.7.x.php => parameter-1.8.x.php} (100%) rename twiml/voice/pause/pause-1/{pause-1.7.x.php => pause-1.8.x.php} (100%) rename twiml/voice/pause/pause-2/{pause-2.7.x.php => pause-2.8.x.php} (100%) rename twiml/voice/pay/pay-1/{pay-1.7.x.php => pay-1.8.x.php} (100%) rename twiml/voice/pay/pay-2/{pay-2.7.x.php => pay-2.8.x.php} (100%) rename twiml/voice/pay/pay-3/{pay-3.7.x.php => pay-3.8.x.php} (100%) rename twiml/voice/pay/pay-4/{pay-4.7.x.php => pay-4.8.x.php} (100%) rename twiml/voice/pay/pay-5/{pay-5.7.x.php => pay-5.8.x.php} (100%) rename twiml/voice/pay/pay-6/{pay-6.7.x.php => pay-6.8.x.php} (100%) rename twiml/voice/pay/pay-7/{pay-7.7.x.php => pay-7.8.x.php} (100%) rename twiml/voice/pay/pay-8/{pay-8.7.x.php => pay-8.8.x.php} (100%) rename twiml/voice/pay/pay-9/{pay-9.7.x.php => pay-9.8.x.php} (100%) rename twiml/voice/pay/pay-charge-connector/{pay-charge-connector.7.x.php => pay-charge-connector.8.x.php} (100%) rename twiml/voice/pay/pay-tokenize-connector/{pay-tokenize-connector.7.x.php => pay-tokenize-connector.8.x.php} (100%) rename twiml/voice/pay/pay-tokenize/{pay-tokenize.7.x.php => pay-tokenize.8.x.php} (100%) rename twiml/voice/play/play-1/{play-1.7.x.php => play-1.8.x.php} (100%) rename twiml/voice/play/play-2/{play-2.7.x.php => play-2.8.x.php} (100%) rename twiml/voice/play/play-3/{play-3.7.x.php => play-3.8.x.php} (100%) rename twiml/voice/queue/queue-1/{queue-1.7.x.php => queue-1.8.x.php} (100%) rename twiml/voice/queue/queue-2/{queue-2.7.x.php => queue-2.8.x.php} (100%) rename twiml/voice/record/record-1/{record-1.7.x.php => record-1.8.x.php} (100%) rename twiml/voice/record/record-2/{record-2.7.x.php => record-2.8.x.php} (100%) rename twiml/voice/record/record-3/{record-3.7.x.php => record-3.8.x.php} (100%) rename twiml/voice/record/record-4/{record-4.7.x.php => record-4.8.x.php} (100%) rename twiml/voice/redirect/redirect-1/{redirect-1.7.x.php => redirect-1.8.x.php} (100%) rename twiml/voice/redirect/redirect-2/{redirect-2.7.x.php => redirect-2.8.x.php} (100%) rename twiml/voice/redirect/redirect-3/{redirect-3.7.x.php => redirect-3.8.x.php} (100%) rename twiml/voice/refer/refer-1/{refer-1.7.x.php => refer-1.8.x.php} (100%) rename twiml/voice/refer/refer-2/{refer-2.7.x.php => refer-2.8.x.php} (100%) rename twiml/voice/refer/refer-3/{refer-3.7.x.php => refer-3.8.x.php} (100%) rename twiml/voice/refer/refer-4/{refer-4.7.x.php => refer-4.8.x.php} (100%) rename twiml/voice/reject/reject-1/{reject-1.7.x.php => reject-1.8.x.php} (100%) rename twiml/voice/reject/reject-2/{reject-2.7.x.php => reject-2.8.x.php} (100%) rename twiml/voice/say/say-basic-usage/{say-basic-usage.7.x.php => say-basic-usage.8.x.php} (100%) rename twiml/voice/say/say-language/{say-language.7.x.php => say-language.8.x.php} (100%) rename twiml/voice/say/say-loop/{say-loop.7.x.php => say-loop.8.x.php} (100%) rename twiml/voice/say/say-voice/{say-voice.7.x.php => say-voice.8.x.php} (100%) rename twiml/voice/say/ssml/{ssml.7.x.php => ssml.8.x.php} (100%) rename twiml/voice/sim/sim-1/{sim-1.7.x.php => sim-1.8.x.php} (100%) rename twiml/voice/sim/sim-2/{sim-2.7.x.php => sim-2.8.x.php} (100%) rename twiml/voice/sip/sip-1/{sip-1.7.x.php => sip-1.8.x.php} (100%) rename twiml/voice/sip/sip-10/{sip-10.7.x.php => sip-10.8.x.php} (100%) rename twiml/voice/sip/sip-11/{sip-11.7.x.php => sip-11.8.x.php} (100%) rename twiml/voice/sip/sip-2/{sip-2.7.x.php => sip-2.8.x.php} (100%) rename twiml/voice/sip/sip-3/{sip-3.7.x.php => sip-3.8.x.php} (100%) rename twiml/voice/sip/sip-4/{sip-4.7.x.php => sip-4.8.x.php} (100%) rename twiml/voice/sip/sip-5/{sip-5.7.x.php => sip-5.8.x.php} (100%) rename twiml/voice/sip/sip-6/{sip-6.7.x.php => sip-6.8.x.php} (100%) rename twiml/voice/sip/sip-7/{sip-7.7.x.php => sip-7.8.x.php} (100%) rename twiml/voice/sip/sip-8/{sip-8.7.x.php => sip-8.8.x.php} (100%) rename twiml/voice/sip/sip-9/{sip-9.7.x.php => sip-9.8.x.php} (100%) rename twiml/voice/siprec/siprec-1/{siprec-1.7.x.php => siprec-1.8.x.php} (100%) rename twiml/voice/sms/sms-1/{sms-1.7.x.php => sms-1.8.x.php} (100%) rename twiml/voice/sms/sms-2/{sms-2.7.x.php => sms-2.8.x.php} (100%) rename twiml/voice/sms/sms-3/{sms-3.7.x.php => sms-3.8.x.php} (100%) rename twiml/voice/sms/sms-4/{sms-4.7.x.php => sms-4.8.x.php} (100%) rename twiml/voice/stream/stream-1/{stream-1.7.x.php => stream-1.8.x.php} (100%) rename twiml/voice/stream/stream-2/{stream-2.7.x.php => stream-2.8.x.php} (100%) rename twiml/voice/your-response/your-response-1/{your-response-1.7.x.php => your-response-1.8.x.php} (100%) rename twiml/voice/your-response/your-response-2/{your-response-2.7.x.php => your-response-2.8.x.php} (100%) rename verify/verifications/approve-verification/{approve-verification.7.x.php => approve-verification.8.x.php} (100%) rename video/rest/compositionhooks/audio-mixing-hook/{audio-mixing-hook.7.x.php => audio-mixing-hook.8.x.php} (100%) rename video/rest/compositionhooks/complex-layout-hook/{complex-layout-hook.7.x.php => complex-layout-hook.8.x.php} (100%) rename video/rest/compositionhooks/delete-hook/{delete-hook.7.x.php => delete-hook.8.x.php} (100%) rename video/rest/compositionhooks/get-hook/{get-hook.7.x.php => get-hook.8.x.php} (100%) rename video/rest/compositionhooks/grid-mixing-hook/{grid-mixing-hook.7.x.php => grid-mixing-hook.8.x.php} (100%) rename video/rest/compositionhooks/list-hooks/{list-hooks.7.x.php => list-hooks.8.x.php} (100%) rename video/rest/compositionhooks/update-hook/{update-hook.7.x.php => update-hook.8.x.php} (100%) rename video/rest/compositions/compose-chess/{compose-chess.7.x.php => compose-chess.8.x.php} (100%) rename video/rest/compositions/compose-main-with-col-and-pip/{compose-main-with-col-and-pip.7.x.php => compose-main-with-col-and-pip.8.x.php} (100%) rename video/rest/compositions/compose-main-with-row/{compose-main-with-row.7.x.php => compose-main-with-row.8.x.php} (100%) rename video/rest/compositions/compose-mosaic/{compose-mosaic.7.x.php => compose-mosaic.8.x.php} (100%) rename video/rest/compositions/compose-participant-video-with-all-audios/{compose-participant-video-with-all-audios.7.x.php => compose-participant-video-with-all-audios.8.x.php} (100%) rename video/rest/compositions/compose-participant/{transcode-video-recoding.7.x.php => transcode-video-recoding.8.x.php} (100%) rename video/rest/compositions/compose-pip/{compose-pip.7.x.php => compose-pip.8.x.php} (100%) rename video/rest/compositions/compose-room/{compose-room.7.x.php => compose-room.8.x.php} (100%) rename video/rest/compositions/compose-set-as-row/{compose-set-as-row.7.x.php => compose-set-as-row.8.x.php} (100%) rename video/rest/compositions/compose-set-as-sequence/{compose-set-as-sequence.7.x.php => compose-set-as-sequence.8.x.php} (100%) rename video/rest/compositions/delete-composition/{delete-composition.7.x.php => delete-composition.8.x.php} (100%) rename video/rest/compositions/get-completed-compositions/{get-completed-compositions.7.x.php => get-completed-compositions.8.x.php} (100%) rename video/rest/compositions/get-composition-media-file/{get-composition-media-file.7.x.php => get-composition-media-file.8.x.php} (100%) rename video/rest/compositions/get-composition/{get-composition.7.x.php => get-composition.8.x.php} (100%) rename video/rest/compositions/get-room-compositions/{get-room-compositions.7.x.php => get-room-compositions.8.x.php} (100%) rename video/rest/compositions/transcode-audio-recording/{transcode-audio-recoding.7.x.php => transcode-audio-recoding.8.x.php} (100%) rename video/rest/compositions/transcode-video-recording/{transcode-video-recoding.7.x.php => transcode-video-recoding.8.x.php} (100%) rename video/rest/recordings/delete-recording/{delete-recording.7.x.php => delete-recording.8.x.php} (100%) rename video/rest/recordings/list-deleted-recordings/{list-deleted-recordings.7.x.php => list-deleted-recordings.8.x.php} (100%) rename video/rest/recordings/list-recordings-for-participant-in-room/{list-recordings-for-participant-in-room.7.x.php => list-recordings-for-participant-in-room.8.x.php} (100%) rename video/rest/recordings/list-recordings-for-participant/{list-recordings-for-participant.7.x.php => list-recordings-for-participant.8.x.php} (100%) rename video/rest/recordings/list-recordings-for-room/{list-recordings-for-room.7.x.php => list-recordings-for-room.8.x.php} (100%) rename video/rest/recordings/retrieve-recording-binary-data/{retrieve-recording-binary-data.7.x.php => retrieve-recording-binary-data.8.x.php} (100%) rename video/rest/recordings/retrieve-recording-by-sid/{retrieve-recording-by-sid.7.x.php => retrieve-recording-by-sid.8.x.php} (100%) rename video/rest/rooms/create-group-room-with-h264/{create-group-room.7.x.php => create-group-room.8.x.php} (100%) rename video/rest/rooms/create-group-room/{create-group-room.7.x.php => create-group-room.8.x.php} (100%) rename video/rest/rooms/create-peer-to-peer-room/{create-peer-to-peer-room.7.x.php => create-peer-to-peer-room.8.x.php} (100%) rename video/rest/rooms/create-room/{create-room.7.x.php => create-room.8.x.php} (100%) rename video/rest/rooms/list-room-recordings/{list-room-recordings.7.x.php => list-room-recordings.8.x.php} (100%) rename video/rest/rooms/list-rooms-filtered-by-name/{list-rooms-filtered-by-name.7.x.php => list-rooms-filtered-by-name.8.x.php} (100%) rename video/rest/rooms/list-rooms-filtered-by-status/{list-rooms-filtered-by-status.7.x.php => list-rooms-filtered-by-status.8.x.php} (100%) rename video/rest/rooms/list-rooms-multiple-filters/{list-rooms-multiple-filters.7.x.php => list-rooms-multiple-filters.8.x.php} (100%) rename video/rest/rooms/participants/list-subscribed-tracks/{list-subscribed-tracks.7.x.php => list-subscribed-tracks.8.x.php} (100%) rename video/rest/rooms/participants/retrieve-subscribe-rules/{retrieve-subscribe-rules.7.x.php => retrieve-subscribe-rules.8.x.php} (100%) rename video/rest/rooms/participants/retrieve-subscribed-track/{retrieve-subscribed-track.7.x.php => retrieve-subscribed-track.8.x.php} (100%) rename video/rest/rooms/participants/unsubscribe-media-transcriber/{update-customer-rules.7.x.php => update-customer-rules.8.x.php} (100%) rename video/rest/rooms/participants/update-subscribe-rules-dynamic/{update-subscribe-rules-dynamic.7.x.php => update-subscribe-rules-dynamic.8.x.php} (100%) rename video/rest/rooms/participants/update-subscribe-rules-static/{update-customer-rules.7.x.php => update-customer-rules.8.x.php} (100%) rename video/rest/rooms/recording-rules-audio-all/{recording-rules-audio-all.7.x.php => recording-rules-audio-all.8.x.php} (100%) rename video/rest/rooms/recording-rules-one-participant/{recording-rules-one-participant.7.x.php => recording-rules-one-participant.8.x.php} (100%) rename video/rest/rooms/recording-rules-start-all/{recording-rules-start-all.7.x.php => recording-rules-start-all.8.x.php} (100%) rename video/rest/rooms/recording-rules-stop-all/{recording-rules-stop-all.7.x.php => recording-rules-stop-all.8.x.php} (100%) rename video/rest/rooms/retrieve-media-for-room-recording/{retrieve-media-for-room-recording.7.x.php => retrieve-media-for-room-recording.8.x.php} (100%) rename video/rest/rooms/retrieve-room-by-sid/{retrieve-room-by-sid.7.x.php => retrieve-room-by-sid.8.x.php} (100%) rename video/rest/rooms/retrieve-room-by-unique-name/{retrieve-room-by-unique-name.7.x.php => retrieve-room-by-unique-name.8.x.php} (100%) rename video/rest/rooms/retrieve-room-recording/{retrieve-room-recording.7.x.php => retrieve-room-recording.8.x.php} (100%) rename video/rest/rooms/update-room-status-to-completed/{update-room-status-to-completed.7.x.php => update-room-status-to-completed.8.x.php} (100%) rename video/users/token-generation-server-rooms/{token-generation-server.7.x.php => token-generation-server.8.x.php} (100%) rename video/users/token-generation-server/{token-generation-server.7.x.php => token-generation-server.8.x.php} (100%) rename voice/queueing/agent/{queue-agent.7.x.php => queue-agent.8.x.php} (100%) rename voice/queueing/caller/{queue-caller.7.x.php => queue-caller.8.x.php} (100%) rename voice/queueing/redirect/{queue-redirect.7.x.php => queue-redirect.8.x.php} (100%) rename voice/specify-edge/{specify-edge.7.x.php => specify-edge.8.x.php} (100%) rename wireless/commands/create-binary-example-1/{create-binary-example-1.7.x.php => create-binary-example-1.8.x.php} (100%) rename wireless/commands/create-text-example-1/{create-text-example-1.7.x.php => create-text-example-1.8.x.php} (100%) rename wireless/commands/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename wireless/commands/list-example-1/{list-example-1.7.x.php => list-example-1.8.x.php} (100%) rename wireless/rateplans/create-example-1/{create-example-1.7.x.php => create-example-1.8.x.php} (100%) rename wireless/rateplans/instance-delete-example-1/{delete-example-1.7.x.php => delete-example-1.8.x.php} (100%) rename wireless/rateplans/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename wireless/rateplans/instance-get-example-2/{instance-get-example-2.7.x.php => instance-get-example-2.8.x.php} (100%) rename wireless/rateplans/list-example-1/{list-example-1.7.x.php => list-example-1.8.x.php} (100%) rename wireless/sims-data-session/list-example-1/{list-example-1.7.x.php => list-example-1.8.x.php} (100%) rename wireless/sims-usage-record/list-example-1/{list-example-1.7.x.php => list-example-1.8.x.php} (100%) rename wireless/sims/instance-get-example-1/{instance-get-example-1.7.x.php => instance-get-example-1.8.x.php} (100%) rename wireless/sims/instance-get-example-2/{instance-get-example-2.7.x.php => instance-get-example-2.8.x.php} (100%) rename wireless/sims/instance-post-example-1/{instance-post-example-1.7.x.php => instance-post-example-1.8.x.php} (100%) rename wireless/sims/list-example-1/{list-example-1.7.x.php => list-example-1.8.x.php} (100%) diff --git a/README.md b/README.md index b5a5c4118e..fe4eccfb2f 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ snippet-example-1.7.x.rb snippet-example-1.6.x.cs snippet-example-1.4.x.php - snippet-example-1.7.x.php + snippet-example-1.8.x.php snippet-example-1.9.x.py ``` diff --git a/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.7.x.php b/add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.8.x.php similarity index 100% rename from add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.7.x.php rename to add-ons/lookups/payfone-tcpa-compliance/payfone-tcpa-compliance.8.x.php diff --git a/api-auth/api-auth.7.x.php b/api-auth/api-auth.8.x.php similarity index 100% rename from api-auth/api-auth.7.x.php rename to api-auth/api-auth.8.x.php diff --git a/client/capability-token-2way/capability-token.7.x.php b/client/capability-token-2way/capability-token.8.x.php similarity index 100% rename from client/capability-token-2way/capability-token.7.x.php rename to client/capability-token-2way/capability-token.8.x.php diff --git a/client/capability-token-incoming/capability-token.7.x.php b/client/capability-token-incoming/capability-token.8.x.php similarity index 100% rename from client/capability-token-incoming/capability-token.7.x.php rename to client/capability-token-incoming/capability-token.8.x.php diff --git a/client/capability-token-outgoing/capability-token.7.x.php b/client/capability-token-outgoing/capability-token.8.x.php similarity index 100% rename from client/capability-token-outgoing/capability-token.7.x.php rename to client/capability-token-outgoing/capability-token.8.x.php diff --git a/client/capability-token/capability-token.7.x.php b/client/capability-token/capability-token.8.x.php similarity index 100% rename from client/capability-token/capability-token.7.x.php rename to client/capability-token/capability-token.8.x.php diff --git a/client/response-twiml-client/response-twiml-client.7.x.php b/client/response-twiml-client/response-twiml-client.8.x.php similarity index 100% rename from client/response-twiml-client/response-twiml-client.7.x.php rename to client/response-twiml-client/response-twiml-client.8.x.php diff --git a/client/response-twiml-dial/response-twiml-dial.7.x.php b/client/response-twiml-dial/response-twiml-dial.8.x.php similarity index 100% rename from client/response-twiml-dial/response-twiml-dial.7.x.php rename to client/response-twiml-dial/response-twiml-dial.8.x.php diff --git a/client/response-twiml/response-twiml.7.x.php b/client/response-twiml/response-twiml.8.x.php similarity index 100% rename from client/response-twiml/response-twiml.7.x.php rename to client/response-twiml/response-twiml.8.x.php diff --git a/deployed-devices/quickstarts/sync-boardled/create-document/create-document.7.x.php b/deployed-devices/quickstarts/sync-boardled/create-document/create-document.8.x.php similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/create-document/create-document.7.x.php rename to deployed-devices/quickstarts/sync-boardled/create-document/create-document.8.x.php diff --git a/deployed-devices/quickstarts/sync-boardled/update-document/update-document.7.x.php b/deployed-devices/quickstarts/sync-boardled/update-document/update-document.8.x.php similarity index 100% rename from deployed-devices/quickstarts/sync-boardled/update-document/update-document.7.x.php rename to deployed-devices/quickstarts/sync-boardled/update-document/update-document.8.x.php diff --git a/deployed-devices/rest/certificates/create-certificate/create-certificate.7.x.php b/deployed-devices/rest/certificates/create-certificate/create-certificate.8.x.php similarity index 100% rename from deployed-devices/rest/certificates/create-certificate/create-certificate.7.x.php rename to deployed-devices/rest/certificates/create-certificate/create-certificate.8.x.php diff --git a/deployed-devices/rest/certificates/delete-certificate/delete-certificate.7.x.php b/deployed-devices/rest/certificates/delete-certificate/delete-certificate.8.x.php similarity index 100% rename from deployed-devices/rest/certificates/delete-certificate/delete-certificate.7.x.php rename to deployed-devices/rest/certificates/delete-certificate/delete-certificate.8.x.php diff --git a/deployed-devices/rest/certificates/list-certificates/list-certificates.7.x.php b/deployed-devices/rest/certificates/list-certificates/list-certificates.8.x.php similarity index 100% rename from deployed-devices/rest/certificates/list-certificates/list-certificates.7.x.php rename to deployed-devices/rest/certificates/list-certificates/list-certificates.8.x.php diff --git a/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.7.x.php b/deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.8.x.php similarity index 100% rename from deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.7.x.php rename to deployed-devices/rest/certificates/retrieve-certificate/retrieve-certificate.8.x.php diff --git a/deployed-devices/rest/certificates/update-certificate/update-certificate.7.x.php b/deployed-devices/rest/certificates/update-certificate/update-certificate.8.x.php similarity index 100% rename from deployed-devices/rest/certificates/update-certificate/update-certificate.7.x.php rename to deployed-devices/rest/certificates/update-certificate/update-certificate.8.x.php diff --git a/deployed-devices/rest/deployments/create-deployment/create-deployment.7.x.php b/deployed-devices/rest/deployments/create-deployment/create-deployment.8.x.php similarity index 100% rename from deployed-devices/rest/deployments/create-deployment/create-deployment.7.x.php rename to deployed-devices/rest/deployments/create-deployment/create-deployment.8.x.php diff --git a/deployed-devices/rest/deployments/delete-deployment/delete-deployment.7.x.php b/deployed-devices/rest/deployments/delete-deployment/delete-deployment.8.x.php similarity index 100% rename from deployed-devices/rest/deployments/delete-deployment/delete-deployment.7.x.php rename to deployed-devices/rest/deployments/delete-deployment/delete-deployment.8.x.php diff --git a/deployed-devices/rest/deployments/list-deployments/list-deployments.7.x.php b/deployed-devices/rest/deployments/list-deployments/list-deployments.8.x.php similarity index 100% rename from deployed-devices/rest/deployments/list-deployments/list-deployments.7.x.php rename to deployed-devices/rest/deployments/list-deployments/list-deployments.8.x.php diff --git a/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.7.x.php b/deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.8.x.php similarity index 100% rename from deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.7.x.php rename to deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.8.x.php diff --git a/deployed-devices/rest/deployments/update-deployment/update-deployment.7.x.php b/deployed-devices/rest/deployments/update-deployment/update-deployment.8.x.php similarity index 100% rename from deployed-devices/rest/deployments/update-deployment/update-deployment.7.x.php rename to deployed-devices/rest/deployments/update-deployment/update-deployment.8.x.php diff --git a/deployed-devices/rest/devices/create-device/create-device.7.x.php b/deployed-devices/rest/devices/create-device/create-device.8.x.php similarity index 100% rename from deployed-devices/rest/devices/create-device/create-device.7.x.php rename to deployed-devices/rest/devices/create-device/create-device.8.x.php diff --git a/deployed-devices/rest/devices/delete-device/delete-device.7.x.php b/deployed-devices/rest/devices/delete-device/delete-device.8.x.php similarity index 100% rename from deployed-devices/rest/devices/delete-device/delete-device.7.x.php rename to deployed-devices/rest/devices/delete-device/delete-device.8.x.php diff --git a/deployed-devices/rest/devices/list-devices/list-devices.7.x.php b/deployed-devices/rest/devices/list-devices/list-devices.8.x.php similarity index 100% rename from deployed-devices/rest/devices/list-devices/list-devices.7.x.php rename to deployed-devices/rest/devices/list-devices/list-devices.8.x.php diff --git a/deployed-devices/rest/devices/retrieve-device/retrieve-device.7.x.php b/deployed-devices/rest/devices/retrieve-device/retrieve-device.8.x.php similarity index 100% rename from deployed-devices/rest/devices/retrieve-device/retrieve-device.7.x.php rename to deployed-devices/rest/devices/retrieve-device/retrieve-device.8.x.php diff --git a/deployed-devices/rest/devices/update-device/update-device.7.x.php b/deployed-devices/rest/devices/update-device/update-device.8.x.php similarity index 100% rename from deployed-devices/rest/devices/update-device/update-device.7.x.php rename to deployed-devices/rest/devices/update-device/update-device.8.x.php diff --git a/deployed-devices/rest/fleets/create-fleet/create-fleet.7.x.php b/deployed-devices/rest/fleets/create-fleet/create-fleet.8.x.php similarity index 100% rename from deployed-devices/rest/fleets/create-fleet/create-fleet.7.x.php rename to deployed-devices/rest/fleets/create-fleet/create-fleet.8.x.php diff --git a/deployed-devices/rest/fleets/delete-fleet/delete-fleet.7.x.php b/deployed-devices/rest/fleets/delete-fleet/delete-fleet.8.x.php similarity index 100% rename from deployed-devices/rest/fleets/delete-fleet/delete-fleet.7.x.php rename to deployed-devices/rest/fleets/delete-fleet/delete-fleet.8.x.php diff --git a/deployed-devices/rest/fleets/list-fleets/list-fleets.7.x.php b/deployed-devices/rest/fleets/list-fleets/list-fleets.8.x.php similarity index 100% rename from deployed-devices/rest/fleets/list-fleets/list-fleets.7.x.php rename to deployed-devices/rest/fleets/list-fleets/list-fleets.8.x.php diff --git a/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.7.x.php b/deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.8.x.php similarity index 100% rename from deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.7.x.php rename to deployed-devices/rest/fleets/retrieve-fleet/retrieve-fleet.8.x.php diff --git a/deployed-devices/rest/fleets/update-fleet/update-fleet.7.x.php b/deployed-devices/rest/fleets/update-fleet/update-fleet.8.x.php similarity index 100% rename from deployed-devices/rest/fleets/update-fleet/update-fleet.7.x.php rename to deployed-devices/rest/fleets/update-fleet/update-fleet.8.x.php diff --git a/deployed-devices/rest/keys/create-key/create-key.7.x.php b/deployed-devices/rest/keys/create-key/create-key.8.x.php similarity index 100% rename from deployed-devices/rest/keys/create-key/create-key.7.x.php rename to deployed-devices/rest/keys/create-key/create-key.8.x.php diff --git a/deployed-devices/rest/keys/delete-key/delete-key.7.x.php b/deployed-devices/rest/keys/delete-key/delete-key.8.x.php similarity index 100% rename from deployed-devices/rest/keys/delete-key/delete-key.7.x.php rename to deployed-devices/rest/keys/delete-key/delete-key.8.x.php diff --git a/deployed-devices/rest/keys/list-keys/list-key.7.x.php b/deployed-devices/rest/keys/list-keys/list-key.8.x.php similarity index 100% rename from deployed-devices/rest/keys/list-keys/list-key.7.x.php rename to deployed-devices/rest/keys/list-keys/list-key.8.x.php diff --git a/deployed-devices/rest/keys/retrieve-key/retrieve-key.7.x.php b/deployed-devices/rest/keys/retrieve-key/retrieve-key.8.x.php similarity index 100% rename from deployed-devices/rest/keys/retrieve-key/retrieve-key.7.x.php rename to deployed-devices/rest/keys/retrieve-key/retrieve-key.8.x.php diff --git a/deployed-devices/rest/keys/update-key/update-key.7.x.php b/deployed-devices/rest/keys/update-key/update-key.8.x.php similarity index 100% rename from deployed-devices/rest/keys/update-key/update-key.7.x.php rename to deployed-devices/rest/keys/update-key/update-key.8.x.php diff --git a/fax/basic-receive/basic-receive.7.x.php b/fax/basic-receive/basic-receive.8.x.php similarity index 100% rename from fax/basic-receive/basic-receive.7.x.php rename to fax/basic-receive/basic-receive.8.x.php diff --git a/fax/basic-send/basic-send.7.x.php b/fax/basic-send/basic-send.8.x.php similarity index 100% rename from fax/basic-send/basic-send.7.x.php rename to fax/basic-send/basic-send.8.x.php diff --git a/fax/instance-get-example/instance-get-example.7.x.php b/fax/instance-get-example/instance-get-example.8.x.php similarity index 100% rename from fax/instance-get-example/instance-get-example.7.x.php rename to fax/instance-get-example/instance-get-example.8.x.php diff --git a/fax/instance-post-example/instance-post-example.7.x.php b/fax/instance-post-example/instance-post-example.8.x.php similarity index 100% rename from fax/instance-post-example/instance-post-example.7.x.php rename to fax/instance-post-example/instance-post-example.8.x.php diff --git a/fax/list-get-example/list-get-example.7.x.php b/fax/list-get-example/list-get-example.8.x.php similarity index 100% rename from fax/list-get-example/list-get-example.7.x.php rename to fax/list-get-example/list-get-example.8.x.php diff --git a/fax/sip-send/example-1/example-1.7.x.php b/fax/sip-send/example-1/example-1.8.x.php similarity index 100% rename from fax/sip-send/example-1/example-1.7.x.php rename to fax/sip-send/example-1/example-1.8.x.php diff --git a/fax/sip-send/example-2/example-2.7.x.php b/fax/sip-send/example-2/example-2.8.x.php similarity index 100% rename from fax/sip-send/example-2/example-2.7.x.php rename to fax/sip-send/example-2/example-2.8.x.php diff --git a/fax/sip-send/example-3/example-3.7.x.php b/fax/sip-send/example-3/example-3.8.x.php similarity index 100% rename from fax/sip-send/example-3/example-3.7.x.php rename to fax/sip-send/example-3/example-3.8.x.php diff --git a/guides/request-validation-php-lumen/example-1/example-1.7.x.php b/guides/request-validation-php-lumen/example-1/example-1.8.x.php similarity index 100% rename from guides/request-validation-php-lumen/example-1/example-1.7.x.php rename to guides/request-validation-php-lumen/example-1/example-1.8.x.php diff --git a/guides/request-validation-php-lumen/example-2/example-2.7.x.php b/guides/request-validation-php-lumen/example-2/example-2.8.x.php similarity index 100% rename from guides/request-validation-php-lumen/example-2/example-2.7.x.php rename to guides/request-validation-php-lumen/example-2/example-2.8.x.php diff --git a/guides/request-validation-php-lumen/example-3/example-3.7.x.php b/guides/request-validation-php-lumen/example-3/example-3.8.x.php similarity index 100% rename from guides/request-validation-php-lumen/example-3/example-3.7.x.php rename to guides/request-validation-php-lumen/example-3/example-3.8.x.php diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.7.x.php b/guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.8.x.php similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.7.x.php rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-0/example.8.x.php diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.7.x.php b/guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.8.x.php similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.7.x.php rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-1/example.8.x.php diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-2.1/example.7.x.php b/guides/voice/gather-dtmf-tones-guide/gather-example-step-2.1/example.8.x.php similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-2.1/example.7.x.php rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-2.1/example.8.x.php diff --git a/guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.7.x.php b/guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.8.x.php similarity index 100% rename from guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.7.x.php rename to guides/voice/gather-dtmf-tones-guide/gather-example-step-2/example.8.x.php diff --git a/guides/voice/record-calls-guide/record-outgoing-call/example-1.7.x.php b/guides/voice/record-calls-guide/record-outgoing-call/example-1.8.x.php similarity index 100% rename from guides/voice/record-calls-guide/record-outgoing-call/example-1.7.x.php rename to guides/voice/record-calls-guide/record-outgoing-call/example-1.8.x.php diff --git a/guides/voice/recording-add-on-guide/use-add-on-data/example.7.x.php b/guides/voice/recording-add-on-guide/use-add-on-data/example.8.x.php similarity index 100% rename from guides/voice/recording-add-on-guide/use-add-on-data/example.7.x.php rename to guides/voice/recording-add-on-guide/use-add-on-data/example.8.x.php diff --git a/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.7.x.php b/guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.8.x.php similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.7.x.php rename to guides/voice/respond-incoming-calls-guide/respond-no-parameters/example.8.x.php diff --git a/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.7.x.php b/guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.8.x.php similarity index 100% rename from guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.7.x.php rename to guides/voice/respond-incoming-calls-guide/respond-with-parameters/example.8.x.php diff --git a/ip-messaging/push-config/new-message-push-config/new-message-push-config.7.x.php b/ip-messaging/push-config/new-message-push-config/new-message-push-config.8.x.php similarity index 100% rename from ip-messaging/push-config/new-message-push-config/new-message-push-config.7.x.php rename to ip-messaging/push-config/new-message-push-config/new-message-push-config.8.x.php diff --git a/ip-messaging/reachability-indicator/disable-indicator/disable-indicator.7.x.php b/ip-messaging/reachability-indicator/disable-indicator/disable-indicator.8.x.php similarity index 100% rename from ip-messaging/reachability-indicator/disable-indicator/disable-indicator.7.x.php rename to ip-messaging/reachability-indicator/disable-indicator/disable-indicator.8.x.php diff --git a/ip-messaging/reachability-indicator/enable-indicator/enable-indicator.7.x.php b/ip-messaging/reachability-indicator/enable-indicator/enable-indicator.8.x.php similarity index 100% rename from ip-messaging/reachability-indicator/enable-indicator/enable-indicator.7.x.php rename to ip-messaging/reachability-indicator/enable-indicator/enable-indicator.8.x.php diff --git a/ip-messaging/rest/channels/create-channels/create-channels.7.x.php b/ip-messaging/rest/channels/create-channels/create-channels.8.x.php similarity index 100% rename from ip-messaging/rest/channels/create-channels/create-channels.7.x.php rename to ip-messaging/rest/channels/create-channels/create-channels.8.x.php diff --git a/ip-messaging/rest/channels/delete-channels/delete-channels.7.x.php b/ip-messaging/rest/channels/delete-channels/delete-channels.8.x.php similarity index 100% rename from ip-messaging/rest/channels/delete-channels/delete-channels.7.x.php rename to ip-messaging/rest/channels/delete-channels/delete-channels.8.x.php diff --git a/ip-messaging/rest/channels/list-channels/list-channels.7.x.php b/ip-messaging/rest/channels/list-channels/list-channels.8.x.php similarity index 100% rename from ip-messaging/rest/channels/list-channels/list-channels.7.x.php rename to ip-messaging/rest/channels/list-channels/list-channels.8.x.php diff --git a/ip-messaging/rest/channels/retrieve-channels/retrieve-channels.7.x.php b/ip-messaging/rest/channels/retrieve-channels/retrieve-channels.8.x.php similarity index 100% rename from ip-messaging/rest/channels/retrieve-channels/retrieve-channels.7.x.php rename to ip-messaging/rest/channels/retrieve-channels/retrieve-channels.8.x.php diff --git a/ip-messaging/rest/channels/update-channels/update-channels.7.x.php b/ip-messaging/rest/channels/update-channels/update-channels.8.x.php similarity index 100% rename from ip-messaging/rest/channels/update-channels/update-channels.7.x.php rename to ip-messaging/rest/channels/update-channels/update-channels.8.x.php diff --git a/ip-messaging/rest/credentials/create-credentials/create-credentials.7.x.php b/ip-messaging/rest/credentials/create-credentials/create-credentials.8.x.php similarity index 100% rename from ip-messaging/rest/credentials/create-credentials/create-credentials.7.x.php rename to ip-messaging/rest/credentials/create-credentials/create-credentials.8.x.php diff --git a/ip-messaging/rest/credentials/delete-credentials/delete-credentials.7.x.php b/ip-messaging/rest/credentials/delete-credentials/delete-credentials.8.x.php similarity index 100% rename from ip-messaging/rest/credentials/delete-credentials/delete-credentials.7.x.php rename to ip-messaging/rest/credentials/delete-credentials/delete-credentials.8.x.php diff --git a/ip-messaging/rest/credentials/list-credentials/list-credentials.7.x.php b/ip-messaging/rest/credentials/list-credentials/list-credentials.8.x.php similarity index 100% rename from ip-messaging/rest/credentials/list-credentials/list-credentials.7.x.php rename to ip-messaging/rest/credentials/list-credentials/list-credentials.8.x.php diff --git a/ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.7.x.php b/ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.8.x.php similarity index 100% rename from ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.7.x.php rename to ip-messaging/rest/credentials/retrieve-credentials/retrieve-credentials.8.x.php diff --git a/ip-messaging/rest/credentials/update-credentials/update-credentials.7.x.php b/ip-messaging/rest/credentials/update-credentials/update-credentials.8.x.php similarity index 100% rename from ip-messaging/rest/credentials/update-credentials/update-credentials.7.x.php rename to ip-messaging/rest/credentials/update-credentials/update-credentials.8.x.php diff --git a/ip-messaging/rest/members/add-member/add-member.7.x.php b/ip-messaging/rest/members/add-member/add-member.8.x.php similarity index 100% rename from ip-messaging/rest/members/add-member/add-member.7.x.php rename to ip-messaging/rest/members/add-member/add-member.8.x.php diff --git a/ip-messaging/rest/members/list-members/list-members.7.x.php b/ip-messaging/rest/members/list-members/list-members.8.x.php similarity index 100% rename from ip-messaging/rest/members/list-members/list-members.7.x.php rename to ip-messaging/rest/members/list-members/list-members.8.x.php diff --git a/ip-messaging/rest/members/remove-member/remove-member.7.x.php b/ip-messaging/rest/members/remove-member/remove-member.8.x.php similarity index 100% rename from ip-messaging/rest/members/remove-member/remove-member.7.x.php rename to ip-messaging/rest/members/remove-member/remove-member.8.x.php diff --git a/ip-messaging/rest/members/retrieve-member/retrieve-member.7.x.php b/ip-messaging/rest/members/retrieve-member/retrieve-member.8.x.php similarity index 100% rename from ip-messaging/rest/members/retrieve-member/retrieve-member.7.x.php rename to ip-messaging/rest/members/retrieve-member/retrieve-member.8.x.php diff --git a/ip-messaging/rest/messages/delete-messages/delete-messages.7.x.php b/ip-messaging/rest/messages/delete-messages/delete-messages.8.x.php similarity index 100% rename from ip-messaging/rest/messages/delete-messages/delete-messages.7.x.php rename to ip-messaging/rest/messages/delete-messages/delete-messages.8.x.php diff --git a/ip-messaging/rest/messages/list-messages/list-messages.7.x.php b/ip-messaging/rest/messages/list-messages/list-messages.8.x.php similarity index 100% rename from ip-messaging/rest/messages/list-messages/list-messages.7.x.php rename to ip-messaging/rest/messages/list-messages/list-messages.8.x.php diff --git a/ip-messaging/rest/messages/retrieve-messages/retrieve-messages.7.x.php b/ip-messaging/rest/messages/retrieve-messages/retrieve-messages.8.x.php similarity index 100% rename from ip-messaging/rest/messages/retrieve-messages/retrieve-messages.7.x.php rename to ip-messaging/rest/messages/retrieve-messages/retrieve-messages.8.x.php diff --git a/ip-messaging/rest/messages/send-messages/send-messages.7.x.php b/ip-messaging/rest/messages/send-messages/send-messages.8.x.php similarity index 100% rename from ip-messaging/rest/messages/send-messages/send-messages.7.x.php rename to ip-messaging/rest/messages/send-messages/send-messages.8.x.php diff --git a/ip-messaging/rest/messages/update-messages/update-messages.7.x.php b/ip-messaging/rest/messages/update-messages/update-messages.8.x.php similarity index 100% rename from ip-messaging/rest/messages/update-messages/update-messages.7.x.php rename to ip-messaging/rest/messages/update-messages/update-messages.8.x.php diff --git a/ip-messaging/rest/roles/create-role/create-role.7.x.php b/ip-messaging/rest/roles/create-role/create-role.8.x.php similarity index 100% rename from ip-messaging/rest/roles/create-role/create-role.7.x.php rename to ip-messaging/rest/roles/create-role/create-role.8.x.php diff --git a/ip-messaging/rest/roles/delete-role/delete-role.7.x.php b/ip-messaging/rest/roles/delete-role/delete-role.8.x.php similarity index 100% rename from ip-messaging/rest/roles/delete-role/delete-role.7.x.php rename to ip-messaging/rest/roles/delete-role/delete-role.8.x.php diff --git a/ip-messaging/rest/roles/list-roles/list-roles.7.x.php b/ip-messaging/rest/roles/list-roles/list-roles.8.x.php similarity index 100% rename from ip-messaging/rest/roles/list-roles/list-roles.7.x.php rename to ip-messaging/rest/roles/list-roles/list-roles.8.x.php diff --git a/ip-messaging/rest/roles/retrieve-role/retrieve-role.7.x.php b/ip-messaging/rest/roles/retrieve-role/retrieve-role.8.x.php similarity index 100% rename from ip-messaging/rest/roles/retrieve-role/retrieve-role.7.x.php rename to ip-messaging/rest/roles/retrieve-role/retrieve-role.8.x.php diff --git a/ip-messaging/rest/roles/update-role/update-role.7.x.php b/ip-messaging/rest/roles/update-role/update-role.8.x.php similarity index 100% rename from ip-messaging/rest/roles/update-role/update-role.7.x.php rename to ip-messaging/rest/roles/update-role/update-role.8.x.php diff --git a/ip-messaging/rest/services/create-service/create-service.7.x.php b/ip-messaging/rest/services/create-service/create-service.8.x.php similarity index 100% rename from ip-messaging/rest/services/create-service/create-service.7.x.php rename to ip-messaging/rest/services/create-service/create-service.8.x.php diff --git a/ip-messaging/rest/services/delete-service/delete-service.7.x.php b/ip-messaging/rest/services/delete-service/delete-service.8.x.php similarity index 100% rename from ip-messaging/rest/services/delete-service/delete-service.7.x.php rename to ip-messaging/rest/services/delete-service/delete-service.8.x.php diff --git a/ip-messaging/rest/services/list-service/list-service.7.x.php b/ip-messaging/rest/services/list-service/list-service.8.x.php similarity index 100% rename from ip-messaging/rest/services/list-service/list-service.7.x.php rename to ip-messaging/rest/services/list-service/list-service.8.x.php diff --git a/ip-messaging/rest/services/retrieve-service/retrieve-service.7.x.php b/ip-messaging/rest/services/retrieve-service/retrieve-service.8.x.php similarity index 100% rename from ip-messaging/rest/services/retrieve-service/retrieve-service.7.x.php rename to ip-messaging/rest/services/retrieve-service/retrieve-service.8.x.php diff --git a/ip-messaging/rest/services/update-service/update-service.7.x.php b/ip-messaging/rest/services/update-service/update-service.8.x.php similarity index 100% rename from ip-messaging/rest/services/update-service/update-service.7.x.php rename to ip-messaging/rest/services/update-service/update-service.8.x.php diff --git a/ip-messaging/rest/users/create-user/create-user.7.x.php b/ip-messaging/rest/users/create-user/create-user.8.x.php similarity index 100% rename from ip-messaging/rest/users/create-user/create-user.7.x.php rename to ip-messaging/rest/users/create-user/create-user.8.x.php diff --git a/ip-messaging/rest/users/delete-user/delete-user.7.x.php b/ip-messaging/rest/users/delete-user/delete-user.8.x.php similarity index 100% rename from ip-messaging/rest/users/delete-user/delete-user.7.x.php rename to ip-messaging/rest/users/delete-user/delete-user.8.x.php diff --git a/ip-messaging/rest/users/list-users/list-users.7.x.php b/ip-messaging/rest/users/list-users/list-users.8.x.php similarity index 100% rename from ip-messaging/rest/users/list-users/list-users.7.x.php rename to ip-messaging/rest/users/list-users/list-users.8.x.php diff --git a/ip-messaging/rest/users/retrieve-user/retrieve-user.7.x.php b/ip-messaging/rest/users/retrieve-user/retrieve-user.8.x.php similarity index 100% rename from ip-messaging/rest/users/retrieve-user/retrieve-user.7.x.php rename to ip-messaging/rest/users/retrieve-user/retrieve-user.8.x.php diff --git a/ip-messaging/rest/users/update-user/update-user.7.x.php b/ip-messaging/rest/users/update-user/update-user.8.x.php similarity index 100% rename from ip-messaging/rest/users/update-user/update-user.7.x.php rename to ip-messaging/rest/users/update-user/update-user.8.x.php diff --git a/ip-messaging/users/token-gen-server-push/token-gen-server-push.7.x.php b/ip-messaging/users/token-gen-server-push/token-gen-server-push.8.x.php similarity index 100% rename from ip-messaging/users/token-gen-server-push/token-gen-server-push.7.x.php rename to ip-messaging/users/token-gen-server-push/token-gen-server-push.8.x.php diff --git a/ip-messaging/users/token-generation-server/token-generation-server.7.x.php b/ip-messaging/users/token-generation-server/token-generation-server.8.x.php similarity index 100% rename from ip-messaging/users/token-generation-server/token-generation-server.7.x.php rename to ip-messaging/users/token-generation-server/token-generation-server.8.x.php diff --git a/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.7.x.php b/lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.8.x.php similarity index 100% rename from lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.7.x.php rename to lookups/lookup-get-addon-example-1/lookup-get-addon-examples-1.8.x.php diff --git a/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.7.x.php b/lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.8.x.php similarity index 100% rename from lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.7.x.php rename to lookups/lookup-get-addon-payfone-example-1/lookup-get-addon-payfone-1.8.x.php diff --git a/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.7.x.php b/lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.8.x.php similarity index 100% rename from lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.7.x.php rename to lookups/lookup-get-basic-example-1/lookup-get-basic-example-1.8.x.php diff --git a/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.7.x.php b/lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.8.x.php similarity index 100% rename from lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.7.x.php rename to lookups/lookup-get-basic-example-2/lookup-get-basic-example-2.8.x.php diff --git a/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.7.x.php b/lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.8.x.php similarity index 100% rename from lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.7.x.php rename to lookups/lookup-get-carrier-cname-example-1/lookup-get-carrier-cname-example-1.8.x.php diff --git a/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.7.x.php b/lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.8.x.php similarity index 100% rename from lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.7.x.php rename to lookups/lookup-get-cname-example-1/lookup-get-cname-example-1.8.x.php diff --git a/lookups/lookup-international-basic/lookup-international-basic.7.x.php b/lookups/lookup-international-basic/lookup-international-basic.8.x.php similarity index 100% rename from lookups/lookup-international-basic/lookup-international-basic.7.x.php rename to lookups/lookup-international-basic/lookup-international-basic.8.x.php diff --git a/lookups/lookup-national-basic/lookup-national-basic.7.x.php b/lookups/lookup-national-basic/lookup-national-basic.8.x.php similarity index 100% rename from lookups/lookup-national-basic/lookup-national-basic.7.x.php rename to lookups/lookup-national-basic/lookup-national-basic.8.x.php diff --git a/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.7.x.php b/media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.8.x.php similarity index 100% rename from media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.7.x.php rename to media/rest/recordings/get-media-recording-media-file/get-media-recording-media-file.8.x.php diff --git a/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.7.x.php b/media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.8.x.php similarity index 100% rename from media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.7.x.php rename to media/rest/recordings/get-media-recording-timed-metadata-file/get-media-recording-timed-metadata-file.8.x.php diff --git a/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.7.x.php b/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.8.x.php similarity index 100% rename from messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.7.x.php rename to messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.8.x.php diff --git a/messaging/link-shortening/link-shortening-sms/link-shortening-sms.7.x.php b/messaging/link-shortening/link-shortening-sms/link-shortening-sms.8.x.php similarity index 100% rename from messaging/link-shortening/link-shortening-sms/link-shortening-sms.7.x.php rename to messaging/link-shortening/link-shortening-sms/link-shortening-sms.8.x.php diff --git a/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.7.x.php b/messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.8.x.php similarity index 100% rename from messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.7.x.php rename to messaging/link-shortening/link-shortening-whatsapp/link-shortening-whatsapp.8.x.php diff --git a/messaging/services/service-alpha-add/service-alpha-add.7.x.php b/messaging/services/service-alpha-add/service-alpha-add.8.x.php similarity index 100% rename from messaging/services/service-alpha-add/service-alpha-add.7.x.php rename to messaging/services/service-alpha-add/service-alpha-add.8.x.php diff --git a/messaging/services/service-alpha-delete/service-alpha-delete.7.x.php b/messaging/services/service-alpha-delete/service-alpha-delete.8.x.php similarity index 100% rename from messaging/services/service-alpha-delete/service-alpha-delete.7.x.php rename to messaging/services/service-alpha-delete/service-alpha-delete.8.x.php diff --git a/messaging/services/service-alpha-get/service-alpha-get.7.x.php b/messaging/services/service-alpha-get/service-alpha-get.8.x.php similarity index 100% rename from messaging/services/service-alpha-get/service-alpha-get.7.x.php rename to messaging/services/service-alpha-get/service-alpha-get.8.x.php diff --git a/messaging/services/service-alpha-list/service-alpha-list.7.x.php b/messaging/services/service-alpha-list/service-alpha-list.8.x.php similarity index 100% rename from messaging/services/service-alpha-list/service-alpha-list.7.x.php rename to messaging/services/service-alpha-list/service-alpha-list.8.x.php diff --git a/messaging/services/service-create/service-create.7.x.php b/messaging/services/service-create/service-create.8.x.php similarity index 100% rename from messaging/services/service-create/service-create.7.x.php rename to messaging/services/service-create/service-create.8.x.php diff --git a/messaging/services/service-delete/service-delete.7.x.php b/messaging/services/service-delete/service-delete.8.x.php similarity index 100% rename from messaging/services/service-delete/service-delete.7.x.php rename to messaging/services/service-delete/service-delete.8.x.php diff --git a/messaging/services/service-get/service-get.7.x.php b/messaging/services/service-get/service-get.8.x.php similarity index 100% rename from messaging/services/service-get/service-get.7.x.php rename to messaging/services/service-get/service-get.8.x.php diff --git a/messaging/services/service-list/service-list.7.x.php b/messaging/services/service-list/service-list.8.x.php similarity index 100% rename from messaging/services/service-list/service-list.7.x.php rename to messaging/services/service-list/service-list.8.x.php diff --git a/messaging/services/service-multiple-number-add/service-multiple-number-add.7.x.php b/messaging/services/service-multiple-number-add/service-multiple-number-add.8.x.php similarity index 100% rename from messaging/services/service-multiple-number-add/service-multiple-number-add.7.x.php rename to messaging/services/service-multiple-number-add/service-multiple-number-add.8.x.php diff --git a/messaging/services/service-number-add/service-number-add.7.x.php b/messaging/services/service-number-add/service-number-add.8.x.php similarity index 100% rename from messaging/services/service-number-add/service-number-add.7.x.php rename to messaging/services/service-number-add/service-number-add.8.x.php diff --git a/messaging/services/service-number-delete/service-number-delete.7.x.php b/messaging/services/service-number-delete/service-number-delete.8.x.php similarity index 100% rename from messaging/services/service-number-delete/service-number-delete.7.x.php rename to messaging/services/service-number-delete/service-number-delete.8.x.php diff --git a/messaging/services/service-number-get/service-number-get.7.x.php b/messaging/services/service-number-get/service-number-get.8.x.php similarity index 100% rename from messaging/services/service-number-get/service-number-get.7.x.php rename to messaging/services/service-number-get/service-number-get.8.x.php diff --git a/messaging/services/service-number-list/service-number-list.7.x.php b/messaging/services/service-number-list/service-number-list.8.x.php similarity index 100% rename from messaging/services/service-number-list/service-number-list.7.x.php rename to messaging/services/service-number-list/service-number-list.8.x.php diff --git a/messaging/services/service-shortcode-add/service-shortcode-add.7.x.php b/messaging/services/service-shortcode-add/service-shortcode-add.8.x.php similarity index 100% rename from messaging/services/service-shortcode-add/service-shortcode-add.7.x.php rename to messaging/services/service-shortcode-add/service-shortcode-add.8.x.php diff --git a/messaging/services/service-shortcode-delete/service-shortcode-delete.7.x.php b/messaging/services/service-shortcode-delete/service-shortcode-delete.8.x.php similarity index 100% rename from messaging/services/service-shortcode-delete/service-shortcode-delete.7.x.php rename to messaging/services/service-shortcode-delete/service-shortcode-delete.8.x.php diff --git a/messaging/services/service-shortcode-get/service-shortcode-get.7.x.php b/messaging/services/service-shortcode-get/service-shortcode-get.8.x.php similarity index 100% rename from messaging/services/service-shortcode-get/service-shortcode-get.7.x.php rename to messaging/services/service-shortcode-get/service-shortcode-get.8.x.php diff --git a/messaging/services/service-shortcode-list/service-shortcode-list.7.x.php b/messaging/services/service-shortcode-list/service-shortcode-list.8.x.php similarity index 100% rename from messaging/services/service-shortcode-list/service-shortcode-list.7.x.php rename to messaging/services/service-shortcode-list/service-shortcode-list.8.x.php diff --git a/messaging/services/service-update/service-update.7.x.php b/messaging/services/service-update/service-update.8.x.php similarity index 100% rename from messaging/services/service-update/service-update.7.x.php rename to messaging/services/service-update/service-update.8.x.php diff --git a/mobile-identity/identity-match/identity-match-example.7.x.php b/mobile-identity/identity-match/identity-match-example.8.x.php similarity index 100% rename from mobile-identity/identity-match/identity-match-example.7.x.php rename to mobile-identity/identity-match/identity-match-example.8.x.php diff --git a/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.7.x.php b/mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.8.x.php similarity index 100% rename from mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.7.x.php rename to mobile-identity/silent-network-auth/create-an-evurl/create-an-evurl-example.8.x.php diff --git a/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.7.x.php b/mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.8.x.php similarity index 100% rename from mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.7.x.php rename to mobile-identity/silent-network-auth/retrieve-evurl-result/retrieve-evurl-result-example.8.x.php diff --git a/monitor/alerts/instance-delete-example/instance-delete-example.7.x.php b/monitor/alerts/instance-delete-example/instance-delete-example.8.x.php similarity index 100% rename from monitor/alerts/instance-delete-example/instance-delete-example.7.x.php rename to monitor/alerts/instance-delete-example/instance-delete-example.8.x.php diff --git a/monitor/alerts/instance-get-example/instance-get-example.7.x.php b/monitor/alerts/instance-get-example/instance-get-example.8.x.php similarity index 100% rename from monitor/alerts/instance-get-example/instance-get-example.7.x.php rename to monitor/alerts/instance-get-example/instance-get-example.8.x.php diff --git a/monitor/alerts/list-get-example-all/list-get-example-all.7.x.php b/monitor/alerts/list-get-example-all/list-get-example-all.8.x.php similarity index 100% rename from monitor/alerts/list-get-example-all/list-get-example-all.7.x.php rename to monitor/alerts/list-get-example-all/list-get-example-all.8.x.php diff --git a/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.7.x.php b/monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.8.x.php similarity index 100% rename from monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.7.x.php rename to monitor/alerts/list-get-example-warnings-apr01-apr30/list-get-example-warnings-apr01-apr30.8.x.php diff --git a/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.7.x.php b/monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.8.x.php similarity index 100% rename from monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.7.x.php rename to monitor/events/instance-get-example-phone-number/instance-get-example-phone-number.8.x.php diff --git a/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.7.x.php b/monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.8.x.php similarity index 100% rename from monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.7.x.php rename to monitor/events/list-get-example-actorsid-resourcesid-error/list-get-example-actorsid-resourcesid-error.8.x.php diff --git a/monitor/events/list-get-example-date-filter/list-get-example-date-filter.7.x.php b/monitor/events/list-get-example-date-filter/list-get-example-date-filter.8.x.php similarity index 100% rename from monitor/events/list-get-example-date-filter/list-get-example-date-filter.7.x.php rename to monitor/events/list-get-example-date-filter/list-get-example-date-filter.8.x.php diff --git a/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.7.x.php b/monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.8.x.php similarity index 100% rename from monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.7.x.php rename to monitor/events/list-get-example-resourcesid-filter/list-get-example-resourcesid-filter.8.x.php diff --git a/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.7.x.php b/monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.8.x.php similarity index 100% rename from monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.7.x.php rename to monitor/events/list-get-example-sourceipaddress-filter/list-get-example-sourceipaddress-filter.8.x.php diff --git a/notifications/register/create-binding-server-apns/create-binding-server-apn.7.x.php b/notifications/register/create-binding-server-apns/create-binding-server-apn.8.x.php similarity index 100% rename from notifications/register/create-binding-server-apns/create-binding-server-apn.7.x.php rename to notifications/register/create-binding-server-apns/create-binding-server-apn.8.x.php diff --git a/notifications/register/create-binding-server-fcm/create-binding-server-fcm.7.x.php b/notifications/register/create-binding-server-fcm/create-binding-server-fcm.8.x.php similarity index 100% rename from notifications/register/create-binding-server-fcm/create-binding-server-fcm.7.x.php rename to notifications/register/create-binding-server-fcm/create-binding-server-fcm.8.x.php diff --git a/notifications/register/create-binding-server/create-binding-server.7.x.php b/notifications/register/create-binding-server/create-binding-server.8.x.php similarity index 100% rename from notifications/register/create-binding-server/create-binding-server.7.x.php rename to notifications/register/create-binding-server/create-binding-server.8.x.php diff --git a/notifications/register/send-notification-2/send-notification-2.7.x.php b/notifications/register/send-notification-2/send-notification-2.8.x.php similarity index 100% rename from notifications/register/send-notification-2/send-notification-2.7.x.php rename to notifications/register/send-notification-2/send-notification-2.8.x.php diff --git a/notifications/register/send-notification-segment-tag/send-notification-segment-tag.7.x.php b/notifications/register/send-notification-segment-tag/send-notification-segment-tag.8.x.php similarity index 100% rename from notifications/register/send-notification-segment-tag/send-notification-segment-tag.7.x.php rename to notifications/register/send-notification-segment-tag/send-notification-segment-tag.8.x.php diff --git a/notifications/register/send-notification-segment/send-notification-segment.7.x.php b/notifications/register/send-notification-segment/send-notification-segment.8.x.php similarity index 100% rename from notifications/register/send-notification-segment/send-notification-segment.7.x.php rename to notifications/register/send-notification-segment/send-notification-segment.8.x.php diff --git a/notifications/register/send-notification/send-notification.7.x.php b/notifications/register/send-notification/send-notification.8.x.php similarity index 100% rename from notifications/register/send-notification/send-notification.7.x.php rename to notifications/register/send-notification/send-notification.8.x.php diff --git a/notifications/rest/bindings/create-binding/create-binding.7.x.php b/notifications/rest/bindings/create-binding/create-binding.8.x.php similarity index 100% rename from notifications/rest/bindings/create-binding/create-binding.7.x.php rename to notifications/rest/bindings/create-binding/create-binding.8.x.php diff --git a/notifications/rest/bindings/delete-binding/delete-binding.7.x.php b/notifications/rest/bindings/delete-binding/delete-binding.8.x.php similarity index 100% rename from notifications/rest/bindings/delete-binding/delete-binding.7.x.php rename to notifications/rest/bindings/delete-binding/delete-binding.8.x.php diff --git a/notifications/rest/bindings/list-binding/list-binding.7.x.php b/notifications/rest/bindings/list-binding/list-binding.8.x.php similarity index 100% rename from notifications/rest/bindings/list-binding/list-binding.7.x.php rename to notifications/rest/bindings/list-binding/list-binding.8.x.php diff --git a/notifications/rest/bindings/retrieve-binding/retrieve-binding.7.x.php b/notifications/rest/bindings/retrieve-binding/retrieve-binding.8.x.php similarity index 100% rename from notifications/rest/bindings/retrieve-binding/retrieve-binding.7.x.php rename to notifications/rest/bindings/retrieve-binding/retrieve-binding.8.x.php diff --git a/notifications/rest/credentials/create-apn-credential/create-apn-credential.7.x.php b/notifications/rest/credentials/create-apn-credential/create-apn-credential.8.x.php similarity index 100% rename from notifications/rest/credentials/create-apn-credential/create-apn-credential.7.x.php rename to notifications/rest/credentials/create-apn-credential/create-apn-credential.8.x.php diff --git a/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.7.x.php b/notifications/rest/credentials/create-fcm-credential/create-fcm-credential.8.x.php similarity index 100% rename from notifications/rest/credentials/create-fcm-credential/create-fcm-credential.7.x.php rename to notifications/rest/credentials/create-fcm-credential/create-fcm-credential.8.x.php diff --git a/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.7.x.php b/notifications/rest/credentials/create-gcm-credential/create-gcm-credential.8.x.php similarity index 100% rename from notifications/rest/credentials/create-gcm-credential/create-gcm-credential.7.x.php rename to notifications/rest/credentials/create-gcm-credential/create-gcm-credential.8.x.php diff --git a/notifications/rest/credentials/delete-credential/delete-credential.7.x.php b/notifications/rest/credentials/delete-credential/delete-credential.8.x.php similarity index 100% rename from notifications/rest/credentials/delete-credential/delete-credential.7.x.php rename to notifications/rest/credentials/delete-credential/delete-credential.8.x.php diff --git a/notifications/rest/credentials/list-credential/list-credential.7.x.php b/notifications/rest/credentials/list-credential/list-credential.8.x.php similarity index 100% rename from notifications/rest/credentials/list-credential/list-credential.7.x.php rename to notifications/rest/credentials/list-credential/list-credential.8.x.php diff --git a/notifications/rest/credentials/retrieve-credential/retrieve-credential.7.x.php b/notifications/rest/credentials/retrieve-credential/retrieve-credential.8.x.php similarity index 100% rename from notifications/rest/credentials/retrieve-credential/retrieve-credential.7.x.php rename to notifications/rest/credentials/retrieve-credential/retrieve-credential.8.x.php diff --git a/notifications/rest/credentials/update-credential/update-credential.7.x.php b/notifications/rest/credentials/update-credential/update-credential.8.x.php similarity index 100% rename from notifications/rest/credentials/update-credential/update-credential.7.x.php rename to notifications/rest/credentials/update-credential/update-credential.8.x.php diff --git a/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.7.x.php b/notifications/rest/notifications/send-notification-detailed/send-notification-detailed.8.x.php similarity index 100% rename from notifications/rest/notifications/send-notification-detailed/send-notification-detailed.7.x.php rename to notifications/rest/notifications/send-notification-detailed/send-notification-detailed.8.x.php diff --git a/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.7.x.php b/notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.8.x.php similarity index 100% rename from notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.7.x.php rename to notifications/rest/notifications/send-notification-with-badge/send-notification-with-badge.8.x.php diff --git a/notifications/rest/notifications/send-notification/send-notification.7.x.php b/notifications/rest/notifications/send-notification/send-notification.8.x.php similarity index 100% rename from notifications/rest/notifications/send-notification/send-notification.7.x.php rename to notifications/rest/notifications/send-notification/send-notification.8.x.php diff --git a/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.7.x.php b/notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.8.x.php similarity index 100% rename from notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.7.x.php rename to notifications/rest/notifications/send-passthrough-notification/send-passthrough-notification.8.x.php diff --git a/notifications/rest/segments/list-segment/list-segment.7.x.php b/notifications/rest/segments/list-segment/list-segment.8.x.php similarity index 100% rename from notifications/rest/segments/list-segment/list-segment.7.x.php rename to notifications/rest/segments/list-segment/list-segment.8.x.php diff --git a/notifications/rest/services/create-service/create-service.7.x.php b/notifications/rest/services/create-service/create-service.8.x.php similarity index 100% rename from notifications/rest/services/create-service/create-service.7.x.php rename to notifications/rest/services/create-service/create-service.8.x.php diff --git a/notifications/rest/services/delete-service/delete-service.7.x.php b/notifications/rest/services/delete-service/delete-service.8.x.php similarity index 100% rename from notifications/rest/services/delete-service/delete-service.7.x.php rename to notifications/rest/services/delete-service/delete-service.8.x.php diff --git a/notifications/rest/services/list-service/list-service.7.x.php b/notifications/rest/services/list-service/list-service.8.x.php similarity index 100% rename from notifications/rest/services/list-service/list-service.7.x.php rename to notifications/rest/services/list-service/list-service.8.x.php diff --git a/notifications/rest/services/retrieve-service/retrieve-service.7.x.php b/notifications/rest/services/retrieve-service/retrieve-service.8.x.php similarity index 100% rename from notifications/rest/services/retrieve-service/retrieve-service.7.x.php rename to notifications/rest/services/retrieve-service/retrieve-service.8.x.php diff --git a/notifications/rest/services/update-service/update-service.7.x.php b/notifications/rest/services/update-service/update-service.8.x.php similarity index 100% rename from notifications/rest/services/update-service/update-service.7.x.php rename to notifications/rest/services/update-service/update-service.8.x.php diff --git a/notifications/rest/users/add-user-to-segment/add-user-to-segment.7.x.php b/notifications/rest/users/add-user-to-segment/add-user-to-segment.8.x.php similarity index 100% rename from notifications/rest/users/add-user-to-segment/add-user-to-segment.7.x.php rename to notifications/rest/users/add-user-to-segment/add-user-to-segment.8.x.php diff --git a/notifications/rest/users/create-user/create-user.7.x.php b/notifications/rest/users/create-user/create-user.8.x.php similarity index 100% rename from notifications/rest/users/create-user/create-user.7.x.php rename to notifications/rest/users/create-user/create-user.8.x.php diff --git a/notifications/rest/users/delete-user/delete-user.7.x.php b/notifications/rest/users/delete-user/delete-user.8.x.php similarity index 100% rename from notifications/rest/users/delete-user/delete-user.7.x.php rename to notifications/rest/users/delete-user/delete-user.8.x.php diff --git a/notifications/rest/users/list-binding-of-user/list-binding-of-user.7.x.php b/notifications/rest/users/list-binding-of-user/list-binding-of-user.8.x.php similarity index 100% rename from notifications/rest/users/list-binding-of-user/list-binding-of-user.7.x.php rename to notifications/rest/users/list-binding-of-user/list-binding-of-user.8.x.php diff --git a/notifications/rest/users/list-users/list-users.7.x.php b/notifications/rest/users/list-users/list-users.8.x.php similarity index 100% rename from notifications/rest/users/list-users/list-users.7.x.php rename to notifications/rest/users/list-users/list-users.8.x.php diff --git a/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.7.x.php b/notifications/rest/users/remove-user-from-segment/remove-user-from-segment.8.x.php similarity index 100% rename from notifications/rest/users/remove-user-from-segment/remove-user-from-segment.7.x.php rename to notifications/rest/users/remove-user-from-segment/remove-user-from-segment.8.x.php diff --git a/notifications/rest/users/retrieve-user/retrieve-user.7.x.php b/notifications/rest/users/retrieve-user/retrieve-user.8.x.php similarity index 100% rename from notifications/rest/users/retrieve-user/retrieve-user.7.x.php rename to notifications/rest/users/retrieve-user/retrieve-user.8.x.php diff --git a/notifications/sms-quickstart/create-binding/create-binding.7.x.php b/notifications/sms-quickstart/create-binding/create-binding.8.x.php similarity index 100% rename from notifications/sms-quickstart/create-binding/create-binding.7.x.php rename to notifications/sms-quickstart/create-binding/create-binding.8.x.php diff --git a/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.7.x.php b/notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.8.x.php similarity index 100% rename from notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.7.x.php rename to notifications/sms-quickstart/send-notification-to-number/send-notification-to-number.8.x.php diff --git a/notifications/sms-quickstart/send-notification/send-notification.7.x.php b/notifications/sms-quickstart/send-notification/send-notification.8.x.php similarity index 100% rename from notifications/sms-quickstart/send-notification/send-notification.7.x.php rename to notifications/sms-quickstart/send-notification/send-notification.8.x.php diff --git a/pricing/get-messaging-country/get-messaging-country.7.x.php b/pricing/get-messaging-country/get-messaging-country.8.x.php similarity index 100% rename from pricing/get-messaging-country/get-messaging-country.7.x.php rename to pricing/get-messaging-country/get-messaging-country.8.x.php diff --git a/pricing/get-phone-number-country/get-phone-number-country.7.x.php b/pricing/get-phone-number-country/get-phone-number-country.8.x.php similarity index 100% rename from pricing/get-phone-number-country/get-phone-number-country.7.x.php rename to pricing/get-phone-number-country/get-phone-number-country.8.x.php diff --git a/pricing/get-voice-country/get-voice-country.7.x.php b/pricing/get-voice-country/get-voice-country.8.x.php similarity index 100% rename from pricing/get-voice-country/get-voice-country.7.x.php rename to pricing/get-voice-country/get-voice-country.8.x.php diff --git a/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.7.x.php b/pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.8.x.php similarity index 100% rename from pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.7.x.php rename to pricing/get-voice-number-with-origination-number/get-voice-number-with-origination-number.8.x.php diff --git a/pricing/get-voice-number/get-voice-number.7.x.php b/pricing/get-voice-number/get-voice-number.8.x.php similarity index 100% rename from pricing/get-voice-number/get-voice-number.7.x.php rename to pricing/get-voice-number/get-voice-number.8.x.php diff --git a/pricing/list-messaging-countries/list-messaging-countries.7.x.php b/pricing/list-messaging-countries/list-messaging-countries.8.x.php similarity index 100% rename from pricing/list-messaging-countries/list-messaging-countries.7.x.php rename to pricing/list-messaging-countries/list-messaging-countries.8.x.php diff --git a/pricing/list-phone-number-countries/list-phone-number-countries.7.x.php b/pricing/list-phone-number-countries/list-phone-number-countries.8.x.php similarity index 100% rename from pricing/list-phone-number-countries/list-phone-number-countries.7.x.php rename to pricing/list-phone-number-countries/list-phone-number-countries.8.x.php diff --git a/pricing/list-voice-countries/list-voice-countries.7.x.php b/pricing/list-voice-countries/list-voice-countries.8.x.php similarity index 100% rename from pricing/list-voice-countries/list-voice-countries.7.x.php rename to pricing/list-voice-countries/list-voice-countries.8.x.php diff --git a/proxy/quickstart/add-phone-number/add-phone-number.7.x.php b/proxy/quickstart/add-phone-number/add-phone-number.8.x.php similarity index 100% rename from proxy/quickstart/add-phone-number/add-phone-number.7.x.php rename to proxy/quickstart/add-phone-number/add-phone-number.8.x.php diff --git a/proxy/quickstart/create-participant/create-participant.7.x.php b/proxy/quickstart/create-participant/create-participant.8.x.php similarity index 100% rename from proxy/quickstart/create-participant/create-participant.7.x.php rename to proxy/quickstart/create-participant/create-participant.8.x.php diff --git a/proxy/quickstart/create-service/create-service.7.x.php b/proxy/quickstart/create-service/create-service.8.x.php similarity index 100% rename from proxy/quickstart/create-service/create-service.7.x.php rename to proxy/quickstart/create-service/create-service.8.x.php diff --git a/proxy/quickstart/create-session/create-session.7.x.php b/proxy/quickstart/create-session/create-session.8.x.php similarity index 100% rename from proxy/quickstart/create-session/create-session.7.x.php rename to proxy/quickstart/create-session/create-session.8.x.php diff --git a/proxy/quickstart/send-message/send-message.7.x.php b/proxy/quickstart/send-message/send-message.8.x.php similarity index 100% rename from proxy/quickstart/send-message/send-message.7.x.php rename to proxy/quickstart/send-message/send-message.8.x.php diff --git a/quickstart/php/autopilot/create-first-task/create_hello_world_task.7.x.php b/quickstart/php/autopilot/create-first-task/create_hello_world_task.8.x.php similarity index 100% rename from quickstart/php/autopilot/create-first-task/create_hello_world_task.7.x.php rename to quickstart/php/autopilot/create-first-task/create_hello_world_task.8.x.php diff --git a/quickstart/php/autopilot/create-hello-world-samples/create_hello_world_samples.7.x.php b/quickstart/php/autopilot/create-hello-world-samples/create_hello_world_samples.8.x.php similarity index 100% rename from quickstart/php/autopilot/create-hello-world-samples/create_hello_world_samples.7.x.php rename to quickstart/php/autopilot/create-hello-world-samples/create_hello_world_samples.8.x.php diff --git a/quickstart/php/autopilot/create-joke-samples/create_joke_samples.7.x.php b/quickstart/php/autopilot/create-joke-samples/create_joke_samples.8.x.php similarity index 100% rename from quickstart/php/autopilot/create-joke-samples/create_joke_samples.7.x.php rename to quickstart/php/autopilot/create-joke-samples/create_joke_samples.8.x.php diff --git a/quickstart/php/autopilot/create-joke-task/create_joke_task.7.x.php b/quickstart/php/autopilot/create-joke-task/create_joke_task.8.x.php similarity index 100% rename from quickstart/php/autopilot/create-joke-task/create_joke_task.7.x.php rename to quickstart/php/autopilot/create-joke-task/create_joke_task.8.x.php diff --git a/quickstart/php/autopilot/query-task/query_task.7.x.php b/quickstart/php/autopilot/query-task/query_task.8.x.php similarity index 100% rename from quickstart/php/autopilot/query-task/query_task.7.x.php rename to quickstart/php/autopilot/query-task/query_task.8.x.php diff --git a/quickstart/php/client/example-1/hello-client.7.x.php b/quickstart/php/client/example-1/hello-client.8.x.php similarity index 100% rename from quickstart/php/client/example-1/hello-client.7.x.php rename to quickstart/php/client/example-1/hello-client.8.x.php diff --git a/quickstart/php/client/example-2/hello-client-2.7.x.php b/quickstart/php/client/example-2/hello-client-2.8.x.php similarity index 100% rename from quickstart/php/client/example-2/hello-client-2.7.x.php rename to quickstart/php/client/example-2/hello-client-2.8.x.php diff --git a/quickstart/php/client/example-3/hello-client-3.7.x.php b/quickstart/php/client/example-3/hello-client-3.8.x.php similarity index 100% rename from quickstart/php/client/example-3/hello-client-3.7.x.php rename to quickstart/php/client/example-3/hello-client-3.8.x.php diff --git a/quickstart/php/client/example-4/hello-client-4.7.x.php b/quickstart/php/client/example-4/hello-client-4.8.x.php similarity index 100% rename from quickstart/php/client/example-4/hello-client-4.7.x.php rename to quickstart/php/client/example-4/hello-client-4.8.x.php diff --git a/quickstart/php/client/example-5/hello-client-5.7.x.php b/quickstart/php/client/example-5/hello-client-5.8.x.php similarity index 100% rename from quickstart/php/client/example-5/hello-client-5.7.x.php rename to quickstart/php/client/example-5/hello-client-5.8.x.php diff --git a/quickstart/php/sms/example-1/sendnotifications.7.x.php b/quickstart/php/sms/example-1/sendnotifications.8.x.php similarity index 100% rename from quickstart/php/sms/example-1/sendnotifications.7.x.php rename to quickstart/php/sms/example-1/sendnotifications.8.x.php diff --git a/quickstart/php/sms/example-2/sendnotifications.7.x.php b/quickstart/php/sms/example-2/sendnotifications.8.x.php similarity index 100% rename from quickstart/php/sms/example-2/sendnotifications.7.x.php rename to quickstart/php/sms/example-2/sendnotifications.8.x.php diff --git a/quickstart/php/sms/example-3/sms-hello-monkey.7.x.php b/quickstart/php/sms/example-3/sms-hello-monkey.8.x.php similarity index 100% rename from quickstart/php/sms/example-3/sms-hello-monkey.7.x.php rename to quickstart/php/sms/example-3/sms-hello-monkey.8.x.php diff --git a/quickstart/php/sms/example-4/mms-hello-monkey.7.x.php b/quickstart/php/sms/example-4/mms-hello-monkey.8.x.php similarity index 100% rename from quickstart/php/sms/example-4/mms-hello-monkey.7.x.php rename to quickstart/php/sms/example-4/mms-hello-monkey.8.x.php diff --git a/quickstart/php/sms/example-5/reply-by-name.7.x.php b/quickstart/php/sms/example-5/reply-by-name.8.x.php similarity index 100% rename from quickstart/php/sms/example-5/reply-by-name.7.x.php rename to quickstart/php/sms/example-5/reply-by-name.8.x.php diff --git a/quickstart/php/sms/example-6/tracking-sms-conversations.7.x.php b/quickstart/php/sms/example-6/tracking-sms-conversations.8.x.php similarity index 100% rename from quickstart/php/sms/example-6/tracking-sms-conversations.7.x.php rename to quickstart/php/sms/example-6/tracking-sms-conversations.8.x.php diff --git a/quickstart/php/sms/example-7/send-sms-during-call.7.x.php b/quickstart/php/sms/example-7/send-sms-during-call.8.x.php similarity index 100% rename from quickstart/php/sms/example-7/send-sms-during-call.7.x.php rename to quickstart/php/sms/example-7/send-sms-during-call.8.x.php diff --git a/quickstart/php/sms/reply_sms/reply_sms.7.x.php b/quickstart/php/sms/reply_sms/reply_sms.8.x.php similarity index 100% rename from quickstart/php/sms/reply_sms/reply_sms.7.x.php rename to quickstart/php/sms/reply_sms/reply_sms.8.x.php diff --git a/quickstart/php/sms/reply_sms_without_composer/reply_sms.7.x.php b/quickstart/php/sms/reply_sms_without_composer/reply_sms.8.x.php similarity index 100% rename from quickstart/php/sms/reply_sms_without_composer/reply_sms.7.x.php rename to quickstart/php/sms/reply_sms_without_composer/reply_sms.8.x.php diff --git a/quickstart/php/sms/send_sms/send_sms.7.x.php b/quickstart/php/sms/send_sms/send_sms.8.x.php similarity index 100% rename from quickstart/php/sms/send_sms/send_sms.7.x.php rename to quickstart/php/sms/send_sms/send_sms.8.x.php diff --git a/quickstart/php/sms/send_sms_without_composer/send_sms.7.x.php b/quickstart/php/sms/send_sms_without_composer/send_sms.8.x.php similarity index 100% rename from quickstart/php/sms/send_sms_without_composer/send_sms.7.x.php rename to quickstart/php/sms/send_sms_without_composer/send_sms.8.x.php diff --git a/quickstart/php/taskrouter/accept-reservation/accept-reservation.7.x.php b/quickstart/php/taskrouter/accept-reservation/accept-reservation.8.x.php similarity index 100% rename from quickstart/php/taskrouter/accept-reservation/accept-reservation.7.x.php rename to quickstart/php/taskrouter/accept-reservation/accept-reservation.8.x.php diff --git a/quickstart/php/taskrouter/agent/agent.7.x.php b/quickstart/php/taskrouter/agent/agent.8.x.php similarity index 100% rename from quickstart/php/taskrouter/agent/agent.7.x.php rename to quickstart/php/taskrouter/agent/agent.8.x.php diff --git a/quickstart/php/taskrouter/create-task/create-task.7.x.php b/quickstart/php/taskrouter/create-task/create-task.8.x.php similarity index 100% rename from quickstart/php/taskrouter/create-task/create-task.7.x.php rename to quickstart/php/taskrouter/create-task/create-task.8.x.php diff --git a/quickstart/php/voice/answer_call/answer_call.7.x.php b/quickstart/php/voice/answer_call/answer_call.8.x.php similarity index 100% rename from quickstart/php/voice/answer_call/answer_call.7.x.php rename to quickstart/php/voice/answer_call/answer_call.8.x.php diff --git a/quickstart/php/voice/answer_call_without_composer/answer_call.7.x.php b/quickstart/php/voice/answer_call_without_composer/answer_call.8.x.php similarity index 100% rename from quickstart/php/voice/answer_call_without_composer/answer_call.7.x.php rename to quickstart/php/voice/answer_call_without_composer/answer_call.8.x.php diff --git a/quickstart/php/voice/call-logs/call-log.7.x.php b/quickstart/php/voice/call-logs/call-log.8.x.php similarity index 100% rename from quickstart/php/voice/call-logs/call-log.7.x.php rename to quickstart/php/voice/call-logs/call-log.8.x.php diff --git a/quickstart/php/voice/make_call/make_call.7.x.php b/quickstart/php/voice/make_call/make_call.8.x.php similarity index 100% rename from quickstart/php/voice/make_call/make_call.7.x.php rename to quickstart/php/voice/make_call/make_call.8.x.php diff --git a/quickstart/php/voice/make_call_without_composer/make_call.7.x.php b/quickstart/php/voice/make_call_without_composer/make_call.8.x.php similarity index 100% rename from quickstart/php/voice/make_call_without_composer/make_call.7.x.php rename to quickstart/php/voice/make_call_without_composer/make_call.8.x.php diff --git a/quickstart/php/voice/outgoing-call/call.7.x.php b/quickstart/php/voice/outgoing-call/call.8.x.php similarity index 100% rename from quickstart/php/voice/outgoing-call/call.7.x.php rename to quickstart/php/voice/outgoing-call/call.8.x.php diff --git a/rename-files.py b/rename-files.py new file mode 100644 index 0000000000..f859787b63 --- /dev/null +++ b/rename-files.py @@ -0,0 +1,24 @@ +import os + +def rename_files(directory): + # Iterate over all files and directories in the current directory + for root, dirs, files in os.walk(directory): + for filename in files: + # Check if the file ends with "8.x" and has a .py extension + if filename.endswith("7.x.php"): + # Construct the old and new file paths + old_filepath = os.path.join(root, filename) + new_filename = filename.replace("7.x", "8.x") + new_filepath = os.path.join(root, new_filename) + + # Rename the file + os.rename(old_filepath, new_filepath) + print(f"Renamed {old_filepath} to {new_filepath}") + + # Recursively call rename_files for subdirectories + for subdir in dirs: + rename_files(os.path.join(root, subdir)) + +if __name__ == "__main__": + # Start renaming from the current directory + rename_files(os.getcwd()) diff --git a/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.7.x.php b/rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.8.x.php similarity index 100% rename from rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.7.x.php rename to rest/access-tokens/ip-messaging-example-push-credential/ip-messaging-example.8.x.php diff --git a/rest/access-tokens/ip-messaging-example/ip-messaging-example.7.x.php b/rest/access-tokens/ip-messaging-example/ip-messaging-example.8.x.php similarity index 100% rename from rest/access-tokens/ip-messaging-example/ip-messaging-example.7.x.php rename to rest/access-tokens/ip-messaging-example/ip-messaging-example.8.x.php diff --git a/rest/access-tokens/live-example/live-example.7.x.php b/rest/access-tokens/live-example/live-example.8.x.php similarity index 100% rename from rest/access-tokens/live-example/live-example.7.x.php rename to rest/access-tokens/live-example/live-example.8.x.php diff --git a/rest/access-tokens/sync-example/sync-example.7.x.php b/rest/access-tokens/sync-example/sync-example.8.x.php similarity index 100% rename from rest/access-tokens/sync-example/sync-example.7.x.php rename to rest/access-tokens/sync-example/sync-example.8.x.php diff --git a/rest/access-tokens/video-example/video-example.7.x.php b/rest/access-tokens/video-example/video-example.8.x.php similarity index 100% rename from rest/access-tokens/video-example/video-example.7.x.php rename to rest/access-tokens/video-example/video-example.8.x.php diff --git a/rest/access-tokens/voice-example/voice-example.7.x.php b/rest/access-tokens/voice-example/voice-example.8.x.php similarity index 100% rename from rest/access-tokens/voice-example/voice-example.7.x.php rename to rest/access-tokens/voice-example/voice-example.8.x.php diff --git a/rest/accounts/instance-get-example-1/instance-get-example-1.7.x.php b/rest/accounts/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/accounts/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/accounts/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/accounts/instance-post-example-1/instance-post-example-1.7.x.php b/rest/accounts/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/accounts/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/accounts/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/accounts/instance-post-example-2/instance-post-example-2.7.x.php b/rest/accounts/instance-post-example-2/instance-post-example-2.8.x.php similarity index 100% rename from rest/accounts/instance-post-example-2/instance-post-example-2.7.x.php rename to rest/accounts/instance-post-example-2/instance-post-example-2.8.x.php diff --git a/rest/accounts/instance-post-example-3/instance-post-example-3.7.x.php b/rest/accounts/instance-post-example-3/instance-post-example-3.8.x.php similarity index 100% rename from rest/accounts/instance-post-example-3/instance-post-example-3.7.x.php rename to rest/accounts/instance-post-example-3/instance-post-example-3.8.x.php diff --git a/rest/accounts/list-get-example-1/list-get-example-1.7.x.php b/rest/accounts/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/accounts/list-get-example-1/list-get-example-1.7.x.php rename to rest/accounts/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/accounts/list-get-example-2/list-get-example-2.7.x.php b/rest/accounts/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/accounts/list-get-example-2/list-get-example-2.7.x.php rename to rest/accounts/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/addresses/instance-create-example/instance-create-example.7.x.php b/rest/addresses/instance-create-example/instance-create-example.8.x.php similarity index 100% rename from rest/addresses/instance-create-example/instance-create-example.7.x.php rename to rest/addresses/instance-create-example/instance-create-example.8.x.php diff --git a/rest/addresses/instance-get-example-1/instance-get-example-1.7.x.php b/rest/addresses/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/addresses/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/addresses/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/addresses/instance-post-example-1/instance-post-example-1.7.x.php b/rest/addresses/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/addresses/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/addresses/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.7.x.php b/rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.8.x.php similarity index 100% rename from rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.7.x.php rename to rest/addresses/list-dependent-pns-example-1/list-dependent-pns-example-1.8.x.php diff --git a/rest/addresses/list-get-example-1/list-get-example-1.7.x.php b/rest/addresses/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/addresses/list-get-example-1/list-get-example-1.7.x.php rename to rest/addresses/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/addresses/list-get-example-2/list-get-example-2.7.x.php b/rest/addresses/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/addresses/list-get-example-2/list-get-example-2.7.x.php rename to rest/addresses/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/addresses/list-post-example-1/list-post-example-1.7.x.php b/rest/addresses/list-post-example-1/list-post-example-1.8.x.php similarity index 100% rename from rest/addresses/list-post-example-1/list-post-example-1.7.x.php rename to rest/addresses/list-post-example-1/list-post-example-1.8.x.php diff --git a/rest/answering-machine-detection/outgoing-call/outgoing-call-1.7.x.php b/rest/answering-machine-detection/outgoing-call/outgoing-call-1.8.x.php similarity index 100% rename from rest/answering-machine-detection/outgoing-call/outgoing-call-1.7.x.php rename to rest/answering-machine-detection/outgoing-call/outgoing-call-1.8.x.php diff --git a/rest/applications/instance-get-example-1/instance-get-example-1.7.x.php b/rest/applications/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/applications/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/applications/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/applications/instance-post-example-1/instance-post-example-1.7.x.php b/rest/applications/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/applications/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/applications/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/applications/list-get-example-1/list-get-example-1.7.x.php b/rest/applications/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/applications/list-get-example-1/list-get-example-1.7.x.php rename to rest/applications/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/applications/list-get-example-2/list-get-example-2.7.x.php b/rest/applications/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/applications/list-get-example-2/list-get-example-2.7.x.php rename to rest/applications/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/applications/list-post-example-1/list-post-example-1.7.x.php b/rest/applications/list-post-example-1/list-post-example-1.8.x.php similarity index 100% rename from rest/applications/list-post-example-1/list-post-example-1.7.x.php rename to rest/applications/list-post-example-1/list-post-example-1.8.x.php diff --git a/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.7.x.php b/rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/authorized-connect-apps/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.7.x.php b/rest/authorized-connect-apps/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/authorized-connect-apps/list-get-example-1/list-get-example-1.7.x.php rename to rest/authorized-connect-apps/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.7.x.php b/rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.7.x.php rename to rest/available-phone-numbers/local-advanced-example-1/local-get-advanced-example-1.8.x.php diff --git a/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.7.x.php b/rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.7.x.php rename to rest/available-phone-numbers/local-basic-example-1/local-get-basic-example-1.8.x.php diff --git a/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.7.x.php b/rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.7.x.php rename to rest/available-phone-numbers/local-basic-example-2/local-get-basic-example-2.8.x.php diff --git a/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.7.x.php b/rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.7.x.php rename to rest/available-phone-numbers/local-basic-example-3/local-get-basic-example-3.8.x.php diff --git a/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.7.x.php b/rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.7.x.php rename to rest/available-phone-numbers/local-basic-example-4/local-get-basic-example-4.8.x.php diff --git a/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.7.x.php b/rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.7.x.php rename to rest/available-phone-numbers/local-basic-example-5/local-get-basic-example-5.8.x.php diff --git a/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.7.x.php b/rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.7.x.php rename to rest/available-phone-numbers/local-basic-example-6/local-get-basic-example-6.8.x.php diff --git a/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.7.x.php b/rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.7.x.php rename to rest/available-phone-numbers/local-basic-example-7/local-get-basic-example-7.8.x.php diff --git a/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.7.x.php b/rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.8.x.php similarity index 100% rename from rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.7.x.php rename to rest/available-phone-numbers/local-basic-example-8/local-get-basic-example-8.8.x.php diff --git a/rest/available-phone-numbers/mobile-example/mobile-get-example-1.7.x.php b/rest/available-phone-numbers/mobile-example/mobile-get-example-1.8.x.php similarity index 100% rename from rest/available-phone-numbers/mobile-example/mobile-get-example-1.7.x.php rename to rest/available-phone-numbers/mobile-example/mobile-get-example-1.8.x.php diff --git a/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.7.x.php b/rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.8.x.php similarity index 100% rename from rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.7.x.php rename to rest/available-phone-numbers/toll-free-example-1/toll-free-get-example-1.8.x.php diff --git a/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.7.x.php b/rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.8.x.php similarity index 100% rename from rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.7.x.php rename to rest/available-phone-numbers/toll-free-example-2/toll-free-get-example-2.8.x.php diff --git a/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.7.x.php b/rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.8.x.php similarity index 100% rename from rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.7.x.php rename to rest/available-phone-numbers/toll-free-example-3/toll-free-get-example-3.8.x.php diff --git a/rest/call-feedback/instance-get-example-1/instance-get-example-1.7.x.php b/rest/call-feedback/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/call-feedback/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/call-feedback/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/call-feedback/instance-post-example-1/instance-post-example-1.7.x.php b/rest/call-feedback/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/call-feedback/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/call-feedback/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.7.x.php b/rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.8.x.php similarity index 100% rename from rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.7.x.php rename to rest/call-feedback/summary-instance-delete-example-1/summary-instance-delete-example-1.8.x.php diff --git a/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.7.x.php b/rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.8.x.php similarity index 100% rename from rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.7.x.php rename to rest/call-feedback/summary-instance-get-example-1/summary-instance-get-example-1.8.x.php diff --git a/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.7.x.php b/rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.8.x.php similarity index 100% rename from rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.7.x.php rename to rest/call-feedback/summary-instance-get-example-2/summary-instance-get-example-2.8.x.php diff --git a/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.7.x.php b/rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.8.x.php similarity index 100% rename from rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.7.x.php rename to rest/call-feedback/summary-list-post-example-1/summary-list-post-example-1.8.x.php diff --git a/rest/call/instance-get-example-1/instance-get-example-1.7.x.php b/rest/call/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/call/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/call/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/call/list-get-example-1/list-get-example-1.7.x.php b/rest/call/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/call/list-get-example-1/list-get-example-1.7.x.php rename to rest/call/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/call/list-get-example-2/list-get-example-2.7.x.php b/rest/call/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/call/list-get-example-2/list-get-example-2.7.x.php rename to rest/call/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/call/list-get-example-3/list-get-example-3.7.x.php b/rest/call/list-get-example-3/list-get-example-3.8.x.php similarity index 100% rename from rest/call/list-get-example-3/list-get-example-3.7.x.php rename to rest/call/list-get-example-3/list-get-example-3.8.x.php diff --git a/rest/call/list-get-example-4/list-get-example-4.7.x.php b/rest/call/list-get-example-4/list-get-example-4.8.x.php similarity index 100% rename from rest/call/list-get-example-4/list-get-example-4.7.x.php rename to rest/call/list-get-example-4/list-get-example-4.8.x.php diff --git a/rest/call/list-get-example-6/list-get-example-6.7.x.php b/rest/call/list-get-example-6/list-get-example-6.8.x.php similarity index 100% rename from rest/call/list-get-example-6/list-get-example-6.7.x.php rename to rest/call/list-get-example-6/list-get-example-6.8.x.php diff --git a/rest/call/list-get-example-7/list-get-example-7.7.x.php b/rest/call/list-get-example-7/list-get-example-7.8.x.php similarity index 100% rename from rest/call/list-get-example-7/list-get-example-7.7.x.php rename to rest/call/list-get-example-7/list-get-example-7.8.x.php diff --git a/rest/change-call-state/example-1/example-1.7.x.php b/rest/change-call-state/example-1/example-1.8.x.php similarity index 100% rename from rest/change-call-state/example-1/example-1.7.x.php rename to rest/change-call-state/example-1/example-1.8.x.php diff --git a/rest/change-call-state/list-get-example-2/list-get-example-2.7.x.php b/rest/change-call-state/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/change-call-state/list-get-example-2/list-get-example-2.7.x.php rename to rest/change-call-state/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/conference/instance-get-example-1/instance-get-example-1.7.x.php b/rest/conference/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/conference/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/conference/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/conference/list-get-example-1/list-get-example-1.7.x.php b/rest/conference/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/conference/list-get-example-1/list-get-example-1.7.x.php rename to rest/conference/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/conference/list-get-example-2/list-get-example-2.7.x.php b/rest/conference/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/conference/list-get-example-2/list-get-example-2.7.x.php rename to rest/conference/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/conference/list-get-example-3/list-get-example-3.7.x.php b/rest/conference/list-get-example-3/list-get-example-3.8.x.php similarity index 100% rename from rest/conference/list-get-example-3/list-get-example-3.7.x.php rename to rest/conference/list-get-example-3/list-get-example-3.8.x.php diff --git a/rest/conference/list-get-example-4/list-get-example-4.7.x.php b/rest/conference/list-get-example-4/list-get-example-4.8.x.php similarity index 100% rename from rest/conference/list-get-example-4/list-get-example-4.7.x.php rename to rest/conference/list-get-example-4/list-get-example-4.8.x.php diff --git a/rest/connect-apps/instance-get-example-1/instance-get-example-1.7.x.php b/rest/connect-apps/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/connect-apps/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/connect-apps/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/connect-apps/list-get-example-1/list-get-example-1.7.x.php b/rest/connect-apps/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/connect-apps/list-get-example-1/list-get-example-1.7.x.php rename to rest/connect-apps/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.7.x.php b/rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/incoming-phone-numbers/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.7.x.php b/rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/incoming-phone-numbers/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.7.x.php b/rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.7.x.php rename to rest/incoming-phone-numbers/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.7.x.php b/rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.7.x.php rename to rest/incoming-phone-numbers/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.7.x.php b/rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.8.x.php similarity index 100% rename from rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.7.x.php rename to rest/incoming-phone-numbers/list-get-example-3/list-get-example-3.8.x.php diff --git a/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.7.x.php b/rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.8.x.php similarity index 100% rename from rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.7.x.php rename to rest/incoming-phone-numbers/list-post-example-1/list-post-example-1.8.x.php diff --git a/rest/keys/instance-get-example/instance-get-example.7.x.php b/rest/keys/instance-get-example/instance-get-example.8.x.php similarity index 100% rename from rest/keys/instance-get-example/instance-get-example.7.x.php rename to rest/keys/instance-get-example/instance-get-example.8.x.php diff --git a/rest/keys/list-get-example/list-get-example.7.x.php b/rest/keys/list-get-example/list-get-example.8.x.php similarity index 100% rename from rest/keys/list-get-example/list-get-example.7.x.php rename to rest/keys/list-get-example/list-get-example.8.x.php diff --git a/rest/keys/list-post-example/list-post-example.7.x.php b/rest/keys/list-post-example/list-post-example.8.x.php similarity index 100% rename from rest/keys/list-post-example/list-post-example.7.x.php rename to rest/keys/list-post-example/list-post-example.8.x.php diff --git a/rest/keys/using-keys-example/example.7.x.php b/rest/keys/using-keys-example/example.8.x.php similarity index 100% rename from rest/keys/using-keys-example/example.7.x.php rename to rest/keys/using-keys-example/example.8.x.php diff --git a/rest/making-calls-sip/example-1/example-1.7.x.php b/rest/making-calls-sip/example-1/example-1.8.x.php similarity index 100% rename from rest/making-calls-sip/example-1/example-1.7.x.php rename to rest/making-calls-sip/example-1/example-1.8.x.php diff --git a/rest/making-calls-sip/example-2/example-2.7.x.php b/rest/making-calls-sip/example-2/example-2.8.x.php similarity index 100% rename from rest/making-calls-sip/example-2/example-2.7.x.php rename to rest/making-calls-sip/example-2/example-2.8.x.php diff --git a/rest/making-calls-sip/example-3/example-3.7.x.php b/rest/making-calls-sip/example-3/example-3.8.x.php similarity index 100% rename from rest/making-calls-sip/example-3/example-3.7.x.php rename to rest/making-calls-sip/example-3/example-3.8.x.php diff --git a/rest/making-calls/example-1/example-1.7.x.php b/rest/making-calls/example-1/example-1.8.x.php similarity index 100% rename from rest/making-calls/example-1/example-1.7.x.php rename to rest/making-calls/example-1/example-1.8.x.php diff --git a/rest/making-calls/example-2/example-2.7.x.php b/rest/making-calls/example-2/example-2.8.x.php similarity index 100% rename from rest/making-calls/example-2/example-2.7.x.php rename to rest/making-calls/example-2/example-2.8.x.php diff --git a/rest/making-calls/example-3/example-3.7.x.php b/rest/making-calls/example-3/example-3.8.x.php similarity index 100% rename from rest/making-calls/example-3/example-3.7.x.php rename to rest/making-calls/example-3/example-3.8.x.php diff --git a/rest/making-calls/example-4/example-4.7.x.php b/rest/making-calls/example-4/example-4.8.x.php similarity index 100% rename from rest/making-calls/example-4/example-4.7.x.php rename to rest/making-calls/example-4/example-4.8.x.php diff --git a/rest/media/instance-delete-example-1/instance-delete-example-1.7.x.php b/rest/media/instance-delete-example-1/instance-delete-example-1.8.x.php similarity index 100% rename from rest/media/instance-delete-example-1/instance-delete-example-1.7.x.php rename to rest/media/instance-delete-example-1/instance-delete-example-1.8.x.php diff --git a/rest/media/list-get-example-1/list-get-example-1.7.x.php b/rest/media/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/media/list-get-example-1/list-get-example-1.7.x.php rename to rest/media/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/member/instance-get-example-1/instance-get-example-1.7.x.php b/rest/member/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/member/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/member/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/member/instance-post-example-1/instance-post-example-1.7.x.php b/rest/member/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/member/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/member/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/member/instance-post-example-2/instance-post-example-2.7.x.php b/rest/member/instance-post-example-2/instance-post-example-2.8.x.php similarity index 100% rename from rest/member/instance-post-example-2/instance-post-example-2.7.x.php rename to rest/member/instance-post-example-2/instance-post-example-2.8.x.php diff --git a/rest/member/list-get-example-1/list-get-example-1.7.x.php b/rest/member/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/member/list-get-example-1/list-get-example-1.7.x.php rename to rest/member/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/message/instance-delete/example-1.7.x.php b/rest/message/instance-delete/example-1.8.x.php similarity index 100% rename from rest/message/instance-delete/example-1.7.x.php rename to rest/message/instance-delete/example-1.8.x.php diff --git a/rest/message/instance-get-example-1/instance-get-example-1.7.x.php b/rest/message/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/message/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/message/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/message/instance-post-example-1/instance-post-example-1.7.x.php b/rest/message/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/message/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/message/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/message/list-get-example-1/list-get-example-1.7.x.php b/rest/message/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/message/list-get-example-1/list-get-example-1.7.x.php rename to rest/message/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/message/list-get-example-2/list-get-example-2.7.x.php b/rest/message/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/message/list-get-example-2/list-get-example-2.7.x.php rename to rest/message/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/messages/feedback-send-sms/feedback-send-sms.7.x.php b/rest/messages/feedback-send-sms/feedback-send-sms.8.x.php similarity index 100% rename from rest/messages/feedback-send-sms/feedback-send-sms.7.x.php rename to rest/messages/feedback-send-sms/feedback-send-sms.8.x.php diff --git a/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.7.x.php b/rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.8.x.php similarity index 100% rename from rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.7.x.php rename to rest/messages/generate-twiml-dynamic-sms/generate-twiml-dynamic-sms.8.x.php diff --git a/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.7.x.php b/rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.8.x.php similarity index 100% rename from rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.7.x.php rename to rest/messages/generate-twiml-empty-response/generate-twiml-empty-response.8.x.php diff --git a/rest/messages/generate-twiml-mms/generate-twiml-mms.7.x.php b/rest/messages/generate-twiml-mms/generate-twiml-mms.8.x.php similarity index 100% rename from rest/messages/generate-twiml-mms/generate-twiml-mms.7.x.php rename to rest/messages/generate-twiml-mms/generate-twiml-mms.8.x.php diff --git a/rest/messages/generate-twiml-sms-voice/example-1.7.x.php b/rest/messages/generate-twiml-sms-voice/example-1.8.x.php similarity index 100% rename from rest/messages/generate-twiml-sms-voice/example-1.7.x.php rename to rest/messages/generate-twiml-sms-voice/example-1.8.x.php diff --git a/rest/messages/generate-twiml-sms/generate-twiml-sms.7.x.php b/rest/messages/generate-twiml-sms/generate-twiml-sms.8.x.php similarity index 100% rename from rest/messages/generate-twiml-sms/generate-twiml-sms.7.x.php rename to rest/messages/generate-twiml-sms/generate-twiml-sms.8.x.php diff --git a/rest/messages/send-message/example-1.7.x.php b/rest/messages/send-message/example-1.8.x.php similarity index 100% rename from rest/messages/send-message/example-1.7.x.php rename to rest/messages/send-message/example-1.8.x.php diff --git a/rest/messages/send-messages-copilot/send-messages-copilot.7.x.php b/rest/messages/send-messages-copilot/send-messages-copilot.8.x.php similarity index 100% rename from rest/messages/send-messages-copilot/send-messages-copilot.7.x.php rename to rest/messages/send-messages-copilot/send-messages-copilot.8.x.php diff --git a/rest/messages/send-sms-callback/send-sms-callback.7.x.php b/rest/messages/send-sms-callback/send-sms-callback.8.x.php similarity index 100% rename from rest/messages/send-sms-callback/send-sms-callback.7.x.php rename to rest/messages/send-sms-callback/send-sms-callback.8.x.php diff --git a/rest/messages/send-sms/send-sms.7.x.php b/rest/messages/send-sms/send-sms.8.x.php similarity index 100% rename from rest/messages/send-sms/send-sms.7.x.php rename to rest/messages/send-sms/send-sms.8.x.php diff --git a/rest/notification/instance-delete-examples/instance-delete-examples.7.x.php b/rest/notification/instance-delete-examples/instance-delete-examples.8.x.php similarity index 100% rename from rest/notification/instance-delete-examples/instance-delete-examples.7.x.php rename to rest/notification/instance-delete-examples/instance-delete-examples.8.x.php diff --git a/rest/notification/instance-get-example-1/instance-get-example-1.7.x.php b/rest/notification/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/notification/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/notification/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/notification/list-get-example-1/list-get-example-1.7.x.php b/rest/notification/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/notification/list-get-example-1/list-get-example-1.7.x.php rename to rest/notification/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/notification/list-get-example-2/list-get-example-2.7.x.php b/rest/notification/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/notification/list-get-example-2/list-get-example-2.7.x.php rename to rest/notification/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/notification/list-get-example-3/list-get-example-3.7.x.php b/rest/notification/list-get-example-3/list-get-example-3.8.x.php similarity index 100% rename from rest/notification/list-get-example-3/list-get-example-3.7.x.php rename to rest/notification/list-get-example-3/list-get-example-3.8.x.php diff --git a/rest/notification/list-get-example-4/list-get-example-4.7.x.php b/rest/notification/list-get-example-4/list-get-example-4.8.x.php similarity index 100% rename from rest/notification/list-get-example-4/list-get-example-4.7.x.php rename to rest/notification/list-get-example-4/list-get-example-4.8.x.php diff --git a/rest/outgoing-caller-ids/instance-delete/instance-delete.7.x.php b/rest/outgoing-caller-ids/instance-delete/instance-delete.8.x.php similarity index 100% rename from rest/outgoing-caller-ids/instance-delete/instance-delete.7.x.php rename to rest/outgoing-caller-ids/instance-delete/instance-delete.8.x.php diff --git a/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.7.x.php b/rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/outgoing-caller-ids/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.7.x.php b/rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/outgoing-caller-ids/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.7.x.php b/rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.7.x.php rename to rest/outgoing-caller-ids/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.7.x.php b/rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.7.x.php rename to rest/outgoing-caller-ids/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.7.x.php b/rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.8.x.php similarity index 100% rename from rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.7.x.php rename to rest/outgoing-caller-ids/list-post-example-1/list-post-example-1.8.x.php diff --git a/rest/participant/instance-delete-example-1/instance-delete-example-1.7.x.php b/rest/participant/instance-delete-example-1/instance-delete-example-1.8.x.php similarity index 100% rename from rest/participant/instance-delete-example-1/instance-delete-example-1.7.x.php rename to rest/participant/instance-delete-example-1/instance-delete-example-1.8.x.php diff --git a/rest/participant/instance-get-example-1/instance-get-example-1.7.x.php b/rest/participant/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/participant/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/participant/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/participant/instance-post-example-1/instance-post-example-1.7.x.php b/rest/participant/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/participant/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/participant/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/participant/instance-post-example-2/instance-post-example-2.7.x.php b/rest/participant/instance-post-example-2/instance-post-example-2.8.x.php similarity index 100% rename from rest/participant/instance-post-example-2/instance-post-example-2.7.x.php rename to rest/participant/instance-post-example-2/instance-post-example-2.8.x.php diff --git a/rest/participant/list-get-example-1/list-get-example-1.7.x.php b/rest/participant/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/participant/list-get-example-1/list-get-example-1.7.x.php rename to rest/participant/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/participant/list-post-example-1/list-post-example-1.7.x.php b/rest/participant/list-post-example-1/list-post-example-1.8.x.php similarity index 100% rename from rest/participant/list-post-example-1/list-post-example-1.7.x.php rename to rest/participant/list-post-example-1/list-post-example-1.8.x.php diff --git a/rest/queue/instance-get-example-1/instance-get-example-1.7.x.php b/rest/queue/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/queue/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/queue/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/queue/instance-post-example-1/instance-post-example-1.7.x.php b/rest/queue/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/queue/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/queue/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/queue/list-get-example-1/list-get-example-1.7.x.php b/rest/queue/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/queue/list-get-example-1/list-get-example-1.7.x.php rename to rest/queue/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/queue/list-post-example-1/list-post-example-1.7.x.php b/rest/queue/list-post-example-1/list-post-example-1.8.x.php similarity index 100% rename from rest/queue/list-post-example-1/list-post-example-1.7.x.php rename to rest/queue/list-post-example-1/list-post-example-1.8.x.php diff --git a/rest/recording/get-recording-xml/get-recording-xml.7.x.php b/rest/recording/get-recording-xml/get-recording-xml.8.x.php similarity index 100% rename from rest/recording/get-recording-xml/get-recording-xml.7.x.php rename to rest/recording/get-recording-xml/get-recording-xml.8.x.php diff --git a/rest/recording/instance-delete-examples/instance-delete-examples.7.x.php b/rest/recording/instance-delete-examples/instance-delete-examples.8.x.php similarity index 100% rename from rest/recording/instance-delete-examples/instance-delete-examples.7.x.php rename to rest/recording/instance-delete-examples/instance-delete-examples.8.x.php diff --git a/rest/recording/list-get-example-1/list-get-example-1.7.x.php b/rest/recording/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/recording/list-get-example-1/list-get-example-1.7.x.php rename to rest/recording/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/recording/list-get-example-2/list-get-example-2.7.x.php b/rest/recording/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/recording/list-get-example-2/list-get-example-2.7.x.php rename to rest/recording/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/recording/list-get-example-3/list-get-example-3.7.x.php b/rest/recording/list-get-example-3/list-get-example-3.8.x.php similarity index 100% rename from rest/recording/list-get-example-3/list-get-example-3.7.x.php rename to rest/recording/list-get-example-3/list-get-example-3.8.x.php diff --git a/rest/recording/list-get-example-4/list-get-example-4.7.x.php b/rest/recording/list-get-example-4/list-get-example-4.8.x.php similarity index 100% rename from rest/recording/list-get-example-4/list-get-example-4.7.x.php rename to rest/recording/list-get-example-4/list-get-example-4.8.x.php diff --git a/rest/recording/list-get-example-5/list-get-example-5.7.x.php b/rest/recording/list-get-example-5/list-get-example-5.8.x.php similarity index 100% rename from rest/recording/list-get-example-5/list-get-example-5.7.x.php rename to rest/recording/list-get-example-5/list-get-example-5.8.x.php diff --git a/rest/recording/list-recording-transcriptions/list-recording-transcriptions-7.x.php b/rest/recording/list-recording-transcriptions/list-recording-transcriptions-8.x.php similarity index 100% rename from rest/recording/list-recording-transcriptions/list-recording-transcriptions-7.x.php rename to rest/recording/list-recording-transcriptions/list-recording-transcriptions-8.x.php diff --git a/rest/sending-messages/example-1/example-1.7.x.php b/rest/sending-messages/example-1/example-1.8.x.php similarity index 100% rename from rest/sending-messages/example-1/example-1.7.x.php rename to rest/sending-messages/example-1/example-1.8.x.php diff --git a/rest/short-codes/instance-get-example-1/instance-get-example-1.7.x.php b/rest/short-codes/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/short-codes/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/short-codes/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/short-codes/instance-post-example-1/instance-post-example-1.7.x.php b/rest/short-codes/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/short-codes/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/short-codes/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/short-codes/list-get-example-1/list-get-example-1.7.x.php b/rest/short-codes/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/short-codes/list-get-example-1/list-get-example-1.7.x.php rename to rest/short-codes/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/short-codes/list-get-example-2/list-get-example-2.7.x.php b/rest/short-codes/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/short-codes/list-get-example-2/list-get-example-2.7.x.php rename to rest/short-codes/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/short-codes/list-get-example-3/list-get-example-3.7.x.php b/rest/short-codes/list-get-example-3/list-get-example-3.8.x.php similarity index 100% rename from rest/short-codes/list-get-example-3/list-get-example-3.7.x.php rename to rest/short-codes/list-get-example-3/list-get-example-3.8.x.php diff --git a/rest/sip-in/associate-control-domain/associate-control-domain.7.x.php b/rest/sip-in/associate-control-domain/associate-control-domain.8.x.php similarity index 100% rename from rest/sip-in/associate-control-domain/associate-control-domain.7.x.php rename to rest/sip-in/associate-control-domain/associate-control-domain.8.x.php diff --git a/rest/sip-in/create-acl-address/create-acl-address.7.x.php b/rest/sip-in/create-acl-address/create-acl-address.8.x.php similarity index 100% rename from rest/sip-in/create-acl-address/create-acl-address.7.x.php rename to rest/sip-in/create-acl-address/create-acl-address.8.x.php diff --git a/rest/sip-in/create-credential-list/create-credential-list.7.x.php b/rest/sip-in/create-credential-list/create-credential-list.8.x.php similarity index 100% rename from rest/sip-in/create-credential-list/create-credential-list.7.x.php rename to rest/sip-in/create-credential-list/create-credential-list.8.x.php diff --git a/rest/sip-in/create-credential/create-credential.7.x.php b/rest/sip-in/create-credential/create-credential.8.x.php similarity index 100% rename from rest/sip-in/create-credential/create-credential.7.x.php rename to rest/sip-in/create-credential/create-credential.8.x.php diff --git a/rest/sip-in/create-domain/create-domain.7.x.php b/rest/sip-in/create-domain/create-domain.8.x.php similarity index 100% rename from rest/sip-in/create-domain/create-domain.7.x.php rename to rest/sip-in/create-domain/create-domain.8.x.php diff --git a/rest/sip-in/create-ip-acl/create-ip-acl.7.x.php b/rest/sip-in/create-ip-acl/create-ip-acl.8.x.php similarity index 100% rename from rest/sip-in/create-ip-acl/create-ip-acl.7.x.php rename to rest/sip-in/create-ip-acl/create-ip-acl.8.x.php diff --git a/rest/sip-in/delete-access-mapping-old/delete-access-mapping.7.x.php b/rest/sip-in/delete-access-mapping-old/delete-access-mapping.8.x.php similarity index 100% rename from rest/sip-in/delete-access-mapping-old/delete-access-mapping.7.x.php rename to rest/sip-in/delete-access-mapping-old/delete-access-mapping.8.x.php diff --git a/rest/sip-in/delete-access-mapping/delete-access-mapping.7.x.php b/rest/sip-in/delete-access-mapping/delete-access-mapping.8.x.php similarity index 100% rename from rest/sip-in/delete-access-mapping/delete-access-mapping.7.x.php rename to rest/sip-in/delete-access-mapping/delete-access-mapping.8.x.php diff --git a/rest/sip-in/delete-address-instance/delete-address-instance.7.x.php b/rest/sip-in/delete-address-instance/delete-address-instance.8.x.php similarity index 100% rename from rest/sip-in/delete-address-instance/delete-address-instance.7.x.php rename to rest/sip-in/delete-address-instance/delete-address-instance.8.x.php diff --git a/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.7.x.php b/rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.8.x.php similarity index 100% rename from rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.7.x.php rename to rest/sip-in/delete-credential-list-instance/delete-credential-list-instance.8.x.php diff --git a/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.7.x.php b/rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.8.x.php similarity index 100% rename from rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.7.x.php rename to rest/sip-in/delete-credential-list-mapping-old/delete-credential-list-mapping.8.x.php diff --git a/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.7.x.php b/rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.8.x.php similarity index 100% rename from rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.7.x.php rename to rest/sip-in/delete-credential-list-mapping/delete-credential-list-mapping.8.x.php diff --git a/rest/sip-in/delete-credential/delete-credential.7.x.php b/rest/sip-in/delete-credential/delete-credential.8.x.php similarity index 100% rename from rest/sip-in/delete-credential/delete-credential.7.x.php rename to rest/sip-in/delete-credential/delete-credential.8.x.php diff --git a/rest/sip-in/delete-domain-instance/delete-domain-instance.7.x.php b/rest/sip-in/delete-domain-instance/delete-domain-instance.8.x.php similarity index 100% rename from rest/sip-in/delete-domain-instance/delete-domain-instance.7.x.php rename to rest/sip-in/delete-domain-instance/delete-domain-instance.8.x.php diff --git a/rest/sip-in/delete-ip-acl/delete-ip-acl.7.x.php b/rest/sip-in/delete-ip-acl/delete-ip-acl.8.x.php similarity index 100% rename from rest/sip-in/delete-ip-acl/delete-ip-acl.7.x.php rename to rest/sip-in/delete-ip-acl/delete-ip-acl.8.x.php diff --git a/rest/sip-in/get-acl-addresses/get-acl-addresses.7.x.php b/rest/sip-in/get-acl-addresses/get-acl-addresses.8.x.php similarity index 100% rename from rest/sip-in/get-acl-addresses/get-acl-addresses.7.x.php rename to rest/sip-in/get-acl-addresses/get-acl-addresses.8.x.php diff --git a/rest/sip-in/get-acl-list/get-acl-list.7.x.php b/rest/sip-in/get-acl-list/get-acl-list.8.x.php similarity index 100% rename from rest/sip-in/get-acl-list/get-acl-list.7.x.php rename to rest/sip-in/get-acl-list/get-acl-list.8.x.php diff --git a/rest/sip-in/get-acl-lists/get-acl-lists.7.x.php b/rest/sip-in/get-acl-lists/get-acl-lists.8.x.php similarity index 100% rename from rest/sip-in/get-acl-lists/get-acl-lists.7.x.php rename to rest/sip-in/get-acl-lists/get-acl-lists.8.x.php diff --git a/rest/sip-in/get-address-instance/get-address-instance.7.x.php b/rest/sip-in/get-address-instance/get-address-instance.8.x.php similarity index 100% rename from rest/sip-in/get-address-instance/get-address-instance.7.x.php rename to rest/sip-in/get-address-instance/get-address-instance.8.x.php diff --git a/rest/sip-in/get-credential-list-instance/get-credential-list-instance.7.x.php b/rest/sip-in/get-credential-list-instance/get-credential-list-instance.8.x.php similarity index 100% rename from rest/sip-in/get-credential-list-instance/get-credential-list-instance.7.x.php rename to rest/sip-in/get-credential-list-instance/get-credential-list-instance.8.x.php diff --git a/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.7.x.php b/rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.8.x.php similarity index 100% rename from rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.7.x.php rename to rest/sip-in/get-credential-list-mappings/get-credential-list-mappings.8.x.php diff --git a/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.7.x.php b/rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.8.x.php similarity index 100% rename from rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.7.x.php rename to rest/sip-in/get-credential-lists-credentials/get-credential-lists-credentials.8.x.php diff --git a/rest/sip-in/get-credential-lists/get-credential-lists.7.x.php b/rest/sip-in/get-credential-lists/get-credential-lists.8.x.php similarity index 100% rename from rest/sip-in/get-credential-lists/get-credential-lists.7.x.php rename to rest/sip-in/get-credential-lists/get-credential-lists.8.x.php diff --git a/rest/sip-in/get-credential/get-credential.7.x.php b/rest/sip-in/get-credential/get-credential.8.x.php similarity index 100% rename from rest/sip-in/get-credential/get-credential.7.x.php rename to rest/sip-in/get-credential/get-credential.8.x.php diff --git a/rest/sip-in/get-domain-instance/get-domain-instance.7.x.php b/rest/sip-in/get-domain-instance/get-domain-instance.8.x.php similarity index 100% rename from rest/sip-in/get-domain-instance/get-domain-instance.7.x.php rename to rest/sip-in/get-domain-instance/get-domain-instance.8.x.php diff --git a/rest/sip-in/get-domain-mappings/get-domain-mappings.7.x.php b/rest/sip-in/get-domain-mappings/get-domain-mappings.8.x.php similarity index 100% rename from rest/sip-in/get-domain-mappings/get-domain-mappings.7.x.php rename to rest/sip-in/get-domain-mappings/get-domain-mappings.8.x.php diff --git a/rest/sip-in/get-domains/get-domains.7.x.php b/rest/sip-in/get-domains/get-domains.8.x.php similarity index 100% rename from rest/sip-in/get-domains/get-domains.7.x.php rename to rest/sip-in/get-domains/get-domains.8.x.php diff --git a/rest/sip-in/get-ip-acls/get-ip-acls.7.x.php b/rest/sip-in/get-ip-acls/get-ip-acls.8.x.php similarity index 100% rename from rest/sip-in/get-ip-acls/get-ip-acls.7.x.php rename to rest/sip-in/get-ip-acls/get-ip-acls.8.x.php diff --git a/rest/sip-in/get-mappings-instance-old/get-mappings-instance.7.x.php b/rest/sip-in/get-mappings-instance-old/get-mappings-instance.8.x.php similarity index 100% rename from rest/sip-in/get-mappings-instance-old/get-mappings-instance.7.x.php rename to rest/sip-in/get-mappings-instance-old/get-mappings-instance.8.x.php diff --git a/rest/sip-in/get-mappings-instance/get-mappings-instance.7.x.php b/rest/sip-in/get-mappings-instance/get-mappings-instance.8.x.php similarity index 100% rename from rest/sip-in/get-mappings-instance/get-mappings-instance.7.x.php rename to rest/sip-in/get-mappings-instance/get-mappings-instance.8.x.php diff --git a/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.7.x.php b/rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.8.x.php similarity index 100% rename from rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.7.x.php rename to rest/sip-in/map-credential-list-domain-old/map-credential-list-domain.8.x.php diff --git a/rest/sip-in/map-credential-list-domain/map-credential-list-domain.7.x.php b/rest/sip-in/map-credential-list-domain/map-credential-list-domain.8.x.php similarity index 100% rename from rest/sip-in/map-credential-list-domain/map-credential-list-domain.7.x.php rename to rest/sip-in/map-credential-list-domain/map-credential-list-domain.8.x.php diff --git a/rest/sip-in/map-list-domain-old/map-list-domain.7.x.php b/rest/sip-in/map-list-domain-old/map-list-domain.8.x.php similarity index 100% rename from rest/sip-in/map-list-domain-old/map-list-domain.7.x.php rename to rest/sip-in/map-list-domain-old/map-list-domain.8.x.php diff --git a/rest/sip-in/map-list-domain/map-list-domain.7.x.php b/rest/sip-in/map-list-domain/map-list-domain.8.x.php similarity index 100% rename from rest/sip-in/map-list-domain/map-list-domain.7.x.php rename to rest/sip-in/map-list-domain/map-list-domain.8.x.php diff --git a/rest/sip-in/update-address-instance/update-address-instance.7.x.php b/rest/sip-in/update-address-instance/update-address-instance.8.x.php similarity index 100% rename from rest/sip-in/update-address-instance/update-address-instance.7.x.php rename to rest/sip-in/update-address-instance/update-address-instance.8.x.php diff --git a/rest/sip-in/update-credential-list-instance/update-credential-list-instance.7.x.php b/rest/sip-in/update-credential-list-instance/update-credential-list-instance.8.x.php similarity index 100% rename from rest/sip-in/update-credential-list-instance/update-credential-list-instance.7.x.php rename to rest/sip-in/update-credential-list-instance/update-credential-list-instance.8.x.php diff --git a/rest/sip-in/update-credential/update-credential.7.x.php b/rest/sip-in/update-credential/update-credential.8.x.php similarity index 100% rename from rest/sip-in/update-credential/update-credential.7.x.php rename to rest/sip-in/update-credential/update-credential.8.x.php diff --git a/rest/sip-in/update-domain-instance/update-domain-instance.7.x.php b/rest/sip-in/update-domain-instance/update-domain-instance.8.x.php similarity index 100% rename from rest/sip-in/update-domain-instance/update-domain-instance.7.x.php rename to rest/sip-in/update-domain-instance/update-domain-instance.8.x.php diff --git a/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.7.x.php b/rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.8.x.php similarity index 100% rename from rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.7.x.php rename to rest/sip-in/update-ip-acl-instance/update-ip-acl-instance.8.x.php diff --git a/rest/sip/example-1/example-1.7.x.php b/rest/sip/example-1/example-1.8.x.php similarity index 100% rename from rest/sip/example-1/example-1.7.x.php rename to rest/sip/example-1/example-1.8.x.php diff --git a/rest/sip/example-2/example-2.7.x.php b/rest/sip/example-2/example-2.8.x.php similarity index 100% rename from rest/sip/example-2/example-2.7.x.php rename to rest/sip/example-2/example-2.8.x.php diff --git a/rest/sip/example-3/example-3.7.x.php b/rest/sip/example-3/example-3.8.x.php similarity index 100% rename from rest/sip/example-3/example-3.7.x.php rename to rest/sip/example-3/example-3.8.x.php diff --git a/rest/sms/instance-get-example-1/instance-get-example-1.7.x.php b/rest/sms/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/sms/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/sms/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/sms/list-get-example-1/list-get-example-1.7.x.php b/rest/sms/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/sms/list-get-example-1/list-get-example-1.7.x.php rename to rest/sms/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/subaccounts/billing-example/subaccount-billing.7.x.php b/rest/subaccounts/billing-example/subaccount-billing.8.x.php similarity index 100% rename from rest/subaccounts/billing-example/subaccount-billing.7.x.php rename to rest/subaccounts/billing-example/subaccount-billing.8.x.php diff --git a/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.7.x.php b/rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.8.x.php similarity index 100% rename from rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.7.x.php rename to rest/subaccounts/creating-subaccounts-example-1/creating-subaccounts-example-1.8.x.php diff --git a/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.7.x.php b/rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.8.x.php similarity index 100% rename from rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.7.x.php rename to rest/subaccounts/exchanging-numbers-example-1/exchanging-numbers-example-1.8.x.php diff --git a/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.7.x.php b/rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.8.x.php similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.7.x.php rename to rest/subaccounts/listing-subaccounts-example-1/listing-subaccounts-example-1.8.x.php diff --git a/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.7.x.php b/rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.8.x.php similarity index 100% rename from rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.7.x.php rename to rest/subaccounts/listing-subaccounts-example-2/listing-subaccounts-example-2.8.x.php diff --git a/rest/subaccounts/voice-example/subaccount-call.7.x.php b/rest/subaccounts/voice-example/subaccount-call.8.x.php similarity index 100% rename from rest/subaccounts/voice-example/subaccount-call.7.x.php rename to rest/subaccounts/voice-example/subaccount-call.8.x.php diff --git a/rest/taskrouter/activities/instance/delete/example-1/example-1.7.x.php b/rest/taskrouter/activities/instance/delete/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/activities/instance/delete/example-1/example-1.7.x.php rename to rest/taskrouter/activities/instance/delete/example-1/example-1.8.x.php diff --git a/rest/taskrouter/activities/instance/get/example-1/example-1.7.x.php b/rest/taskrouter/activities/instance/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/activities/instance/get/example-1/example-1.7.x.php rename to rest/taskrouter/activities/instance/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/activities/instance/post/example-1/example-1.7.x.php b/rest/taskrouter/activities/instance/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/activities/instance/post/example-1/example-1.7.x.php rename to rest/taskrouter/activities/instance/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/activities/list/get/example-1/example-1.7.x.php b/rest/taskrouter/activities/list/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/activities/list/get/example-1/example-1.7.x.php rename to rest/taskrouter/activities/list/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/activities/list/post/example-1/example-1.7.x.php b/rest/taskrouter/activities/list/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/activities/list/post/example-1/example-1.7.x.php rename to rest/taskrouter/activities/list/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/events/example-1/example-1.7.x.php b/rest/taskrouter/events/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/events/example-1/example-1.7.x.php rename to rest/taskrouter/events/example-1/example-1.8.x.php diff --git a/rest/taskrouter/jwts/taskqueue/example-1/example-1.7.x.php b/rest/taskrouter/jwts/taskqueue/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/jwts/taskqueue/example-1/example-1.7.x.php rename to rest/taskrouter/jwts/taskqueue/example-1/example-1.8.x.php diff --git a/rest/taskrouter/jwts/worker/example-1/example-1.7.x.php b/rest/taskrouter/jwts/worker/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/jwts/worker/example-1/example-1.7.x.php rename to rest/taskrouter/jwts/worker/example-1/example-1.8.x.php diff --git a/rest/taskrouter/jwts/workspace/example-1/example-1.7.x.php b/rest/taskrouter/jwts/workspace/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/jwts/workspace/example-1/example-1.7.x.php rename to rest/taskrouter/jwts/workspace/example-1/example-1.8.x.php diff --git a/rest/taskrouter/reservations/call/example-1.7.x.php b/rest/taskrouter/reservations/call/example-1.8.x.php similarity index 100% rename from rest/taskrouter/reservations/call/example-1.7.x.php rename to rest/taskrouter/reservations/call/example-1.8.x.php diff --git a/rest/taskrouter/reservations/conference/conference.7.x.php b/rest/taskrouter/reservations/conference/conference.8.x.php similarity index 100% rename from rest/taskrouter/reservations/conference/conference.7.x.php rename to rest/taskrouter/reservations/conference/conference.8.x.php diff --git a/rest/taskrouter/reservations/dequeue/example-1.7.x.php b/rest/taskrouter/reservations/dequeue/example-1.8.x.php similarity index 100% rename from rest/taskrouter/reservations/dequeue/example-1.7.x.php rename to rest/taskrouter/reservations/dequeue/example-1.8.x.php diff --git a/rest/taskrouter/reservations/instance/get/example-1/example-1.7.x.php b/rest/taskrouter/reservations/instance/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/reservations/instance/get/example-1/example-1.7.x.php rename to rest/taskrouter/reservations/instance/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/reservations/instance/post/example-1/example-1.7.x.php b/rest/taskrouter/reservations/instance/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/reservations/instance/post/example-1/example-1.7.x.php rename to rest/taskrouter/reservations/instance/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/reservations/list/get/example-1/example-1.7.x.php b/rest/taskrouter/reservations/list/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/reservations/list/get/example-1/example-1.7.x.php rename to rest/taskrouter/reservations/list/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/reservations/redirect/redirect.7.x.php b/rest/taskrouter/reservations/redirect/redirect.8.x.php similarity index 100% rename from rest/taskrouter/reservations/redirect/redirect.7.x.php rename to rest/taskrouter/reservations/redirect/redirect.8.x.php diff --git a/rest/taskrouter/reservations/reject/example-1.7.x.php b/rest/taskrouter/reservations/reject/example-1.8.x.php similarity index 100% rename from rest/taskrouter/reservations/reject/example-1.7.x.php rename to rest/taskrouter/reservations/reject/example-1.8.x.php diff --git a/rest/taskrouter/statistics/taskqueue/cumulative/example-1.7.x.php b/rest/taskrouter/statistics/taskqueue/cumulative/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/taskqueue/cumulative/example-1.7.x.php rename to rest/taskrouter/statistics/taskqueue/cumulative/example-1.8.x.php diff --git a/rest/taskrouter/statistics/taskqueue/example-1/example-1.7.x.php b/rest/taskrouter/statistics/taskqueue/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/taskqueue/example-1/example-1.7.x.php rename to rest/taskrouter/statistics/taskqueue/example-1/example-1.8.x.php diff --git a/rest/taskrouter/statistics/taskqueue/realtime/example-1.7.x.php b/rest/taskrouter/statistics/taskqueue/realtime/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/taskqueue/realtime/example-1.7.x.php rename to rest/taskrouter/statistics/taskqueue/realtime/example-1.8.x.php diff --git a/rest/taskrouter/statistics/worker/example-1/example-1.7.x.php b/rest/taskrouter/statistics/worker/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/worker/example-1/example-1.7.x.php rename to rest/taskrouter/statistics/worker/example-1/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workers/cumulative/example-1.7.x.php b/rest/taskrouter/statistics/workers/cumulative/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workers/cumulative/example-1.7.x.php rename to rest/taskrouter/statistics/workers/cumulative/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workers/example-1/example-1.7.x.php b/rest/taskrouter/statistics/workers/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workers/example-1/example-1.7.x.php rename to rest/taskrouter/statistics/workers/example-1/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workers/realtime/example-1.7.x.php b/rest/taskrouter/statistics/workers/realtime/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workers/realtime/example-1.7.x.php rename to rest/taskrouter/statistics/workers/realtime/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workflow/cumulative/example-1.7.x.php b/rest/taskrouter/statistics/workflow/cumulative/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workflow/cumulative/example-1.7.x.php rename to rest/taskrouter/statistics/workflow/cumulative/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workflow/example-1/example-1.7.x.php b/rest/taskrouter/statistics/workflow/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workflow/example-1/example-1.7.x.php rename to rest/taskrouter/statistics/workflow/example-1/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workflow/realtime/example-1.7.x.php b/rest/taskrouter/statistics/workflow/realtime/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workflow/realtime/example-1.7.x.php rename to rest/taskrouter/statistics/workflow/realtime/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workspace/cumulative/example-1.7.x.php b/rest/taskrouter/statistics/workspace/cumulative/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workspace/cumulative/example-1.7.x.php rename to rest/taskrouter/statistics/workspace/cumulative/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workspace/example-1/example-1.7.x.php b/rest/taskrouter/statistics/workspace/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workspace/example-1/example-1.7.x.php rename to rest/taskrouter/statistics/workspace/example-1/example-1.8.x.php diff --git a/rest/taskrouter/statistics/workspace/realtime/example-1.7.x.php b/rest/taskrouter/statistics/workspace/realtime/example-1.8.x.php similarity index 100% rename from rest/taskrouter/statistics/workspace/realtime/example-1.7.x.php rename to rest/taskrouter/statistics/workspace/realtime/example-1.8.x.php diff --git a/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.7.x.php b/rest/taskrouter/taskqueues/instance/delete/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/taskqueues/instance/delete/example-1/example-1.7.x.php rename to rest/taskrouter/taskqueues/instance/delete/example-1/example-1.8.x.php diff --git a/rest/taskrouter/taskqueues/instance/get/example-1/example-1.7.x.php b/rest/taskrouter/taskqueues/instance/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/taskqueues/instance/get/example-1/example-1.7.x.php rename to rest/taskrouter/taskqueues/instance/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/taskqueues/instance/post/example-1/example-1.7.x.php b/rest/taskrouter/taskqueues/instance/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/taskqueues/instance/post/example-1/example-1.7.x.php rename to rest/taskrouter/taskqueues/instance/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/taskqueues/list/get/example-1/example-1.7.x.php b/rest/taskrouter/taskqueues/list/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/taskqueues/list/get/example-1/example-1.7.x.php rename to rest/taskrouter/taskqueues/list/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/taskqueues/list/post/example-1/example-1.7.x.php b/rest/taskrouter/taskqueues/list/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/taskqueues/list/post/example-1/example-1.7.x.php rename to rest/taskrouter/taskqueues/list/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/tasks/instance/delete/example-1/example-1.7.x.php b/rest/taskrouter/tasks/instance/delete/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/tasks/instance/delete/example-1/example-1.7.x.php rename to rest/taskrouter/tasks/instance/delete/example-1/example-1.8.x.php diff --git a/rest/taskrouter/tasks/instance/get/example-1/example-1.7.x.php b/rest/taskrouter/tasks/instance/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/tasks/instance/get/example-1/example-1.7.x.php rename to rest/taskrouter/tasks/instance/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/tasks/instance/post/example-1/example-1.7.x.php b/rest/taskrouter/tasks/instance/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/tasks/instance/post/example-1/example-1.7.x.php rename to rest/taskrouter/tasks/instance/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/tasks/list/get/example-1/example-1.7.x.php b/rest/taskrouter/tasks/list/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/tasks/list/get/example-1/example-1.7.x.php rename to rest/taskrouter/tasks/list/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/tasks/list/get/example-2/example-2.7.x.php b/rest/taskrouter/tasks/list/get/example-2/example-2.8.x.php similarity index 100% rename from rest/taskrouter/tasks/list/get/example-2/example-2.7.x.php rename to rest/taskrouter/tasks/list/get/example-2/example-2.8.x.php diff --git a/rest/taskrouter/tasks/list/post/example-1/example-1.7.x.php b/rest/taskrouter/tasks/list/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/tasks/list/post/example-1/example-1.7.x.php rename to rest/taskrouter/tasks/list/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/twiml/example1/example/example.7.x.php b/rest/taskrouter/twiml/example1/example/example.8.x.php similarity index 100% rename from rest/taskrouter/twiml/example1/example/example.7.x.php rename to rest/taskrouter/twiml/example1/example/example.8.x.php diff --git a/rest/taskrouter/twiml/example2/example/example.7.x.php b/rest/taskrouter/twiml/example2/example/example.8.x.php similarity index 100% rename from rest/taskrouter/twiml/example2/example/example.7.x.php rename to rest/taskrouter/twiml/example2/example/example.8.x.php diff --git a/rest/taskrouter/twiml/example3/example/example.7.x.php b/rest/taskrouter/twiml/example3/example/example.8.x.php similarity index 100% rename from rest/taskrouter/twiml/example3/example/example.7.x.php rename to rest/taskrouter/twiml/example3/example/example.8.x.php diff --git a/rest/taskrouter/twiml/example4/example/example.7.x.php b/rest/taskrouter/twiml/example4/example/example.8.x.php similarity index 100% rename from rest/taskrouter/twiml/example4/example/example.7.x.php rename to rest/taskrouter/twiml/example4/example/example.8.x.php diff --git a/rest/taskrouter/worker-reservations/accept/example-1.7.x.php b/rest/taskrouter/worker-reservations/accept/example-1.8.x.php similarity index 100% rename from rest/taskrouter/worker-reservations/accept/example-1.7.x.php rename to rest/taskrouter/worker-reservations/accept/example-1.8.x.php diff --git a/rest/taskrouter/worker-reservations/call/example-1.7.x.php b/rest/taskrouter/worker-reservations/call/example-1.8.x.php similarity index 100% rename from rest/taskrouter/worker-reservations/call/example-1.7.x.php rename to rest/taskrouter/worker-reservations/call/example-1.8.x.php diff --git a/rest/taskrouter/worker-reservations/dequeue/example-1.7.x.php b/rest/taskrouter/worker-reservations/dequeue/example-1.8.x.php similarity index 100% rename from rest/taskrouter/worker-reservations/dequeue/example-1.7.x.php rename to rest/taskrouter/worker-reservations/dequeue/example-1.8.x.php diff --git a/rest/taskrouter/worker-reservations/instance-get-example1/example-1.7.x.php b/rest/taskrouter/worker-reservations/instance-get-example1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/worker-reservations/instance-get-example1/example-1.7.x.php rename to rest/taskrouter/worker-reservations/instance-get-example1/example-1.8.x.php diff --git a/rest/taskrouter/worker-reservations/list-get-example1/example-1.7.x.php b/rest/taskrouter/worker-reservations/list-get-example1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/worker-reservations/list-get-example1/example-1.7.x.php rename to rest/taskrouter/worker-reservations/list-get-example1/example-1.8.x.php diff --git a/rest/taskrouter/worker-reservations/reject/example-1.7.x.php b/rest/taskrouter/worker-reservations/reject/example-1.8.x.php similarity index 100% rename from rest/taskrouter/worker-reservations/reject/example-1.7.x.php rename to rest/taskrouter/worker-reservations/reject/example-1.8.x.php diff --git a/rest/taskrouter/workers/instance/delete/example-1/example-1.7.x.php b/rest/taskrouter/workers/instance/delete/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workers/instance/delete/example-1/example-1.7.x.php rename to rest/taskrouter/workers/instance/delete/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workers/instance/get/example-1/example-1.7.x.php b/rest/taskrouter/workers/instance/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workers/instance/get/example-1/example-1.7.x.php rename to rest/taskrouter/workers/instance/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workers/instance/post/example-1/example-1.7.x.php b/rest/taskrouter/workers/instance/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workers/instance/post/example-1/example-1.7.x.php rename to rest/taskrouter/workers/instance/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workers/list/get/example-1/example-1.7.x.php b/rest/taskrouter/workers/list/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workers/list/get/example-1/example-1.7.x.php rename to rest/taskrouter/workers/list/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workers/list/get/example-2/example-2.7.x.php b/rest/taskrouter/workers/list/get/example-2/example-2.8.x.php similarity index 100% rename from rest/taskrouter/workers/list/get/example-2/example-2.7.x.php rename to rest/taskrouter/workers/list/get/example-2/example-2.8.x.php diff --git a/rest/taskrouter/workers/list/post/example-1/example-1.7.x.php b/rest/taskrouter/workers/list/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workers/list/post/example-1/example-1.7.x.php rename to rest/taskrouter/workers/list/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workflows/instance/delete/example-1/example-1.7.x.php b/rest/taskrouter/workflows/instance/delete/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workflows/instance/delete/example-1/example-1.7.x.php rename to rest/taskrouter/workflows/instance/delete/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workflows/instance/get/example-1/example-1.7.x.php b/rest/taskrouter/workflows/instance/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workflows/instance/get/example-1/example-1.7.x.php rename to rest/taskrouter/workflows/instance/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workflows/instance/post/example-1/example-1.7.x.php b/rest/taskrouter/workflows/instance/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workflows/instance/post/example-1/example-1.7.x.php rename to rest/taskrouter/workflows/instance/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workflows/list/get/example-1/example-1.7.x.php b/rest/taskrouter/workflows/list/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workflows/list/get/example-1/example-1.7.x.php rename to rest/taskrouter/workflows/list/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workflows/list/post/example-1/example-1.7.x.php b/rest/taskrouter/workflows/list/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workflows/list/post/example-1/example-1.7.x.php rename to rest/taskrouter/workflows/list/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workspaces/instance/delete/example-1/example-1.7.x.php b/rest/taskrouter/workspaces/instance/delete/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workspaces/instance/delete/example-1/example-1.7.x.php rename to rest/taskrouter/workspaces/instance/delete/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workspaces/instance/get/example-1/example-1.7.x.php b/rest/taskrouter/workspaces/instance/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workspaces/instance/get/example-1/example-1.7.x.php rename to rest/taskrouter/workspaces/instance/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workspaces/instance/post/example-1/example-1.7.x.php b/rest/taskrouter/workspaces/instance/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workspaces/instance/post/example-1/example-1.7.x.php rename to rest/taskrouter/workspaces/instance/post/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workspaces/list/get/example-1/example-1.7.x.php b/rest/taskrouter/workspaces/list/get/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workspaces/list/get/example-1/example-1.7.x.php rename to rest/taskrouter/workspaces/list/get/example-1/example-1.8.x.php diff --git a/rest/taskrouter/workspaces/list/post/example-1/example-1.7.x.php b/rest/taskrouter/workspaces/list/post/example-1/example-1.8.x.php similarity index 100% rename from rest/taskrouter/workspaces/list/post/example-1/example-1.7.x.php rename to rest/taskrouter/workspaces/list/post/example-1/example-1.8.x.php diff --git a/rest/test-credentials/test-calls-example-1/test-calls-example-1.7.x.php b/rest/test-credentials/test-calls-example-1/test-calls-example-1.8.x.php similarity index 100% rename from rest/test-credentials/test-calls-example-1/test-calls-example-1.7.x.php rename to rest/test-credentials/test-calls-example-1/test-calls-example-1.8.x.php diff --git a/rest/test-credentials/test-calls-example-2/test-calls-example-2.7.x.php b/rest/test-credentials/test-calls-example-2/test-calls-example-2.8.x.php similarity index 100% rename from rest/test-credentials/test-calls-example-2/test-calls-example-2.7.x.php rename to rest/test-credentials/test-calls-example-2/test-calls-example-2.8.x.php diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.7.x.php b/rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.8.x.php similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.7.x.php rename to rest/test-credentials/test-incoming-phone-numbers-example-1/test-incoming-phone-numbers-example-1.8.x.php diff --git a/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.7.x.php b/rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.8.x.php similarity index 100% rename from rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.7.x.php rename to rest/test-credentials/test-incoming-phone-numbers-example-2/test-incoming-phone-numbers-example-2.8.x.php diff --git a/rest/test-credentials/test-post-example-3/test-post-example-3.7.x.php b/rest/test-credentials/test-post-example-3/test-post-example-3.8.x.php similarity index 100% rename from rest/test-credentials/test-post-example-3/test-post-example-3.7.x.php rename to rest/test-credentials/test-post-example-3/test-post-example-3.8.x.php diff --git a/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.7.x.php b/rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.8.x.php similarity index 100% rename from rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.7.x.php rename to rest/test-credentials/test-sms-messages-example-1/test-sms-messages-example-1.8.x.php diff --git a/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.7.x.php b/rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.8.x.php similarity index 100% rename from rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.7.x.php rename to rest/test-credentials/test-sms-messages-example-2/test-sms-messages-example-2.8.x.php diff --git a/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.7.x.php b/rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.8.x.php similarity index 100% rename from rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.7.x.php rename to rest/test-credentials/test-sms-messages-example-3/test-sms-messages-example-3.8.x.php diff --git a/rest/token/list-post-1-hour-example/list-post-1-hour-example.7.x.php b/rest/token/list-post-1-hour-example/list-post-1-hour-example.8.x.php similarity index 100% rename from rest/token/list-post-1-hour-example/list-post-1-hour-example.7.x.php rename to rest/token/list-post-1-hour-example/list-post-1-hour-example.8.x.php diff --git a/rest/token/list-post-example/list-post-example.7.x.php b/rest/token/list-post-example/list-post-example.8.x.php similarity index 100% rename from rest/token/list-post-example/list-post-example.7.x.php rename to rest/token/list-post-example/list-post-example.8.x.php diff --git a/rest/transcription/instance-delete-examples/instance-delete-examples.7.x.php b/rest/transcription/instance-delete-examples/instance-delete-examples.8.x.php similarity index 100% rename from rest/transcription/instance-delete-examples/instance-delete-examples.7.x.php rename to rest/transcription/instance-delete-examples/instance-delete-examples.8.x.php diff --git a/rest/transcription/instance-get-example-1/instance-get-example-1.7.x.php b/rest/transcription/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/transcription/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/transcription/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/transcription/list-get-example-1/list-get-example-1.7.x.php b/rest/transcription/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/transcription/list-get-example-1/list-get-example-1.7.x.php rename to rest/transcription/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/usage-records/list-get-example-1/list-get-example-1.7.x.php b/rest/usage-records/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/usage-records/list-get-example-1/list-get-example-1.7.x.php rename to rest/usage-records/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/usage-records/list-get-example-2/list-get-example-2.7.x.php b/rest/usage-records/list-get-example-2/list-get-example-2.8.x.php similarity index 100% rename from rest/usage-records/list-get-example-2/list-get-example-2.7.x.php rename to rest/usage-records/list-get-example-2/list-get-example-2.8.x.php diff --git a/rest/usage-records/list-get-example-3/list-get-example-3.7.x.php b/rest/usage-records/list-get-example-3/list-get-example-3.8.x.php similarity index 100% rename from rest/usage-records/list-get-example-3/list-get-example-3.7.x.php rename to rest/usage-records/list-get-example-3/list-get-example-3.8.x.php diff --git a/rest/usage-records/list-get-example-4/list-get-example-4.7.x.php b/rest/usage-records/list-get-example-4/list-get-example-4.8.x.php similarity index 100% rename from rest/usage-records/list-get-example-4/list-get-example-4.7.x.php rename to rest/usage-records/list-get-example-4/list-get-example-4.8.x.php diff --git a/rest/usage-records/list-get-example-5/list-get-example-5.7.x.php b/rest/usage-records/list-get-example-5/list-get-example-5.8.x.php similarity index 100% rename from rest/usage-records/list-get-example-5/list-get-example-5.7.x.php rename to rest/usage-records/list-get-example-5/list-get-example-5.8.x.php diff --git a/rest/usage-triggers/instance-get-example-1/instance-get-example-1.7.x.php b/rest/usage-triggers/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from rest/usage-triggers/instance-get-example-1/instance-get-example-1.7.x.php rename to rest/usage-triggers/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/rest/usage-triggers/instance-post-example-1/instance-post-example-1.7.x.php b/rest/usage-triggers/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from rest/usage-triggers/instance-post-example-1/instance-post-example-1.7.x.php rename to rest/usage-triggers/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/rest/usage-triggers/list-get-example-1/list-get-example-1.7.x.php b/rest/usage-triggers/list-get-example-1/list-get-example-1.8.x.php similarity index 100% rename from rest/usage-triggers/list-get-example-1/list-get-example-1.7.x.php rename to rest/usage-triggers/list-get-example-1/list-get-example-1.8.x.php diff --git a/rest/usage-triggers/list-post-example-1/list-post-example-1.7.x.php b/rest/usage-triggers/list-post-example-1/list-post-example-1.8.x.php similarity index 100% rename from rest/usage-triggers/list-post-example-1/list-post-example-1.7.x.php rename to rest/usage-triggers/list-post-example-1/list-post-example-1.8.x.php diff --git a/rest/voice/outbound-calls/example-1/example-1.7.x.php b/rest/voice/outbound-calls/example-1/example-1.8.x.php similarity index 100% rename from rest/voice/outbound-calls/example-1/example-1.7.x.php rename to rest/voice/outbound-calls/example-1/example-1.8.x.php diff --git a/rest/voice/outbound-calls/example-2/example-2.7.x.php b/rest/voice/outbound-calls/example-2/example-2.8.x.php similarity index 100% rename from rest/voice/outbound-calls/example-2/example-2.7.x.php rename to rest/voice/outbound-calls/example-2/example-2.8.x.php diff --git a/rest/voice/outbound-calls/example-3/example-3.7.x.php b/rest/voice/outbound-calls/example-3/example-3.8.x.php similarity index 100% rename from rest/voice/outbound-calls/example-3/example-3.7.x.php rename to rest/voice/outbound-calls/example-3/example-3.8.x.php diff --git a/rest/voice/outbound-calls/example-4/example-4.7.x.php b/rest/voice/outbound-calls/example-4/example-4.8.x.php similarity index 100% rename from rest/voice/outbound-calls/example-4/example-4.7.x.php rename to rest/voice/outbound-calls/example-4/example-4.8.x.php diff --git a/security/environment_variables/environment-variables-1.7.x.php b/security/environment_variables/environment-variables-1.8.x.php similarity index 100% rename from security/environment_variables/environment-variables-1.7.x.php rename to security/environment_variables/environment-variables-1.8.x.php diff --git a/security/signature_validation/signature_validation.7.x.php b/security/signature_validation/signature_validation.8.x.php similarity index 100% rename from security/signature_validation/signature_validation.7.x.php rename to security/signature_validation/signature_validation.8.x.php diff --git a/security/signature_validation_tests/signature_validation_tests.7.x.php b/security/signature_validation_tests/signature_validation_tests.8.x.php similarity index 100% rename from security/signature_validation_tests/signature_validation_tests.7.x.php rename to security/signature_validation_tests/signature_validation_tests.8.x.php diff --git a/stun-turn/list-post-example/list-post-example.7.x.php b/stun-turn/list-post-example/list-post-example.8.x.php similarity index 100% rename from stun-turn/list-post-example/list-post-example.7.x.php rename to stun-turn/list-post-example/list-post-example.8.x.php diff --git a/super-sim/sims/update-account/update-account.7.x.php b/super-sim/sims/update-account/update-account.8.x.php similarity index 100% rename from super-sim/sims/update-account/update-account.7.x.php rename to super-sim/sims/update-account/update-account.8.x.php diff --git a/sync/rest/document-permissions/delete-permission/delete-permission.7.x.php b/sync/rest/document-permissions/delete-permission/delete-permission.8.x.php similarity index 100% rename from sync/rest/document-permissions/delete-permission/delete-permission.7.x.php rename to sync/rest/document-permissions/delete-permission/delete-permission.8.x.php diff --git a/sync/rest/document-permissions/list-permissions/list-permissions.7.x.php b/sync/rest/document-permissions/list-permissions/list-permissions.8.x.php similarity index 100% rename from sync/rest/document-permissions/list-permissions/list-permissions.7.x.php rename to sync/rest/document-permissions/list-permissions/list-permissions.8.x.php diff --git a/sync/rest/document-permissions/retrieve-permission/retrieve-permission.7.x.php b/sync/rest/document-permissions/retrieve-permission/retrieve-permission.8.x.php similarity index 100% rename from sync/rest/document-permissions/retrieve-permission/retrieve-permission.7.x.php rename to sync/rest/document-permissions/retrieve-permission/retrieve-permission.8.x.php diff --git a/sync/rest/document-permissions/update-permission/update-permission.7.x.php b/sync/rest/document-permissions/update-permission/update-permission.8.x.php similarity index 100% rename from sync/rest/document-permissions/update-permission/update-permission.7.x.php rename to sync/rest/document-permissions/update-permission/update-permission.8.x.php diff --git a/sync/rest/documents/create-document/create-document.7.x.php b/sync/rest/documents/create-document/create-document.8.x.php similarity index 100% rename from sync/rest/documents/create-document/create-document.7.x.php rename to sync/rest/documents/create-document/create-document.8.x.php diff --git a/sync/rest/documents/delete-document/delete-document.7.x.php b/sync/rest/documents/delete-document/delete-document.8.x.php similarity index 100% rename from sync/rest/documents/delete-document/delete-document.7.x.php rename to sync/rest/documents/delete-document/delete-document.8.x.php diff --git a/sync/rest/documents/list-documents/list-documents.7.x.php b/sync/rest/documents/list-documents/list-documents.8.x.php similarity index 100% rename from sync/rest/documents/list-documents/list-documents.7.x.php rename to sync/rest/documents/list-documents/list-documents.8.x.php diff --git a/sync/rest/documents/retrieve-document/retrieve-document.7.x.php b/sync/rest/documents/retrieve-document/retrieve-document.8.x.php similarity index 100% rename from sync/rest/documents/retrieve-document/retrieve-document.7.x.php rename to sync/rest/documents/retrieve-document/retrieve-document.8.x.php diff --git a/sync/rest/documents/update-document/update-document.7.x.php b/sync/rest/documents/update-document/update-document.8.x.php similarity index 100% rename from sync/rest/documents/update-document/update-document.7.x.php rename to sync/rest/documents/update-document/update-document.8.x.php diff --git a/sync/rest/list-permissions/delete-permission/delete-permission.7.x.php b/sync/rest/list-permissions/delete-permission/delete-permission.8.x.php similarity index 100% rename from sync/rest/list-permissions/delete-permission/delete-permission.7.x.php rename to sync/rest/list-permissions/delete-permission/delete-permission.8.x.php diff --git a/sync/rest/list-permissions/list-permissions/list-permissions.7.x.php b/sync/rest/list-permissions/list-permissions/list-permissions.8.x.php similarity index 100% rename from sync/rest/list-permissions/list-permissions/list-permissions.7.x.php rename to sync/rest/list-permissions/list-permissions/list-permissions.8.x.php diff --git a/sync/rest/list-permissions/retrieve-permission/retrieve-permission.7.x.php b/sync/rest/list-permissions/retrieve-permission/retrieve-permission.8.x.php similarity index 100% rename from sync/rest/list-permissions/retrieve-permission/retrieve-permission.7.x.php rename to sync/rest/list-permissions/retrieve-permission/retrieve-permission.8.x.php diff --git a/sync/rest/list-permissions/update-permission/update-permission.7.x.php b/sync/rest/list-permissions/update-permission/update-permission.8.x.php similarity index 100% rename from sync/rest/list-permissions/update-permission/update-permission.7.x.php rename to sync/rest/list-permissions/update-permission/update-permission.8.x.php diff --git a/sync/rest/lists/create-list-item/create-list-item.7.x.php b/sync/rest/lists/create-list-item/create-list-item.8.x.php similarity index 100% rename from sync/rest/lists/create-list-item/create-list-item.7.x.php rename to sync/rest/lists/create-list-item/create-list-item.8.x.php diff --git a/sync/rest/lists/create-list/create-list.7.x.php b/sync/rest/lists/create-list/create-list.8.x.php similarity index 100% rename from sync/rest/lists/create-list/create-list.7.x.php rename to sync/rest/lists/create-list/create-list.8.x.php diff --git a/sync/rest/lists/delete-list-item/delete-list-item.7.x.php b/sync/rest/lists/delete-list-item/delete-list-item.8.x.php similarity index 100% rename from sync/rest/lists/delete-list-item/delete-list-item.7.x.php rename to sync/rest/lists/delete-list-item/delete-list-item.8.x.php diff --git a/sync/rest/lists/delete-list/delete-list.7.x.php b/sync/rest/lists/delete-list/delete-list.8.x.php similarity index 100% rename from sync/rest/lists/delete-list/delete-list.7.x.php rename to sync/rest/lists/delete-list/delete-list.8.x.php diff --git a/sync/rest/lists/list-lists/list-lists.7.x.php b/sync/rest/lists/list-lists/list-lists.8.x.php similarity index 100% rename from sync/rest/lists/list-lists/list-lists.7.x.php rename to sync/rest/lists/list-lists/list-lists.8.x.php diff --git a/sync/rest/lists/query-list/query-list.7.x.php b/sync/rest/lists/query-list/query-list.8.x.php similarity index 100% rename from sync/rest/lists/query-list/query-list.7.x.php rename to sync/rest/lists/query-list/query-list.8.x.php diff --git a/sync/rest/lists/retrieve-list-item/retrieve-list-item.7.x.php b/sync/rest/lists/retrieve-list-item/retrieve-list-item.8.x.php similarity index 100% rename from sync/rest/lists/retrieve-list-item/retrieve-list-item.7.x.php rename to sync/rest/lists/retrieve-list-item/retrieve-list-item.8.x.php diff --git a/sync/rest/lists/retrieve-list/retrieve-list.7.x.php b/sync/rest/lists/retrieve-list/retrieve-list.8.x.php similarity index 100% rename from sync/rest/lists/retrieve-list/retrieve-list.7.x.php rename to sync/rest/lists/retrieve-list/retrieve-list.8.x.php diff --git a/sync/rest/lists/update-list-item/update-list-item.7.x.php b/sync/rest/lists/update-list-item/update-list-item.8.x.php similarity index 100% rename from sync/rest/lists/update-list-item/update-list-item.7.x.php rename to sync/rest/lists/update-list-item/update-list-item.8.x.php diff --git a/sync/rest/lists/update-list/update-list.7.x.php b/sync/rest/lists/update-list/update-list.8.x.php similarity index 100% rename from sync/rest/lists/update-list/update-list.7.x.php rename to sync/rest/lists/update-list/update-list.8.x.php diff --git a/sync/rest/map-permissions/delete-permission/delete-permission.7.x.php b/sync/rest/map-permissions/delete-permission/delete-permission.8.x.php similarity index 100% rename from sync/rest/map-permissions/delete-permission/delete-permission.7.x.php rename to sync/rest/map-permissions/delete-permission/delete-permission.8.x.php diff --git a/sync/rest/map-permissions/list-permissions/list-permissions.7.x.php b/sync/rest/map-permissions/list-permissions/list-permissions.8.x.php similarity index 100% rename from sync/rest/map-permissions/list-permissions/list-permissions.7.x.php rename to sync/rest/map-permissions/list-permissions/list-permissions.8.x.php diff --git a/sync/rest/map-permissions/retrieve-permission/retrieve-permission.7.x.php b/sync/rest/map-permissions/retrieve-permission/retrieve-permission.8.x.php similarity index 100% rename from sync/rest/map-permissions/retrieve-permission/retrieve-permission.7.x.php rename to sync/rest/map-permissions/retrieve-permission/retrieve-permission.8.x.php diff --git a/sync/rest/map-permissions/update-permission/update-permission.7.x.php b/sync/rest/map-permissions/update-permission/update-permission.8.x.php similarity index 100% rename from sync/rest/map-permissions/update-permission/update-permission.7.x.php rename to sync/rest/map-permissions/update-permission/update-permission.8.x.php diff --git a/sync/rest/maps/create-map-item/create-map-item.7.x.php b/sync/rest/maps/create-map-item/create-map-item.8.x.php similarity index 100% rename from sync/rest/maps/create-map-item/create-map-item.7.x.php rename to sync/rest/maps/create-map-item/create-map-item.8.x.php diff --git a/sync/rest/maps/create-map/create-map.7.x.php b/sync/rest/maps/create-map/create-map.8.x.php similarity index 100% rename from sync/rest/maps/create-map/create-map.7.x.php rename to sync/rest/maps/create-map/create-map.8.x.php diff --git a/sync/rest/maps/delete-map-item/delete-map-item.7.x.php b/sync/rest/maps/delete-map-item/delete-map-item.8.x.php similarity index 100% rename from sync/rest/maps/delete-map-item/delete-map-item.7.x.php rename to sync/rest/maps/delete-map-item/delete-map-item.8.x.php diff --git a/sync/rest/maps/delete-map/delete-map.7.x.php b/sync/rest/maps/delete-map/delete-map.8.x.php similarity index 100% rename from sync/rest/maps/delete-map/delete-map.7.x.php rename to sync/rest/maps/delete-map/delete-map.8.x.php diff --git a/sync/rest/maps/list-maps/list-maps.7.x.php b/sync/rest/maps/list-maps/list-maps.8.x.php similarity index 100% rename from sync/rest/maps/list-maps/list-maps.7.x.php rename to sync/rest/maps/list-maps/list-maps.8.x.php diff --git a/sync/rest/maps/query-map/query-map.7.x.php b/sync/rest/maps/query-map/query-map.8.x.php similarity index 100% rename from sync/rest/maps/query-map/query-map.7.x.php rename to sync/rest/maps/query-map/query-map.8.x.php diff --git a/sync/rest/maps/retrieve-map-item/retrieve-map-item.7.x.php b/sync/rest/maps/retrieve-map-item/retrieve-map-item.8.x.php similarity index 100% rename from sync/rest/maps/retrieve-map-item/retrieve-map-item.7.x.php rename to sync/rest/maps/retrieve-map-item/retrieve-map-item.8.x.php diff --git a/sync/rest/maps/retrieve-map/retrieve-map.7.x.php b/sync/rest/maps/retrieve-map/retrieve-map.8.x.php similarity index 100% rename from sync/rest/maps/retrieve-map/retrieve-map.7.x.php rename to sync/rest/maps/retrieve-map/retrieve-map.8.x.php diff --git a/sync/rest/maps/update-map-item/update-map-item.7.x.php b/sync/rest/maps/update-map-item/update-map-item.8.x.php similarity index 100% rename from sync/rest/maps/update-map-item/update-map-item.7.x.php rename to sync/rest/maps/update-map-item/update-map-item.8.x.php diff --git a/sync/rest/maps/update-map/update-map.7.x.php b/sync/rest/maps/update-map/update-map.8.x.php similarity index 100% rename from sync/rest/maps/update-map/update-map.7.x.php rename to sync/rest/maps/update-map/update-map.8.x.php diff --git a/sync/rest/services/create-service-webhook/create-service-webhook.7.x.php b/sync/rest/services/create-service-webhook/create-service-webhook.8.x.php similarity index 100% rename from sync/rest/services/create-service-webhook/create-service-webhook.7.x.php rename to sync/rest/services/create-service-webhook/create-service-webhook.8.x.php diff --git a/sync/rest/services/create-service/create-service.7.x.php b/sync/rest/services/create-service/create-service.8.x.php similarity index 100% rename from sync/rest/services/create-service/create-service.7.x.php rename to sync/rest/services/create-service/create-service.8.x.php diff --git a/sync/rest/services/delete-service/delete-service.7.x.php b/sync/rest/services/delete-service/delete-service.8.x.php similarity index 100% rename from sync/rest/services/delete-service/delete-service.7.x.php rename to sync/rest/services/delete-service/delete-service.8.x.php diff --git a/sync/rest/services/list-services/list-services.7.x.php b/sync/rest/services/list-services/list-services.8.x.php similarity index 100% rename from sync/rest/services/list-services/list-services.7.x.php rename to sync/rest/services/list-services/list-services.8.x.php diff --git a/sync/rest/services/retrieve-service/retrieve-service.7.x.php b/sync/rest/services/retrieve-service/retrieve-service.8.x.php similarity index 100% rename from sync/rest/services/retrieve-service/retrieve-service.7.x.php rename to sync/rest/services/retrieve-service/retrieve-service.8.x.php diff --git a/sync/rest/services/update-service/update-service.7.x.php b/sync/rest/services/update-service/update-service.8.x.php similarity index 100% rename from sync/rest/services/update-service/update-service.7.x.php rename to sync/rest/services/update-service/update-service.8.x.php diff --git a/sync/rest/streams/create-stream/create-stream.7.x.php b/sync/rest/streams/create-stream/create-stream.8.x.php similarity index 100% rename from sync/rest/streams/create-stream/create-stream.7.x.php rename to sync/rest/streams/create-stream/create-stream.8.x.php diff --git a/sync/rest/streams/delete-stream/delete-stream.7.x.php b/sync/rest/streams/delete-stream/delete-stream.8.x.php similarity index 100% rename from sync/rest/streams/delete-stream/delete-stream.7.x.php rename to sync/rest/streams/delete-stream/delete-stream.8.x.php diff --git a/sync/rest/streams/list-streams/list-streams.7.x.php b/sync/rest/streams/list-streams/list-streams.8.x.php similarity index 100% rename from sync/rest/streams/list-streams/list-streams.7.x.php rename to sync/rest/streams/list-streams/list-streams.8.x.php diff --git a/sync/rest/streams/publish-stream-message/publish-stream-message.7.x.php b/sync/rest/streams/publish-stream-message/publish-stream-message.8.x.php similarity index 100% rename from sync/rest/streams/publish-stream-message/publish-stream-message.7.x.php rename to sync/rest/streams/publish-stream-message/publish-stream-message.8.x.php diff --git a/sync/rest/streams/retrieve-stream/retrieve-stream.7.x.php b/sync/rest/streams/retrieve-stream/retrieve-stream.8.x.php similarity index 100% rename from sync/rest/streams/retrieve-stream/retrieve-stream.7.x.php rename to sync/rest/streams/retrieve-stream/retrieve-stream.8.x.php diff --git a/sync/rest/streams/update-stream/update-stream.7.x.php b/sync/rest/streams/update-stream/update-stream.8.x.php similarity index 100% rename from sync/rest/streams/update-stream/update-stream.7.x.php rename to sync/rest/streams/update-stream/update-stream.8.x.php diff --git a/twiml/README.md b/twiml/README.md index e73cc4d58b..5ad850600c 100644 --- a/twiml/README.md +++ b/twiml/README.md @@ -14,7 +14,7 @@ twiml/ <-- The TwiML snippet directory │ │ │ ├─ say-language-voice.5.x.js │ │ │ ├─ say-language-voice.5.x.rb │ │ │ ├─ say-language-voice.6.x.cs -│ │ │ ├─ say-language-voice.6.x.php +│ │ │ ├─ say-language-voice.8.x.php │ │ │ ├─ say-language-voice.9.x.py │ │ │ ├─ say-language-voice.10.x.java │ │ │ ├─ say-language-voice..x. diff --git a/twiml/message/message/message-1/message-1.7.x.php b/twiml/message/message/message-1/message-1.8.x.php similarity index 100% rename from twiml/message/message/message-1/message-1.7.x.php rename to twiml/message/message/message-1/message-1.8.x.php diff --git a/twiml/message/message/message-2/message-2.7.x.php b/twiml/message/message/message-2/message-2.8.x.php similarity index 100% rename from twiml/message/message/message-2/message-2.7.x.php rename to twiml/message/message/message-2/message-2.8.x.php diff --git a/twiml/message/message/message-3/message-3.7.x.php b/twiml/message/message/message-3/message-3.8.x.php similarity index 100% rename from twiml/message/message/message-3/message-3.7.x.php rename to twiml/message/message/message-3/message-3.8.x.php diff --git a/twiml/message/message/message-4/message-4.7.x.php b/twiml/message/message/message-4/message-4.8.x.php similarity index 100% rename from twiml/message/message/message-4/message-4.7.x.php rename to twiml/message/message/message-4/message-4.8.x.php diff --git a/twiml/message/redirect/redirect-1/redirect-1.7.x.php b/twiml/message/redirect/redirect-1/redirect-1.8.x.php similarity index 100% rename from twiml/message/redirect/redirect-1/redirect-1.7.x.php rename to twiml/message/redirect/redirect-1/redirect-1.8.x.php diff --git a/twiml/message/redirect/redirect-2/redirect-2.7.x.php b/twiml/message/redirect/redirect-2/redirect-2.8.x.php similarity index 100% rename from twiml/message/redirect/redirect-2/redirect-2.7.x.php rename to twiml/message/redirect/redirect-2/redirect-2.8.x.php diff --git a/twiml/message/your-response/your-response-1/your-response-1.7.x.php b/twiml/message/your-response/your-response-1/your-response-1.8.x.php similarity index 100% rename from twiml/message/your-response/your-response-1/your-response-1.7.x.php rename to twiml/message/your-response/your-response-1/your-response-1.8.x.php diff --git a/twiml/message/your-response/your-response-2/your-response-2.7.x.php b/twiml/message/your-response/your-response-2/your-response-2.8.x.php similarity index 100% rename from twiml/message/your-response/your-response-2/your-response-2.7.x.php rename to twiml/message/your-response/your-response-2/your-response-2.8.x.php diff --git a/twiml/message/your-response/your-response-3/your-response-3.7.x.php b/twiml/message/your-response/your-response-3/your-response-3.8.x.php similarity index 100% rename from twiml/message/your-response/your-response-3/your-response-3.7.x.php rename to twiml/message/your-response/your-response-3/your-response-3.8.x.php diff --git a/twiml/voice/client/client-1/client-1.7.x.php b/twiml/voice/client/client-1/client-1.8.x.php similarity index 100% rename from twiml/voice/client/client-1/client-1.7.x.php rename to twiml/voice/client/client-1/client-1.8.x.php diff --git a/twiml/voice/client/client-2/client-2.7.x.php b/twiml/voice/client/client-2/client-2.8.x.php similarity index 100% rename from twiml/voice/client/client-2/client-2.7.x.php rename to twiml/voice/client/client-2/client-2.8.x.php diff --git a/twiml/voice/client/client-3/client-3.7.x.php b/twiml/voice/client/client-3/client-3.8.x.php similarity index 100% rename from twiml/voice/client/client-3/client-3.7.x.php rename to twiml/voice/client/client-3/client-3.8.x.php diff --git a/twiml/voice/conference/conference-1/conference-1.7.x.php b/twiml/voice/conference/conference-1/conference-1.8.x.php similarity index 100% rename from twiml/voice/conference/conference-1/conference-1.7.x.php rename to twiml/voice/conference/conference-1/conference-1.8.x.php diff --git a/twiml/voice/conference/conference-10/conference-10.7.x.php b/twiml/voice/conference/conference-10/conference-10.8.x.php similarity index 100% rename from twiml/voice/conference/conference-10/conference-10.7.x.php rename to twiml/voice/conference/conference-10/conference-10.8.x.php diff --git a/twiml/voice/conference/conference-2/conference-2.7.x.php b/twiml/voice/conference/conference-2/conference-2.8.x.php similarity index 100% rename from twiml/voice/conference/conference-2/conference-2.7.x.php rename to twiml/voice/conference/conference-2/conference-2.8.x.php diff --git a/twiml/voice/conference/conference-3/conference-3.7.x.php b/twiml/voice/conference/conference-3/conference-3.8.x.php similarity index 100% rename from twiml/voice/conference/conference-3/conference-3.7.x.php rename to twiml/voice/conference/conference-3/conference-3.8.x.php diff --git a/twiml/voice/conference/conference-4/conference-4.7.x.php b/twiml/voice/conference/conference-4/conference-4.8.x.php similarity index 100% rename from twiml/voice/conference/conference-4/conference-4.7.x.php rename to twiml/voice/conference/conference-4/conference-4.8.x.php diff --git a/twiml/voice/conference/conference-5/conference-5.7.x.php b/twiml/voice/conference/conference-5/conference-5.8.x.php similarity index 100% rename from twiml/voice/conference/conference-5/conference-5.7.x.php rename to twiml/voice/conference/conference-5/conference-5.8.x.php diff --git a/twiml/voice/conference/conference-6/conference-6.7.x.php b/twiml/voice/conference/conference-6/conference-6.8.x.php similarity index 100% rename from twiml/voice/conference/conference-6/conference-6.7.x.php rename to twiml/voice/conference/conference-6/conference-6.8.x.php diff --git a/twiml/voice/conference/conference-7/conference-7.7.x.php b/twiml/voice/conference/conference-7/conference-7.8.x.php similarity index 100% rename from twiml/voice/conference/conference-7/conference-7.7.x.php rename to twiml/voice/conference/conference-7/conference-7.8.x.php diff --git a/twiml/voice/conference/conference-8/conference-8.7.x.php b/twiml/voice/conference/conference-8/conference-8.8.x.php similarity index 100% rename from twiml/voice/conference/conference-8/conference-8.7.x.php rename to twiml/voice/conference/conference-8/conference-8.8.x.php diff --git a/twiml/voice/conference/conference-9/conference-9.7.x.php b/twiml/voice/conference/conference-9/conference-9.8.x.php similarity index 100% rename from twiml/voice/conference/conference-9/conference-9.7.x.php rename to twiml/voice/conference/conference-9/conference-9.8.x.php diff --git a/twiml/voice/connect/autopilot/connect-1.7.x.php b/twiml/voice/connect/autopilot/connect-1.8.x.php similarity index 100% rename from twiml/voice/connect/autopilot/connect-1.7.x.php rename to twiml/voice/connect/autopilot/connect-1.8.x.php diff --git a/twiml/voice/connect/connect-1/connect-1.7.x.php b/twiml/voice/connect/connect-1/connect-1.8.x.php similarity index 100% rename from twiml/voice/connect/connect-1/connect-1.7.x.php rename to twiml/voice/connect/connect-1/connect-1.8.x.php diff --git a/twiml/voice/connect/connect-2/connect-2.7.x.php b/twiml/voice/connect/connect-2/connect-2.8.x.php similarity index 100% rename from twiml/voice/connect/connect-2/connect-2.7.x.php rename to twiml/voice/connect/connect-2/connect-2.8.x.php diff --git a/twiml/voice/connect/stream/connect_stream.7.x.php b/twiml/voice/connect/stream/connect_stream.8.x.php similarity index 100% rename from twiml/voice/connect/stream/connect_stream.7.x.php rename to twiml/voice/connect/stream/connect_stream.8.x.php diff --git a/twiml/voice/connect/virtualagent-1/virtualagent-1.7.x.php b/twiml/voice/connect/virtualagent-1/virtualagent-1.8.x.php similarity index 100% rename from twiml/voice/connect/virtualagent-1/virtualagent-1.7.x.php rename to twiml/voice/connect/virtualagent-1/virtualagent-1.8.x.php diff --git a/twiml/voice/connect/virtualagent-2/virtualagent-2.7.x.php b/twiml/voice/connect/virtualagent-2/virtualagent-2.8.x.php similarity index 100% rename from twiml/voice/connect/virtualagent-2/virtualagent-2.7.x.php rename to twiml/voice/connect/virtualagent-2/virtualagent-2.8.x.php diff --git a/twiml/voice/connect/virtualagent-3/virtualagent-3.7.x.php b/twiml/voice/connect/virtualagent-3/virtualagent-3.8.x.php similarity index 100% rename from twiml/voice/connect/virtualagent-3/virtualagent-3.7.x.php rename to twiml/voice/connect/virtualagent-3/virtualagent-3.8.x.php diff --git a/twiml/voice/connect/virtualagent-4/virtualagent-4.7.x.php b/twiml/voice/connect/virtualagent-4/virtualagent-4.8.x.php similarity index 100% rename from twiml/voice/connect/virtualagent-4/virtualagent-4.7.x.php rename to twiml/voice/connect/virtualagent-4/virtualagent-4.8.x.php diff --git a/twiml/voice/dial/dial-1/dial-1.7.x.php b/twiml/voice/dial/dial-1/dial-1.8.x.php similarity index 100% rename from twiml/voice/dial/dial-1/dial-1.7.x.php rename to twiml/voice/dial/dial-1/dial-1.8.x.php diff --git a/twiml/voice/dial/dial-2/dial-2.7.x.php b/twiml/voice/dial/dial-2/dial-2.8.x.php similarity index 100% rename from twiml/voice/dial/dial-2/dial-2.7.x.php rename to twiml/voice/dial/dial-2/dial-2.8.x.php diff --git a/twiml/voice/dial/dial-3/dial-3.7.x.php b/twiml/voice/dial/dial-3/dial-3.8.x.php similarity index 100% rename from twiml/voice/dial/dial-3/dial-3.7.x.php rename to twiml/voice/dial/dial-3/dial-3.8.x.php diff --git a/twiml/voice/dial/dial-4/dial-4.7.x.php b/twiml/voice/dial/dial-4/dial-4.8.x.php similarity index 100% rename from twiml/voice/dial/dial-4/dial-4.7.x.php rename to twiml/voice/dial/dial-4/dial-4.8.x.php diff --git a/twiml/voice/dial/dial-5/dial-5.7.x.php b/twiml/voice/dial/dial-5/dial-5.8.x.php similarity index 100% rename from twiml/voice/dial/dial-5/dial-5.7.x.php rename to twiml/voice/dial/dial-5/dial-5.8.x.php diff --git a/twiml/voice/dial/dial-6/dial-6.7.x.php b/twiml/voice/dial/dial-6/dial-6.8.x.php similarity index 100% rename from twiml/voice/dial/dial-6/dial-6.7.x.php rename to twiml/voice/dial/dial-6/dial-6.8.x.php diff --git a/twiml/voice/dial/dial-7/dial-7.7.x.php b/twiml/voice/dial/dial-7/dial-7.8.x.php similarity index 100% rename from twiml/voice/dial/dial-7/dial-7.7.x.php rename to twiml/voice/dial/dial-7/dial-7.8.x.php diff --git a/twiml/voice/enqueue/enqueue-1/enqueue-1.7.x.php b/twiml/voice/enqueue/enqueue-1/enqueue-1.8.x.php similarity index 100% rename from twiml/voice/enqueue/enqueue-1/enqueue-1.7.x.php rename to twiml/voice/enqueue/enqueue-1/enqueue-1.8.x.php diff --git a/twiml/voice/enqueue/enqueue-2/enqueue-2.7.x.php b/twiml/voice/enqueue/enqueue-2/enqueue-2.8.x.php similarity index 100% rename from twiml/voice/enqueue/enqueue-2/enqueue-2.7.x.php rename to twiml/voice/enqueue/enqueue-2/enqueue-2.8.x.php diff --git a/twiml/voice/gather/gather-1/gather-1.7.x.php b/twiml/voice/gather/gather-1/gather-1.8.x.php similarity index 100% rename from twiml/voice/gather/gather-1/gather-1.7.x.php rename to twiml/voice/gather/gather-1/gather-1.8.x.php diff --git a/twiml/voice/gather/gather-2/gather-2.7.x.php b/twiml/voice/gather/gather-2/gather-2.8.x.php similarity index 100% rename from twiml/voice/gather/gather-2/gather-2.7.x.php rename to twiml/voice/gather/gather-2/gather-2.8.x.php diff --git a/twiml/voice/gather/gather-3/gather-3.7.x.php b/twiml/voice/gather/gather-3/gather-3.8.x.php similarity index 100% rename from twiml/voice/gather/gather-3/gather-3.7.x.php rename to twiml/voice/gather/gather-3/gather-3.8.x.php diff --git a/twiml/voice/gather/gather-4/gather-4.7.x.php b/twiml/voice/gather/gather-4/gather-4.8.x.php similarity index 100% rename from twiml/voice/gather/gather-4/gather-4.7.x.php rename to twiml/voice/gather/gather-4/gather-4.8.x.php diff --git a/twiml/voice/gather/gather-5/gather-5.7.x.php b/twiml/voice/gather/gather-5/gather-5.8.x.php similarity index 100% rename from twiml/voice/gather/gather-5/gather-5.7.x.php rename to twiml/voice/gather/gather-5/gather-5.8.x.php diff --git a/twiml/voice/hangup/hangup-1/hangup-1.7.x.php b/twiml/voice/hangup/hangup-1/hangup-1.8.x.php similarity index 100% rename from twiml/voice/hangup/hangup-1/hangup-1.7.x.php rename to twiml/voice/hangup/hangup-1/hangup-1.8.x.php diff --git a/twiml/voice/leave/leave-1/leave-1.7.x.php b/twiml/voice/leave/leave-1/leave-1.8.x.php similarity index 100% rename from twiml/voice/leave/leave-1/leave-1.7.x.php rename to twiml/voice/leave/leave-1/leave-1.8.x.php diff --git a/twiml/voice/leave/leave-2/leave-2.7.x.php b/twiml/voice/leave/leave-2/leave-2.8.x.php similarity index 100% rename from twiml/voice/leave/leave-2/leave-2.7.x.php rename to twiml/voice/leave/leave-2/leave-2.8.x.php diff --git a/twiml/voice/leave/leave-3/leave-3.7.x.php b/twiml/voice/leave/leave-3/leave-3.8.x.php similarity index 100% rename from twiml/voice/leave/leave-3/leave-3.7.x.php rename to twiml/voice/leave/leave-3/leave-3.8.x.php diff --git a/twiml/voice/number/number-1/number-1.7.x.php b/twiml/voice/number/number-1/number-1.8.x.php similarity index 100% rename from twiml/voice/number/number-1/number-1.7.x.php rename to twiml/voice/number/number-1/number-1.8.x.php diff --git a/twiml/voice/number/number-2/number-2.7.x.php b/twiml/voice/number/number-2/number-2.8.x.php similarity index 100% rename from twiml/voice/number/number-2/number-2.7.x.php rename to twiml/voice/number/number-2/number-2.8.x.php diff --git a/twiml/voice/number/number-3/number-3.7.x.php b/twiml/voice/number/number-3/number-3.8.x.php similarity index 100% rename from twiml/voice/number/number-3/number-3.7.x.php rename to twiml/voice/number/number-3/number-3.8.x.php diff --git a/twiml/voice/number/number-4/number-4.7.x.php b/twiml/voice/number/number-4/number-4.8.x.php similarity index 100% rename from twiml/voice/number/number-4/number-4.7.x.php rename to twiml/voice/number/number-4/number-4.8.x.php diff --git a/twiml/voice/number/number-5/number-5.7.x.php b/twiml/voice/number/number-5/number-5.8.x.php similarity index 100% rename from twiml/voice/number/number-5/number-5.7.x.php rename to twiml/voice/number/number-5/number-5.8.x.php diff --git a/twiml/voice/parameter/parameter-1/parameter-1.7.x.php b/twiml/voice/parameter/parameter-1/parameter-1.8.x.php similarity index 100% rename from twiml/voice/parameter/parameter-1/parameter-1.7.x.php rename to twiml/voice/parameter/parameter-1/parameter-1.8.x.php diff --git a/twiml/voice/pause/pause-1/pause-1.7.x.php b/twiml/voice/pause/pause-1/pause-1.8.x.php similarity index 100% rename from twiml/voice/pause/pause-1/pause-1.7.x.php rename to twiml/voice/pause/pause-1/pause-1.8.x.php diff --git a/twiml/voice/pause/pause-2/pause-2.7.x.php b/twiml/voice/pause/pause-2/pause-2.8.x.php similarity index 100% rename from twiml/voice/pause/pause-2/pause-2.7.x.php rename to twiml/voice/pause/pause-2/pause-2.8.x.php diff --git a/twiml/voice/pay/pay-1/pay-1.7.x.php b/twiml/voice/pay/pay-1/pay-1.8.x.php similarity index 100% rename from twiml/voice/pay/pay-1/pay-1.7.x.php rename to twiml/voice/pay/pay-1/pay-1.8.x.php diff --git a/twiml/voice/pay/pay-2/pay-2.7.x.php b/twiml/voice/pay/pay-2/pay-2.8.x.php similarity index 100% rename from twiml/voice/pay/pay-2/pay-2.7.x.php rename to twiml/voice/pay/pay-2/pay-2.8.x.php diff --git a/twiml/voice/pay/pay-3/pay-3.7.x.php b/twiml/voice/pay/pay-3/pay-3.8.x.php similarity index 100% rename from twiml/voice/pay/pay-3/pay-3.7.x.php rename to twiml/voice/pay/pay-3/pay-3.8.x.php diff --git a/twiml/voice/pay/pay-4/pay-4.7.x.php b/twiml/voice/pay/pay-4/pay-4.8.x.php similarity index 100% rename from twiml/voice/pay/pay-4/pay-4.7.x.php rename to twiml/voice/pay/pay-4/pay-4.8.x.php diff --git a/twiml/voice/pay/pay-5/pay-5.7.x.php b/twiml/voice/pay/pay-5/pay-5.8.x.php similarity index 100% rename from twiml/voice/pay/pay-5/pay-5.7.x.php rename to twiml/voice/pay/pay-5/pay-5.8.x.php diff --git a/twiml/voice/pay/pay-6/pay-6.7.x.php b/twiml/voice/pay/pay-6/pay-6.8.x.php similarity index 100% rename from twiml/voice/pay/pay-6/pay-6.7.x.php rename to twiml/voice/pay/pay-6/pay-6.8.x.php diff --git a/twiml/voice/pay/pay-7/pay-7.7.x.php b/twiml/voice/pay/pay-7/pay-7.8.x.php similarity index 100% rename from twiml/voice/pay/pay-7/pay-7.7.x.php rename to twiml/voice/pay/pay-7/pay-7.8.x.php diff --git a/twiml/voice/pay/pay-8/pay-8.7.x.php b/twiml/voice/pay/pay-8/pay-8.8.x.php similarity index 100% rename from twiml/voice/pay/pay-8/pay-8.7.x.php rename to twiml/voice/pay/pay-8/pay-8.8.x.php diff --git a/twiml/voice/pay/pay-9/pay-9.7.x.php b/twiml/voice/pay/pay-9/pay-9.8.x.php similarity index 100% rename from twiml/voice/pay/pay-9/pay-9.7.x.php rename to twiml/voice/pay/pay-9/pay-9.8.x.php diff --git a/twiml/voice/pay/pay-charge-connector/pay-charge-connector.7.x.php b/twiml/voice/pay/pay-charge-connector/pay-charge-connector.8.x.php similarity index 100% rename from twiml/voice/pay/pay-charge-connector/pay-charge-connector.7.x.php rename to twiml/voice/pay/pay-charge-connector/pay-charge-connector.8.x.php diff --git a/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.7.x.php b/twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.8.x.php similarity index 100% rename from twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.7.x.php rename to twiml/voice/pay/pay-tokenize-connector/pay-tokenize-connector.8.x.php diff --git a/twiml/voice/pay/pay-tokenize/pay-tokenize.7.x.php b/twiml/voice/pay/pay-tokenize/pay-tokenize.8.x.php similarity index 100% rename from twiml/voice/pay/pay-tokenize/pay-tokenize.7.x.php rename to twiml/voice/pay/pay-tokenize/pay-tokenize.8.x.php diff --git a/twiml/voice/play/play-1/play-1.7.x.php b/twiml/voice/play/play-1/play-1.8.x.php similarity index 100% rename from twiml/voice/play/play-1/play-1.7.x.php rename to twiml/voice/play/play-1/play-1.8.x.php diff --git a/twiml/voice/play/play-2/play-2.7.x.php b/twiml/voice/play/play-2/play-2.8.x.php similarity index 100% rename from twiml/voice/play/play-2/play-2.7.x.php rename to twiml/voice/play/play-2/play-2.8.x.php diff --git a/twiml/voice/play/play-3/play-3.7.x.php b/twiml/voice/play/play-3/play-3.8.x.php similarity index 100% rename from twiml/voice/play/play-3/play-3.7.x.php rename to twiml/voice/play/play-3/play-3.8.x.php diff --git a/twiml/voice/queue/queue-1/queue-1.7.x.php b/twiml/voice/queue/queue-1/queue-1.8.x.php similarity index 100% rename from twiml/voice/queue/queue-1/queue-1.7.x.php rename to twiml/voice/queue/queue-1/queue-1.8.x.php diff --git a/twiml/voice/queue/queue-2/queue-2.7.x.php b/twiml/voice/queue/queue-2/queue-2.8.x.php similarity index 100% rename from twiml/voice/queue/queue-2/queue-2.7.x.php rename to twiml/voice/queue/queue-2/queue-2.8.x.php diff --git a/twiml/voice/record/record-1/record-1.7.x.php b/twiml/voice/record/record-1/record-1.8.x.php similarity index 100% rename from twiml/voice/record/record-1/record-1.7.x.php rename to twiml/voice/record/record-1/record-1.8.x.php diff --git a/twiml/voice/record/record-2/record-2.7.x.php b/twiml/voice/record/record-2/record-2.8.x.php similarity index 100% rename from twiml/voice/record/record-2/record-2.7.x.php rename to twiml/voice/record/record-2/record-2.8.x.php diff --git a/twiml/voice/record/record-3/record-3.7.x.php b/twiml/voice/record/record-3/record-3.8.x.php similarity index 100% rename from twiml/voice/record/record-3/record-3.7.x.php rename to twiml/voice/record/record-3/record-3.8.x.php diff --git a/twiml/voice/record/record-4/record-4.7.x.php b/twiml/voice/record/record-4/record-4.8.x.php similarity index 100% rename from twiml/voice/record/record-4/record-4.7.x.php rename to twiml/voice/record/record-4/record-4.8.x.php diff --git a/twiml/voice/redirect/redirect-1/redirect-1.7.x.php b/twiml/voice/redirect/redirect-1/redirect-1.8.x.php similarity index 100% rename from twiml/voice/redirect/redirect-1/redirect-1.7.x.php rename to twiml/voice/redirect/redirect-1/redirect-1.8.x.php diff --git a/twiml/voice/redirect/redirect-2/redirect-2.7.x.php b/twiml/voice/redirect/redirect-2/redirect-2.8.x.php similarity index 100% rename from twiml/voice/redirect/redirect-2/redirect-2.7.x.php rename to twiml/voice/redirect/redirect-2/redirect-2.8.x.php diff --git a/twiml/voice/redirect/redirect-3/redirect-3.7.x.php b/twiml/voice/redirect/redirect-3/redirect-3.8.x.php similarity index 100% rename from twiml/voice/redirect/redirect-3/redirect-3.7.x.php rename to twiml/voice/redirect/redirect-3/redirect-3.8.x.php diff --git a/twiml/voice/refer/refer-1/refer-1.7.x.php b/twiml/voice/refer/refer-1/refer-1.8.x.php similarity index 100% rename from twiml/voice/refer/refer-1/refer-1.7.x.php rename to twiml/voice/refer/refer-1/refer-1.8.x.php diff --git a/twiml/voice/refer/refer-2/refer-2.7.x.php b/twiml/voice/refer/refer-2/refer-2.8.x.php similarity index 100% rename from twiml/voice/refer/refer-2/refer-2.7.x.php rename to twiml/voice/refer/refer-2/refer-2.8.x.php diff --git a/twiml/voice/refer/refer-3/refer-3.7.x.php b/twiml/voice/refer/refer-3/refer-3.8.x.php similarity index 100% rename from twiml/voice/refer/refer-3/refer-3.7.x.php rename to twiml/voice/refer/refer-3/refer-3.8.x.php diff --git a/twiml/voice/refer/refer-4/refer-4.7.x.php b/twiml/voice/refer/refer-4/refer-4.8.x.php similarity index 100% rename from twiml/voice/refer/refer-4/refer-4.7.x.php rename to twiml/voice/refer/refer-4/refer-4.8.x.php diff --git a/twiml/voice/reject/reject-1/reject-1.7.x.php b/twiml/voice/reject/reject-1/reject-1.8.x.php similarity index 100% rename from twiml/voice/reject/reject-1/reject-1.7.x.php rename to twiml/voice/reject/reject-1/reject-1.8.x.php diff --git a/twiml/voice/reject/reject-2/reject-2.7.x.php b/twiml/voice/reject/reject-2/reject-2.8.x.php similarity index 100% rename from twiml/voice/reject/reject-2/reject-2.7.x.php rename to twiml/voice/reject/reject-2/reject-2.8.x.php diff --git a/twiml/voice/say/say-basic-usage/say-basic-usage.7.x.php b/twiml/voice/say/say-basic-usage/say-basic-usage.8.x.php similarity index 100% rename from twiml/voice/say/say-basic-usage/say-basic-usage.7.x.php rename to twiml/voice/say/say-basic-usage/say-basic-usage.8.x.php diff --git a/twiml/voice/say/say-language/say-language.7.x.php b/twiml/voice/say/say-language/say-language.8.x.php similarity index 100% rename from twiml/voice/say/say-language/say-language.7.x.php rename to twiml/voice/say/say-language/say-language.8.x.php diff --git a/twiml/voice/say/say-loop/say-loop.7.x.php b/twiml/voice/say/say-loop/say-loop.8.x.php similarity index 100% rename from twiml/voice/say/say-loop/say-loop.7.x.php rename to twiml/voice/say/say-loop/say-loop.8.x.php diff --git a/twiml/voice/say/say-voice/say-voice.7.x.php b/twiml/voice/say/say-voice/say-voice.8.x.php similarity index 100% rename from twiml/voice/say/say-voice/say-voice.7.x.php rename to twiml/voice/say/say-voice/say-voice.8.x.php diff --git a/twiml/voice/say/ssml/ssml.7.x.php b/twiml/voice/say/ssml/ssml.8.x.php similarity index 100% rename from twiml/voice/say/ssml/ssml.7.x.php rename to twiml/voice/say/ssml/ssml.8.x.php diff --git a/twiml/voice/sim/sim-1/sim-1.7.x.php b/twiml/voice/sim/sim-1/sim-1.8.x.php similarity index 100% rename from twiml/voice/sim/sim-1/sim-1.7.x.php rename to twiml/voice/sim/sim-1/sim-1.8.x.php diff --git a/twiml/voice/sim/sim-2/sim-2.7.x.php b/twiml/voice/sim/sim-2/sim-2.8.x.php similarity index 100% rename from twiml/voice/sim/sim-2/sim-2.7.x.php rename to twiml/voice/sim/sim-2/sim-2.8.x.php diff --git a/twiml/voice/sip/sip-1/sip-1.7.x.php b/twiml/voice/sip/sip-1/sip-1.8.x.php similarity index 100% rename from twiml/voice/sip/sip-1/sip-1.7.x.php rename to twiml/voice/sip/sip-1/sip-1.8.x.php diff --git a/twiml/voice/sip/sip-10/sip-10.7.x.php b/twiml/voice/sip/sip-10/sip-10.8.x.php similarity index 100% rename from twiml/voice/sip/sip-10/sip-10.7.x.php rename to twiml/voice/sip/sip-10/sip-10.8.x.php diff --git a/twiml/voice/sip/sip-11/sip-11.7.x.php b/twiml/voice/sip/sip-11/sip-11.8.x.php similarity index 100% rename from twiml/voice/sip/sip-11/sip-11.7.x.php rename to twiml/voice/sip/sip-11/sip-11.8.x.php diff --git a/twiml/voice/sip/sip-2/sip-2.7.x.php b/twiml/voice/sip/sip-2/sip-2.8.x.php similarity index 100% rename from twiml/voice/sip/sip-2/sip-2.7.x.php rename to twiml/voice/sip/sip-2/sip-2.8.x.php diff --git a/twiml/voice/sip/sip-3/sip-3.7.x.php b/twiml/voice/sip/sip-3/sip-3.8.x.php similarity index 100% rename from twiml/voice/sip/sip-3/sip-3.7.x.php rename to twiml/voice/sip/sip-3/sip-3.8.x.php diff --git a/twiml/voice/sip/sip-4/sip-4.7.x.php b/twiml/voice/sip/sip-4/sip-4.8.x.php similarity index 100% rename from twiml/voice/sip/sip-4/sip-4.7.x.php rename to twiml/voice/sip/sip-4/sip-4.8.x.php diff --git a/twiml/voice/sip/sip-5/sip-5.7.x.php b/twiml/voice/sip/sip-5/sip-5.8.x.php similarity index 100% rename from twiml/voice/sip/sip-5/sip-5.7.x.php rename to twiml/voice/sip/sip-5/sip-5.8.x.php diff --git a/twiml/voice/sip/sip-6/sip-6.7.x.php b/twiml/voice/sip/sip-6/sip-6.8.x.php similarity index 100% rename from twiml/voice/sip/sip-6/sip-6.7.x.php rename to twiml/voice/sip/sip-6/sip-6.8.x.php diff --git a/twiml/voice/sip/sip-7/sip-7.7.x.php b/twiml/voice/sip/sip-7/sip-7.8.x.php similarity index 100% rename from twiml/voice/sip/sip-7/sip-7.7.x.php rename to twiml/voice/sip/sip-7/sip-7.8.x.php diff --git a/twiml/voice/sip/sip-8/sip-8.7.x.php b/twiml/voice/sip/sip-8/sip-8.8.x.php similarity index 100% rename from twiml/voice/sip/sip-8/sip-8.7.x.php rename to twiml/voice/sip/sip-8/sip-8.8.x.php diff --git a/twiml/voice/sip/sip-9/sip-9.7.x.php b/twiml/voice/sip/sip-9/sip-9.8.x.php similarity index 100% rename from twiml/voice/sip/sip-9/sip-9.7.x.php rename to twiml/voice/sip/sip-9/sip-9.8.x.php diff --git a/twiml/voice/siprec/siprec-1/siprec-1.7.x.php b/twiml/voice/siprec/siprec-1/siprec-1.8.x.php similarity index 100% rename from twiml/voice/siprec/siprec-1/siprec-1.7.x.php rename to twiml/voice/siprec/siprec-1/siprec-1.8.x.php diff --git a/twiml/voice/sms/sms-1/sms-1.7.x.php b/twiml/voice/sms/sms-1/sms-1.8.x.php similarity index 100% rename from twiml/voice/sms/sms-1/sms-1.7.x.php rename to twiml/voice/sms/sms-1/sms-1.8.x.php diff --git a/twiml/voice/sms/sms-2/sms-2.7.x.php b/twiml/voice/sms/sms-2/sms-2.8.x.php similarity index 100% rename from twiml/voice/sms/sms-2/sms-2.7.x.php rename to twiml/voice/sms/sms-2/sms-2.8.x.php diff --git a/twiml/voice/sms/sms-3/sms-3.7.x.php b/twiml/voice/sms/sms-3/sms-3.8.x.php similarity index 100% rename from twiml/voice/sms/sms-3/sms-3.7.x.php rename to twiml/voice/sms/sms-3/sms-3.8.x.php diff --git a/twiml/voice/sms/sms-4/sms-4.7.x.php b/twiml/voice/sms/sms-4/sms-4.8.x.php similarity index 100% rename from twiml/voice/sms/sms-4/sms-4.7.x.php rename to twiml/voice/sms/sms-4/sms-4.8.x.php diff --git a/twiml/voice/stream/stream-1/stream-1.7.x.php b/twiml/voice/stream/stream-1/stream-1.8.x.php similarity index 100% rename from twiml/voice/stream/stream-1/stream-1.7.x.php rename to twiml/voice/stream/stream-1/stream-1.8.x.php diff --git a/twiml/voice/stream/stream-2/stream-2.7.x.php b/twiml/voice/stream/stream-2/stream-2.8.x.php similarity index 100% rename from twiml/voice/stream/stream-2/stream-2.7.x.php rename to twiml/voice/stream/stream-2/stream-2.8.x.php diff --git a/twiml/voice/your-response/your-response-1/your-response-1.7.x.php b/twiml/voice/your-response/your-response-1/your-response-1.8.x.php similarity index 100% rename from twiml/voice/your-response/your-response-1/your-response-1.7.x.php rename to twiml/voice/your-response/your-response-1/your-response-1.8.x.php diff --git a/twiml/voice/your-response/your-response-2/your-response-2.7.x.php b/twiml/voice/your-response/your-response-2/your-response-2.8.x.php similarity index 100% rename from twiml/voice/your-response/your-response-2/your-response-2.7.x.php rename to twiml/voice/your-response/your-response-2/your-response-2.8.x.php diff --git a/verify/verifications/approve-verification/approve-verification.7.x.php b/verify/verifications/approve-verification/approve-verification.8.x.php similarity index 100% rename from verify/verifications/approve-verification/approve-verification.7.x.php rename to verify/verifications/approve-verification/approve-verification.8.x.php diff --git a/video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.7.x.php b/video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.8.x.php similarity index 100% rename from video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.7.x.php rename to video/rest/compositionhooks/audio-mixing-hook/audio-mixing-hook.8.x.php diff --git a/video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.7.x.php b/video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.8.x.php similarity index 100% rename from video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.7.x.php rename to video/rest/compositionhooks/complex-layout-hook/complex-layout-hook.8.x.php diff --git a/video/rest/compositionhooks/delete-hook/delete-hook.7.x.php b/video/rest/compositionhooks/delete-hook/delete-hook.8.x.php similarity index 100% rename from video/rest/compositionhooks/delete-hook/delete-hook.7.x.php rename to video/rest/compositionhooks/delete-hook/delete-hook.8.x.php diff --git a/video/rest/compositionhooks/get-hook/get-hook.7.x.php b/video/rest/compositionhooks/get-hook/get-hook.8.x.php similarity index 100% rename from video/rest/compositionhooks/get-hook/get-hook.7.x.php rename to video/rest/compositionhooks/get-hook/get-hook.8.x.php diff --git a/video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.7.x.php b/video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.8.x.php similarity index 100% rename from video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.7.x.php rename to video/rest/compositionhooks/grid-mixing-hook/grid-mixing-hook.8.x.php diff --git a/video/rest/compositionhooks/list-hooks/list-hooks.7.x.php b/video/rest/compositionhooks/list-hooks/list-hooks.8.x.php similarity index 100% rename from video/rest/compositionhooks/list-hooks/list-hooks.7.x.php rename to video/rest/compositionhooks/list-hooks/list-hooks.8.x.php diff --git a/video/rest/compositionhooks/update-hook/update-hook.7.x.php b/video/rest/compositionhooks/update-hook/update-hook.8.x.php similarity index 100% rename from video/rest/compositionhooks/update-hook/update-hook.7.x.php rename to video/rest/compositionhooks/update-hook/update-hook.8.x.php diff --git a/video/rest/compositions/compose-chess/compose-chess.7.x.php b/video/rest/compositions/compose-chess/compose-chess.8.x.php similarity index 100% rename from video/rest/compositions/compose-chess/compose-chess.7.x.php rename to video/rest/compositions/compose-chess/compose-chess.8.x.php diff --git a/video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.7.x.php b/video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.8.x.php similarity index 100% rename from video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.7.x.php rename to video/rest/compositions/compose-main-with-col-and-pip/compose-main-with-col-and-pip.8.x.php diff --git a/video/rest/compositions/compose-main-with-row/compose-main-with-row.7.x.php b/video/rest/compositions/compose-main-with-row/compose-main-with-row.8.x.php similarity index 100% rename from video/rest/compositions/compose-main-with-row/compose-main-with-row.7.x.php rename to video/rest/compositions/compose-main-with-row/compose-main-with-row.8.x.php diff --git a/video/rest/compositions/compose-mosaic/compose-mosaic.7.x.php b/video/rest/compositions/compose-mosaic/compose-mosaic.8.x.php similarity index 100% rename from video/rest/compositions/compose-mosaic/compose-mosaic.7.x.php rename to video/rest/compositions/compose-mosaic/compose-mosaic.8.x.php diff --git a/video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.7.x.php b/video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.8.x.php similarity index 100% rename from video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.7.x.php rename to video/rest/compositions/compose-participant-video-with-all-audios/compose-participant-video-with-all-audios.8.x.php diff --git a/video/rest/compositions/compose-participant/transcode-video-recoding.7.x.php b/video/rest/compositions/compose-participant/transcode-video-recoding.8.x.php similarity index 100% rename from video/rest/compositions/compose-participant/transcode-video-recoding.7.x.php rename to video/rest/compositions/compose-participant/transcode-video-recoding.8.x.php diff --git a/video/rest/compositions/compose-pip/compose-pip.7.x.php b/video/rest/compositions/compose-pip/compose-pip.8.x.php similarity index 100% rename from video/rest/compositions/compose-pip/compose-pip.7.x.php rename to video/rest/compositions/compose-pip/compose-pip.8.x.php diff --git a/video/rest/compositions/compose-room/compose-room.7.x.php b/video/rest/compositions/compose-room/compose-room.8.x.php similarity index 100% rename from video/rest/compositions/compose-room/compose-room.7.x.php rename to video/rest/compositions/compose-room/compose-room.8.x.php diff --git a/video/rest/compositions/compose-set-as-row/compose-set-as-row.7.x.php b/video/rest/compositions/compose-set-as-row/compose-set-as-row.8.x.php similarity index 100% rename from video/rest/compositions/compose-set-as-row/compose-set-as-row.7.x.php rename to video/rest/compositions/compose-set-as-row/compose-set-as-row.8.x.php diff --git a/video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.7.x.php b/video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.8.x.php similarity index 100% rename from video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.7.x.php rename to video/rest/compositions/compose-set-as-sequence/compose-set-as-sequence.8.x.php diff --git a/video/rest/compositions/delete-composition/delete-composition.7.x.php b/video/rest/compositions/delete-composition/delete-composition.8.x.php similarity index 100% rename from video/rest/compositions/delete-composition/delete-composition.7.x.php rename to video/rest/compositions/delete-composition/delete-composition.8.x.php diff --git a/video/rest/compositions/get-completed-compositions/get-completed-compositions.7.x.php b/video/rest/compositions/get-completed-compositions/get-completed-compositions.8.x.php similarity index 100% rename from video/rest/compositions/get-completed-compositions/get-completed-compositions.7.x.php rename to video/rest/compositions/get-completed-compositions/get-completed-compositions.8.x.php diff --git a/video/rest/compositions/get-composition-media-file/get-composition-media-file.7.x.php b/video/rest/compositions/get-composition-media-file/get-composition-media-file.8.x.php similarity index 100% rename from video/rest/compositions/get-composition-media-file/get-composition-media-file.7.x.php rename to video/rest/compositions/get-composition-media-file/get-composition-media-file.8.x.php diff --git a/video/rest/compositions/get-composition/get-composition.7.x.php b/video/rest/compositions/get-composition/get-composition.8.x.php similarity index 100% rename from video/rest/compositions/get-composition/get-composition.7.x.php rename to video/rest/compositions/get-composition/get-composition.8.x.php diff --git a/video/rest/compositions/get-room-compositions/get-room-compositions.7.x.php b/video/rest/compositions/get-room-compositions/get-room-compositions.8.x.php similarity index 100% rename from video/rest/compositions/get-room-compositions/get-room-compositions.7.x.php rename to video/rest/compositions/get-room-compositions/get-room-compositions.8.x.php diff --git a/video/rest/compositions/transcode-audio-recording/transcode-audio-recoding.7.x.php b/video/rest/compositions/transcode-audio-recording/transcode-audio-recoding.8.x.php similarity index 100% rename from video/rest/compositions/transcode-audio-recording/transcode-audio-recoding.7.x.php rename to video/rest/compositions/transcode-audio-recording/transcode-audio-recoding.8.x.php diff --git a/video/rest/compositions/transcode-video-recording/transcode-video-recoding.7.x.php b/video/rest/compositions/transcode-video-recording/transcode-video-recoding.8.x.php similarity index 100% rename from video/rest/compositions/transcode-video-recording/transcode-video-recoding.7.x.php rename to video/rest/compositions/transcode-video-recording/transcode-video-recoding.8.x.php diff --git a/video/rest/recordings/delete-recording/delete-recording.7.x.php b/video/rest/recordings/delete-recording/delete-recording.8.x.php similarity index 100% rename from video/rest/recordings/delete-recording/delete-recording.7.x.php rename to video/rest/recordings/delete-recording/delete-recording.8.x.php diff --git a/video/rest/recordings/list-deleted-recordings/list-deleted-recordings.7.x.php b/video/rest/recordings/list-deleted-recordings/list-deleted-recordings.8.x.php similarity index 100% rename from video/rest/recordings/list-deleted-recordings/list-deleted-recordings.7.x.php rename to video/rest/recordings/list-deleted-recordings/list-deleted-recordings.8.x.php diff --git a/video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.7.x.php b/video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.8.x.php similarity index 100% rename from video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.7.x.php rename to video/rest/recordings/list-recordings-for-participant-in-room/list-recordings-for-participant-in-room.8.x.php diff --git a/video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.7.x.php b/video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.8.x.php similarity index 100% rename from video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.7.x.php rename to video/rest/recordings/list-recordings-for-participant/list-recordings-for-participant.8.x.php diff --git a/video/rest/recordings/list-recordings-for-room/list-recordings-for-room.7.x.php b/video/rest/recordings/list-recordings-for-room/list-recordings-for-room.8.x.php similarity index 100% rename from video/rest/recordings/list-recordings-for-room/list-recordings-for-room.7.x.php rename to video/rest/recordings/list-recordings-for-room/list-recordings-for-room.8.x.php diff --git a/video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.7.x.php b/video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.8.x.php similarity index 100% rename from video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.7.x.php rename to video/rest/recordings/retrieve-recording-binary-data/retrieve-recording-binary-data.8.x.php diff --git a/video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.7.x.php b/video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.8.x.php similarity index 100% rename from video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.7.x.php rename to video/rest/recordings/retrieve-recording-by-sid/retrieve-recording-by-sid.8.x.php diff --git a/video/rest/rooms/create-group-room-with-h264/create-group-room.7.x.php b/video/rest/rooms/create-group-room-with-h264/create-group-room.8.x.php similarity index 100% rename from video/rest/rooms/create-group-room-with-h264/create-group-room.7.x.php rename to video/rest/rooms/create-group-room-with-h264/create-group-room.8.x.php diff --git a/video/rest/rooms/create-group-room/create-group-room.7.x.php b/video/rest/rooms/create-group-room/create-group-room.8.x.php similarity index 100% rename from video/rest/rooms/create-group-room/create-group-room.7.x.php rename to video/rest/rooms/create-group-room/create-group-room.8.x.php diff --git a/video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.7.x.php b/video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.8.x.php similarity index 100% rename from video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.7.x.php rename to video/rest/rooms/create-peer-to-peer-room/create-peer-to-peer-room.8.x.php diff --git a/video/rest/rooms/create-room/create-room.7.x.php b/video/rest/rooms/create-room/create-room.8.x.php similarity index 100% rename from video/rest/rooms/create-room/create-room.7.x.php rename to video/rest/rooms/create-room/create-room.8.x.php diff --git a/video/rest/rooms/list-room-recordings/list-room-recordings.7.x.php b/video/rest/rooms/list-room-recordings/list-room-recordings.8.x.php similarity index 100% rename from video/rest/rooms/list-room-recordings/list-room-recordings.7.x.php rename to video/rest/rooms/list-room-recordings/list-room-recordings.8.x.php diff --git a/video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.7.x.php b/video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.8.x.php similarity index 100% rename from video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.7.x.php rename to video/rest/rooms/list-rooms-filtered-by-name/list-rooms-filtered-by-name.8.x.php diff --git a/video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.7.x.php b/video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.8.x.php similarity index 100% rename from video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.7.x.php rename to video/rest/rooms/list-rooms-filtered-by-status/list-rooms-filtered-by-status.8.x.php diff --git a/video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.7.x.php b/video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.8.x.php similarity index 100% rename from video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.7.x.php rename to video/rest/rooms/list-rooms-multiple-filters/list-rooms-multiple-filters.8.x.php diff --git a/video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.7.x.php b/video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.8.x.php similarity index 100% rename from video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.7.x.php rename to video/rest/rooms/participants/list-subscribed-tracks/list-subscribed-tracks.8.x.php diff --git a/video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.7.x.php b/video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.8.x.php similarity index 100% rename from video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.7.x.php rename to video/rest/rooms/participants/retrieve-subscribe-rules/retrieve-subscribe-rules.8.x.php diff --git a/video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.7.x.php b/video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.8.x.php similarity index 100% rename from video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.7.x.php rename to video/rest/rooms/participants/retrieve-subscribed-track/retrieve-subscribed-track.8.x.php diff --git a/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.7.x.php b/video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.8.x.php similarity index 100% rename from video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.7.x.php rename to video/rest/rooms/participants/unsubscribe-media-transcriber/update-customer-rules.8.x.php diff --git a/video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.7.x.php b/video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.8.x.php similarity index 100% rename from video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.7.x.php rename to video/rest/rooms/participants/update-subscribe-rules-dynamic/update-subscribe-rules-dynamic.8.x.php diff --git a/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.7.x.php b/video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.8.x.php similarity index 100% rename from video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.7.x.php rename to video/rest/rooms/participants/update-subscribe-rules-static/update-customer-rules.8.x.php diff --git a/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.7.x.php b/video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.8.x.php similarity index 100% rename from video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.7.x.php rename to video/rest/rooms/recording-rules-audio-all/recording-rules-audio-all.8.x.php diff --git a/video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.7.x.php b/video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.8.x.php similarity index 100% rename from video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.7.x.php rename to video/rest/rooms/recording-rules-one-participant/recording-rules-one-participant.8.x.php diff --git a/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.7.x.php b/video/rest/rooms/recording-rules-start-all/recording-rules-start-all.8.x.php similarity index 100% rename from video/rest/rooms/recording-rules-start-all/recording-rules-start-all.7.x.php rename to video/rest/rooms/recording-rules-start-all/recording-rules-start-all.8.x.php diff --git a/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.7.x.php b/video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.8.x.php similarity index 100% rename from video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.7.x.php rename to video/rest/rooms/recording-rules-stop-all/recording-rules-stop-all.8.x.php diff --git a/video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.7.x.php b/video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.8.x.php similarity index 100% rename from video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.7.x.php rename to video/rest/rooms/retrieve-media-for-room-recording/retrieve-media-for-room-recording.8.x.php diff --git a/video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.7.x.php b/video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.8.x.php similarity index 100% rename from video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.7.x.php rename to video/rest/rooms/retrieve-room-by-sid/retrieve-room-by-sid.8.x.php diff --git a/video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.7.x.php b/video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.8.x.php similarity index 100% rename from video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.7.x.php rename to video/rest/rooms/retrieve-room-by-unique-name/retrieve-room-by-unique-name.8.x.php diff --git a/video/rest/rooms/retrieve-room-recording/retrieve-room-recording.7.x.php b/video/rest/rooms/retrieve-room-recording/retrieve-room-recording.8.x.php similarity index 100% rename from video/rest/rooms/retrieve-room-recording/retrieve-room-recording.7.x.php rename to video/rest/rooms/retrieve-room-recording/retrieve-room-recording.8.x.php diff --git a/video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.7.x.php b/video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.8.x.php similarity index 100% rename from video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.7.x.php rename to video/rest/rooms/update-room-status-to-completed/update-room-status-to-completed.8.x.php diff --git a/video/users/token-generation-server-rooms/token-generation-server.7.x.php b/video/users/token-generation-server-rooms/token-generation-server.8.x.php similarity index 100% rename from video/users/token-generation-server-rooms/token-generation-server.7.x.php rename to video/users/token-generation-server-rooms/token-generation-server.8.x.php diff --git a/video/users/token-generation-server/token-generation-server.7.x.php b/video/users/token-generation-server/token-generation-server.8.x.php similarity index 100% rename from video/users/token-generation-server/token-generation-server.7.x.php rename to video/users/token-generation-server/token-generation-server.8.x.php diff --git a/voice/queueing/agent/queue-agent.7.x.php b/voice/queueing/agent/queue-agent.8.x.php similarity index 100% rename from voice/queueing/agent/queue-agent.7.x.php rename to voice/queueing/agent/queue-agent.8.x.php diff --git a/voice/queueing/caller/queue-caller.7.x.php b/voice/queueing/caller/queue-caller.8.x.php similarity index 100% rename from voice/queueing/caller/queue-caller.7.x.php rename to voice/queueing/caller/queue-caller.8.x.php diff --git a/voice/queueing/redirect/queue-redirect.7.x.php b/voice/queueing/redirect/queue-redirect.8.x.php similarity index 100% rename from voice/queueing/redirect/queue-redirect.7.x.php rename to voice/queueing/redirect/queue-redirect.8.x.php diff --git a/voice/specify-edge/specify-edge.7.x.php b/voice/specify-edge/specify-edge.8.x.php similarity index 100% rename from voice/specify-edge/specify-edge.7.x.php rename to voice/specify-edge/specify-edge.8.x.php diff --git a/wireless/commands/create-binary-example-1/create-binary-example-1.7.x.php b/wireless/commands/create-binary-example-1/create-binary-example-1.8.x.php similarity index 100% rename from wireless/commands/create-binary-example-1/create-binary-example-1.7.x.php rename to wireless/commands/create-binary-example-1/create-binary-example-1.8.x.php diff --git a/wireless/commands/create-text-example-1/create-text-example-1.7.x.php b/wireless/commands/create-text-example-1/create-text-example-1.8.x.php similarity index 100% rename from wireless/commands/create-text-example-1/create-text-example-1.7.x.php rename to wireless/commands/create-text-example-1/create-text-example-1.8.x.php diff --git a/wireless/commands/instance-get-example-1/instance-get-example-1.7.x.php b/wireless/commands/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from wireless/commands/instance-get-example-1/instance-get-example-1.7.x.php rename to wireless/commands/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/wireless/commands/list-example-1/list-example-1.7.x.php b/wireless/commands/list-example-1/list-example-1.8.x.php similarity index 100% rename from wireless/commands/list-example-1/list-example-1.7.x.php rename to wireless/commands/list-example-1/list-example-1.8.x.php diff --git a/wireless/rateplans/create-example-1/create-example-1.7.x.php b/wireless/rateplans/create-example-1/create-example-1.8.x.php similarity index 100% rename from wireless/rateplans/create-example-1/create-example-1.7.x.php rename to wireless/rateplans/create-example-1/create-example-1.8.x.php diff --git a/wireless/rateplans/instance-delete-example-1/delete-example-1.7.x.php b/wireless/rateplans/instance-delete-example-1/delete-example-1.8.x.php similarity index 100% rename from wireless/rateplans/instance-delete-example-1/delete-example-1.7.x.php rename to wireless/rateplans/instance-delete-example-1/delete-example-1.8.x.php diff --git a/wireless/rateplans/instance-get-example-1/instance-get-example-1.7.x.php b/wireless/rateplans/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from wireless/rateplans/instance-get-example-1/instance-get-example-1.7.x.php rename to wireless/rateplans/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/wireless/rateplans/instance-get-example-2/instance-get-example-2.7.x.php b/wireless/rateplans/instance-get-example-2/instance-get-example-2.8.x.php similarity index 100% rename from wireless/rateplans/instance-get-example-2/instance-get-example-2.7.x.php rename to wireless/rateplans/instance-get-example-2/instance-get-example-2.8.x.php diff --git a/wireless/rateplans/list-example-1/list-example-1.7.x.php b/wireless/rateplans/list-example-1/list-example-1.8.x.php similarity index 100% rename from wireless/rateplans/list-example-1/list-example-1.7.x.php rename to wireless/rateplans/list-example-1/list-example-1.8.x.php diff --git a/wireless/sims-data-session/list-example-1/list-example-1.7.x.php b/wireless/sims-data-session/list-example-1/list-example-1.8.x.php similarity index 100% rename from wireless/sims-data-session/list-example-1/list-example-1.7.x.php rename to wireless/sims-data-session/list-example-1/list-example-1.8.x.php diff --git a/wireless/sims-usage-record/list-example-1/list-example-1.7.x.php b/wireless/sims-usage-record/list-example-1/list-example-1.8.x.php similarity index 100% rename from wireless/sims-usage-record/list-example-1/list-example-1.7.x.php rename to wireless/sims-usage-record/list-example-1/list-example-1.8.x.php diff --git a/wireless/sims/instance-get-example-1/instance-get-example-1.7.x.php b/wireless/sims/instance-get-example-1/instance-get-example-1.8.x.php similarity index 100% rename from wireless/sims/instance-get-example-1/instance-get-example-1.7.x.php rename to wireless/sims/instance-get-example-1/instance-get-example-1.8.x.php diff --git a/wireless/sims/instance-get-example-2/instance-get-example-2.7.x.php b/wireless/sims/instance-get-example-2/instance-get-example-2.8.x.php similarity index 100% rename from wireless/sims/instance-get-example-2/instance-get-example-2.7.x.php rename to wireless/sims/instance-get-example-2/instance-get-example-2.8.x.php diff --git a/wireless/sims/instance-post-example-1/instance-post-example-1.7.x.php b/wireless/sims/instance-post-example-1/instance-post-example-1.8.x.php similarity index 100% rename from wireless/sims/instance-post-example-1/instance-post-example-1.7.x.php rename to wireless/sims/instance-post-example-1/instance-post-example-1.8.x.php diff --git a/wireless/sims/list-example-1/list-example-1.7.x.php b/wireless/sims/list-example-1/list-example-1.8.x.php similarity index 100% rename from wireless/sims/list-example-1/list-example-1.7.x.php rename to wireless/sims/list-example-1/list-example-1.8.x.php From 336c9421b5e0c5d8d5f74b9b4d2dc82f451732ed Mon Sep 17 00:00:00 2001 From: Shubham Tiwari Date: Thu, 4 Apr 2024 18:39:08 +0530 Subject: [PATCH 08/95] chore: bumped php version to 8.x --- rename-files.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 rename-files.py diff --git a/rename-files.py b/rename-files.py deleted file mode 100644 index f859787b63..0000000000 --- a/rename-files.py +++ /dev/null @@ -1,24 +0,0 @@ -import os - -def rename_files(directory): - # Iterate over all files and directories in the current directory - for root, dirs, files in os.walk(directory): - for filename in files: - # Check if the file ends with "8.x" and has a .py extension - if filename.endswith("7.x.php"): - # Construct the old and new file paths - old_filepath = os.path.join(root, filename) - new_filename = filename.replace("7.x", "8.x") - new_filepath = os.path.join(root, new_filename) - - # Rename the file - os.rename(old_filepath, new_filepath) - print(f"Renamed {old_filepath} to {new_filepath}") - - # Recursively call rename_files for subdirectories - for subdir in dirs: - rename_files(os.path.join(root, subdir)) - -if __name__ == "__main__": - # Start renaming from the current directory - rename_files(os.getcwd()) From be32da420a4974e1565a7bf004f41ff429c7fe93 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Thu, 18 Apr 2024 13:19:48 -0400 Subject: [PATCH 09/95] Update media streams twiml examples (#1056) --- .../connect/stream/connect_stream.3.x.js | 7 ++++--- .../connect/stream/connect_stream.6.x.cs | 3 ++- .../connect/stream/connect_stream.7.x.java | 6 ++++-- .../connect/stream/connect_stream.7.x.rb | 3 ++- .../connect/stream/connect_stream.8.x.php | 3 ++- .../connect/stream/connect_stream.9.x.py | 7 +++++-- twiml/voice/connect/stream/meta.json | 2 +- .../stream/output/connect_stream.twiml | 5 +++-- twiml/voice/stream/stream-1/meta.json | 2 +- .../stream/stream-1/output/stream-1.twiml | 3 ++- .../voice/stream/stream-1/stream-1.10.x.java | 8 ++++---- twiml/voice/stream/stream-1/stream-1.5.x.js | 5 +++-- twiml/voice/stream/stream-1/stream-1.6.x.cs | 3 ++- twiml/voice/stream/stream-1/stream-1.6.x.php | 10 ---------- twiml/voice/stream/stream-1/stream-1.7.x.java | 19 ------------------- twiml/voice/stream/stream-1/stream-1.7.x.rb | 3 ++- twiml/voice/stream/stream-1/stream-1.8.x.php | 3 ++- twiml/voice/stream/stream-1/stream-1.9.x.py | 7 +++---- 18 files changed, 42 insertions(+), 57 deletions(-) delete mode 100644 twiml/voice/stream/stream-1/stream-1.6.x.php delete mode 100644 twiml/voice/stream/stream-1/stream-1.7.x.java diff --git a/twiml/voice/connect/stream/connect_stream.3.x.js b/twiml/voice/connect/stream/connect_stream.3.x.js index 5b3dfa6d50..94d9902c1a 100644 --- a/twiml/voice/connect/stream/connect_stream.3.x.js +++ b/twiml/voice/connect/stream/connect_stream.3.x.js @@ -2,8 +2,9 @@ const VoiceResponse = require('twilio').twiml.VoiceResponse; const response = new VoiceResponse(); const connect = response.connect(); -connect.stream({ - url: 'wss://mystream.ngrok.io/audiostream' -}); +connect.stream({ url: 'wss://example.com/audiostream' }); +response.say( + 'This TwiML instruction is unreachable unless the Stream is ended by your WebSocket server.' +); console.log(response.toString()); diff --git a/twiml/voice/connect/stream/connect_stream.6.x.cs b/twiml/voice/connect/stream/connect_stream.6.x.cs index 589da73d67..30a5c729ce 100644 --- a/twiml/voice/connect/stream/connect_stream.6.x.cs +++ b/twiml/voice/connect/stream/connect_stream.6.x.cs @@ -9,8 +9,9 @@ static void Main() { var response = new VoiceResponse(); var connect = new Connect(); - connect.Stream(url: "wss://mystream.ngrok.io/audiostream"); + connect.Stream(url: "wss://example.com/audiostream"); response.Append(connect); + response.Say("This TwiML instruction is unreachable unless the Stream is ended by your WebSocket server."); Console.WriteLine(response.ToString()); } diff --git a/twiml/voice/connect/stream/connect_stream.7.x.java b/twiml/voice/connect/stream/connect_stream.7.x.java index c8c0ae9c3d..7c77b6b018 100644 --- a/twiml/voice/connect/stream/connect_stream.7.x.java +++ b/twiml/voice/connect/stream/connect_stream.7.x.java @@ -1,14 +1,16 @@ import com.twilio.twiml.voice.Connect; import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Say; import com.twilio.twiml.voice.Stream; import com.twilio.twiml.TwiMLException; public class Example { public static void main(String[] args) { - Stream stream = new Stream.Builder().url("/service/wss://mystream.ngrok.io/audiostream").build(); + Stream stream = new Stream.Builder().url("/service/wss://example.com/audiostream").build(); Connect connect = new Connect.Builder().stream(stream).build(); - VoiceResponse response = new VoiceResponse.Builder().connect(connect).build(); + Say say = new Say.Builder("This TwiML instruction is unreachable unless the Stream is ended by your WebSocket server.").build(); + VoiceResponse response = new VoiceResponse.Builder().connect(connect).say(say).build(); try { System.out.println(response.toXml()); diff --git a/twiml/voice/connect/stream/connect_stream.7.x.rb b/twiml/voice/connect/stream/connect_stream.7.x.rb index 661ffc3143..3595dd0d8f 100644 --- a/twiml/voice/connect/stream/connect_stream.7.x.rb +++ b/twiml/voice/connect/stream/connect_stream.7.x.rb @@ -2,7 +2,8 @@ response = Twilio::TwiML::VoiceResponse.new response.connect do |connect| - connect.stream(url: 'wss://mystream.ngrok.io/audiostream') + connect.stream(url: 'wss://example.com/audiostream') end +response.say(message: 'This TwiML instruction is unreachable unless the Stream is ended by your WebSocket server.') puts response diff --git a/twiml/voice/connect/stream/connect_stream.8.x.php b/twiml/voice/connect/stream/connect_stream.8.x.php index bef19a592e..abe41353a0 100644 --- a/twiml/voice/connect/stream/connect_stream.8.x.php +++ b/twiml/voice/connect/stream/connect_stream.8.x.php @@ -4,6 +4,7 @@ $response = new VoiceResponse(); $connect = $response->connect(); -$connect->stream(['url' => 'wss://mystream.ngrok.io/audiostream']); +$connect->stream(['url' => 'wss://example.com/audiostream']); +$response->say('This TwiML instruction is unreachable unless the Stream is ended by your WebSocket server.'); echo $response; diff --git a/twiml/voice/connect/stream/connect_stream.9.x.py b/twiml/voice/connect/stream/connect_stream.9.x.py index af41b7a652..26384b16f3 100644 --- a/twiml/voice/connect/stream/connect_stream.9.x.py +++ b/twiml/voice/connect/stream/connect_stream.9.x.py @@ -1,8 +1,11 @@ -from twilio.twiml.voice_response import Connect, VoiceResponse, Stream +from twilio.twiml.voice_response import Connect, VoiceResponse, Say, Stream response = VoiceResponse() connect = Connect() -connect.stream(url='wss://mystream.ngrok.io/audiostream') +connect.stream(url='wss://example.com/audiostream') response.append(connect) +response.say( + 'This TwiML instruction is unreachable unless the Stream is ended by your WebSocket server.' +) print(response) diff --git a/twiml/voice/connect/stream/meta.json b/twiml/voice/connect/stream/meta.json index 5be2e9ba62..74e61b0c52 100644 --- a/twiml/voice/connect/stream/meta.json +++ b/twiml/voice/connect/stream/meta.json @@ -1,4 +1,4 @@ { - "title": "Connect a Programmable Voice call to a bi-directional Media Stream", + "title": "Connect a Programmable Voice call to a bidirectional Media Stream", "type": "server" } \ No newline at end of file diff --git a/twiml/voice/connect/stream/output/connect_stream.twiml b/twiml/voice/connect/stream/output/connect_stream.twiml index 360113fcfe..b50790ef87 100644 --- a/twiml/voice/connect/stream/output/connect_stream.twiml +++ b/twiml/voice/connect/stream/output/connect_stream.twiml @@ -1,6 +1,7 @@ - + - \ No newline at end of file + This TwiML instruction is unreachable unless the Stream is ended by your WebSocket server. + diff --git a/twiml/voice/stream/stream-1/meta.json b/twiml/voice/stream/stream-1/meta.json index 186c26d472..02ce468e6a 100644 --- a/twiml/voice/stream/stream-1/meta.json +++ b/twiml/voice/stream/stream-1/meta.json @@ -1,5 +1,5 @@ { - "title": "Start a MediaStream", + "title": "Start a unidirectional Media Stream", "type": "server" } \ No newline at end of file diff --git a/twiml/voice/stream/stream-1/output/stream-1.twiml b/twiml/voice/stream/stream-1/output/stream-1.twiml index 0a0c880a2f..1e338df25f 100644 --- a/twiml/voice/stream/stream-1/output/stream-1.twiml +++ b/twiml/voice/stream/stream-1/output/stream-1.twiml @@ -1,6 +1,7 @@ - + + The stream has started. diff --git a/twiml/voice/stream/stream-1/stream-1.10.x.java b/twiml/voice/stream/stream-1/stream-1.10.x.java index d1495e3e65..2fd868aa5b 100644 --- a/twiml/voice/stream/stream-1/stream-1.10.x.java +++ b/twiml/voice/stream/stream-1/stream-1.10.x.java @@ -1,4 +1,5 @@ import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Say; import com.twilio.twiml.voice.Start; import com.twilio.twiml.voice.Stream; import com.twilio.twiml.TwiMLException; @@ -6,11 +7,10 @@ public class Example { public static void main(String[] args) { - Stream stream = new Stream.Builder().name("Example Audio Stream") - .url("/service/wss://mystream.ngrok.io/audiostream").build(); + Stream stream = new Stream.Builder().name("Example Audio Stream").url("/service/wss://example.com/audiostream").build(); Start start = new Start.Builder().stream(stream).build(); - VoiceResponse response = new VoiceResponse.Builder().start(start) - .build(); + Say say = new Say.Builder("The stream has started.").build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).say(say).build(); try { System.out.println(response.toXml()); diff --git a/twiml/voice/stream/stream-1/stream-1.5.x.js b/twiml/voice/stream/stream-1/stream-1.5.x.js index ef39ce752d..4845cd27fc 100644 --- a/twiml/voice/stream/stream-1/stream-1.5.x.js +++ b/twiml/voice/stream/stream-1/stream-1.5.x.js @@ -3,8 +3,9 @@ const VoiceResponse = require('twilio').twiml.VoiceResponse; const response = new VoiceResponse(); const start = response.start(); start.stream({ - name: 'Example Audio Stream', - url: 'wss://mystream.ngrok.io/audiostream' + name: 'Example Audio Stream', + url: 'wss://example.com/audiostream', }); +response.say('The stream has started.'); console.log(response.toString()); diff --git a/twiml/voice/stream/stream-1/stream-1.6.x.cs b/twiml/voice/stream/stream-1/stream-1.6.x.cs index da36e817db..fef99506ca 100644 --- a/twiml/voice/stream/stream-1/stream-1.6.x.cs +++ b/twiml/voice/stream/stream-1/stream-1.6.x.cs @@ -9,8 +9,9 @@ static void Main() { var response = new VoiceResponse(); var start = new Start(); - start.Stream(name: "Example Audio Stream", url: "wss://mystream.ngrok.io/audiostream"); + start.Stream(name: "Example Audio Stream", url: "wss://example.com/audiostream"); response.Append(start); + response.Say("The stream has started."); Console.WriteLine(response.ToString()); } diff --git a/twiml/voice/stream/stream-1/stream-1.6.x.php b/twiml/voice/stream/stream-1/stream-1.6.x.php deleted file mode 100644 index 002e57e435..0000000000 --- a/twiml/voice/stream/stream-1/stream-1.6.x.php +++ /dev/null @@ -1,10 +0,0 @@ -start(); -$start->stream(['name' => 'Example Audio Stream', - 'url' => 'wss://mystream.ngrok.io/audiostream']); - -echo $response; diff --git a/twiml/voice/stream/stream-1/stream-1.7.x.java b/twiml/voice/stream/stream-1/stream-1.7.x.java deleted file mode 100644 index 4217176753..0000000000 --- a/twiml/voice/stream/stream-1/stream-1.7.x.java +++ /dev/null @@ -1,19 +0,0 @@ -import com.twilio.twiml.VoiceResponse; -import com.twilio.twiml.voice.Start; -import com.twilio.twiml.voice.Stream; -import com.twilio.twiml.TwiMLException; - - -public class Example { - public static void main(String[] args) { - Stream stream = new Stream.Builder().name("Example Audio Stream").url("/service/wss://mystream.ngrok.io/audiostream").build(); - Start start = new Start.Builder().stream(stream).build(); - VoiceResponse response = new VoiceResponse.Builder().start(start).build(); - - try { - System.out.println(response.toXml()); - } catch (TwiMLException e) { - e.printStackTrace(); - } - } -} diff --git a/twiml/voice/stream/stream-1/stream-1.7.x.rb b/twiml/voice/stream/stream-1/stream-1.7.x.rb index 0ab60531b2..2b67bb7695 100644 --- a/twiml/voice/stream/stream-1/stream-1.7.x.rb +++ b/twiml/voice/stream/stream-1/stream-1.7.x.rb @@ -2,7 +2,8 @@ response = Twilio::TwiML::VoiceResponse.new response.start do |start| - start.stream(name: 'Example Audio Stream', url: 'wss://mystream.ngrok.io/audiostream') + start.stream(name: 'Example Audio Stream', url: 'wss://example.com/audiostream') end +response.say(message: 'The stream has started.') puts response diff --git a/twiml/voice/stream/stream-1/stream-1.8.x.php b/twiml/voice/stream/stream-1/stream-1.8.x.php index d0f75d68a5..8c2c69a3fa 100644 --- a/twiml/voice/stream/stream-1/stream-1.8.x.php +++ b/twiml/voice/stream/stream-1/stream-1.8.x.php @@ -4,6 +4,7 @@ $response = new VoiceResponse(); $start = $response->start(); -$start->stream(['name' => 'Example Audio Stream', 'url' => 'wss://mystream.ngrok.io/audiostream']); +$start->stream(['name' => 'Example Audio Stream', 'url' => 'wss://example.com/audiostream']); +$response->say('The stream has started.'); echo $response; diff --git a/twiml/voice/stream/stream-1/stream-1.9.x.py b/twiml/voice/stream/stream-1/stream-1.9.x.py index e19c1fd51b..6a3dafe68b 100644 --- a/twiml/voice/stream/stream-1/stream-1.9.x.py +++ b/twiml/voice/stream/stream-1/stream-1.9.x.py @@ -1,10 +1,9 @@ -from twilio.twiml.voice_response import VoiceResponse, Start, Stream +from twilio.twiml.voice_response import VoiceResponse, Say, Start, Stream response = VoiceResponse() start = Start() -start.stream( - name='Example Audio Stream', url='wss://mystream.ngrok.io/audiostream' -) +start.stream(name='Example Audio Stream', url='wss://example.com/audiostream') response.append(start) +response.say('The stream has started.') print(response) From 5f2d3d434093fdb0e1346ccb8b367b5fe6251b5a Mon Sep 17 00:00:00 2001 From: vlim-twilio <106992286+vlim-twilio@users.noreply.github.com> Date: Mon, 29 Apr 2024 11:56:39 -0700 Subject: [PATCH 10/95] Update link-shortening-domain-cert.10.x.java Fixing typo ('Sring' to 'String') on line 12 --- .../link-shortening-domain-cert.10.x.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.10.x.java b/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.10.x.java index 5846bf9f8e..3f8d8860ac 100644 --- a/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.10.x.java +++ b/messaging/link-shortening/link-shortening-domain-cert/link-shortening-domain-cert.10.x.java @@ -9,7 +9,7 @@ public class Example { public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID"); public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN"); - Sring certAndPrivateKey = """-----BEGIN CERTIFICATE----- + String certAndPrivateKey = """-----BEGIN CERTIFICATE----- MIIDqDCCApACCQCBT5e22Q01fjANBgkqhkiG9w0BAQsFADCBlTELMAkGA1UEBhMC VVMxCzAJBgNVBAgMAkNBMRYwFAYDVQQHDA1TYW4gRnJhbmNpc2NvMRYwFAYDVQQK DA1FeGFtcGxlLCBJbmMuMRIwEAYDVQQLDAlUZXN0IERlcHQxFDASBgNVBAMMC2V4 From b1b6e0ee8ada94447b3e620ebe297df415866b63 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:34:47 -0400 Subject: [PATCH 11/95] Add WA OTP template example (#1068) * Add WA OTP template example * Sort output * Update messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json --- .../create-wa-otp-button-template.curl | 17 ++++++++++++ .../create-wa-otp-button-template/meta.json | 6 +++++ .../output/create-wa-otp-button-template.json | 27 +++++++++++++++++++ 3 files changed, 50 insertions(+) create mode 100644 messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.curl create mode 100644 messaging/content-templates/create-wa-otp-button-template/meta.json create mode 100644 messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json diff --git a/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.curl b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.curl new file mode 100644 index 0000000000..ebd1a9a61e --- /dev/null +++ b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.curl @@ -0,0 +1,17 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "WhatsApp OTP button template", + "language": "en", + "types": { + "whatsapp/authentication":{ + "add_security_recommendation": true, + "code_expiration_minutes": "30", + "actions": [{ + "type": "COPY_CODE", + "copy_code_text": "Copy verification code" + }] + } + } + }' diff --git a/messaging/content-templates/create-wa-otp-button-template/meta.json b/messaging/content-templates/create-wa-otp-button-template/meta.json new file mode 100644 index 0000000000..5a6f3f8eb3 --- /dev/null +++ b/messaging/content-templates/create-wa-otp-button-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a WhatsApp One-time Passcode (OTP) Button Template", + "highlight": "{}", + "title_override": "Create WhatsApp OTP Button Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json b/messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json new file mode 100644 index 0000000000..a604ba3c82 --- /dev/null +++ b/messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json @@ -0,0 +1,27 @@ +{ + "account_sid": "$TWILIO_ACCOUNT_SID", + "date_created": "2023-06-02T14:34:25Z", + "date_updated": "2023-06-02T14:34:25Z", + "friendly_name": "WhatsApp OTP button template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "whatsapp/authentication": { + "actions": [ + { + "copy_code_text": "Copy verification code", + "type": "COPY_CODE" + } + ], + "add_security_recommendation": true, + "body": "{{1}}", + "code_expiration_minutes": 30 + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": {} +} From 6e85b1ef4e9216e13ad34dc33875860b194e1113 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:36:03 -0400 Subject: [PATCH 12/95] Quick reply template sample (#1067) * Quick reply template sample * Update response to match order of actual response --- .../create-a-quick-reply-template.curl | 30 +++++++++++++++ .../create-a-quick-reply-template/meta.json | 6 +++ .../output/create-a-quick-reply-template.json | 38 +++++++++++++++++++ 3 files changed, 74 insertions(+) create mode 100644 messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.curl create mode 100644 messaging/content-templates/create-a-quick-reply-template/meta.json create mode 100644 messaging/content-templates/create-a-quick-reply-template/output/create-a-quick-reply-template.json diff --git a/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.curl b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.curl new file mode 100644 index 0000000000..279b0d68ce --- /dev/null +++ b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.curl @@ -0,0 +1,30 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Owl Air Support quick reply template", + "language": "en", + "variables": {"1":"Owl Air Customer"}, + "types": { + "twilio/quick-reply": { + "body": "Hi, {{1}} 👋 \nThanks for contacting Owl Air Support. How can I help?", + "actions": [ + { + "title": "Check flight status", + "id": "flightid1" + }, + { + "title": "Check gate number", + "id": "gateid1" + }, + { + "title": "Speak with an agent", + "id": "agentid1" + } + ] + }, + "twilio/text": { + "body": "Hi, {{1}}. \n Thanks for contacting Owl Air Support. How can I help?." + } + } +}' diff --git a/messaging/content-templates/create-a-quick-reply-template/meta.json b/messaging/content-templates/create-a-quick-reply-template/meta.json new file mode 100644 index 0000000000..ceee6f3d77 --- /dev/null +++ b/messaging/content-templates/create-a-quick-reply-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create Quick-Reply Template", + "highlight": "{}", + "title_override": "Create a Quick Reply Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-a-quick-reply-template/output/create-a-quick-reply-template.json b/messaging/content-templates/create-a-quick-reply-template/output/create-a-quick-reply-template.json new file mode 100644 index 0000000000..e948945f9e --- /dev/null +++ b/messaging/content-templates/create-a-quick-reply-template/output/create-a-quick-reply-template.json @@ -0,0 +1,38 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2022-08-29T10:43:20Z", + "date_updated": "2022-08-29T10:43:20Z", + "friendly_name": "Owl Air Support quick reply template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/text": { + "body": "Hi, {{ 1 }}. \n Thanks for contacting Owl Air Support. How can I help?." + }, + "twilio/quick-reply": { + "body": "Hi, {{ 1 }}. \n Thanks for contacting Owl Air Support. How can I help?", + "actions": [ + { + "id": "flightid1", + "title": "Check flight status" + }, + { + "id": "gateid1", + "title": "Check gate number" + }, + { + "id": "agentid1", + "title": "Speak with an agent" + } + ] + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "Owl Air Customer" + } +} From c0ed7491d73309f9055bde16e7357845f80b1a79 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:36:16 -0400 Subject: [PATCH 13/95] Add cta templates (#1066) * Add cta templates * Update response to match actual --- .../create-call-to-action-template.curl | 27 ++++++++++++++ .../create-call-to-action-template/meta.json | 6 +++ .../create-call-to-action-template.json | 37 +++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl create mode 100644 messaging/content-templates/create-call-to-action-template/meta.json create mode 100644 messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json diff --git a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl new file mode 100644 index 0000000000..f9c9ae55ea --- /dev/null +++ b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl @@ -0,0 +1,27 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Owl Air flight departure call to action template", + "language": "en", + "variables": {"1": "flight_number", + "2": "arrival_city", + "3": "departure_time", + "4": "gate_number", + "5": "url_suffix"}, + "types": { + "twilio/call-to-action": { + "body": "Owl Air: We will see you soon! Flight {{1}} to {{2}} departs at {{3}} from Gate {{4}}.", + "actions": [{ + "type": "URL", + "title": "Check Flight Status", + "url": "https://owlair.example.com/%7B%7B5%7D%7D" + }, + { + "type": "PHONE_NUMBER", + "title": "Call Support", + "phone": "+15555551234" + }] + } + } +}' diff --git a/messaging/content-templates/create-call-to-action-template/meta.json b/messaging/content-templates/create-call-to-action-template/meta.json new file mode 100644 index 0000000000..c0dd81efc2 --- /dev/null +++ b/messaging/content-templates/create-call-to-action-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a Call-to-action Template", + "highlight": "{}", + "title_override": "Create Call-To-Action Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json b/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json new file mode 100644 index 0000000000..ec1dd66643 --- /dev/null +++ b/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json @@ -0,0 +1,37 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2022-01-15T17:09:58Z", + "date_updated": "2022-01-15T17:09:58Z", + "friendly_name": "Owl Air flight departure call to action template", + "language": "en", + "links": { + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests", + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/call-to-action": { + "actions": [ + { + "url": "https://owlair.example.com/%7B%7B5%7D%7D", + "type": "URL", + "title": "Check Flight Status" + }, + { + "phone_number": "+15555551234", + "type": "PHONE_NUMBER", + "title": "Call Support" + } + ], + "body": "Owl Air: We will see you soon! Flight {{1}} to {{2}} departs at {{3}} from Gate {{4}}." + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "flight_number", + "3": "departure_time", + "2": "arrival_city", + "5": "url_suffix", + "4": "gate_number" + } +} From 62e5b7c3bb1ad03532003e813abc3db65e1ed68d Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:36:27 -0400 Subject: [PATCH 14/95] Add card template examples (#1065) * Add card template examples * Sort output --- .../create-card-template.curl | 31 +++++++++++++++ .../create-card-template/meta.json | 6 +++ .../output/create-card-template.json | 39 +++++++++++++++++++ 3 files changed, 76 insertions(+) create mode 100644 messaging/content-templates/create-card-template/create-card-template.curl create mode 100644 messaging/content-templates/create-card-template/meta.json create mode 100644 messaging/content-templates/create-card-template/output/create-card-template.json diff --git a/messaging/content-templates/create-card-template/create-card-template.curl b/messaging/content-templates/create-card-template/create-card-template.curl new file mode 100644 index 0000000000..bf3ee32e12 --- /dev/null +++ b/messaging/content-templates/create-card-template/create-card-template.curl @@ -0,0 +1,31 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Owl Air coupon card template", + "language": "en", + "variables": { + "1": "coupon_code" + }, + "types": { + "twilio/card": { + "title": "Congratulations, you'\''ve reached Elite status! Add code {{1}} for 10% off.", + "subtitle": "To unsubscribe, reply Stop", + "actions": [ + { + "url": "https://owlair.example.com/", + "title": "Order Online", + "type": "URL" + }, + { + "phone": "+15551234567", + "title": "Call Us", + "type": "PHONE_NUMBER" + } + ] + }, + "twilio/text": { + "body": "Congratulations, your account reached Elite status, you are now eligible for 10% off any flight! Just add coupon code {{1}} to check out." + } + } +}' diff --git a/messaging/content-templates/create-card-template/meta.json b/messaging/content-templates/create-card-template/meta.json new file mode 100644 index 0000000000..03addfe992 --- /dev/null +++ b/messaging/content-templates/create-card-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a Card Template", + "highlight": "{}", + "title_override": "Create Card Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-card-template/output/create-card-template.json b/messaging/content-templates/create-card-template/output/create-card-template.json new file mode 100644 index 0000000000..ec2cbbca17 --- /dev/null +++ b/messaging/content-templates/create-card-template/output/create-card-template.json @@ -0,0 +1,39 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2022-08-30T09:19:17Z", + "date_updated": "2022-08-30T09:19:17Z", + "friendly_name": "Owl Air coupon card template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/card": { + "actions": [ + { + "title": "Order Online", + "type": "URL", + "url": "https://owlair.example.com/" + }, + { + "phone_number": "+15551234567", + "title": "Call Us", + "type": "PHONE_NUMBER" + } + ], + "body": null, + "media": null, + "subtitle": "To unsubscribe, reply Stop", + "title": "Congratulations, you have reached Elite status! Add code {{1}} for 10% off." + }, + "twilio/text": { + "body": "Congratulations, your account reached Elite status, you are now eligible for 10% off any flight! Just add coupon code {{1}} to check out." + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "coupon_code" + } +} From df751313f2b4936409d8dcca9c040294b16e9c88 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:36:38 -0400 Subject: [PATCH 15/95] Add list picker content templates sample (#1064) * Add list picker content templates sample * Sort output --- .../create-list-picker-template.curl | 36 ++++++++++++++++ .../create-list-picker-template/meta.json | 6 +++ .../output/create-list-picker-template.json | 42 +++++++++++++++++++ 3 files changed, 84 insertions(+) create mode 100644 messaging/content-templates/create-list-picker-template/create-list-picker-template.curl create mode 100644 messaging/content-templates/create-list-picker-template/meta.json create mode 100644 messaging/content-templates/create-list-picker-template/output/create-list-picker-template.json diff --git a/messaging/content-templates/create-list-picker-template/create-list-picker-template.curl b/messaging/content-templates/create-list-picker-template/create-list-picker-template.curl new file mode 100644 index 0000000000..218fa70f36 --- /dev/null +++ b/messaging/content-templates/create-list-picker-template/create-list-picker-template.curl @@ -0,0 +1,36 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Owl Air list picker template", + "language": "en", + "variables": { + "1": "end_date" + }, + "types": { + "twilio/list-picker": { + "body": "Owl Air Flash Sale! Hurry! Sale ends on {{1}}!", + "button": "Select a destination", + "items": [ + { + "item": "SFO to NYC for $299", + "description": "Owl Air Flight 1337 to LGA", + "id": "SFO1337" + }, + { + "item": "OAK to Denver for $149", + "description": "Owl Air Flight 5280 to DEN", + "id": "OAK5280" + }, + { + "item": "LAX to Chicago for $199", + "description": "Owl Air Flight 96 to ORD", + "id": "LAX96" + } + ] + }, + "twilio/text": { + "body": "We have flights to the following destinations: (1) New York City, (2) Denver, (3) Chicago. Hurry! Sale ends on {{1}}!" + } + } +}' diff --git a/messaging/content-templates/create-list-picker-template/meta.json b/messaging/content-templates/create-list-picker-template/meta.json new file mode 100644 index 0000000000..74838a678e --- /dev/null +++ b/messaging/content-templates/create-list-picker-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a List Picker Template", + "highlight": "{}", + "title_override": "Create List Picker Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-list-picker-template/output/create-list-picker-template.json b/messaging/content-templates/create-list-picker-template/output/create-list-picker-template.json new file mode 100644 index 0000000000..ccef263f2f --- /dev/null +++ b/messaging/content-templates/create-list-picker-template/output/create-list-picker-template.json @@ -0,0 +1,42 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2022-08-29T15:46:11Z", + "date_updated": "2022-08-29T15:46:11Z", + "friendly_name": "Owl Air list picker template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/list-picker": { + "body": "Owl Air Flash Sale! Hurry! Sale ends on {{1}}!", + "button": "Select a destination", + "items": [ + { + "description": "Owl Air Flight 1337 to LGA", + "id": "SFO1337", + "item": "SFO to NYC for $299" + }, + { + "description": "Owl Air Flight 5280 to DEN", + "id": "OAK5280", + "item": "OAK to Denver for $149" + }, + { + "description": "Owl Air Flight 96 to ORD", + "id": "LAX96", + "item": "LAX to Chicago for $199" + } + ] + }, + "twilio/text": { + "body": "We have flights to the following destinations: (1) SFO, (2) OAK, (3) LAX. Hurry! Sale ends on {{1}}!" + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "end_date" + } +} From 330181d528e8b3e435016687f0b2bd745e0e159b Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:37:09 -0400 Subject: [PATCH 16/95] Add content templates location samples (#1063) * Add content templates location samples * Update output to match real output --- .../create-location-template.curl | 17 +++++++++++++ .../create-location-template/meta.json | 6 +++++ .../output/create-location-template.json | 24 +++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 messaging/content-templates/create-location-template/create-location-template.curl create mode 100644 messaging/content-templates/create-location-template/meta.json create mode 100644 messaging/content-templates/create-location-template/output/create-location-template.json diff --git a/messaging/content-templates/create-location-template/create-location-template.curl b/messaging/content-templates/create-location-template/create-location-template.curl new file mode 100644 index 0000000000..c60c311726 --- /dev/null +++ b/messaging/content-templates/create-location-template/create-location-template.curl @@ -0,0 +1,17 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Owl Air location template", + "language": "en", + "types": { + "twilio/text": { + "body": "Owl Air: Time to board, SFO is located at San Francisco International Airport, P.O. Box 8097, San Francisco, CA 94128 " + }, + "twilio/location": { + "latitude": 37.62159755922449, + "longitude": -122.37888566473057, + "label": "Time to Board @ SFO" + } + } +}' diff --git a/messaging/content-templates/create-location-template/meta.json b/messaging/content-templates/create-location-template/meta.json new file mode 100644 index 0000000000..4d3055ae13 --- /dev/null +++ b/messaging/content-templates/create-location-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a Location Template", + "highlight": "{}", + "title_override": "Create Location Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-location-template/output/create-location-template.json b/messaging/content-templates/create-location-template/output/create-location-template.json new file mode 100644 index 0000000000..e5ef336a53 --- /dev/null +++ b/messaging/content-templates/create-location-template/output/create-location-template.json @@ -0,0 +1,24 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2022-08-29T15:23:12Z", + "date_updated": "2022-08-29T15:23:12Z", + "friendly_name": "Owl Air location template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/location": { + "label": "Time to Board @ SFO", + "latitude": 37.62159755922449, + "longitude": -122.37888566473057 + }, + "twilio/text": { + "body": "Owl Air: Time to board, SFO is located at San Francisco International Airport, P.O. Box 8097, San Francisco, CA 94128 " + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": {} +} From 544672bac026d8a2d936bffeb4591d64e2f66b23 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:37:22 -0400 Subject: [PATCH 17/95] Add media templates sample (#1062) * Add media templates sample * Sort output --- .../create-media-template.curl | 14 +++++++++++ .../create-media-template/meta.json | 6 +++++ .../output/create-media-template.json | 24 +++++++++++++++++++ 3 files changed, 44 insertions(+) create mode 100644 messaging/content-templates/create-media-template/create-media-template.curl create mode 100644 messaging/content-templates/create-media-template/meta.json create mode 100644 messaging/content-templates/create-media-template/output/create-media-template.json diff --git a/messaging/content-templates/create-media-template/create-media-template.curl b/messaging/content-templates/create-media-template/create-media-template.curl new file mode 100644 index 0000000000..4932aadcea --- /dev/null +++ b/messaging/content-templates/create-media-template/create-media-template.curl @@ -0,0 +1,14 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Thank you for your order media template", + "language": "en", + "variables": {"1":"OrderNumber"}, + "types": { + "twilio/media": { + "body": "Thank you for your order {{1}}", + "media": ["https://twilio-cms-prod.s3.amazonaws.com/images/library-logo-resource2x.width-1000.png"] + } + } +}' diff --git a/messaging/content-templates/create-media-template/meta.json b/messaging/content-templates/create-media-template/meta.json new file mode 100644 index 0000000000..239b716038 --- /dev/null +++ b/messaging/content-templates/create-media-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a Media Template", + "highlight": "{}", + "title_override": "Create Media Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-media-template/output/create-media-template.json b/messaging/content-templates/create-media-template/output/create-media-template.json new file mode 100644 index 0000000000..193c226bed --- /dev/null +++ b/messaging/content-templates/create-media-template/output/create-media-template.json @@ -0,0 +1,24 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2022-08-29T15:12:22Z", + "date_updated": "2022-08-29T15:12:22Z", + "friendly_name": "Thank you for your order media template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/media": { + "body": "Thank you for your order {{1}}", + "media": [ + "https://twilio-cms-prod.s3.amazonaws.com/images/library-logo-resource2x.width-1000.png" + ] + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "OrderNumber" + } +} From 952633639df237447024956b6012b28216860dc6 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:37:38 -0400 Subject: [PATCH 18/95] Add text template examples (#1061) * Add text template examples * Sort output --- .../create-text-template.curl | 13 +++++++ .../create-text-template.java | 36 +++++++++++++++++++ .../create-text-template/meta.json | 6 ++++ .../output/create-text-template.json | 21 +++++++++++ 4 files changed, 76 insertions(+) create mode 100644 messaging/content-templates/create-text-template/create-text-template.curl create mode 100644 messaging/content-templates/create-text-template/create-text-template.java create mode 100644 messaging/content-templates/create-text-template/meta.json create mode 100644 messaging/content-templates/create-text-template/output/create-text-template.json diff --git a/messaging/content-templates/create-text-template/create-text-template.curl b/messaging/content-templates/create-text-template/create-text-template.curl new file mode 100644 index 0000000000..f23b2a12f1 --- /dev/null +++ b/messaging/content-templates/create-text-template/create-text-template.curl @@ -0,0 +1,13 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Owl Air Support text template", + "language": "en", + "variables": {"1":"name"}, + "types": { + "twilio/text": { + "body": "Hi, {{1}}. \n Thanks for contacting Owl Air Support. How can I help?." + } + } +}' diff --git a/messaging/content-templates/create-text-template/create-text-template.java b/messaging/content-templates/create-text-template/create-text-template.java new file mode 100644 index 0000000000..e6f52ca0c9 --- /dev/null +++ b/messaging/content-templates/create-text-template/create-text-template.java @@ -0,0 +1,36 @@ +// Install the Java helper library from twilio.com/docs/java/install +import com.twilio.Twilio; +import com.twilio.exception.ApiException; +import com.twilio.rest.content.v1.Content; + +import java.util.Map; + +public class Example { + // Find your Account SID and Auth Token at twilio.com/console + // and set the environment variables. See http://twil.io/secure + public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID"); + public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN"); + + public static void main(String[] args) { + // Initialize the SDK + Twilio.init(ACCOUNT_SID, AUTH_TOKEN); + + // Setup Content + Content.TwilioText type = new Content.TwilioText(); + type.setBody("Hi, {{1}}. \n Thanks for contacting Owl Air Support. How can I help?."); + + Content.Types types = new Content.Types(); + types.setTwilioText(type); + + // Create Content + Content.ContentCreateRequest createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setVariables(Map.of("1", "name")); + createRequest.setFriendlyName("Owl Air Support text template"); + try { + Content content = Content.creator(createRequest).create(); + System.out.println(content.getSid()); + } catch (ApiException e) { + e.printStackTrace(); + } + } +} diff --git a/messaging/content-templates/create-text-template/meta.json b/messaging/content-templates/create-text-template/meta.json new file mode 100644 index 0000000000..e583f28a46 --- /dev/null +++ b/messaging/content-templates/create-text-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a Text Template", + "highlight": "{}", + "title_override": "Create Text Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-text-template/output/create-text-template.json b/messaging/content-templates/create-text-template/output/create-text-template.json new file mode 100644 index 0000000000..b4f86ea33f --- /dev/null +++ b/messaging/content-templates/create-text-template/output/create-text-template.json @@ -0,0 +1,21 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2022-09-01T12:39:19Z", + "date_updated": "2022-09-01T12:39:19Z", + "friendly_name": "Owl Air Support text template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/text": { + "body": "Hi, {{1}}. \n Thanks for contacting Owl Air Support. How can I help?." + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "name" + } +} From a650a5591db6e7fce9319ff43c19db1d9493432d Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 14:38:42 -0400 Subject: [PATCH 19/95] Add variables examples (#1060) * Add variables examples * Sort output --- .../use-content-variables/meta.json | 6 +++ .../output/use-content-variables.json | 38 +++++++++++++++++++ .../use-content-variables.curl | 29 ++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 messaging/content-templates/use-content-variables/meta.json create mode 100644 messaging/content-templates/use-content-variables/output/use-content-variables.json create mode 100644 messaging/content-templates/use-content-variables/use-content-variables.curl diff --git a/messaging/content-templates/use-content-variables/meta.json b/messaging/content-templates/use-content-variables/meta.json new file mode 100644 index 0000000000..4178f0adf6 --- /dev/null +++ b/messaging/content-templates/use-content-variables/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Use Variables with Templates", + "highlight": "{}", + "title_override": "Use Variables with Content Templates", + "description_override": "" +} diff --git a/messaging/content-templates/use-content-variables/output/use-content-variables.json b/messaging/content-templates/use-content-variables/output/use-content-variables.json new file mode 100644 index 0000000000..792f0b89ad --- /dev/null +++ b/messaging/content-templates/use-content-variables/output/use-content-variables.json @@ -0,0 +1,38 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2022-11-17T08:52:12Z", + "date_updated": "2022-11-17T08:52:12Z", + "friendly_name": "Owl Air elite status card template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/card": { + "actions": [ + { + "title": "Order Online", + "type": "URL", + "url": "https://owlair.example.com/%7B%7B2%7D%7D" + } + ], + "body": null, + "media": [ + "https://twilio-cms-prod.s3.amazonaws.com/%7B%7B3%7D%7D" + ], + "subtitle": "To unsubscribe, reply Stop", + "title": "Congratulations, you've reached Elite status! Add code {{1}} for 10% off." + }, + "twilio/text": { + "body": "Congratulations, you've reached Elite status! Add code {{1}} for 10% off." + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "coupon_code", + "2": "docs", + "3": "images/library-logo-resource2x.width-1000.png" + } +} diff --git a/messaging/content-templates/use-content-variables/use-content-variables.curl b/messaging/content-templates/use-content-variables/use-content-variables.curl new file mode 100644 index 0000000000..82640e52e3 --- /dev/null +++ b/messaging/content-templates/use-content-variables/use-content-variables.curl @@ -0,0 +1,29 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Owl Air elite status card template", + "language": "en", + "variables": { + "1": "coupon_code", + "2": "docs", + "3": "images/library-logo-resource2x.width-1000.png" + }, + "types": { + "twilio/card": { + "title": "Congratulations, you've reached Elite status! Add code {{1}} for 10% off.", + "subtitle": "To unsubscribe, reply Stop", + "actions": [ + { + "url": "https://twilio.com/%7B%7B2%7D%7D", + "title": "Order Online", + "type": "URL" + } + ], + "media": ["https://twilio-cms-prod.s3.amazonaws.com/%7B%7B3%7D%7D"] + }, + "twilio/text": { + "body": "Congratulations, you've reached Elite status! Add code {{1}} for 10% off." + } + } +}' From 5351843c556159ec9f59dd1732f96d8e1249fa61 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 16:09:16 -0400 Subject: [PATCH 20/95] Fix meta files (#1070) --- .../content-templates/create-a-quick-reply-template/meta.json | 4 +--- .../create-call-to-action-template/meta.json | 4 +--- messaging/content-templates/create-card-template/meta.json | 4 +--- .../content-templates/create-list-picker-template/meta.json | 4 +--- .../content-templates/create-location-template/meta.json | 4 +--- messaging/content-templates/create-media-template/meta.json | 4 +--- messaging/content-templates/create-text-template/meta.json | 4 +--- .../content-templates/create-wa-otp-button-template/meta.json | 4 +--- messaging/content-templates/use-content-variables/meta.json | 4 +--- 9 files changed, 9 insertions(+), 27 deletions(-) diff --git a/messaging/content-templates/create-a-quick-reply-template/meta.json b/messaging/content-templates/create-a-quick-reply-template/meta.json index ceee6f3d77..9fa69172a5 100644 --- a/messaging/content-templates/create-a-quick-reply-template/meta.json +++ b/messaging/content-templates/create-a-quick-reply-template/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Create Quick-Reply Template", - "highlight": "{}", - "title_override": "Create a Quick Reply Template", - "description_override": "" + "type": "server" } diff --git a/messaging/content-templates/create-call-to-action-template/meta.json b/messaging/content-templates/create-call-to-action-template/meta.json index c0dd81efc2..079fe35693 100644 --- a/messaging/content-templates/create-call-to-action-template/meta.json +++ b/messaging/content-templates/create-call-to-action-template/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Create a Call-to-action Template", - "highlight": "{}", - "title_override": "Create Call-To-Action Template", - "description_override": "" + "type": "server" } diff --git a/messaging/content-templates/create-card-template/meta.json b/messaging/content-templates/create-card-template/meta.json index 03addfe992..ace1214337 100644 --- a/messaging/content-templates/create-card-template/meta.json +++ b/messaging/content-templates/create-card-template/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Create a Card Template", - "highlight": "{}", - "title_override": "Create Card Template", - "description_override": "" + "type": "server" } diff --git a/messaging/content-templates/create-list-picker-template/meta.json b/messaging/content-templates/create-list-picker-template/meta.json index 74838a678e..ac3e3c9122 100644 --- a/messaging/content-templates/create-list-picker-template/meta.json +++ b/messaging/content-templates/create-list-picker-template/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Create a List Picker Template", - "highlight": "{}", - "title_override": "Create List Picker Template", - "description_override": "" + "type": "server" } diff --git a/messaging/content-templates/create-location-template/meta.json b/messaging/content-templates/create-location-template/meta.json index 4d3055ae13..9fbd2ff24f 100644 --- a/messaging/content-templates/create-location-template/meta.json +++ b/messaging/content-templates/create-location-template/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Create a Location Template", - "highlight": "{}", - "title_override": "Create Location Template", - "description_override": "" + "type": "server" } diff --git a/messaging/content-templates/create-media-template/meta.json b/messaging/content-templates/create-media-template/meta.json index 239b716038..f0d57d7f43 100644 --- a/messaging/content-templates/create-media-template/meta.json +++ b/messaging/content-templates/create-media-template/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Create a Media Template", - "highlight": "{}", - "title_override": "Create Media Template", - "description_override": "" + "type": "server" } diff --git a/messaging/content-templates/create-text-template/meta.json b/messaging/content-templates/create-text-template/meta.json index e583f28a46..bb7181e1ff 100644 --- a/messaging/content-templates/create-text-template/meta.json +++ b/messaging/content-templates/create-text-template/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Create a Text Template", - "highlight": "{}", - "title_override": "Create Text Template", - "description_override": "" + "type": "server" } diff --git a/messaging/content-templates/create-wa-otp-button-template/meta.json b/messaging/content-templates/create-wa-otp-button-template/meta.json index 5a6f3f8eb3..7d1952fbb6 100644 --- a/messaging/content-templates/create-wa-otp-button-template/meta.json +++ b/messaging/content-templates/create-wa-otp-button-template/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Create a WhatsApp One-time Passcode (OTP) Button Template", - "highlight": "{}", - "title_override": "Create WhatsApp OTP Button Template", - "description_override": "" + "type": "server" } diff --git a/messaging/content-templates/use-content-variables/meta.json b/messaging/content-templates/use-content-variables/meta.json index 4178f0adf6..0c7aeda2af 100644 --- a/messaging/content-templates/use-content-variables/meta.json +++ b/messaging/content-templates/use-content-variables/meta.json @@ -1,6 +1,4 @@ { "title": "Content Templates API - Use Variables with Templates", - "highlight": "{}", - "title_override": "Use Variables with Content Templates", - "description_override": "" + "type": "server" } From f5d40892489ce1453ff8b41baf91d9068bf1a67a Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 10 Jun 2024 16:09:28 -0400 Subject: [PATCH 21/95] Add WA Card template examples (#1069) * Add WA Card template examples * Sort output * Update messaging/content-templates/create-whatsapp-card/meta.json --- .../create-whatsapp-card.curl | 29 +++++++++++++++ .../create-whatsapp-card/meta.json | 6 ++++ .../output/create-whatsapp-card.json | 36 +++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 messaging/content-templates/create-whatsapp-card/create-whatsapp-card.curl create mode 100644 messaging/content-templates/create-whatsapp-card/meta.json create mode 100644 messaging/content-templates/create-whatsapp-card/output/create-whatsapp-card.json diff --git a/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.curl b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.curl new file mode 100644 index 0000000000..bb7875fe56 --- /dev/null +++ b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.curl @@ -0,0 +1,29 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Owl Air coupon card template", + "language": "en", + "variables": { + "1": "coupon_code" + }, + "types": { + "whatsapp/card": { + "body": "Congratulations, you have reached Elite status! Add code {{1}} for 10% off.", + "header_text": "This is a {{1}} card", + "footer": "To unsubscribe, reply Stop", + "actions": [ + { + "url": "https://owlair.example.com/", + "title": "Order Online", + "type": "URL" + }, + { + "phone": "+15555554567", + "title": "Call Us", + "type": "PHONE_NUMBER" + } + ] + } + } +}' diff --git a/messaging/content-templates/create-whatsapp-card/meta.json b/messaging/content-templates/create-whatsapp-card/meta.json new file mode 100644 index 0000000000..6c34b97b33 --- /dev/null +++ b/messaging/content-templates/create-whatsapp-card/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a WhatsApp Card Template", + "highlight": "{}", + "title_override": "Create a WhatsApp Card Template", + "description_override": "" +} diff --git a/messaging/content-templates/create-whatsapp-card/output/create-whatsapp-card.json b/messaging/content-templates/create-whatsapp-card/output/create-whatsapp-card.json new file mode 100644 index 0000000000..dbe99b5eee --- /dev/null +++ b/messaging/content-templates/create-whatsapp-card/output/create-whatsapp-card.json @@ -0,0 +1,36 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2023-08-03T14:54:47Z", + "date_updated": "2023-08-03T14:54:47Z", + "friendly_name": "Owl Air coupon card template", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "whatsapp/card": { + "actions": [ + { + "title": "Order Online", + "type": "URL", + "url": "https://owlair.example.com/" + }, + { + "phone": "+1555554567", + "title": "Call Us", + "type": "PHONE_NUMBER" + } + ], + "body": "Congratulations, you have reached Elite status! Add code {{1}} for 10% off.", + "footer": "To unsubscribe, reply Stop", + "header_text": "This is a {{1}} card", + "media": null + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "coupon_code" + } +} From e6b540ab0c511f08970e42301f5538b593c1ce9c Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Tue, 11 Jun 2024 09:54:14 -0400 Subject: [PATCH 22/95] Add whatsapp approvalrequest sample (#1071) --- .../submit-a-template-for-whatsapp-approval/meta.json | 5 +++++ .../output/submit-a-template-for-whatsapp-approval.json | 7 +++++++ .../submit-a-template-for-whatsapp-approval.curl | 7 +++++++ 3 files changed, 19 insertions(+) create mode 100644 messaging/content-templates/submit-a-template-for-whatsapp-approval/meta.json create mode 100644 messaging/content-templates/submit-a-template-for-whatsapp-approval/output/submit-a-template-for-whatsapp-approval.json create mode 100644 messaging/content-templates/submit-a-template-for-whatsapp-approval/submit-a-template-for-whatsapp-approval.curl diff --git a/messaging/content-templates/submit-a-template-for-whatsapp-approval/meta.json b/messaging/content-templates/submit-a-template-for-whatsapp-approval/meta.json new file mode 100644 index 0000000000..00957afb6f --- /dev/null +++ b/messaging/content-templates/submit-a-template-for-whatsapp-approval/meta.json @@ -0,0 +1,5 @@ +{ + "title": "Content API - Create WhatsApp ApprovalRequest", + "description": "Submit a Content Template for WhatsApp Approval", + "type": "server" +} \ No newline at end of file diff --git a/messaging/content-templates/submit-a-template-for-whatsapp-approval/output/submit-a-template-for-whatsapp-approval.json b/messaging/content-templates/submit-a-template-for-whatsapp-approval/output/submit-a-template-for-whatsapp-approval.json new file mode 100644 index 0000000000..4cf5f3a9f2 --- /dev/null +++ b/messaging/content-templates/submit-a-template-for-whatsapp-approval/output/submit-a-template-for-whatsapp-approval.json @@ -0,0 +1,7 @@ +{ + "category": "TRANSPORTATION_UPDATE", + "status": "received", + "rejection_reason": "", + "name": "flight_replies", + "content_type": "twilio/quick-reply" +} \ No newline at end of file diff --git a/messaging/content-templates/submit-a-template-for-whatsapp-approval/submit-a-template-for-whatsapp-approval.curl b/messaging/content-templates/submit-a-template-for-whatsapp-approval/submit-a-template-for-whatsapp-approval.curl new file mode 100644 index 0000000000..3dd66ac3c7 --- /dev/null +++ b/messaging/content-templates/submit-a-template-for-whatsapp-approval/submit-a-template-for-whatsapp-approval.curl @@ -0,0 +1,7 @@ +curl -X POST 'https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "name": "flight_replies", + "category": "UTILITY" +}' \ No newline at end of file From c7292cc98c87d54914917e95a2c49931cf03627e Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Tue, 11 Jun 2024 09:54:22 -0400 Subject: [PATCH 23/95] Add fetch all content resources samples (#1072) --- ...ch-all-content-resources-example.json.curl | 2 + .../fetch-all-content-resources/meta.json | 5 ++ .../output/fetch-all-content-resources.json | 84 +++++++++++++++++++ 3 files changed, 91 insertions(+) create mode 100644 messaging/content-templates/fetch-all-content-resources/fetch-all-content-resources-example.json.curl create mode 100644 messaging/content-templates/fetch-all-content-resources/meta.json create mode 100644 messaging/content-templates/fetch-all-content-resources/output/fetch-all-content-resources.json diff --git a/messaging/content-templates/fetch-all-content-resources/fetch-all-content-resources-example.json.curl b/messaging/content-templates/fetch-all-content-resources/fetch-all-content-resources-example.json.curl new file mode 100644 index 0000000000..93196e95cc --- /dev/null +++ b/messaging/content-templates/fetch-all-content-resources/fetch-all-content-resources-example.json.curl @@ -0,0 +1,2 @@ +curl -X GET "https://content.twilio.com/v1/Content+-u%20$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN/%20No%20newline%20at%20end%20of%20filediff%20--git%20a/messaging/content-templates/fetch-all-content-resources/meta.json%20b/messaging/content-templates/fetch-all-content-resources/meta.jsonnew%20file%20mode%20100644index%200000000000..66b8c15047---%20/dev/null+++%20b/messaging/content-templates/fetch-all-content-resources/meta.json@@%20-0,0%20+1,5%20@@+%7B+"title": "Content Templates API - Fetch all Content Resources", + "title_override": "Fetch all Content Resources", + "type": "server" +} diff --git a/messaging/content-templates/fetch-all-content-resources/output/fetch-all-content-resources.json b/messaging/content-templates/fetch-all-content-resources/output/fetch-all-content-resources.json new file mode 100644 index 0000000000..d7ec03de46 --- /dev/null +++ b/messaging/content-templates/fetch-all-content-resources/output/fetch-all-content-resources.json @@ -0,0 +1,84 @@ +{ + "meta": { + "page": 0, + "page_size": 50, + "first_page_url": "https://content.twilio.com/v1/Content?PageSize=50&Page=0", + "previous_page_url": null, + "url": "https://content.twilio.com/v1/Content?PageSize=50&Page=0", + "next_page_url": "https://content.twilio.com/v1/Content?PageSize=50&Page=1&PageToken=DNHXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX-1678723520", + "key": "contents" + }, + "contents": [ + { + "language": "en", + "date_updated": "2023-03-31T16:06:50Z", + "variables": { + "1": "07:00", + "3": "owl.jpg", + "2": "03/01/2023" + }, + "friendly_name": "whatsappcard2", + "account_sid": "ACXXXXXXXXXXXXXXX", + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2023-03-31T16:06:50Z", + "types": { + "twilio/card": { + "body": null, + "media": [ + "https://twilio.example.com/%7B%7B3%7D%7D" + ], + "subtitle": null, + "actions": [ + { + "index": 0, + "type": "QUICK_REPLY", + "id": "Stop", + "title": "Stop Updates" + } + ], + "title": "See you at {{1}} on {{2}}. Thank you." + } + }, + "links": { + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests", + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp" + } + }, + { + "language": "en", + "date_updated": "2023-03-31T15:50:24Z", + "variables": { + "1": "07:00", + "2": "03/01/2023" + }, + "friendly_name": "whatswppward_01234", + "account_sid": "ACXXXXXXXXXXXXXXX", + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2023-03-31T15:50:24Z", + "types": { + "twilio/card": { + "body": null, + "media": [ + "https://twilio.example.com/owl.jpg" + ], + "subtitle": null, + "actions": [ + { + "index": 0, + "type": "QUICK_REPLY", + "id": "Stop", + "title": "Stop Updates" + } + ], + "title": "See you at {{1}} on {{2}}. Thank you." + } + }, + "links": { + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests", + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp" + } + } + ] +} From 0ce6f0ce5aca0acb976aa32086190cebcd12382d Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Tue, 11 Jun 2024 09:54:36 -0400 Subject: [PATCH 24/95] Add catalog all template samples (#1073) --- .../create-catalog-all-items.curl | 18 ++++++++++++ .../create-catalog-all-items/meta.json | 6 ++++ .../output/create-catalog-all-items.json | 28 +++++++++++++++++++ 3 files changed, 52 insertions(+) create mode 100644 messaging/content-templates/create-catalog-all-items/create-catalog-all-items.curl create mode 100644 messaging/content-templates/create-catalog-all-items/meta.json create mode 100644 messaging/content-templates/create-catalog-all-items/output/create-catalog-all-items.json diff --git a/messaging/content-templates/create-catalog-all-items/create-catalog-all-items.curl b/messaging/content-templates/create-catalog-all-items/create-catalog-all-items.curl new file mode 100644 index 0000000000..3d723917e0 --- /dev/null +++ b/messaging/content-templates/create-catalog-all-items/create-catalog-all-items.curl @@ -0,0 +1,18 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "Catalog - all products", + "language": "en", + "variables": {"1": "menu_title", "2": "menu_name"}, + "types": { + "twilio/catalog": { + "id": "1017234312776586", + "title": "The Menu: {{1}}", + "body": "Hi, check out this menu {{2}}", + "subtitle": "Great deals", + "thumbnail_item_id": "48rme2i4po" + } + } + }' + diff --git a/messaging/content-templates/create-catalog-all-items/meta.json b/messaging/content-templates/create-catalog-all-items/meta.json new file mode 100644 index 0000000000..76de9f286b --- /dev/null +++ b/messaging/content-templates/create-catalog-all-items/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a Full Catalog Template", + "title_override": "Create Full Catalog Content Template", + "description_override": "", + "type": "server" +} diff --git a/messaging/content-templates/create-catalog-all-items/output/create-catalog-all-items.json b/messaging/content-templates/create-catalog-all-items/output/create-catalog-all-items.json new file mode 100644 index 0000000000..bad56c50f2 --- /dev/null +++ b/messaging/content-templates/create-catalog-all-items/output/create-catalog-all-items.json @@ -0,0 +1,28 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2024-06-10T22:02:53Z", + "date_updated": "2024-06-10T22:02:53Z", + "friendly_name": "Catalog - all products", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/catalog": { + "body": "Hi, check out this menu {{2}}", + "dynamic_items": null, + "id": "1017234312776586", + "items": null, + "subtitle": "Great deals", + "thumbnail_item_id": "48rme2i4po", + "title": "The Menu: {{1}}" + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "menu_title", + "2": "menu_name" + } +} \ No newline at end of file From 9793ec3c3bfe3b99e3ba48cf070576621861f640 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Tue, 11 Jun 2024 09:54:47 -0400 Subject: [PATCH 25/95] Add catalog static samples (#1074) --- .../create-catalog-static-items.curl | 18 +++++++++ .../create-catalog-static-items/meta.json | 7 ++++ .../output/create-catalog-static-items.json | 37 +++++++++++++++++++ 3 files changed, 62 insertions(+) create mode 100644 messaging/content-templates/create-catalog-static-items/create-catalog-static-items.curl create mode 100644 messaging/content-templates/create-catalog-static-items/meta.json create mode 100644 messaging/content-templates/create-catalog-static-items/output/create-catalog-static-items.json diff --git a/messaging/content-templates/create-catalog-static-items/create-catalog-static-items.curl b/messaging/content-templates/create-catalog-static-items/create-catalog-static-items.curl new file mode 100644 index 0000000000..087278f212 --- /dev/null +++ b/messaging/content-templates/create-catalog-static-items/create-catalog-static-items.curl @@ -0,0 +1,18 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "fixedproducts", + "language": "en", + "variables": {"1": "menu_ad", "2": "menu_name"}, + "types": { + "twilio/catalog": { + "id": "1017234312776586", + "body": "Hi, check out this menu {{1}}", + "subtitle": "Great deals", + "title": "The Menu: {{2}}", + "thumbnail_item_id": "48rme2i4po", + "items": [ {"id": "48rme2i4po", "section_title": "veggies"}] + } +} +}' diff --git a/messaging/content-templates/create-catalog-static-items/meta.json b/messaging/content-templates/create-catalog-static-items/meta.json new file mode 100644 index 0000000000..30bee9c312 --- /dev/null +++ b/messaging/content-templates/create-catalog-static-items/meta.json @@ -0,0 +1,7 @@ +{ + "title": "Content Templates API - Create Static Catalog Template", + "highlight": "{}", + "title_override": "Create Static Catalog Content Template", + "description_override": "", + "type": "server" +} diff --git a/messaging/content-templates/create-catalog-static-items/output/create-catalog-static-items.json b/messaging/content-templates/create-catalog-static-items/output/create-catalog-static-items.json new file mode 100644 index 0000000000..72dc63ce58 --- /dev/null +++ b/messaging/content-templates/create-catalog-static-items/output/create-catalog-static-items.json @@ -0,0 +1,37 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2024-06-10T22:16:39Z", + "date_updated": "2024-06-10T22:16:39Z", + "friendly_name": "fixedproducts", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/catalog": { + "body": "Hi, check out this menu {{1}}", + "dynamic_items": null, + "id": "1017234312776586", + "items": [ + { + "description": null, + "id": "48rme2i4po", + "media_url": null, + "name": null, + "price": null, + "section_title": "veggies" + } + ], + "subtitle": "Great deals", + "thumbnail_item_id": "48rme2i4po", + "title": "The Menu: {{2}}" + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "menu_ad", + "2": "menu_name" + } +} From 1be1249ddcaae270f4b36f5591c6ace708b09a79 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Tue, 11 Jun 2024 09:54:58 -0400 Subject: [PATCH 26/95] Add dynamic products catalog template (#1075) --- ...create-catalog-template-dynamic-items.curl | 18 ++++++++++++ .../meta.json | 5 ++++ ...create-catalog-template-dynamic-items.json | 28 +++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 messaging/content-templates/create-catalog-template-dynamic-items/create-catalog-template-dynamic-items.curl create mode 100644 messaging/content-templates/create-catalog-template-dynamic-items/meta.json create mode 100644 messaging/content-templates/create-catalog-template-dynamic-items/output/create-catalog-template-dynamic-items.json diff --git a/messaging/content-templates/create-catalog-template-dynamic-items/create-catalog-template-dynamic-items.curl b/messaging/content-templates/create-catalog-template-dynamic-items/create-catalog-template-dynamic-items.curl new file mode 100644 index 0000000000..07714e0e19 --- /dev/null +++ b/messaging/content-templates/create-catalog-template-dynamic-items/create-catalog-template-dynamic-items.curl @@ -0,0 +1,18 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "dynamicproducts", + "language": "en", + "variables": {"1": "Hi, check out this menu menu_name", "2": "footer text"}, + "types": { + "twilio/catalog": { + "id": "1017234312776586", + "title": "The Menu: {{1}}", + "body": "{{2}}", + "subtitle": "{{3}}", + "dynamic_items": "{{products}}" + } +} +}' + diff --git a/messaging/content-templates/create-catalog-template-dynamic-items/meta.json b/messaging/content-templates/create-catalog-template-dynamic-items/meta.json new file mode 100644 index 0000000000..62e41acd3c --- /dev/null +++ b/messaging/content-templates/create-catalog-template-dynamic-items/meta.json @@ -0,0 +1,5 @@ +{ + "title": "Content Templates API - Create Catalog Template with Dynamic Items", + "title_override": "Create Dynamic Catalog Content Template", + "type": "server" +} diff --git a/messaging/content-templates/create-catalog-template-dynamic-items/output/create-catalog-template-dynamic-items.json b/messaging/content-templates/create-catalog-template-dynamic-items/output/create-catalog-template-dynamic-items.json new file mode 100644 index 0000000000..2936bf6082 --- /dev/null +++ b/messaging/content-templates/create-catalog-template-dynamic-items/output/create-catalog-template-dynamic-items.json @@ -0,0 +1,28 @@ +{ + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "date_created": "2024-06-10T22:25:37Z", + "date_updated": "2024-06-10T22:25:37Z", + "friendly_name": "dynamicproducts", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests" + }, + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "types": { + "twilio/catalog": { + "body": "{{2}}", + "dynamic_items": "{{products}}", + "id": "1017234312776586", + "items": null, + "subtitle": "{{3}}", + "thumbnail_item_id": null, + "title": "The Menu: {{1}}" + } + }, + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "variables": { + "1": "Hi, check out this menu menu_name", + "2": "footer text" + } +} \ No newline at end of file From 978b16feedbf7696201f45e767d54cb396691ca5 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Wed, 12 Jun 2024 09:24:10 -0400 Subject: [PATCH 27/95] Add approval status sample (#1076) * Add approval status sample * Add newlines --- .../get-template-approval-status-from-whatsapp.curl | 3 +++ .../meta.json | 5 +++++ .../get-template-approval-status-from-whatsapp.json | 13 +++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 messaging/content-templates/get-template-approval-status-from-whatsapp/get-template-approval-status-from-whatsapp.curl create mode 100644 messaging/content-templates/get-template-approval-status-from-whatsapp/meta.json create mode 100644 messaging/content-templates/get-template-approval-status-from-whatsapp/output/get-template-approval-status-from-whatsapp.json diff --git a/messaging/content-templates/get-template-approval-status-from-whatsapp/get-template-approval-status-from-whatsapp.curl b/messaging/content-templates/get-template-approval-status-from-whatsapp/get-template-approval-status-from-whatsapp.curl new file mode 100644 index 0000000000..a92aaf1b03 --- /dev/null +++ b/messaging/content-templates/get-template-approval-status-from-whatsapp/get-template-approval-status-from-whatsapp.curl @@ -0,0 +1,3 @@ +curl -X GET 'https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN diff --git a/messaging/content-templates/get-template-approval-status-from-whatsapp/meta.json b/messaging/content-templates/get-template-approval-status-from-whatsapp/meta.json new file mode 100644 index 0000000000..52fc61317d --- /dev/null +++ b/messaging/content-templates/get-template-approval-status-from-whatsapp/meta.json @@ -0,0 +1,5 @@ +{ + "title": "Content API - Fetch an ApprovalRequest", + "description": "Check a Template's WhatsApp Approval Status", + "type": "server" +} diff --git a/messaging/content-templates/get-template-approval-status-from-whatsapp/output/get-template-approval-status-from-whatsapp.json b/messaging/content-templates/get-template-approval-status-from-whatsapp/output/get-template-approval-status-from-whatsapp.json new file mode 100644 index 0000000000..1e22cfca77 --- /dev/null +++ b/messaging/content-templates/get-template-approval-status-from-whatsapp/output/get-template-approval-status-from-whatsapp.json @@ -0,0 +1,13 @@ +{ + "url": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests", + "whatsapp": { + "category": "TRANSPORTATION_UPDATE", + "status": "pending", + "name": "flight_replies", + "type": "whatsapp", + "content_type": "twilio/quick-reply", + "rejection_reason": "" + }, + "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", + "sid": "HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" +} From 0148043fd952e18f9de082c528db60235ab52d43 Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Wed, 12 Jun 2024 13:22:26 -0400 Subject: [PATCH 28/95] Fix actions array formatting (#1077) --- .../output/create-call-to-action-template.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json b/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json index ec1dd66643..57543c8ebf 100644 --- a/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json +++ b/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json @@ -16,12 +16,12 @@ "url": "https://owlair.example.com/%7B%7B5%7D%7D", "type": "URL", "title": "Check Flight Status" - }, - { - "phone_number": "+15555551234", - "type": "PHONE_NUMBER", - "title": "Call Support" - } + }, + { + "phone_number": "+15555551234", + "type": "PHONE_NUMBER", + "title": "Call Support" + } ], "body": "Owl Air: We will see you soon! Flight {{1}} to {{2}} departs at {{3}} from Gate {{4}}." } From ebe2ec577579d0a0025ab48decb0027afa3e2167 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:22:17 -0700 Subject: [PATCH 29/95] Delete messaging/content-templates/create-text-template/create-text-template.java removing previous old sample --- .../create-text-template.java | 36 ------------------- 1 file changed, 36 deletions(-) delete mode 100644 messaging/content-templates/create-text-template/create-text-template.java diff --git a/messaging/content-templates/create-text-template/create-text-template.java b/messaging/content-templates/create-text-template/create-text-template.java deleted file mode 100644 index e6f52ca0c9..0000000000 --- a/messaging/content-templates/create-text-template/create-text-template.java +++ /dev/null @@ -1,36 +0,0 @@ -// Install the Java helper library from twilio.com/docs/java/install -import com.twilio.Twilio; -import com.twilio.exception.ApiException; -import com.twilio.rest.content.v1.Content; - -import java.util.Map; - -public class Example { - // Find your Account SID and Auth Token at twilio.com/console - // and set the environment variables. See http://twil.io/secure - public static final String ACCOUNT_SID = System.getenv("TWILIO_ACCOUNT_SID"); - public static final String AUTH_TOKEN = System.getenv("TWILIO_AUTH_TOKEN"); - - public static void main(String[] args) { - // Initialize the SDK - Twilio.init(ACCOUNT_SID, AUTH_TOKEN); - - // Setup Content - Content.TwilioText type = new Content.TwilioText(); - type.setBody("Hi, {{1}}. \n Thanks for contacting Owl Air Support. How can I help?."); - - Content.Types types = new Content.Types(); - types.setTwilioText(type); - - // Create Content - Content.ContentCreateRequest createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setVariables(Map.of("1", "name")); - createRequest.setFriendlyName("Owl Air Support text template"); - try { - Content content = Content.creator(createRequest).create(); - System.out.println(content.getSid()); - } catch (ApiException e) { - e.printStackTrace(); - } - } -} From 798fa8c8b709a3f6897a5371cb1bbf23f68ab271 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:22:36 -0700 Subject: [PATCH 30/95] Add files via upload --- .../create-text-template/TwilioText.java | 26 ++++++++++++++++++ .../create-text-template-example.cs | 27 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 messaging/content-templates/create-text-template/TwilioText.java create mode 100644 messaging/content-templates/create-text-template/create-text-template-example.cs diff --git a/messaging/content-templates/create-text-template/TwilioText.java b/messaging/content-templates/create-text-template/TwilioText.java new file mode 100644 index 0000000000..1da2156c4b --- /dev/null +++ b/messaging/content-templates/create-text-template/TwilioText.java @@ -0,0 +1,26 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; + +import java.util.Arrays; +import java.util.Map; + +public class TwilioText { + public static String CreateTemplate() { + var twilioText = new Content.TwilioText(); + twilioText.setBody("Hi {{1}}, thanks for contacting Owl Air Support. How can we help?"); + + var types = new Content.Types(); + types.setTwilioText(twilioText); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_twilio_text"); + createRequest.setVariables(Map.of( + "1", "first_name" + )); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-text-template/create-text-template-example.cs b/messaging/content-templates/create-text-template/create-text-template-example.cs new file mode 100644 index 0000000000..3285ed76ce --- /dev/null +++ b/messaging/content-templates/create-text-template/create-text-template-example.cs @@ -0,0 +1,27 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the twilio/text + var twilioText = new TwilioText.Builder(); + twilioText.WithBody("Hi {{1}}. Thanks for contacting Owl Air Support. How can we help?"); + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithTwilioText(twilioText.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("text_template"); + contentCreateRequest.WithVariables(new Dictionary() { {"1", "John"} }); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From 4f5e628f907b7072a6ef60706dc228bc54928ac2 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:23:05 -0700 Subject: [PATCH 31/95] Add files via upload --- .../TwilioQuickReply.java | 47 +++++++++++++++++++ .../create-qr-template-example.cs | 45 ++++++++++++++++++ 2 files changed, 92 insertions(+) create mode 100644 messaging/content-templates/create-a-quick-reply-template/TwilioQuickReply.java create mode 100644 messaging/content-templates/create-a-quick-reply-template/create-qr-template-example.cs diff --git a/messaging/content-templates/create-a-quick-reply-template/TwilioQuickReply.java b/messaging/content-templates/create-a-quick-reply-template/TwilioQuickReply.java new file mode 100644 index 0000000000..17798d68d5 --- /dev/null +++ b/messaging/content-templates/create-a-quick-reply-template/TwilioQuickReply.java @@ -0,0 +1,47 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; + +import java.util.Arrays; +import java.util.Map; + +public class TwilioQuickReply { + public static String CreateTemplate() { + var twilioText = new Content.TwilioText(); + twilioText.setBody("Hi {{1}}. Thanks for contacting Owl Air Support. How can we help?"); + + var twilioQuickReply = new Content.TwilioQuickReply(); + twilioQuickReply.setBody("Owl Air Support"); + + var action1 = new Content.QuickReplyAction(); + action1.setType(Content.QuickReplyActionType.QUICK_REPLY); + action1.setTitle("Contact Us"); + action1.setId("contact_us"); + + var action2 = new Content.QuickReplyAction(); + action1.setType(Content.QuickReplyActionType.QUICK_REPLY); + action1.setTitle("Check gate number"); + action1.setId("gate_id_1"); + + var action3 = new Content.QuickReplyAction(); + action1.setType(Content.QuickReplyActionType.QUICK_REPLY); + action1.setTitle("Speak with an agent"); + action1.setId("agent_id_1"); + + twilioQuickReply.setActions(Arrays.asList(action1, action2, action3)); + + var types = new Content.Types(); + types.setTwilioText(twilioText); + types.setTwilioQuickReply(twilioQuickReply); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_twilio_quickreply"); + createRequest.setVariables(Map.of( + "1", "first_name" + )); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-a-quick-reply-template/create-qr-template-example.cs b/messaging/content-templates/create-a-quick-reply-template/create-qr-template-example.cs new file mode 100644 index 0000000000..f2b7141b6a --- /dev/null +++ b/messaging/content-templates/create-a-quick-reply-template/create-qr-template-example.cs @@ -0,0 +1,45 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the twilio/text type for less rich channels (e.g. SMS) + var twilioText = new TwilioText.Builder(); + twilioText.WithBody("Hi {{1}}. Thanks for contacting Owl Air Support. How can we help?"); + + // define the twilio/quick-reply type for more rich channels + var twilioQuickReply = new TwilioQuickReply.Builder(); + twilioQuickReply.WithBody("Owl Air Support"); + var quickreply1 = new QuickReplyAction.Builder() + .WithTitle("Contact Us") + .WithId("flightid1") + .Build(); + var quickreply2 = new QuickReplyAction.Builder() + .WithTitle("Check gate number") + .WithId("gateid1") + .Build(); + var quickreply3 = new QuickReplyAction.Builder() + .WithTitle("Speak with an agent") + .WithId("agentid1") + .Build(); + twilioQuickReply.WithActions(new List() { quickreply1, quickreply2, quickreply3 }); + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithTwilioText(twilioText.Build()); + types.WithTwilioQuickReply(twilioQuickReply.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("owl_coupon_card"); + contentCreateRequest.WithVariables(new Dictionary() { {"1", "John"} }); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From a4bba481dac1ba7d4d91256e5ba2cab425b136e7 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:23:36 -0700 Subject: [PATCH 32/95] Add files via upload --- .../TwilioCallToAction.java | 41 +++++++++++++++++++ .../create-cta-template-example.cs | 38 +++++++++++++++++ 2 files changed, 79 insertions(+) create mode 100644 messaging/content-templates/create-call-to-action-template/TwilioCallToAction.java create mode 100644 messaging/content-templates/create-call-to-action-template/create-cta-template-example.cs diff --git a/messaging/content-templates/create-call-to-action-template/TwilioCallToAction.java b/messaging/content-templates/create-call-to-action-template/TwilioCallToAction.java new file mode 100644 index 0000000000..c2b2977577 --- /dev/null +++ b/messaging/content-templates/create-call-to-action-template/TwilioCallToAction.java @@ -0,0 +1,41 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; +import java.util.Arrays; +import java.util.Map; + +public class TwilioCallToAction { + public static String CreateTemplate() { + var twilioCallToAction = new Content.TwilioCallToAction(); + twilioCallToAction.setBody("Owl Air: We will see you soon! Flight {{1}} to {{2}} departs at {{3}} from Gate {{4}}."); + + var action1 = new Content.CallToActionAction(); + action1.setType(Content.CallToActionActionType.URL); + action1.setUrl("https://owlair.com/%7B%7B5%7D%7D"); + action1.setTitle("Check Flight Status"); + + var action2 = new Content.CallToActionAction(); + action2.setType(Content.CallToActionActionType.PHONE_NUMBER); + action2.setPhone("+18005551234"); + action2.setTitle("Call Support"); + + twilioCallToAction.setActions(Arrays.asList(action1, action2)); + + var types = new Content.Types(); + types.setTwilioCallToAction(twilioCallToAction); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_twilio_calltoaction"); + createRequest.setVariables(Map.of( + "1", "flight_number", + "2", "arrival_city", + "3", "departure_time", + "4", "gate_number", + "5", "url_suffix" + )); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-call-to-action-template/create-cta-template-example.cs b/messaging/content-templates/create-call-to-action-template/create-cta-template-example.cs new file mode 100644 index 0000000000..03d5664c57 --- /dev/null +++ b/messaging/content-templates/create-call-to-action-template/create-cta-template-example.cs @@ -0,0 +1,38 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the twilio/call-to-action type + var twilioCallToAction = new TwilioCallToAction.Builder(); + twilioCallToAction.WithBody("Owl Air: We will see you soon! Flight {{1}} to {{2}} departs at {{3}} from Gate {{4}}."); + var cta1 = new CallToAction.Builder() + .WithType(CallToActionActionType.Url) + .WithUrl("https://owlair.com/%7B%7B5%7D%7D") + .WithTitle("Check Flight Status") + .Build(); + var cta2 = new CallToAction.Builder() + .WithType(CallToActionActionType.PhoneNumber) + .WithPhone("+18005551234") + .WithTitle("Call Support") + .Build(); + twilioCallToAction.WithActions(new List() { cta1, cta2 }); + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithTwilioCallToAction(twilioCallToAction.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("owl_coupon_code"); + contentCreateRequest.WithVariables(new Dictionary() { {"1", "flight_number"}, {"2", "arrival_city"}, {"3", "departure_time"}, {"4", "gate_number"}, {"5", "url_suffix"} }); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From a3a234609efebc8de733b5d4af1b06daec4523fd Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:24:11 -0700 Subject: [PATCH 33/95] Add files via upload --- .../create-card-template/TwilioCard.java | 35 +++++++++++++++++ .../create-card-template-example.cs | 38 +++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 messaging/content-templates/create-card-template/TwilioCard.java create mode 100644 messaging/content-templates/create-card-template/create-card-template-example.cs diff --git a/messaging/content-templates/create-card-template/TwilioCard.java b/messaging/content-templates/create-card-template/TwilioCard.java new file mode 100644 index 0000000000..c0b2aca223 --- /dev/null +++ b/messaging/content-templates/create-card-template/TwilioCard.java @@ -0,0 +1,35 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; +import java.util.Arrays; +import java.util.Map; + +public class TwilioCard { + public static String CreateTemplate() { + var twilioText = new Content.TwilioText(); + twilioText.setBody("Hi {{1}}, thanks for contacting Owl Air Support"); + + var twilioCard = new Content.TwilioCard(); + twilioCard.setTitle("Owl Air Support"); + + var action1 = new Content.CardAction(); + action1.setType(Content.CardActionType.URL); + action1.setUrl("https://www.twilio.com/"); + action1.setTitle("Contact Us"); + + twilioCard.setActions(Arrays.asList(action1)); + + var types = new Content.Types(); + types.setTwilioCard(twilioCard); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_twilio_card"); + createRequest.setVariables(Map.of( + "1", "John" + )); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-card-template/create-card-template-example.cs b/messaging/content-templates/create-card-template/create-card-template-example.cs new file mode 100644 index 0000000000..8f4460decd --- /dev/null +++ b/messaging/content-templates/create-card-template/create-card-template-example.cs @@ -0,0 +1,38 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the twilio/text type for less rich channels (e.g. SMS) + var twilioText = new TwilioText.Builder(); + twilioText.WithBody("Hi {{1}}. Thanks for contacting Owl Air Support. How can we help?"); + + // define the twilio/card type for more rich channels + var twilioCard = new TwilioCard.Builder(); + twilioCard.WithTitle("Owl Air Support"); + var cardAction1 = new CardAction.Builder() + .WithType(CardActionType.Url) + .WithUrl("https://www.twilio.com/") + .WithTitle("Contact Us") + .Build(); + twilioCard.WithActions(new List() { cardAction1 }); + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithTwilioText(twilioText.Build()); + types.WithTwilioCard(twilioCard.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("owl_coupon_card"); + contentCreateRequest.WithVariables(new Dictionary() { {"1", "John"} }); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From c3a60b1ffcb564b25c9a0d87bb30aa39843e163b Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:24:57 -0700 Subject: [PATCH 34/95] Add files via upload --- .../TwilioListPicker.java | 44 +++++++++++++++++++ .../create-list-picker-template-example.cs | 43 ++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 messaging/content-templates/create-list-picker-template/TwilioListPicker.java create mode 100644 messaging/content-templates/create-list-picker-template/create-list-picker-template-example.cs diff --git a/messaging/content-templates/create-list-picker-template/TwilioListPicker.java b/messaging/content-templates/create-list-picker-template/TwilioListPicker.java new file mode 100644 index 0000000000..fd7623511d --- /dev/null +++ b/messaging/content-templates/create-list-picker-template/TwilioListPicker.java @@ -0,0 +1,44 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; + +import java.util.Arrays; +import java.util.Map; + +public class TwilioListPicker { + public static String CreateTemplate() { + var twilioListPicker = new Content.TwilioListPicker(); + twilioListPicker.setBody("Owl Air Flash Sale! Hurry! Sale ends on {{1}}!"); + + var item1 = new Content.ListItem(); + item1.setItem("SFO to NYC for $299"); + item1.setDescription("Owl Air Flight 1337 to LGA"); + item1.setId("SFO1337"); + + var item2 = new Content.ListItem(); + item1.setItem("OAK to Denver for $149"); + item1.setDescription("Owl Air Flight 5280 to DEN"); + item1.setId("OAK5280"); + + var item3 = new Content.ListItem(); + item1.setItem("LAX to Chicago for $199"); + item1.setDescription("Owl Air Flight 96 to ORD"); + item1.setId("LAX96"); + + twilioListPicker.setItems(Arrays.asList(item1)); + twilioListPicker.setButton("Select Flight"); + + var types = new Content.Types(); + types.setTwilioListPicker(twilioListPicker); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_twilio_listpicker"); + createRequest.setVariables(Map.of( + "1", "end_date" + )); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-list-picker-template/create-list-picker-template-example.cs b/messaging/content-templates/create-list-picker-template/create-list-picker-template-example.cs new file mode 100644 index 0000000000..6639953979 --- /dev/null +++ b/messaging/content-templates/create-list-picker-template/create-list-picker-template-example.cs @@ -0,0 +1,43 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the twilio/list-picker + var twilioListPicker = new TwilioListPicker.Builder(); + twilioListPicker.WithBody("Owl Air Flash Sale! Hurry! Sale ends on {{1}}!"); + var item1 = new ListPickerItems.Builder() + .WithItem("SFO to NYC for $299") + .WithDescription("Owl Air Flight 1337 to LGA") + .WithId("SFO1337") + .Build(); + var item2 = new ListPickerItems.Builder() + .WithItem("OAK to Denver for $149") + .WithDescription("Owl Air Flight 5280 to DEN") + .WithId("OAK5280") + .Build(); + var item3 = new ListPickerItems.Builder() + .WithItem("LAX to Chicago for $199") + .WithDescription("Owl Air Flight 96 to ORD") + .WithId("LAX96") + .Build(); + twilioListPicker.WithItems(new List() { item1, item2, item3 }); + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithTwilioListPicker(twilioListPicker.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("owl_sale_list"); + contentCreateRequest.WithVariables(new Dictionary() { {"1", "end_date"} }); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From 8852c8e19fd10395edef209003f3a284d30b3313 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:25:21 -0700 Subject: [PATCH 35/95] Add files via upload --- .../TwilioLocation.java | 32 ++++++++++++++++++ .../create-location-template-example.cs | 33 +++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 messaging/content-templates/create-location-template/TwilioLocation.java create mode 100644 messaging/content-templates/create-location-template/create-location-template-example.cs diff --git a/messaging/content-templates/create-location-template/TwilioLocation.java b/messaging/content-templates/create-location-template/TwilioLocation.java new file mode 100644 index 0000000000..d1f7002de0 --- /dev/null +++ b/messaging/content-templates/create-location-template/TwilioLocation.java @@ -0,0 +1,32 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; +import java.math.BigDecimal; +import java.util.Arrays; +import java.util.Map; + +public class TwilioLocation { + public static String CreateTemplate() { + var twilioText = new Content.TwilioText(); + twilioText.setBody("Owl Air: Time to board, SFO is located at San Francisco International Airport, P.O. Box 8097, San Francisco, CA 94128"); + + var twilioLocation = new Content.TwilioLocation(); + twilioLocation.setLabel("Time to Board @ SFO"); + twilioLocation.setLatitude(new BigDecimal(37.62159755922449)); + twilioLocation.setLongitude(new BigDecimal(-122.37888566473057)); + + var types = new Content.Types(); + types.setTwilioText(twilioText); + types.setTwilioLocation(twilioLocation); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_twilio_location"); + createRequest.setVariables(Map.of( + "1", "John" + )); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-location-template/create-location-template-example.cs b/messaging/content-templates/create-location-template/create-location-template-example.cs new file mode 100644 index 0000000000..096c53e61c --- /dev/null +++ b/messaging/content-templates/create-location-template/create-location-template-example.cs @@ -0,0 +1,33 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the twilio/text + var twilioText = new TwilioText.Builder(); + twilioText.WithBody("Owl Air: Time to board, SFO is located at San Francisco International Airport, P.O. Box 8097, San Francisco, CA 94128 "); + + // define the twilio/location + var twilioLocation = new TwilioLocation.Builder(); + twilioLocation.WithLabel("Time to Board @ SFO"); + twilioLocaiton.WithLatitude(37.62159755922449) + twilioLocaiton.WithLongitude(-122.37888566473057) + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithTwilioText(twilioText.Build()); + types.WithTwilioLocation(twilioLocation.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("location"); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From 225fb16519615043603ce363a10f22032796541d Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:26:12 -0700 Subject: [PATCH 36/95] Add files via upload --- .../create-media-template/TwilioMedia.java | 27 ++++++++++++++++ .../create-media-template-example.cs | 31 +++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 messaging/content-templates/create-media-template/TwilioMedia.java create mode 100644 messaging/content-templates/create-media-template/create-media-template-example.cs diff --git a/messaging/content-templates/create-media-template/TwilioMedia.java b/messaging/content-templates/create-media-template/TwilioMedia.java new file mode 100644 index 0000000000..7cede95843 --- /dev/null +++ b/messaging/content-templates/create-media-template/TwilioMedia.java @@ -0,0 +1,27 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; + +import java.util.Arrays; +import java.util.Map; + +public class TwilioMedia { + public static String CreateTemplate() { + var twilioMedia = new Content.TwilioMedia(); + twilioMedia.setBody("Thank you for your order {{1}}"); + twilioMedia.setMedia(Arrays.asList("https://twilio-cms-prod.s3.amazonaws.com/images/library-logo-resource2x.width-1000.png")); + + var types = new Content.Types(); + types.setTwilioMedia(twilioMedia); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_twilio_media"); + createRequest.setVariables(Map.of( + "1", "order_number" + )); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-media-template/create-media-template-example.cs b/messaging/content-templates/create-media-template/create-media-template-example.cs new file mode 100644 index 0000000000..1a7bd85e08 --- /dev/null +++ b/messaging/content-templates/create-media-template/create-media-template-example.cs @@ -0,0 +1,31 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the twilio/media type + var twilioMedia = new TwilioMedia.Builder(); + twilioMedia.WithBody("Thank you for your order {{1}}"); + var media1 = new Media.Builder() + .WithMedia("https://twilio-cms-prod.s3.amazonaws.com/images/library-logo-resource2x.width-1000.png") + .Build(); + twilioMedia.WithMedia(new List() { media1 }); + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithTwilioMedia(twilioMedia.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("media_template"); + contentCreateRequest.WithVariables(new Dictionary() { {"1", "OrderNumber"} }); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From a81f66f4e7b8ba90824284350a88e0b73be0cb76 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:26:42 -0700 Subject: [PATCH 37/95] Add files via upload --- .../WhatsAppAuthentication.java | 30 +++++++++++++++++++ .../create-wa-auth-template-example.cs | 30 +++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 messaging/content-templates/create-wa-otp-button-template/WhatsAppAuthentication.java create mode 100644 messaging/content-templates/create-wa-otp-button-template/create-wa-auth-template-example.cs diff --git a/messaging/content-templates/create-wa-otp-button-template/WhatsAppAuthentication.java b/messaging/content-templates/create-wa-otp-button-template/WhatsAppAuthentication.java new file mode 100644 index 0000000000..5e96520629 --- /dev/null +++ b/messaging/content-templates/create-wa-otp-button-template/WhatsAppAuthentication.java @@ -0,0 +1,30 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; +import java.math.BigDecimal; +import java.util.Arrays; +import java.util.Map; + +public class WhatsAppAuthentication { + public static String CreateTemplate() { + var waAuth = new Content.WhatsappAuthentication(); + + var action1 = new Content.AuthenticationAction(); + action1.setType(Content.AuthenticationActionType.COPY_CODE); + action1.setCopyCodeText("Copy Code"); + + waAuth.setActions(Arrays.asList(action1)); + waAuth.setAddSecurityRecommendation(true); + waAuth.setCodeExpirationMinutes(new BigDecimal(10)); + + var types = new Content.Types(); + types.setWhatsappAuthentication(waAuth); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_wa_auth"); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-wa-otp-button-template/create-wa-auth-template-example.cs b/messaging/content-templates/create-wa-otp-button-template/create-wa-auth-template-example.cs new file mode 100644 index 0000000000..e5de8c1921 --- /dev/null +++ b/messaging/content-templates/create-wa-otp-button-template/create-wa-auth-template-example.cs @@ -0,0 +1,30 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the whatsapp/authentication type + var whatsappAuthentication = new WhatsappAuthentication.Builder(); + var auth1 = new WhatsappAuthAction.Builder() + .WithType(WhatsappAuthActionType.CopyCode) + .WithCopyCodeText("Check Flight Status") + .Build(); + whatsappAuthentication.WithActions(new List() { auth1 }); + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithWhatsappAuthentication(whatsappAuthentication.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("whatsapp_otp"); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From 6cf63587d47bd8173ab51d51fe09da55f1523016 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:27:07 -0700 Subject: [PATCH 38/95] Add files via upload --- .../create-whatsapp-card/WhatsAppCard.java | 40 +++++++++++++++++++ .../create-wa-card-template-example.cs | 40 +++++++++++++++++++ 2 files changed, 80 insertions(+) create mode 100644 messaging/content-templates/create-whatsapp-card/WhatsAppCard.java create mode 100644 messaging/content-templates/create-whatsapp-card/create-wa-card-template-example.cs diff --git a/messaging/content-templates/create-whatsapp-card/WhatsAppCard.java b/messaging/content-templates/create-whatsapp-card/WhatsAppCard.java new file mode 100644 index 0000000000..967f92b60d --- /dev/null +++ b/messaging/content-templates/create-whatsapp-card/WhatsAppCard.java @@ -0,0 +1,40 @@ +package Examples; + +import com.twilio.rest.content.v1.Content; + +import java.util.Arrays; +import java.util.Map; + +public class WhatsAppCard { + public static String CreateTemplate() { + var waCard = new Content.WhatsappCard(); + waCard.setBody("Congratulations, you have reached Elite status! Add code {{1}} for 10% off."); + waCard.setHeaderText("This is a {{1}} card"); + waCard.setFooter("To unsubscribe, reply Stop"); + + var action1 = new Content.CardAction(); + action1.setType(Content.CardActionType.URL); + action1.setUrl("https://www.twilio.com/"); + action1.setTitle("Order Online"); + + var action2 = new Content.CardAction(); + action1.setType(Content.CardActionType.PHONE_NUMBER); + action1.setPhone("+15551234567"); + action1.setTitle("Call Us"); + + waCard.setActions(Arrays.asList(action1)); + + var types = new Content.Types(); + types.setWhatsappCard(waCard); + + var createRequest = new Content.ContentCreateRequest("en", types); + createRequest.setFriendlyName("java_sdk_example_wa_card"); + createRequest.setVariables(Map.of( + "1", "coupon_code" + )); + + var content = Content.creator(createRequest).create(); + + return content.getSid(); + } +} \ No newline at end of file diff --git a/messaging/content-templates/create-whatsapp-card/create-wa-card-template-example.cs b/messaging/content-templates/create-whatsapp-card/create-wa-card-template-example.cs new file mode 100644 index 0000000000..9fc068a5be --- /dev/null +++ b/messaging/content-templates/create-whatsapp-card/create-wa-card-template-example.cs @@ -0,0 +1,40 @@ +// Install the C# / .NET helper library from twilio.com/docs/csharp/install + +using System; +using Twilio; +using Twilio.Rest.Content.V1; + + TwilioClient.Init(accountSid, authToken); + + // define the whatsapp/card + var whatsappCard = new WhatsappCard.Builder(); + whatsappCard.WithBody("Congratulations, you have reached Elite status! Add code {{1}} for 10% off."); + whatsappCard.WithHeaderText("This is a {{1}} card"); + whatsappCard.WithFooter("To unsubscribe, reply Stop"); + var cardAction1 = new CardAction.Builder() + .WithType(CardActionType.Url) + .WithUrl("https://www.twilio.com/") + .WithTitle("Order Online") + .Build(); + var cardAction2 = new CardAction.Builder() + .WithType(CardActionType.PhoneNumber) + .WithPhone("+15551234567") + .WithTitle("Call Us") + .Build(); + whatsappCard.WithActions(new List() { cardAction1, cardAction2 }); + + // define all the content types to be part of the template + var types = new Types.Builder(); + types.WithWhatsappCard(whatsappCard.Build()); + + // build the create request object + var contentCreateRequest = new ContentCreateRequest.Builder(); + contentCreateRequest.WithTypes(types.Build()); + contentCreateRequest.WithLanguage("en"); + contentCreateRequest.WithFriendlyName("owl_coupon_code"); + contentCreateRequest.WithVariables(new Dictionary() { {"1", "coupon_code"} }); + + // create the twilio template + var contentTemplate = await CreateAsync(contentCreateRequest.Build()); + + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file From d440cc78c2afdbfbbbc460da6c3d78bb559810a5 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:32:47 -0700 Subject: [PATCH 39/95] Rename TwilioQuickReply.java to create-a-quick-reply-template.java file name change --- ...TwilioQuickReply.java => create-a-quick-reply-template.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-a-quick-reply-template/{TwilioQuickReply.java => create-a-quick-reply-template.java} (99%) diff --git a/messaging/content-templates/create-a-quick-reply-template/TwilioQuickReply.java b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.java similarity index 99% rename from messaging/content-templates/create-a-quick-reply-template/TwilioQuickReply.java rename to messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.java index 17798d68d5..8e27e3458f 100644 --- a/messaging/content-templates/create-a-quick-reply-template/TwilioQuickReply.java +++ b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.java @@ -44,4 +44,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From b5654393e6ae6fe230abb58db1e17bc745764005 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:33:16 -0700 Subject: [PATCH 40/95] Rename create-qr-template-example.cs to create-a-quick-reply-template.cs file name change --- ...-qr-template-example.cs => create-a-quick-reply-template.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-a-quick-reply-template/{create-qr-template-example.cs => create-a-quick-reply-template.cs} (98%) diff --git a/messaging/content-templates/create-a-quick-reply-template/create-qr-template-example.cs b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.cs similarity index 98% rename from messaging/content-templates/create-a-quick-reply-template/create-qr-template-example.cs rename to messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.cs index f2b7141b6a..275e4ec47d 100644 --- a/messaging/content-templates/create-a-quick-reply-template/create-qr-template-example.cs +++ b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.cs @@ -42,4 +42,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From 19749bc0458c6a63ab422bad3fa64fb8aa99166e Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:33:44 -0700 Subject: [PATCH 41/95] Rename create-cta-template-example.cs to create-call-to-action-template.cs file name change --- ...ta-template-example.cs => create-call-to-action-template.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-call-to-action-template/{create-cta-template-example.cs => create-call-to-action-template.cs} (98%) diff --git a/messaging/content-templates/create-call-to-action-template/create-cta-template-example.cs b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.cs similarity index 98% rename from messaging/content-templates/create-call-to-action-template/create-cta-template-example.cs rename to messaging/content-templates/create-call-to-action-template/create-call-to-action-template.cs index 03d5664c57..7b854661ff 100644 --- a/messaging/content-templates/create-call-to-action-template/create-cta-template-example.cs +++ b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.cs @@ -35,4 +35,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From 279d5c5473cbf336a13b4648b1870d54aa12b423 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:33:59 -0700 Subject: [PATCH 42/95] Rename TwilioCallToAction.java to create-call-to-action-template.java file name change --- ...lioCallToAction.java => create-call-to-action-template.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-call-to-action-template/{TwilioCallToAction.java => create-call-to-action-template.java} (99%) diff --git a/messaging/content-templates/create-call-to-action-template/TwilioCallToAction.java b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.java similarity index 99% rename from messaging/content-templates/create-call-to-action-template/TwilioCallToAction.java rename to messaging/content-templates/create-call-to-action-template/create-call-to-action-template.java index c2b2977577..88a3b0062c 100644 --- a/messaging/content-templates/create-call-to-action-template/TwilioCallToAction.java +++ b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.java @@ -38,4 +38,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From d2dde3bc6ecfebd9263d43ac611b4e9f37f809cd Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:34:30 -0700 Subject: [PATCH 43/95] Rename create-card-template-example.cs to create-card-template.cs file name chnage --- ...{create-card-template-example.cs => create-card-template.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-card-template/{create-card-template-example.cs => create-card-template.cs} (98%) diff --git a/messaging/content-templates/create-card-template/create-card-template-example.cs b/messaging/content-templates/create-card-template/create-card-template.cs similarity index 98% rename from messaging/content-templates/create-card-template/create-card-template-example.cs rename to messaging/content-templates/create-card-template/create-card-template.cs index 8f4460decd..0ee4c51a1a 100644 --- a/messaging/content-templates/create-card-template/create-card-template-example.cs +++ b/messaging/content-templates/create-card-template/create-card-template.cs @@ -35,4 +35,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From e5052ac2baf13e40f4750fd076253e80b3b91580 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:34:41 -0700 Subject: [PATCH 44/95] Rename TwilioCard.java to create-card-template.java --- .../{TwilioCard.java => create-card-template.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-card-template/{TwilioCard.java => create-card-template.java} (99%) diff --git a/messaging/content-templates/create-card-template/TwilioCard.java b/messaging/content-templates/create-card-template/create-card-template.java similarity index 99% rename from messaging/content-templates/create-card-template/TwilioCard.java rename to messaging/content-templates/create-card-template/create-card-template.java index c0b2aca223..b833ec18ae 100644 --- a/messaging/content-templates/create-card-template/TwilioCard.java +++ b/messaging/content-templates/create-card-template/create-card-template.java @@ -32,4 +32,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From 759cbca1c15fa6b4c8400f22c9ceaa7dd606a00f Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:35:18 -0700 Subject: [PATCH 45/95] Rename create-list-picker-template-example.cs to create-list-picker-template.cs name change --- ...icker-template-example.cs => create-list-picker-template.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-list-picker-template/{create-list-picker-template-example.cs => create-list-picker-template.cs} (98%) diff --git a/messaging/content-templates/create-list-picker-template/create-list-picker-template-example.cs b/messaging/content-templates/create-list-picker-template/create-list-picker-template.cs similarity index 98% rename from messaging/content-templates/create-list-picker-template/create-list-picker-template-example.cs rename to messaging/content-templates/create-list-picker-template/create-list-picker-template.cs index 6639953979..c775fb40df 100644 --- a/messaging/content-templates/create-list-picker-template/create-list-picker-template-example.cs +++ b/messaging/content-templates/create-list-picker-template/create-list-picker-template.cs @@ -40,4 +40,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From d959eb10a9f6d7390720bc6619f63395c4ef9c8b Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:35:33 -0700 Subject: [PATCH 46/95] Rename TwilioListPicker.java to create-list-picker-template.java --- .../{TwilioListPicker.java => create-list-picker-template.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-list-picker-template/{TwilioListPicker.java => create-list-picker-template.java} (99%) diff --git a/messaging/content-templates/create-list-picker-template/TwilioListPicker.java b/messaging/content-templates/create-list-picker-template/create-list-picker-template.java similarity index 99% rename from messaging/content-templates/create-list-picker-template/TwilioListPicker.java rename to messaging/content-templates/create-list-picker-template/create-list-picker-template.java index fd7623511d..8387a13c60 100644 --- a/messaging/content-templates/create-list-picker-template/TwilioListPicker.java +++ b/messaging/content-templates/create-list-picker-template/create-list-picker-template.java @@ -41,4 +41,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From f8a522226e4f8d54b093cb3df6fac8d56b4d7b3d Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:36:00 -0700 Subject: [PATCH 47/95] Rename create-location-template-example.cs to create-location-template.cs --- ...location-template-example.cs => create-location-template.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-location-template/{create-location-template-example.cs => create-location-template.cs} (98%) diff --git a/messaging/content-templates/create-location-template/create-location-template-example.cs b/messaging/content-templates/create-location-template/create-location-template.cs similarity index 98% rename from messaging/content-templates/create-location-template/create-location-template-example.cs rename to messaging/content-templates/create-location-template/create-location-template.cs index 096c53e61c..0e7ae8a16d 100644 --- a/messaging/content-templates/create-location-template/create-location-template-example.cs +++ b/messaging/content-templates/create-location-template/create-location-template.cs @@ -30,4 +30,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From 41fb2cc6baeb1f6c1b59a68f090555a54de6aa5d Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:36:13 -0700 Subject: [PATCH 48/95] Rename TwilioLocation.java to create-location-template.java --- .../{TwilioLocation.java => create-location-template.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-location-template/{TwilioLocation.java => create-location-template.java} (99%) diff --git a/messaging/content-templates/create-location-template/TwilioLocation.java b/messaging/content-templates/create-location-template/create-location-template.java similarity index 99% rename from messaging/content-templates/create-location-template/TwilioLocation.java rename to messaging/content-templates/create-location-template/create-location-template.java index d1f7002de0..f76493791c 100644 --- a/messaging/content-templates/create-location-template/TwilioLocation.java +++ b/messaging/content-templates/create-location-template/create-location-template.java @@ -29,4 +29,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From ab57b7d6ee950624efc1cdde73d89c6ef1171e9d Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:37:03 -0700 Subject: [PATCH 49/95] Rename create-media-template-example.cs to create-media-template.cs --- ...reate-media-template-example.cs => create-media-template.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-media-template/{create-media-template-example.cs => create-media-template.cs} (98%) diff --git a/messaging/content-templates/create-media-template/create-media-template-example.cs b/messaging/content-templates/create-media-template/create-media-template.cs similarity index 98% rename from messaging/content-templates/create-media-template/create-media-template-example.cs rename to messaging/content-templates/create-media-template/create-media-template.cs index 1a7bd85e08..6eb28b426e 100644 --- a/messaging/content-templates/create-media-template/create-media-template-example.cs +++ b/messaging/content-templates/create-media-template/create-media-template.cs @@ -28,4 +28,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From ff6c2f8829edacbfdc5e5447dc913d7d9a34be54 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:37:14 -0700 Subject: [PATCH 50/95] Rename TwilioMedia.java to create-media-template.java --- .../{TwilioMedia.java => create-media-template.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-media-template/{TwilioMedia.java => create-media-template.java} (99%) diff --git a/messaging/content-templates/create-media-template/TwilioMedia.java b/messaging/content-templates/create-media-template/create-media-template.java similarity index 99% rename from messaging/content-templates/create-media-template/TwilioMedia.java rename to messaging/content-templates/create-media-template/create-media-template.java index 7cede95843..1cf5d89aff 100644 --- a/messaging/content-templates/create-media-template/TwilioMedia.java +++ b/messaging/content-templates/create-media-template/create-media-template.java @@ -24,4 +24,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From 5866187e8dd57ff7c5c89b32d7df1569e138de97 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:37:37 -0700 Subject: [PATCH 51/95] Rename create-text-template-example.cs to create-text-template.cs --- ...{create-text-template-example.cs => create-text-template.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-text-template/{create-text-template-example.cs => create-text-template.cs} (97%) diff --git a/messaging/content-templates/create-text-template/create-text-template-example.cs b/messaging/content-templates/create-text-template/create-text-template.cs similarity index 97% rename from messaging/content-templates/create-text-template/create-text-template-example.cs rename to messaging/content-templates/create-text-template/create-text-template.cs index 3285ed76ce..4bc3b28d29 100644 --- a/messaging/content-templates/create-text-template/create-text-template-example.cs +++ b/messaging/content-templates/create-text-template/create-text-template.cs @@ -24,4 +24,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From 9414724dbfaa1c22885858ac2aa352732e728d01 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:37:49 -0700 Subject: [PATCH 52/95] Rename TwilioText.java to create-text-template.java --- .../{TwilioText.java => create-text-template.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-text-template/{TwilioText.java => create-text-template.java} (99%) diff --git a/messaging/content-templates/create-text-template/TwilioText.java b/messaging/content-templates/create-text-template/create-text-template.java similarity index 99% rename from messaging/content-templates/create-text-template/TwilioText.java rename to messaging/content-templates/create-text-template/create-text-template.java index 1da2156c4b..72fb1666b8 100644 --- a/messaging/content-templates/create-text-template/TwilioText.java +++ b/messaging/content-templates/create-text-template/create-text-template.java @@ -23,4 +23,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From 6a2b654a2832d2ae184f36b492c807dc98d0d38b Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:38:13 -0700 Subject: [PATCH 53/95] Rename create-wa-auth-template-example.cs to create-wa-otp-button-template.cs --- ...uth-template-example.cs => create-wa-otp-button-template.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-wa-otp-button-template/{create-wa-auth-template-example.cs => create-wa-otp-button-template.cs} (98%) diff --git a/messaging/content-templates/create-wa-otp-button-template/create-wa-auth-template-example.cs b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.cs similarity index 98% rename from messaging/content-templates/create-wa-otp-button-template/create-wa-auth-template-example.cs rename to messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.cs index e5de8c1921..efec7c6797 100644 --- a/messaging/content-templates/create-wa-otp-button-template/create-wa-auth-template-example.cs +++ b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.cs @@ -27,4 +27,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From 8a57f6c5f3c711832f937d3d388259c7f108feb8 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:38:24 -0700 Subject: [PATCH 54/95] Rename WhatsAppAuthentication.java to create-wa-otp-button-template.java --- ...ppAuthentication.java => create-wa-otp-button-template.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-wa-otp-button-template/{WhatsAppAuthentication.java => create-wa-otp-button-template.java} (99%) diff --git a/messaging/content-templates/create-wa-otp-button-template/WhatsAppAuthentication.java b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.java similarity index 99% rename from messaging/content-templates/create-wa-otp-button-template/WhatsAppAuthentication.java rename to messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.java index 5e96520629..bde8a652b9 100644 --- a/messaging/content-templates/create-wa-otp-button-template/WhatsAppAuthentication.java +++ b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.java @@ -27,4 +27,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From df940b50b7cb6ab9427c062eadab779c4d95b2df Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:38:50 -0700 Subject: [PATCH 55/95] Rename create-wa-card-template-example.cs to create-whatsapp-card.cs --- ...eate-wa-card-template-example.cs => create-whatsapp-card.cs} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-whatsapp-card/{create-wa-card-template-example.cs => create-whatsapp-card.cs} (98%) diff --git a/messaging/content-templates/create-whatsapp-card/create-wa-card-template-example.cs b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.cs similarity index 98% rename from messaging/content-templates/create-whatsapp-card/create-wa-card-template-example.cs rename to messaging/content-templates/create-whatsapp-card/create-whatsapp-card.cs index 9fc068a5be..eadc6e1a7b 100644 --- a/messaging/content-templates/create-whatsapp-card/create-wa-card-template-example.cs +++ b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.cs @@ -37,4 +37,4 @@ // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); - Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); \ No newline at end of file + Console.WriteLine($"Created Twilio Content Template SID: {contentTemplate.Sid}"); From 5728c541e03bbe9809d0244fb22ab4aa6844db00 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:39:02 -0700 Subject: [PATCH 56/95] Rename WhatsAppCard.java to create-whatsapp-card.java --- .../{WhatsAppCard.java => create-whatsapp-card.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename messaging/content-templates/create-whatsapp-card/{WhatsAppCard.java => create-whatsapp-card.java} (99%) diff --git a/messaging/content-templates/create-whatsapp-card/WhatsAppCard.java b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.java similarity index 99% rename from messaging/content-templates/create-whatsapp-card/WhatsAppCard.java rename to messaging/content-templates/create-whatsapp-card/create-whatsapp-card.java index 967f92b60d..6375224e38 100644 --- a/messaging/content-templates/create-whatsapp-card/WhatsAppCard.java +++ b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.java @@ -37,4 +37,4 @@ public static String CreateTemplate() { return content.getSid(); } -} \ No newline at end of file +} From ec039d0d1b9680a2bfdbf2cea82d14dbf7d252f1 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:46:40 -0700 Subject: [PATCH 57/95] Update create-a-quick-reply-template.json --- .../output/create-a-quick-reply-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-a-quick-reply-template/output/create-a-quick-reply-template.json b/messaging/content-templates/create-a-quick-reply-template/output/create-a-quick-reply-template.json index e948945f9e..f8d40ecd5b 100644 --- a/messaging/content-templates/create-a-quick-reply-template/output/create-a-quick-reply-template.json +++ b/messaging/content-templates/create-a-quick-reply-template/output/create-a-quick-reply-template.json @@ -2,7 +2,7 @@ "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "date_created": "2022-08-29T10:43:20Z", "date_updated": "2022-08-29T10:43:20Z", - "friendly_name": "Owl Air Support quick reply template", + "friendly_name": "owl_air_qr", "language": "en", "links": { "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", From 520ea969ec5d1ec252ca658edf622d3c5f0e1ffe Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:47:01 -0700 Subject: [PATCH 58/95] Update create-a-quick-reply-template.cs --- .../create-a-quick-reply-template.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.cs b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.cs index 275e4ec47d..022d8effd3 100644 --- a/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.cs +++ b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.cs @@ -36,7 +36,7 @@ var contentCreateRequest = new ContentCreateRequest.Builder(); contentCreateRequest.WithTypes(types.Build()); contentCreateRequest.WithLanguage("en"); - contentCreateRequest.WithFriendlyName("owl_coupon_card"); + contentCreateRequest.WithFriendlyName("owl_air_qr"); contentCreateRequest.WithVariables(new Dictionary() { {"1", "John"} }); // create the twilio template From 2a45513405e49bd30ff5584d55a66311af8f51a7 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:47:21 -0700 Subject: [PATCH 59/95] Update create-a-quick-reply-template.curl --- .../create-a-quick-reply-template.curl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.curl b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.curl index 279b0d68ce..501f1c2bb6 100644 --- a/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.curl +++ b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "Owl Air Support quick reply template", + "friendly_name": "owl_air_qr", "language": "en", "variables": {"1":"Owl Air Customer"}, "types": { From b4b880e5bfda715ff1984a66a405fb88297f1eeb Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:47:46 -0700 Subject: [PATCH 60/95] Update create-a-quick-reply-template.java --- .../create-a-quick-reply-template.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.java b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.java index 8e27e3458f..35e2c82f1e 100644 --- a/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.java +++ b/messaging/content-templates/create-a-quick-reply-template/create-a-quick-reply-template.java @@ -35,7 +35,7 @@ public static String CreateTemplate() { types.setTwilioQuickReply(twilioQuickReply); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_twilio_quickreply"); + createRequest.setFriendlyName("owl_air_qr"); createRequest.setVariables(Map.of( "1", "first_name" )); From 9d227d470fc098efafbff2bf32597bd7552e882e Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:48:24 -0700 Subject: [PATCH 61/95] Update create-call-to-action-template.json --- .../output/create-call-to-action-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json b/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json index 57543c8ebf..fe5fb15ea4 100644 --- a/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json +++ b/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json @@ -13,7 +13,7 @@ "twilio/call-to-action": { "actions": [ { - "url": "https://owlair.example.com/%7B%7B5%7D%7D", + "url": "https://owlair.com/%7B%7B5%7D%7D", "type": "URL", "title": "Check Flight Status" }, From 2e722ad293f289a0b60c8e74f985871150c99efb Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:48:32 -0700 Subject: [PATCH 62/95] Update create-call-to-action-template.curl --- .../create-call-to-action-template.curl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl index f9c9ae55ea..681b48767e 100644 --- a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl +++ b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl @@ -15,7 +15,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ "actions": [{ "type": "URL", "title": "Check Flight Status", - "url": "https://owlair.example.com/%7B%7B5%7D%7D" + "url": "https://owlair.com/%7B%7B5%7D%7D" }, { "type": "PHONE_NUMBER", From 67f17a281c82e3e6ba9012ca5c096a367febd474 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:49:12 -0700 Subject: [PATCH 63/95] Update create-call-to-action-template.json --- .../output/create-call-to-action-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json b/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json index fe5fb15ea4..8f64bad1c0 100644 --- a/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json +++ b/messaging/content-templates/create-call-to-action-template/output/create-call-to-action-template.json @@ -2,7 +2,7 @@ "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "date_created": "2022-01-15T17:09:58Z", "date_updated": "2022-01-15T17:09:58Z", - "friendly_name": "Owl Air flight departure call to action template", + "friendly_name": "owl_air_cta", "language": "en", "links": { "approval_fetch": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests", From 947e276a2cac9ee67edd6cf6215b85eb194597f2 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:49:25 -0700 Subject: [PATCH 64/95] Update create-call-to-action-template.curl --- .../create-call-to-action-template.curl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl index 681b48767e..12626720c4 100644 --- a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl +++ b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "Owl Air flight departure call to action template", + "friendly_name": "owl_air_cta", "language": "en", "variables": {"1": "flight_number", "2": "arrival_city", From 03ae989d7842539cebed90a01c8d9037a86ea5db Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:49:50 -0700 Subject: [PATCH 65/95] Update create-call-to-action-template.java --- .../create-call-to-action-template.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.java b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.java index 88a3b0062c..8290aefe10 100644 --- a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.java +++ b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.java @@ -25,7 +25,7 @@ public static String CreateTemplate() { types.setTwilioCallToAction(twilioCallToAction); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_twilio_calltoaction"); + createRequest.setFriendlyName("owl_air_cta"); createRequest.setVariables(Map.of( "1", "flight_number", "2", "arrival_city", From 8cac225fb7c0f9bcad55557ff9cb9acba5f0768d Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:50:28 -0700 Subject: [PATCH 66/95] Update create-call-to-action-template.cs --- .../create-call-to-action-template.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.cs b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.cs index 7b854661ff..035e97d6c5 100644 --- a/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.cs +++ b/messaging/content-templates/create-call-to-action-template/create-call-to-action-template.cs @@ -16,7 +16,7 @@ .Build(); var cta2 = new CallToAction.Builder() .WithType(CallToActionActionType.PhoneNumber) - .WithPhone("+18005551234") + .WithPhone("+15555551234") .WithTitle("Call Support") .Build(); twilioCallToAction.WithActions(new List() { cta1, cta2 }); @@ -29,7 +29,7 @@ var contentCreateRequest = new ContentCreateRequest.Builder(); contentCreateRequest.WithTypes(types.Build()); contentCreateRequest.WithLanguage("en"); - contentCreateRequest.WithFriendlyName("owl_coupon_code"); + contentCreateRequest.WithFriendlyName("owl_air_cta"); contentCreateRequest.WithVariables(new Dictionary() { {"1", "flight_number"}, {"2", "arrival_city"}, {"3", "departure_time"}, {"4", "gate_number"}, {"5", "url_suffix"} }); // create the twilio template From 9ea426b8f9a085c15434ca1dc8a7b48c931567b1 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:51:17 -0700 Subject: [PATCH 67/95] Update create-card-template.json --- .../create-card-template/output/create-card-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-card-template/output/create-card-template.json b/messaging/content-templates/create-card-template/output/create-card-template.json index ec2cbbca17..6f4d10e172 100644 --- a/messaging/content-templates/create-card-template/output/create-card-template.json +++ b/messaging/content-templates/create-card-template/output/create-card-template.json @@ -2,7 +2,7 @@ "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "date_created": "2022-08-30T09:19:17Z", "date_updated": "2022-08-30T09:19:17Z", - "friendly_name": "Owl Air coupon card template", + "friendly_name": "owl_air_card", "language": "en", "links": { "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", From 47b3fdf894969ef053b5b5dad18e010ae02d8a20 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:51:27 -0700 Subject: [PATCH 68/95] Update create-card-template.json --- .../create-card-template/output/create-card-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-card-template/output/create-card-template.json b/messaging/content-templates/create-card-template/output/create-card-template.json index 6f4d10e172..3867fe542a 100644 --- a/messaging/content-templates/create-card-template/output/create-card-template.json +++ b/messaging/content-templates/create-card-template/output/create-card-template.json @@ -15,7 +15,7 @@ { "title": "Order Online", "type": "URL", - "url": "https://owlair.example.com/" + "url": "https://owlair.com/" }, { "phone_number": "+15551234567", From 3c89bf1ee64601ab2cfb9b6ce77cfcfa3d497756 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:51:40 -0700 Subject: [PATCH 69/95] Update create-card-template.curl --- .../create-card-template/create-card-template.curl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/messaging/content-templates/create-card-template/create-card-template.curl b/messaging/content-templates/create-card-template/create-card-template.curl index bf3ee32e12..3d2963d3f9 100644 --- a/messaging/content-templates/create-card-template/create-card-template.curl +++ b/messaging/content-templates/create-card-template/create-card-template.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "Owl Air coupon card template", + "friendly_name": "owl_air_card", "language": "en", "variables": { "1": "coupon_code" @@ -13,7 +13,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ "subtitle": "To unsubscribe, reply Stop", "actions": [ { - "url": "https://owlair.example.com/", + "url": "https://owlair.com/", "title": "Order Online", "type": "URL" }, From 6445320142d3af4a1e768fde4e8b71383a03e7fb Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:52:13 -0700 Subject: [PATCH 70/95] Update create-card-template.json --- .../create-card-template/output/create-card-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-card-template/output/create-card-template.json b/messaging/content-templates/create-card-template/output/create-card-template.json index 3867fe542a..c4719f121b 100644 --- a/messaging/content-templates/create-card-template/output/create-card-template.json +++ b/messaging/content-templates/create-card-template/output/create-card-template.json @@ -15,7 +15,7 @@ { "title": "Order Online", "type": "URL", - "url": "https://owlair.com/" + "url": "https://www.owlair.com/" }, { "phone_number": "+15551234567", From 6008224f3aa132cdf8f8a5bae7e8474e97e0b8dc Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:52:21 -0700 Subject: [PATCH 71/95] Update create-card-template.java --- .../create-card-template/create-card-template.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/messaging/content-templates/create-card-template/create-card-template.java b/messaging/content-templates/create-card-template/create-card-template.java index b833ec18ae..554e77a0fd 100644 --- a/messaging/content-templates/create-card-template/create-card-template.java +++ b/messaging/content-templates/create-card-template/create-card-template.java @@ -14,7 +14,7 @@ public static String CreateTemplate() { var action1 = new Content.CardAction(); action1.setType(Content.CardActionType.URL); - action1.setUrl("https://www.twilio.com/"); + action1.setUrl("https://www.owlair.com/"); action1.setTitle("Contact Us"); twilioCard.setActions(Arrays.asList(action1)); @@ -23,7 +23,7 @@ public static String CreateTemplate() { types.setTwilioCard(twilioCard); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_twilio_card"); + createRequest.setFriendlyName("owl_air_card"); createRequest.setVariables(Map.of( "1", "John" )); From 9db0f0e5b798e24b85b72d654196f73ce5c05a4a Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:53:23 -0700 Subject: [PATCH 72/95] Update create-card-template.cs --- .../create-card-template/create-card-template.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-card-template/create-card-template.cs b/messaging/content-templates/create-card-template/create-card-template.cs index 0ee4c51a1a..8c4282201b 100644 --- a/messaging/content-templates/create-card-template/create-card-template.cs +++ b/messaging/content-templates/create-card-template/create-card-template.cs @@ -29,7 +29,7 @@ var contentCreateRequest = new ContentCreateRequest.Builder(); contentCreateRequest.WithTypes(types.Build()); contentCreateRequest.WithLanguage("en"); - contentCreateRequest.WithFriendlyName("owl_coupon_card"); + contentCreateRequest.WithFriendlyName("owl_air_card"); contentCreateRequest.WithVariables(new Dictionary() { {"1", "John"} }); // create the twilio template From 10c138f18f09f3f996a72e2eff3745f320df14fc Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:54:04 -0700 Subject: [PATCH 73/95] Update create-list-picker-template.json --- .../output/create-list-picker-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-list-picker-template/output/create-list-picker-template.json b/messaging/content-templates/create-list-picker-template/output/create-list-picker-template.json index ccef263f2f..70d2e1e26f 100644 --- a/messaging/content-templates/create-list-picker-template/output/create-list-picker-template.json +++ b/messaging/content-templates/create-list-picker-template/output/create-list-picker-template.json @@ -2,7 +2,7 @@ "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "date_created": "2022-08-29T15:46:11Z", "date_updated": "2022-08-29T15:46:11Z", - "friendly_name": "Owl Air list picker template", + "friendly_name": "owl_air_list", "language": "en", "links": { "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", From 1b800ee71a09ee18563b452927e546e466324c1a Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:55:12 -0700 Subject: [PATCH 74/95] Update create-list-picker-template.curl --- .../create-list-picker-template.curl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/messaging/content-templates/create-list-picker-template/create-list-picker-template.curl b/messaging/content-templates/create-list-picker-template/create-list-picker-template.curl index 218fa70f36..32b53f88c2 100644 --- a/messaging/content-templates/create-list-picker-template/create-list-picker-template.curl +++ b/messaging/content-templates/create-list-picker-template/create-list-picker-template.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "Owl Air list picker template", + "friendly_name": "owl_air_list", "language": "en", "variables": { "1": "end_date" @@ -30,7 +30,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ ] }, "twilio/text": { - "body": "We have flights to the following destinations: (1) New York City, (2) Denver, (3) Chicago. Hurry! Sale ends on {{1}}!" + "body": "We have flights to the following destinations: (1) SFO, (2) OAK, (3) LAX. Hurry! Sale ends on {{1}}!" } } }' From e7071c21d9b116485ebd2a62fa1570922d8f5593 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:55:30 -0700 Subject: [PATCH 75/95] Update create-list-picker-template.java --- .../create-list-picker-template.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-list-picker-template/create-list-picker-template.java b/messaging/content-templates/create-list-picker-template/create-list-picker-template.java index 8387a13c60..7e3b018438 100644 --- a/messaging/content-templates/create-list-picker-template/create-list-picker-template.java +++ b/messaging/content-templates/create-list-picker-template/create-list-picker-template.java @@ -32,7 +32,7 @@ public static String CreateTemplate() { types.setTwilioListPicker(twilioListPicker); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_twilio_listpicker"); + createRequest.setFriendlyName("owl_air_list"); createRequest.setVariables(Map.of( "1", "end_date" )); From 740dbd268e9014490683f132328cf9ec26eb63d4 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:56:07 -0700 Subject: [PATCH 76/95] Update create-location-template.json --- .../output/create-location-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-location-template/output/create-location-template.json b/messaging/content-templates/create-location-template/output/create-location-template.json index e5ef336a53..d72a46022a 100644 --- a/messaging/content-templates/create-location-template/output/create-location-template.json +++ b/messaging/content-templates/create-location-template/output/create-location-template.json @@ -2,7 +2,7 @@ "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "date_created": "2022-08-29T15:23:12Z", "date_updated": "2022-08-29T15:23:12Z", - "friendly_name": "Owl Air location template", + "friendly_name": "owl_air_location", "language": "en", "links": { "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", From cde05d2d53ec999f01e8d0ecb7b925940c6e8e44 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:56:17 -0700 Subject: [PATCH 77/95] Update create-location-template.cs --- .../create-location-template/create-location-template.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-location-template/create-location-template.cs b/messaging/content-templates/create-location-template/create-location-template.cs index 0e7ae8a16d..e7123aedbc 100644 --- a/messaging/content-templates/create-location-template/create-location-template.cs +++ b/messaging/content-templates/create-location-template/create-location-template.cs @@ -25,7 +25,7 @@ var contentCreateRequest = new ContentCreateRequest.Builder(); contentCreateRequest.WithTypes(types.Build()); contentCreateRequest.WithLanguage("en"); - contentCreateRequest.WithFriendlyName("location"); + contentCreateRequest.WithFriendlyName("owl_air_location"); // create the twilio template var contentTemplate = await CreateAsync(contentCreateRequest.Build()); From d456c615d5f335f8eba99d8f02d332863aea931a Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:56:40 -0700 Subject: [PATCH 78/95] Update create-location-template.curl --- .../create-location-template/create-location-template.curl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-location-template/create-location-template.curl b/messaging/content-templates/create-location-template/create-location-template.curl index c60c311726..d4d2e9b410 100644 --- a/messaging/content-templates/create-location-template/create-location-template.curl +++ b/messaging/content-templates/create-location-template/create-location-template.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "Owl Air location template", + "friendly_name": "owl_air_location", "language": "en", "types": { "twilio/text": { From afa88b8cf6071562b438197950d636219a2cb0a4 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:56:52 -0700 Subject: [PATCH 79/95] Update create-location-template.java --- .../create-location-template/create-location-template.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-location-template/create-location-template.java b/messaging/content-templates/create-location-template/create-location-template.java index f76493791c..43462a43d7 100644 --- a/messaging/content-templates/create-location-template/create-location-template.java +++ b/messaging/content-templates/create-location-template/create-location-template.java @@ -20,7 +20,7 @@ public static String CreateTemplate() { types.setTwilioLocation(twilioLocation); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_twilio_location"); + createRequest.setFriendlyName("owl_air_location"); createRequest.setVariables(Map.of( "1", "John" )); From 35e58f1ef448d492d5b06d96d4b492c36917bea6 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:57:34 -0700 Subject: [PATCH 80/95] Update create-media-template.json --- .../create-media-template/output/create-media-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-media-template/output/create-media-template.json b/messaging/content-templates/create-media-template/output/create-media-template.json index 193c226bed..ab1b59f516 100644 --- a/messaging/content-templates/create-media-template/output/create-media-template.json +++ b/messaging/content-templates/create-media-template/output/create-media-template.json @@ -2,7 +2,7 @@ "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "date_created": "2022-08-29T15:12:22Z", "date_updated": "2022-08-29T15:12:22Z", - "friendly_name": "Thank you for your order media template", + "friendly_name": "media_template", "language": "en", "links": { "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", From 2a4e437e8532444cabe259117abc3745abe27ed8 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:57:48 -0700 Subject: [PATCH 81/95] Update create-media-template.curl --- .../create-media-template/create-media-template.curl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-media-template/create-media-template.curl b/messaging/content-templates/create-media-template/create-media-template.curl index 4932aadcea..772943688c 100644 --- a/messaging/content-templates/create-media-template/create-media-template.curl +++ b/messaging/content-templates/create-media-template/create-media-template.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "Thank you for your order media template", + "friendly_name": "media_template", "language": "en", "variables": {"1":"OrderNumber"}, "types": { From 3fbd50fea553d21a826bd1a271e11b3116ed39bc Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:58:01 -0700 Subject: [PATCH 82/95] Update create-media-template.java --- .../create-media-template/create-media-template.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-media-template/create-media-template.java b/messaging/content-templates/create-media-template/create-media-template.java index 1cf5d89aff..98c2310792 100644 --- a/messaging/content-templates/create-media-template/create-media-template.java +++ b/messaging/content-templates/create-media-template/create-media-template.java @@ -15,7 +15,7 @@ public static String CreateTemplate() { types.setTwilioMedia(twilioMedia); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_twilio_media"); + createRequest.setFriendlyName("media_template"); createRequest.setVariables(Map.of( "1", "order_number" )); From 2d7976d8f30d26166ec6f982b43aab1b2b0d2575 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:58:39 -0700 Subject: [PATCH 83/95] Update create-text-template.json --- .../create-text-template/output/create-text-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-text-template/output/create-text-template.json b/messaging/content-templates/create-text-template/output/create-text-template.json index b4f86ea33f..1e6d81847f 100644 --- a/messaging/content-templates/create-text-template/output/create-text-template.json +++ b/messaging/content-templates/create-text-template/output/create-text-template.json @@ -2,7 +2,7 @@ "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "date_created": "2022-09-01T12:39:19Z", "date_updated": "2022-09-01T12:39:19Z", - "friendly_name": "Owl Air Support text template", + "friendly_name": "media_template", "language": "en", "links": { "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", From 26a1d83af319567c11777d99b95e9980524e0d25 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:58:49 -0700 Subject: [PATCH 84/95] Update create-text-template.curl --- .../create-text-template/create-text-template.curl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-text-template/create-text-template.curl b/messaging/content-templates/create-text-template/create-text-template.curl index f23b2a12f1..6348db7f9b 100644 --- a/messaging/content-templates/create-text-template/create-text-template.curl +++ b/messaging/content-templates/create-text-template/create-text-template.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "Owl Air Support text template", + "friendly_name": "media_template", "language": "en", "variables": {"1":"name"}, "types": { From 4dac42485f721f26336fae9e8e973e946042e03c Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:59:01 -0700 Subject: [PATCH 85/95] Update create-text-template.java --- .../create-text-template/create-text-template.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-text-template/create-text-template.java b/messaging/content-templates/create-text-template/create-text-template.java index 72fb1666b8..96a515776e 100644 --- a/messaging/content-templates/create-text-template/create-text-template.java +++ b/messaging/content-templates/create-text-template/create-text-template.java @@ -14,7 +14,7 @@ public static String CreateTemplate() { types.setTwilioText(twilioText); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_twilio_text"); + createRequest.setFriendlyName("media_template"); createRequest.setVariables(Map.of( "1", "first_name" )); From e354a02455e684b5da670ba2b22075dc4c83cbc5 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:59:28 -0700 Subject: [PATCH 86/95] Update create-wa-otp-button-template.json --- .../output/create-wa-otp-button-template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json b/messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json index a604ba3c82..109480045b 100644 --- a/messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json +++ b/messaging/content-templates/create-wa-otp-button-template/output/create-wa-otp-button-template.json @@ -2,7 +2,7 @@ "account_sid": "$TWILIO_ACCOUNT_SID", "date_created": "2023-06-02T14:34:25Z", "date_updated": "2023-06-02T14:34:25Z", - "friendly_name": "WhatsApp OTP button template", + "friendly_name": "whatsapp_otp", "language": "en", "links": { "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", From 47434eb154796e9c84e8a0f67f108dcbf23dfb83 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 13:59:48 -0700 Subject: [PATCH 87/95] Update create-wa-otp-button-template.curl --- .../create-wa-otp-button-template.curl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.curl b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.curl index ebd1a9a61e..c091ccde15 100644 --- a/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.curl +++ b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "WhatsApp OTP button template", + "friendly_name": "whatsapp_otp", "language": "en", "types": { "whatsapp/authentication":{ From 89b3c5be6764150d54b703d27d530ffcfb72b27d Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 14:00:08 -0700 Subject: [PATCH 88/95] Update create-wa-otp-button-template.java --- .../create-wa-otp-button-template.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.java b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.java index bde8a652b9..d8892b8206 100644 --- a/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.java +++ b/messaging/content-templates/create-wa-otp-button-template/create-wa-otp-button-template.java @@ -21,7 +21,7 @@ public static String CreateTemplate() { types.setWhatsappAuthentication(waAuth); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_wa_auth"); + createRequest.setFriendlyName("whatsapp_otp"); var content = Content.creator(createRequest).create(); From 7ec789a079ded490214ebb5e1f1a17bf934174f5 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 14:00:41 -0700 Subject: [PATCH 89/95] Update create-whatsapp-card.json --- .../create-whatsapp-card/output/create-whatsapp-card.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-whatsapp-card/output/create-whatsapp-card.json b/messaging/content-templates/create-whatsapp-card/output/create-whatsapp-card.json index dbe99b5eee..ef88ac2fcf 100644 --- a/messaging/content-templates/create-whatsapp-card/output/create-whatsapp-card.json +++ b/messaging/content-templates/create-whatsapp-card/output/create-whatsapp-card.json @@ -2,7 +2,7 @@ "account_sid": "ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", "date_created": "2023-08-03T14:54:47Z", "date_updated": "2023-08-03T14:54:47Z", - "friendly_name": "Owl Air coupon card template", + "friendly_name": "owl_coupon_code", "language": "en", "links": { "approval_create": "https://content.twilio.com/v1/Content/HXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/ApprovalRequests/whatsapp", From a70663e58a3471009219fe843a6e81185bad405e Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 14:00:52 -0700 Subject: [PATCH 90/95] Update create-whatsapp-card.curl --- .../create-whatsapp-card/create-whatsapp-card.curl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.curl b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.curl index bb7875fe56..d0b69a230c 100644 --- a/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.curl +++ b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.curl @@ -2,7 +2,7 @@ curl -X POST 'https://content.twilio.com/v1/Content' \ -H 'Content-Type: application/json' \ -u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ -d '{ - "friendly_name": "Owl Air coupon card template", + "friendly_name": "owl_coupon_code", "language": "en", "variables": { "1": "coupon_code" From 3d1fbc97ef6525cc93696811ded3bb51774df36e Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Wed, 12 Jun 2024 14:01:02 -0700 Subject: [PATCH 91/95] Update create-whatsapp-card.java --- .../create-whatsapp-card/create-whatsapp-card.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.java b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.java index 6375224e38..454f36e854 100644 --- a/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.java +++ b/messaging/content-templates/create-whatsapp-card/create-whatsapp-card.java @@ -28,7 +28,7 @@ public static String CreateTemplate() { types.setWhatsappCard(waCard); var createRequest = new Content.ContentCreateRequest("en", types); - createRequest.setFriendlyName("java_sdk_example_wa_card"); + createRequest.setFriendlyName("owl_coupon_code"); createRequest.setVariables(Map.of( "1", "coupon_code" )); From 64f2048429647f49db0be5a91e1609581c9897bf Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Tue, 25 Jun 2024 09:36:29 -0700 Subject: [PATCH 92/95] Update fetch-all-content-resources-example.json.curl bug --- .../fetch-all-content-resources-example.json.curl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/messaging/content-templates/fetch-all-content-resources/fetch-all-content-resources-example.json.curl b/messaging/content-templates/fetch-all-content-resources/fetch-all-content-resources-example.json.curl index 93196e95cc..0a970287e1 100644 --- a/messaging/content-templates/fetch-all-content-resources/fetch-all-content-resources-example.json.curl +++ b/messaging/content-templates/fetch-all-content-resources/fetch-all-content-resources-example.json.curl @@ -1,2 +1,2 @@ -curl -X GET "https://content.twilio.com/v1/Content--u%20$TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN/%20No%20newline%20at%20end%20of%20file+curl%20-X%20GET"https://content.twilio.com/v1/Content" +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN From ce2bea2944203cb51b5b822b2cf2f88477aa4a4a Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Fri, 12 Jul 2024 13:16:47 -0400 Subject: [PATCH 93/95] Add Transcription TwiML snippets (#1081) --- .../transcription-basic-usage/meta.json | 4 ++++ .../output/transcription-basic-usage.twiml | 6 ++++++ .../transcription-basic-usage.cs | 17 +++++++++++++++++ .../transcription-basic-usage.java | 19 +++++++++++++++++++ .../transcription-basic-usage.js | 7 +++++++ .../transcription-basic-usage.php | 9 +++++++++ .../transcription-basic-usage.py | 9 +++++++++ .../transcription-basic-usage.rb | 8 ++++++++ .../meta.json | 4 ++++ ...scription-enableautomaticpunctuation.twiml | 6 ++++++ ...ranscription-enableautomaticpunctuation.cs | 17 +++++++++++++++++ ...nscription-enableautomaticpunctuation.java | 19 +++++++++++++++++++ ...ranscription-enableautomaticpunctuation.js | 7 +++++++ ...anscription-enableautomaticpunctuation.php | 9 +++++++++ ...ranscription-enableautomaticpunctuation.py | 11 +++++++++++ ...ranscription-enableautomaticpunctuation.rb | 8 ++++++++ .../transcription-hints-tokens/meta.json | 4 ++++ .../output/transcription-hints-tokens.twiml | 6 ++++++ .../transcription-hints-tokens.cs | 17 +++++++++++++++++ .../transcription-hints-tokens.java | 19 +++++++++++++++++++ .../transcription-hints-tokens.js | 7 +++++++ .../transcription-hints-tokens.php | 9 +++++++++ .../transcription-hints-tokens.py | 10 ++++++++++ .../transcription-hints-tokens.rb | 8 ++++++++ .../transcription-hints/meta.json | 4 ++++ .../output/transcription-hints.twiml | 6 ++++++ .../transcription-hints.cs | 17 +++++++++++++++++ .../transcription-hints.java | 19 +++++++++++++++++++ .../transcription-hints.js | 7 +++++++ .../transcription-hints.php | 9 +++++++++ .../transcription-hints.py | 12 ++++++++++++ .../transcription-hints.rb | 8 ++++++++ .../meta.json | 4 ++++ ...inboundtracklabel-outboundtracklabel.twiml | 6 ++++++ ...on-inboundtracklabel-outboundtracklabel.cs | 17 +++++++++++++++++ ...-inboundtracklabel-outboundtracklabel.java | 19 +++++++++++++++++++ ...on-inboundtracklabel-outboundtracklabel.js | 7 +++++++ ...n-inboundtracklabel-outboundtracklabel.php | 9 +++++++++ ...on-inboundtracklabel-outboundtracklabel.py | 11 +++++++++++ ...on-inboundtracklabel-outboundtracklabel.rb | 8 ++++++++ .../transcription-languagecode/meta.json | 4 ++++ .../output/transcription-languagecode.twiml | 6 ++++++ .../transcription-languagecode.cs | 17 +++++++++++++++++ .../transcription-languagecode.java | 19 +++++++++++++++++++ .../transcription-languagecode.js | 7 +++++++ .../transcription-languagecode.php | 9 +++++++++ .../transcription-languagecode.py | 10 ++++++++++ .../transcription-languagecode.rb | 8 ++++++++ .../transcription-name/meta.json | 4 ++++ .../output/transcription-name.twiml | 6 ++++++ .../transcription-name/transcription-name.cs | 17 +++++++++++++++++ .../transcription-name.java | 19 +++++++++++++++++++ .../transcription-name/transcription-name.js | 7 +++++++ .../transcription-name/transcription-name.php | 9 +++++++++ .../transcription-name/transcription-name.py | 10 ++++++++++ .../transcription-name/transcription-name.rb | 8 ++++++++ .../transcription-partialresults/meta.json | 4 ++++ .../output/transcription-partialresults.twiml | 6 ++++++ .../transcription-partialresults.cs | 17 +++++++++++++++++ .../transcription-partialresults.java | 19 +++++++++++++++++++ .../transcription-partialresults.js | 7 +++++++ .../transcription-partialresults.php | 9 +++++++++ .../transcription-partialresults.py | 11 +++++++++++ .../transcription-partialresults.rb | 8 ++++++++ .../transcription-profanityfilter/meta.json | 4 ++++ .../transcription-profanityfilter.twiml | 6 ++++++ .../transcription-profanityfilter.cs | 17 +++++++++++++++++ .../transcription-profanityfilter.java | 19 +++++++++++++++++++ .../transcription-profanityfilter.js | 7 +++++++ .../transcription-profanityfilter.php | 9 +++++++++ .../transcription-profanityfilter.py | 11 +++++++++++ .../transcription-profanityfilter.rb | 8 ++++++++ .../transcription-speechmodel/meta.json | 4 ++++ .../output/transcription-speechmodel.twiml | 6 ++++++ .../transcription-speechmodel.cs | 17 +++++++++++++++++ .../transcription-speechmodel.java | 19 +++++++++++++++++++ .../transcription-speechmodel.js | 7 +++++++ .../transcription-speechmodel.php | 9 +++++++++ .../transcription-speechmodel.py | 11 +++++++++++ .../transcription-speechmodel.rb | 8 ++++++++ .../transcription-stop/meta.json | 4 ++++ .../output/transcription-stop.twiml | 6 ++++++ .../transcription-stop/transcription-stop.cs | 17 +++++++++++++++++ .../transcription-stop.java | 19 +++++++++++++++++++ .../transcription-stop/transcription-stop.js | 7 +++++++ .../transcription-stop/transcription-stop.php | 9 +++++++++ .../transcription-stop/transcription-stop.py | 8 ++++++++ .../transcription-stop/transcription-stop.rb | 8 ++++++++ .../transcription-track/meta.json | 4 ++++ .../output/transcription-track.twiml | 6 ++++++ .../transcription-track.cs | 17 +++++++++++++++++ .../transcription-track.java | 19 +++++++++++++++++++ .../transcription-track.js | 7 +++++++ .../transcription-track.php | 9 +++++++++ .../transcription-track.py | 10 ++++++++++ .../transcription-track.rb | 8 ++++++++ .../meta.json | 4 ++++ .../transcription-transcriptionengine.twiml | 6 ++++++ .../transcription-transcriptionengine.cs | 17 +++++++++++++++++ .../transcription-transcriptionengine.java | 19 +++++++++++++++++++ .../transcription-transcriptionengine.js | 7 +++++++ .../transcription-transcriptionengine.php | 9 +++++++++ .../transcription-transcriptionengine.py | 10 ++++++++++ .../transcription-transcriptionengine.rb | 8 ++++++++ 104 files changed, 1044 insertions(+) create mode 100644 twiml/voice/transcription/transcription-basic-usage/meta.json create mode 100644 twiml/voice/transcription/transcription-basic-usage/output/transcription-basic-usage.twiml create mode 100644 twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.cs create mode 100644 twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.java create mode 100644 twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.js create mode 100644 twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.php create mode 100644 twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.py create mode 100644 twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.rb create mode 100644 twiml/voice/transcription/transcription-enableautomaticpunctuation/meta.json create mode 100644 twiml/voice/transcription/transcription-enableautomaticpunctuation/output/transcription-enableautomaticpunctuation.twiml create mode 100644 twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.cs create mode 100644 twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.java create mode 100644 twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.js create mode 100644 twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.php create mode 100644 twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.py create mode 100644 twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.rb create mode 100644 twiml/voice/transcription/transcription-hints-tokens/meta.json create mode 100644 twiml/voice/transcription/transcription-hints-tokens/output/transcription-hints-tokens.twiml create mode 100644 twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.cs create mode 100644 twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.java create mode 100644 twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.js create mode 100644 twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.php create mode 100644 twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.py create mode 100644 twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.rb create mode 100644 twiml/voice/transcription/transcription-hints/meta.json create mode 100644 twiml/voice/transcription/transcription-hints/output/transcription-hints.twiml create mode 100644 twiml/voice/transcription/transcription-hints/transcription-hints.cs create mode 100644 twiml/voice/transcription/transcription-hints/transcription-hints.java create mode 100644 twiml/voice/transcription/transcription-hints/transcription-hints.js create mode 100644 twiml/voice/transcription/transcription-hints/transcription-hints.php create mode 100644 twiml/voice/transcription/transcription-hints/transcription-hints.py create mode 100644 twiml/voice/transcription/transcription-hints/transcription-hints.rb create mode 100644 twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/meta.json create mode 100644 twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/output/transcription-inboundtracklabel-outboundtracklabel.twiml create mode 100644 twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.cs create mode 100644 twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.java create mode 100644 twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.js create mode 100644 twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.php create mode 100644 twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.py create mode 100644 twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.rb create mode 100644 twiml/voice/transcription/transcription-languagecode/meta.json create mode 100644 twiml/voice/transcription/transcription-languagecode/output/transcription-languagecode.twiml create mode 100644 twiml/voice/transcription/transcription-languagecode/transcription-languagecode.cs create mode 100644 twiml/voice/transcription/transcription-languagecode/transcription-languagecode.java create mode 100644 twiml/voice/transcription/transcription-languagecode/transcription-languagecode.js create mode 100644 twiml/voice/transcription/transcription-languagecode/transcription-languagecode.php create mode 100644 twiml/voice/transcription/transcription-languagecode/transcription-languagecode.py create mode 100644 twiml/voice/transcription/transcription-languagecode/transcription-languagecode.rb create mode 100644 twiml/voice/transcription/transcription-name/meta.json create mode 100644 twiml/voice/transcription/transcription-name/output/transcription-name.twiml create mode 100644 twiml/voice/transcription/transcription-name/transcription-name.cs create mode 100644 twiml/voice/transcription/transcription-name/transcription-name.java create mode 100644 twiml/voice/transcription/transcription-name/transcription-name.js create mode 100644 twiml/voice/transcription/transcription-name/transcription-name.php create mode 100644 twiml/voice/transcription/transcription-name/transcription-name.py create mode 100644 twiml/voice/transcription/transcription-name/transcription-name.rb create mode 100644 twiml/voice/transcription/transcription-partialresults/meta.json create mode 100644 twiml/voice/transcription/transcription-partialresults/output/transcription-partialresults.twiml create mode 100644 twiml/voice/transcription/transcription-partialresults/transcription-partialresults.cs create mode 100644 twiml/voice/transcription/transcription-partialresults/transcription-partialresults.java create mode 100644 twiml/voice/transcription/transcription-partialresults/transcription-partialresults.js create mode 100644 twiml/voice/transcription/transcription-partialresults/transcription-partialresults.php create mode 100644 twiml/voice/transcription/transcription-partialresults/transcription-partialresults.py create mode 100644 twiml/voice/transcription/transcription-partialresults/transcription-partialresults.rb create mode 100644 twiml/voice/transcription/transcription-profanityfilter/meta.json create mode 100644 twiml/voice/transcription/transcription-profanityfilter/output/transcription-profanityfilter.twiml create mode 100644 twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.cs create mode 100644 twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.java create mode 100644 twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.js create mode 100644 twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.php create mode 100644 twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.py create mode 100644 twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.rb create mode 100644 twiml/voice/transcription/transcription-speechmodel/meta.json create mode 100644 twiml/voice/transcription/transcription-speechmodel/output/transcription-speechmodel.twiml create mode 100644 twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.cs create mode 100644 twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.java create mode 100644 twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.js create mode 100644 twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.php create mode 100644 twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.py create mode 100644 twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.rb create mode 100644 twiml/voice/transcription/transcription-stop/meta.json create mode 100644 twiml/voice/transcription/transcription-stop/output/transcription-stop.twiml create mode 100644 twiml/voice/transcription/transcription-stop/transcription-stop.cs create mode 100644 twiml/voice/transcription/transcription-stop/transcription-stop.java create mode 100644 twiml/voice/transcription/transcription-stop/transcription-stop.js create mode 100644 twiml/voice/transcription/transcription-stop/transcription-stop.php create mode 100644 twiml/voice/transcription/transcription-stop/transcription-stop.py create mode 100644 twiml/voice/transcription/transcription-stop/transcription-stop.rb create mode 100644 twiml/voice/transcription/transcription-track/meta.json create mode 100644 twiml/voice/transcription/transcription-track/output/transcription-track.twiml create mode 100644 twiml/voice/transcription/transcription-track/transcription-track.cs create mode 100644 twiml/voice/transcription/transcription-track/transcription-track.java create mode 100644 twiml/voice/transcription/transcription-track/transcription-track.js create mode 100644 twiml/voice/transcription/transcription-track/transcription-track.php create mode 100644 twiml/voice/transcription/transcription-track/transcription-track.py create mode 100644 twiml/voice/transcription/transcription-track/transcription-track.rb create mode 100644 twiml/voice/transcription/transcription-transcriptionengine/meta.json create mode 100644 twiml/voice/transcription/transcription-transcriptionengine/output/transcription-transcriptionengine.twiml create mode 100644 twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.cs create mode 100644 twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.java create mode 100644 twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.js create mode 100644 twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.php create mode 100644 twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.py create mode 100644 twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.rb diff --git a/twiml/voice/transcription/transcription-basic-usage/meta.json b/twiml/voice/transcription/transcription-basic-usage/meta.json new file mode 100644 index 0000000000..4e2af60ad6 --- /dev/null +++ b/twiml/voice/transcription/transcription-basic-usage/meta.json @@ -0,0 +1,4 @@ +{ + "title": " - basic usage", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-basic-usage/output/transcription-basic-usage.twiml b/twiml/voice/transcription/transcription-basic-usage/output/transcription-basic-usage.twiml new file mode 100644 index 0000000000..d559de1de8 --- /dev/null +++ b/twiml/voice/transcription/transcription-basic-usage/output/transcription-basic-usage.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.cs b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.cs new file mode 100644 index 0000000000..5d2313f516 --- /dev/null +++ b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.java b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.java new file mode 100644 index 0000000000..6a1bdc5e61 --- /dev/null +++ b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.js b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.js new file mode 100644 index 0000000000..18834b0502 --- /dev/null +++ b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.php b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.php new file mode 100644 index 0000000000..6775ba515b --- /dev/null +++ b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.py b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.py new file mode 100644 index 0000000000..3d138da170 --- /dev/null +++ b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.py @@ -0,0 +1,9 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.rb b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.rb new file mode 100644 index 0000000000..6eeda33797 --- /dev/null +++ b/twiml/voice/transcription/transcription-basic-usage/transcription-basic-usage.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url') +end + +puts response diff --git a/twiml/voice/transcription/transcription-enableautomaticpunctuation/meta.json b/twiml/voice/transcription/transcription-enableautomaticpunctuation/meta.json new file mode 100644 index 0000000000..403046f650 --- /dev/null +++ b/twiml/voice/transcription/transcription-enableautomaticpunctuation/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with enableAutomaticPunctuation attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-enableautomaticpunctuation/output/transcription-enableautomaticpunctuation.twiml b/twiml/voice/transcription/transcription-enableautomaticpunctuation/output/transcription-enableautomaticpunctuation.twiml new file mode 100644 index 0000000000..874c9014d8 --- /dev/null +++ b/twiml/voice/transcription/transcription-enableautomaticpunctuation/output/transcription-enableautomaticpunctuation.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.cs b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.cs new file mode 100644 index 0000000000..b2494dcacc --- /dev/null +++ b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", enableAutomaticPunctuation: true, transcriptionEngine: "google"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.java b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.java new file mode 100644 index 0000000000..1cd0cf3ad1 --- /dev/null +++ b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").enableAutomaticPunctuation(true).transcriptionEngine("google").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.js b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.js new file mode 100644 index 0000000000..f02b7d065d --- /dev/null +++ b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', enableAutomaticPunctuation: true, transcriptionEngine: 'google'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.php b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.php new file mode 100644 index 0000000000..ebfb3ac713 --- /dev/null +++ b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'enableAutomaticPunctuation' => 'true', 'transcriptionEngine' => 'google']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.py b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.py new file mode 100644 index 0000000000..29be68bdce --- /dev/null +++ b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.py @@ -0,0 +1,11 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + enable_automatic_punctuation=True, + transcription_engine='google') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.rb b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.rb new file mode 100644 index 0000000000..97796666f7 --- /dev/null +++ b/twiml/voice/transcription/transcription-enableautomaticpunctuation/transcription-enableautomaticpunctuation.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', enable_automatic_punctuation: true, transcription_engine: 'google') +end + +puts response diff --git a/twiml/voice/transcription/transcription-hints-tokens/meta.json b/twiml/voice/transcription/transcription-hints-tokens/meta.json new file mode 100644 index 0000000000..90a935ed69 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints-tokens/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with hints attribute using tokens", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-hints-tokens/output/transcription-hints-tokens.twiml b/twiml/voice/transcription/transcription-hints-tokens/output/transcription-hints-tokens.twiml new file mode 100644 index 0000000000..68a175a545 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints-tokens/output/transcription-hints-tokens.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.cs b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.cs new file mode 100644 index 0000000000..9de49d05fc --- /dev/null +++ b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", hints: "$OOV_CLASS_ALPHANUMERIC_SEQUENCE"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.java b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.java new file mode 100644 index 0000000000..5e55eb5635 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").hints("$OOV_CLASS_ALPHANUMERIC_SEQUENCE").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.js b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.js new file mode 100644 index 0000000000..41db64eba3 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', hints: '$OOV_CLASS_ALPHANUMERIC_SEQUENCE'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.php b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.php new file mode 100644 index 0000000000..6c0b229116 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'hints' => '$OOV_CLASS_ALPHANUMERIC_SEQUENCE']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.py b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.py new file mode 100644 index 0000000000..8e0813e31a --- /dev/null +++ b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.py @@ -0,0 +1,10 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + hints='$OOV_CLASS_ALPHANUMERIC_SEQUENCE') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.rb b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.rb new file mode 100644 index 0000000000..260625991b --- /dev/null +++ b/twiml/voice/transcription/transcription-hints-tokens/transcription-hints-tokens.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', hints: '$OOV_CLASS_ALPHANUMERIC_SEQUENCE') +end + +puts response diff --git a/twiml/voice/transcription/transcription-hints/meta.json b/twiml/voice/transcription/transcription-hints/meta.json new file mode 100644 index 0000000000..e2365675f6 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with hints attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-hints/output/transcription-hints.twiml b/twiml/voice/transcription/transcription-hints/output/transcription-hints.twiml new file mode 100644 index 0000000000..9f1273a7a5 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints/output/transcription-hints.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-hints/transcription-hints.cs b/twiml/voice/transcription/transcription-hints/transcription-hints.cs new file mode 100644 index 0000000000..22d8b957b7 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints/transcription-hints.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", hints: "Alice Johnson, Bob Martin, ACME Corp, XYZ Enterprises, product demo, sales inquiry, customer feedback"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-hints/transcription-hints.java b/twiml/voice/transcription/transcription-hints/transcription-hints.java new file mode 100644 index 0000000000..c938659ceb --- /dev/null +++ b/twiml/voice/transcription/transcription-hints/transcription-hints.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").hints("Alice Johnson, Bob Martin, ACME Corp, XYZ Enterprises, product demo, sales inquiry, customer feedback").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-hints/transcription-hints.js b/twiml/voice/transcription/transcription-hints/transcription-hints.js new file mode 100644 index 0000000000..2a7a238a9c --- /dev/null +++ b/twiml/voice/transcription/transcription-hints/transcription-hints.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', hints: 'Alice Johnson, Bob Martin, ACME Corp, XYZ Enterprises, product demo, sales inquiry, customer feedback'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-hints/transcription-hints.php b/twiml/voice/transcription/transcription-hints/transcription-hints.php new file mode 100644 index 0000000000..b29be12761 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints/transcription-hints.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'hints' => 'Alice Johnson, Bob Martin, ACME Corp, XYZ Enterprises, product demo, sales inquiry, customer feedback']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-hints/transcription-hints.py b/twiml/voice/transcription/transcription-hints/transcription-hints.py new file mode 100644 index 0000000000..639b7c82b2 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints/transcription-hints.py @@ -0,0 +1,12 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + hints= + 'Alice Johnson, Bob Martin, ACME Corp, XYZ Enterprises, product demo, sales inquiry, customer feedback' +) +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-hints/transcription-hints.rb b/twiml/voice/transcription/transcription-hints/transcription-hints.rb new file mode 100644 index 0000000000..d879d14386 --- /dev/null +++ b/twiml/voice/transcription/transcription-hints/transcription-hints.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', hints: 'Alice Johnson, Bob Martin, ACME Corp, XYZ Enterprises, product demo, sales inquiry, customer feedback') +end + +puts response diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/meta.json b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/meta.json new file mode 100644 index 0000000000..b3f70d7ca8 --- /dev/null +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with inboundTrackLabel and outboundTrackLabel attributes", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/output/transcription-inboundtracklabel-outboundtracklabel.twiml b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/output/transcription-inboundtracklabel-outboundtracklabel.twiml new file mode 100644 index 0000000000..d153c67ea8 --- /dev/null +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/output/transcription-inboundtracklabel-outboundtracklabel.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.cs b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.cs new file mode 100644 index 0000000000..729019a3c3 --- /dev/null +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", inboundTrackLabel: "agent", outboundTrackLabel: "customer"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.java b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.java new file mode 100644 index 0000000000..2f2a3eaeaa --- /dev/null +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").inboundTrackLabel("agent").outboundTrackLabel("customer").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.js b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.js new file mode 100644 index 0000000000..1b3c91207a --- /dev/null +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', inboundTrackLabel: 'agent', outboundTrackLabel: 'customer'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.php b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.php new file mode 100644 index 0000000000..50098443ca --- /dev/null +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'inboundTrackLabel' => 'agent', 'outboundTrackLabel' => 'customer']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.py b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.py new file mode 100644 index 0000000000..f8776c12fb --- /dev/null +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.py @@ -0,0 +1,11 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + inbound_track_label='agent', + outbound_track_label='customer') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.rb b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.rb new file mode 100644 index 0000000000..b50d165a78 --- /dev/null +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/transcription-inboundtracklabel-outboundtracklabel.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', inbound_track_label: 'agent', outbound_track_label: 'customer') +end + +puts response diff --git a/twiml/voice/transcription/transcription-languagecode/meta.json b/twiml/voice/transcription/transcription-languagecode/meta.json new file mode 100644 index 0000000000..a30e23787d --- /dev/null +++ b/twiml/voice/transcription/transcription-languagecode/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with languageCode attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-languagecode/output/transcription-languagecode.twiml b/twiml/voice/transcription/transcription-languagecode/output/transcription-languagecode.twiml new file mode 100644 index 0000000000..315b1f400c --- /dev/null +++ b/twiml/voice/transcription/transcription-languagecode/output/transcription-languagecode.twiml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.cs b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.cs new file mode 100644 index 0000000000..dcbfdf06c6 --- /dev/null +++ b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", languageCode: "es-MX"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.java b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.java new file mode 100644 index 0000000000..9a4868a95d --- /dev/null +++ b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").languageCode("es-MX").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.js b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.js new file mode 100644 index 0000000000..e559941cee --- /dev/null +++ b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', languageCode: 'es-MX'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.php b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.php new file mode 100644 index 0000000000..c42f527c3f --- /dev/null +++ b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'languageCode' => 'es-MX']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.py b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.py new file mode 100644 index 0000000000..e4e70f6dd0 --- /dev/null +++ b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.py @@ -0,0 +1,10 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + language_code='es-MX') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.rb b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.rb new file mode 100644 index 0000000000..614c24fc6a --- /dev/null +++ b/twiml/voice/transcription/transcription-languagecode/transcription-languagecode.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', language_code: 'es-MX') +end + +puts response diff --git a/twiml/voice/transcription/transcription-name/meta.json b/twiml/voice/transcription/transcription-name/meta.json new file mode 100644 index 0000000000..0825fddd1b --- /dev/null +++ b/twiml/voice/transcription/transcription-name/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with name attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-name/output/transcription-name.twiml b/twiml/voice/transcription/transcription-name/output/transcription-name.twiml new file mode 100644 index 0000000000..4fa2aa746d --- /dev/null +++ b/twiml/voice/transcription/transcription-name/output/transcription-name.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-name/transcription-name.cs b/twiml/voice/transcription/transcription-name/transcription-name.cs new file mode 100644 index 0000000000..819ba925bc --- /dev/null +++ b/twiml/voice/transcription/transcription-name/transcription-name.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", name: "Contact center transcription"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-name/transcription-name.java b/twiml/voice/transcription/transcription-name/transcription-name.java new file mode 100644 index 0000000000..1566bfdb2b --- /dev/null +++ b/twiml/voice/transcription/transcription-name/transcription-name.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").name("Contact center transcription").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-name/transcription-name.js b/twiml/voice/transcription/transcription-name/transcription-name.js new file mode 100644 index 0000000000..e6f9607183 --- /dev/null +++ b/twiml/voice/transcription/transcription-name/transcription-name.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', name: 'Contact center transcription'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-name/transcription-name.php b/twiml/voice/transcription/transcription-name/transcription-name.php new file mode 100644 index 0000000000..13ec51de32 --- /dev/null +++ b/twiml/voice/transcription/transcription-name/transcription-name.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'name' => 'Contact center transcription']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-name/transcription-name.py b/twiml/voice/transcription/transcription-name/transcription-name.py new file mode 100644 index 0000000000..fece2d43f4 --- /dev/null +++ b/twiml/voice/transcription/transcription-name/transcription-name.py @@ -0,0 +1,10 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + name='Contact center transcription') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-name/transcription-name.rb b/twiml/voice/transcription/transcription-name/transcription-name.rb new file mode 100644 index 0000000000..916da65df7 --- /dev/null +++ b/twiml/voice/transcription/transcription-name/transcription-name.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', name: 'Contact center transcription') +end + +puts response diff --git a/twiml/voice/transcription/transcription-partialresults/meta.json b/twiml/voice/transcription/transcription-partialresults/meta.json new file mode 100644 index 0000000000..adc9b0922e --- /dev/null +++ b/twiml/voice/transcription/transcription-partialresults/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with partialResults attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-partialresults/output/transcription-partialresults.twiml b/twiml/voice/transcription/transcription-partialresults/output/transcription-partialresults.twiml new file mode 100644 index 0000000000..e1ef209b03 --- /dev/null +++ b/twiml/voice/transcription/transcription-partialresults/output/transcription-partialresults.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.cs b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.cs new file mode 100644 index 0000000000..59aa0bfe18 --- /dev/null +++ b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", partialResults: true, transcriptionEngine: "google"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.java b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.java new file mode 100644 index 0000000000..385eef31f5 --- /dev/null +++ b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").partialResults(true).transcriptionEngine("google").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.js b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.js new file mode 100644 index 0000000000..dded38d407 --- /dev/null +++ b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', partialResults: true, transcriptionEngine: 'google'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.php b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.php new file mode 100644 index 0000000000..f203f2a94b --- /dev/null +++ b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'partialResults' => 'true', 'transcriptionEngine' => 'google']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.py b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.py new file mode 100644 index 0000000000..4c6c0e2527 --- /dev/null +++ b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.py @@ -0,0 +1,11 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + partial_results=True, + transcription_engine='google') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.rb b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.rb new file mode 100644 index 0000000000..69e4a7cc31 --- /dev/null +++ b/twiml/voice/transcription/transcription-partialresults/transcription-partialresults.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', partial_results: true, transcription_engine: 'google') +end + +puts response diff --git a/twiml/voice/transcription/transcription-profanityfilter/meta.json b/twiml/voice/transcription/transcription-profanityfilter/meta.json new file mode 100644 index 0000000000..5105fe1b05 --- /dev/null +++ b/twiml/voice/transcription/transcription-profanityfilter/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with profanityFilter attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-profanityfilter/output/transcription-profanityfilter.twiml b/twiml/voice/transcription/transcription-profanityfilter/output/transcription-profanityfilter.twiml new file mode 100644 index 0000000000..0f834fb3d2 --- /dev/null +++ b/twiml/voice/transcription/transcription-profanityfilter/output/transcription-profanityfilter.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.cs b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.cs new file mode 100644 index 0000000000..dbaba72066 --- /dev/null +++ b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", profanityFilter: false, transcriptionEngine: "google"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.java b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.java new file mode 100644 index 0000000000..08af0f3572 --- /dev/null +++ b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").profanityFilter(false).transcriptionEngine("google").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.js b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.js new file mode 100644 index 0000000000..4ceb62dbdf --- /dev/null +++ b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', profanityFilter: false, transcriptionEngine: 'google'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.php b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.php new file mode 100644 index 0000000000..9c561eba11 --- /dev/null +++ b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'profanityFilter' => 'false', 'transcriptionEngine' => 'google']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.py b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.py new file mode 100644 index 0000000000..5503fe96cf --- /dev/null +++ b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.py @@ -0,0 +1,11 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + profanity_filter=False, + transcription_engine='google') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.rb b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.rb new file mode 100644 index 0000000000..2f84ba6bb1 --- /dev/null +++ b/twiml/voice/transcription/transcription-profanityfilter/transcription-profanityfilter.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', profanity_filter: false, transcription_engine: 'google') +end + +puts response diff --git a/twiml/voice/transcription/transcription-speechmodel/meta.json b/twiml/voice/transcription/transcription-speechmodel/meta.json new file mode 100644 index 0000000000..0e8726d472 --- /dev/null +++ b/twiml/voice/transcription/transcription-speechmodel/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with speechModel attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-speechmodel/output/transcription-speechmodel.twiml b/twiml/voice/transcription/transcription-speechmodel/output/transcription-speechmodel.twiml new file mode 100644 index 0000000000..b83f9828fd --- /dev/null +++ b/twiml/voice/transcription/transcription-speechmodel/output/transcription-speechmodel.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.cs b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.cs new file mode 100644 index 0000000000..d671251fad --- /dev/null +++ b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", speechModel: "telephony", transcriptionEngine: "google"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.java b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.java new file mode 100644 index 0000000000..5f4dd5e9a2 --- /dev/null +++ b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").speechModel("telephony").transcriptionEngine("google").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.js b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.js new file mode 100644 index 0000000000..a88e80f55f --- /dev/null +++ b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', speechModel: 'telephony', transcriptionEngine: 'google'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.php b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.php new file mode 100644 index 0000000000..56c546d811 --- /dev/null +++ b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'speechModel' => 'telephony', 'transcriptionEngine' => 'google']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.py b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.py new file mode 100644 index 0000000000..561533b123 --- /dev/null +++ b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.py @@ -0,0 +1,11 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + speech_model='telephony', + transcription_engine='google') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.rb b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.rb new file mode 100644 index 0000000000..b09a575e57 --- /dev/null +++ b/twiml/voice/transcription/transcription-speechmodel/transcription-speechmodel.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', speech_model: 'telephony', transcription_engine: 'google') +end + +puts response diff --git a/twiml/voice/transcription/transcription-stop/meta.json b/twiml/voice/transcription/transcription-stop/meta.json new file mode 100644 index 0000000000..387ff86915 --- /dev/null +++ b/twiml/voice/transcription/transcription-stop/meta.json @@ -0,0 +1,4 @@ +{ + "title": "Stop a ", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-stop/output/transcription-stop.twiml b/twiml/voice/transcription/transcription-stop/output/transcription-stop.twiml new file mode 100644 index 0000000000..7520bc8954 --- /dev/null +++ b/twiml/voice/transcription/transcription-stop/output/transcription-stop.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-stop/transcription-stop.cs b/twiml/voice/transcription/transcription-stop/transcription-stop.cs new file mode 100644 index 0000000000..1dbe72a7cb --- /dev/null +++ b/twiml/voice/transcription/transcription-stop/transcription-stop.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var stop = new Stop(); + stop.Transcription(name: "Contact center transcription"); + response.Append(stop); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-stop/transcription-stop.java b/twiml/voice/transcription/transcription-stop/transcription-stop.java new file mode 100644 index 0000000000..131f03f47a --- /dev/null +++ b/twiml/voice/transcription/transcription-stop/transcription-stop.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Stop; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().name("Contact center transcription").build(); + Stop stop = new Stop.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().stop(stop).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-stop/transcription-stop.js b/twiml/voice/transcription/transcription-stop/transcription-stop.js new file mode 100644 index 0000000000..8bef4992bb --- /dev/null +++ b/twiml/voice/transcription/transcription-stop/transcription-stop.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const stop = response.stop(); +stop.transcription({name: 'Contact center transcription'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-stop/transcription-stop.php b/twiml/voice/transcription/transcription-stop/transcription-stop.php new file mode 100644 index 0000000000..a061422f91 --- /dev/null +++ b/twiml/voice/transcription/transcription-stop/transcription-stop.php @@ -0,0 +1,9 @@ +stop(); +$stop->transcription(['name' => 'Contact center transcription']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-stop/transcription-stop.py b/twiml/voice/transcription/transcription-stop/transcription-stop.py new file mode 100644 index 0000000000..267be896be --- /dev/null +++ b/twiml/voice/transcription/transcription-stop/transcription-stop.py @@ -0,0 +1,8 @@ +from twilio.twiml.voice_response import VoiceResponse, Stop, Transcription + +response = VoiceResponse() +stop = Stop() +stop.transcription(name='Contact center transcription') +response.append(stop) + +print(response) diff --git a/twiml/voice/transcription/transcription-stop/transcription-stop.rb b/twiml/voice/transcription/transcription-stop/transcription-stop.rb new file mode 100644 index 0000000000..89f632d12b --- /dev/null +++ b/twiml/voice/transcription/transcription-stop/transcription-stop.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.stop do |stop| + stop.transcription(name: 'Contact center transcription') +end + +puts response diff --git a/twiml/voice/transcription/transcription-track/meta.json b/twiml/voice/transcription/transcription-track/meta.json new file mode 100644 index 0000000000..e202a70ee0 --- /dev/null +++ b/twiml/voice/transcription/transcription-track/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with track attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-track/output/transcription-track.twiml b/twiml/voice/transcription/transcription-track/output/transcription-track.twiml new file mode 100644 index 0000000000..4c1d57c9a8 --- /dev/null +++ b/twiml/voice/transcription/transcription-track/output/transcription-track.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-track/transcription-track.cs b/twiml/voice/transcription/transcription-track/transcription-track.cs new file mode 100644 index 0000000000..4e1a75cab5 --- /dev/null +++ b/twiml/voice/transcription/transcription-track/transcription-track.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", track: "inbound_track"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-track/transcription-track.java b/twiml/voice/transcription/transcription-track/transcription-track.java new file mode 100644 index 0000000000..12cbf74372 --- /dev/null +++ b/twiml/voice/transcription/transcription-track/transcription-track.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").track(Transcription.Track.INBOUND_TRACK).build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-track/transcription-track.js b/twiml/voice/transcription/transcription-track/transcription-track.js new file mode 100644 index 0000000000..da06e72036 --- /dev/null +++ b/twiml/voice/transcription/transcription-track/transcription-track.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', track: 'inbound_track'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-track/transcription-track.php b/twiml/voice/transcription/transcription-track/transcription-track.php new file mode 100644 index 0000000000..2b891129b0 --- /dev/null +++ b/twiml/voice/transcription/transcription-track/transcription-track.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'track' => 'inbound_track']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-track/transcription-track.py b/twiml/voice/transcription/transcription-track/transcription-track.py new file mode 100644 index 0000000000..b59299e54f --- /dev/null +++ b/twiml/voice/transcription/transcription-track/transcription-track.py @@ -0,0 +1,10 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + track='inbound_track') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-track/transcription-track.rb b/twiml/voice/transcription/transcription-track/transcription-track.rb new file mode 100644 index 0000000000..3d9dd40f66 --- /dev/null +++ b/twiml/voice/transcription/transcription-track/transcription-track.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', track: 'inbound_track') +end + +puts response diff --git a/twiml/voice/transcription/transcription-transcriptionengine/meta.json b/twiml/voice/transcription/transcription-transcriptionengine/meta.json new file mode 100644 index 0000000000..cb51d2636a --- /dev/null +++ b/twiml/voice/transcription/transcription-transcriptionengine/meta.json @@ -0,0 +1,4 @@ +{ + "title": " with transcriptionEngine attribute", + "type": "server" +} diff --git a/twiml/voice/transcription/transcription-transcriptionengine/output/transcription-transcriptionengine.twiml b/twiml/voice/transcription/transcription-transcriptionengine/output/transcription-transcriptionengine.twiml new file mode 100644 index 0000000000..6d0e88c1f3 --- /dev/null +++ b/twiml/voice/transcription/transcription-transcriptionengine/output/transcription-transcriptionengine.twiml @@ -0,0 +1,6 @@ + + + + + + diff --git a/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.cs b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.cs new file mode 100644 index 0000000000..af298f224f --- /dev/null +++ b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.cs @@ -0,0 +1,17 @@ +using System; +using Twilio.TwiML; +using Twilio.TwiML.Voice; + + +class Example +{ + static void Main() + { + var response = new VoiceResponse(); + var start = new Start(); + start.Transcription(statusCallbackUrl: "https://example.com/your-callback-url", transcriptionEngine: "google"); + response.Append(start); + + Console.WriteLine(response.ToString()); + } +} diff --git a/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.java b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.java new file mode 100644 index 0000000000..e424233ce8 --- /dev/null +++ b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.java @@ -0,0 +1,19 @@ +import com.twilio.twiml.VoiceResponse; +import com.twilio.twiml.voice.Start; +import com.twilio.twiml.voice.Transcription; +import com.twilio.twiml.TwiMLException; + + +public class Example { + public static void main(String[] args) { + Transcription transcription = new Transcription.Builder().statusCallbackUrl("https://example.com/your-callback-url").transcriptionEngine("google").build(); + Start start = new Start.Builder().transcription(transcription).build(); + VoiceResponse response = new VoiceResponse.Builder().start(start).build(); + + try { + System.out.println(response.toXml()); + } catch (TwiMLException e) { + e.printStackTrace(); + } + } +} diff --git a/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.js b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.js new file mode 100644 index 0000000000..49683d6e93 --- /dev/null +++ b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.js @@ -0,0 +1,7 @@ +const VoiceResponse = require('twilio').twiml.VoiceResponse; + +const response = new VoiceResponse(); +const start = response.start(); +start.transcription({statusCallbackUrl: 'https://example.com/your-callback-url', transcriptionEngine: 'google'}); + +console.log(response.toString()); diff --git a/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.php b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.php new file mode 100644 index 0000000000..5ae2eb901e --- /dev/null +++ b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.php @@ -0,0 +1,9 @@ +start(); +$start->transcription(['statusCallbackUrl' => 'https://example.com/your-callback-url', 'transcriptionEngine' => 'google']); + +echo $response; diff --git a/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.py b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.py new file mode 100644 index 0000000000..f0383ba0fc --- /dev/null +++ b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.py @@ -0,0 +1,10 @@ +from twilio.twiml.voice_response import VoiceResponse, Start, Transcription + +response = VoiceResponse() +start = Start() +start.transcription( + status_callback_url='https://example.com/your-callback-url', + transcription_engine='google') +response.append(start) + +print(response) diff --git a/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.rb b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.rb new file mode 100644 index 0000000000..28b3658b1f --- /dev/null +++ b/twiml/voice/transcription/transcription-transcriptionengine/transcription-transcriptionengine.rb @@ -0,0 +1,8 @@ +require 'twilio-ruby' + +response = Twilio::TwiML::VoiceResponse.new +response.start do |start| + start.transcription(status_callback_url: 'https://example.com/your-callback-url', transcription_engine: 'google') +end + +puts response From c556ee1472fce4ba092e2447045946dcc21f229d Mon Sep 17 00:00:00 2001 From: Brianna DelValle Date: Mon, 15 Jul 2024 16:43:33 -0400 Subject: [PATCH 94/95] Add backslashes (#1082) --- twiml/voice/transcription/transcription-hints-tokens/meta.json | 2 +- twiml/voice/transcription/transcription-hints/meta.json | 2 +- .../meta.json | 2 +- twiml/voice/transcription/transcription-languagecode/meta.json | 2 +- twiml/voice/transcription/transcription-name/meta.json | 2 +- .../voice/transcription/transcription-partialresults/meta.json | 2 +- .../voice/transcription/transcription-profanityfilter/meta.json | 2 +- twiml/voice/transcription/transcription-speechmodel/meta.json | 2 +- twiml/voice/transcription/transcription-stop/meta.json | 2 +- twiml/voice/transcription/transcription-track/meta.json | 2 +- .../transcription/transcription-transcriptionengine/meta.json | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/twiml/voice/transcription/transcription-hints-tokens/meta.json b/twiml/voice/transcription/transcription-hints-tokens/meta.json index 90a935ed69..6f18251c7e 100644 --- a/twiml/voice/transcription/transcription-hints-tokens/meta.json +++ b/twiml/voice/transcription/transcription-hints-tokens/meta.json @@ -1,4 +1,4 @@ { - "title": " with hints attribute using tokens", + "title": "\\ with hints attribute using tokens", "type": "server" } diff --git a/twiml/voice/transcription/transcription-hints/meta.json b/twiml/voice/transcription/transcription-hints/meta.json index e2365675f6..11ecbb4c48 100644 --- a/twiml/voice/transcription/transcription-hints/meta.json +++ b/twiml/voice/transcription/transcription-hints/meta.json @@ -1,4 +1,4 @@ { - "title": " with hints attribute", + "title": "\\ with hints attribute", "type": "server" } diff --git a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/meta.json b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/meta.json index b3f70d7ca8..3a303b5231 100644 --- a/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/meta.json +++ b/twiml/voice/transcription/transcription-inboundtracklabel-outboundtracklabel/meta.json @@ -1,4 +1,4 @@ { - "title": " with inboundTrackLabel and outboundTrackLabel attributes", + "title": "\\ with inboundTrackLabel and outboundTrackLabel attributes", "type": "server" } diff --git a/twiml/voice/transcription/transcription-languagecode/meta.json b/twiml/voice/transcription/transcription-languagecode/meta.json index a30e23787d..fa0130eb1a 100644 --- a/twiml/voice/transcription/transcription-languagecode/meta.json +++ b/twiml/voice/transcription/transcription-languagecode/meta.json @@ -1,4 +1,4 @@ { - "title": " with languageCode attribute", + "title": "\\ with languageCode attribute", "type": "server" } diff --git a/twiml/voice/transcription/transcription-name/meta.json b/twiml/voice/transcription/transcription-name/meta.json index 0825fddd1b..1ce6be220b 100644 --- a/twiml/voice/transcription/transcription-name/meta.json +++ b/twiml/voice/transcription/transcription-name/meta.json @@ -1,4 +1,4 @@ { - "title": " with name attribute", + "title": "\\ with name attribute", "type": "server" } diff --git a/twiml/voice/transcription/transcription-partialresults/meta.json b/twiml/voice/transcription/transcription-partialresults/meta.json index adc9b0922e..b146f4f6d1 100644 --- a/twiml/voice/transcription/transcription-partialresults/meta.json +++ b/twiml/voice/transcription/transcription-partialresults/meta.json @@ -1,4 +1,4 @@ { - "title": " with partialResults attribute", + "title": "\\ with partialResults attribute", "type": "server" } diff --git a/twiml/voice/transcription/transcription-profanityfilter/meta.json b/twiml/voice/transcription/transcription-profanityfilter/meta.json index 5105fe1b05..78d650f0b8 100644 --- a/twiml/voice/transcription/transcription-profanityfilter/meta.json +++ b/twiml/voice/transcription/transcription-profanityfilter/meta.json @@ -1,4 +1,4 @@ { - "title": " with profanityFilter attribute", + "title": "\\ with profanityFilter attribute", "type": "server" } diff --git a/twiml/voice/transcription/transcription-speechmodel/meta.json b/twiml/voice/transcription/transcription-speechmodel/meta.json index 0e8726d472..9040c48a06 100644 --- a/twiml/voice/transcription/transcription-speechmodel/meta.json +++ b/twiml/voice/transcription/transcription-speechmodel/meta.json @@ -1,4 +1,4 @@ { - "title": " with speechModel attribute", + "title": "\\ with speechModel attribute", "type": "server" } diff --git a/twiml/voice/transcription/transcription-stop/meta.json b/twiml/voice/transcription/transcription-stop/meta.json index 387ff86915..0a8dd67f36 100644 --- a/twiml/voice/transcription/transcription-stop/meta.json +++ b/twiml/voice/transcription/transcription-stop/meta.json @@ -1,4 +1,4 @@ { - "title": "Stop a ", + "title": "Stop a \\", "type": "server" } diff --git a/twiml/voice/transcription/transcription-track/meta.json b/twiml/voice/transcription/transcription-track/meta.json index e202a70ee0..579b90759b 100644 --- a/twiml/voice/transcription/transcription-track/meta.json +++ b/twiml/voice/transcription/transcription-track/meta.json @@ -1,4 +1,4 @@ { - "title": " with track attribute", + "title": "\\ with track attribute", "type": "server" } diff --git a/twiml/voice/transcription/transcription-transcriptionengine/meta.json b/twiml/voice/transcription/transcription-transcriptionengine/meta.json index cb51d2636a..179fe7d5bf 100644 --- a/twiml/voice/transcription/transcription-transcriptionengine/meta.json +++ b/twiml/voice/transcription/transcription-transcriptionengine/meta.json @@ -1,4 +1,4 @@ { - "title": " with transcriptionEngine attribute", + "title": "\\ with transcriptionEngine attribute", "type": "server" } From a392576838c82a837a952e39b08af7e343960c93 Mon Sep 17 00:00:00 2001 From: benparj98 <109106005+benparj98@users.noreply.github.com> Date: Thu, 25 Jul 2024 07:57:04 -0700 Subject: [PATCH 95/95] Add files via upload (#1083) * Add files via upload New content type sample * Update messaging/content-templates/create-carousel-template/create-carousel-template.curl Co-authored-by: Cristhian Motoche * Update create-carousel-template.json --------- Co-authored-by: Cristhian Motoche --- .../create-carousel-template.curl | 85 +++++++++++++++++ .../create-carousel-template/meta.json | 6 ++ .../output/create-carousel-template.json | 95 +++++++++++++++++++ 3 files changed, 186 insertions(+) create mode 100644 messaging/content-templates/create-carousel-template/create-carousel-template.curl create mode 100644 messaging/content-templates/create-carousel-template/meta.json create mode 100644 messaging/content-templates/create-carousel-template/output/create-carousel-template.json diff --git a/messaging/content-templates/create-carousel-template/create-carousel-template.curl b/messaging/content-templates/create-carousel-template/create-carousel-template.curl new file mode 100644 index 0000000000..f3b33ac93f --- /dev/null +++ b/messaging/content-templates/create-carousel-template/create-carousel-template.curl @@ -0,0 +1,85 @@ +curl -X POST 'https://content.twilio.com/v1/Content' \ +-H 'Content-Type: application/json' \ +-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN \ +-d '{ + "friendly_name": "twilio_deal", + "language": "en", + "variables": { + "1": "Twilio" + }, + "types": { + "twilio/carousel": { + "body": "New {{1}} merch just dropped! 👀", + "cards": [ + { + "title":"Twilio Hoodie", + "body":"Warm as owl feathers.", + "media":"https://sienna-grasshopper-3262.twil.io/assets/hoodie.jpeg", + "actions":[ + { + "type":"QUICK_REPLY", + "title":"I want it!", + "id":"want_hoodie" + }, + { + "type":"URL", + "title":"I am taking this!", + "url":"https://sienna-grasshopper-3262.twil.io/assets/hoodie.jpeg" + } + ] + }, + { + "title":"Twilio Tote", + "body":"Carry a little more.", + "media":"https://sienna-grasshopper-3262.twil.io/assets/tote.jpeg", + "actions":[ + { + "type":"QUICK_REPLY", + "title":"I want it!", + "id":"want_tote" + }, + { + "type":"URL", + "title":"Take the tote!", + "url":"https://sienna-grasshopper-3262.twil.io/assets/tote.jpeg" + } + ] + }, + { + "title":"Twilio Bucket Hat", + "body":"Stay in the shade.", + "media":"https://sienna-grasshopper-3262.twil.io/assets/hat.jpeg", + "actions":[ + { + "type":"QUICK_REPLY", + "title":"I want it!", + "id":"want_hat" + }, + { + "type":"URL", + "title":"Hand me the hat!", + "url":"https://sienna-grasshopper-3262.twil.io/assets/hat.jpeg" + } + ] + }, + { + "title":"Twilio Mug", + "body":"Sip a little.", + "media":"https://sienna-grasshopper-3262.twil.io/assets/mug.jpeg", + "actions":[ + { + "type":"QUICK_REPLY", + "title":"I want it!", + "id":"want_mug" + }, + { + "type":"URL", + "title":"Make me a mug!", + "url":"https://sienna-grasshopper-3262.twil.io/assets/mug.jpeg" + } + ] + } +] + } + } +}' diff --git a/messaging/content-templates/create-carousel-template/meta.json b/messaging/content-templates/create-carousel-template/meta.json new file mode 100644 index 0000000000..c9d5e7050c --- /dev/null +++ b/messaging/content-templates/create-carousel-template/meta.json @@ -0,0 +1,6 @@ +{ + "title": "Content Templates API - Create a Carousel Template", + "title_override": "Create Carousel Content Template", + "description_override": "", + "type": "server" +} \ No newline at end of file diff --git a/messaging/content-templates/create-carousel-template/output/create-carousel-template.json b/messaging/content-templates/create-carousel-template/output/create-carousel-template.json new file mode 100644 index 0000000000..d091737090 --- /dev/null +++ b/messaging/content-templates/create-carousel-template/output/create-carousel-template.json @@ -0,0 +1,95 @@ +{ + "account_sid": "ACXXXXXXXX", + "date_created": "2024-07-24T20:35:59Z", + "date_updated": "2024-07-24T20:35:59Z", + "friendly_name": "twilio_deal", + "language": "en", + "links": { + "approval_create": "https://content.twilio.com/v1/Content/HXxxxxxxxxx/ApprovalRequests/whatsapp", + "approval_fetch": "https://content.twilio.com/v1/Content/HXxxxxxxxxx/ApprovalRequests" + }, + "sid": "HXxxxxxxx", + "types": { + "twilio/carousel": { + "body": "New {{1}} merch just dropped! 👀", + "cards": [ + { + "actions": [ + { + "id": "want_hoodie", + "index": 0, + "title": "I want it!", + "type": "QUICK_REPLY" + }, + { + "title": "I'm taking this!", + "type": "URL", + "url": "https://sienna-grasshopper-3262.twil.io/assets/hoodie.jpeg" + } + ], + "body": "Warm as owl feathers.", + "media": "https://sienna-grasshopper-3262.twil.io/assets/hoodie.jpeg", + "title": "Twilio Hoodie" + }, + { + "actions": [ + { + "id": "want_tote", + "index": 0, + "title": "I want it!", + "type": "QUICK_REPLY" + }, + { + "title": "Take the tote!", + "type": "URL", + "url": "https://sienna-grasshopper-3262.twil.io/assets/tote.jpeg" + } + ], + "body": "Carry a little more.", + "media": "https://sienna-grasshopper-3262.twil.io/assets/tote.jpeg", + "title": "Twilio Tote" + }, + { + "actions": [ + { + "id": "want_hat", + "index": 0, + "title": "I want it!", + "type": "QUICK_REPLY" + }, + { + "title": "Hand me the hat!", + "type": "URL", + "url": "https://sienna-grasshopper-3262.twil.io/assets/hat.jpeg" + } + ], + "body": "Stay in the shade.", + "media": "https://sienna-grasshopper-3262.twil.io/assets/hat.jpeg", + "title": "Twilio Bucket Hat" + }, + { + "actions": [ + { + "id": "want_mug", + "index": 0, + "title": "I want it!", + "type": "QUICK_REPLY" + }, + { + "title": "Make me a mug!", + "type": "URL", + "url": "https://sienna-grasshopper-3262.twil.io/assets/mug.jpeg" + } + ], + "body": "Sip a little.", + "media": "https://sienna-grasshopper-3262.twil.io/assets/mug.jpeg", + "title": "Twilio Mug" + } + ] + } + }, + "url": "https://content.twilio.com/v1/Content/HXxxxxxxxxx", + "variables": { + "1": "Twilio" + } +}