files.com 1.1.319 → 1.1.321

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: 3e44642276ef2eb81c7c4370de945bde366a49a412ab4b2d6269285651e59c20
4
- data.tar.gz: 102447aa8e59131bf07842ac56542e996ed4a956bc47f6c7226b847ee84d22ee
3
+ metadata.gz: 7100386eff1ef55522e4990462f8d776e75cc8480bfae0b75943dcd5f7e11a5c
4
+ data.tar.gz: d4b406d424027554a9670490b4015cfc4eb868a02601b2e06efa27ddfa0fce6c
5
5
  SHA512:
6
- metadata.gz: f7bde50a1eef60a79264355ac0716ef9967cfe5f0ccac623e482047d31ea512006d426fa45fced859fbf1b86494bd63c9e1233e6628bf9d556fb0ebc1662daaf
7
- data.tar.gz: 11a186c5c79fc12c7c64bace8718b55d5a6f721b41179f80eeece6d696eee905875a6369478308e68048108e2c88a9dd19a64cb7ecf06240d8727f7da14db51b
6
+ metadata.gz: ae5c7492e9bc895611511a86f18bcc90a3184c6ead520b6b90c5d5c630a4fa0488e377c959b3537ed4ee085f3d33e001ac117db2af09b94fd56583cbe0c5b119
7
+ data.tar.gz: 0ef4c640ab08ad363b54681ca638725d5ba29e336629befe9ac71ea76a1edc884e2352fa8710167bd4e845dde9a35df23200a494e7ba3112bbb7e669745e2202
data/Gemfile.lock CHANGED
@@ -18,7 +18,7 @@ GEM
18
18
  byebug (11.1.3)
19
19
  coderay (1.1.3)
20
20
  concurrent-ruby (1.3.5)
21
- connection_pool (2.5.3)
21
+ connection_pool (2.5.4)
22
22
  diff-lcs (1.5.0)
23
23
  faraday (2.13.4)
24
24
  faraday-net_http (>= 2.0, < 3.5)
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.319
1
+ 1.1.321
data/docs/permission.md CHANGED
@@ -44,8 +44,8 @@ Files::Permission.list(
44
44
 
45
45
  * `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.
46
46
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
47
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `group_id`, `path` or `user_id`.
48
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id` or `user_id`. Valid field combinations are `[ group_id, path ]`, `[ user_id, path ]` or `[ user_id, group_id ]`.
47
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `group_id`, `path`, `user_id` or `id`.
48
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id` or `user_id`. Valid field combinations are `[ group_id, path ]`, `[ user_id, path ]`, `[ user_id, group_id ]` or `[ user_id, group_id, path ]`.
49
49
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`.
50
50
  * `path` (string): Permission path. If provided, will scope all permissions(including upward) to this path.
51
51
  * `include_groups` (boolean): If searching by user or group, also include user's permissions that are inherited from its groups?
@@ -119,8 +119,8 @@ module Files
119
119
  # Parameters:
120
120
  # 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.
121
121
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
122
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `group_id`, `path` or `user_id`.
123
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id` or `user_id`. Valid field combinations are `[ group_id, path ]`, `[ user_id, path ]` or `[ user_id, group_id ]`.
122
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `group_id`, `path`, `user_id` or `id`.
123
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id` or `user_id`. Valid field combinations are `[ group_id, path ]`, `[ user_id, path ]`, `[ user_id, group_id ]` or `[ user_id, group_id, path ]`.
124
124
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`.
125
125
  # path - string - Permission path. If provided, will scope all permissions(including upward) to this path.
126
126
  # include_groups - boolean - If searching by user or group, also include user's permissions that are inherited from its groups?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.319"
4
+ VERSION = "1.1.321"
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.319
4
+ version: 1.1.321
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-19 00:00:00.000000000 Z
11
+ date: 2025-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable