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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc66cf1d3115b5eb2e6a0dd5dde77171f8eb48cf529dac9f394b2e60392e6351
4
- data.tar.gz: 425211255ee7781cd1a11f52a0e2cd83e8c9310c8a925da3840c25c3992a4957
3
+ metadata.gz: de00e378a56be9ea98d87a4e0d7231dab883de98915034046472af4d90af1278
4
+ data.tar.gz: fda3500112ca0321bc15911c36e3fe46bcf71cf11edf161ab34f4b9538e1fa13
5
5
  SHA512:
6
- metadata.gz: a9cc42c283b4a273677ef1268d96c432e140b4fa2702739e603e6b3c5f0e43e4fbe51dc8a22224022cfada24e1207f29d5563ad317afcde61f54d56400709366
7
- data.tar.gz: 8d9fd68cd6c64c4f9d27fd7691331dc35bfda968c25e7add1aee783180a2cf1389763bde093ce2993518c44b6c7a2097a248cb81e667812f4797057a238337cf
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
 
@@ -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)
@@ -2,5 +2,5 @@
2
2
  # frozen_string_literal: true
3
3
 
4
4
  module StreamChat
5
- VERSION = '3.9.0'
5
+ VERSION = '3.10.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.9.0
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-12 00:00:00.000000000 Z
11
+ date: 2025-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday