agentactivityinstance

package
v0.7.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 17, 2026 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the agentactivityinstance type in the database.
	Label = "agent_activity_instance"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldProjectID holds the string denoting the project_id field in the database.
	FieldProjectID = "project_id"
	// FieldTicketID holds the string denoting the ticket_id field in the database.
	FieldTicketID = "ticket_id"
	// FieldAgentID holds the string denoting the agent_id field in the database.
	FieldAgentID = "agent_id"
	// FieldAgentRunID holds the string denoting the agent_run_id field in the database.
	FieldAgentRunID = "agent_run_id"
	// FieldProvider holds the string denoting the provider field in the database.
	FieldProvider = "provider"
	// FieldActivityKind holds the string denoting the activity_kind field in the database.
	FieldActivityKind = "activity_kind"
	// FieldActivityID holds the string denoting the activity_id field in the database.
	FieldActivityID = "activity_id"
	// FieldIDSource holds the string denoting the id_source field in the database.
	FieldIDSource = "id_source"
	// FieldIdentityConfidence holds the string denoting the identity_confidence field in the database.
	FieldIdentityConfidence = "identity_confidence"
	// FieldParentActivityID holds the string denoting the parent_activity_id field in the database.
	FieldParentActivityID = "parent_activity_id"
	// FieldThreadID holds the string denoting the thread_id field in the database.
	FieldThreadID = "thread_id"
	// FieldTurnID holds the string denoting the turn_id field in the database.
	FieldTurnID = "turn_id"
	// FieldCommand holds the string denoting the command field in the database.
	FieldCommand = "command"
	// FieldToolName holds the string denoting the tool_name field in the database.
	FieldToolName = "tool_name"
	// FieldTitle holds the string denoting the title field in the database.
	FieldTitle = "title"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldLiveText holds the string denoting the live_text field in the database.
	FieldLiveText = "live_text"
	// FieldFinalText holds the string denoting the final_text field in the database.
	FieldFinalText = "final_text"
	// FieldLiveTextBytes holds the string denoting the live_text_bytes field in the database.
	FieldLiveTextBytes = "live_text_bytes"
	// FieldFinalTextBytes holds the string denoting the final_text_bytes field in the database.
	FieldFinalTextBytes = "final_text_bytes"
	// FieldMetadata holds the string denoting the metadata field in the database.
	FieldMetadata = "metadata"
	// FieldStartedAt holds the string denoting the started_at field in the database.
	FieldStartedAt = "started_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "updated_at"
	// FieldCompletedAt holds the string denoting the completed_at field in the database.
	FieldCompletedAt = "completed_at"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "created_at"
	// EdgeProject holds the string denoting the project edge name in mutations.
	EdgeProject = "project"
	// EdgeTicket holds the string denoting the ticket edge name in mutations.
	EdgeTicket = "ticket"
	// EdgeAgent holds the string denoting the agent edge name in mutations.
	EdgeAgent = "agent"
	// EdgeAgentRun holds the string denoting the agent_run edge name in mutations.
	EdgeAgentRun = "agent_run"
	// Table holds the table name of the agentactivityinstance in the database.
	Table = "agent_activity_instances"
	// ProjectTable is the table that holds the project relation/edge.
	ProjectTable = "agent_activity_instances"
	// ProjectInverseTable is the table name for the Project entity.
	// It exists in this package in order to avoid circular dependency with the "project" package.
	ProjectInverseTable = "projects"
	// ProjectColumn is the table column denoting the project relation/edge.
	ProjectColumn = "project_id"
	// TicketTable is the table that holds the ticket relation/edge.
	TicketTable = "agent_activity_instances"
	// TicketInverseTable is the table name for the Ticket entity.
	// It exists in this package in order to avoid circular dependency with the "ticket" package.
	TicketInverseTable = "tickets"
	// TicketColumn is the table column denoting the ticket relation/edge.
	TicketColumn = "ticket_id"
	// AgentTable is the table that holds the agent relation/edge.
	AgentTable = "agent_activity_instances"
	// AgentInverseTable is the table name for the Agent entity.
	// It exists in this package in order to avoid circular dependency with the "agent" package.
	AgentInverseTable = "agents"
	// AgentColumn is the table column denoting the agent relation/edge.
	AgentColumn = "agent_id"
	// AgentRunTable is the table that holds the agent_run relation/edge.
	AgentRunTable = "agent_activity_instances"
	// AgentRunInverseTable is the table name for the AgentRun entity.
	// It exists in this package in order to avoid circular dependency with the "agentrun" package.
	AgentRunInverseTable = "agent_runs"
	// AgentRunColumn is the table column denoting the agent_run relation/edge.
	AgentRunColumn = "agent_run_id"
)

Variables

View Source
var (
	// ProviderValidator is a validator for the "provider" field. It is called by the builders before save.
	ProviderValidator func(string) error
	// ActivityKindValidator is a validator for the "activity_kind" field. It is called by the builders before save.
	ActivityKindValidator func(string) error
	// ActivityIDValidator is a validator for the "activity_id" field. It is called by the builders before save.
	ActivityIDValidator func(string) error
	// IDSourceValidator is a validator for the "id_source" field. It is called by the builders before save.
	IDSourceValidator func(string) error
	// IdentityConfidenceValidator is a validator for the "identity_confidence" field. It is called by the builders before save.
	IdentityConfidenceValidator func(string) error
	// StatusValidator is a validator for the "status" field. It is called by the builders before save.
	StatusValidator func(string) error
	// DefaultLiveTextBytes holds the default value on creation for the "live_text_bytes" field.
	DefaultLiveTextBytes int
	// DefaultFinalTextBytes holds the default value on creation for the "final_text_bytes" field.
	DefaultFinalTextBytes int
	// DefaultMetadata holds the default value on creation for the "metadata" field.
	DefaultMetadata func() map[string]interface{}
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() uuid.UUID
)

Columns holds all SQL columns for agentactivityinstance fields.

Functions

func ActivityID

ActivityID applies equality check predicate on the "activity_id" field. It's identical to ActivityIDEQ.

func ActivityIDContains

func ActivityIDContains(v string) predicate.AgentActivityInstance

ActivityIDContains applies the Contains predicate on the "activity_id" field.

func ActivityIDContainsFold

func ActivityIDContainsFold(v string) predicate.AgentActivityInstance

ActivityIDContainsFold applies the ContainsFold predicate on the "activity_id" field.

func ActivityIDEQ

func ActivityIDEQ(v string) predicate.AgentActivityInstance

ActivityIDEQ applies the EQ predicate on the "activity_id" field.

func ActivityIDEqualFold

func ActivityIDEqualFold(v string) predicate.AgentActivityInstance

ActivityIDEqualFold applies the EqualFold predicate on the "activity_id" field.

func ActivityIDGT

func ActivityIDGT(v string) predicate.AgentActivityInstance

