Skip to content

Commit

Permalink
feat(history): add batch history support
Browse files Browse the repository at this point in the history
Add fetch messages (batch history) endpoint support to fetch history for multiple channels.

feat(history): add fetch messages with message reactions

Add fetch messages with reactions support.

feat(custom-message-type): add support for fetch messages

Add `include_custom_message_type` support for fetch messages endpoint.
  • Loading branch information
parfeon committed Jan 2, 2025
1 parent 11390aa commit 0dcbcfd
Show file tree
Hide file tree
Showing 36 changed files with 8,582 additions and 6,541 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ group :test do
gem 'rspec-retry'
gem 'rspec-expectations'
gem 'rubocop'
gem 'standard'
gem 'simplecov', '>= 0.21.2', require: false
gem 'vcr'
gem 'webmock'
Expand Down
17 changes: 17 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ GEM
interception (0.5)
json (2.7.2)
language_server-protocol (3.17.0.3)
lint_roller (1.1.0)
method_source (1.1.0)
mini_mime (1.1.5)
multi_test (1.1.0)
Expand Down Expand Up @@ -147,13 +148,28 @@ GEM
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.32.3)
parser (>= 3.3.1.0)
rubocop-performance (1.23.0)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (1.13.0)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-html (0.13.1)
simplecov_json_formatter (0.1.4)
standard (1.41.1)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.66.0)
standard-custom (~> 1.0.0)
standard-performance (~> 1.5)
standard-custom (1.0.2)
lint_roller (~> 1.0)
rubocop (~> 1.50)
standard-performance (1.6.0)
lint_roller (~> 1.1)
rubocop-performance (~> 1.23.0)
sys-uname (1.3.0)
ffi (~> 1.1)
timers (4.3.5)
Expand Down Expand Up @@ -183,6 +199,7 @@ DEPENDENCIES
rspec-retry
rubocop
simplecov (>= 0.21.2)
standard
vcr
webmock

Expand Down
46 changes: 46 additions & 0 deletions fixtures/vcr_cassettes/examples/fetch_messages/001.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions fixtures/vcr_cassettes/examples/fetch_messages/002.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions fixtures/vcr_cassettes/examples/fetch_messages/003.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions fixtures/vcr_cassettes/examples/fetch_messages/004.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions fixtures/vcr_cassettes/examples/fetch_messages/005.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions fixtures/vcr_cassettes/examples/fetch_messages/006.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions fixtures/vcr_cassettes/examples/fetch_messages/007.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0dcbcfd

Please sign in to comment.