add monitor scanned at to bsky monitor
This commit is contained in:
67
sorbet/rbi/dsl/domain/post/bluesky_post.rbi
generated
67
sorbet/rbi/dsl/domain/post/bluesky_post.rbi
generated
@@ -1435,6 +1435,61 @@ class Domain::Post::BlueskyPost
|
||||
sig { void }
|
||||
def mentions_will_change!; end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at; end
|
||||
|
||||
sig { params(value: T.nilable(::ActiveSupport::TimeWithZone)).returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at=(value); end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def monitor_scanned_at?; end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at_before_last_save; end
|
||||
|
||||
sig { returns(T.untyped) }
|
||||
def monitor_scanned_at_before_type_cast; end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def monitor_scanned_at_came_from_user?; end
|
||||
|
||||
sig { returns(T.nilable([T.nilable(::ActiveSupport::TimeWithZone), T.nilable(::ActiveSupport::TimeWithZone)])) }
|
||||
def monitor_scanned_at_change; end
|
||||
|
||||
sig { returns(T.nilable([T.nilable(::ActiveSupport::TimeWithZone), T.nilable(::ActiveSupport::TimeWithZone)])) }
|
||||
def monitor_scanned_at_change_to_be_saved; end
|
||||
|
||||
sig do
|
||||
params(
|
||||
from: T.nilable(::ActiveSupport::TimeWithZone),
|
||||
to: T.nilable(::ActiveSupport::TimeWithZone)
|
||||
).returns(T::Boolean)
|
||||
end
|
||||
def monitor_scanned_at_changed?(from: T.unsafe(nil), to: T.unsafe(nil)); end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at_in_database; end
|
||||
|
||||
sig { returns(T.nilable([T.nilable(::ActiveSupport::TimeWithZone), T.nilable(::ActiveSupport::TimeWithZone)])) }
|
||||
def monitor_scanned_at_previous_change; end
|
||||
|
||||
sig do
|
||||
params(
|
||||
from: T.nilable(::ActiveSupport::TimeWithZone),
|
||||
to: T.nilable(::ActiveSupport::TimeWithZone)
|
||||
).returns(T::Boolean)
|
||||
end
|
||||
def monitor_scanned_at_previously_changed?(from: T.unsafe(nil), to: T.unsafe(nil)); end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at_previously_was; end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at_was; end
|
||||
|
||||
sig { void }
|
||||
def monitor_scanned_at_will_change!; end
|
||||
|
||||
sig { returns(T.untyped) }
|
||||
def post_raw; end
|
||||
|
||||
@@ -1796,6 +1851,9 @@ class Domain::Post::BlueskyPost
|
||||
sig { void }
|
||||
def restore_mentions!; end
|
||||
|
||||
sig { void }
|
||||
def restore_monitor_scanned_at!; end
|
||||
|
||||
sig { void }
|
||||
def restore_post_raw!; end
|
||||
|
||||
@@ -1952,6 +2010,12 @@ class Domain::Post::BlueskyPost
|
||||
sig { returns(T::Boolean) }
|
||||
def saved_change_to_mentions?; end
|
||||
|
||||
sig { returns(T.nilable([T.nilable(::ActiveSupport::TimeWithZone), T.nilable(::ActiveSupport::TimeWithZone)])) }
|
||||
def saved_change_to_monitor_scanned_at; end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def saved_change_to_monitor_scanned_at?; end
|
||||
|
||||
sig { returns(T.nilable([T.untyped, T.untyped])) }
|
||||
def saved_change_to_post_raw; end
|
||||
|
||||
@@ -2301,6 +2365,9 @@ class Domain::Post::BlueskyPost
|
||||
sig { returns(T::Boolean) }
|
||||
def will_save_change_to_mentions?; end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def will_save_change_to_monitor_scanned_at?; end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def will_save_change_to_post_raw?; end
|
||||
|
||||
|
||||
67
sorbet/rbi/dsl/domain_posts_bluesky_aux.rbi
generated
67
sorbet/rbi/dsl/domain_posts_bluesky_aux.rbi
generated
@@ -1048,6 +1048,61 @@ class DomainPostsBlueskyAux
|
||||
sig { void }
|
||||
def mentions_will_change!; end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at; end
|
||||
|
||||
sig { params(value: T.nilable(::ActiveSupport::TimeWithZone)).returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at=(value); end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def monitor_scanned_at?; end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at_before_last_save; end
|
||||
|
||||
sig { returns(T.untyped) }
|
||||
def monitor_scanned_at_before_type_cast; end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def monitor_scanned_at_came_from_user?; end
|
||||
|
||||
sig { returns(T.nilable([T.nilable(::ActiveSupport::TimeWithZone), T.nilable(::ActiveSupport::TimeWithZone)])) }
|
||||
def monitor_scanned_at_change; end
|
||||
|
||||
sig { returns(T.nilable([T.nilable(::ActiveSupport::TimeWithZone), T.nilable(::ActiveSupport::TimeWithZone)])) }
|
||||
def monitor_scanned_at_change_to_be_saved; end
|
||||
|
||||
sig do
|
||||
params(
|
||||
from: T.nilable(::ActiveSupport::TimeWithZone),
|
||||
to: T.nilable(::ActiveSupport::TimeWithZone)
|
||||
).returns(T::Boolean)
|
||||
end
|
||||
def monitor_scanned_at_changed?(from: T.unsafe(nil), to: T.unsafe(nil)); end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at_in_database; end
|
||||
|
||||
sig { returns(T.nilable([T.nilable(::ActiveSupport::TimeWithZone), T.nilable(::ActiveSupport::TimeWithZone)])) }
|
||||
def monitor_scanned_at_previous_change; end
|
||||
|
||||
sig do
|
||||
params(
|
||||
from: T.nilable(::ActiveSupport::TimeWithZone),
|
||||
to: T.nilable(::ActiveSupport::TimeWithZone)
|
||||
).returns(T::Boolean)
|
||||
end
|
||||
def monitor_scanned_at_previously_changed?(from: T.unsafe(nil), to: T.unsafe(nil)); end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at_previously_was; end
|
||||
|
||||
sig { returns(T.nilable(::ActiveSupport::TimeWithZone)) }
|
||||
def monitor_scanned_at_was; end
|
||||
|
||||
sig { void }
|
||||
def monitor_scanned_at_will_change!; end
|
||||
|
||||
sig { returns(T.untyped) }
|
||||
def post_raw; end
|
||||
|
||||
@@ -1345,6 +1400,9 @@ class DomainPostsBlueskyAux
|
||||
sig { void }
|
||||
def restore_mentions!; end
|
||||
|
||||
sig { void }
|
||||
def restore_monitor_scanned_at!; end
|
||||
|
||||
sig { void }
|
||||
def restore_post_raw!; end
|
||||
|
||||
@@ -1474,6 +1532,12 @@ class DomainPostsBlueskyAux
|
||||
sig { returns(T::Boolean) }
|
||||
def saved_change_to_mentions?; end
|
||||
|
||||
sig { returns(T.nilable([T.nilable(::ActiveSupport::TimeWithZone), T.nilable(::ActiveSupport::TimeWithZone)])) }
|
||||
def saved_change_to_monitor_scanned_at; end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def saved_change_to_monitor_scanned_at?; end
|
||||
|
||||
sig { returns(T.nilable([T.untyped, T.untyped])) }
|
||||
def saved_change_to_post_raw; end
|
||||
|
||||
@@ -1706,6 +1770,9 @@ class DomainPostsBlueskyAux
|
||||
sig { returns(T::Boolean) }
|
||||
def will_save_change_to_mentions?; end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def will_save_change_to_monitor_scanned_at?; end
|
||||
|
||||
sig { returns(T::Boolean) }
|
||||
def will_save_change_to_post_raw?; end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user