ActivityIDGT applies the GT predicate on the "activity_id" field.

func ActivityIDGTE

func ActivityIDGTE(v string) predicate.AgentActivityInstance

ActivityIDGTE applies the GTE predicate on the "activity_id" field.

func ActivityIDHasPrefix

func ActivityIDHasPrefix(v string) predicate.AgentActivityInstance

ActivityIDHasPrefix applies the HasPrefix predicate on the "activity_id" field.

func ActivityIDHasSuffix

func ActivityIDHasSuffix(v string) predicate.AgentActivityInstance

ActivityIDHasSuffix applies the HasSuffix predicate on the "activity_id" field.

func ActivityIDIn

func ActivityIDIn(vs ...string) predicate.AgentActivityInstance

ActivityIDIn applies the In predicate on the "activity_id" field.

func ActivityIDLT

func ActivityIDLT(v string) predicate.AgentActivityInstance

ActivityIDLT applies the LT predicate on the "activity_id" field.

func ActivityIDLTE

func ActivityIDLTE(v string) predicate.AgentActivityInstance

ActivityIDLTE applies the LTE predicate on the "activity_id" field.

func ActivityIDNEQ

func ActivityIDNEQ(v string) predicate.AgentActivityInstance

ActivityIDNEQ applies the NEQ predicate on the "activity_id" field.

func ActivityIDNotIn

func ActivityIDNotIn(vs ...string) predicate.AgentActivityInstance

ActivityIDNotIn applies the NotIn predicate on the "activity_id" field.

func ActivityKind

func ActivityKind(v string) predicate.AgentActivityInstance

ActivityKind applies equality check predicate on the "activity_kind" field. It's identical to ActivityKindEQ.

func ActivityKindContains

func ActivityKindContains(v string) predicate.AgentActivityInstance

ActivityKindContains applies the Contains predicate on the "activity_kind" field.

func ActivityKindContainsFold

func ActivityKindContainsFold(v string) predicate.AgentActivityInstance

ActivityKindContainsFold applies the ContainsFold predicate on the "activity_kind" field.

func ActivityKindEQ

func ActivityKindEQ(v string) predicate.AgentActivityInstance

ActivityKindEQ applies the EQ predicate on the "activity_kind" field.

func ActivityKindEqualFold

func ActivityKindEqualFold(v string) predicate.AgentActivityInstance

ActivityKindEqualFold applies the EqualFold predicate on the "activity_kind" field.

func ActivityKindGT

func ActivityKindGT(v string) predicate.AgentActivityInstance

ActivityKindGT applies the GT predicate on the "activity_kind" field.

func ActivityKindGTE

func ActivityKindGTE(v string) predicate.AgentActivityInstance

ActivityKindGTE applies the GTE predicate on the "activity_kind" field.

func ActivityKindHasPrefix

func ActivityKindHasPrefix(v string) predicate.AgentActivityInstance

ActivityKindHasPrefix applies the HasPrefix predicate on the "activity_kind" field.

func ActivityKindHasSuffix

func ActivityKindHasSuffix(v string) predicate.AgentActivityInstance

ActivityKindHasSuffix applies the HasSuffix predicate on the "activity_kind" field.

func ActivityKindIn

func ActivityKindIn(vs ...string) predicate.AgentActivityInstance

ActivityKindIn applies the In predicate on the "activity_kind" field.

func ActivityKindLT

func ActivityKindLT(v string) predicate.AgentActivityInstance

ActivityKindLT applies the LT predicate on the "activity_kind" field.

func ActivityKindLTE

func ActivityKindLTE(v string) predicate.AgentActivityInstance

ActivityKindLTE applies the LTE predicate on the "activity_kind" field.

func ActivityKindNEQ

func ActivityKindNEQ(v string) predicate.AgentActivityInstance

ActivityKindNEQ applies the NEQ predicate on the "activity_kind" field.

func ActivityKindNotIn

func ActivityKindNotIn(vs ...string) predicate.AgentActivityInstance

ActivityKindNotIn applies the NotIn predicate on the "activity_kind" field.

func AgentID

AgentID applies equality check predicate on the "agent_id" field. It's identical to AgentIDEQ.

func AgentIDEQ

AgentIDEQ applies the EQ predicate on the "agent_id" field.

func AgentIDIn

func AgentIDIn(vs ...uuid.UUID) predicate.AgentActivityInstance

AgentIDIn applies the In predicate on the "agent_id" field.

func AgentIDNEQ

AgentIDNEQ applies the NEQ predicate on the "agent_id" field.

func AgentIDNotIn

func AgentIDNotIn(vs ...uuid.UUID) predicate.AgentActivityInstance

AgentIDNotIn applies the NotIn predicate on the "agent_id" field.

func AgentRunID

AgentRunID applies equality check predicate on the "agent_run_id" field. It's identical to AgentRunIDEQ.

func AgentRunIDEQ

func AgentRunIDEQ(v uuid.UUID) predicate.AgentActivityInstance

AgentRunIDEQ applies the EQ predicate on the "agent_run_id" field.

func AgentRunIDIn

func AgentRunIDIn(vs ...uuid.UUID) predicate.AgentActivityInstance

AgentRunIDIn applies the In predicate on the "agent_run_id" field.

func AgentRunIDNEQ

func AgentRunIDNEQ(v uuid.UUID) predicate.AgentActivityInstance

AgentRunIDNEQ applies the NEQ predicate on the "agent_run_id" field.

func AgentRunIDNotIn

func AgentRunIDNotIn(vs ...uuid.UUID) predicate.AgentActivityInstance

AgentRunIDNotIn applies the NotIn predicate on the "agent_run_id" field.

func And

And groups predicates with the AND operator between them.

func Command

Command applies equality check predicate on the "command" field. It's identical to CommandEQ.

func CommandContains

func CommandContains(v string) predicate.AgentActivityInstance

CommandContains applies the Contains predicate on the "command" field.

func CommandContainsFold

func CommandContainsFold(v string) predicate.AgentActivityInstance

CommandContainsFold applies the ContainsFold predicate on the "command" field.

func CommandEQ

CommandEQ applies the EQ predicate on the "command" field.

func CommandEqualFold

func CommandEqualFold(v string) predicate.AgentActivityInstance

CommandEqualFold applies the EqualFold predicate on the "command" field.

func CommandGT

CommandGT applies the GT predicate on the "command" field.

func CommandGTE

CommandGTE applies the GTE predicate on the "command" field.

func CommandHasPrefix

func CommandHasPrefix(v string) predicate.AgentActivityInstance

CommandHasPrefix applies the HasPrefix predicate on the "command" field.

func CommandHasSuffix

func CommandHasSuffix(v string) predicate.AgentActivityInstance

CommandHasSuffix applies the HasSuffix predicate on the "command" field.

func CommandIn

func CommandIn(vs ...string) predicate.AgentActivityInstance

CommandIn applies the In predicate on the "command" field.

func CommandIsNil

func CommandIsNil() predicate.AgentActivityInstance

CommandIsNil applies the IsNil predicate on the "command" field.

func CommandLT

CommandLT applies the LT predicate on the "command" field.

func CommandLTE

CommandLTE applies the LTE predicate on the "command" field.

func CommandNEQ

CommandNEQ applies the NEQ predicate on the "command" field.

func CommandNotIn

func CommandNotIn(vs ...string) predicate.AgentActivityInstance

CommandNotIn applies the NotIn predicate on the "command" field.

func CommandNotNil

func CommandNotNil() predicate.AgentActivityInstance

CommandNotNil applies the NotNil predicate on the "command" field.

func CompletedAt

CompletedAt applies equality check predicate on the "completed_at" field. It's identical to CompletedAtEQ.

func CompletedAtEQ

func CompletedAtEQ(v time.Time) predicate.AgentActivityInstance

CompletedAtEQ applies the EQ predicate on the "completed_at" field.

func CompletedAtGT

func CompletedAtGT(v time.Time) predicate.AgentActivityInstance

CompletedAtGT applies the GT predicate on the "completed_at" field.

func CompletedAtGTE

func CompletedAtGTE(v time.Time) predicate.AgentActivityInstance

CompletedAtGTE applies the GTE predicate on the "completed_at" field.

func CompletedAtIn

func CompletedAtIn(vs ...time.Time) predicate.AgentActivityInstance

CompletedAtIn applies the In predicate on the "completed_at" field.

func CompletedAtIsNil

func CompletedAtIsNil() predicate.AgentActivityInstance

CompletedAtIsNil applies the IsNil predicate on the "completed_at" field.

func CompletedAtLT

func CompletedAtLT(v time.Time) predicate.AgentActivityInstance

CompletedAtLT applies the LT predicate on the "completed_at" field.

func CompletedAtLTE

func CompletedAtLTE(v time.Time) predicate.AgentActivityInstance

CompletedAtLTE applies the LTE predicate on the "completed_at" field.

func CompletedAtNEQ

func CompletedAtNEQ(v time.Time) predicate.AgentActivityInstance

CompletedAtNEQ applies the NEQ predicate on the "completed_at" field.

func CompletedAtNotIn

func CompletedAtNotIn(vs ...time.Time) predicate.AgentActivityInstance

CompletedAtNotIn applies the NotIn predicate on the "completed_at" field.

func CompletedAtNotNil

func CompletedAtNotNil() predicate.AgentActivityInstance

CompletedAtNotNil applies the NotNil predicate on the "completed_at" field.

func CreatedAt

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.AgentActivityInstance

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.AgentActivityInstance

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.AgentActivityInstance

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.AgentActivityInstance

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.AgentActivityInstance

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func FinalText

FinalText applies equality check predicate on the "final_text" field. It's identical to FinalTextEQ.

func FinalTextBytes

func FinalTextBytes(v int) predicate.AgentActivityInstance

FinalTextBytes applies equality check predicate on the "final_text_bytes" field. It's identical to FinalTextBytesEQ.

func FinalTextBytesEQ

func FinalTextBytesEQ(v int) predicate.AgentActivityInstance

FinalTextBytesEQ applies the EQ predicate on the "final_text_bytes" field.

func FinalTextBytesGT

func FinalTextBytesGT(v int) predicate.AgentActivityInstance

FinalTextBytesGT applies the GT predicate on the "final_text_bytes" field.

func FinalTextBytesGTE

func FinalTextBytesGTE(v int) predicate.AgentActivityInstance

FinalTextBytesGTE applies the GTE predicate on the "final_text_bytes" field.

func FinalTextBytesIn

func FinalTextBytesIn(vs ...int) predicate.AgentActivityInstance

FinalTextBytesIn applies the In predicate on the "final_text_bytes" field.

func FinalTextBytesLT

func FinalTextBytesLT(v int) predicate.AgentActivityInstance

FinalTextBytesLT applies the LT predicate on the "final_text_bytes" field.

func FinalTextBytesLTE

func FinalTextBytesLTE(v int) predicate.AgentActivityInstance

FinalTextBytesLTE applies the LTE predicate on the "final_text_bytes" field.

func FinalTextBytesNEQ

func FinalTextBytesNEQ(v int) predicate.AgentActivityInstance

FinalTextBytesNEQ applies the NEQ predicate on the "final_text_bytes" field.

func FinalTextBytesNotIn

func FinalTextBytesNotIn(vs ...int) predicate.AgentActivityInstance

FinalTextBytesNotIn applies the NotIn predicate on the "final_text_bytes" field.

func FinalTextContains

func FinalTextContains(v string) predicate.AgentActivityInstance

FinalTextContains applies the Contains predicate on the "final_text" field.

func FinalTextContainsFold

func FinalTextContainsFold(v string) predicate.AgentActivityInstance

FinalTextContainsFold applies the ContainsFold predicate on the "final_text" field.

func FinalTextEQ

func FinalTextEQ(v string) predicate.AgentActivityInstance

FinalTextEQ applies the EQ predicate on the "final_text" field.

func FinalTextEqualFold

func FinalTextEqualFold(v string) predicate.AgentActivityInstance

FinalTextEqualFold applies the EqualFold predicate on the "final_text" field.

func FinalTextGT

func FinalTextGT(v string) predicate.AgentActivityInstance

FinalTextGT applies the GT predicate on the "final_text" field.

func FinalTextGTE

func FinalTextGTE(v string) predicate.AgentActivityInstance

FinalTextGTE applies the GTE predicate on the "final_text" field.

func FinalTextHasPrefix

func FinalTextHasPrefix(v string) predicate.AgentActivityInstance

FinalTextHasPrefix applies the HasPrefix predicate on the "final_text" field.

func FinalTextHasSuffix

func FinalTextHasSuffix(v string) predicate.AgentActivityInstance

FinalTextHasSuffix applies the HasSuffix predicate on the "final_text" field.

func FinalTextIn

func FinalTextIn(vs ...string) predicate.AgentActivityInstance

FinalTextIn applies the In predicate on the "final_text" field.

func FinalTextIsNil

func FinalTextIsNil() predicate.AgentActivityInstance

FinalTextIsNil applies the IsNil predicate on the "final_text" field.

func FinalTextLT

func FinalTextLT(v string) predicate.AgentActivityInstance

FinalTextLT applies the LT predicate on the "final_text" field.

func FinalTextLTE

func FinalTextLTE(v string) predicate.AgentActivityInstance

FinalTextLTE applies the LTE predicate on the "final_text" field.

func FinalTextNEQ

func FinalTextNEQ(v string) predicate.AgentActivityInstance

FinalTextNEQ applies the NEQ predicate on the "final_text" field.

func FinalTextNotIn

func FinalTextNotIn(vs ...string) predicate.AgentActivityInstance

FinalTextNotIn applies the NotIn predicate on the "final_text" field.

func FinalTextNotNil

func FinalTextNotNil() predicate.AgentActivityInstance

FinalTextNotNil applies the NotNil predicate on the "final_text" field.

func HasAgent

HasAgent applies the HasEdge predicate on the "agent" edge.

func HasAgentRun

func HasAgentRun() predicate.AgentActivityInstance

HasAgentRun applies the HasEdge predicate on the "agent_run" edge.

func HasAgentRunWith

func HasAgentRunWith(preds ...predicate.AgentRun) predicate.AgentActivityInstance

HasAgentRunWith applies the HasEdge predicate on the "agent_run" edge with a given conditions (other predicates).

func HasAgentWith

func HasAgentWith(preds ...predicate.Agent) predicate.AgentActivityInstance

HasAgentWith applies the HasEdge predicate on the "agent" edge with a given conditions (other predicates).

func HasProject

func HasProject() predicate.AgentActivityInstance

HasProject applies the HasEdge predicate on the "project" edge.

func HasProjectWith

func HasProjectWith(preds ...predicate.Project) predicate.AgentActivityInstance

HasProjectWith applies the HasEdge predicate on the "project" edge with a given conditions (other predicates).

func HasTicket

func HasTicket() predicate.AgentActivityInstance

HasTicket applies the HasEdge predicate on the "ticket" edge.

func HasTicketWith

func HasTicketWith(preds ...predicate.Ticket) predicate.AgentActivityInstance

HasTicketWith applies the HasEdge predicate on the "ticket" edge with a given conditions (other predicates).

func ID

ID filters vertices based on their ID field.

func IDEQ

IDEQ applies the EQ predicate on the ID field.

func IDGT

IDGT applies the GT predicate on the ID field.

func IDGTE

IDGTE applies the GTE predicate on the ID field.

func IDIn

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...uuid.UUID) predicate.AgentActivityInstance

IDNotIn applies the NotIn predicate on the ID field.

func IDSource

IDSource applies equality check predicate on the "id_source" field. It's identical to IDSourceEQ.

func IDSourceContains

func IDSourceContains(v string) predicate.AgentActivityInstance

IDSourceContains applies the Contains predicate on the "id_source" field.

func IDSourceContainsFold

func IDSourceContainsFold(v string) predicate.AgentActivityInstance

IDSourceContainsFold applies the ContainsFold predicate on the "id_source" field.

func IDSourceEQ

IDSourceEQ applies the EQ predicate on the "id_source" field.

func IDSourceEqualFold

func IDSourceEqualFold(v string) predicate.AgentActivityInstance

IDSourceEqualFold applies the EqualFold predicate on the "id_source" field.

func IDSourceGT

IDSourceGT applies the GT predicate on the "id_source" field.

func IDSourceGTE

func IDSourceGTE(v string) predicate.AgentActivityInstance

IDSourceGTE applies the GTE predicate on the "id_source" field.

func IDSourceHasPrefix

func IDSourceHasPrefix(v string) predicate.AgentActivityInstance

IDSourceHasPrefix applies the HasPrefix predicate on the "id_source" field.

func IDSourceHasSuffix

func IDSourceHasSuffix(v string) predicate.AgentActivityInstance

IDSourceHasSuffix applies the HasSuffix predicate on the "id_source" field.

func IDSourceIn

func IDSourceIn(vs ...string) predicate.AgentActivityInstance

IDSourceIn applies the In predicate on the "id_source" field.

func IDSourceLT

IDSourceLT applies the LT predicate on the "id_source" field.

func IDSourceLTE

func IDSourceLTE(v string) predicate.AgentActivityInstance

IDSourceLTE applies the LTE predicate on the "id_source" field.

func IDSourceNEQ

func IDSourceNEQ(v string) predicate.AgentActivityInstance

IDSourceNEQ applies the NEQ predicate on the "id_source" field.

func IDSourceNotIn

func IDSourceNotIn(vs ...string) predicate.AgentActivityInstance

IDSourceNotIn applies the NotIn predicate on the "id_source" field.

func IdentityConfidence

func IdentityConfidence(v string) predicate.AgentActivityInstance

IdentityConfidence applies equality check predicate on the "identity_confidence" field. It's identical to IdentityConfidenceEQ.

func IdentityConfidenceContains

func IdentityConfidenceContains(v string) predicate.AgentActivityInstance

IdentityConfidenceContains applies the Contains predicate on the "identity_confidence" field.

func IdentityConfidenceContainsFold

func IdentityConfidenceContainsFold(v string) predicate.AgentActivityInstance

IdentityConfidenceContainsFold applies the ContainsFold predicate on the "identity_confidence" field.

func IdentityConfidenceEQ

func IdentityConfidenceEQ(v string) predicate.AgentActivityInstance

IdentityConfidenceEQ applies the EQ predicate on the "identity_confidence" field.

func IdentityConfidenceEqualFold

func IdentityConfidenceEqualFold(v string) predicate.AgentActivityInstance

IdentityConfidenceEqualFold applies the EqualFold predicate on the "identity_confidence" field.

func IdentityConfidenceGT

func IdentityConfidenceGT(v string) predicate.AgentActivityInstance

IdentityConfidenceGT applies the GT predicate on the "identity_confidence" field.

func IdentityConfidenceGTE

func IdentityConfidenceGTE(v string) predicate.AgentActivityInstance

IdentityConfidenceGTE applies the GTE predicate on the "identity_confidence" field.

func IdentityConfidenceHasPrefix

func IdentityConfidenceHasPrefix(v string) predicate.AgentActivityInstance

IdentityConfidenceHasPrefix applies the HasPrefix predicate on the "identity_confidence" field.

func IdentityConfidenceHasSuffix

func IdentityConfidenceHasSuffix(v string) predicate.AgentActivityInstance

IdentityConfidenceHasSuffix applies the HasSuffix predicate on the "identity_confidence" field.

func IdentityConfidenceIn

func IdentityConfidenceIn(vs ...string) predicate.AgentActivityInstance

IdentityConfidenceIn applies the In predicate on the "identity_confidence" field.

func IdentityConfidenceLT

func IdentityConfidenceLT(v string) predicate.AgentActivityInstance

IdentityConfidenceLT applies the LT predicate on the "identity_confidence" field.

func IdentityConfidenceLTE

func IdentityConfidenceLTE(v string) predicate.AgentActivityInstance

IdentityConfidenceLTE applies the LTE predicate on the "identity_confidence" field.

func IdentityConfidenceNEQ

func IdentityConfidenceNEQ(v string) predicate.AgentActivityInstance

IdentityConfidenceNEQ applies the NEQ predicate on the "identity_confidence" field.

func IdentityConfidenceNotIn

func IdentityConfidenceNotIn(vs ...string) predicate.AgentActivityInstance

IdentityConfidenceNotIn applies the NotIn predicate on the "identity_confidence" field.

func LiveText

LiveText applies equality check predicate on the "live_text" field. It's identical to LiveTextEQ.

func LiveTextBytes

func LiveTextBytes(v int) predicate.AgentActivityInstance

LiveTextBytes applies equality check predicate on the "live_text_bytes" field. It's identical to LiveTextBytesEQ.

func LiveTextBytesEQ

func LiveTextBytesEQ(v int) predicate.AgentActivityInstance

LiveTextBytesEQ applies the EQ predicate on the "live_text_bytes" field.

func LiveTextBytesGT

func LiveTextBytesGT(v int) predicate.AgentActivityInstance

LiveTextBytesGT applies the GT predicate on the "live_text_bytes" field.

func LiveTextBytesGTE

func LiveTextBytesGTE(v int) predicate.AgentActivityInstance

LiveTextBytesGTE applies the GTE predicate on the "live_text_bytes" field.

func LiveTextBytesIn

func LiveTextBytesIn(vs ...int) predicate.AgentActivityInstance

LiveTextBytesIn applies the In predicate on the "live_text_bytes" field.

func LiveTextBytesLT

func LiveTextBytesLT(v int) predicate.AgentActivityInstance

LiveTextBytesLT applies the LT predicate on the "live_text_bytes" field.

func LiveTextBytesLTE

func LiveTextBytesLTE(v int) predicate.AgentActivityInstance

LiveTextBytesLTE applies the LTE predicate on the "live_text_bytes" field.

func LiveTextBytesNEQ

func LiveTextBytesNEQ(v int) predicate.AgentActivityInstance

LiveTextBytesNEQ applies the NEQ predicate on the "live_text_bytes" field.

func LiveTextBytesNotIn

func LiveTextBytesNotIn(vs ...int) predicate.AgentActivityInstance

LiveTextBytesNotIn applies the NotIn predicate on the "live_text_bytes" field.

func LiveTextContains

func LiveTextContains(v string) predicate.AgentActivityInstance

LiveTextContains applies the Contains predicate on the "live_text" field.

func LiveTextContainsFold

func LiveTextContainsFold(v string) predicate.AgentActivityInstance

LiveTextContainsFold applies the ContainsFold predicate on the "live_text" field.

func LiveTextEQ

LiveTextEQ applies the EQ predicate on the "live_text" field.

func LiveTextEqualFold

func LiveTextEqualFold(v string) predicate.AgentActivityInstance

LiveTextEqualFold applies the EqualFold predicate on the "live_text" field.

func LiveTextGT

LiveTextGT applies the GT predicate on the "live_text" field.

func LiveTextGTE

func LiveTextGTE(v string) predicate.AgentActivityInstance

LiveTextGTE applies the GTE predicate on the "live_text" field.

func LiveTextHasPrefix

func LiveTextHasPrefix(v string) predicate.AgentActivityInstance

LiveTextHasPrefix applies the HasPrefix predicate on the "live_text" field.

func LiveTextHasSuffix

func LiveTextHasSuffix(v string) predicate.AgentActivityInstance

LiveTextHasSuffix applies the HasSuffix predicate on the "live_text" field.

func LiveTextIn

func LiveTextIn(vs ...string) predicate.AgentActivityInstance

LiveTextIn applies the In predicate on the "live_text" field.

func LiveTextIsNil

func LiveTextIsNil() predicate.AgentActivityInstance

LiveTextIsNil applies the IsNil predicate on the "live_text" field.

func LiveTextLT

LiveTextLT applies the LT predicate on the "live_text" field.

func LiveTextLTE

func LiveTextLTE(v string) predicate.AgentActivityInstance

LiveTextLTE applies the LTE predicate on the "live_text" field.

func LiveTextNEQ

func LiveTextNEQ(v string) predicate.AgentActivityInstance

LiveTextNEQ applies the NEQ predicate on the "live_text" field.

func LiveTextNotIn

func LiveTextNotIn(vs ...string) predicate.AgentActivityInstance

LiveTextNotIn applies the NotIn predicate on the "live_text" field.

func LiveTextNotNil

func LiveTextNotNil() predicate.AgentActivityInstance

LiveTextNotNil applies the NotNil predicate on the "live_text" field.

func Not

Not applies the not operator on the given predicate.

func Or

Or groups predicates with the OR operator between them.

func ParentActivityID

func ParentActivityID(v string) predicate.AgentActivityInstance

ParentActivityID applies equality check predicate on the "parent_activity_id" field. It's identical to ParentActivityIDEQ.

func ParentActivityIDContains

func ParentActivityIDContains(v string) predicate.AgentActivityInstance

ParentActivityIDContains applies the Contains predicate on the "parent_activity_id" field.

func ParentActivityIDContainsFold

func ParentActivityIDContainsFold(v string) predicate.AgentActivityInstance

ParentActivityIDContainsFold applies the ContainsFold predicate on the "parent_activity_id" field.

func ParentActivityIDEQ

func ParentActivityIDEQ(v string) predicate.AgentActivityInstance

ParentActivityIDEQ applies the EQ predicate on the "parent_activity_id" field.

func ParentActivityIDEqualFold

func ParentActivityIDEqualFold(v string) predicate.AgentActivityInstance

ParentActivityIDEqualFold applies the EqualFold predicate on the "parent_activity_id" field.

func ParentActivityIDGT

func ParentActivityIDGT(v string) predicate.AgentActivityInstance

ParentActivityIDGT applies the GT predicate on the "parent_activity_id" field.

func ParentActivityIDGTE

func ParentActivityIDGTE(v string) predicate.AgentActivityInstance

ParentActivityIDGTE applies the GTE predicate on the "parent_activity_id" field.

func ParentActivityIDHasPrefix

func ParentActivityIDHasPrefix(v string) predicate.AgentActivityInstance

ParentActivityIDHasPrefix applies the HasPrefix predicate on the "parent_activity_id" field.

func ParentActivityIDHasSuffix

func ParentActivityIDHasSuffix(v string) predicate.AgentActivityInstance

ParentActivityIDHasSuffix applies the HasSuffix predicate on the "parent_activity_id" field.

func ParentActivityIDIn

func ParentActivityIDIn(vs ...string) predicate.AgentActivityInstance

ParentActivityIDIn applies the In predicate on the "parent_activity_id" field.

func ParentActivityIDIsNil

func ParentActivityIDIsNil() predicate.AgentActivityInstance

ParentActivityIDIsNil applies the IsNil predicate on the "parent_activity_id" field.

func ParentActivityIDLT

func ParentActivityIDLT(v string) predicate.AgentActivityInstance

ParentActivityIDLT applies the LT predicate on the "parent_activity_id" field.

func ParentActivityIDLTE

func ParentActivityIDLTE(v string) predicate.AgentActivityInstance

ParentActivityIDLTE applies the LTE predicate on the "parent_activity_id" field.

func ParentActivityIDNEQ

func ParentActivityIDNEQ(v string) predicate.AgentActivityInstance

ParentActivityIDNEQ applies the NEQ predicate on the "parent_activity_id" field.

func ParentActivityIDNotIn

func ParentActivityIDNotIn(vs ...string) predicate.AgentActivityInstance

ParentActivityIDNotIn applies the NotIn predicate on the "parent_activity_id" field.

func ParentActivityIDNotNil

func ParentActivityIDNotNil() predicate.AgentActivityInstance

ParentActivityIDNotNil applies the NotNil predicate on the "parent_activity_id" field.

func ProjectID

ProjectID applies equality check predicate on the "project_id" field. It's identical to ProjectIDEQ.

func ProjectIDEQ

ProjectIDEQ applies the EQ predicate on the "project_id" field.

func ProjectIDIn

func ProjectIDIn(vs ...uuid.UUID) predicate.AgentActivityInstance

ProjectIDIn applies the In predicate on the "project_id" field.

func ProjectIDNEQ

func ProjectIDNEQ(v uuid.UUID) predicate.AgentActivityInstance

ProjectIDNEQ applies the NEQ predicate on the "project_id" field.

func ProjectIDNotIn

func ProjectIDNotIn(vs ...uuid.UUID) predicate.AgentActivityInstance

ProjectIDNotIn applies the NotIn predicate on the "project_id" field.

func Provider

Provider applies equality check predicate on the "provider" field. It's identical to ProviderEQ.

func ProviderContains

func ProviderContains(v string) predicate.AgentActivityInstance

ProviderContains applies the Contains predicate on the "provider" field.

func ProviderContainsFold

func ProviderContainsFold(v string) predicate.AgentActivityInstance

ProviderContainsFold applies the ContainsFold predicate on the "provider" field.

func ProviderEQ

ProviderEQ applies the EQ predicate on the "provider" field.

func ProviderEqualFold

func ProviderEqualFold(v string) predicate.AgentActivityInstance

ProviderEqualFold applies the EqualFold predicate on the "provider" field.

func ProviderGT

ProviderGT applies the GT predicate on the "provider" field.

func ProviderGTE

func ProviderGTE(v string) predicate.AgentActivityInstance

ProviderGTE applies the GTE predicate on the "provider" field.

func ProviderHasPrefix

func ProviderHasPrefix(v string) predicate.AgentActivityInstance

ProviderHasPrefix applies the HasPrefix predicate on the "provider" field.

func ProviderHasSuffix

func ProviderHasSuffix(v string) predicate.AgentActivityInstance

ProviderHasSuffix applies the HasSuffix predicate on the "provider" field.

func ProviderIn

func ProviderIn(vs ...string) predicate.AgentActivityInstance

ProviderIn applies the In predicate on the "provider" field.

func ProviderLT

ProviderLT applies the LT predicate on the "provider" field.

func ProviderLTE

func ProviderLTE(v string) predicate.AgentActivityInstance

ProviderLTE applies the LTE predicate on the "provider" field.

func ProviderNEQ

func ProviderNEQ(v string) predicate.AgentActivityInstance

ProviderNEQ applies the NEQ predicate on the "provider" field.

func ProviderNotIn

func ProviderNotIn(vs ...string) predicate.AgentActivityInstance

ProviderNotIn applies the NotIn predicate on the "provider" field.

func StartedAt

StartedAt applies equality check predicate on the "started_at" field. It's identical to StartedAtEQ.

func StartedAtEQ

StartedAtEQ applies the EQ predicate on the "started_at" field.

func StartedAtGT

StartedAtGT applies the GT predicate on the "started_at" field.

func StartedAtGTE

func StartedAtGTE(v time.Time) predicate.AgentActivityInstance

StartedAtGTE applies the GTE predicate on the "started_at" field.

func StartedAtIn

func StartedAtIn(vs ...time.Time) predicate.AgentActivityInstance

StartedAtIn applies the In predicate on the "started_at" field.

func StartedAtIsNil

func StartedAtIsNil() predicate.AgentActivityInstance

StartedAtIsNil applies the IsNil predicate on the "started_at" field.

func StartedAtLT

StartedAtLT applies the LT predicate on the "started_at" field.

func StartedAtLTE

func StartedAtLTE(v time.Time) predicate.AgentActivityInstance

StartedAtLTE applies the LTE predicate on the "started_at" field.

func StartedAtNEQ

func StartedAtNEQ(v time.Time) predicate.AgentActivityInstance

StartedAtNEQ applies the NEQ predicate on the "started_at" field.

func StartedAtNotIn

func StartedAtNotIn(vs ...time.Time) predicate.AgentActivityInstance

StartedAtNotIn applies the NotIn predicate on the "started_at" field.

func StartedAtNotNil

func StartedAtNotNil() predicate.AgentActivityInstance

StartedAtNotNil applies the NotNil predicate on the "started_at" field.

func Status

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusContains

func StatusContains(v string) predicate.AgentActivityInstance

StatusContains applies the Contains predicate on the "status" field.

func StatusContainsFold

func StatusContainsFold(v string) predicate.AgentActivityInstance

StatusContainsFold applies the ContainsFold predicate on the "status" field.

func StatusEQ

StatusEQ applies the EQ predicate on the "status" field.

func StatusEqualFold

func StatusEqualFold(v string) predicate.AgentActivityInstance

StatusEqualFold applies the EqualFold predicate on the "status" field.

func StatusGT

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

StatusGTE applies the GTE predicate on the "status" field.

func StatusHasPrefix

func StatusHasPrefix(v string) predicate.AgentActivityInstance

StatusHasPrefix applies the HasPrefix predicate on the "status" field.

func StatusHasSuffix

func StatusHasSuffix(v string) predicate.AgentActivityInstance

StatusHasSuffix applies the HasSuffix predicate on the "status" field.

func StatusIn

func StatusIn(vs ...string) predicate.AgentActivityInstance

StatusIn applies the In predicate on the "status" field.

func StatusLT

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...string) predicate.AgentActivityInstance

StatusNotIn applies the NotIn predicate on the "status" field.

func ThreadID

ThreadID applies equality check predicate on the "thread_id" field. It's identical to ThreadIDEQ.

func ThreadIDContains

func ThreadIDContains(v string) predicate.AgentActivityInstance

ThreadIDContains applies the Contains predicate on the "thread_id" field.

func ThreadIDContainsFold

func ThreadIDContainsFold(v string) predicate.AgentActivityInstance

ThreadIDContainsFold applies the ContainsFold predicate on the "thread_id" field.

func ThreadIDEQ

ThreadIDEQ applies the EQ predicate on the "thread_id" field.

func ThreadIDEqualFold

