files.com 1.1.250 → 1.1.252

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: 98805d730e8daca6c153de77617d11faee90e48adec0b25dec18ad78b317df3e
4
- data.tar.gz: b33bcf640dc80be6556bc619df8335187eb98d79048ee29ed05074c605a2339e
3
+ metadata.gz: b4c2196c5d267cf992f83ccdfed07837ac59fc32d68672575457342cb90976d3
4
+ data.tar.gz: 24194bd1ba780b3da348c6c17e791fbb43351f49a7028925b2606374a38b5e91
5
5
  SHA512:
6
- metadata.gz: 58ca2f7dcb116582d7d2e218f87fe182affa718badcbbdf717aea620e47bf932aad051a2f433d34057fd8667703598ae0bc268762f238de57f7ba0c32351df11
7
- data.tar.gz: d47cede62ff9c887a6d6d20ecbe9a9bf38f0a8c3f695ae4f771070d7d45073aa4cf7be27b793a63496968da37e1db4da05be33da87d48b178d886bf274134b10
6
+ metadata.gz: 937774c516569cc1043ebf47b5f12f87ac0d456eb4b3c2854071eef8f62cf89b3cf45af23b221d7aa5dfb6d019bab442f0b5df18a5f30c464f25f44f99600de6
7
+ data.tar.gz: 607d2adfcd2a4501d1c1275258e7e7d7d0652381ad929007911da67986365df9b20357769a9df664dff8670f7a219ada60e34a52300be1b306cfa665e4eefb1b
data/README.md CHANGED
@@ -330,8 +330,8 @@ end
330
330
 
331
331
  ## Foreign Language Support
332
332
 
333
- The Files.com Ruby SDK will soon be updated to support localized responses by using a configuration
334
- method. When available, it can be used to guide the API in selecting a preferred language for applicable response content.
333
+ The Files.com Ruby SDK supports localized responses by using the `Files.language` configuration attribute.
334
+ When configured, this guides the API in selecting a preferred language for applicable response content.
335
335
 
336
336
  Language support currently applies to select human-facing fields only, such as notification messages
337
337
  and error descriptions.
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.250
1
+ 1.1.252
data/docs/bundle.md CHANGED
@@ -151,6 +151,12 @@ Files::Bundle.list(
151
151
  * `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.
152
152
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
153
153
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
154
+ * `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_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
156
+ * `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`.
157
+ * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
158
+ * `filter_lt` (object): If set, return records where the specified field is less than the supplied value. Valid fields are `created_at` and `expires_at`.
159
+ * `filter_lteq` (object): If set, return records where the specified field is less than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
154
160
 
155
161
 
156
162
  ---
@@ -519,11 +519,23 @@ module Files
519
519
  # 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.
520
520
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
521
521
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
522
+ # 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 ]`.
523
+ # 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`.
524
+ # 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`.
525
+ # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
526
+ # filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `created_at` and `expires_at`.
527
+ # filter_lteq - object - If set, return records where the specified field is less than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
522
528
  def self.list(params = {}, options = {})
523
529
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
524
530
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
525
531
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params[:per_page] and !params[:per_page].is_a?(Integer)
526
532
  raise InvalidParameterError.new("Bad parameter: sort_by must be an Hash") if params[:sort_by] and !params[:sort_by].is_a?(Hash)
533
+ raise InvalidParameterError.new("Bad parameter: filter must be an Hash") if params[:filter] and !params[:filter].is_a?(Hash)
534
+ raise InvalidParameterError.new("Bad parameter: filter_gt must be an Hash") if params[:filter_gt] and !params[:filter_gt].is_a?(Hash)
535
+ raise InvalidParameterError.new("Bad parameter: filter_gteq must be an Hash") if params[:filter_gteq] and !params[:filter_gteq].is_a?(Hash)
536
+ raise InvalidParameterError.new("Bad parameter: filter_prefix must be an Hash") if params[:filter_prefix] and !params[:filter_prefix].is_a?(Hash)
537
+ raise InvalidParameterError.new("Bad parameter: filter_lt must be an Hash") if params[:filter_lt] and !params[:filter_lt].is_a?(Hash)
538
+ raise InvalidParameterError.new("Bad parameter: filter_lteq must be an Hash") if params[:filter_lteq] and !params[:filter_lteq].is_a?(Hash)
527
539
 
528
540
  List.new(Bundle, params) do
529
541
  Api.send_request("/bundles", :get, params, options)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.250"
4
+ VERSION = "1.1.252"
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.250
4
+ version: 1.1.252
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-05-06 00:00:00.000000000 Z
11
+ date: 2025-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable