nemdb

package
v1.0.40 Latest Latest
Warning

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

Go to latest
Published: Nov 13, 2025 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AiUsage added in v1.0.38

type AiUsage struct {
	UUID               string    `json:"uuid"`
	UserUUID           string    `json:"user_uuid"`
	ProjectUUID        string    `json:"project_uuid"`
	ProjectVersionUUID string    `json:"project_version_uuid"`
	UserPrompt         string    `json:"user_prompt"`
	Step               string    `json:"step"`
	Context            int64     `json:"context"`
	Provider           int64     `json:"provider"`
	InputTokens        int64     `json:"input_tokens"`
	OutputTokens       int64     `json:"output_tokens"`
	Status             int64     `json:"status"`
	CreatedAt          time.Time `json:"created_at"`
	UpdatedAt          time.Time `json:"updated_at"`
	CreatedByUUID      string    `json:"created_by_uuid"`
	UpdatedByUUID      string    `json:"updated_by_uuid"`
}

type ChangeRequest

type ChangeRequest struct {
	UUID               string         `json:"uuid"`
	Version            int64          `json:"version"`
	Title              string         `json:"title"`
	Description        sql.NullString `json:"description"`
	ProjectUUID        string         `json:"project_uuid"`
	ProjectVersionUUID string         `json:"project_version_uuid"`
	ChangeType         int64          `json:"change_type"`
	DataChanges        []byte         `json:"data_changes"`
	Metadata           []byte         `json:"metadata"`
	Reviews            []byte         `json:"reviews"`
	ReviewStatus       int64          `json:"review_status"`
	OwnerUUID          string         `json:"owner_uuid"`
	Status             int64          `json:"status"`
	CreatedAt          time.Time      `json:"created_at"`
	UpdatedAt          time.Time      `json:"updated_at"`
	CreatedByUUID      string         `json:"created_by_uuid"`
	UpdatedByUUID      string         `json:"updated_by_uuid"`
}

type DBTX

type DBTX interface {
	ExecContext(context.Context, string, ...interface{}) (sql.Result, error)
	PrepareContext(context.Context, string) (*sql.Stmt, error)
	QueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)
	QueryRowContext(context.Context, string, ...interface{}) *sql.Row
}

type Extension

type Extension struct {
	UUID              string         `json:"uuid"`
	Version           int64          `json:"version"`
	Identifier        string         `json:"identifier"`
	DisplayName       sql.NullString `json:"display_name"`
	DisplayAuthorName sql.NullString `json:"display_author_name"`
	Description       sql.NullString `json:"description"`
	URL               sql.NullString `json:"url"`
	Verfied           bool           `json:"verfied"`
	Repository        string         `json:"repository"`
	ExtensionType     int64          `json:"extension_type"`
	Tags              []byte         `json:"tags"`
	Public            bool           `json:"public"`
	Visibility        []byte         `json:"visibility"`
	Status            int64          `json:"status"`
	OwnerUUID         string         `json:"owner_uuid"`
	CreatedAt         time.Time      `json:"created_at"`
	UpdatedAt         time.Time      `json:"updated_at"`
	CreatedByUUID     string         `json:"created_by_uuid"`
	UpdatedByUUID     string         `json:"updated_by_uuid"`
}

type ExtensionExecution

type ExtensionExecution struct {
	UUID                 string         `json:"uuid"`
	ExtensionUUID        string         `json:"extension_uuid"`
	ExtensionVersionUUID string         `json:"extension_version_uuid"`
	ProjectExtensionUUID sql.NullString `json:"project_extension_uuid"`
	ProjectUUID          string         `json:"project_uuid"`
	ProjectVersionUUID   string         `json:"project_version_uuid"`
	ExecutedByUUID       string         `json:"executed_by_uuid"`
	Metadata             []byte         `json:"metadata"`
	Status               int64          `json:"status"`
	StatusMsg            sql.NullString `json:"status_msg"`
	CreatedAt            time.Time      `json:"created_at"`
	UpdatedAt            time.Time      `json:"updated_at"`
}

type ExtensionVersion

type ExtensionVersion struct {
	UUID                string          `json:"uuid"`
	Version             int64           `json:"version"`
	ExtensionUUID       string          `json:"extension_uuid"`
	DisplayVersion      sql.NullString  `json:"display_version"`
	Description         sql.NullString  `json:"description"`
	RepositoryTag       string          `json:"repository_tag"`
	ConfigurationEntity []byte          `json:"configuration_entity"`
	ExecutionMode       json.RawMessage `json:"execution_mode"`
	ReviewStatus        int64           `json:"review_status"`
	Status              int64           `json:"status"`
	CreatedAt           time.Time       `json:"created_at"`
	UpdatedAt           time.Time       `json:"updated_at"`
	CreatedByUUID       string          `json:"created_by_uuid"`
	UpdatedByUUID       string          `json:"updated_by_uuid"`
}

type FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtASCParams added in v1.0.38

type FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtASCParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtDESCParams added in v1.0.38

type FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtDESCParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtASCParams added in v1.0.38

type FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtASCParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtDESCParams added in v1.0.38

type FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtDESCParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderAndStatusParams added in v1.0.38

type FetchAiUsageByContextAndProviderAndStatusParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderOrderedByCreatedAtASCParams added in v1.0.38

type FetchAiUsageByContextAndProviderOrderedByCreatedAtASCParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderOrderedByCreatedAtDESCParams added in v1.0.38

type FetchAiUsageByContextAndProviderOrderedByCreatedAtDESCParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderOrderedByUpdatedAtASCParams added in v1.0.38

type FetchAiUsageByContextAndProviderOrderedByUpdatedAtASCParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderOrderedByUpdatedAtDESCParams added in v1.0.38

type FetchAiUsageByContextAndProviderOrderedByUpdatedAtDESCParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndProviderParams added in v1.0.38

type FetchAiUsageByContextAndProviderParams struct {
	Context  int64 `json:"context"`
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByContextAndStatusOrderedByCreatedAtASCParams added in v1.0.38

type FetchAiUsageByContextAndStatusOrderedByCreatedAtASCParams struct {
	Context int64 `json:"context"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextAndStatusOrderedByCreatedAtDESCParams added in v1.0.38

type FetchAiUsageByContextAndStatusOrderedByCreatedAtDESCParams struct {
	Context int64 `json:"context"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextAndStatusOrderedByUpdatedAtASCParams added in v1.0.38

type FetchAiUsageByContextAndStatusOrderedByUpdatedAtASCParams struct {
	Context int64 `json:"context"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextAndStatusOrderedByUpdatedAtDESCParams added in v1.0.38

type FetchAiUsageByContextAndStatusOrderedByUpdatedAtDESCParams struct {
	Context int64 `json:"context"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextAndStatusParams added in v1.0.38

type FetchAiUsageByContextAndStatusParams struct {
	Context int64 `json:"context"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextOrderedByCreatedAtASCParams added in v1.0.38

type FetchAiUsageByContextOrderedByCreatedAtASCParams struct {
	Context int64 `json:"context"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextOrderedByCreatedAtDESCParams added in v1.0.38

type FetchAiUsageByContextOrderedByCreatedAtDESCParams struct {
	Context int64 `json:"context"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextOrderedByUpdatedAtASCParams added in v1.0.38

type FetchAiUsageByContextOrderedByUpdatedAtASCParams struct {
	Context int64 `json:"context"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextOrderedByUpdatedAtDESCParams added in v1.0.38

type FetchAiUsageByContextOrderedByUpdatedAtDESCParams struct {
	Context int64 `json:"context"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByContextParams added in v1.0.38

type FetchAiUsageByContextParams struct {
	Context int64 `json:"context"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchAiUsageByProviderAndStatusOrderedByCreatedAtASCParams added in v1.0.38

type FetchAiUsageByProviderAndStatusOrderedByCreatedAtASCParams struct {
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderAndStatusOrderedByCreatedAtDESCParams added in v1.0.38

type FetchAiUsageByProviderAndStatusOrderedByCreatedAtDESCParams struct {
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderAndStatusOrderedByUpdatedAtASCParams added in v1.0.38

type FetchAiUsageByProviderAndStatusOrderedByUpdatedAtASCParams struct {
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderAndStatusOrderedByUpdatedAtDESCParams added in v1.0.38

type FetchAiUsageByProviderAndStatusOrderedByUpdatedAtDESCParams struct {
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderAndStatusParams added in v1.0.38

type FetchAiUsageByProviderAndStatusParams struct {
	Provider int64 `json:"provider"`
	Status   int64 `json:"status"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderOrderedByCreatedAtASCParams added in v1.0.38

type FetchAiUsageByProviderOrderedByCreatedAtASCParams struct {
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderOrderedByCreatedAtDESCParams added in v1.0.38

type FetchAiUsageByProviderOrderedByCreatedAtDESCParams struct {
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderOrderedByUpdatedAtASCParams added in v1.0.38

type FetchAiUsageByProviderOrderedByUpdatedAtASCParams struct {
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderOrderedByUpdatedAtDESCParams added in v1.0.38

type FetchAiUsageByProviderOrderedByUpdatedAtDESCParams struct {
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByProviderParams added in v1.0.38

type FetchAiUsageByProviderParams struct {
	Provider int64 `json:"provider"`
	Offset   int32 `json:"offset"`
	Limit    int32 `json:"limit"`
}

type FetchAiUsageByStatusOrderedByCreatedAtASCParams added in v1.0.38

type FetchAiUsageByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchAiUsageByStatusOrderedByCreatedAtDESCParams added in v1.0.38

type FetchAiUsageByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchAiUsageByStatusOrderedByUpdatedAtASCParams added in v1.0.38

type FetchAiUsageByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchAiUsageByStatusOrderedByUpdatedAtDESCParams added in v1.0.38

type FetchAiUsageByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchAiUsageByStatusParams added in v1.0.38

type FetchAiUsageByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASCParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESCParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASCParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusAndStatusParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtASCParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtDESCParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtASCParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtDESCParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndReviewStatusParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndReviewStatusParams struct {
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtASCParams struct {
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtDESCParams struct {
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtASCParams struct {
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeAndStatusParams added in v1.0.20

type FetchChangeRequestByChangeTypeAndStatusParams struct {
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByChangeTypeOrderedByCreatedAtASCParams struct {
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByChangeTypeOrderedByCreatedAtDESCParams struct {
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByChangeTypeOrderedByUpdatedAtASCParams struct {
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByChangeTypeOrderedByUpdatedAtDESCParams struct {
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByChangeTypeParams added in v1.0.20

type FetchChangeRequestByChangeTypeParams struct {
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtASCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtDESCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtASCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtDESCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusAndStatusParams added in v1.0.20

type FetchChangeRequestByReviewStatusAndStatusParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByReviewStatusOrderedByCreatedAtASCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByReviewStatusOrderedByCreatedAtDESCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByReviewStatusOrderedByUpdatedAtASCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByReviewStatusOrderedByUpdatedAtDESCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByReviewStatusParams added in v1.0.20

type FetchChangeRequestByReviewStatusParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByStatusOrderedByCreatedAtASCParams

type FetchChangeRequestByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchChangeRequestByStatusOrderedByCreatedAtDESCParams

type FetchChangeRequestByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchChangeRequestByStatusOrderedByUpdatedAtASCParams

type FetchChangeRequestByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchChangeRequestByStatusOrderedByUpdatedAtDESCParams

type FetchChangeRequestByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchChangeRequestByStatusParams

type FetchChangeRequestByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASCParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASCParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtASCParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtASCParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndReviewStatusParams struct {
	Version      int64 `json:"version"`
	ChangeType   int64 `json:"change_type"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtASCParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeAndStatusParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeAndStatusParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Status     int64 `json:"status"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtASCParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtDESCParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtASCParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtDESCParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndChangeTypeParams added in v1.0.20

type FetchChangeRequestByVersionAndChangeTypeParams struct {
	Version    int64 `json:"version"`
	ChangeType int64 `json:"change_type"`
	Offset     int32 `json:"offset"`
	Limit      int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtASCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusAndStatusParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusAndStatusParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtASCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtASCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndReviewStatusParams added in v1.0.20

type FetchChangeRequestByVersionAndReviewStatusParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndStatusOrderedByCreatedAtASCParams

type FetchChangeRequestByVersionAndStatusOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndStatusOrderedByCreatedAtDESCParams

type FetchChangeRequestByVersionAndStatusOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtASCParams

type FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtDESCParams

type FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionAndStatusParams

type FetchChangeRequestByVersionAndStatusParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionOrderedByCreatedAtASCParams

type FetchChangeRequestByVersionOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionOrderedByCreatedAtDESCParams

type FetchChangeRequestByVersionOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionOrderedByUpdatedAtASCParams

type FetchChangeRequestByVersionOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionOrderedByUpdatedAtDESCParams

type FetchChangeRequestByVersionOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchChangeRequestByVersionParams

type FetchChangeRequestByVersionParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicAndStatusParams

type FetchExtensionByExtensionTypeAndPublicAndStatusParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtASCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtDESCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtASCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtDESCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndPublicParams

type FetchExtensionByExtensionTypeAndPublicParams struct {
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtASCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtDESCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtASCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeAndStatusParams

type FetchExtensionByExtensionTypeAndStatusParams struct {
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeOrderedByCreatedAtASCParams

type FetchExtensionByExtensionTypeOrderedByCreatedAtASCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeOrderedByCreatedAtDESCParams

type FetchExtensionByExtensionTypeOrderedByCreatedAtDESCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeOrderedByUpdatedAtASCParams

type FetchExtensionByExtensionTypeOrderedByUpdatedAtASCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeOrderedByUpdatedAtDESCParams

type FetchExtensionByExtensionTypeOrderedByUpdatedAtDESCParams struct {
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByExtensionTypeParams

type FetchExtensionByExtensionTypeParams struct {
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndPublicParams

type FetchExtensionByIdentifierAndExtensionTypeAndPublicParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeAndStatusParams

type FetchExtensionByIdentifierAndExtensionTypeAndStatusParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndExtensionTypeParams

type FetchExtensionByIdentifierAndExtensionTypeParams struct {
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicAndStatusParams

type FetchExtensionByIdentifierAndPublicAndStatusParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndPublicOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndPublicOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndPublicParams

type FetchExtensionByIdentifierAndPublicParams struct {
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeParams

type FetchExtensionByIdentifierAndRepositoryAndExtensionTypeParams struct {
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusParams

type FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndPublicParams

type FetchExtensionByIdentifierAndRepositoryAndPublicParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryAndStatusParams

type FetchExtensionByIdentifierAndRepositoryAndStatusParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndRepositoryParams

type FetchExtensionByIdentifierAndRepositoryParams struct {
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierAndStatusOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierAndStatusParams

type FetchExtensionByIdentifierAndStatusParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierOrderedByCreatedAtASCParams

type FetchExtensionByIdentifierOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierOrderedByCreatedAtDESCParams

type FetchExtensionByIdentifierOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierOrderedByUpdatedAtASCParams

type FetchExtensionByIdentifierOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierOrderedByUpdatedAtDESCParams

type FetchExtensionByIdentifierOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByIdentifierParams

type FetchExtensionByIdentifierParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByPublicAndStatusOrderedByCreatedAtASCParams struct {
	Public bool  `json:"public"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Public bool  `json:"public"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Public bool  `json:"public"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Public bool  `json:"public"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicAndStatusParams

type FetchExtensionByPublicAndStatusParams struct {
	Public bool  `json:"public"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicOrderedByCreatedAtASCParams

type FetchExtensionByPublicOrderedByCreatedAtASCParams struct {
	Public bool  `json:"public"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicOrderedByCreatedAtDESCParams

type FetchExtensionByPublicOrderedByCreatedAtDESCParams struct {
	Public bool  `json:"public"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicOrderedByUpdatedAtASCParams

type FetchExtensionByPublicOrderedByUpdatedAtASCParams struct {
	Public bool  `json:"public"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByPublicOrderedByUpdatedAtDESCParams struct {
	Public bool  `json:"public"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByPublicParams

type FetchExtensionByPublicParams struct {
	Public bool  `json:"public"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndPublicParams

type FetchExtensionByRepositoryAndExtensionTypeAndPublicParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeAndStatusParams

type FetchExtensionByRepositoryAndExtensionTypeAndStatusParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtASCParams

type FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtASCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams

type FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams

type FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams

type FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndExtensionTypeParams

type FetchExtensionByRepositoryAndExtensionTypeParams struct {
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicAndStatusParams

type FetchExtensionByRepositoryAndPublicAndStatusParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByRepositoryAndPublicOrderedByCreatedAtASCParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByRepositoryAndPublicOrderedByCreatedAtDESCParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtASCParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtDESCParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndPublicParams

type FetchExtensionByRepositoryAndPublicParams struct {
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByRepositoryAndStatusOrderedByCreatedAtASCParams struct {
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByRepositoryAndStatusOrderedByCreatedAtDESCParams struct {
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtASCParams struct {
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtDESCParams struct {
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryAndStatusParams

type FetchExtensionByRepositoryAndStatusParams struct {
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryOrderedByCreatedAtASCParams

type FetchExtensionByRepositoryOrderedByCreatedAtASCParams struct {
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryOrderedByCreatedAtDESCParams

type FetchExtensionByRepositoryOrderedByCreatedAtDESCParams struct {
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryOrderedByUpdatedAtASCParams

type FetchExtensionByRepositoryOrderedByUpdatedAtASCParams struct {
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryOrderedByUpdatedAtDESCParams

type FetchExtensionByRepositoryOrderedByUpdatedAtDESCParams struct {
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByRepositoryParams

type FetchExtensionByRepositoryParams struct {
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByStatusOrderedByCreatedAtASCParams

type FetchExtensionByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByStatusOrderedByCreatedAtDESCParams

type FetchExtensionByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByStatusOrderedByUpdatedAtASCParams

type FetchExtensionByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByStatusParams

type FetchExtensionByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusParams

type FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByCreatedAtASCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndPublicParams

type FetchExtensionByVersionAndExtensionTypeAndPublicParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Public        bool  `json:"public"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByCreatedAtASCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeAndStatusParams

type FetchExtensionByVersionAndExtensionTypeAndStatusParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Status        int64 `json:"status"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtASCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtDESCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtASCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtDESCParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndExtensionTypeParams

type FetchExtensionByVersionAndExtensionTypeParams struct {
	Version       int64 `json:"version"`
	ExtensionType int64 `json:"extension_type"`
	Offset        int32 `json:"offset"`
	Limit         int32 `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndExtensionTypeParams

type FetchExtensionByVersionAndIdentifierAndExtensionTypeParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusParams

type FetchExtensionByVersionAndIdentifierAndPublicAndStatusParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndPublicParams

type FetchExtensionByVersionAndIdentifierAndPublicParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeParams struct {
	Version       int64  `json:"version"`
	Identifier    string `json:"identifier"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusParams

type FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndRepositoryParams

type FetchExtensionByVersionAndIdentifierAndRepositoryParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierAndStatusParams

type FetchExtensionByVersionAndIdentifierAndStatusParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndIdentifierOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndIdentifierOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndIdentifierParams

type FetchExtensionByVersionAndIdentifierParams struct {
	Version    int64  `json:"version"`
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicAndStatusParams

type FetchExtensionByVersionAndPublicAndStatusParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndPublicOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndPublicOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndPublicOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndPublicOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndPublicParams

type FetchExtensionByVersionAndPublicParams struct {
	Version int64 `json:"version"`
	Public  bool  `json:"public"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Public        bool   `json:"public"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Status        int64  `json:"status"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndExtensionTypeParams

type FetchExtensionByVersionAndRepositoryAndExtensionTypeParams struct {
	Version       int64  `json:"version"`
	Repository    string `json:"repository"`
	ExtensionType int64  `json:"extension_type"`
	Offset        int32  `json:"offset"`
	Limit         int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusParams

type FetchExtensionByVersionAndRepositoryAndPublicAndStatusParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndPublicParams

type FetchExtensionByVersionAndRepositoryAndPublicParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Public     bool   `json:"public"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryAndStatusParams

type FetchExtensionByVersionAndRepositoryAndStatusParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndRepositoryOrderedByCreatedAtASCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndRepositoryOrderedByCreatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtASCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtDESCParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndRepositoryParams

type FetchExtensionByVersionAndRepositoryParams struct {
	Version    int64  `json:"version"`
	Repository string `json:"repository"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchExtensionByVersionAndStatusOrderedByCreatedAtASCParams

type FetchExtensionByVersionAndStatusOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionByVersionAndStatusOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionByVersionAndStatusOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionAndStatusOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionAndStatusParams

type FetchExtensionByVersionAndStatusParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionOrderedByCreatedAtASCParams

type FetchExtensionByVersionOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionOrderedByCreatedAtDESCParams

type FetchExtensionByVersionOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionOrderedByUpdatedAtASCParams

type FetchExtensionByVersionOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionOrderedByUpdatedAtDESCParams

type FetchExtensionByVersionOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionByVersionParams

type FetchExtensionByVersionParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionExecutionByStatusOrderedByCreatedAtASCParams

type FetchExtensionExecutionByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionExecutionByStatusOrderedByCreatedAtDESCParams

type FetchExtensionExecutionByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionExecutionByStatusOrderedByUpdatedAtASCParams

type FetchExtensionExecutionByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionExecutionByStatusOrderedByUpdatedAtDESCParams

type FetchExtensionExecutionByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionExecutionByStatusParams

type FetchExtensionExecutionByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionVersionByStatusOrderedByCreatedAtASCParams

type FetchExtensionVersionByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionVersionByStatusOrderedByCreatedAtDESCParams

type FetchExtensionVersionByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionVersionByStatusOrderedByUpdatedAtASCParams

type FetchExtensionVersionByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionVersionByStatusOrderedByUpdatedAtDESCParams

type FetchExtensionVersionByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionVersionByStatusParams

type FetchExtensionVersionByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchExtensionVersionByVersionAndStatusOrderedByCreatedAtASCParams

type FetchExtensionVersionByVersionAndStatusOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionAndStatusOrderedByCreatedAtDESCParams

type FetchExtensionVersionByVersionAndStatusOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionAndStatusOrderedByUpdatedAtASCParams

type FetchExtensionVersionByVersionAndStatusOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionAndStatusOrderedByUpdatedAtDESCParams

type FetchExtensionVersionByVersionAndStatusOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionAndStatusParams

type FetchExtensionVersionByVersionAndStatusParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionOrderedByCreatedAtASCParams

type FetchExtensionVersionByVersionOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionOrderedByCreatedAtDESCParams

type FetchExtensionVersionByVersionOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionOrderedByUpdatedAtASCParams

type FetchExtensionVersionByVersionOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionOrderedByUpdatedAtDESCParams

type FetchExtensionVersionByVersionOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchExtensionVersionByVersionParams

type FetchExtensionVersionByVersionParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchMembershipByStatusOrderedByCreatedAtASCParams added in v1.0.25

type FetchMembershipByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByStatusOrderedByCreatedAtDESCParams added in v1.0.25

type FetchMembershipByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByStatusOrderedByStartDateASCParams added in v1.0.25

type FetchMembershipByStatusOrderedByStartDateASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByStatusOrderedByStartDateDESCParams added in v1.0.25

type FetchMembershipByStatusOrderedByStartDateDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByStatusOrderedByUpdatedAtASCParams added in v1.0.25

type FetchMembershipByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByStatusOrderedByUpdatedAtDESCParams added in v1.0.25

type FetchMembershipByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByStatusParams added in v1.0.25

type FetchMembershipByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeAndStatusOrderedByCreatedAtASCParams added in v1.0.25

type FetchMembershipByTypeAndStatusOrderedByCreatedAtASCParams struct {
	Type   int64 `json:"type"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeAndStatusOrderedByCreatedAtDESCParams added in v1.0.25

type FetchMembershipByTypeAndStatusOrderedByCreatedAtDESCParams struct {
	Type   int64 `json:"type"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeAndStatusOrderedByStartDateASCParams added in v1.0.25

type FetchMembershipByTypeAndStatusOrderedByStartDateASCParams struct {
	Type   int64 `json:"type"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeAndStatusOrderedByStartDateDESCParams added in v1.0.25

type FetchMembershipByTypeAndStatusOrderedByStartDateDESCParams struct {
	Type   int64 `json:"type"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeAndStatusOrderedByUpdatedAtASCParams added in v1.0.25

type FetchMembershipByTypeAndStatusOrderedByUpdatedAtASCParams struct {
	Type   int64 `json:"type"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeAndStatusOrderedByUpdatedAtDESCParams added in v1.0.25

type FetchMembershipByTypeAndStatusOrderedByUpdatedAtDESCParams struct {
	Type   int64 `json:"type"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeAndStatusParams added in v1.0.25

type FetchMembershipByTypeAndStatusParams struct {
	Type   int64 `json:"type"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeOrderedByCreatedAtASCParams added in v1.0.25

type FetchMembershipByTypeOrderedByCreatedAtASCParams struct {
	Type   int64 `json:"type"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeOrderedByCreatedAtDESCParams added in v1.0.25

type FetchMembershipByTypeOrderedByCreatedAtDESCParams struct {
	Type   int64 `json:"type"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeOrderedByStartDateASCParams added in v1.0.25

type FetchMembershipByTypeOrderedByStartDateASCParams struct {
	Type   int64 `json:"type"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeOrderedByStartDateDESCParams added in v1.0.25

type FetchMembershipByTypeOrderedByStartDateDESCParams struct {
	Type   int64 `json:"type"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeOrderedByUpdatedAtASCParams added in v1.0.25

type FetchMembershipByTypeOrderedByUpdatedAtASCParams struct {
	Type   int64 `json:"type"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeOrderedByUpdatedAtDESCParams added in v1.0.25

type FetchMembershipByTypeOrderedByUpdatedAtDESCParams struct {
	Type   int64 `json:"type"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchMembershipByTypeParams added in v1.0.25

type FetchMembershipByTypeParams struct {
	Type   int64 `json:"type"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectByNameAndStatusOrderedByCreatedAtASCParams

type FetchProjectByNameAndStatusOrderedByCreatedAtASCParams struct {
	Name   string `json:"name"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameAndStatusOrderedByCreatedAtDESCParams

type FetchProjectByNameAndStatusOrderedByCreatedAtDESCParams struct {
	Name   string `json:"name"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameAndStatusOrderedByUpdatedAtASCParams

type FetchProjectByNameAndStatusOrderedByUpdatedAtASCParams struct {
	Name   string `json:"name"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameAndStatusOrderedByUpdatedAtDESCParams

type FetchProjectByNameAndStatusOrderedByUpdatedAtDESCParams struct {
	Name   string `json:"name"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameAndStatusParams

type FetchProjectByNameAndStatusParams struct {
	Name   string `json:"name"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameOrderedByCreatedAtASCParams

type FetchProjectByNameOrderedByCreatedAtASCParams struct {
	Name   string `json:"name"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameOrderedByCreatedAtDESCParams

type FetchProjectByNameOrderedByCreatedAtDESCParams struct {
	Name   string `json:"name"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameOrderedByUpdatedAtASCParams

type FetchProjectByNameOrderedByUpdatedAtASCParams struct {
	Name   string `json:"name"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameOrderedByUpdatedAtDESCParams

type FetchProjectByNameOrderedByUpdatedAtDESCParams struct {
	Name   string `json:"name"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByNameParams

type FetchProjectByNameParams struct {
	Name   string `json:"name"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchProjectByStatusOrderedByCreatedAtASCParams

type FetchProjectByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectByStatusOrderedByCreatedAtDESCParams

type FetchProjectByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectByStatusOrderedByUpdatedAtASCParams

type FetchProjectByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectByStatusOrderedByUpdatedAtDESCParams

type FetchProjectByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectByStatusParams

type FetchProjectByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtASCParams

type FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtASCParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Status  int64  `json:"status"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtDESCParams

type FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtDESCParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Status  int64  `json:"status"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtASCParams

type FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtASCParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Status  int64  `json:"status"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtDESCParams

type FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtDESCParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Status  int64  `json:"status"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameAndStatusParams

type FetchProjectByVersionAndNameAndStatusParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Status  int64  `json:"status"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameOrderedByCreatedAtASCParams

type FetchProjectByVersionAndNameOrderedByCreatedAtASCParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameOrderedByCreatedAtDESCParams

type FetchProjectByVersionAndNameOrderedByCreatedAtDESCParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameOrderedByUpdatedAtASCParams

type FetchProjectByVersionAndNameOrderedByUpdatedAtASCParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameOrderedByUpdatedAtDESCParams

type FetchProjectByVersionAndNameOrderedByUpdatedAtDESCParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndNameParams

type FetchProjectByVersionAndNameParams struct {
	Version int64  `json:"version"`
	Name    string `json:"name"`
	Offset  int32  `json:"offset"`
	Limit   int32  `json:"limit"`
}

type FetchProjectByVersionAndStatusOrderedByCreatedAtASCParams

type FetchProjectByVersionAndStatusOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionAndStatusOrderedByCreatedAtDESCParams

type FetchProjectByVersionAndStatusOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionAndStatusOrderedByUpdatedAtASCParams

type FetchProjectByVersionAndStatusOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionAndStatusOrderedByUpdatedAtDESCParams

type FetchProjectByVersionAndStatusOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionAndStatusParams

type FetchProjectByVersionAndStatusParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionOrderedByCreatedAtASCParams

type FetchProjectByVersionOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionOrderedByCreatedAtDESCParams

type FetchProjectByVersionOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionOrderedByUpdatedAtASCParams

type FetchProjectByVersionOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionOrderedByUpdatedAtDESCParams

type FetchProjectByVersionOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectByVersionParams

type FetchProjectByVersionParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusAndStatusOrderedByCreatedAtASCParams

type FetchProjectVersionByReviewStatusAndStatusOrderedByCreatedAtASCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusAndStatusOrderedByCreatedAtDESCParams

type FetchProjectVersionByReviewStatusAndStatusOrderedByCreatedAtDESCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusAndStatusOrderedByUpdatedAtASCParams

type FetchProjectVersionByReviewStatusAndStatusOrderedByUpdatedAtASCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusAndStatusOrderedByUpdatedAtDESCParams

type FetchProjectVersionByReviewStatusAndStatusOrderedByUpdatedAtDESCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusAndStatusParams

type FetchProjectVersionByReviewStatusAndStatusParams struct {
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusOrderedByCreatedAtASCParams

type FetchProjectVersionByReviewStatusOrderedByCreatedAtASCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusOrderedByCreatedAtDESCParams

type FetchProjectVersionByReviewStatusOrderedByCreatedAtDESCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusOrderedByUpdatedAtASCParams

type FetchProjectVersionByReviewStatusOrderedByUpdatedAtASCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusOrderedByUpdatedAtDESCParams

type FetchProjectVersionByReviewStatusOrderedByUpdatedAtDESCParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByReviewStatusParams

type FetchProjectVersionByReviewStatusParams struct {
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByStatusOrderedByCreatedAtASCParams

type FetchProjectVersionByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectVersionByStatusOrderedByCreatedAtDESCParams

type FetchProjectVersionByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectVersionByStatusOrderedByUpdatedAtASCParams

type FetchProjectVersionByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectVersionByStatusOrderedByUpdatedAtDESCParams

type FetchProjectVersionByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectVersionByStatusParams

type FetchProjectVersionByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByCreatedAtASCParams

type FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByCreatedAtASCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESCParams

type FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASCParams

type FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams

type FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusAndStatusParams

type FetchProjectVersionByVersionAndReviewStatusAndStatusParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Status       int64 `json:"status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusOrderedByCreatedAtASCParams

type FetchProjectVersionByVersionAndReviewStatusOrderedByCreatedAtASCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusOrderedByCreatedAtDESCParams

type FetchProjectVersionByVersionAndReviewStatusOrderedByCreatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusOrderedByUpdatedAtASCParams

type FetchProjectVersionByVersionAndReviewStatusOrderedByUpdatedAtASCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusOrderedByUpdatedAtDESCParams

type FetchProjectVersionByVersionAndReviewStatusOrderedByUpdatedAtDESCParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndReviewStatusParams

type FetchProjectVersionByVersionAndReviewStatusParams struct {
	Version      int64 `json:"version"`
	ReviewStatus int64 `json:"review_status"`
	Offset       int32 `json:"offset"`
	Limit        int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndStatusOrderedByCreatedAtASCParams

type FetchProjectVersionByVersionAndStatusOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndStatusOrderedByCreatedAtDESCParams

type FetchProjectVersionByVersionAndStatusOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndStatusOrderedByUpdatedAtASCParams

type FetchProjectVersionByVersionAndStatusOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndStatusOrderedByUpdatedAtDESCParams

type FetchProjectVersionByVersionAndStatusOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionAndStatusParams

type FetchProjectVersionByVersionAndStatusParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionOrderedByCreatedAtASCParams

type FetchProjectVersionByVersionOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionOrderedByCreatedAtDESCParams

type FetchProjectVersionByVersionOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionOrderedByUpdatedAtASCParams

type FetchProjectVersionByVersionOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionOrderedByUpdatedAtDESCParams

type FetchProjectVersionByVersionOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchProjectVersionByVersionParams

type FetchProjectVersionByVersionParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByStatusOrderedByCreatedAtASCParams

type FetchTeamByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchTeamByStatusOrderedByCreatedAtDESCParams

type FetchTeamByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchTeamByStatusOrderedByUpdatedAtASCParams

type FetchTeamByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchTeamByStatusOrderedByUpdatedAtDESCParams

type FetchTeamByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchTeamByStatusParams

type FetchTeamByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchTeamByVersionAndStatusOrderedByCreatedAtASCParams

type FetchTeamByVersionAndStatusOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionAndStatusOrderedByCreatedAtDESCParams

type FetchTeamByVersionAndStatusOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionAndStatusOrderedByUpdatedAtASCParams

type FetchTeamByVersionAndStatusOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionAndStatusOrderedByUpdatedAtDESCParams

type FetchTeamByVersionAndStatusOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionAndStatusParams

type FetchTeamByVersionAndStatusParams struct {
	Version int64 `json:"version"`
	Status  int64 `json:"status"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionOrderedByCreatedAtASCParams

type FetchTeamByVersionOrderedByCreatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionOrderedByCreatedAtDESCParams

type FetchTeamByVersionOrderedByCreatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionOrderedByUpdatedAtASCParams

type FetchTeamByVersionOrderedByUpdatedAtASCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionOrderedByUpdatedAtDESCParams

type FetchTeamByVersionOrderedByUpdatedAtDESCParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchTeamByVersionParams

type FetchTeamByVersionParams struct {
	Version int64 `json:"version"`
	Offset  int32 `json:"offset"`
	Limit   int32 `json:"limit"`
}

type FetchUserByEmailAndStatusOrderedByCreatedAtASCParams

type FetchUserByEmailAndStatusOrderedByCreatedAtASCParams struct {
	Email  string `json:"email"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailAndStatusOrderedByCreatedAtDESCParams

type FetchUserByEmailAndStatusOrderedByCreatedAtDESCParams struct {
	Email  string `json:"email"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailAndStatusOrderedByUpdatedAtASCParams

type FetchUserByEmailAndStatusOrderedByUpdatedAtASCParams struct {
	Email  string `json:"email"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailAndStatusOrderedByUpdatedAtDESCParams

type FetchUserByEmailAndStatusOrderedByUpdatedAtDESCParams struct {
	Email  string `json:"email"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailAndStatusParams

type FetchUserByEmailAndStatusParams struct {
	Email  string `json:"email"`
	Status int64  `json:"status"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailOrderedByCreatedAtASCParams

type FetchUserByEmailOrderedByCreatedAtASCParams struct {
	Email  string `json:"email"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailOrderedByCreatedAtDESCParams

type FetchUserByEmailOrderedByCreatedAtDESCParams struct {
	Email  string `json:"email"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailOrderedByUpdatedAtASCParams

type FetchUserByEmailOrderedByUpdatedAtASCParams struct {
	Email  string `json:"email"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailOrderedByUpdatedAtDESCParams

type FetchUserByEmailOrderedByUpdatedAtDESCParams struct {
	Email  string `json:"email"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByEmailParams

type FetchUserByEmailParams struct {
	Email  string `json:"email"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtASCParams

type FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtDESCParams

type FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtASCParams

type FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtDESCParams

type FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailAndStatusParams

type FetchUserByIdentifierAndEmailAndStatusParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailOrderedByCreatedAtASCParams

type FetchUserByIdentifierAndEmailOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailOrderedByCreatedAtDESCParams

type FetchUserByIdentifierAndEmailOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailOrderedByUpdatedAtASCParams

type FetchUserByIdentifierAndEmailOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailOrderedByUpdatedAtDESCParams

type FetchUserByIdentifierAndEmailOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndEmailParams

type FetchUserByIdentifierAndEmailParams struct {
	Identifier string `json:"identifier"`
	Email      string `json:"email"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndStatusOrderedByCreatedAtASCParams

type FetchUserByIdentifierAndStatusOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndStatusOrderedByCreatedAtDESCParams

type FetchUserByIdentifierAndStatusOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndStatusOrderedByUpdatedAtASCParams

type FetchUserByIdentifierAndStatusOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndStatusOrderedByUpdatedAtDESCParams

type FetchUserByIdentifierAndStatusOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierAndStatusParams

type FetchUserByIdentifierAndStatusParams struct {
	Identifier string `json:"identifier"`
	Status     int64  `json:"status"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierOrderedByCreatedAtASCParams

type FetchUserByIdentifierOrderedByCreatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierOrderedByCreatedAtDESCParams

type FetchUserByIdentifierOrderedByCreatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierOrderedByUpdatedAtASCParams

type FetchUserByIdentifierOrderedByUpdatedAtASCParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierOrderedByUpdatedAtDESCParams

type FetchUserByIdentifierOrderedByUpdatedAtDESCParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByIdentifierParams

type FetchUserByIdentifierParams struct {
	Identifier string `json:"identifier"`
	Offset     int32  `json:"offset"`
	Limit      int32  `json:"limit"`
}

type FetchUserByStatusOrderedByCreatedAtASCParams

type FetchUserByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserByStatusOrderedByCreatedAtDESCParams

type FetchUserByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserByStatusOrderedByUpdatedAtASCParams

type FetchUserByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserByStatusOrderedByUpdatedAtDESCParams

type FetchUserByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserByStatusParams

type FetchUserByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserConnectionByStatusOrderedByCreatedAtASCParams

type FetchUserConnectionByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserConnectionByStatusOrderedByCreatedAtDESCParams

type FetchUserConnectionByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserConnectionByStatusOrderedByUpdatedAtASCParams

type FetchUserConnectionByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserConnectionByStatusOrderedByUpdatedAtDESCParams

type FetchUserConnectionByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserConnectionByStatusParams

type FetchUserConnectionByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserProjectByRoleAndStatusOrderedByCreatedAtASCParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserProjectByRoleAndStatusOrderedByCreatedAtDESCParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserProjectByRoleAndStatusOrderedByUpdatedAtASCParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserProjectByRoleAndStatusOrderedByUpdatedAtDESCParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleAndStatusParams added in v1.0.20

type FetchUserProjectByRoleAndStatusParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserProjectByRoleOrderedByCreatedAtASCParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserProjectByRoleOrderedByCreatedAtDESCParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserProjectByRoleOrderedByUpdatedAtASCParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserProjectByRoleOrderedByUpdatedAtDESCParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByRoleParams added in v1.0.20

type FetchUserProjectByRoleParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByStatusOrderedByCreatedAtASCParams added in v1.0.17

type FetchUserProjectByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByStatusOrderedByCreatedAtDESCParams added in v1.0.17

type FetchUserProjectByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByStatusOrderedByUpdatedAtASCParams added in v1.0.17

type FetchUserProjectByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByStatusOrderedByUpdatedAtDESCParams added in v1.0.17

type FetchUserProjectByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByStatusParams added in v1.0.17

type FetchUserProjectByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleAndStatusParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleAndStatusParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndRoleParams added in v1.0.20

type FetchUserProjectByUserEmailAndRoleParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailAndStatusParams added in v1.0.20

type FetchUserProjectByUserEmailAndStatusParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserProjectByUserEmailOrderedByCreatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserProjectByUserEmailOrderedByCreatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserProjectByUserEmailOrderedByUpdatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserProjectByUserEmailOrderedByUpdatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectByUserEmailParams added in v1.0.20

type FetchUserProjectByUserEmailParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserProjectVersionByStatusOrderedByCreatedAtASCParams added in v1.0.13

type FetchUserProjectVersionByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectVersionByStatusOrderedByCreatedAtDESCParams added in v1.0.13

type FetchUserProjectVersionByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectVersionByStatusOrderedByUpdatedAtASCParams added in v1.0.13

type FetchUserProjectVersionByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectVersionByStatusOrderedByUpdatedAtDESCParams added in v1.0.13

type FetchUserProjectVersionByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserProjectVersionByStatusParams added in v1.0.13

type FetchUserProjectVersionByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserTeamByRoleAndStatusOrderedByCreatedAtASCParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserTeamByRoleAndStatusOrderedByCreatedAtDESCParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserTeamByRoleAndStatusOrderedByUpdatedAtASCParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserTeamByRoleAndStatusOrderedByUpdatedAtDESCParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleAndStatusParams added in v1.0.20

type FetchUserTeamByRoleAndStatusParams struct {
	Role   int64 `json:"role"`
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserTeamByRoleOrderedByCreatedAtASCParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserTeamByRoleOrderedByCreatedAtDESCParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserTeamByRoleOrderedByUpdatedAtASCParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserTeamByRoleOrderedByUpdatedAtDESCParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByRoleParams added in v1.0.20

type FetchUserTeamByRoleParams struct {
	Role   int64 `json:"role"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByStatusOrderedByCreatedAtASCParams

type FetchUserTeamByStatusOrderedByCreatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByStatusOrderedByCreatedAtDESCParams

type FetchUserTeamByStatusOrderedByCreatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByStatusOrderedByUpdatedAtASCParams

type FetchUserTeamByStatusOrderedByUpdatedAtASCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByStatusOrderedByUpdatedAtDESCParams

type FetchUserTeamByStatusOrderedByUpdatedAtDESCParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByStatusParams

type FetchUserTeamByStatusParams struct {
	Status int64 `json:"status"`
	Offset int32 `json:"offset"`
	Limit  int32 `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleAndStatusParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleAndStatusParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtASCParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtDESCParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtASCParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtDESCParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndRoleParams added in v1.0.20

type FetchUserTeamByUserEmailAndRoleParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Role      int64          `json:"role"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtASCParams

type FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtDESCParams

type FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtASCParams

type FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtDESCParams

type FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailAndStatusParams

type FetchUserTeamByUserEmailAndStatusParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Status    int64          `json:"status"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailOrderedByCreatedAtASCParams

type FetchUserTeamByUserEmailOrderedByCreatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailOrderedByCreatedAtDESCParams

type FetchUserTeamByUserEmailOrderedByCreatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailOrderedByUpdatedAtASCParams

type FetchUserTeamByUserEmailOrderedByUpdatedAtASCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailOrderedByUpdatedAtDESCParams

type FetchUserTeamByUserEmailOrderedByUpdatedAtDESCParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type FetchUserTeamByUserEmailParams

type FetchUserTeamByUserEmailParams struct {
	UserEmail sql.NullString `json:"user_email"`
	Offset    int32          `json:"offset"`
	Limit     int32          `json:"limit"`
}

type InsertAiUsageParams added in v1.0.38

type InsertAiUsageParams struct {
	UUID               string    `json:"uuid"`
	UserUUID           string    `json:"user_uuid"`
	ProjectUUID        string    `json:"project_uuid"`
	ProjectVersionUUID string    `json:"project_version_uuid"`
	UserPrompt         string    `json:"user_prompt"`
	Step               string    `json:"step"`
	Context            int64     `json:"context"`
	Provider           int64     `json:"provider"`
	InputTokens        int64     `json:"input_tokens"`
	OutputTokens       int64     `json:"output_tokens"`
	Status             int64     `json:"status"`
	CreatedAt          time.Time `json:"created_at"`
	UpdatedAt          time.Time `json:"updated_at"`
	CreatedByUUID      string    `json:"created_by_uuid"`
	UpdatedByUUID      string    `json:"updated_by_uuid"`
}

type InsertChangeRequestParams

type InsertChangeRequestParams struct {
	UUID               string         `json:"uuid"`
	Version            int64          `json:"version"`
	Title              string         `json:"title"`
	Description        sql.NullString `json:"description"`
	ProjectUUID        string         `json:"project_uuid"`
	ProjectVersionUUID string         `json:"project_version_uuid"`
	ChangeType         int64          `json:"change_type"`
	DataChanges        []byte         `json:"data_changes"`
	Metadata           []byte         `json:"metadata"`
	Reviews            []byte         `json:"reviews"`
	ReviewStatus       int64          `json:"review_status"`
	OwnerUUID          string         `json:"owner_uuid"`
	Status             int64          `json:"status"`
	CreatedAt          time.Time      `json:"created_at"`
	UpdatedAt          time.Time      `json:"updated_at"`
	CreatedByUUID      string         `json:"created_by_uuid"`
	UpdatedByUUID      string         `json:"updated_by_uuid"`
}

type InsertExtensionExecutionParams

type InsertExtensionExecutionParams struct {
	UUID                 string         `json:"uuid"`
	ExtensionUUID        string         `json:"extension_uuid"`
	ExtensionVersionUUID string         `json:"extension_version_uuid"`
	ProjectExtensionUUID sql.NullString `json:"project_extension_uuid"`
	ProjectUUID          string         `json:"project_uuid"`
	ProjectVersionUUID   string         `json:"project_version_uuid"`
	ExecutedByUUID       string         `json:"executed_by_uuid"`
	Metadata             []byte         `json:"metadata"`
	Status               int64          `json:"status"`
	StatusMsg            sql.NullString `json:"status_msg"`
	CreatedAt            time.Time      `json:"created_at"`
	UpdatedAt            time.Time      `json:"updated_at"`
}

type InsertExtensionParams

type InsertExtensionParams struct {
	UUID              string         `json:"uuid"`
	Version           int64          `json:"version"`
	Identifier        string         `json:"identifier"`
	DisplayName       sql.NullString `json:"display_name"`
	DisplayAuthorName sql.NullString `json:"display_author_name"`
	Description       sql.NullString `json:"description"`
	URL               sql.NullString `json:"url"`
	Verfied           bool           `json:"verfied"`
	Repository        string         `json:"repository"`
	ExtensionType     int64          `json:"extension_type"`
	Tags              []byte         `json:"tags"`
	Public            bool           `json:"public"`
	Visibility        []byte         `json:"visibility"`
	Status            int64          `json:"status"`
	OwnerUUID         string         `json:"owner_uuid"`
	CreatedAt         time.Time      `json:"created_at"`
	UpdatedAt         time.Time      `json:"updated_at"`
	CreatedByUUID     string         `json:"created_by_uuid"`
	UpdatedByUUID     string         `json:"updated_by_uuid"`
}

type InsertExtensionVersionParams

type InsertExtensionVersionParams struct {
	UUID                string          `json:"uuid"`
	Version             int64           `json:"version"`
	ExtensionUUID       string          `json:"extension_uuid"`
	DisplayVersion      sql.NullString  `json:"display_version"`
	Description         sql.NullString  `json:"description"`
	RepositoryTag       string          `json:"repository_tag"`
	ConfigurationEntity []byte          `json:"configuration_entity"`
	ExecutionMode       json.RawMessage `json:"execution_mode"`
	ReviewStatus        int64           `json:"review_status"`
	Status              int64           `json:"status"`
	CreatedAt           time.Time       `json:"created_at"`
	UpdatedAt           time.Time       `json:"updated_at"`
	CreatedByUUID       string          `json:"created_by_uuid"`
	UpdatedByUUID       string          `json:"updated_by_uuid"`
}

type InsertMembershipParams added in v1.0.25

type InsertMembershipParams struct {
	UUID            string          `json:"uuid"`
	OwnerUUID       string          `json:"owner_uuid"`
	Type            int64           `json:"type"`
	StartDate       time.Time       `json:"start_date"`
	BillingMetadata json.RawMessage `json:"billing_metadata"`
	Status          int64           `json:"status"`
	CreatedAt       time.Time       `json:"created_at"`
	UpdatedAt       time.Time       `json:"updated_at"`
	CreatedByUUID   string          `json:"created_by_uuid"`
	UpdatedByUUID   string          `json:"updated_by_uuid"`
}

type InsertProjectParams

type InsertProjectParams struct {
	UUID              string         `json:"uuid"`
	Version           int64          `json:"version"`
	Name              string         `json:"name"`
	Description       sql.NullString `json:"description"`
	Tags              []byte         `json:"tags"`
	URL               sql.NullString `json:"url"`
	OwnerUUID         string         `json:"owner_uuid"`
	TeamUUID          string         `json:"team_uuid"`
	AccessType        int64          `json:"access_type"`
	ProjectExtensions []byte         `json:"project_extensions"`
	Status            int64          `json:"status"`
	CreatedAt         time.Time      `json:"created_at"`
	UpdatedAt         time.Time      `json:"updated_at"`
	CreatedByUUID     string         `json:"created_by_uuid"`
	UpdatedByUUID     string         `json:"updated_by_uuid"`
}

type InsertProjectVersionParams

type InsertProjectVersionParams struct {
	UUID            string          `json:"uuid"`
	Version         int64           `json:"version"`
	Identifier      string          `json:"identifier"`
	Description     string          `json:"description"`
	ProjectUUID     string          `json:"project_uuid"`
	Entities        json.RawMessage `json:"entities"`
	Relationships   json.RawMessage `json:"relationships"`
	Enums           json.RawMessage `json:"enums"`
	Services        json.RawMessage `json:"services"`
	BaseVersionUUID sql.NullString  `json:"base_version_uuid"`
	ReviewStatus    int64           `json:"review_status"`
	Deployments     []byte          `json:"deployments"`
	Status          int64           `json:"status"`
	CreatedAt       time.Time       `json:"created_at"`
	UpdatedAt       time.Time       `json:"updated_at"`
	CreatedByUUID   string          `json:"created_by_uuid"`
	UpdatedByUUID   string          `json:"updated_by_uuid"`
}

type InsertTeamParams

type InsertTeamParams struct {
	UUID          string    `json:"uuid"`
	Version       int64     `json:"version"`
	Name          string    `json:"name"`
	Enviorments   []byte    `json:"enviorments"`
	ReviewConfigs []byte    `json:"review_configs"`
	Stores        []byte    `json:"stores"`
	Connections   []byte    `json:"connections"`
	ObjectStores  []byte    `json:"object_stores"`
	DefaultEntity []byte    `json:"default_entity"`
	OwnerUUID     string    `json:"owner_uuid"`
	Status        int64     `json:"status"`
	CreatedAt     time.Time `json:"created_at"`
	UpdatedAt     time.Time `json:"updated_at"`
	CreatedByUUID string    `json:"created_by_uuid"`
	UpdatedByUUID string    `json:"updated_by_uuid"`
}

type InsertUserConnectionParams

type InsertUserConnectionParams struct {
	UUID               string          `json:"uuid"`
	UserUUID           string          `json:"user_uuid"`
	ProjectUUID        string          `json:"project_uuid"`
	ProjectVersionUUID sql.NullString  `json:"project_version_uuid"`
	Type               int64           `json:"type"`
	TypeConfig         json.RawMessage `json:"type_config"`
	DbSchema           string          `json:"db_schema"`
	Executions         []byte          `json:"executions"`
	Status             int64           `json:"status"`
	CreatedAt          time.Time       `json:"created_at"`
	UpdatedAt          time.Time       `json:"updated_at"`
}

type InsertUserParams

type InsertUserParams struct {
	UUID        string         `json:"uuid"`
	Identifier  string         `json:"identifier"`
	Name        sql.NullString `json:"name"`
	LastName    sql.NullString `json:"last_name"`
	Email       string         `json:"email"`
	UserType    int64          `json:"user_type"`
	CountryIos2 sql.NullString `json:"country_ios2"`
	Locale      sql.NullString `json:"locale"`
	Metadata    sql.NullString `json:"metadata"`
	Status      int64          `json:"status"`
	CreatedAt   time.Time      `json:"created_at"`
	UpdatedAt   time.Time      `json:"updated_at"`
}

type InsertUserProjectParams added in v1.0.17

type InsertUserProjectParams struct {
	UUID                    string         `json:"uuid"`
	UserUUID                sql.NullString `json:"user_uuid"`
	UserEmail               sql.NullString `json:"user_email"`
	ProjectUUID             string         `json:"project_uuid"`
	Role                    int64          `json:"role"`
	ReviewRequiredStructure bool           `json:"review_required_structure"`
	ReviewRequiredData      bool           `json:"review_required_data"`
	Status                  int64          `json:"status"`
	CreatedAt               time.Time      `json:"created_at"`
	UpdatedAt               time.Time      `json:"updated_at"`
	CreatedByUUID           string         `json:"created_by_uuid"`
	UpdatedByUUID           string         `json:"updated_by_uuid"`
}

type InsertUserProjectVersionParams added in v1.0.13

type InsertUserProjectVersionParams struct {
	UUID               string    `json:"uuid"`
	Version            int64     `json:"version"`
	ProjectVersionUUID string    `json:"project_version_uuid"`
	UserUUID           string    `json:"user_uuid"`
	Data               []byte    `json:"data"`
	Status             int64     `json:"status"`
	CreatedAt          time.Time `json:"created_at"`
	UpdatedAt          time.Time `json:"updated_at"`
	CreatedByUUID      string    `json:"created_by_uuid"`
	UpdatedByUUID      string    `json:"updated_by_uuid"`
}

type InsertUserTeamParams

type InsertUserTeamParams struct {
	UUID                    string         `json:"uuid"`
	UserUUID                sql.NullString `json:"user_uuid"`
	UserEmail               sql.NullString `json:"user_email"`
	TeamUUID                string         `json:"team_uuid"`
	Role                    int64          `json:"role"`
	ReviewRequiredStructure bool           `json:"review_required_structure"`
	ReviewRequiredData      bool           `json:"review_required_data"`
	Status                  int64          `json:"status"`
	CreatedAt               time.Time      `json:"created_at"`
	UpdatedAt               time.Time      `json:"updated_at"`
	CreatedByUUID           string         `json:"created_by_uuid"`
	UpdatedByUUID           string         `json:"updated_by_uuid"`
}

type Membership added in v1.0.25

type Membership struct {
	UUID            string          `json:"uuid"`
	OwnerUUID       string          `json:"owner_uuid"`
	Type            int64           `json:"type"`
	StartDate       time.Time       `json:"start_date"`
	BillingMetadata json.RawMessage `json:"billing_metadata"`
	Status          int64           `json:"status"`
	CreatedAt       time.Time       `json:"created_at"`
	UpdatedAt       time.Time       `json:"updated_at"`
	CreatedByUUID   string          `json:"created_by_uuid"`
	UpdatedByUUID   string          `json:"updated_by_uuid"`
}

type Project

type Project struct {
	UUID              string         `json:"uuid"`
	Version           int64          `json:"version"`
	Name              string         `json:"name"`
	Description       sql.NullString `json:"description"`
	Tags              []byte         `json:"tags"`
	URL               sql.NullString `json:"url"`
	OwnerUUID         string         `json:"owner_uuid"`
	TeamUUID          string         `json:"team_uuid"`
	AccessType        int64          `json:"access_type"`
	ProjectExtensions []byte         `json:"project_extensions"`
	Status            int64          `json:"status"`
	CreatedAt         time.Time      `json:"created_at"`
	UpdatedAt         time.Time      `json:"updated_at"`
	CreatedByUUID     string         `json:"created_by_uuid"`
	UpdatedByUUID     string         `json:"updated_by_uuid"`
}

type ProjectVersion

type ProjectVersion struct {
	UUID            string          `json:"uuid"`
	Version         int64           `json:"version"`
	Identifier      string          `json:"identifier"`
	Description     string          `json:"description"`
	ProjectUUID     string          `json:"project_uuid"`
	Entities        json.RawMessage `json:"entities"`
	Relationships   json.RawMessage `json:"relationships"`
	Enums           json.RawMessage `json:"enums"`
	Services        json.RawMessage `json:"services"`
	BaseVersionUUID sql.NullString  `json:"base_version_uuid"`
	ReviewStatus    int64           `json:"review_status"`
	Deployments     []byte          `json:"deployments"`
	Status          int64           `json:"status"`
	CreatedAt       time.Time       `json:"created_at"`
	UpdatedAt       time.Time       `json:"updated_at"`
	CreatedByUUID   string          `json:"created_by_uuid"`
	UpdatedByUUID   string          `json:"updated_by_uuid"`
}

type Querier

type Querier interface {
	FetchAiUsageByContext(ctx context.Context, arg FetchAiUsageByContextParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProvider(ctx context.Context, arg FetchAiUsageByContextAndProviderParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderAndStatus(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndProviderOrderedByCreatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndProviderOrderedByCreatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndProviderOrderedByUpdatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndProviderOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndProviderOrderedByUpdatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndStatus(ctx context.Context, arg FetchAiUsageByContextAndStatusParams) ([]AiUsage, error)
	FetchAiUsageByContextAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndStatusOrderedByCreatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndStatusOrderedByCreatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndStatusOrderedByUpdatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByContextAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndStatusOrderedByUpdatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByContextOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByContextOrderedByCreatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByContextOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByContextOrderedByCreatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByContextOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByContextOrderedByUpdatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByContextOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByContextOrderedByUpdatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByProvider(ctx context.Context, arg FetchAiUsageByProviderParams) ([]AiUsage, error)
	FetchAiUsageByProviderAndStatus(ctx context.Context, arg FetchAiUsageByProviderAndStatusParams) ([]AiUsage, error)
	FetchAiUsageByProviderAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByProviderAndStatusOrderedByCreatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByProviderAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByProviderAndStatusOrderedByCreatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByProviderAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByProviderAndStatusOrderedByUpdatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByProviderAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByProviderAndStatusOrderedByUpdatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByProviderOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByProviderOrderedByCreatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByProviderOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByProviderOrderedByCreatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByProviderOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByProviderOrderedByUpdatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByProviderOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByProviderOrderedByUpdatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByStatus(ctx context.Context, arg FetchAiUsageByStatusParams) ([]AiUsage, error)
	FetchAiUsageByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByStatusOrderedByCreatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByStatusOrderedByCreatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByStatusOrderedByUpdatedAtASCParams) ([]AiUsage, error)
	FetchAiUsageByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByStatusOrderedByUpdatedAtDESCParams) ([]AiUsage, error)
	FetchAiUsageByUUID(ctx context.Context, uuid string) ([]AiUsage, error)
	FetchAiUsageByUUIDForUpdate(ctx context.Context, uuid string) ([]AiUsage, error)
	FetchChangeRequestByChangeType(ctx context.Context, arg FetchChangeRequestByChangeTypeParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatus(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusAndStatus(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndStatus(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByChangeTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatus(ctx context.Context, arg FetchChangeRequestByReviewStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusAndStatus(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByReviewStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByReviewStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByReviewStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByReviewStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByStatus(ctx context.Context, arg FetchChangeRequestByStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByUUID(ctx context.Context, uuid string) ([]ChangeRequest, error)
	FetchChangeRequestByUUIDForUpdate(ctx context.Context, uuid string) ([]ChangeRequest, error)
	FetchChangeRequestByVersion(ctx context.Context, arg FetchChangeRequestByVersionParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeType(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatus(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatus(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndStatus(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatus(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusAndStatus(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndStatus(ctx context.Context, arg FetchChangeRequestByVersionAndStatusParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionOrderedByCreatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)
	FetchChangeRequestByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)
	FetchExtensionByExtensionType(ctx context.Context, arg FetchExtensionByExtensionTypeParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifier(ctx context.Context, arg FetchExtensionByIdentifierParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionType(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndStatusParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublic(ctx context.Context, arg FetchExtensionByIdentifierAndPublicParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepository(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionType(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublic(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndStatusParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndStatusParams) ([]Extension, error)
	FetchExtensionByIdentifierAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByIdentifierOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByIdentifierOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByPublic(ctx context.Context, arg FetchExtensionByPublicParams) ([]Extension, error)
	FetchExtensionByPublicAndStatus(ctx context.Context, arg FetchExtensionByPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepository(ctx context.Context, arg FetchExtensionByRepositoryParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionType(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndStatusParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublic(ctx context.Context, arg FetchExtensionByRepositoryAndPublicParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicAndStatus(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndStatus(ctx context.Context, arg FetchExtensionByRepositoryAndStatusParams) ([]Extension, error)
	FetchExtensionByRepositoryAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByRepositoryOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByRepositoryOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByStatus(ctx context.Context, arg FetchExtensionByStatusParams) ([]Extension, error)
	FetchExtensionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByUUID(ctx context.Context, uuid string) ([]Extension, error)
	FetchExtensionByUUIDForUpdate(ctx context.Context, uuid string) ([]Extension, error)
	FetchExtensionByVersion(ctx context.Context, arg FetchExtensionByVersionParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionType(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifier(ctx context.Context, arg FetchExtensionByVersionAndIdentifierParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionType(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublic(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepository(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionType(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublic(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndPublic(ctx context.Context, arg FetchExtensionByVersionAndPublicParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepository(ctx context.Context, arg FetchExtensionByVersionAndRepositoryParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionType(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublic(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndStatus(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndStatus(ctx context.Context, arg FetchExtensionByVersionAndStatusParams) ([]Extension, error)
	FetchExtensionByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionOrderedByCreatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionOrderedByCreatedAtDESCParams) ([]Extension, error)
	FetchExtensionByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionOrderedByUpdatedAtASCParams) ([]Extension, error)
	FetchExtensionByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionOrderedByUpdatedAtDESCParams) ([]Extension, error)
	FetchExtensionExecutionByStatus(ctx context.Context, arg FetchExtensionExecutionByStatusParams) ([]ExtensionExecution, error)
	FetchExtensionExecutionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionExecutionByStatusOrderedByCreatedAtASCParams) ([]ExtensionExecution, error)
	FetchExtensionExecutionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionExecutionByStatusOrderedByCreatedAtDESCParams) ([]ExtensionExecution, error)
	FetchExtensionExecutionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionExecutionByStatusOrderedByUpdatedAtASCParams) ([]ExtensionExecution, error)
	FetchExtensionExecutionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionExecutionByStatusOrderedByUpdatedAtDESCParams) ([]ExtensionExecution, error)
	FetchExtensionExecutionByUUID(ctx context.Context, uuid string) ([]ExtensionExecution, error)
	FetchExtensionExecutionByUUIDForUpdate(ctx context.Context, uuid string) ([]ExtensionExecution, error)
	FetchExtensionVersionByStatus(ctx context.Context, arg FetchExtensionVersionByStatusParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionVersionByStatusOrderedByCreatedAtASCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionVersionByStatusOrderedByCreatedAtDESCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionVersionByStatusOrderedByUpdatedAtASCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionVersionByStatusOrderedByUpdatedAtDESCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByUUID(ctx context.Context, uuid string) ([]ExtensionVersion, error)
	FetchExtensionVersionByUUIDForUpdate(ctx context.Context, uuid string) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersion(ctx context.Context, arg FetchExtensionVersionByVersionParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionAndStatus(ctx context.Context, arg FetchExtensionVersionByVersionAndStatusParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionVersionByVersionAndStatusOrderedByCreatedAtASCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionVersionByVersionAndStatusOrderedByCreatedAtDESCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionVersionByVersionAndStatusOrderedByUpdatedAtASCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionVersionByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionVersionByVersionOrderedByCreatedAtASCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionVersionByVersionOrderedByCreatedAtDESCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionVersionByVersionOrderedByUpdatedAtASCParams) ([]ExtensionVersion, error)
	FetchExtensionVersionByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionVersionByVersionOrderedByUpdatedAtDESCParams) ([]ExtensionVersion, error)
	FetchMembershipByStatus(ctx context.Context, arg FetchMembershipByStatusParams) ([]Membership, error)
	FetchMembershipByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchMembershipByStatusOrderedByCreatedAtASCParams) ([]Membership, error)
	FetchMembershipByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchMembershipByStatusOrderedByCreatedAtDESCParams) ([]Membership, error)
	FetchMembershipByStatusOrderedByStartDateASC(ctx context.Context, arg FetchMembershipByStatusOrderedByStartDateASCParams) ([]Membership, error)
	FetchMembershipByStatusOrderedByStartDateDESC(ctx context.Context, arg FetchMembershipByStatusOrderedByStartDateDESCParams) ([]Membership, error)
	FetchMembershipByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchMembershipByStatusOrderedByUpdatedAtASCParams) ([]Membership, error)
	FetchMembershipByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchMembershipByStatusOrderedByUpdatedAtDESCParams) ([]Membership, error)
	FetchMembershipByType(ctx context.Context, arg FetchMembershipByTypeParams) ([]Membership, error)
	FetchMembershipByTypeAndStatus(ctx context.Context, arg FetchMembershipByTypeAndStatusParams) ([]Membership, error)
	FetchMembershipByTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByCreatedAtASCParams) ([]Membership, error)
	FetchMembershipByTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByCreatedAtDESCParams) ([]Membership, error)
	FetchMembershipByTypeAndStatusOrderedByStartDateASC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByStartDateASCParams) ([]Membership, error)
	FetchMembershipByTypeAndStatusOrderedByStartDateDESC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByStartDateDESCParams) ([]Membership, error)
	FetchMembershipByTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByUpdatedAtASCParams) ([]Membership, error)
	FetchMembershipByTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Membership, error)
	FetchMembershipByTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchMembershipByTypeOrderedByCreatedAtASCParams) ([]Membership, error)
	FetchMembershipByTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchMembershipByTypeOrderedByCreatedAtDESCParams) ([]Membership, error)
	FetchMembershipByTypeOrderedByStartDateASC(ctx context.Context, arg FetchMembershipByTypeOrderedByStartDateASCParams) ([]Membership, error)
	FetchMembershipByTypeOrderedByStartDateDESC(ctx context.Context, arg FetchMembershipByTypeOrderedByStartDateDESCParams) ([]Membership, error)
	FetchMembershipByTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchMembershipByTypeOrderedByUpdatedAtASCParams) ([]Membership, error)
	FetchMembershipByTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchMembershipByTypeOrderedByUpdatedAtDESCParams) ([]Membership, error)
	FetchMembershipByUUID(ctx context.Context, uuid string) ([]Membership, error)
	FetchMembershipByUUIDForUpdate(ctx context.Context, uuid string) ([]Membership, error)
	FetchProjectByName(ctx context.Context, arg FetchProjectByNameParams) ([]Project, error)
	FetchProjectByNameAndStatus(ctx context.Context, arg FetchProjectByNameAndStatusParams) ([]Project, error)
	FetchProjectByNameAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByNameAndStatusOrderedByCreatedAtASCParams) ([]Project, error)
	FetchProjectByNameAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByNameAndStatusOrderedByCreatedAtDESCParams) ([]Project, error)
	FetchProjectByNameAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByNameAndStatusOrderedByUpdatedAtASCParams) ([]Project, error)
	FetchProjectByNameAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByNameAndStatusOrderedByUpdatedAtDESCParams) ([]Project, error)
	FetchProjectByNameOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByNameOrderedByCreatedAtASCParams) ([]Project, error)
	FetchProjectByNameOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByNameOrderedByCreatedAtDESCParams) ([]Project, error)
	FetchProjectByNameOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByNameOrderedByUpdatedAtASCParams) ([]Project, error)
	FetchProjectByNameOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByNameOrderedByUpdatedAtDESCParams) ([]Project, error)
	FetchProjectByStatus(ctx context.Context, arg FetchProjectByStatusParams) ([]Project, error)
	FetchProjectByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByStatusOrderedByCreatedAtASCParams) ([]Project, error)
	FetchProjectByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByStatusOrderedByCreatedAtDESCParams) ([]Project, error)
	FetchProjectByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByStatusOrderedByUpdatedAtASCParams) ([]Project, error)
	FetchProjectByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByStatusOrderedByUpdatedAtDESCParams) ([]Project, error)
	FetchProjectByUUID(ctx context.Context, uuid string) ([]Project, error)
	FetchProjectByUUIDForUpdate(ctx context.Context, uuid string) ([]Project, error)
	FetchProjectByVersion(ctx context.Context, arg FetchProjectByVersionParams) ([]Project, error)
	FetchProjectByVersionAndName(ctx context.Context, arg FetchProjectByVersionAndNameParams) ([]Project, error)
	FetchProjectByVersionAndNameAndStatus(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusParams) ([]Project, error)
	FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtASCParams) ([]Project, error)
	FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtDESCParams) ([]Project, error)
	FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtASCParams) ([]Project, error)
	FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtDESCParams) ([]Project, error)
	FetchProjectByVersionAndNameOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByVersionAndNameOrderedByCreatedAtASCParams) ([]Project, error)
	FetchProjectByVersionAndNameOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndNameOrderedByCreatedAtDESCParams) ([]Project, error)
	FetchProjectByVersionAndNameOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByVersionAndNameOrderedByUpdatedAtASCParams) ([]Project, error)
	FetchProjectByVersionAndNameOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndNameOrderedByUpdatedAtDESCParams) ([]Project, error)
	FetchProjectByVersionAndStatus(ctx context.Context, arg FetchProjectByVersionAndStatusParams) ([]Project, error)
	FetchProjectByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByVersionAndStatusOrderedByCreatedAtASCParams) ([]Project, error)
	FetchProjectByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndStatusOrderedByCreatedAtDESCParams) ([]Project, error)
	FetchProjectByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByVersionAndStatusOrderedByUpdatedAtASCParams) ([]Project, error)
	FetchProjectByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]Project, error)
	FetchProjectByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByVersionOrderedByCreatedAtASCParams) ([]Project, error)
	FetchProjectByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByVersionOrderedByCreatedAtDESCParams) ([]Project, error)
	FetchProjectByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByVersionOrderedByUpdatedAtASCParams) ([]Project, error)
	FetchProjectByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByVersionOrderedByUpdatedAtDESCParams) ([]Project, error)
	FetchProjectVersionByReviewStatus(ctx context.Context, arg FetchProjectVersionByReviewStatusParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusAndStatus(ctx context.Context, arg FetchProjectVersionByReviewStatusAndStatusParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByReviewStatusOrderedByCreatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByReviewStatusOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByReviewStatusOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByReviewStatusOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByStatus(ctx context.Context, arg FetchProjectVersionByStatusParams) ([]ProjectVersion, error)
	FetchProjectVersionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByStatusOrderedByCreatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByStatusOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByStatusOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByStatusOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByUUID(ctx context.Context, uuid string) ([]ProjectVersion, error)
	FetchProjectVersionByUUIDForUpdate(ctx context.Context, uuid string) ([]ProjectVersion, error)
	FetchProjectVersionByVersion(ctx context.Context, arg FetchProjectVersionByVersionParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatus(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusAndStatus(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusAndStatusParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusOrderedByCreatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndStatus(ctx context.Context, arg FetchProjectVersionByVersionAndStatusParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionAndStatusOrderedByCreatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionAndStatusOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionAndStatusOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionOrderedByCreatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)
	FetchProjectVersionByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)
	FetchTeamByStatus(ctx context.Context, arg FetchTeamByStatusParams) ([]Team, error)
	FetchTeamByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchTeamByStatusOrderedByCreatedAtASCParams) ([]Team, error)
	FetchTeamByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchTeamByStatusOrderedByCreatedAtDESCParams) ([]Team, error)
	FetchTeamByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchTeamByStatusOrderedByUpdatedAtASCParams) ([]Team, error)
	FetchTeamByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchTeamByStatusOrderedByUpdatedAtDESCParams) ([]Team, error)
	FetchTeamByUUID(ctx context.Context, uuid string) ([]Team, error)
	FetchTeamByUUIDForUpdate(ctx context.Context, uuid string) ([]Team, error)
	FetchTeamByVersion(ctx context.Context, arg FetchTeamByVersionParams) ([]Team, error)
	FetchTeamByVersionAndStatus(ctx context.Context, arg FetchTeamByVersionAndStatusParams) ([]Team, error)
	FetchTeamByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchTeamByVersionAndStatusOrderedByCreatedAtASCParams) ([]Team, error)
	FetchTeamByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchTeamByVersionAndStatusOrderedByCreatedAtDESCParams) ([]Team, error)
	FetchTeamByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchTeamByVersionAndStatusOrderedByUpdatedAtASCParams) ([]Team, error)
	FetchTeamByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchTeamByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]Team, error)
	FetchTeamByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchTeamByVersionOrderedByCreatedAtASCParams) ([]Team, error)
	FetchTeamByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchTeamByVersionOrderedByCreatedAtDESCParams) ([]Team, error)
	FetchTeamByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchTeamByVersionOrderedByUpdatedAtASCParams) ([]Team, error)
	FetchTeamByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchTeamByVersionOrderedByUpdatedAtDESCParams) ([]Team, error)
	FetchUserByEmail(ctx context.Context, arg FetchUserByEmailParams) ([]User, error)
	FetchUserByEmailAndStatus(ctx context.Context, arg FetchUserByEmailAndStatusParams) ([]User, error)
	FetchUserByEmailAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByEmailAndStatusOrderedByCreatedAtASCParams) ([]User, error)
	FetchUserByEmailAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByEmailAndStatusOrderedByCreatedAtDESCParams) ([]User, error)
	FetchUserByEmailAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByEmailAndStatusOrderedByUpdatedAtASCParams) ([]User, error)
	FetchUserByEmailAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByEmailAndStatusOrderedByUpdatedAtDESCParams) ([]User, error)
	FetchUserByEmailOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByEmailOrderedByCreatedAtASCParams) ([]User, error)
	FetchUserByEmailOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByEmailOrderedByCreatedAtDESCParams) ([]User, error)
	FetchUserByEmailOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByEmailOrderedByUpdatedAtASCParams) ([]User, error)
	FetchUserByEmailOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByEmailOrderedByUpdatedAtDESCParams) ([]User, error)
	FetchUserByIdentifier(ctx context.Context, arg FetchUserByIdentifierParams) ([]User, error)
	FetchUserByIdentifierAndEmail(ctx context.Context, arg FetchUserByIdentifierAndEmailParams) ([]User, error)
	FetchUserByIdentifierAndEmailAndStatus(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusParams) ([]User, error)
	FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtASCParams) ([]User, error)
	FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtDESCParams) ([]User, error)
	FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtASCParams) ([]User, error)
	FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtDESCParams) ([]User, error)
	FetchUserByIdentifierAndEmailOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndEmailOrderedByCreatedAtASCParams) ([]User, error)
	FetchUserByIdentifierAndEmailOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndEmailOrderedByCreatedAtDESCParams) ([]User, error)
	FetchUserByIdentifierAndEmailOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndEmailOrderedByUpdatedAtASCParams) ([]User, error)
	FetchUserByIdentifierAndEmailOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndEmailOrderedByUpdatedAtDESCParams) ([]User, error)
	FetchUserByIdentifierAndStatus(ctx context.Context, arg FetchUserByIdentifierAndStatusParams) ([]User, error)
	FetchUserByIdentifierAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndStatusOrderedByCreatedAtASCParams) ([]User, error)
	FetchUserByIdentifierAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndStatusOrderedByCreatedAtDESCParams) ([]User, error)
	FetchUserByIdentifierAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndStatusOrderedByUpdatedAtASCParams) ([]User, error)
	FetchUserByIdentifierAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndStatusOrderedByUpdatedAtDESCParams) ([]User, error)
	FetchUserByIdentifierOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByIdentifierOrderedByCreatedAtASCParams) ([]User, error)
	FetchUserByIdentifierOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByIdentifierOrderedByCreatedAtDESCParams) ([]User, error)
	FetchUserByIdentifierOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByIdentifierOrderedByUpdatedAtASCParams) ([]User, error)
	FetchUserByIdentifierOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByIdentifierOrderedByUpdatedAtDESCParams) ([]User, error)
	FetchUserByStatus(ctx context.Context, arg FetchUserByStatusParams) ([]User, error)
	FetchUserByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByStatusOrderedByCreatedAtASCParams) ([]User, error)
	FetchUserByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByStatusOrderedByCreatedAtDESCParams) ([]User, error)
	FetchUserByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByStatusOrderedByUpdatedAtASCParams) ([]User, error)
	FetchUserByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByStatusOrderedByUpdatedAtDESCParams) ([]User, error)
	FetchUserByUUID(ctx context.Context, uuid string) ([]User, error)
	FetchUserByUUIDForUpdate(ctx context.Context, uuid string) ([]User, error)
	FetchUserConnectionByStatus(ctx context.Context, arg FetchUserConnectionByStatusParams) ([]UserConnection, error)
	FetchUserConnectionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserConnectionByStatusOrderedByCreatedAtASCParams) ([]UserConnection, error)
	FetchUserConnectionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserConnectionByStatusOrderedByCreatedAtDESCParams) ([]UserConnection, error)
	FetchUserConnectionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserConnectionByStatusOrderedByUpdatedAtASCParams) ([]UserConnection, error)
	FetchUserConnectionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserConnectionByStatusOrderedByUpdatedAtDESCParams) ([]UserConnection, error)
	FetchUserConnectionByUUID(ctx context.Context, uuid string) ([]UserConnection, error)
	FetchUserConnectionByUUIDForUpdate(ctx context.Context, uuid string) ([]UserConnection, error)
	FetchUserProjectByRole(ctx context.Context, arg FetchUserProjectByRoleParams) ([]UserProject, error)
	FetchUserProjectByRoleAndStatus(ctx context.Context, arg FetchUserProjectByRoleAndStatusParams) ([]UserProject, error)
	FetchUserProjectByRoleAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByRoleAndStatusOrderedByCreatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByRoleAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByRoleAndStatusOrderedByCreatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByRoleAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByRoleAndStatusOrderedByUpdatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByRoleAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByRoleAndStatusOrderedByUpdatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByRoleOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByRoleOrderedByCreatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByRoleOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByRoleOrderedByCreatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByRoleOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByRoleOrderedByUpdatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByRoleOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByRoleOrderedByUpdatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByStatus(ctx context.Context, arg FetchUserProjectByStatusParams) ([]UserProject, error)
	FetchUserProjectByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByStatusOrderedByCreatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByStatusOrderedByCreatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByStatusOrderedByUpdatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByStatusOrderedByUpdatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByUUID(ctx context.Context, uuid string) ([]UserProject, error)
	FetchUserProjectByUUIDForUpdate(ctx context.Context, uuid string) ([]UserProject, error)
	FetchUserProjectByUserEmail(ctx context.Context, arg FetchUserProjectByUserEmailParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRole(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleAndStatus(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndStatus(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailOrderedByCreatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailOrderedByCreatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailOrderedByUpdatedAtASCParams) ([]UserProject, error)
	FetchUserProjectByUserEmailOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailOrderedByUpdatedAtDESCParams) ([]UserProject, error)
	FetchUserProjectVersionByStatus(ctx context.Context, arg FetchUserProjectVersionByStatusParams) ([]UserProjectVersion, error)
	FetchUserProjectVersionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectVersionByStatusOrderedByCreatedAtASCParams) ([]UserProjectVersion, error)
	FetchUserProjectVersionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectVersionByStatusOrderedByCreatedAtDESCParams) ([]UserProjectVersion, error)
	FetchUserProjectVersionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectVersionByStatusOrderedByUpdatedAtASCParams) ([]UserProjectVersion, error)
	FetchUserProjectVersionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectVersionByStatusOrderedByUpdatedAtDESCParams) ([]UserProjectVersion, error)
	FetchUserProjectVersionByUUID(ctx context.Context, uuid string) ([]UserProjectVersion, error)
	FetchUserProjectVersionByUUIDForUpdate(ctx context.Context, uuid string) ([]UserProjectVersion, error)
	FetchUserTeamByRole(ctx context.Context, arg FetchUserTeamByRoleParams) ([]UserTeam, error)
	FetchUserTeamByRoleAndStatus(ctx context.Context, arg FetchUserTeamByRoleAndStatusParams) ([]UserTeam, error)
	FetchUserTeamByRoleAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByRoleAndStatusOrderedByCreatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByRoleAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByRoleAndStatusOrderedByCreatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByRoleAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByRoleAndStatusOrderedByUpdatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByRoleAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByRoleAndStatusOrderedByUpdatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByRoleOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByRoleOrderedByCreatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByRoleOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByRoleOrderedByCreatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByRoleOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByRoleOrderedByUpdatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByRoleOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByRoleOrderedByUpdatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByStatus(ctx context.Context, arg FetchUserTeamByStatusParams) ([]UserTeam, error)
	FetchUserTeamByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByStatusOrderedByCreatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByStatusOrderedByCreatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByStatusOrderedByUpdatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByStatusOrderedByUpdatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByUUID(ctx context.Context, uuid string) ([]UserTeam, error)
	FetchUserTeamByUUIDForUpdate(ctx context.Context, uuid string) ([]UserTeam, error)
	FetchUserTeamByUserEmail(ctx context.Context, arg FetchUserTeamByUserEmailParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRole(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleAndStatus(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndStatus(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailOrderedByCreatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailOrderedByCreatedAtDESCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailOrderedByUpdatedAtASCParams) ([]UserTeam, error)
	FetchUserTeamByUserEmailOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailOrderedByUpdatedAtDESCParams) ([]UserTeam, error)
	InsertAiUsage(ctx context.Context, arg InsertAiUsageParams) (sql.Result, error)
	InsertChangeRequest(ctx context.Context, arg InsertChangeRequestParams) (sql.Result, error)
	InsertExtension(ctx context.Context, arg InsertExtensionParams) (sql.Result, error)
	InsertExtensionExecution(ctx context.Context, arg InsertExtensionExecutionParams) (sql.Result, error)
	InsertExtensionVersion(ctx context.Context, arg InsertExtensionVersionParams) (sql.Result, error)
	InsertMembership(ctx context.Context, arg InsertMembershipParams) (sql.Result, error)
	InsertProject(ctx context.Context, arg InsertProjectParams) (sql.Result, error)
	InsertProjectVersion(ctx context.Context, arg InsertProjectVersionParams) (sql.Result, error)
	InsertTeam(ctx context.Context, arg InsertTeamParams) (sql.Result, error)
	InsertUser(ctx context.Context, arg InsertUserParams) (sql.Result, error)
	InsertUserConnection(ctx context.Context, arg InsertUserConnectionParams) (sql.Result, error)
	InsertUserProject(ctx context.Context, arg InsertUserProjectParams) (sql.Result, error)
	InsertUserProjectVersion(ctx context.Context, arg InsertUserProjectVersionParams) (sql.Result, error)
	InsertUserTeam(ctx context.Context, arg InsertUserTeamParams) (sql.Result, error)
	SearchChangeRequest(ctx context.Context, arg SearchChangeRequestParams) ([]ChangeRequest, error)
	SearchExtension(ctx context.Context, arg SearchExtensionParams) ([]Extension, error)
	SearchProject(ctx context.Context, arg SearchProjectParams) ([]Project, error)
	SearchProjectVersion(ctx context.Context, arg SearchProjectVersionParams) ([]ProjectVersion, error)
	SearchTeam(ctx context.Context, arg SearchTeamParams) ([]Team, error)
	UpdateAiUsage(ctx context.Context, arg UpdateAiUsageParams) error
	UpdateChangeRequest(ctx context.Context, arg UpdateChangeRequestParams) error
	UpdateExtension(ctx context.Context, arg UpdateExtensionParams) error
	UpdateExtensionExecution(ctx context.Context, arg UpdateExtensionExecutionParams) error
	UpdateExtensionVersion(ctx context.Context, arg UpdateExtensionVersionParams) error
	UpdateMembership(ctx context.Context, arg UpdateMembershipParams) error
	UpdateProject(ctx context.Context, arg UpdateProjectParams) error
	UpdateProjectVersion(ctx context.Context, arg UpdateProjectVersionParams) error
	UpdateTeam(ctx context.Context, arg UpdateTeamParams) error
	UpdateUser(ctx context.Context, arg UpdateUserParams) error
	UpdateUserConnection(ctx context.Context, arg UpdateUserConnectionParams) error
	UpdateUserProject(ctx context.Context, arg UpdateUserProjectParams) error
	UpdateUserProjectVersion(ctx context.Context, arg UpdateUserProjectVersionParams) error
	UpdateUserTeam(ctx context.Context, arg UpdateUserTeamParams) error
}

type Queries

type Queries struct {
	// contains filtered or unexported fields
}

func New

func New(db DBTX) *Queries

func (*Queries) FetchAiUsageByContext added in v1.0.38

func (q *Queries) FetchAiUsageByContext(ctx context.Context, arg FetchAiUsageByContextParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProvider added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProvider(ctx context.Context, arg FetchAiUsageByContextAndProviderParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderAndStatus added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderAndStatus(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusOrderedByCreatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndProviderAndStatusOrderedByUpdatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderOrderedByCreatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndProviderOrderedByCreatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderOrderedByCreatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndProviderOrderedByCreatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderOrderedByUpdatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndProviderOrderedByUpdatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndProviderOrderedByUpdatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndProviderOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndProviderOrderedByUpdatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndStatus added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndStatus(ctx context.Context, arg FetchAiUsageByContextAndStatusParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndStatusOrderedByCreatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndStatusOrderedByCreatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndStatusOrderedByCreatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndStatusOrderedByCreatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndStatusOrderedByUpdatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByContextAndStatusOrderedByUpdatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextAndStatusOrderedByUpdatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByContextAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByContextAndStatusOrderedByUpdatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextOrderedByCreatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByContextOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByContextOrderedByCreatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextOrderedByCreatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByContextOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByContextOrderedByCreatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextOrderedByUpdatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByContextOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByContextOrderedByUpdatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByContextOrderedByUpdatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByContextOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByContextOrderedByUpdatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProvider added in v1.0.38

func (q *Queries) FetchAiUsageByProvider(ctx context.Context, arg FetchAiUsageByProviderParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderAndStatus added in v1.0.38

func (q *Queries) FetchAiUsageByProviderAndStatus(ctx context.Context, arg FetchAiUsageByProviderAndStatusParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderAndStatusOrderedByCreatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByProviderAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByProviderAndStatusOrderedByCreatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderAndStatusOrderedByCreatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByProviderAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByProviderAndStatusOrderedByCreatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderAndStatusOrderedByUpdatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByProviderAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByProviderAndStatusOrderedByUpdatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderAndStatusOrderedByUpdatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByProviderAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByProviderAndStatusOrderedByUpdatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderOrderedByCreatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByProviderOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByProviderOrderedByCreatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderOrderedByCreatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByProviderOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByProviderOrderedByCreatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderOrderedByUpdatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByProviderOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByProviderOrderedByUpdatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByProviderOrderedByUpdatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByProviderOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByProviderOrderedByUpdatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByStatus added in v1.0.38

func (q *Queries) FetchAiUsageByStatus(ctx context.Context, arg FetchAiUsageByStatusParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByStatusOrderedByCreatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchAiUsageByStatusOrderedByCreatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByStatusOrderedByCreatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchAiUsageByStatusOrderedByCreatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByStatusOrderedByUpdatedAtASC added in v1.0.38

func (q *Queries) FetchAiUsageByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchAiUsageByStatusOrderedByUpdatedAtASCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByStatusOrderedByUpdatedAtDESC added in v1.0.38

func (q *Queries) FetchAiUsageByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchAiUsageByStatusOrderedByUpdatedAtDESCParams) ([]AiUsage, error)

func (*Queries) FetchAiUsageByUUID added in v1.0.38

func (q *Queries) FetchAiUsageByUUID(ctx context.Context, uuid string) ([]AiUsage, error)

func (*Queries) FetchAiUsageByUUIDForUpdate added in v1.0.38

func (q *Queries) FetchAiUsageByUUIDForUpdate(ctx context.Context, uuid string) ([]AiUsage, error)

func (*Queries) FetchChangeRequestByChangeType added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeType(ctx context.Context, arg FetchChangeRequestByChangeTypeParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatus(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatus(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndReviewStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndStatus(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByChangeTypeOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByChangeTypeOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByChangeTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByChangeTypeOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatus(ctx context.Context, arg FetchChangeRequestByReviewStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusAndStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusAndStatus(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByReviewStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByReviewStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByReviewStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByReviewStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByReviewStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByStatus

func (q *Queries) FetchChangeRequestByStatus(ctx context.Context, arg FetchChangeRequestByStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByStatusOrderedByCreatedAtASC

func (q *Queries) FetchChangeRequestByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchChangeRequestByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchChangeRequestByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchChangeRequestByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByUUID

func (q *Queries) FetchChangeRequestByUUID(ctx context.Context, uuid string) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByUUIDForUpdate

func (q *Queries) FetchChangeRequestByUUIDForUpdate(ctx context.Context, uuid string) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersion

func (q *Queries) FetchChangeRequestByVersion(ctx context.Context, arg FetchChangeRequestByVersionParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeType added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeType(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatus(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatus(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndReviewStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndStatus(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndChangeTypeOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatus(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusAndStatus added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusAndStatus(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndReviewStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndStatus

func (q *Queries) FetchChangeRequestByVersionAndStatus(ctx context.Context, arg FetchChangeRequestByVersionAndStatusParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchChangeRequestByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndStatusOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchChangeRequestByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndStatusOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionOrderedByCreatedAtASC

func (q *Queries) FetchChangeRequestByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionOrderedByCreatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionOrderedByCreatedAtDESC

func (q *Queries) FetchChangeRequestByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionOrderedByCreatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionOrderedByUpdatedAtASC

func (q *Queries) FetchChangeRequestByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchChangeRequestByVersionOrderedByUpdatedAtASCParams) ([]ChangeRequest, error)

func (*Queries) FetchChangeRequestByVersionOrderedByUpdatedAtDESC

func (q *Queries) FetchChangeRequestByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchChangeRequestByVersionOrderedByUpdatedAtDESCParams) ([]ChangeRequest, error)

func (*Queries) FetchExtensionByExtensionType

func (q *Queries) FetchExtensionByExtensionType(ctx context.Context, arg FetchExtensionByExtensionTypeParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndPublic

func (q *Queries) FetchExtensionByExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndPublicAndStatus

func (q *Queries) FetchExtensionByExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndStatus

func (q *Queries) FetchExtensionByExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByExtensionTypeOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifier

func (q *Queries) FetchExtensionByIdentifier(ctx context.Context, arg FetchExtensionByIdentifierParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndExtensionType

func (q *Queries) FetchExtensionByIdentifierAndExtensionType(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndExtensionTypeAndPublic

func (q *Queries) FetchExtensionByIdentifierAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatus

func (q *Queries) FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndExtensionTypeAndStatus

func (q *Queries) FetchExtensionByIdentifierAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublic

func (q *Queries) FetchExtensionByIdentifierAndPublic(ctx context.Context, arg FetchExtensionByIdentifierAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicAndStatus

func (q *Queries) FetchExtensionByIdentifierAndPublicAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepository

func (q *Queries) FetchExtensionByIdentifierAndRepository(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryAndExtensionType

func (q *Queries) FetchExtensionByIdentifierAndRepositoryAndExtensionType(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublic

func (q *Queries) FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatus

func (q *Queries) FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndExtensionTypeAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryAndPublic

func (q *Queries) FetchExtensionByIdentifierAndRepositoryAndPublic(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryAndPublicAndStatus

func (q *Queries) FetchExtensionByIdentifierAndRepositoryAndPublicAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryAndStatus

func (q *Queries) FetchExtensionByIdentifierAndRepositoryAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndRepositoryOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndStatus

func (q *Queries) FetchExtensionByIdentifierAndStatus(ctx context.Context, arg FetchExtensionByIdentifierAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByIdentifierOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByIdentifierOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByIdentifierOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByIdentifierOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByIdentifierOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByIdentifierOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByIdentifierOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublic

func (q *Queries) FetchExtensionByPublic(ctx context.Context, arg FetchExtensionByPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicAndStatus

func (q *Queries) FetchExtensionByPublicAndStatus(ctx context.Context, arg FetchExtensionByPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByPublicOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByPublicOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByPublicOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByPublicOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepository

func (q *Queries) FetchExtensionByRepository(ctx context.Context, arg FetchExtensionByRepositoryParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndExtensionType

func (q *Queries) FetchExtensionByRepositoryAndExtensionType(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndExtensionTypeAndPublic

func (q *Queries) FetchExtensionByRepositoryAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatus

func (q *Queries) FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndExtensionTypeAndStatus

func (q *Queries) FetchExtensionByRepositoryAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublic

func (q *Queries) FetchExtensionByRepositoryAndPublic(ctx context.Context, arg FetchExtensionByRepositoryAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicAndStatus

func (q *Queries) FetchExtensionByRepositoryAndPublicAndStatus(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByRepositoryAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByRepositoryAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndStatus

func (q *Queries) FetchExtensionByRepositoryAndStatus(ctx context.Context, arg FetchExtensionByRepositoryAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByRepositoryAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByRepositoryAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByRepositoryOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByRepositoryOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByRepositoryOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByRepositoryOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByRepositoryOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByRepositoryOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByRepositoryOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByStatus

func (q *Queries) FetchExtensionByStatus(ctx context.Context, arg FetchExtensionByStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByUUID

func (q *Queries) FetchExtensionByUUID(ctx context.Context, uuid string) ([]Extension, error)

func (*Queries) FetchExtensionByUUIDForUpdate

func (q *Queries) FetchExtensionByUUIDForUpdate(ctx context.Context, uuid string) ([]Extension, error)

func (*Queries) FetchExtensionByVersion

func (q *Queries) FetchExtensionByVersion(ctx context.Context, arg FetchExtensionByVersionParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndExtensionType

func (q *Queries) FetchExtensionByVersionAndExtensionType(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndExtensionTypeAndPublic

func (q *Queries) FetchExtensionByVersionAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndExtensionTypeAndPublicAndStatus

func (q *Queries) FetchExtensionByVersionAndExtensionTypeAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndExtensionTypeAndStatus

func (q *Queries) FetchExtensionByVersionAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndExtensionTypeOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifier

func (q *Queries) FetchExtensionByVersionAndIdentifier(ctx context.Context, arg FetchExtensionByVersionAndIdentifierParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndExtensionType

func (q *Queries) FetchExtensionByVersionAndIdentifierAndExtensionType(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublic

func (q *Queries) FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatus

func (q *Queries) FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndExtensionTypeAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndPublic

func (q *Queries) FetchExtensionByVersionAndIdentifierAndPublic(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndPublicAndStatus

func (q *Queries) FetchExtensionByVersionAndIdentifierAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndRepository

func (q *Queries) FetchExtensionByVersionAndIdentifierAndRepository(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionType

func (q *Queries) FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionType(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndExtensionTypeParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndRepositoryAndPublic

func (q *Queries) FetchExtensionByVersionAndIdentifierAndRepositoryAndPublic(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatus

func (q *Queries) FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndRepositoryAndStatus

func (q *Queries) FetchExtensionByVersionAndIdentifierAndRepositoryAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndRepositoryAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndStatus

func (q *Queries) FetchExtensionByVersionAndIdentifierAndStatus(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndIdentifierOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndIdentifierOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndIdentifierOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublic

func (q *Queries) FetchExtensionByVersionAndPublic(ctx context.Context, arg FetchExtensionByVersionAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicAndStatus

func (q *Queries) FetchExtensionByVersionAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndPublicAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndPublicOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepository

func (q *Queries) FetchExtensionByVersionAndRepository(ctx context.Context, arg FetchExtensionByVersionAndRepositoryParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndExtensionType

func (q *Queries) FetchExtensionByVersionAndRepositoryAndExtensionType(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublic

func (q *Queries) FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublic(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatus

func (q *Queries) FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatus(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndExtensionTypeAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndPublic

func (q *Queries) FetchExtensionByVersionAndRepositoryAndPublic(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndPublicAndStatus

func (q *Queries) FetchExtensionByVersionAndRepositoryAndPublicAndStatus(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndPublicOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndStatus

func (q *Queries) FetchExtensionByVersionAndRepositoryAndStatus(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndRepositoryOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndRepositoryOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndRepositoryOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndStatus

func (q *Queries) FetchExtensionByVersionAndStatus(ctx context.Context, arg FetchExtensionByVersionAndStatusParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndStatusOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndStatusOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionAndStatusOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionOrderedByCreatedAtASC

func (q *Queries) FetchExtensionByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionByVersionOrderedByCreatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionByVersionOrderedByCreatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionByVersionOrderedByUpdatedAtASCParams) ([]Extension, error)

func (*Queries) FetchExtensionByVersionOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionByVersionOrderedByUpdatedAtDESCParams) ([]Extension, error)

func (*Queries) FetchExtensionExecutionByStatus

func (q *Queries) FetchExtensionExecutionByStatus(ctx context.Context, arg FetchExtensionExecutionByStatusParams) ([]ExtensionExecution, error)

func (*Queries) FetchExtensionExecutionByUUID

func (q *Queries) FetchExtensionExecutionByUUID(ctx context.Context, uuid string) ([]ExtensionExecution, error)

func (*Queries) FetchExtensionExecutionByUUIDForUpdate

func (q *Queries) FetchExtensionExecutionByUUIDForUpdate(ctx context.Context, uuid string) ([]ExtensionExecution, error)

func (*Queries) FetchExtensionVersionByStatus

func (q *Queries) FetchExtensionVersionByStatus(ctx context.Context, arg FetchExtensionVersionByStatusParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByStatusOrderedByCreatedAtASC

func (q *Queries) FetchExtensionVersionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionVersionByStatusOrderedByCreatedAtASCParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionVersionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionVersionByStatusOrderedByCreatedAtDESCParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionVersionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionVersionByStatusOrderedByUpdatedAtASCParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionVersionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionVersionByStatusOrderedByUpdatedAtDESCParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByUUID

func (q *Queries) FetchExtensionVersionByUUID(ctx context.Context, uuid string) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByUUIDForUpdate

func (q *Queries) FetchExtensionVersionByUUIDForUpdate(ctx context.Context, uuid string) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByVersion

func (q *Queries) FetchExtensionVersionByVersion(ctx context.Context, arg FetchExtensionVersionByVersionParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByVersionAndStatus

func (q *Queries) FetchExtensionVersionByVersionAndStatus(ctx context.Context, arg FetchExtensionVersionByVersionAndStatusParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByVersionOrderedByCreatedAtASC

func (q *Queries) FetchExtensionVersionByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchExtensionVersionByVersionOrderedByCreatedAtASCParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByVersionOrderedByCreatedAtDESC

func (q *Queries) FetchExtensionVersionByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchExtensionVersionByVersionOrderedByCreatedAtDESCParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByVersionOrderedByUpdatedAtASC

func (q *Queries) FetchExtensionVersionByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchExtensionVersionByVersionOrderedByUpdatedAtASCParams) ([]ExtensionVersion, error)

func (*Queries) FetchExtensionVersionByVersionOrderedByUpdatedAtDESC

func (q *Queries) FetchExtensionVersionByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchExtensionVersionByVersionOrderedByUpdatedAtDESCParams) ([]ExtensionVersion, error)

func (*Queries) FetchMembershipByStatus added in v1.0.25

func (q *Queries) FetchMembershipByStatus(ctx context.Context, arg FetchMembershipByStatusParams) ([]Membership, error)

func (*Queries) FetchMembershipByStatusOrderedByCreatedAtASC added in v1.0.25

func (q *Queries) FetchMembershipByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchMembershipByStatusOrderedByCreatedAtASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByStatusOrderedByCreatedAtDESC added in v1.0.25

func (q *Queries) FetchMembershipByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchMembershipByStatusOrderedByCreatedAtDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByStatusOrderedByStartDateASC added in v1.0.25

func (q *Queries) FetchMembershipByStatusOrderedByStartDateASC(ctx context.Context, arg FetchMembershipByStatusOrderedByStartDateASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByStatusOrderedByStartDateDESC added in v1.0.25

func (q *Queries) FetchMembershipByStatusOrderedByStartDateDESC(ctx context.Context, arg FetchMembershipByStatusOrderedByStartDateDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByStatusOrderedByUpdatedAtASC added in v1.0.25

func (q *Queries) FetchMembershipByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchMembershipByStatusOrderedByUpdatedAtASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByStatusOrderedByUpdatedAtDESC added in v1.0.25

func (q *Queries) FetchMembershipByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchMembershipByStatusOrderedByUpdatedAtDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByType added in v1.0.25

func (q *Queries) FetchMembershipByType(ctx context.Context, arg FetchMembershipByTypeParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeAndStatus added in v1.0.25

func (q *Queries) FetchMembershipByTypeAndStatus(ctx context.Context, arg FetchMembershipByTypeAndStatusParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeAndStatusOrderedByCreatedAtASC added in v1.0.25

func (q *Queries) FetchMembershipByTypeAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByCreatedAtASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeAndStatusOrderedByCreatedAtDESC added in v1.0.25

func (q *Queries) FetchMembershipByTypeAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByCreatedAtDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeAndStatusOrderedByStartDateASC added in v1.0.25

func (q *Queries) FetchMembershipByTypeAndStatusOrderedByStartDateASC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByStartDateASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeAndStatusOrderedByStartDateDESC added in v1.0.25

func (q *Queries) FetchMembershipByTypeAndStatusOrderedByStartDateDESC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByStartDateDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeAndStatusOrderedByUpdatedAtASC added in v1.0.25

func (q *Queries) FetchMembershipByTypeAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByUpdatedAtASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeAndStatusOrderedByUpdatedAtDESC added in v1.0.25

func (q *Queries) FetchMembershipByTypeAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchMembershipByTypeAndStatusOrderedByUpdatedAtDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeOrderedByCreatedAtASC added in v1.0.25

func (q *Queries) FetchMembershipByTypeOrderedByCreatedAtASC(ctx context.Context, arg FetchMembershipByTypeOrderedByCreatedAtASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeOrderedByCreatedAtDESC added in v1.0.25

func (q *Queries) FetchMembershipByTypeOrderedByCreatedAtDESC(ctx context.Context, arg FetchMembershipByTypeOrderedByCreatedAtDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeOrderedByStartDateASC added in v1.0.25

func (q *Queries) FetchMembershipByTypeOrderedByStartDateASC(ctx context.Context, arg FetchMembershipByTypeOrderedByStartDateASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeOrderedByStartDateDESC added in v1.0.25

func (q *Queries) FetchMembershipByTypeOrderedByStartDateDESC(ctx context.Context, arg FetchMembershipByTypeOrderedByStartDateDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeOrderedByUpdatedAtASC added in v1.0.25

func (q *Queries) FetchMembershipByTypeOrderedByUpdatedAtASC(ctx context.Context, arg FetchMembershipByTypeOrderedByUpdatedAtASCParams) ([]Membership, error)

func (*Queries) FetchMembershipByTypeOrderedByUpdatedAtDESC added in v1.0.25

func (q *Queries) FetchMembershipByTypeOrderedByUpdatedAtDESC(ctx context.Context, arg FetchMembershipByTypeOrderedByUpdatedAtDESCParams) ([]Membership, error)

func (*Queries) FetchMembershipByUUID added in v1.0.25

func (q *Queries) FetchMembershipByUUID(ctx context.Context, uuid string) ([]Membership, error)

func (*Queries) FetchMembershipByUUIDForUpdate added in v1.0.25

func (q *Queries) FetchMembershipByUUIDForUpdate(ctx context.Context, uuid string) ([]Membership, error)

func (*Queries) FetchProjectByName

func (q *Queries) FetchProjectByName(ctx context.Context, arg FetchProjectByNameParams) ([]Project, error)

func (*Queries) FetchProjectByNameAndStatus

func (q *Queries) FetchProjectByNameAndStatus(ctx context.Context, arg FetchProjectByNameAndStatusParams) ([]Project, error)

func (*Queries) FetchProjectByNameAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchProjectByNameAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByNameAndStatusOrderedByCreatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByNameAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchProjectByNameAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByNameAndStatusOrderedByCreatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByNameAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchProjectByNameAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByNameAndStatusOrderedByUpdatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByNameAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectByNameAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByNameAndStatusOrderedByUpdatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByNameOrderedByCreatedAtASC

func (q *Queries) FetchProjectByNameOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByNameOrderedByCreatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByNameOrderedByCreatedAtDESC

func (q *Queries) FetchProjectByNameOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByNameOrderedByCreatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByNameOrderedByUpdatedAtASC

func (q *Queries) FetchProjectByNameOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByNameOrderedByUpdatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByNameOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectByNameOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByNameOrderedByUpdatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByStatus

func (q *Queries) FetchProjectByStatus(ctx context.Context, arg FetchProjectByStatusParams) ([]Project, error)

func (*Queries) FetchProjectByStatusOrderedByCreatedAtASC

func (q *Queries) FetchProjectByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByStatusOrderedByCreatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchProjectByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByStatusOrderedByCreatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchProjectByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByStatusOrderedByUpdatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByStatusOrderedByUpdatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByUUID

func (q *Queries) FetchProjectByUUID(ctx context.Context, uuid string) ([]Project, error)

func (*Queries) FetchProjectByUUIDForUpdate

func (q *Queries) FetchProjectByUUIDForUpdate(ctx context.Context, uuid string) ([]Project, error)

func (*Queries) FetchProjectByVersion

func (q *Queries) FetchProjectByVersion(ctx context.Context, arg FetchProjectByVersionParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndName

func (q *Queries) FetchProjectByVersionAndName(ctx context.Context, arg FetchProjectByVersionAndNameParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameAndStatus

func (q *Queries) FetchProjectByVersionAndNameAndStatus(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusOrderedByCreatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndNameAndStatusOrderedByUpdatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameOrderedByCreatedAtASC

func (q *Queries) FetchProjectByVersionAndNameOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByVersionAndNameOrderedByCreatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameOrderedByCreatedAtDESC

func (q *Queries) FetchProjectByVersionAndNameOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndNameOrderedByCreatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameOrderedByUpdatedAtASC

func (q *Queries) FetchProjectByVersionAndNameOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByVersionAndNameOrderedByUpdatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndNameOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectByVersionAndNameOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndNameOrderedByUpdatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndStatus

func (q *Queries) FetchProjectByVersionAndStatus(ctx context.Context, arg FetchProjectByVersionAndStatusParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchProjectByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByVersionAndStatusOrderedByCreatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchProjectByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndStatusOrderedByCreatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchProjectByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByVersionAndStatusOrderedByUpdatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionOrderedByCreatedAtASC

func (q *Queries) FetchProjectByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectByVersionOrderedByCreatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionOrderedByCreatedAtDESC

func (q *Queries) FetchProjectByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectByVersionOrderedByCreatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionOrderedByUpdatedAtASC

func (q *Queries) FetchProjectByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectByVersionOrderedByUpdatedAtASCParams) ([]Project, error)

func (*Queries) FetchProjectByVersionOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectByVersionOrderedByUpdatedAtDESCParams) ([]Project, error)

func (*Queries) FetchProjectVersionByReviewStatus

func (q *Queries) FetchProjectVersionByReviewStatus(ctx context.Context, arg FetchProjectVersionByReviewStatusParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByReviewStatusAndStatus

func (q *Queries) FetchProjectVersionByReviewStatusAndStatus(ctx context.Context, arg FetchProjectVersionByReviewStatusAndStatusParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByReviewStatusOrderedByCreatedAtASC

func (q *Queries) FetchProjectVersionByReviewStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByReviewStatusOrderedByCreatedAtASCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByReviewStatusOrderedByCreatedAtDESC

func (q *Queries) FetchProjectVersionByReviewStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByReviewStatusOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByReviewStatusOrderedByUpdatedAtASC

func (q *Queries) FetchProjectVersionByReviewStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByReviewStatusOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByReviewStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectVersionByReviewStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByReviewStatusOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByStatus

func (q *Queries) FetchProjectVersionByStatus(ctx context.Context, arg FetchProjectVersionByStatusParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByStatusOrderedByCreatedAtASC

func (q *Queries) FetchProjectVersionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByStatusOrderedByCreatedAtASCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchProjectVersionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByStatusOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchProjectVersionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByStatusOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectVersionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByStatusOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByUUID

func (q *Queries) FetchProjectVersionByUUID(ctx context.Context, uuid string) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByUUIDForUpdate

func (q *Queries) FetchProjectVersionByUUIDForUpdate(ctx context.Context, uuid string) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByVersion

func (q *Queries) FetchProjectVersionByVersion(ctx context.Context, arg FetchProjectVersionByVersionParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByVersionAndReviewStatus

func (q *Queries) FetchProjectVersionByVersionAndReviewStatus(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByVersionAndReviewStatusAndStatus

func (q *Queries) FetchProjectVersionByVersionAndReviewStatusAndStatus(ctx context.Context, arg FetchProjectVersionByVersionAndReviewStatusAndStatusParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByVersionAndStatus

func (q *Queries) FetchProjectVersionByVersionAndStatus(ctx context.Context, arg FetchProjectVersionByVersionAndStatusParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByVersionOrderedByCreatedAtASC

func (q *Queries) FetchProjectVersionByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionOrderedByCreatedAtASCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByVersionOrderedByCreatedAtDESC

func (q *Queries) FetchProjectVersionByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionOrderedByCreatedAtDESCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByVersionOrderedByUpdatedAtASC

func (q *Queries) FetchProjectVersionByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchProjectVersionByVersionOrderedByUpdatedAtASCParams) ([]ProjectVersion, error)

func (*Queries) FetchProjectVersionByVersionOrderedByUpdatedAtDESC

func (q *Queries) FetchProjectVersionByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchProjectVersionByVersionOrderedByUpdatedAtDESCParams) ([]ProjectVersion, error)

func (*Queries) FetchTeamByStatus

func (q *Queries) FetchTeamByStatus(ctx context.Context, arg FetchTeamByStatusParams) ([]Team, error)

func (*Queries) FetchTeamByStatusOrderedByCreatedAtASC

func (q *Queries) FetchTeamByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchTeamByStatusOrderedByCreatedAtASCParams) ([]Team, error)

func (*Queries) FetchTeamByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchTeamByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchTeamByStatusOrderedByCreatedAtDESCParams) ([]Team, error)

func (*Queries) FetchTeamByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchTeamByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchTeamByStatusOrderedByUpdatedAtASCParams) ([]Team, error)

func (*Queries) FetchTeamByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchTeamByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchTeamByStatusOrderedByUpdatedAtDESCParams) ([]Team, error)

func (*Queries) FetchTeamByUUID

func (q *Queries) FetchTeamByUUID(ctx context.Context, uuid string) ([]Team, error)

func (*Queries) FetchTeamByUUIDForUpdate

func (q *Queries) FetchTeamByUUIDForUpdate(ctx context.Context, uuid string) ([]Team, error)

func (*Queries) FetchTeamByVersion

func (q *Queries) FetchTeamByVersion(ctx context.Context, arg FetchTeamByVersionParams) ([]Team, error)

func (*Queries) FetchTeamByVersionAndStatus

func (q *Queries) FetchTeamByVersionAndStatus(ctx context.Context, arg FetchTeamByVersionAndStatusParams) ([]Team, error)

func (*Queries) FetchTeamByVersionAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchTeamByVersionAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchTeamByVersionAndStatusOrderedByCreatedAtASCParams) ([]Team, error)

func (*Queries) FetchTeamByVersionAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchTeamByVersionAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchTeamByVersionAndStatusOrderedByCreatedAtDESCParams) ([]Team, error)

func (*Queries) FetchTeamByVersionAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchTeamByVersionAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchTeamByVersionAndStatusOrderedByUpdatedAtASCParams) ([]Team, error)

func (*Queries) FetchTeamByVersionAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchTeamByVersionAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchTeamByVersionAndStatusOrderedByUpdatedAtDESCParams) ([]Team, error)

func (*Queries) FetchTeamByVersionOrderedByCreatedAtASC

func (q *Queries) FetchTeamByVersionOrderedByCreatedAtASC(ctx context.Context, arg FetchTeamByVersionOrderedByCreatedAtASCParams) ([]Team, error)

func (*Queries) FetchTeamByVersionOrderedByCreatedAtDESC

func (q *Queries) FetchTeamByVersionOrderedByCreatedAtDESC(ctx context.Context, arg FetchTeamByVersionOrderedByCreatedAtDESCParams) ([]Team, error)

func (*Queries) FetchTeamByVersionOrderedByUpdatedAtASC

func (q *Queries) FetchTeamByVersionOrderedByUpdatedAtASC(ctx context.Context, arg FetchTeamByVersionOrderedByUpdatedAtASCParams) ([]Team, error)

func (*Queries) FetchTeamByVersionOrderedByUpdatedAtDESC

func (q *Queries) FetchTeamByVersionOrderedByUpdatedAtDESC(ctx context.Context, arg FetchTeamByVersionOrderedByUpdatedAtDESCParams) ([]Team, error)

func (*Queries) FetchUserByEmail

func (q *Queries) FetchUserByEmail(ctx context.Context, arg FetchUserByEmailParams) ([]User, error)

func (*Queries) FetchUserByEmailAndStatus

func (q *Queries) FetchUserByEmailAndStatus(ctx context.Context, arg FetchUserByEmailAndStatusParams) ([]User, error)

func (*Queries) FetchUserByEmailAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchUserByEmailAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByEmailAndStatusOrderedByCreatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByEmailAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchUserByEmailAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByEmailAndStatusOrderedByCreatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByEmailAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchUserByEmailAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByEmailAndStatusOrderedByUpdatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByEmailAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchUserByEmailAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByEmailAndStatusOrderedByUpdatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByEmailOrderedByCreatedAtASC

func (q *Queries) FetchUserByEmailOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByEmailOrderedByCreatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByEmailOrderedByCreatedAtDESC

func (q *Queries) FetchUserByEmailOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByEmailOrderedByCreatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByEmailOrderedByUpdatedAtASC

func (q *Queries) FetchUserByEmailOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByEmailOrderedByUpdatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByEmailOrderedByUpdatedAtDESC

func (q *Queries) FetchUserByEmailOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByEmailOrderedByUpdatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByIdentifier

func (q *Queries) FetchUserByIdentifier(ctx context.Context, arg FetchUserByIdentifierParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmail

func (q *Queries) FetchUserByIdentifierAndEmail(ctx context.Context, arg FetchUserByIdentifierAndEmailParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailAndStatus

func (q *Queries) FetchUserByIdentifierAndEmailAndStatus(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusOrderedByCreatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndEmailAndStatusOrderedByUpdatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailOrderedByCreatedAtASC

func (q *Queries) FetchUserByIdentifierAndEmailOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndEmailOrderedByCreatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailOrderedByCreatedAtDESC

func (q *Queries) FetchUserByIdentifierAndEmailOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndEmailOrderedByCreatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailOrderedByUpdatedAtASC

func (q *Queries) FetchUserByIdentifierAndEmailOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndEmailOrderedByUpdatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndEmailOrderedByUpdatedAtDESC

func (q *Queries) FetchUserByIdentifierAndEmailOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndEmailOrderedByUpdatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndStatus

func (q *Queries) FetchUserByIdentifierAndStatus(ctx context.Context, arg FetchUserByIdentifierAndStatusParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchUserByIdentifierAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndStatusOrderedByCreatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchUserByIdentifierAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndStatusOrderedByCreatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchUserByIdentifierAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByIdentifierAndStatusOrderedByUpdatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchUserByIdentifierAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByIdentifierAndStatusOrderedByUpdatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierOrderedByCreatedAtASC

func (q *Queries) FetchUserByIdentifierOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByIdentifierOrderedByCreatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierOrderedByCreatedAtDESC

func (q *Queries) FetchUserByIdentifierOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByIdentifierOrderedByCreatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierOrderedByUpdatedAtASC

func (q *Queries) FetchUserByIdentifierOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByIdentifierOrderedByUpdatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByIdentifierOrderedByUpdatedAtDESC

func (q *Queries) FetchUserByIdentifierOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByIdentifierOrderedByUpdatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByStatus

func (q *Queries) FetchUserByStatus(ctx context.Context, arg FetchUserByStatusParams) ([]User, error)

func (*Queries) FetchUserByStatusOrderedByCreatedAtASC

func (q *Queries) FetchUserByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserByStatusOrderedByCreatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchUserByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserByStatusOrderedByCreatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchUserByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserByStatusOrderedByUpdatedAtASCParams) ([]User, error)

func (*Queries) FetchUserByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchUserByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserByStatusOrderedByUpdatedAtDESCParams) ([]User, error)

func (*Queries) FetchUserByUUID

func (q *Queries) FetchUserByUUID(ctx context.Context, uuid string) ([]User, error)

func (*Queries) FetchUserByUUIDForUpdate

func (q *Queries) FetchUserByUUIDForUpdate(ctx context.Context, uuid string) ([]User, error)

func (*Queries) FetchUserConnectionByStatus

func (q *Queries) FetchUserConnectionByStatus(ctx context.Context, arg FetchUserConnectionByStatusParams) ([]UserConnection, error)

func (*Queries) FetchUserConnectionByStatusOrderedByCreatedAtASC

func (q *Queries) FetchUserConnectionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserConnectionByStatusOrderedByCreatedAtASCParams) ([]UserConnection, error)

func (*Queries) FetchUserConnectionByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchUserConnectionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserConnectionByStatusOrderedByCreatedAtDESCParams) ([]UserConnection, error)

func (*Queries) FetchUserConnectionByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchUserConnectionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserConnectionByStatusOrderedByUpdatedAtASCParams) ([]UserConnection, error)

func (*Queries) FetchUserConnectionByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchUserConnectionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserConnectionByStatusOrderedByUpdatedAtDESCParams) ([]UserConnection, error)

func (*Queries) FetchUserConnectionByUUID

func (q *Queries) FetchUserConnectionByUUID(ctx context.Context, uuid string) ([]UserConnection, error)

func (*Queries) FetchUserConnectionByUUIDForUpdate

func (q *Queries) FetchUserConnectionByUUIDForUpdate(ctx context.Context, uuid string) ([]UserConnection, error)

func (*Queries) FetchUserProjectByRole added in v1.0.20

func (q *Queries) FetchUserProjectByRole(ctx context.Context, arg FetchUserProjectByRoleParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleAndStatus added in v1.0.20

func (q *Queries) FetchUserProjectByRoleAndStatus(ctx context.Context, arg FetchUserProjectByRoleAndStatusParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByRoleAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByRoleAndStatusOrderedByCreatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByRoleAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByRoleAndStatusOrderedByCreatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByRoleAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByRoleAndStatusOrderedByUpdatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByRoleAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByRoleAndStatusOrderedByUpdatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByRoleOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByRoleOrderedByCreatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByRoleOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByRoleOrderedByCreatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByRoleOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByRoleOrderedByUpdatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByRoleOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByRoleOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByRoleOrderedByUpdatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByStatus added in v1.0.17

func (q *Queries) FetchUserProjectByStatus(ctx context.Context, arg FetchUserProjectByStatusParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByStatusOrderedByCreatedAtASC added in v1.0.17

func (q *Queries) FetchUserProjectByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByStatusOrderedByCreatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByStatusOrderedByCreatedAtDESC added in v1.0.17

func (q *Queries) FetchUserProjectByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByStatusOrderedByCreatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByStatusOrderedByUpdatedAtASC added in v1.0.17

func (q *Queries) FetchUserProjectByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByStatusOrderedByUpdatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByStatusOrderedByUpdatedAtDESC added in v1.0.17

func (q *Queries) FetchUserProjectByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByStatusOrderedByUpdatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUUID added in v1.0.17

func (q *Queries) FetchUserProjectByUUID(ctx context.Context, uuid string) ([]UserProject, error)

func (*Queries) FetchUserProjectByUUIDForUpdate added in v1.0.17

func (q *Queries) FetchUserProjectByUUIDForUpdate(ctx context.Context, uuid string) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmail added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmail(ctx context.Context, arg FetchUserProjectByUserEmailParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRole added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRole(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleAndStatus added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleAndStatus(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusOrderedByCreatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleOrderedByCreatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndRoleOrderedByUpdatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndStatus added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndStatus(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusOrderedByCreatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailAndStatusOrderedByUpdatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailOrderedByCreatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailOrderedByCreatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectByUserEmailOrderedByUpdatedAtASCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectByUserEmailOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserProjectByUserEmailOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectByUserEmailOrderedByUpdatedAtDESCParams) ([]UserProject, error)

func (*Queries) FetchUserProjectVersionByStatus added in v1.0.13

func (q *Queries) FetchUserProjectVersionByStatus(ctx context.Context, arg FetchUserProjectVersionByStatusParams) ([]UserProjectVersion, error)

func (*Queries) FetchUserProjectVersionByStatusOrderedByCreatedAtASC added in v1.0.13

func (q *Queries) FetchUserProjectVersionByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserProjectVersionByStatusOrderedByCreatedAtASCParams) ([]UserProjectVersion, error)

func (*Queries) FetchUserProjectVersionByStatusOrderedByCreatedAtDESC added in v1.0.13

func (q *Queries) FetchUserProjectVersionByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserProjectVersionByStatusOrderedByCreatedAtDESCParams) ([]UserProjectVersion, error)

func (*Queries) FetchUserProjectVersionByStatusOrderedByUpdatedAtASC added in v1.0.13

func (q *Queries) FetchUserProjectVersionByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserProjectVersionByStatusOrderedByUpdatedAtASCParams) ([]UserProjectVersion, error)

func (*Queries) FetchUserProjectVersionByStatusOrderedByUpdatedAtDESC added in v1.0.13

func (q *Queries) FetchUserProjectVersionByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserProjectVersionByStatusOrderedByUpdatedAtDESCParams) ([]UserProjectVersion, error)

func (*Queries) FetchUserProjectVersionByUUID added in v1.0.13

func (q *Queries) FetchUserProjectVersionByUUID(ctx context.Context, uuid string) ([]UserProjectVersion, error)

func (*Queries) FetchUserProjectVersionByUUIDForUpdate added in v1.0.13

func (q *Queries) FetchUserProjectVersionByUUIDForUpdate(ctx context.Context, uuid string) ([]UserProjectVersion, error)

func (*Queries) FetchUserTeamByRole added in v1.0.20

func (q *Queries) FetchUserTeamByRole(ctx context.Context, arg FetchUserTeamByRoleParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleAndStatus added in v1.0.20

func (q *Queries) FetchUserTeamByRoleAndStatus(ctx context.Context, arg FetchUserTeamByRoleAndStatusParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserTeamByRoleAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByRoleAndStatusOrderedByCreatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserTeamByRoleAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByRoleAndStatusOrderedByCreatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserTeamByRoleAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByRoleAndStatusOrderedByUpdatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserTeamByRoleAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByRoleAndStatusOrderedByUpdatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserTeamByRoleOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByRoleOrderedByCreatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserTeamByRoleOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByRoleOrderedByCreatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserTeamByRoleOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByRoleOrderedByUpdatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByRoleOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserTeamByRoleOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByRoleOrderedByUpdatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByStatus

func (q *Queries) FetchUserTeamByStatus(ctx context.Context, arg FetchUserTeamByStatusParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByStatusOrderedByCreatedAtASC

func (q *Queries) FetchUserTeamByStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByStatusOrderedByCreatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByStatusOrderedByCreatedAtDESC

func (q *Queries) FetchUserTeamByStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByStatusOrderedByCreatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByStatusOrderedByUpdatedAtASC

func (q *Queries) FetchUserTeamByStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByStatusOrderedByUpdatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchUserTeamByStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByStatusOrderedByUpdatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUUID

func (q *Queries) FetchUserTeamByUUID(ctx context.Context, uuid string) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUUIDForUpdate

func (q *Queries) FetchUserTeamByUUIDForUpdate(ctx context.Context, uuid string) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmail

func (q *Queries) FetchUserTeamByUserEmail(ctx context.Context, arg FetchUserTeamByUserEmailParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRole added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRole(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleAndStatus added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleAndStatus(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusOrderedByCreatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleAndStatusOrderedByUpdatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtASC added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtDESC added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleOrderedByCreatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtASC added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtDESC added in v1.0.20

func (q *Queries) FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndRoleOrderedByUpdatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndStatus

func (q *Queries) FetchUserTeamByUserEmailAndStatus(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtASC

func (q *Queries) FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtDESC

func (q *Queries) FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusOrderedByCreatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtASC

func (q *Queries) FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtDESC

func (q *Queries) FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailAndStatusOrderedByUpdatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailOrderedByCreatedAtASC

func (q *Queries) FetchUserTeamByUserEmailOrderedByCreatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailOrderedByCreatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailOrderedByCreatedAtDESC

func (q *Queries) FetchUserTeamByUserEmailOrderedByCreatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailOrderedByCreatedAtDESCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailOrderedByUpdatedAtASC

func (q *Queries) FetchUserTeamByUserEmailOrderedByUpdatedAtASC(ctx context.Context, arg FetchUserTeamByUserEmailOrderedByUpdatedAtASCParams) ([]UserTeam, error)

func (*Queries) FetchUserTeamByUserEmailOrderedByUpdatedAtDESC

func (q *Queries) FetchUserTeamByUserEmailOrderedByUpdatedAtDESC(ctx context.Context, arg FetchUserTeamByUserEmailOrderedByUpdatedAtDESCParams) ([]UserTeam, error)

func (*Queries) InsertAiUsage added in v1.0.38

func (q *Queries) InsertAiUsage(ctx context.Context, arg InsertAiUsageParams) (sql.Result, error)

func (*Queries) InsertChangeRequest

func (q *Queries) InsertChangeRequest(ctx context.Context, arg InsertChangeRequestParams) (sql.Result, error)

func (*Queries) InsertExtension

func (q *Queries) InsertExtension(ctx context.Context, arg InsertExtensionParams) (sql.Result, error)

func (*Queries) InsertExtensionExecution

func (q *Queries) InsertExtensionExecution(ctx context.Context, arg InsertExtensionExecutionParams) (sql.Result, error)

func (*Queries) InsertExtensionVersion

func (q *Queries) InsertExtensionVersion(ctx context.Context, arg InsertExtensionVersionParams) (sql.Result, error)

func (*Queries) InsertMembership added in v1.0.25

func (q *Queries) InsertMembership(ctx context.Context, arg InsertMembershipParams) (sql.Result, error)

func (*Queries) InsertProject

func (q *Queries) InsertProject(ctx context.Context, arg InsertProjectParams) (sql.Result, error)

func (*Queries) InsertProjectVersion

func (q *Queries) InsertProjectVersion(ctx context.Context, arg InsertProjectVersionParams) (sql.Result, error)

func (*Queries) InsertTeam

func (q *Queries) InsertTeam(ctx context.Context, arg InsertTeamParams) (sql.Result, error)

func (*Queries) InsertUser

func (q *Queries) InsertUser(ctx context.Context, arg InsertUserParams) (sql.Result, error)

func (*Queries) InsertUserConnection

func (q *Queries) InsertUserConnection(ctx context.Context, arg InsertUserConnectionParams) (sql.Result, error)

func (*Queries) InsertUserProject added in v1.0.17

func (q *Queries) InsertUserProject(ctx context.Context, arg InsertUserProjectParams) (sql.Result, error)

func (*Queries) InsertUserProjectVersion added in v1.0.13

func (q *Queries) InsertUserProjectVersion(ctx context.Context, arg InsertUserProjectVersionParams) (sql.Result, error)

func (*Queries) InsertUserTeam

func (q *Queries) InsertUserTeam(ctx context.Context, arg InsertUserTeamParams) (sql.Result, error)

func (*Queries) SearchChangeRequest

func (q *Queries) SearchChangeRequest(ctx context.Context, arg SearchChangeRequestParams) ([]ChangeRequest, error)

func (*Queries) SearchExtension

func (q *Queries) SearchExtension(ctx context.Context, arg SearchExtensionParams) ([]Extension, error)

func (*Queries) SearchProject

func (q *Queries) SearchProject(ctx context.Context, arg SearchProjectParams) ([]Project, error)

func (*Queries) SearchProjectVersion

func (q *Queries) SearchProjectVersion(ctx context.Context, arg SearchProjectVersionParams) ([]ProjectVersion, error)

func (*Queries) SearchTeam

func (q *Queries) SearchTeam(ctx context.Context, arg SearchTeamParams) ([]Team, error)

func (*Queries) UpdateAiUsage added in v1.0.38

func (q *Queries) UpdateAiUsage(ctx context.Context, arg UpdateAiUsageParams) error

func (*Queries) UpdateChangeRequest

func (q *Queries) UpdateChangeRequest(ctx context.Context, arg UpdateChangeRequestParams) error

func (*Queries) UpdateExtension

func (q *Queries) UpdateExtension(ctx context.Context, arg UpdateExtensionParams) error

func (*Queries) UpdateExtensionExecution

func (q *Queries) UpdateExtensionExecution(ctx context.Context, arg UpdateExtensionExecutionParams) error

func (*Queries) UpdateExtensionVersion

func (q *Queries) UpdateExtensionVersion(ctx context.Context, arg UpdateExtensionVersionParams) error

func (*Queries) UpdateMembership added in v1.0.25

func (q *Queries) UpdateMembership(ctx context.Context, arg UpdateMembershipParams) error

func (*Queries) UpdateProject

func (q *Queries) UpdateProject(ctx context.Context, arg UpdateProjectParams) error

func (*Queries) UpdateProjectVersion

func (q *Queries) UpdateProjectVersion(ctx context.Context, arg UpdateProjectVersionParams) error

func (*Queries) UpdateTeam

func (q *Queries) UpdateTeam(ctx context.Context, arg UpdateTeamParams) error

func (*Queries) UpdateUser

func (q *Queries) UpdateUser(ctx context.Context, arg UpdateUserParams) error

func (*Queries) UpdateUserConnection

func (q *Queries) UpdateUserConnection(ctx context.Context, arg UpdateUserConnectionParams) error

func (*Queries) UpdateUserProject added in v1.0.17

func (q *Queries) UpdateUserProject(ctx context.Context, arg UpdateUserProjectParams) error

func (*Queries) UpdateUserProjectVersion added in v1.0.13

func (q *Queries) UpdateUserProjectVersion(ctx context.Context, arg UpdateUserProjectVersionParams) error

func (*Queries) UpdateUserTeam

func (q *Queries) UpdateUserTeam(ctx context.Context, arg UpdateUserTeamParams) error

func (*Queries) WithTx

func (q *Queries) WithTx(tx *sql.Tx) *Queries

type SearchChangeRequestParams

type SearchChangeRequestParams struct {
	Title       string         `json:"title"`
	Description sql.NullString `json:"description"`
	Offset      int32          `json:"offset"`
	Limit       int32          `json:"limit"`
}

type SearchExtensionParams

type SearchExtensionParams struct {
	Identifier  string         `json:"identifier"`
	Description sql.NullString `json:"description"`
	Offset      int32          `json:"offset"`
	Limit       int32          `json:"limit"`
}

type SearchProjectParams

type SearchProjectParams struct {
	Name        string         `json:"name"`
	Description sql.NullString `json:"description"`
	Offset      int32          `json:"offset"`
	Limit       int32          `json:"limit"`
}

type SearchProjectVersionParams

type SearchProjectVersionParams struct {
	Description string `json:"description"`
	Offset      int32  `json:"offset"`
	Limit       int32  `json:"limit"`
}

type SearchTeamParams

type SearchTeamParams struct {
	Name   string `json:"name"`
	Offset int32  `json:"offset"`
	Limit  int32  `json:"limit"`
}

type Team

type Team struct {
	UUID          string    `json:"uuid"`
	Version       int64     `json:"version"`
	Name          string    `json:"name"`
	Enviorments   []byte    `json:"enviorments"`
	ReviewConfigs []byte    `json:"review_configs"`
	Stores        []byte    `json:"stores"`
	Connections   []byte    `json:"connections"`
	ObjectStores  []byte    `json:"object_stores"`
	DefaultEntity []byte    `json:"default_entity"`
	OwnerUUID     string    `json:"owner_uuid"`
	Status        int64     `json:"status"`
	CreatedAt     time.Time `json:"created_at"`
	UpdatedAt     time.Time `json:"updated_at"`
	CreatedByUUID string    `json:"created_by_uuid"`
	UpdatedByUUID string    `json:"updated_by_uuid"`
}

type UpdateAiUsageParams added in v1.0.38

type UpdateAiUsageParams struct {
	UserUUID           string    `json:"user_uuid"`
	ProjectUUID        string    `json:"project_uuid"`
	ProjectVersionUUID string    `json:"project_version_uuid"`
	UserPrompt         string    `json:"user_prompt"`
	Step               string    `json:"step"`
	Context            int64     `json:"context"`
	Provider           int64     `json:"provider"`
	InputTokens        int64     `json:"input_tokens"`
	OutputTokens       int64     `json:"output_tokens"`
	Status             int64     `json:"status"`
	CreatedAt          time.Time `json:"created_at"`
	UpdatedAt          time.Time `json:"updated_at"`
	CreatedByUUID      string    `json:"created_by_uuid"`
	UpdatedByUUID      string    `json:"updated_by_uuid"`
	UUID               string    `json:"uuid"`
}

type UpdateChangeRequestParams

type UpdateChangeRequestParams struct {
	Version            int64          `json:"version"`
	Title              string         `json:"title"`
	Description        sql.NullString `json:"description"`
	ProjectUUID        string         `json:"project_uuid"`
	ProjectVersionUUID string         `json:"project_version_uuid"`
	ChangeType         int64          `json:"change_type"`
	DataChanges        []byte         `json:"data_changes"`
	Metadata           []byte         `json:"metadata"`
	Reviews            []byte         `json:"reviews"`
	ReviewStatus       int64          `json:"review_status"`
	OwnerUUID          string         `json:"owner_uuid"`
	Status             int64          `json:"status"`
	CreatedAt          time.Time      `json:"created_at"`
	UpdatedAt          time.Time      `json:"updated_at"`
	CreatedByUUID      string         `json:"created_by_uuid"`
	UpdatedByUUID      string         `json:"updated_by_uuid"`
	UUID               string         `json:"uuid"`
}

type UpdateExtensionExecutionParams

type UpdateExtensionExecutionParams struct {
	ExtensionUUID        string         `json:"extension_uuid"`
	ExtensionVersionUUID string         `json:"extension_version_uuid"`
	ProjectExtensionUUID sql.NullString `json:"project_extension_uuid"`
	ProjectUUID          string         `json:"project_uuid"`
	ProjectVersionUUID   string         `json:"project_version_uuid"`
	ExecutedByUUID       string         `json:"executed_by_uuid"`
	Metadata             []byte         `json:"metadata"`
	Status               int64          `json:"status"`
	StatusMsg            sql.NullString `json:"status_msg"`
	CreatedAt            time.Time      `json:"created_at"`
	UpdatedAt            time.Time      `json:"updated_at"`
	UUID                 string         `json:"uuid"`
}

type UpdateExtensionParams

type UpdateExtensionParams struct {
	Version           int64          `json:"version"`
	Identifier        string         `json:"identifier"`
	DisplayName       sql.NullString `json:"display_name"`
	DisplayAuthorName sql.NullString `json:"display_author_name"`
	Description       sql.NullString `json:"description"`
	URL               sql.NullString `json:"url"`
	Verfied           bool           `json:"verfied"`
	Repository        string         `json:"repository"`
	ExtensionType     int64          `json:"extension_type"`
	Tags              []byte         `json:"tags"`
	Public            bool           `json:"public"`
	Visibility        []byte         `json:"visibility"`
	Status            int64          `json:"status"`
	OwnerUUID         string         `json:"owner_uuid"`
	CreatedAt         time.Time      `json:"created_at"`
	UpdatedAt         time.Time      `json:"updated_at"`
	CreatedByUUID     string         `json:"created_by_uuid"`
	UpdatedByUUID     string         `json:"updated_by_uuid"`
	UUID              string         `json:"uuid"`
}

type UpdateExtensionVersionParams

type UpdateExtensionVersionParams struct {
	Version             int64           `json:"version"`
	ExtensionUUID       string          `json:"extension_uuid"`
	DisplayVersion      sql.NullString  `json:"display_version"`
	Description         sql.NullString  `json:"description"`
	RepositoryTag       string          `json:"repository_tag"`
	ConfigurationEntity []byte          `json:"configuration_entity"`
	ExecutionMode       json.RawMessage `json:"execution_mode"`
	ReviewStatus        int64           `json:"review_status"`
	Status              int64           `json:"status"`
	CreatedAt           time.Time       `json:"created_at"`
	UpdatedAt           time.Time       `json:"updated_at"`
	CreatedByUUID       string          `json:"created_by_uuid"`
	UpdatedByUUID       string          `json:"updated_by_uuid"`
	UUID                string          `json:"uuid"`
}

type UpdateMembershipParams added in v1.0.25

type UpdateMembershipParams struct {
	OwnerUUID       string          `json:"owner_uuid"`
	Type            int64           `json:"type"`
	StartDate       time.Time       `json:"start_date"`
	BillingMetadata json.RawMessage `json:"billing_metadata"`
	Status          int64           `json:"status"`
	CreatedAt       time.Time       `json:"created_at"`
	UpdatedAt       time.Time       `json:"updated_at"`
	CreatedByUUID   string          `json:"created_by_uuid"`
	UpdatedByUUID   string          `json:"updated_by_uuid"`
	UUID            string          `json:"uuid"`
}

type UpdateProjectParams

type UpdateProjectParams struct {
	Version           int64          `json:"version"`
	Name              string         `json:"name"`
	Description       sql.NullString `json:"description"`
	Tags              []byte         `json:"tags"`
	URL               sql.NullString `json:"url"`
	OwnerUUID         string         `json:"owner_uuid"`
	TeamUUID          string         `json:"team_uuid"`
	AccessType        int64          `json:"access_type"`
	ProjectExtensions []byte         `json:"project_extensions"`
	Status            int64          `json:"status"`
	CreatedAt         time.Time      `json:"created_at"`
	UpdatedAt         time.Time      `json:"updated_at"`
	CreatedByUUID     string         `json:"created_by_uuid"`
	UpdatedByUUID     string         `json:"updated_by_uuid"`
	UUID              string         `json:"uuid"`
}

type UpdateProjectVersionParams

type UpdateProjectVersionParams struct {
	Version         int64           `json:"version"`
	Identifier      string          `json:"identifier"`
	Description     string          `json:"description"`
	ProjectUUID     string          `json:"project_uuid"`
	Entities        json.RawMessage `json:"entities"`
	Relationships   json.RawMessage `json:"relationships"`
	Enums           json.RawMessage `json:"enums"`
	Services        json.RawMessage `json:"services"`
	BaseVersionUUID sql.NullString  `json:"base_version_uuid"`
	ReviewStatus    int64           `json:"review_status"`
	Deployments     []byte          `json:"deployments"`
	Status          int64           `json:"status"`
	CreatedAt       time.Time       `json:"created_at"`
	UpdatedAt       time.Time       `json:"updated_at"`
	CreatedByUUID   string          `json:"created_by_uuid"`
	UpdatedByUUID   string          `json:"updated_by_uuid"`
	UUID            string          `json:"uuid"`
}

type UpdateTeamParams

type UpdateTeamParams struct {
	Version       int64     `json:"version"`
	Name          string    `json:"name"`
	Enviorments   []byte    `json:"enviorments"`
	ReviewConfigs []byte    `json:"review_configs"`
	Stores        []byte    `json:"stores"`
	Connections   []byte    `json:"connections"`
	ObjectStores  []byte    `json:"object_stores"`
	DefaultEntity []byte    `json:"default_entity"`
	OwnerUUID     string    `json:"owner_uuid"`
	Status        int64     `json:"status"`
	CreatedAt     time.Time `json:"created_at"`
	UpdatedAt     time.Time `json:"updated_at"`
	CreatedByUUID string    `json:"created_by_uuid"`
	UpdatedByUUID string    `json:"updated_by_uuid"`
	UUID          string    `json:"uuid"`
}

type UpdateUserConnectionParams

type UpdateUserConnectionParams struct {
	UserUUID           string          `json:"user_uuid"`
	ProjectUUID        string          `json:"project_uuid"`
	ProjectVersionUUID sql.NullString  `json:"project_version_uuid"`
	Type               int64           `json:"type"`
	TypeConfig         json.RawMessage `json:"type_config"`
	DbSchema           string          `json:"db_schema"`
	Executions         []byte          `json:"executions"`
	Status             int64           `json:"status"`
	CreatedAt          time.Time       `json:"created_at"`
	UpdatedAt          time.Time       `json:"updated_at"`
	UUID               string          `json:"uuid"`
}

type UpdateUserParams

type UpdateUserParams struct {
	Identifier  string         `json:"identifier"`
	Name        sql.NullString `json:"name"`
	LastName    sql.NullString `json:"last_name"`
	Email       string         `json:"email"`
	UserType    int64          `json:"user_type"`
	CountryIos2 sql.NullString `json:"country_ios2"`
	Locale      sql.NullString `json:"locale"`
	Metadata    sql.NullString `json:"metadata"`
	Status      int64          `json:"status"`
	CreatedAt   time.Time      `json:"created_at"`
	UpdatedAt   time.Time      `json:"updated_at"`
	UUID        string         `json:"uuid"`
}

type UpdateUserProjectParams added in v1.0.17

type UpdateUserProjectParams struct {
	UserUUID                sql.NullString `json:"user_uuid"`
	UserEmail               sql.NullString `json:"user_email"`
	ProjectUUID             string         `json:"project_uuid"`
	Role                    int64          `json:"role"`
	ReviewRequiredStructure bool           `json:"review_required_structure"`
	ReviewRequiredData      bool           `json:"review_required_data"`
	Status                  int64          `json:"status"`
	CreatedAt               time.Time      `json:"created_at"`
	UpdatedAt               time.Time      `json:"updated_at"`
	CreatedByUUID           string         `json:"created_by_uuid"`
	UpdatedByUUID           string         `json:"updated_by_uuid"`
	UUID                    string         `json:"uuid"`
}

type UpdateUserProjectVersionParams added in v1.0.13

type UpdateUserProjectVersionParams struct {
	Version            int64     `json:"version"`
	ProjectVersionUUID string    `json:"project_version_uuid"`
	UserUUID           string    `json:"user_uuid"`
	Data               []byte    `json:"data"`
	Status             int64     `json:"status"`
	CreatedAt          time.Time `json:"created_at"`
	UpdatedAt          time.Time `json:"updated_at"`
	CreatedByUUID      string    `json:"created_by_uuid"`
	UpdatedByUUID      string    `json:"updated_by_uuid"`
	UUID               string    `json:"uuid"`
}

type UpdateUserTeamParams

type UpdateUserTeamParams struct {
	UserUUID                sql.NullString `json:"user_uuid"`
	UserEmail               sql.NullString `json:"user_email"`
	TeamUUID                string         `json:"team_uuid"`
	Role                    int64          `json:"role"`
	ReviewRequiredStructure bool           `json:"review_required_structure"`
	ReviewRequiredData      bool           `json:"review_required_data"`
	Status                  int64          `json:"status"`
	CreatedAt               time.Time      `json:"created_at"`
	UpdatedAt               time.Time      `json:"updated_at"`
	CreatedByUUID           string         `json:"created_by_uuid"`
	UpdatedByUUID           string         `json:"updated_by_uuid"`
	UUID                    string         `json:"uuid"`
}

type User

type User struct {
	UUID        string         `json:"uuid"`
	Identifier  string         `json:"identifier"`
	Name        sql.NullString `json:"name"`
	LastName    sql.NullString `json:"last_name"`
	Email       string         `json:"email"`
	UserType    int64          `json:"user_type"`
	CountryIos2 sql.NullString `json:"country_ios2"`
	Locale      sql.NullString `json:"locale"`
	Metadata    sql.NullString `json:"metadata"`
	Status      int64          `json:"status"`
	CreatedAt   time.Time      `json:"created_at"`
	UpdatedAt   time.Time      `json:"updated_at"`
}

type UserConnection

type UserConnection struct {
	UUID               string          `json:"uuid"`
	UserUUID           string          `json:"user_uuid"`
	ProjectUUID        string          `json:"project_uuid"`
	ProjectVersionUUID sql.NullString  `json:"project_version_uuid"`
	Type               int64           `json:"type"`
	TypeConfig         json.RawMessage `json:"type_config"`
	DbSchema           string          `json:"db_schema"`
	Executions         []byte          `json:"executions"`
	Status             int64           `json:"status"`
	CreatedAt          time.Time       `json:"created_at"`
	UpdatedAt          time.Time       `json:"updated_at"`
}

type UserProject added in v1.0.17

type UserProject struct {
	UUID                    string         `json:"uuid"`
	UserUUID                sql.NullString `json:"user_uuid"`
	UserEmail               sql.NullString `json:"user_email"`
	ProjectUUID             string         `json:"project_uuid"`
	Role                    int64          `json:"role"`
	ReviewRequiredStructure bool           `json:"review_required_structure"`
	ReviewRequiredData      bool           `json:"review_required_data"`
	Status                  int64          `json:"status"`
	CreatedAt               time.Time      `json:"created_at"`
	UpdatedAt               time.Time      `json:"updated_at"`
	CreatedByUUID           string         `json:"created_by_uuid"`
	UpdatedByUUID           string         `json:"updated_by_uuid"`
}

type UserProjectVersion added in v1.0.13

type UserProjectVersion struct {
	UUID               string    `json:"uuid"`
	Version            int64     `json:"version"`
	ProjectVersionUUID string    `json:"project_version_uuid"`
	UserUUID           string    `json:"user_uuid"`
	Data               []byte    `json:"data"`
	Status             int64     `json:"status"`
	CreatedAt          time.Time `json:"created_at"`
	UpdatedAt          time.Time `json:"updated_at"`
	CreatedByUUID      string    `json:"created_by_uuid"`
	UpdatedByUUID      string    `json:"updated_by_uuid"`
}

type UserTeam

type UserTeam struct {
	UUID                    string         `json:"uuid"`
	UserUUID                sql.NullString `json:"user_uuid"`
	UserEmail               sql.NullString `json:"user_email"`
	TeamUUID                string         `json:"team_uuid"`
	Role                    int64          `json:"role"`
	ReviewRequiredStructure bool           `json:"review_required_structure"`
	ReviewRequiredData      bool           `json:"review_required_data"`
	Status                  int64          `json:"status"`
	CreatedAt               time.Time      `json:"created_at"`
	UpdatedAt               time.Time      `json:"updated_at"`
	CreatedByUUID           string         `json:"created_by_uuid"`
	UpdatedByUUID           string         `json:"updated_by_uuid"`
}

Jump to

Keyboard shortcuts

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