Versions in this module Expand all Collapse all v0 v0.6.1 Feb 23, 2025 v0.6.0 Feb 23, 2025 Changes in this version + type PendingNotificationRepository interface + CreatePendingNotification func(ctx context.Context, arg db.CreatePendingNotificationParams) (db.PendingNotification, error) + DeletePendingNotification func(ctx context.Context, id int64) error + DeletePendingNotificationByInvoiceRequest func(ctx context.Context, invoiceRequestID sql.NullInt64) error + DeletePendingNotifications func(ctx context.Context, ids []int64) error + ListPendingNotifications func(ctx context.Context, nodeID int64) ([]db.PendingNotification, error) + UpdatePendingNotifications func(ctx context.Context, arg db.UpdatePendingNotificationsParams) error + UpdatePendingNotificationsByUser func(ctx context.Context, arg db.UpdatePendingNotificationsByUserParams) error + func NewRepository(repositoryService *db.RepositoryService) PendingNotificationRepository