files.com 1.1.665 → 1.1.666

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: 6e3727d564089b8d1ae773b807d73192b90ec4e36a326c947926780345fbb698
4
- data.tar.gz: a2a522046ce1f647ecb5bed78eba78f750e19a04e52b9d8049e42f61d59b3d87
3
+ metadata.gz: 4c1dc7b9486dbcc5ef33c20e1f9d366faa95fed896d40c3356b8e4c2742811ac
4
+ data.tar.gz: 24fec0e97ab3484673bcee4e5fd0a8b1a878d431d5fd27e4156950537d5fde7e
5
5
  SHA512:
6
- metadata.gz: c58eda792cef4b533fe9f63c3bd5c1e3ee13a6d2a1db1287c582f53800d2edc66d98b2cb87159d1e9282a0ccf76f6cc84deec031f9e240ffd191b4e6f8fe39f2
7
- data.tar.gz: fb0ce7944ebb3b4e3f485932f54e1350ef61685a0228382980a26f99c4b43082495f08089be166f0082356e541286d6134e9b8a281343caacc4dc0df6120adb2
6
+ metadata.gz: 106b53749f2a78dfa85bd195ba019e7a4a8c5b5e2007934d5a7af83ef1353c0bb1a5a76e89527a32590af9aebfcbb744f73d1d91db4c313cc38d9ac5b8492969
7
+ data.tar.gz: 3357c0fdd0f20e95694d72c836d69489f476b5346c442fd9351721e45265f9480dd7f7b1864eedfbdfff0fc97c185f5a678041a5db808b526eadfffda43b0111
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.665
1
+ 1.1.666
data/docs/chat_session.md CHANGED
@@ -42,8 +42,8 @@ Files::ChatSession.list
42
42
 
43
43
  * `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
44
44
  * `per_page` (int64): Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
45
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `id` and `workspace_id`.
46
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `ai_task_id`, `user_id` or `workspace_id`. Valid field combinations are `[ workspace_id, ai_task_id ]` and `[ workspace_id, user_id ]`.
45
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `id`.
46
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `ai_task_id`, `user_id` or `workspace_id`.
47
47
 
48
48
 
49
49
  ---
@@ -47,8 +47,8 @@ module Files
47
47
  # Parameters:
48
48
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
49
49
  # per_page - int64 - Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
50
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `id` and `workspace_id`.
51
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `ai_task_id`, `user_id` or `workspace_id`. Valid field combinations are `[ workspace_id, ai_task_id ]` and `[ workspace_id, user_id ]`.
50
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `id`.
51
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `ai_task_id`, `user_id` or `workspace_id`.
52
52
  def self.list(params = {}, options = {})
53
53
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
54
54
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params[:per_page] and !params[:per_page].is_a?(Integer)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.665"
4
+ VERSION = "1.1.666"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.665
4
+ version: 1.1.666
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com