mirror of
https://github.com/hay-kot/homebox.git
synced 2025-06-05 12:02:29 +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
|
@ -42,6 +42,14 @@ func (meu *MaintenanceEntryUpdate) SetItemID(u uuid.UUID) *MaintenanceEntryUpdat
|
|||
return meu
|
||||
}
|
||||
|
||||
// SetNillableItemID sets the "item_id" field if the given value is not nil.
|
||||
func (meu *MaintenanceEntryUpdate) SetNillableItemID(u *uuid.UUID) *MaintenanceEntryUpdate {
|
||||
if u != nil {
|
||||
meu.SetItemID(*u)
|
||||
}
|
||||
return meu
|
||||
}
|
||||
|
||||
// SetDate sets the "date" field.
|
||||
func (meu *MaintenanceEntryUpdate) SetDate(t time.Time) *MaintenanceEntryUpdate {
|
||||
meu.mutation.SetDate(t)
|
||||
|
@ -88,6 +96,14 @@ func (meu *MaintenanceEntryUpdate) SetName(s string) *MaintenanceEntryUpdate {
|
|||
return meu
|
||||
}
|
||||
|
||||
// SetNillableName sets the "name" field if the given value is not nil.
|
||||
func (meu *MaintenanceEntryUpdate) SetNillableName(s *string) *MaintenanceEntryUpdate {
|
||||
if s != nil {
|
||||
meu.SetName(*s)
|
||||
}
|
||||
return meu
|
||||
}
|
||||
|
||||
// SetDescription sets the "description" field.
|
||||
func (meu *MaintenanceEntryUpdate) SetDescription(s string) *MaintenanceEntryUpdate {
|
||||
meu.mutation.SetDescription(s)
|
||||
|
@ -302,6 +318,14 @@ func (meuo *MaintenanceEntryUpdateOne) SetItemID(u uuid.UUID) *MaintenanceEntryU
|
|||
return meuo
|
||||
}
|
||||
|
||||
// SetNillableItemID sets the "item_id" field if the given value is not nil.
|
||||
func (meuo *MaintenanceEntryUpdateOne) SetNillableItemID(u *uuid.UUID) *MaintenanceEntryUpdateOne {
|
||||
if u != nil {
|
||||
meuo.SetItemID(*u)
|
||||
}
|
||||
return meuo
|
||||
}
|
||||
|
||||
// SetDate sets the "date" field.
|
||||
func (meuo *MaintenanceEntryUpdateOne) SetDate(t time.Time) *MaintenanceEntryUpdateOne {
|
||||
meuo.mutation.SetDate(t)
|
||||
|
@ -348,6 +372,14 @@ func (meuo *MaintenanceEntryUpdateOne) SetName(s string) *MaintenanceEntryUpdate
|
|||
return meuo
|
||||
}
|
||||
|
||||
// SetNillableName sets the "name" field if the given value is not nil.
|
||||
func (meuo *MaintenanceEntryUpdateOne) SetNillableName(s *string) *MaintenanceEntryUpdateOne {
|
||||
if s != nil {
|
||||
meuo.SetName(*s)
|
||||
}
|
||||
return meuo
|
||||
}
|
||||
|
||||
// SetDescription sets the "description" field.
|
||||
func (meuo *MaintenanceEntryUpdateOne) SetDescription(s string) *MaintenanceEntryUpdateOne {
|
||||
meuo.mutation.SetDescription(s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue