Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.19.0
0.19.1
6 changes: 3 additions & 3 deletions entry_credential.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,9 +379,9 @@ func (c *EntryCredentialService) UpdateWithContext(ctx context.Context, entry En

updateEntryRequest := struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
Path string `json:"path,omitempty"`
Tags []string `json:"tags,omitempty"`
Description string `json:"description"`
Path string `json:"path"`
Tags []string `json:"tags"`
Data EntryData `json:"data"`
}{
Name: entry.Name,
Expand Down
6 changes: 3 additions & 3 deletions entry_folder.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ func (c *EntryFolderService) UpdateWithContext(ctx context.Context, entry Entry)

updateEntryRequest := struct {
Name string `json:"name"`
Description string `json:"description,omitempty"`
Path string `json:"path,omitempty"`
Tags []string `json:"tags,omitempty"`
Description string `json:"description"`
Path string `json:"path"`
Tags []string `json:"tags"`
Data EntryData `json:"data"`
}{
Name: entry.Name,
Expand Down