files.com 1.1.79 → 1.1.81

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: 86fcb154b4213de2ee8e0006bdfc8f76404b2be76df750069bfb90dc3a3b8106
4
- data.tar.gz: f351c81263aa23c2d3298f189d2e1546ed765db045caea19dff5a613ae03b99c
3
+ metadata.gz: 5d27978c06bf5d25644b5f45c96068090fc1f65813785371d780eb683d075d21
4
+ data.tar.gz: b0b1fa1c7f58c6e93a080059005a88958eb93938530fced6c533e903e4bf29f1
5
5
  SHA512:
6
- metadata.gz: 31f132008edd388c6086eeb13e7659749372228c4f00d588136e024c9f7d38984e0d82e9debc3de9ef95461fdc55acc54fad7840dfb4015059b920f44ffbe7b6
7
- data.tar.gz: 1722951b07245b993d99bed566779ed60aa557fbc806eabae6ed44ed50d368c22f1d4a7a60e029b9b93f1f2d727385a18f42b5d21324aed160ff33f482ab0070
6
+ metadata.gz: e8b22ae9788e5f1d47e9e555b901341b6fde1ce49d1af88ae08ec0b64c27f5cf8be62d68ac808f832b2e422760253544baeee912198bd02a6faac666ad62b4fc
7
+ data.tar.gz: 4256d3724bf90b0b753294e4d7f05d874044f82ec6557b486e2364fdfbf59ca55794a34b82e9ad00e6c9e1d9fac7b795b62cbe8f3c8b28b774c5918e84aece16
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.79
1
+ 1.1.81
data/docs/behavior.md CHANGED
@@ -45,8 +45,8 @@ Files::Behavior.list(
45
45
 
46
46
  * `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.
47
47
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
48
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[behavior]=desc`). Valid fields are `behavior`.
49
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `behavior`.
48
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[behavior]=desc`). Valid fields are `behavior` and `impacts_ui`.
49
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `impacts_ui` and `behavior`.
50
50
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `behavior`.
51
51
 
52
52
 
@@ -78,8 +78,8 @@ Files::Behavior.list_for(path,
78
78
 
79
79
  * `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.
80
80
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
81
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[behavior]=desc`). Valid fields are `behavior`.
82
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `behavior`.
81
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[behavior]=desc`). Valid fields are `behavior` and `impacts_ui`.
82
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `impacts_ui` and `behavior`.
83
83
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `behavior`.
84
84
  * `path` (string): Required - Path to operate on.
85
85
  * `ancestor_behaviors` (string): Show behaviors above this path?
@@ -48,7 +48,7 @@
48
48
  * `max_concurrent_jobs` (int64): Maximum number of concurrent jobs (default CPU Count * 4)
49
49
  * `graceful_shutdown_timeout` (int64): Graceful shutdown timeout in seconds
50
50
  * `transfer_rate_limit` (string): File transfer (upload/download) rate limit
51
- <limit>-<period>, with the given periods:
51
+ `<limit>-<period>`, with the given periods:
52
52
  * 'S': second
53
53
  * 'M': minute
54
54
  * 'H': hour
@@ -162,8 +162,8 @@ module Files
162
162
  # Parameters:
163
163
  # 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.
164
164
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
165
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[behavior]=desc`). Valid fields are `behavior`.
166
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `behavior`.
165
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[behavior]=desc`). Valid fields are `behavior` and `impacts_ui`.
166
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `impacts_ui` and `behavior`.
167
167
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `behavior`.
168
168
  def self.list(params = {}, options = {})
169
169
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
@@ -200,8 +200,8 @@ module Files
200
200
  # Parameters:
201
201
  # 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.
202
202
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
203
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[behavior]=desc`). Valid fields are `behavior`.
204
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `behavior`.
203
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[behavior]=desc`). Valid fields are `behavior` and `impacts_ui`.
204
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `impacts_ui` and `behavior`.
205
205
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `behavior`.
206
206
  # path (required) - string - Path to operate on.
207
207
  # ancestor_behaviors - string - Show behaviors above this path?
@@ -90,7 +90,7 @@ module Files
90
90
  end
91
91
 
92
92
  # string - File transfer (upload/download) rate limit
93
- # <limit>-<period>, with the given periods:
93
+ # `<limit>-<period>`, with the given periods:
94
94
  # * 'S': second
95
95
  # * 'M': minute
96
96
  # * 'H': hour
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.79"
4
+ VERSION = "1.1.81"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.79
4
+ version: 1.1.81
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-16 00:00:00.000000000 Z
11
+ date: 2024-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable