mirror of
https://github.com/hay-kot/homebox.git
synced 2025-07-21 18:10:28 +00:00
chore: bump all go dependencies (#614)
* bump all
* code-generation
Former-commit-id: c0e8e34065
This commit is contained in:
parent
742ece7923
commit
1adf24e109
40 changed files with 659 additions and 292 deletions
|
@ -47,6 +47,14 @@ func (iu *ItemUpdate) SetName(s string) *ItemUpdate {
|
|||
return iu
|
||||
}
|
||||
|
||||
// SetNillableName sets the "name" field if the given value is not nil.
|
||||
func (iu *ItemUpdate) SetNillableName(s *string) *ItemUpdate {
|
||||
if s != nil {
|
||||
iu.SetName(*s)
|
||||
}
|
||||
return iu
|
||||
}
|
||||
|
||||
// SetDescription sets the "description" field.
|
||||
func (iu *ItemUpdate) SetDescription(s string) *ItemUpdate {
|
||||
iu.mutation.SetDescription(s)
|
||||
|
@ -1247,6 +1255,14 @@ func (iuo *ItemUpdateOne) SetName(s string) *ItemUpdateOne {
|
|||
return iuo
|
||||
}
|
||||
|
||||
// SetNillableName sets the "name" field if the given value is not nil.
|
||||
func (iuo *ItemUpdateOne) SetNillableName(s *string) *ItemUpdateOne {
|
||||
if s != nil {
|
||||
iuo.SetName(*s)
|
||||
}
|
||||
return iuo
|
||||
}
|
||||
|
||||
// SetDescription sets the "description" field.
|
||||
func (iuo *ItemUpdateOne) SetDescription(s string) *ItemUpdateOne {
|
||||
iuo.mutation.SetDescription(s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue