From 7f908ebbfde3db0146f4ce1735e07aecc52c5f30 Mon Sep 17 00:00:00 2001 From: Michael Yocca <19916665+mjyocca@users.noreply.github.com> Date: Wed, 15 Jan 2025 15:11:04 -0800 Subject: [PATCH] fix(stacks/vcs): update StackUpdateOptions struct with json annotated vcs options (#1039) --- stack.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stack.go b/stack.go index 7cb95bd8b..8e365c7c2 100644 --- a/stack.go +++ b/stack.go @@ -189,9 +189,9 @@ type StackCreateOptions struct { // StackUpdateOptions represents the options for updating a stack. type StackUpdateOptions struct { - Name *string `jsonapi:"attr,name,omitempty"` - Description *string `jsonapi:"attr,description,omitempty"` - VCSRepo *StackVCSRepo `jsonapi:"attr,vcs-repo,omitempty"` + Name *string `jsonapi:"attr,name,omitempty"` + Description *string `jsonapi:"attr,description,omitempty"` + VCSRepo *StackVCSRepoOptions `jsonapi:"attr,vcs-repo,omitempty"` } // WaitForStatusResult is the data structure that is sent over the channel