files.com 1.1.469 → 1.1.470

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: 95737f8dd82c3fde5f69a356a9070eb655f6fd0a4cfc47476530d27ef6340f4b
4
- data.tar.gz: a6efa5d3e4b0c0db008fde481cb7186e1124f12518f50bfcf0b11fba127e27ca
3
+ metadata.gz: e867f115384ff6a0813a8016b9162b05149377c15c9d519a21dc7766dc358757
4
+ data.tar.gz: 990f7e13e8e1af9bc16338ee65bc7f546597132ff074f44d8d5c3d2f018c8af2
5
5
  SHA512:
6
- metadata.gz: 0250e358eda7c405351bb74efa4c82c83f6bde12759217a91135b53a38b2e176951a1003900926f0f03923ba187580f39b0d417a3673bbdb7aa68465f06a9726
7
- data.tar.gz: f2e0355e1a63f6a42ac47cd0f8622df0a5d9bbe6a0d18fc37c66abd74af8cd975215cbe296c573623ae128f9ce1e3dd96a25c0c4b340cbd1aa8dc4dbc95953db
6
+ metadata.gz: fc9f86514e65a367dcdf7bee4ec40b00051daabb19ceed775372aaf272b829459006121f747ec654ad71479d7d3f7336973676b1978c207350777d9c41736e0b
7
+ data.tar.gz: 61c97552cf676756725cbb8f2f2f544c812641e859eb561611173263aba5b46991ab306a079e791fb9c664d01d79dc57b88c71f4810295fec23237360b7c8d54
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.469
1
+ 1.1.470
data/docs/bundle.md CHANGED
@@ -152,7 +152,7 @@ Files::Bundle.list(
152
152
  * `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.
153
153
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
154
154
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
155
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
155
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
156
156
  * `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
157
157
  * `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
158
158
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
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`. Valid field combinations are `[ group_id, path ]`, `[ partner_id, path ]`, `[ user_id, path ]`, `[ user_id, group_id ]`, `[ user_id, group_id, path ]`, `[ user_id, group_id, partner_id ]` or `[ user_id, group_id, partner_id, path ]`.
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?
@@ -521,7 +521,7 @@ module Files
521
521
  # 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.
522
522
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
523
523
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
524
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
524
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
525
525
  # filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
526
526
  # filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
527
527
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
@@ -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`. Valid field combinations are `[ group_id, path ]`, `[ partner_id, path ]`, `[ user_id, path ]`, `[ user_id, group_id ]`, `[ user_id, group_id, path ]`, `[ user_id, group_id, partner_id ]` or `[ user_id, group_id, partner_id, path ]`.
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?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.469"
4
+ VERSION = "1.1.470"
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.469
4
+ version: 1.1.470
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com