From 961e9e9ca255879dcf04e4eef82a0cdc1d01884f Mon Sep 17 00:00:00 2001 From: RJPearson94 Date: Wed, 14 Dec 2022 20:49:07 +0000 Subject: [PATCH] fix: remove type and address update as they cannot be modified --- CHANGELOG.md | 8 ++++++++ definitions/service/conversations/v1/api.json | 12 ------------ .../v1/configuration/address/api_op_update.go | 2 -- 3 files changed, 8 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edbc34b5..6395b12e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v0.23.3 (2022-12-14) + +FIXES + +### Conversations + +- Remove type and address as they cannot be updated + # v0.23.2 (2022-12-14) FIXES diff --git a/definitions/service/conversations/v1/api.json b/definitions/service/conversations/v1/api.json index bede77d6..8743fade 100644 --- a/definitions/service/conversations/v1/api.json +++ b/definitions/service/conversations/v1/api.json @@ -6132,18 +6132,6 @@ "value": "FriendlyName", "required": false }, - { - "name": "Address", - "type": "string", - "value": "Address", - "required": false - }, - { - "name": "Type", - "type": "string", - "value": "Type", - "required": false - }, { "name": "AutoCreation", "structure": "AutoCreationInput", diff --git a/service/conversations/v1/configuration/address/api_op_update.go b/service/conversations/v1/configuration/address/api_op_update.go index c7e31231..abc9f4fa 100644 --- a/service/conversations/v1/configuration/address/api_op_update.go +++ b/service/conversations/v1/configuration/address/api_op_update.go @@ -22,10 +22,8 @@ type UpdateAutoCreationInput struct { // UpdateAddressInput defines input fields for updating a address configuration resource type UpdateAddressInput struct { - Address *string `form:"Address,omitempty"` AutoCreation *UpdateAutoCreationInput `form:"AutoCreation,omitempty"` FriendlyName *string `form:"FriendlyName,omitempty"` - Type *string `form:"Type,omitempty"` } type UpdateAutoCreationResponse struct {