files.com 1.1.458 → 1.1.459

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: a9ccfe0618c572e160ec145f216a47cd3b44b512054d3ab8c49f3cd56ccd933e
4
- data.tar.gz: 551d42bb6987e6d42f467dd56f5c84922e6ffae765ab52277cc54f6e7673d343
3
+ metadata.gz: e6d069bb9217bc5b4d44c62cd78edaebcd56dcd7515f36c6cd6034e1f74fc226
4
+ data.tar.gz: 3017b63f14dadb42cc9e1a21fe28fb17c7f63516e747faa47b55eae54883292a
5
5
  SHA512:
6
- metadata.gz: 8b7717b7c773333e28823f67cb375fd2b81b9bb909b8ab408dce097ce3f46e2d6990ab07cf0b0018b7142cec5a930d947ef03570c7abc9c1d906eb317911e16b
7
- data.tar.gz: 894915fe70d9b3585ba457efb6e63d4c7e98ec313c47700a1328a6e76243d464ca487c5131cac16eeae7b994a6db78f586706d40953480a3ebbda0ed8eba5557
6
+ metadata.gz: 95b258fbd9eaca6f07eefa4e925d529ae40e612e543bdf44329e7a3fcd8608bbc510b411a2ff94447721d771850c5392fb1b1fffb150b452346250caf98ea7cb
7
+ data.tar.gz: d492b49f58755f460be7ce0c5032835f5aee4aab4ee5d38bba5d84666fc1deea2885c10c348e1ad80a011057b8d46378fb6ba52b8760733baa368e0bcbda4cc6
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.458
1
+ 1.1.459
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, 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 ]`.
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`.
@@ -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, 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 ]`.
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`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.458"
4
+ VERSION = "1.1.459"
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.458
4
+ version: 1.1.459
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com