agentrawevent

package
v0.8.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the agentrawevent type in the database.
	Label = "agent_raw_event"
	// 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"
	// FieldDedupKey holds the string denoting the dedup_key field in the database.
	FieldDedupKey = "dedup_key"
	// FieldProvider holds the string denoting the provider field in the database.
	FieldProvider = "provider"
	// FieldProviderEventKind holds the string denoting the provider_event_kind field in the database.
	FieldProviderEventKind = "provider_event_kind"
	// FieldProviderEventSubtype holds the string denoting the provider_event_subtype field in the database.
	FieldProviderEventSubtype = "provider_event_subtype"
	// FieldProviderEventID holds the string denoting the provider_event_id field in the database.
	FieldProviderEventID = "provider_event_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"
	// FieldActivityHintID holds the string denoting the activity_hint_id field in the database.
	FieldActivityHintID = "activity_hint_id"
	// FieldOccurredAt holds the string denoting the occurred_at field in the database.
	FieldOccurredAt = "occurred_at"
	// FieldPayload holds the string denoting the payload field in the database.
	FieldPayload = "payload"
	// FieldTextExcerpt holds the string denoting the text_excerpt field in the database.
	FieldTextExcerpt = "text_excerpt"
	// 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 agentrawevent in the database.
	Table = "agent_raw_events"
	// ProjectTable is the table that holds the project relation/edge.
	ProjectTable = "agent_raw_events"
	// 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_raw_events"
	// 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_raw_events"
	// 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_raw_events"
	// 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 (
	// DedupKeyValidator is a validator for the "dedup_key" field. It is called by the builders before save.
	DedupKeyValidator func(string) error
	// ProviderValidator is a validator for the "provider" field. It is called by the builders before save.
	ProviderValidator func(string) error
	// ProviderEventKindValidator is a validator for the "provider_event_kind" field. It is called by the builders before save.
	ProviderEventKindValidator func(string) error
	// DefaultPayload holds the default value on creation for the "payload" field.
	DefaultPayload 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 agentrawevent fields.

Functions

func ActivityHintID

func ActivityHintID(v string) predicate.AgentRawEvent

ActivityHintID applies equality check predicate on the "activity_hint_id" field. It's identical to ActivityHintIDEQ.

func ActivityHintIDContains

func ActivityHintIDContains(v string) predicate.AgentRawEvent

ActivityHintIDContains applies the Contains predicate on the "activity_hint_id" field.

func ActivityHintIDContainsFold

func ActivityHintIDContainsFold(v string) predicate.AgentRawEvent

ActivityHintIDContainsFold applies the ContainsFold predicate on the "activity_hint_id" field.

func ActivityHintIDEQ

func ActivityHintIDEQ(v string) predicate.AgentRawEvent

ActivityHintIDEQ applies the EQ predicate on the "activity_hint_id" field.

func ActivityHintIDEqualFold

func ActivityHintIDEqualFold(v string) predicate.AgentRawEvent

ActivityHintIDEqualFold applies the EqualFold predicate on the "activity_hint_id" field.

func ActivityHintIDGT

func ActivityHintIDGT(v string) predicate.AgentRawEvent

ActivityHintIDGT applies the GT predicate on the "activity_hint_id" field.

func ActivityHintIDGTE

func ActivityHintIDGTE(v string) predicate.AgentRawEvent

ActivityHintIDGTE applies the GTE predicate on the "activity_hint_id" field.

func ActivityHintIDHasPrefix

func ActivityHintIDHasPrefix(v string) predicate.AgentRawEvent

ActivityHintIDHasPrefix applies the HasPrefix predicate on the "activity_hint_id" field.

func ActivityHintIDHasSuffix

func ActivityHintIDHasSuffix(v string) predicate.AgentRawEvent

ActivityHintIDHasSuffix applies the HasSuffix predicate on the "activity_hint_id" field.

func ActivityHintIDIn

func ActivityHintIDIn(vs ...string) predicate.AgentRawEvent

ActivityHintIDIn applies the In predicate on the "activity_hint_id" field.

func ActivityHintIDIsNil

func ActivityHintIDIsNil() predicate.AgentRawEvent

ActivityHintIDIsNil applies the IsNil predicate on the "activity_hint_id" field.

func ActivityHintIDLT

func ActivityHintIDLT(v string) predicate.AgentRawEvent

ActivityHintIDLT applies the LT predicate on the "activity_hint_id" field.

func ActivityHintIDLTE

func ActivityHintIDLTE(v string) predicate.AgentRawEvent

ActivityHintIDLTE applies the LTE predicate on the "activity_hint_id" field.

func ActivityHintIDNEQ

func ActivityHintIDNEQ(v string) predicate.AgentRawEvent

ActivityHintIDNEQ applies the NEQ predicate on the "activity_hint_id" field.

func ActivityHintIDNotIn

func ActivityHintIDNotIn(vs ...string) predicate.AgentRawEvent

ActivityHintIDNotIn applies the NotIn predicate on the "activity_hint_id" field.

func ActivityHintIDNotNil

func ActivityHintIDNotNil() predicate.AgentRawEvent

ActivityHintIDNotNil applies the NotNil predicate on the "activity_hint_id" field.

func AgentID

func AgentID(v uuid.UUID) predicate.AgentRawEvent

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

func AgentIDEQ

func AgentIDEQ(v uuid.UUID) predicate.AgentRawEvent

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

func AgentIDIn

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

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

func AgentIDNEQ

func AgentIDNEQ(v uuid.UUID) predicate.AgentRawEvent

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

func AgentIDNotIn

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

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

func AgentRunID

func AgentRunID(v uuid.UUID) predicate.AgentRawEvent

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

func AgentRunIDEQ

func AgentRunIDEQ(v uuid.UUID) predicate.AgentRawEvent

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

func AgentRunIDIn

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

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

func AgentRunIDNEQ

func AgentRunIDNEQ(v uuid.UUID) predicate.AgentRawEvent

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

func AgentRunIDNotIn

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

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

func And

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.AgentRawEvent

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.AgentRawEvent

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.AgentRawEvent

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.AgentRawEvent

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.AgentRawEvent

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.AgentRawEvent

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.AgentRawEvent

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

func CreatedAtNotIn

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

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

func DedupKey

func DedupKey(v string) predicate.AgentRawEvent

DedupKey applies equality check predicate on the "dedup_key" field. It's identical to DedupKeyEQ.

func DedupKeyContains

func DedupKeyContains(v string) predicate.AgentRawEvent

DedupKeyContains applies the Contains predicate on the "dedup_key" field.

func DedupKeyContainsFold

func DedupKeyContainsFold(v string) predicate.AgentRawEvent

DedupKeyContainsFold applies the ContainsFold predicate on the "dedup_key" field.

func DedupKeyEQ

func DedupKeyEQ(v string) predicate.AgentRawEvent

DedupKeyEQ applies the EQ predicate on the "dedup_key" field.

func DedupKeyEqualFold

func DedupKeyEqualFold(v string) predicate.AgentRawEvent

DedupKeyEqualFold applies the EqualFold predicate on the "dedup_key" field.

func DedupKeyGT

func DedupKeyGT(v string) predicate.AgentRawEvent

DedupKeyGT applies the GT predicate on the "dedup_key" field.

func DedupKeyGTE

func DedupKeyGTE(v string) predicate.AgentRawEvent

DedupKeyGTE applies the GTE predicate on the "dedup_key" field.

func DedupKeyHasPrefix

func DedupKeyHasPrefix(v string) predicate.AgentRawEvent

DedupKeyHasPrefix applies the HasPrefix predicate on the "dedup_key" field.

func DedupKeyHasSuffix

func DedupKeyHasSuffix(v string) predicate.AgentRawEvent

DedupKeyHasSuffix applies the HasSuffix predicate on the "dedup_key" field.

func DedupKeyIn

func DedupKeyIn(vs ...string) predicate.AgentRawEvent

DedupKeyIn applies the In predicate on the "dedup_key" field.

func DedupKeyLT

func DedupKeyLT(v string) predicate.AgentRawEvent

DedupKeyLT applies the LT predicate on the "dedup_key" field.