func ThreadIDEqualFold(v string) predicate.AgentActivityInstance

ThreadIDEqualFold applies the EqualFold predicate on the "thread_id" field.

func ThreadIDGT

ThreadIDGT applies the GT predicate on the "thread_id" field.

func ThreadIDGTE

func ThreadIDGTE(v string) predicate.AgentActivityInstance

ThreadIDGTE applies the GTE predicate on the "thread_id" field.

func ThreadIDHasPrefix

func ThreadIDHasPrefix(v string) predicate.AgentActivityInstance

ThreadIDHasPrefix applies the HasPrefix predicate on the "thread_id" field.

func ThreadIDHasSuffix

func ThreadIDHasSuffix(v string) predicate.AgentActivityInstance

ThreadIDHasSuffix applies the HasSuffix predicate on the "thread_id" field.

func ThreadIDIn

func ThreadIDIn(vs ...string) predicate.AgentActivityInstance

ThreadIDIn applies the In predicate on the "thread_id" field.

func ThreadIDIsNil

func ThreadIDIsNil() predicate.AgentActivityInstance

ThreadIDIsNil applies the IsNil predicate on the "thread_id" field.

func ThreadIDLT

ThreadIDLT applies the LT predicate on the "thread_id" field.

func ThreadIDLTE

func ThreadIDLTE(v string) predicate.AgentActivityInstance

ThreadIDLTE applies the LTE predicate on the "thread_id" field.

func ThreadIDNEQ

func ThreadIDNEQ(v string) predicate.AgentActivityInstance

ThreadIDNEQ applies the NEQ predicate on the "thread_id" field.

func ThreadIDNotIn

func ThreadIDNotIn(vs ...string) predicate.AgentActivityInstance

ThreadIDNotIn applies the NotIn predicate on the "thread_id" field.

func ThreadIDNotNil

func ThreadIDNotNil() predicate.AgentActivityInstance

ThreadIDNotNil applies the NotNil predicate on the "thread_id" field.

func TicketID

TicketID applies equality check predicate on the "ticket_id" field. It's identical to TicketIDEQ.

func TicketIDEQ

TicketIDEQ applies the EQ predicate on the "ticket_id" field.

func TicketIDIn

func TicketIDIn(vs ...uuid.UUID) predicate.AgentActivityInstance

TicketIDIn applies the In predicate on the "ticket_id" field.

func TicketIDIsNil

func TicketIDIsNil() predicate.AgentActivityInstance

TicketIDIsNil applies the IsNil predicate on the "ticket_id" field.

func TicketIDNEQ

TicketIDNEQ applies the NEQ predicate on the "ticket_id" field.

func TicketIDNotIn

func TicketIDNotIn(vs ...uuid.UUID) predicate.AgentActivityInstance

TicketIDNotIn applies the NotIn predicate on the "ticket_id" field.

func TicketIDNotNil

func TicketIDNotNil() predicate.AgentActivityInstance

TicketIDNotNil applies the NotNil predicate on the "ticket_id" field.

func Title

Title applies equality check predicate on the "title" field. It's identical to TitleEQ.

func TitleContains

func TitleContains(v string) predicate.AgentActivityInstance

TitleContains applies the Contains predicate on the "title" field.

func TitleContainsFold

func TitleContainsFold(v string) predicate.AgentActivityInstance

TitleContainsFold applies the ContainsFold predicate on the "title" field.

func TitleEQ

TitleEQ applies the EQ predicate on the "title" field.

func TitleEqualFold

func TitleEqualFold(v string) predicate.AgentActivityInstance

TitleEqualFold applies the EqualFold predicate on the "title" field.

func TitleGT

TitleGT applies the GT predicate on the "title" field.

func TitleGTE

TitleGTE applies the GTE predicate on the "title" field.

func TitleHasPrefix

func TitleHasPrefix(v string) predicate.AgentActivityInstance

TitleHasPrefix applies the HasPrefix predicate on the "title" field.

func TitleHasSuffix

func TitleHasSuffix(v string) predicate.AgentActivityInstance

TitleHasSuffix applies the HasSuffix predicate on the "title" field.

func TitleIn

func TitleIn(vs ...string) predicate.AgentActivityInstance

TitleIn applies the In predicate on the "title" field.

func TitleIsNil

func TitleIsNil() predicate.AgentActivityInstance

TitleIsNil applies the IsNil predicate on the "title" field.

func TitleLT

TitleLT applies the LT predicate on the "title" field.

func TitleLTE

TitleLTE applies the LTE predicate on the "title" field.

func TitleNEQ

TitleNEQ applies the NEQ predicate on the "title" field.

func TitleNotIn

func TitleNotIn(vs ...string) predicate.AgentActivityInstance

TitleNotIn applies the NotIn predicate on the "title" field.

func TitleNotNil

func TitleNotNil() predicate.AgentActivityInstance

TitleNotNil applies the NotNil predicate on the "title" field.

func ToolName

ToolName applies equality check predicate on the "tool_name" field. It's identical to ToolNameEQ.

func ToolNameContains

func ToolNameContains(v string) predicate.AgentActivityInstance

ToolNameContains applies the Contains predicate on the "tool_name" field.

func ToolNameContainsFold

func ToolNameContainsFold(v string) predicate.AgentActivityInstance

ToolNameContainsFold applies the ContainsFold predicate on the "tool_name" field.

func ToolNameEQ

ToolNameEQ applies the EQ predicate on the "tool_name" field.

func ToolNameEqualFold

func ToolNameEqualFold(v string) predicate.AgentActivityInstance

ToolNameEqualFold applies the EqualFold predicate on the "tool_name" field.

func ToolNameGT

ToolNameGT applies the GT predicate on the "tool_name" field.

func ToolNameGTE

func ToolNameGTE(v string) predicate.AgentActivityInstance

ToolNameGTE applies the GTE predicate on the "tool_name" field.

func ToolNameHasPrefix

func ToolNameHasPrefix(v string) predicate.AgentActivityInstance

ToolNameHasPrefix applies the HasPrefix predicate on the "tool_name" field.

func ToolNameHasSuffix

func ToolNameHasSuffix(v string) predicate.AgentActivityInstance

ToolNameHasSuffix applies the HasSuffix predicate on the "tool_name" field.

func ToolNameIn

func ToolNameIn(vs ...string) predicate.AgentActivityInstance

ToolNameIn applies the In predicate on the "tool_name" field.

func ToolNameIsNil

func ToolNameIsNil() predicate.AgentActivityInstance

ToolNameIsNil applies the IsNil predicate on the "tool_name" field.

func ToolNameLT

ToolNameLT applies the LT predicate on the "tool_name" field.

func ToolNameLTE

func ToolNameLTE(v string) predicate.AgentActivityInstance

ToolNameLTE applies the LTE predicate on the "tool_name" field.

func ToolNameNEQ

