files.com 1.1.585 → 1.1.586

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: b4a4cc4151955a415daf9786a88904d61f7da7ea8c9e3ed003939c69507ba043
4
- data.tar.gz: 7274f729bb0342b7b6061eef5e73bfd133df854c11ac48fc726147e2aaba92a8
3
+ metadata.gz: 7381871a12348fc7bc7c94188042ec8de9229d5738feabd920e45609b09f9177
4
+ data.tar.gz: 054a63d35f2e9ef3e577b7d0ee34b1d1cdf897a124c5dbe9cce484381f3ba57a
5
5
  SHA512:
6
- metadata.gz: 6897940df2fe0490ca63febcc65c559e57cdd3688e47d926553649df7b0e7a842a267926eaae661f6c990bf685b5d13151a49e42186dfe4c4793c9c970a44a49
7
- data.tar.gz: 20619d61edad5ac394afc578b64518e24a74e5032fc8e1ba53f6423c010bbabb40c5f40678e464bba35bed63f47099e117c32fa24186cec4cb36b3fa35d17e3e
6
+ metadata.gz: 9f6fc64d2b72989574c192e74976bd3432ffc3d21b911d73d4061a0926a7ba2c16fc7ec35adbb8acae831d0d578b2eae134156f1788e11d18459d9f4ef05b216
7
+ data.tar.gz: f5eabdd14a03394c0ea5955e14a7d85a0fb5fd1b63e4ba4ac173ade4e56cbb7e3225e08936f81a734220a54343657b8c292448730809d2425d4e7295e346fff2
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.585
1
+ 1.1.586
@@ -34,7 +34,7 @@ Files::KeyLifecycleRule.list
34
34
  * `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.
35
35
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
36
36
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `workspace_id` and `key_type`.
37
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `workspace_id`.
37
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `key_type` and `workspace_id`. Valid field combinations are `[ workspace_id, key_type ]`.
38
38
 
39
39
 
40
40
  ---
@@ -113,7 +113,7 @@ module Files
113
113
  # 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.
114
114
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
115
115
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `workspace_id` and `key_type`.
116
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `workspace_id`.
116
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `key_type` and `workspace_id`. Valid field combinations are `[ workspace_id, key_type ]`.
117
117
  def self.list(params = {}, options = {})
118
118
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
119
119
  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.585"
4
+ VERSION = "1.1.586"
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.585
4
+ version: 1.1.586
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com