func DedupKeyLTE

func DedupKeyLTE(v string) predicate.AgentRawEvent

DedupKeyLTE applies the LTE predicate on the "dedup_key" field.

func DedupKeyNEQ

func DedupKeyNEQ(v string) predicate.AgentRawEvent

DedupKeyNEQ applies the NEQ predicate on the "dedup_key" field.

func DedupKeyNotIn

func DedupKeyNotIn(vs ...string) predicate.AgentRawEvent

DedupKeyNotIn applies the NotIn predicate on the "dedup_key" field.

func HasAgent

func HasAgent() predicate.AgentRawEvent

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

func HasAgentRun

func HasAgentRun() predicate.AgentRawEvent

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

func HasAgentRunWith

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

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

func HasAgentWith

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

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

func HasProject

func HasProject() predicate.AgentRawEvent

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

func HasProjectWith

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

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

func HasTicket

func HasTicket() predicate.AgentRawEvent

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

func HasTicketWith

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

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

func IDGTE(id uuid.UUID) predicate.AgentRawEvent

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...uuid.UUID) predicate.AgentRawEvent

IDIn applies the In predicate on the ID field.

func IDLT

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id uuid.UUID) predicate.AgentRawEvent

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id uuid.UUID) predicate.AgentRawEvent

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Not

Not applies the not operator on the given predicate.

func OccurredAt

func OccurredAt(v time.Time) predicate.AgentRawEvent

OccurredAt applies equality check predicate on the "occurred_at" field. It's identical to OccurredAtEQ.

func OccurredAtEQ

func OccurredAtEQ(v time.Time) predicate.AgentRawEvent

OccurredAtEQ applies the EQ predicate on the "occurred_at" field.

func OccurredAtGT

func OccurredAtGT(v time.Time) predicate.AgentRawEvent

OccurredAtGT applies the GT predicate on the "occurred_at" field.

func OccurredAtGTE

func OccurredAtGTE(v time.Time) predicate.AgentRawEvent

OccurredAtGTE applies the GTE predicate on the "occurred_at" field.

func OccurredAtIn

func OccurredAtIn(vs ...time.Time) predicate.AgentRawEvent

OccurredAtIn applies the In predicate on the "occurred_at" field.

func OccurredAtLT

func OccurredAtLT(v time.Time) predicate.AgentRawEvent

OccurredAtLT applies the LT predicate on the "occurred_at" field.

func OccurredAtLTE

func OccurredAtLTE(v time.Time) predicate.AgentRawEvent

OccurredAtLTE applies the LTE predicate on the "occurred_at" field.

func OccurredAtNEQ

func OccurredAtNEQ(v time.Time) predicate.AgentRawEvent

OccurredAtNEQ applies the NEQ predicate on the "occurred_at" field.

func OccurredAtNotIn

func OccurredAtNotIn(vs ...time.Time) predicate.AgentRawEvent

OccurredAtNotIn applies the NotIn predicate on the "occurred_at" field.

func Or

Or groups predicates with the OR operator between them.

func ProjectID

func ProjectID(v uuid.UUID) predicate.AgentRawEvent

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

func ProjectIDEQ

func ProjectIDEQ(v uuid.UUID) predicate.AgentRawEvent

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

func ProjectIDIn

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

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

func ProjectIDNEQ

func ProjectIDNEQ(v uuid.UUID) predicate.AgentRawEvent

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

func ProjectIDNotIn

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

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

func Provider

func Provider(v string) predicate.AgentRawEvent

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

func ProviderContains

func ProviderContains(v string) predicate.AgentRawEvent

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

func ProviderContainsFold

func ProviderContainsFold(v string) predicate.AgentRawEvent

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

func ProviderEQ

func ProviderEQ(v string) predicate.AgentRawEvent

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

func ProviderEqualFold

func ProviderEqualFold(v string) predicate.AgentRawEvent

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

func ProviderEventID

func ProviderEventID(v string) predicate.AgentRawEvent

ProviderEventID applies equality check predicate on the "provider_event_id" field. It's identical to ProviderEventIDEQ.

func ProviderEventIDContains

func ProviderEventIDContains(v string) predicate.AgentRawEvent

ProviderEventIDContains applies the Contains predicate on the "provider_event_id" field.

func ProviderEventIDContainsFold

func ProviderEventIDContainsFold(v string) predicate.AgentRawEvent

ProviderEventIDContainsFold applies the ContainsFold predicate on the "provider_event_id" field.

func ProviderEventIDEQ

func ProviderEventIDEQ(v string) predicate.AgentRawEvent

ProviderEventIDEQ applies the EQ predicate on the "provider_event_id" field.

func ProviderEventIDEqualFold

func ProviderEventIDEqualFold(v string) predicate.AgentRawEvent

ProviderEventIDEqualFold applies the EqualFold predicate on the "provider_event_id" field.

func ProviderEventIDGT

func ProviderEventIDGT(v string) predicate.AgentRawEvent

ProviderEventIDGT applies the GT predicate on the "provider_event_id" field.

func ProviderEventIDGTE

func ProviderEventIDGTE(v string) predicate.AgentRawEvent

ProviderEventIDGTE applies the GTE predicate on the "provider_event_id" field.

func ProviderEventIDHasPrefix

func ProviderEventIDHasPrefix(v string) predicate.AgentRawEvent

ProviderEventIDHasPrefix applies the HasPrefix predicate on the "provider_event_id" field.

func ProviderEventIDHasSuffix

func ProviderEventIDHasSuffix(v string) predicate.AgentRawEvent

ProviderEventIDHasSuffix applies the HasSuffix predicate on the "provider_event_id" field.

func ProviderEventIDIn

func ProviderEventIDIn(vs ...string) predicate.AgentRawEvent

ProviderEventIDIn applies the In predicate on the "provider_event_id" field.

func ProviderEventIDIsNil

func ProviderEventIDIsNil() predicate.AgentRawEvent

ProviderEventIDIsNil applies the IsNil predicate on the "provider_event_id" field.

func ProviderEventIDLT

func ProviderEventIDLT(v string) predicate.AgentRawEvent

ProviderEventIDLT applies the LT predicate on the "provider_event_id" field.

func ProviderEventIDLTE

func ProviderEventIDLTE(v string) predicate.AgentRawEvent

ProviderEventIDLTE applies the LTE predicate on the "provider_event_id" field.

func ProviderEventIDNEQ

func ProviderEventIDNEQ(v string) predicate.AgentRawEvent

ProviderEventIDNEQ applies the NEQ predicate on the "provider_event_id" field.

func ProviderEventIDNotIn

func ProviderEventIDNotIn(vs ...string) predicate.AgentRawEvent

ProviderEventIDNotIn applies the NotIn predicate on the "provider_event_id" field.

func ProviderEventIDNotNil

func ProviderEventIDNotNil() predicate.AgentRawEvent

ProviderEventIDNotNil applies the NotNil predicate on the "provider_event_id" field.

func ProviderEventKind

func ProviderEventKind(v string) predicate.AgentRawEvent

ProviderEventKind applies equality check predicate on the "provider_event_kind" field. It's identical to ProviderEventKindEQ.

func ProviderEventKindContains

func ProviderEventKindContains(v string) predicate.AgentRawEvent

ProviderEventKindContains applies the Contains predicate on the "provider_event_kind" field.

func ProviderEventKindContainsFold

func ProviderEventKindContainsFold(v string) predicate.AgentRawEvent

ProviderEventKindContainsFold applies the ContainsFold predicate on the "provider_event_kind" field.

func ProviderEventKindEQ

func ProviderEventKindEQ(v string) predicate.AgentRawEvent

ProviderEventKindEQ applies the EQ predicate on the "provider_event_kind" field.

func ProviderEventKindEqualFold

func ProviderEventKindEqualFold(v string) predicate.AgentRawEvent

ProviderEventKindEqualFold applies the EqualFold predicate on the "provider_event_kind" field.

func ProviderEventKindGT

func ProviderEventKindGT(v string) predicate.AgentRawEvent

ProviderEventKindGT applies the GT predicate on the "provider_event_kind" field.

func ProviderEventKindGTE

func ProviderEventKindGTE(v string) predicate.AgentRawEvent