func ToolNameNEQ(v string) predicate.AgentActivityInstance

ToolNameNEQ applies the NEQ predicate on the "tool_name" field.

func ToolNameNotIn

func ToolNameNotIn(vs ...string) predicate.AgentActivityInstance

ToolNameNotIn applies the NotIn predicate on the "tool_name" field.

func ToolNameNotNil

func ToolNameNotNil() predicate.AgentActivityInstance

ToolNameNotNil applies the NotNil predicate on the "tool_name" field.

func TurnID

TurnID applies equality check predicate on the "turn_id" field. It's identical to TurnIDEQ.

func TurnIDContains

func TurnIDContains(v string) predicate.AgentActivityInstance

TurnIDContains applies the Contains predicate on the "turn_id" field.

func TurnIDContainsFold

func TurnIDContainsFold(v string) predicate.AgentActivityInstance

TurnIDContainsFold applies the ContainsFold predicate on the "turn_id" field.

func TurnIDEQ

TurnIDEQ applies the EQ predicate on the "turn_id" field.

func TurnIDEqualFold

func TurnIDEqualFold(v string) predicate.AgentActivityInstance

TurnIDEqualFold applies the EqualFold predicate on the "turn_id" field.

func TurnIDGT

TurnIDGT applies the GT predicate on the "turn_id" field.

func TurnIDGTE

TurnIDGTE applies the GTE predicate on the "turn_id" field.

func TurnIDHasPrefix

func TurnIDHasPrefix(v string) predicate.AgentActivityInstance

TurnIDHasPrefix applies the HasPrefix predicate on the "turn_id" field.

func TurnIDHasSuffix

func TurnIDHasSuffix(v string) predicate.AgentActivityInstance

TurnIDHasSuffix applies the HasSuffix predicate on the "turn_id" field.

func TurnIDIn

func TurnIDIn(vs ...string) predicate.AgentActivityInstance

TurnIDIn applies the In predicate on the "turn_id" field.

func TurnIDIsNil

func TurnIDIsNil() predicate.AgentActivityInstance

TurnIDIsNil applies the IsNil predicate on the "turn_id" field.

func TurnIDLT

TurnIDLT applies the LT predicate on the "turn_id" field.

func TurnIDLTE

TurnIDLTE applies the LTE predicate on the "turn_id" field.

func TurnIDNEQ

TurnIDNEQ applies the NEQ predicate on the "turn_id" field.

func TurnIDNotIn

func TurnIDNotIn(vs ...string) predicate.AgentActivityInstance

TurnIDNotIn applies the NotIn predicate on the "turn_id" field.

func TurnIDNotNil

func TurnIDNotNil() predicate.AgentActivityInstance

TurnIDNotNil applies the NotNil predicate on the "turn_id" field.

func UpdatedAt

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.AgentActivityInstance

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.AgentActivityInstance

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.AgentActivityInstance

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.AgentActivityInstance

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.AgentActivityInstance

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the AgentActivityInstance queries.

func ByActivityID

func ByActivityID(opts ...sql.OrderTermOption) OrderOption

ByActivityID orders the results by the activity_id field.

func ByActivityKind

func ByActivityKind(opts ...sql.OrderTermOption) OrderOption

ByActivityKind orders the results by the activity_kind field.

func ByAgentField

func ByAgentField(field string, opts ...sql.OrderTermOption) OrderOption

ByAgentField orders the results by agent field.

func ByAgentID

func ByAgentID(opts ...sql.OrderTermOption) OrderOption

ByAgentID orders the results by the agent_id field.

func ByAgentRunField

func ByAgentRunField(field string, opts ...sql.OrderTermOption) OrderOption

ByAgentRunField orders the results by agent_run field.

func ByAgentRunID

func ByAgentRunID(opts ...sql.OrderTermOption) OrderOption

ByAgentRunID orders the results by the agent_run_id field.

func ByCommand

func ByCommand(opts ...sql.OrderTermOption) OrderOption

ByCommand orders the results by the command field.

func ByCompletedAt

func ByCompletedAt(opts ...sql.OrderTermOption) OrderOption

ByCompletedAt orders the results by the completed_at field.

func ByCreatedAt

func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption

ByCreatedAt orders the results by the created_at field.

func ByFinalText

func ByFinalText(opts ...sql.OrderTermOption) OrderOption

ByFinalText orders the results by the final_text field.

func ByFinalTextBytes

func ByFinalTextBytes(opts ...sql.OrderTermOption) OrderOption

ByFinalTextBytes orders the results by the final_text_bytes field.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByIDSource

func ByIDSource(opts ...sql.OrderTermOption) OrderOption

ByIDSource orders the results by the id_source field.

func ByIdentityConfidence

func ByIdentityConfidence(opts ...sql.OrderTermOption) OrderOption

ByIdentityConfidence orders the results by the identity_confidence field.

func ByLiveText

func ByLiveText(opts ...sql.OrderTermOption) OrderOption

ByLiveText orders the results by the live_text field.

func ByLiveTextBytes

func ByLiveTextBytes(opts ...sql.OrderTermOption) OrderOption

ByLiveTextBytes orders the results by the live_text_bytes field.

func ByParentActivityID

func ByParentActivityID(opts ...sql.OrderTermOption) OrderOption

ByParentActivityID orders the results by the parent_activity_id field.

func ByProjectField

func ByProjectField(field string, opts ...sql.OrderTermOption) OrderOption

ByProjectField orders the results by project field.

func ByProjectID

func ByProjectID(opts ...sql.OrderTermOption) OrderOption

ByProjectID orders the results by the project_id field.

func ByProvider

func ByProvider(opts ...sql.OrderTermOption) OrderOption

ByProvider orders the results by the provider field.

func ByStartedAt

func ByStartedAt(opts ...sql.OrderTermOption) OrderOption

ByStartedAt orders the results by the started_at field.

func ByStatus

func ByStatus(opts ...sql.OrderTermOption) OrderOption

ByStatus orders the results by the status field.

func ByThreadID

func ByThreadID(opts ...sql.OrderTermOption) OrderOption

ByThreadID orders the results by the thread_id field.

func ByTicketField

func ByTicketField(field string, opts ...sql.OrderTermOption) OrderOption

ByTicketField orders the results by ticket field.

func ByTicketID

func ByTicketID(opts ...sql.OrderTermOption) OrderOption

ByTicketID orders the results by the ticket_id field.

func ByTitle

func ByTitle(opts ...sql.OrderTermOption) OrderOption

ByTitle orders the results by the title field.

func ByToolName

func ByToolName(opts ...sql.OrderTermOption) OrderOption

ByToolName orders the results by the tool_name field.

func ByTurnID

func ByTurnID(opts ...sql.OrderTermOption) OrderOption

ByTurnID orders the results by the turn_id field.

func ByUpdatedAt

func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption

ByUpdatedAt orders the results by the updated_at field.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL