files.com 1.1.350 → 1.1.351
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 +4 -4
- data/_VERSION +1 -1
- data/docs/permission.md +1 -1
- data/lib/files.com/models/permission.rb +1 -1
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b25cb49ad96bd30a35efc30b7484d7b89b0b1b88e1ab6c93fe7acaafef30c46c
|
|
4
|
+
data.tar.gz: 7736d201c244ca72cbc3b41eb26c9e855b1434f940b8ada0875eef5c7bc0235c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f09bf0e21dedad995e9376c6106af929a57b3124fe12611b0f65ee846dfb351894d6535e66148d24c2c91ed0092f1f57d7d6817eb0221c73297c637c314a23f
|
|
7
|
+
data.tar.gz: 8af4dd06fd00fa438ee9718eb87b5f9b80742b1b78736f04d8fbc10e84b5d8c8a1a95a02a0ee23362f7be055ed9d9589795a549a32748e44aa2e936afa4309cb
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.351
|
data/docs/permission.md
CHANGED
|
@@ -50,7 +50,7 @@ Files::Permission.list(
|
|
|
50
50
|
* `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.
|
|
51
51
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
52
52
|
* `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`, `partner_id` or `id`.
|
|
53
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id`, `partner_id` or `user_id`.
|
|
53
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id`, `partner_id` or `user_id`.
|
|
54
54
|
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`.
|
|
55
55
|
* `path` (string): Permission path. If provided, will scope all permissions(including upward) to this path.
|
|
56
56
|
* `include_groups` (boolean): If searching by user or group, also include user's permissions that are inherited from its groups?
|
|
@@ -138,7 +138,7 @@ module Files
|
|
|
138
138
|
# 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.
|
|
139
139
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
140
140
|
# 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`, `partner_id` or `id`.
|
|
141
|
-
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id`, `partner_id` or `user_id`.
|
|
141
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id`, `partner_id` or `user_id`.
|
|
142
142
|
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`.
|
|
143
143
|
# path - string - Permission path. If provided, will scope all permissions(including upward) to this path.
|
|
144
144
|
# include_groups - boolean - If searching by user or group, also include user's permissions that are inherited from its groups?
|
data/lib/files.com/version.rb
CHANGED