ProviderEventKindGTE applies the GTE predicate on the "provider_event_kind" field.

func ProviderEventKindHasPrefix

func ProviderEventKindHasPrefix(v string) predicate.AgentRawEvent

ProviderEventKindHasPrefix applies the HasPrefix predicate on the "provider_event_kind" field.

func ProviderEventKindHasSuffix

func ProviderEventKindHasSuffix(v string) predicate.AgentRawEvent

ProviderEventKindHasSuffix applies the HasSuffix predicate on the "provider_event_kind" field.

func ProviderEventKindIn

func ProviderEventKindIn(vs ...string) predicate.AgentRawEvent

ProviderEventKindIn applies the In predicate on the "provider_event_kind" field.

func ProviderEventKindLT

func ProviderEventKindLT(v string) predicate.AgentRawEvent

ProviderEventKindLT applies the LT predicate on the "provider_event_kind" field.

func ProviderEventKindLTE

func ProviderEventKindLTE(v string) predicate.AgentRawEvent

ProviderEventKindLTE applies the LTE predicate on the "provider_event_kind" field.

func ProviderEventKindNEQ

func ProviderEventKindNEQ(v string) predicate.AgentRawEvent

ProviderEventKindNEQ applies the NEQ predicate on the "provider_event_kind" field.

func ProviderEventKindNotIn

func ProviderEventKindNotIn(vs ...string) predicate.AgentRawEvent

ProviderEventKindNotIn applies the NotIn predicate on the "provider_event_kind" field.

func ProviderEventSubtype

func ProviderEventSubtype(v string) predicate.AgentRawEvent

ProviderEventSubtype applies equality check predicate on the "provider_event_subtype" field. It's identical to ProviderEventSubtypeEQ.

func ProviderEventSubtypeContains

func ProviderEventSubtypeContains(v string) predicate.AgentRawEvent

ProviderEventSubtypeContains applies the Contains predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeContainsFold

func ProviderEventSubtypeContainsFold(v string) predicate.AgentRawEvent

ProviderEventSubtypeContainsFold applies the ContainsFold predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeEQ

func ProviderEventSubtypeEQ(v string) predicate.AgentRawEvent

ProviderEventSubtypeEQ applies the EQ predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeEqualFold

func ProviderEventSubtypeEqualFold(v string) predicate.AgentRawEvent

ProviderEventSubtypeEqualFold applies the EqualFold predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeGT

func ProviderEventSubtypeGT(v string) predicate.AgentRawEvent

ProviderEventSubtypeGT applies the GT predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeGTE

func ProviderEventSubtypeGTE(v string) predicate.AgentRawEvent

ProviderEventSubtypeGTE applies the GTE predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeHasPrefix

func ProviderEventSubtypeHasPrefix(v string) predicate.AgentRawEvent

ProviderEventSubtypeHasPrefix applies the HasPrefix predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeHasSuffix

func ProviderEventSubtypeHasSuffix(v string) predicate.AgentRawEvent

ProviderEventSubtypeHasSuffix applies the HasSuffix predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeIn

func ProviderEventSubtypeIn(vs ...string) predicate.AgentRawEvent

ProviderEventSubtypeIn applies the In predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeIsNil

func ProviderEventSubtypeIsNil() predicate.AgentRawEvent

ProviderEventSubtypeIsNil applies the IsNil predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeLT

func ProviderEventSubtypeLT(v string) predicate.AgentRawEvent

ProviderEventSubtypeLT applies the LT predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeLTE

func ProviderEventSubtypeLTE(v string) predicate.AgentRawEvent

ProviderEventSubtypeLTE applies the LTE predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeNEQ

func ProviderEventSubtypeNEQ(v string) predicate.AgentRawEvent

ProviderEventSubtypeNEQ applies the NEQ predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeNotIn

func ProviderEventSubtypeNotIn(vs ...string) predicate.AgentRawEvent

ProviderEventSubtypeNotIn applies the NotIn predicate on the "provider_event_subtype" field.

func ProviderEventSubtypeNotNil

