stream-chat-ruby 3.9.0 → 3.10.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 +4 -4
- data/CHANGELOG.md +2 -0
- data/lib/stream-chat/client.rb +10 -0
- data/lib/stream-chat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: de00e378a56be9ea98d87a4e0d7231dab883de98915034046472af4d90af1278
|
4
|
+
data.tar.gz: fda3500112ca0321bc15911c36e3fe46bcf71cf11edf161ab34f4b9538e1fa13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9524ae62fec54c676ac646336db82f55c85cbf41315cc28d51e948d5dc5eb92eeb342ec4ea44ee7c1d4c6cef133f2fce3bb313ff41c12f761c464c9a7814f7ed
|
7
|
+
data.tar.gz: a6d48aed8e2828b1fb84742e472d71beb4d54ff8ef7268c0c70a22662ec16c805abf4aacb37c6a0682cfec4770b2f43b8aeeb3d6b7ac146ebb08ebef1b07c23e
|
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.10.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.9.0...v3.10.0) (2025-02-24)
|
6
|
+
|
5
7
|
## [3.9.0](https://github.com/GetStream/stream-chat-ruby/compare/v3.7.0...v3.9.0) (2025-02-11)
|
6
8
|
|
7
9
|
|
data/lib/stream-chat/client.rb
CHANGED
@@ -643,6 +643,16 @@ module StreamChat
|
|
643
643
|
get("export_channels/#{task_id}")
|
644
644
|
end
|
645
645
|
|
646
|
+
# Requests a users export.
|
647
|
+
#
|
648
|
+
# User exports are created asynchronously, you can use the Task ID returned by
|
649
|
+
# the APIs to keep track of the status and to download the final result when it is ready.
|
650
|
+
# Use `get_task` to check the status of the export.
|
651
|
+
sig { params(user_ids: T::Array[String]).returns(StreamChat::StreamResponse) }
|
652
|
+
def export_users(user_ids)
|
653
|
+
post('export/users', data: { user_ids: user_ids })
|
654
|
+
end
|
655
|
+
|
646
656
|
# Returns the status of a task.
|
647
657
|
sig { params(task_id: String).returns(StreamChat::StreamResponse) }
|
648
658
|
def get_task(task_id)
|
data/lib/stream-chat/version.rb
CHANGED
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.
|
4
|
+
version: 3.10.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-02-
|
11
|
+
date: 2025-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|