Skip to content

Commit

Permalink
fix: remove type and address update as they cannot be modified
Browse files Browse the repository at this point in the history
  • Loading branch information
RJPearson94 committed Dec 14, 2022
1 parent b1faa12 commit 961e9e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 0 additions & 12 deletions definitions/service/conversations/v1/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 961e9e9

Please sign in to comment.