func ProviderEventSubtypeNotNil() predicate.AgentRawEvent

ProviderEventSubtypeNotNil applies the NotNil predicate on the "provider_event_subtype" field.

func ProviderGT

func ProviderGT(v string) predicate.AgentRawEvent

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

func ProviderGTE

func ProviderGTE(v string) predicate.AgentRawEvent

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

func ProviderHasPrefix

func ProviderHasPrefix(v string) predicate.AgentRawEvent

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

func ProviderHasSuffix

func ProviderHasSuffix(v string) predicate.AgentRawEvent

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

func ProviderIn

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

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

func ProviderLT

func ProviderLT(v string) predicate.AgentRawEvent

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

func ProviderLTE

func ProviderLTE(v string) predicate.AgentRawEvent

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

func ProviderNEQ

func ProviderNEQ(v string) predicate.AgentRawEvent

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

func ProviderNotIn

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

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

func TextExcerpt

func TextExcerpt(v string) predicate.AgentRawEvent

TextExcerpt applies equality check predicate on the "text_excerpt" field. It's identical to TextExcerptEQ.

func TextExcerptContains

func TextExcerptContains(v string) predicate.AgentRawEvent

TextExcerptContains applies the Contains predicate on the "text_excerpt" field.

func TextExcerptContainsFold

func TextExcerptContainsFold(v string) predicate.AgentRawEvent

TextExcerptContainsFold applies the ContainsFold predicate on the "text_excerpt" field.

func TextExcerptEQ

func TextExcerptEQ(v string) predicate.AgentRawEvent

TextExcerptEQ applies the EQ predicate on the "text_excerpt" field.

func TextExcerptEqualFold

func TextExcerptEqualFold(v string) predicate.AgentRawEvent

TextExcerptEqualFold applies the EqualFold predicate on the "text_excerpt" field.

func TextExcerptGT

func TextExcerptGT(v string) predicate.AgentRawEvent

TextExcerptGT applies the GT predicate on the "text_excerpt" field.

func TextExcerptGTE

func TextExcerptGTE(v string) predicate.AgentRawEvent

TextExcerptGTE applies the GTE predicate on the "text_excerpt" field.

func TextExcerptHasPrefix

func TextExcerptHasPrefix(v string) predicate.AgentRawEvent

TextExcerptHasPrefix applies the HasPrefix predicate on the "text_excerpt" field.

func TextExcerptHasSuffix

func TextExcerptHasSuffix(v string) predicate.AgentRawEvent

TextExcerptHasSuffix applies the HasSuffix predicate on the "text_excerpt" field.

func TextExcerptIn

func TextExcerptIn(vs ...string) predicate.AgentRawEvent

TextExcerptIn applies the In predicate on the "text_excerpt" field.

func TextExcerptIsNil

func TextExcerptIsNil() predicate.AgentRawEvent

TextExcerptIsNil applies the IsNil predicate on the "text_excerpt" field.

func TextExcerptLT

func TextExcerptLT(v string) predicate.AgentRawEvent

TextExcerptLT applies the LT predicate on the "text_excerpt" field.

func TextExcerptLTE

func TextExcerptLTE(v string) predicate.AgentRawEvent

TextExcerptLTE applies the LTE predicate on the "text_excerpt" field.

func TextExcerptNEQ

func TextExcerptNEQ(v string) predicate.AgentRawEvent

TextExcerptNEQ applies the NEQ predicate on the "text_excerpt" field.

func TextExcerptNotIn

func TextExcerptNotIn(vs ...string) predicate.AgentRawEvent

TextExcerptNotIn applies the NotIn predicate on the "text_excerpt" field.

func TextExcerptNotNil

func TextExcerptNotNil() predicate.AgentRawEvent

TextExcerptNotNil applies the NotNil predicate on the "text_excerpt" field.

func ThreadID

func ThreadID(v string) predicate.AgentRawEvent

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

func ThreadIDContains

func ThreadIDContains(v string) predicate.AgentRawEvent

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

func ThreadIDContainsFold

func ThreadIDContainsFold(v string) predicate.AgentRawEvent

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

func ThreadIDEQ

func ThreadIDEQ(v string) predicate.AgentRawEvent

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

func ThreadIDEqualFold

func ThreadIDEqualFold(v string) predicate.AgentRawEvent

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

func ThreadIDGT

func ThreadIDGT(v string) predicate.AgentRawEvent

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

func ThreadIDGTE

func ThreadIDGTE(v string) predicate.AgentRawEvent

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

func ThreadIDHasPrefix

func ThreadIDHasPrefix(v string) predicate.AgentRawEvent

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

func ThreadIDHasSuffix

func ThreadIDHasSuffix(v string) predicate.AgentRawEvent

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

func ThreadIDIn

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

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

func ThreadIDIsNil

func ThreadIDIsNil() predicate.AgentRawEvent

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

func ThreadIDLT

func ThreadIDLT(v string) predicate.AgentRawEvent

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

func ThreadIDLTE

func ThreadIDLTE(v string) predicate.AgentRawEvent

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

func ThreadIDNEQ

func ThreadIDNEQ(v string) predicate.AgentRawEvent

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

func ThreadIDNotIn

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

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

func ThreadIDNotNil

func ThreadIDNotNil() predicate.AgentRawEvent

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

func TicketID

func TicketID(v uuid.UUID) predicate.AgentRawEvent

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

func TicketIDEQ

func TicketIDEQ(v uuid.UUID) predicate.AgentRawEvent

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

func TicketIDIn

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

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

func TicketIDIsNil

func TicketIDIsNil() predicate.AgentRawEvent

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

func TicketIDNEQ

func TicketIDNEQ(v uuid.UUID) predicate.AgentRawEvent

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

func TicketIDNotIn

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

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

func TicketIDNotNil

func TicketIDNotNil() predicate.AgentRawEvent

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

func TurnID

func TurnID(v string) predicate.AgentRawEvent

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

func TurnIDContains

func TurnIDContains(v string) predicate.AgentRawEvent

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

func TurnIDContainsFold

func TurnIDContainsFold(v string) predicate.AgentRawEvent

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

func TurnIDEQ

func TurnIDEQ(v string) predicate.AgentRawEvent

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

func TurnIDEqualFold

func TurnIDEqualFold(v string) predicate.AgentRawEvent

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

func TurnIDGT

func TurnIDGT(v string) predicate.AgentRawEvent

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

func TurnIDGTE

func TurnIDGTE(v string) predicate.AgentRawEvent

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

func TurnIDHasPrefix

func TurnIDHasPrefix(v string) predicate.AgentRawEvent

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

func TurnIDHasSuffix

func TurnIDHasSuffix(v string) predicate.AgentRawEvent

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

func TurnIDIn

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

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

func TurnIDIsNil

func TurnIDIsNil() predicate.AgentRawEvent

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

func TurnIDLT

func TurnIDLT(v string) predicate.AgentRawEvent

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

func TurnIDLTE

func TurnIDLTE(v string) predicate.AgentRawEvent

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

func TurnIDNEQ

func TurnIDNEQ(v string) predicate.AgentRawEvent

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

func TurnIDNotIn

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

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

func TurnIDNotNil

func TurnIDNotNil() predicate.AgentRawEvent

TurnIDNotNil applies the NotNil predicate on the "turn_id" 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 AgentRawEvent queries.

func ByActivityHintID

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

ByActivityHintID orders the results by the activity_hint_id 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 ByCreatedAt

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

ByCreatedAt orders the results by the created_at field.

func ByDedupKey

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

ByDedupKey orders the results by the dedup_key field.

func ByID

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

ByID orders the results by the id field.

func ByOccurredAt

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

ByOccurredAt orders the results by the occurred_at 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 ByProviderEventID

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

ByProviderEventID orders the results by the provider_event_id field.

func ByProviderEventKind

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

ByProviderEventKind orders the results by the provider_event_kind field.

func ByProviderEventSubtype

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

ByProviderEventSubtype orders the results by the provider_event_subtype field.

func ByTextExcerpt

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

ByTextExcerpt orders the results by the text_excerpt 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 ByTurnID

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

ByTurnID orders the results by the turn_id field.

Jump to

Keyboard shortcuts

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