stream-chat-ruby 3.16.0 → 3.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abe37f40d0bab27e95a353d06e16746c6bf581d6b17e007963572cabac0e1ad3
4
- data.tar.gz: 2c0e8cd83b7a9d30982469efe54612526d7ea83c3c71d8a8b3ac76748b8be988
3
+ metadata.gz: 1931489e635ef2e2a3f052c55bd01063d013571745721e37e6dfdee96d86ce84
4
+ data.tar.gz: 020ebe362659ec374a3d45db80815cffa696f00dfca0ff1b57d329496d5762ed
5
5
  SHA512:
6
- metadata.gz: 8151d017630003390f49c4b067b941e31ff4cd95190f934f8c4b51b05392d01b687b6129b2c7a45d30eb4f1196bd3c729a95ef0a912f00f8aa579c7b22a508da
7
- data.tar.gz: 492cbf78fc3b4eebb89771d9ff5a3a45160e05bdfbaf7fe72ea2e97d04db0ffd7d426499883d089e14fa1f475b414a68a211d1c9a9343e723c33c54ddc2d85e8
6
+ metadata.gz: 03ea03f3fe7831cd3f2424d937a75b27e98077e03aea57fd029105af3c5be15fc4c46bb7895a19960d8ba25c4dd9e5fef020ec670e5e4417d8b3a3c5889f147a
7
+ data.tar.gz: 1e7c7a0b52920e7b3cd6a36b20503f46d0f02cedca6cf34cfb6ab25f443bfbc42f621cafd8ad45381796fc4f3106f78d1f7dc61a08e41a6cf78a1612eea53ca7
data/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [3.17.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.16.0...v3.17.0) (2025-06-25)
6
+
5
7
  ## [3.16.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.15.0...v3.16.0) (2025-06-18)
6
8
 
7
9
  ## [3.15.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.14.0...v3.15.0) (2025-06-06)
@@ -419,6 +419,13 @@ module StreamChat
419
419
  delete("messages/#{message_id}", params: options)
420
420
  end
421
421
 
422
+ # Un-deletes a message.
423
+ sig { params(message_id: String, undeleted_by: String, options: T.untyped).returns(StreamChat::StreamResponse) }
424
+ def undelete_message(message_id, undeleted_by, **options)
425
+ payload = { undeleted_by: undeleted_by }.merge(options)
426
+ post("messages/#{message_id}/undelete", data: payload)
427
+ end
428
+
422
429
  # Queries banned users.
423
430
  #
424
431
  # Banned users can be retrieved in different ways:
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module StreamChat
5
- VERSION = '3.16.0'
5
+ VERSION = '3.17.0'
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stream-chat-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.16.0
4
+ version: 3.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - getstream.io
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-18 00:00:00.000000000 Z
11
+ date: 2025-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday