updated deps; regen ent

This commit is contained in:
2022-11-03 02:19:19 +01:00
parent 4b256dd594
commit ff3bbe0037
44 changed files with 938 additions and 2309 deletions

View File

@@ -34,7 +34,7 @@ func IDNEQ(id uint64) predicate.Player {
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...uint64) predicate.Player {
return predicate.Player(func(s *sql.Selector) {
v := make([]interface{}, len(ids))
v := make([]any, len(ids))
for i := range v {
v[i] = ids[i]
}
@@ -45,7 +45,7 @@ func IDIn(ids ...uint64) predicate.Player {
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...uint64) predicate.Player {
return predicate.Player(func(s *sql.Selector) {
v := make([]interface{}, len(ids))
v := make([]any, len(ids))
for i := range v {
v[i] = ids[i]
}
@@ -209,7 +209,7 @@ func NameNEQ(v string) predicate.Player {
// NameIn applies the In predicate on the "name" field.
func NameIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -220,7 +220,7 @@ func NameIn(vs ...string) predicate.Player {
// NameNotIn applies the NotIn predicate on the "name" field.
func NameNotIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -322,7 +322,7 @@ func AvatarNEQ(v string) predicate.Player {
// AvatarIn applies the In predicate on the "avatar" field.
func AvatarIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -333,7 +333,7 @@ func AvatarIn(vs ...string) predicate.Player {
// AvatarNotIn applies the NotIn predicate on the "avatar" field.
func AvatarNotIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -435,7 +435,7 @@ func VanityURLNEQ(v string) predicate.Player {
// VanityURLIn applies the In predicate on the "vanity_url" field.
func VanityURLIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -446,7 +446,7 @@ func VanityURLIn(vs ...string) predicate.Player {
// VanityURLNotIn applies the NotIn predicate on the "vanity_url" field.
func VanityURLNotIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -548,7 +548,7 @@ func VanityURLRealNEQ(v string) predicate.Player {
// VanityURLRealIn applies the In predicate on the "vanity_url_real" field.
func VanityURLRealIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -559,7 +559,7 @@ func VanityURLRealIn(vs ...string) predicate.Player {
// VanityURLRealNotIn applies the NotIn predicate on the "vanity_url_real" field.
func VanityURLRealNotIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -661,7 +661,7 @@ func VacDateNEQ(v time.Time) predicate.Player {
// VacDateIn applies the In predicate on the "vac_date" field.
func VacDateIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -672,7 +672,7 @@ func VacDateIn(vs ...time.Time) predicate.Player {
// VacDateNotIn applies the NotIn predicate on the "vac_date" field.
func VacDateNotIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -739,7 +739,7 @@ func VacCountNEQ(v int) predicate.Player {
// VacCountIn applies the In predicate on the "vac_count" field.
func VacCountIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -750,7 +750,7 @@ func VacCountIn(vs ...int) predicate.Player {
// VacCountNotIn applies the NotIn predicate on the "vac_count" field.
func VacCountNotIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -817,7 +817,7 @@ func GameBanDateNEQ(v time.Time) predicate.Player {
// GameBanDateIn applies the In predicate on the "game_ban_date" field.
func GameBanDateIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -828,7 +828,7 @@ func GameBanDateIn(vs ...time.Time) predicate.Player {
// GameBanDateNotIn applies the NotIn predicate on the "game_ban_date" field.
func GameBanDateNotIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -895,7 +895,7 @@ func GameBanCountNEQ(v int) predicate.Player {
// GameBanCountIn applies the In predicate on the "game_ban_count" field.
func GameBanCountIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -906,7 +906,7 @@ func GameBanCountIn(vs ...int) predicate.Player {
// GameBanCountNotIn applies the NotIn predicate on the "game_ban_count" field.
func GameBanCountNotIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -973,7 +973,7 @@ func SteamUpdatedNEQ(v time.Time) predicate.Player {
// SteamUpdatedIn applies the In predicate on the "steam_updated" field.
func SteamUpdatedIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -984,7 +984,7 @@ func SteamUpdatedIn(vs ...time.Time) predicate.Player {
// SteamUpdatedNotIn applies the NotIn predicate on the "steam_updated" field.
func SteamUpdatedNotIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1037,7 +1037,7 @@ func SharecodeUpdatedNEQ(v time.Time) predicate.Player {
// SharecodeUpdatedIn applies the In predicate on the "sharecode_updated" field.
func SharecodeUpdatedIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1048,7 +1048,7 @@ func SharecodeUpdatedIn(vs ...time.Time) predicate.Player {
// SharecodeUpdatedNotIn applies the NotIn predicate on the "sharecode_updated" field.
func SharecodeUpdatedNotIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1115,7 +1115,7 @@ func AuthCodeNEQ(v string) predicate.Player {
// AuthCodeIn applies the In predicate on the "auth_code" field.
func AuthCodeIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1126,7 +1126,7 @@ func AuthCodeIn(vs ...string) predicate.Player {
// AuthCodeNotIn applies the NotIn predicate on the "auth_code" field.
func AuthCodeNotIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1228,7 +1228,7 @@ func ProfileCreatedNEQ(v time.Time) predicate.Player {
// ProfileCreatedIn applies the In predicate on the "profile_created" field.
func ProfileCreatedIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1239,7 +1239,7 @@ func ProfileCreatedIn(vs ...time.Time) predicate.Player {
// ProfileCreatedNotIn applies the NotIn predicate on the "profile_created" field.
func ProfileCreatedNotIn(vs ...time.Time) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1306,7 +1306,7 @@ func OldestSharecodeSeenNEQ(v string) predicate.Player {
// OldestSharecodeSeenIn applies the In predicate on the "oldest_sharecode_seen" field.
func OldestSharecodeSeenIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1317,7 +1317,7 @@ func OldestSharecodeSeenIn(vs ...string) predicate.Player {
// OldestSharecodeSeenNotIn applies the NotIn predicate on the "oldest_sharecode_seen" field.
func OldestSharecodeSeenNotIn(vs ...string) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1419,7 +1419,7 @@ func WinsNEQ(v int) predicate.Player {
// WinsIn applies the In predicate on the "wins" field.
func WinsIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1430,7 +1430,7 @@ func WinsIn(vs ...int) predicate.Player {
// WinsNotIn applies the NotIn predicate on the "wins" field.
func WinsNotIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1497,7 +1497,7 @@ func LoosesNEQ(v int) predicate.Player {
// LoosesIn applies the In predicate on the "looses" field.
func LoosesIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1508,7 +1508,7 @@ func LoosesIn(vs ...int) predicate.Player {
// LoosesNotIn applies the NotIn predicate on the "looses" field.
func LoosesNotIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1575,7 +1575,7 @@ func TiesNEQ(v int) predicate.Player {
// TiesIn applies the In predicate on the "ties" field.
func TiesIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}
@@ -1586,7 +1586,7 @@ func TiesIn(vs ...int) predicate.Player {
// TiesNotIn applies the NotIn predicate on the "ties" field.
func TiesNotIn(vs ...int) predicate.Player {
v := make([]interface{}, len(vs))
v := make([]any, len(vs))
for i := range v {
v[i] = vs[i]
}