OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

915 lines
36 KiB

// Code generated by ent, DO NOT EDIT.
package authcode
import (
"time"
"entgo.io/ent/dialect/sql"
"github.com/dexidp/dex/storage/ent/db/predicate"
)
// ID filters vertices based on their ID field.
func ID(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldID, id))
}
// IDEQ applies the EQ predicate on the ID field.
func IDEQ(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldID, id))
}
// IDNEQ applies the NEQ predicate on the ID field.
func IDNEQ(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldID, id))
}
// IDIn applies the In predicate on the ID field.
func IDIn(ids ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldID, ids...))
}
// IDNotIn applies the NotIn predicate on the ID field.
func IDNotIn(ids ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldID, ids...))
}
// IDGT applies the GT predicate on the ID field.
func IDGT(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldID, id))
}
// IDGTE applies the GTE predicate on the ID field.
func IDGTE(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldID, id))
}
// IDLT applies the LT predicate on the ID field.
func IDLT(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldID, id))
}
// IDLTE applies the LTE predicate on the ID field.
func IDLTE(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldID, id))
}
// IDEqualFold applies the EqualFold predicate on the ID field.
func IDEqualFold(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldID, id))
}
// IDContainsFold applies the ContainsFold predicate on the ID field.
func IDContainsFold(id string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldID, id))
}
// ClientID applies equality check predicate on the "client_id" field. It's identical to ClientIDEQ.
func ClientID(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClientID, v))
}
// Nonce applies equality check predicate on the "nonce" field. It's identical to NonceEQ.
func Nonce(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldNonce, v))
}
// RedirectURI applies equality check predicate on the "redirect_uri" field. It's identical to RedirectURIEQ.
func RedirectURI(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldRedirectURI, v))
}
// ClaimsUserID applies equality check predicate on the "claims_user_id" field. It's identical to ClaimsUserIDEQ.
func ClaimsUserID(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsUserID, v))
}
// ClaimsUsername applies equality check predicate on the "claims_username" field. It's identical to ClaimsUsernameEQ.
func ClaimsUsername(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsUsername, v))
}
// ClaimsEmail applies equality check predicate on the "claims_email" field. It's identical to ClaimsEmailEQ.
func ClaimsEmail(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsEmail, v))
}
// ClaimsEmailVerified applies equality check predicate on the "claims_email_verified" field. It's identical to ClaimsEmailVerifiedEQ.
func ClaimsEmailVerified(v bool) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsEmailVerified, v))
}
// ClaimsPreferredUsername applies equality check predicate on the "claims_preferred_username" field. It's identical to ClaimsPreferredUsernameEQ.
func ClaimsPreferredUsername(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsPreferredUsername, v))
}
// ConnectorID applies equality check predicate on the "connector_id" field. It's identical to ConnectorIDEQ.
func ConnectorID(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldConnectorID, v))
}
// ConnectorData applies equality check predicate on the "connector_data" field. It's identical to ConnectorDataEQ.
func ConnectorData(v []byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldConnectorData, v))
}
// Expiry applies equality check predicate on the "expiry" field. It's identical to ExpiryEQ.
func Expiry(v time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldExpiry, v))
}
// CodeChallenge applies equality check predicate on the "code_challenge" field. It's identical to CodeChallengeEQ.
func CodeChallenge(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldCodeChallenge, v))
}
// CodeChallengeMethod applies equality check predicate on the "code_challenge_method" field. It's identical to CodeChallengeMethodEQ.
func CodeChallengeMethod(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldCodeChallengeMethod, v))
}
// ClientIDEQ applies the EQ predicate on the "client_id" field.
func ClientIDEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClientID, v))
}
// ClientIDNEQ applies the NEQ predicate on the "client_id" field.
func ClientIDNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldClientID, v))
}
// ClientIDIn applies the In predicate on the "client_id" field.
func ClientIDIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldClientID, vs...))
}
// ClientIDNotIn applies the NotIn predicate on the "client_id" field.
func ClientIDNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldClientID, vs...))
}
// ClientIDGT applies the GT predicate on the "client_id" field.
func ClientIDGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldClientID, v))
}
// ClientIDGTE applies the GTE predicate on the "client_id" field.
func ClientIDGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldClientID, v))
}
// ClientIDLT applies the LT predicate on the "client_id" field.
func ClientIDLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldClientID, v))
}
// ClientIDLTE applies the LTE predicate on the "client_id" field.
func ClientIDLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldClientID, v))
}
// ClientIDContains applies the Contains predicate on the "client_id" field.
func ClientIDContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldClientID, v))
}
// ClientIDHasPrefix applies the HasPrefix predicate on the "client_id" field.
func ClientIDHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldClientID, v))
}
// ClientIDHasSuffix applies the HasSuffix predicate on the "client_id" field.
func ClientIDHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldClientID, v))
}
// ClientIDEqualFold applies the EqualFold predicate on the "client_id" field.
func ClientIDEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldClientID, v))
}
// ClientIDContainsFold applies the ContainsFold predicate on the "client_id" field.
func ClientIDContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldClientID, v))
}
// ScopesIsNil applies the IsNil predicate on the "scopes" field.
func ScopesIsNil() predicate.AuthCode {
return predicate.AuthCode(sql.FieldIsNull(FieldScopes))
}
// ScopesNotNil applies the NotNil predicate on the "scopes" field.
func ScopesNotNil() predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotNull(FieldScopes))
}
// NonceEQ applies the EQ predicate on the "nonce" field.
func NonceEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldNonce, v))
}
// NonceNEQ applies the NEQ predicate on the "nonce" field.
func NonceNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldNonce, v))
}
// NonceIn applies the In predicate on the "nonce" field.
func NonceIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldNonce, vs...))
}
// NonceNotIn applies the NotIn predicate on the "nonce" field.
func NonceNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldNonce, vs...))
}
// NonceGT applies the GT predicate on the "nonce" field.
func NonceGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldNonce, v))
}
// NonceGTE applies the GTE predicate on the "nonce" field.
func NonceGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldNonce, v))
}
// NonceLT applies the LT predicate on the "nonce" field.
func NonceLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldNonce, v))
}
// NonceLTE applies the LTE predicate on the "nonce" field.
func NonceLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldNonce, v))
}
// NonceContains applies the Contains predicate on the "nonce" field.
func NonceContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldNonce, v))
}
// NonceHasPrefix applies the HasPrefix predicate on the "nonce" field.
func NonceHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldNonce, v))
}
// NonceHasSuffix applies the HasSuffix predicate on the "nonce" field.
func NonceHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldNonce, v))
}
// NonceEqualFold applies the EqualFold predicate on the "nonce" field.
func NonceEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldNonce, v))
}
// NonceContainsFold applies the ContainsFold predicate on the "nonce" field.
func NonceContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldNonce, v))
}
// RedirectURIEQ applies the EQ predicate on the "redirect_uri" field.
func RedirectURIEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldRedirectURI, v))
}
// RedirectURINEQ applies the NEQ predicate on the "redirect_uri" field.
func RedirectURINEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldRedirectURI, v))
}
// RedirectURIIn applies the In predicate on the "redirect_uri" field.
func RedirectURIIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldRedirectURI, vs...))
}
// RedirectURINotIn applies the NotIn predicate on the "redirect_uri" field.
func RedirectURINotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldRedirectURI, vs...))
}
// RedirectURIGT applies the GT predicate on the "redirect_uri" field.
func RedirectURIGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldRedirectURI, v))
}
// RedirectURIGTE applies the GTE predicate on the "redirect_uri" field.
func RedirectURIGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldRedirectURI, v))
}
// RedirectURILT applies the LT predicate on the "redirect_uri" field.
func RedirectURILT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldRedirectURI, v))
}
// RedirectURILTE applies the LTE predicate on the "redirect_uri" field.
func RedirectURILTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldRedirectURI, v))
}
// RedirectURIContains applies the Contains predicate on the "redirect_uri" field.
func RedirectURIContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldRedirectURI, v))
}
// RedirectURIHasPrefix applies the HasPrefix predicate on the "redirect_uri" field.
func RedirectURIHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldRedirectURI, v))
}
// RedirectURIHasSuffix applies the HasSuffix predicate on the "redirect_uri" field.
func RedirectURIHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldRedirectURI, v))
}
// RedirectURIEqualFold applies the EqualFold predicate on the "redirect_uri" field.
func RedirectURIEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldRedirectURI, v))
}
// RedirectURIContainsFold applies the ContainsFold predicate on the "redirect_uri" field.
func RedirectURIContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldRedirectURI, v))
}
// ClaimsUserIDEQ applies the EQ predicate on the "claims_user_id" field.
func ClaimsUserIDEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsUserID, v))
}
// ClaimsUserIDNEQ applies the NEQ predicate on the "claims_user_id" field.
func ClaimsUserIDNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldClaimsUserID, v))
}
// ClaimsUserIDIn applies the In predicate on the "claims_user_id" field.
func ClaimsUserIDIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldClaimsUserID, vs...))
}
// ClaimsUserIDNotIn applies the NotIn predicate on the "claims_user_id" field.
func ClaimsUserIDNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldClaimsUserID, vs...))
}
// ClaimsUserIDGT applies the GT predicate on the "claims_user_id" field.
func ClaimsUserIDGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldClaimsUserID, v))
}
// ClaimsUserIDGTE applies the GTE predicate on the "claims_user_id" field.
func ClaimsUserIDGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldClaimsUserID, v))
}
// ClaimsUserIDLT applies the LT predicate on the "claims_user_id" field.
func ClaimsUserIDLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldClaimsUserID, v))
}
// ClaimsUserIDLTE applies the LTE predicate on the "claims_user_id" field.
func ClaimsUserIDLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldClaimsUserID, v))
}
// ClaimsUserIDContains applies the Contains predicate on the "claims_user_id" field.
func ClaimsUserIDContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldClaimsUserID, v))
}
// ClaimsUserIDHasPrefix applies the HasPrefix predicate on the "claims_user_id" field.
func ClaimsUserIDHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldClaimsUserID, v))
}
// ClaimsUserIDHasSuffix applies the HasSuffix predicate on the "claims_user_id" field.
func ClaimsUserIDHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldClaimsUserID, v))
}
// ClaimsUserIDEqualFold applies the EqualFold predicate on the "claims_user_id" field.
func ClaimsUserIDEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldClaimsUserID, v))
}
// ClaimsUserIDContainsFold applies the ContainsFold predicate on the "claims_user_id" field.
func ClaimsUserIDContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldClaimsUserID, v))
}
// ClaimsUsernameEQ applies the EQ predicate on the "claims_username" field.
func ClaimsUsernameEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsUsername, v))
}
// ClaimsUsernameNEQ applies the NEQ predicate on the "claims_username" field.
func ClaimsUsernameNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldClaimsUsername, v))
}
// ClaimsUsernameIn applies the In predicate on the "claims_username" field.
func ClaimsUsernameIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldClaimsUsername, vs...))
}
// ClaimsUsernameNotIn applies the NotIn predicate on the "claims_username" field.
func ClaimsUsernameNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldClaimsUsername, vs...))
}
// ClaimsUsernameGT applies the GT predicate on the "claims_username" field.
func ClaimsUsernameGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldClaimsUsername, v))
}
// ClaimsUsernameGTE applies the GTE predicate on the "claims_username" field.
func ClaimsUsernameGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldClaimsUsername, v))
}
// ClaimsUsernameLT applies the LT predicate on the "claims_username" field.
func ClaimsUsernameLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldClaimsUsername, v))
}
// ClaimsUsernameLTE applies the LTE predicate on the "claims_username" field.
func ClaimsUsernameLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldClaimsUsername, v))
}
// ClaimsUsernameContains applies the Contains predicate on the "claims_username" field.
func ClaimsUsernameContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldClaimsUsername, v))
}
// ClaimsUsernameHasPrefix applies the HasPrefix predicate on the "claims_username" field.
func ClaimsUsernameHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldClaimsUsername, v))
}
// ClaimsUsernameHasSuffix applies the HasSuffix predicate on the "claims_username" field.
func ClaimsUsernameHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldClaimsUsername, v))
}
// ClaimsUsernameEqualFold applies the EqualFold predicate on the "claims_username" field.
func ClaimsUsernameEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldClaimsUsername, v))
}
// ClaimsUsernameContainsFold applies the ContainsFold predicate on the "claims_username" field.
func ClaimsUsernameContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldClaimsUsername, v))
}
// ClaimsEmailEQ applies the EQ predicate on the "claims_email" field.
func ClaimsEmailEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsEmail, v))
}
// ClaimsEmailNEQ applies the NEQ predicate on the "claims_email" field.
func ClaimsEmailNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldClaimsEmail, v))
}
// ClaimsEmailIn applies the In predicate on the "claims_email" field.
func ClaimsEmailIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldClaimsEmail, vs...))
}
// ClaimsEmailNotIn applies the NotIn predicate on the "claims_email" field.
func ClaimsEmailNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldClaimsEmail, vs...))
}
// ClaimsEmailGT applies the GT predicate on the "claims_email" field.
func ClaimsEmailGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldClaimsEmail, v))
}
// ClaimsEmailGTE applies the GTE predicate on the "claims_email" field.
func ClaimsEmailGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldClaimsEmail, v))
}
// ClaimsEmailLT applies the LT predicate on the "claims_email" field.
func ClaimsEmailLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldClaimsEmail, v))
}
// ClaimsEmailLTE applies the LTE predicate on the "claims_email" field.
func ClaimsEmailLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldClaimsEmail, v))
}
// ClaimsEmailContains applies the Contains predicate on the "claims_email" field.
func ClaimsEmailContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldClaimsEmail, v))
}
// ClaimsEmailHasPrefix applies the HasPrefix predicate on the "claims_email" field.
func ClaimsEmailHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldClaimsEmail, v))
}
// ClaimsEmailHasSuffix applies the HasSuffix predicate on the "claims_email" field.
func ClaimsEmailHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldClaimsEmail, v))
}
// ClaimsEmailEqualFold applies the EqualFold predicate on the "claims_email" field.
func ClaimsEmailEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldClaimsEmail, v))
}
// ClaimsEmailContainsFold applies the ContainsFold predicate on the "claims_email" field.
func ClaimsEmailContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldClaimsEmail, v))
}
// ClaimsEmailVerifiedEQ applies the EQ predicate on the "claims_email_verified" field.
func ClaimsEmailVerifiedEQ(v bool) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsEmailVerified, v))
}
// ClaimsEmailVerifiedNEQ applies the NEQ predicate on the "claims_email_verified" field.
func ClaimsEmailVerifiedNEQ(v bool) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldClaimsEmailVerified, v))
}
// ClaimsGroupsIsNil applies the IsNil predicate on the "claims_groups" field.
func ClaimsGroupsIsNil() predicate.AuthCode {
return predicate.AuthCode(sql.FieldIsNull(FieldClaimsGroups))
}
// ClaimsGroupsNotNil applies the NotNil predicate on the "claims_groups" field.
func ClaimsGroupsNotNil() predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotNull(FieldClaimsGroups))
}
// ClaimsPreferredUsernameEQ applies the EQ predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameNEQ applies the NEQ predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameIn applies the In predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldClaimsPreferredUsername, vs...))
}
// ClaimsPreferredUsernameNotIn applies the NotIn predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldClaimsPreferredUsername, vs...))
}
// ClaimsPreferredUsernameGT applies the GT predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameGTE applies the GTE predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameLT applies the LT predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameLTE applies the LTE predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameContains applies the Contains predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameHasPrefix applies the HasPrefix predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameHasSuffix applies the HasSuffix predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameEqualFold applies the EqualFold predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldClaimsPreferredUsername, v))
}
// ClaimsPreferredUsernameContainsFold applies the ContainsFold predicate on the "claims_preferred_username" field.
func ClaimsPreferredUsernameContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldClaimsPreferredUsername, v))
}
// ConnectorIDEQ applies the EQ predicate on the "connector_id" field.
func ConnectorIDEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldConnectorID, v))
}
// ConnectorIDNEQ applies the NEQ predicate on the "connector_id" field.
func ConnectorIDNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldConnectorID, v))
}
// ConnectorIDIn applies the In predicate on the "connector_id" field.
func ConnectorIDIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldConnectorID, vs...))
}
// ConnectorIDNotIn applies the NotIn predicate on the "connector_id" field.
func ConnectorIDNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldConnectorID, vs...))
}
// ConnectorIDGT applies the GT predicate on the "connector_id" field.
func ConnectorIDGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldConnectorID, v))
}
// ConnectorIDGTE applies the GTE predicate on the "connector_id" field.
func ConnectorIDGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldConnectorID, v))
}
// ConnectorIDLT applies the LT predicate on the "connector_id" field.
func ConnectorIDLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldConnectorID, v))
}
// ConnectorIDLTE applies the LTE predicate on the "connector_id" field.
func ConnectorIDLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldConnectorID, v))
}
// ConnectorIDContains applies the Contains predicate on the "connector_id" field.
func ConnectorIDContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldConnectorID, v))
}
// ConnectorIDHasPrefix applies the HasPrefix predicate on the "connector_id" field.
func ConnectorIDHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldConnectorID, v))
}
// ConnectorIDHasSuffix applies the HasSuffix predicate on the "connector_id" field.
func ConnectorIDHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldConnectorID, v))
}
// ConnectorIDEqualFold applies the EqualFold predicate on the "connector_id" field.
func ConnectorIDEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldConnectorID, v))
}
// ConnectorIDContainsFold applies the ContainsFold predicate on the "connector_id" field.
func ConnectorIDContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldConnectorID, v))
}
// ConnectorDataEQ applies the EQ predicate on the "connector_data" field.
func ConnectorDataEQ(v []byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldConnectorData, v))
}
// ConnectorDataNEQ applies the NEQ predicate on the "connector_data" field.
func ConnectorDataNEQ(v []byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldConnectorData, v))
}
// ConnectorDataIn applies the In predicate on the "connector_data" field.
func ConnectorDataIn(vs ...[]byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldConnectorData, vs...))
}
// ConnectorDataNotIn applies the NotIn predicate on the "connector_data" field.
func ConnectorDataNotIn(vs ...[]byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldConnectorData, vs...))
}
// ConnectorDataGT applies the GT predicate on the "connector_data" field.
func ConnectorDataGT(v []byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldConnectorData, v))
}
// ConnectorDataGTE applies the GTE predicate on the "connector_data" field.
func ConnectorDataGTE(v []byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldConnectorData, v))
}
// ConnectorDataLT applies the LT predicate on the "connector_data" field.
func ConnectorDataLT(v []byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldConnectorData, v))
}
// ConnectorDataLTE applies the LTE predicate on the "connector_data" field.
func ConnectorDataLTE(v []byte) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldConnectorData, v))
}
// ConnectorDataIsNil applies the IsNil predicate on the "connector_data" field.
func ConnectorDataIsNil() predicate.AuthCode {
return predicate.AuthCode(sql.FieldIsNull(FieldConnectorData))
}
// ConnectorDataNotNil applies the NotNil predicate on the "connector_data" field.
func ConnectorDataNotNil() predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotNull(FieldConnectorData))
}
// ExpiryEQ applies the EQ predicate on the "expiry" field.
func ExpiryEQ(v time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldExpiry, v))
}
// ExpiryNEQ applies the NEQ predicate on the "expiry" field.
func ExpiryNEQ(v time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldExpiry, v))
}
// ExpiryIn applies the In predicate on the "expiry" field.
func ExpiryIn(vs ...time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldExpiry, vs...))
}
// ExpiryNotIn applies the NotIn predicate on the "expiry" field.
func ExpiryNotIn(vs ...time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldExpiry, vs...))
}
// ExpiryGT applies the GT predicate on the "expiry" field.
func ExpiryGT(v time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldExpiry, v))
}
// ExpiryGTE applies the GTE predicate on the "expiry" field.
func ExpiryGTE(v time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldExpiry, v))
}
// ExpiryLT applies the LT predicate on the "expiry" field.
func ExpiryLT(v time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldExpiry, v))
}
// ExpiryLTE applies the LTE predicate on the "expiry" field.
func ExpiryLTE(v time.Time) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldExpiry, v))
}
// CodeChallengeEQ applies the EQ predicate on the "code_challenge" field.
func CodeChallengeEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldCodeChallenge, v))
}
// CodeChallengeNEQ applies the NEQ predicate on the "code_challenge" field.
func CodeChallengeNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldCodeChallenge, v))
}
// CodeChallengeIn applies the In predicate on the "code_challenge" field.
func CodeChallengeIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldCodeChallenge, vs...))
}
// CodeChallengeNotIn applies the NotIn predicate on the "code_challenge" field.
func CodeChallengeNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldCodeChallenge, vs...))
}
// CodeChallengeGT applies the GT predicate on the "code_challenge" field.
func CodeChallengeGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldCodeChallenge, v))
}
// CodeChallengeGTE applies the GTE predicate on the "code_challenge" field.
func CodeChallengeGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldCodeChallenge, v))
}
// CodeChallengeLT applies the LT predicate on the "code_challenge" field.
func CodeChallengeLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldCodeChallenge, v))
}
// CodeChallengeLTE applies the LTE predicate on the "code_challenge" field.
func CodeChallengeLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldCodeChallenge, v))
}
// CodeChallengeContains applies the Contains predicate on the "code_challenge" field.
func CodeChallengeContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldCodeChallenge, v))
}
// CodeChallengeHasPrefix applies the HasPrefix predicate on the "code_challenge" field.
func CodeChallengeHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldCodeChallenge, v))
}
// CodeChallengeHasSuffix applies the HasSuffix predicate on the "code_challenge" field.
func CodeChallengeHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldCodeChallenge, v))
}
// CodeChallengeEqualFold applies the EqualFold predicate on the "code_challenge" field.
func CodeChallengeEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldCodeChallenge, v))
}
// CodeChallengeContainsFold applies the ContainsFold predicate on the "code_challenge" field.
func CodeChallengeContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldCodeChallenge, v))
}
// CodeChallengeMethodEQ applies the EQ predicate on the "code_challenge_method" field.
func CodeChallengeMethodEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEQ(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodNEQ applies the NEQ predicate on the "code_challenge_method" field.
func CodeChallengeMethodNEQ(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNEQ(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodIn applies the In predicate on the "code_challenge_method" field.
func CodeChallengeMethodIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldIn(FieldCodeChallengeMethod, vs...))
}
// CodeChallengeMethodNotIn applies the NotIn predicate on the "code_challenge_method" field.
func CodeChallengeMethodNotIn(vs ...string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldNotIn(FieldCodeChallengeMethod, vs...))
}
// CodeChallengeMethodGT applies the GT predicate on the "code_challenge_method" field.
func CodeChallengeMethodGT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGT(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodGTE applies the GTE predicate on the "code_challenge_method" field.
func CodeChallengeMethodGTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldGTE(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodLT applies the LT predicate on the "code_challenge_method" field.
func CodeChallengeMethodLT(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLT(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodLTE applies the LTE predicate on the "code_challenge_method" field.
func CodeChallengeMethodLTE(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldLTE(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodContains applies the Contains predicate on the "code_challenge_method" field.
func CodeChallengeMethodContains(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContains(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodHasPrefix applies the HasPrefix predicate on the "code_challenge_method" field.
func CodeChallengeMethodHasPrefix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasPrefix(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodHasSuffix applies the HasSuffix predicate on the "code_challenge_method" field.
func CodeChallengeMethodHasSuffix(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldHasSuffix(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodEqualFold applies the EqualFold predicate on the "code_challenge_method" field.
func CodeChallengeMethodEqualFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldEqualFold(FieldCodeChallengeMethod, v))
}
// CodeChallengeMethodContainsFold applies the ContainsFold predicate on the "code_challenge_method" field.
func CodeChallengeMethodContainsFold(v string) predicate.AuthCode {
return predicate.AuthCode(sql.FieldContainsFold(FieldCodeChallengeMethod, v))
}
// And groups predicates with the AND operator between them.
func And(predicates ...predicate.AuthCode) predicate.AuthCode {
return predicate.AuthCode(sql.AndPredicates(predicates...))
}
// Or groups predicates with the OR operator between them.
func Or(predicates ...predicate.AuthCode) predicate.AuthCode {
return predicate.AuthCode(sql.OrPredicates(predicates...))
}
// Not applies the not operator on the given predicate.
func Not(p predicate.AuthCode) predicate.AuthCode {
return predicate.AuthCode(sql.NotPredicates(p))
}