files.com 1.1.187 → 1.1.188

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 33f2f11a2d2de88c9a6b4ea9567827e56c4d2314a59d6e4e89acc99a90ab8138
4
- data.tar.gz: 034b20521c3925dc61ab04a46f29ea5f537928b40b52f1388028151c46d98a25
3
+ metadata.gz: 436982bd53cec725451211974fd0b03bf5bac4e828386e4c6747d722e4f89680
4
+ data.tar.gz: 495052e1e6d4a0bf7eccadc884742170164da9aa79bb346d9b22c5488655ac2f
5
5
  SHA512:
6
- metadata.gz: 3ca76d9dba94ae2067cadd2fd381139ada1484841c67d26cb66c457850c85a6b8483c0e7d235af6a947ad1f4b7c1c5dbbcbb77ad190684dda16ceec4c552189e
7
- data.tar.gz: 172e3434d3e97b41e1ac8aa83b4dfa07127d2217fc00761bfcbb086206e361d63665da7f5d95ae0f76380b976e1345c7795f6a42c0789075594317b1bf88c86b
6
+ metadata.gz: 0cd6d5b6fae5c067743d28e15f3916277d8eae5964685a68c5d0380bb80ef9b6dabc599c9166adb9262eaf4617985be81615c6bcfe49c1594daa20f5ad53b198
7
+ data.tar.gz: 2f0e629d1d9dca0309a91fd09e881f6c0baa682b8d91c2aa564a8206cc04e24ea5b126c7e46edd36be3b3ec270ff8f169141398e0fa79e4c09ac2ac75f4885df
data/README.md CHANGED
@@ -345,6 +345,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
345
345
  |`InvalidFilterAliasCombinationError`| `BadRequestError` |
346
346
  |`InvalidFilterFieldError`| `BadRequestError` |
347
347
  |`InvalidFilterParamError`| `BadRequestError` |
348
+ |`InvalidFilterParamFormatError`| `BadRequestError` |
348
349
  |`InvalidFilterParamValueError`| `BadRequestError` |
349
350
  |`InvalidInputEncodingError`| `BadRequestError` |
350
351
  |`InvalidInterfaceError`| `BadRequestError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.187
1
+ 1.1.188
data/docs/user.md CHANGED
@@ -167,7 +167,7 @@ Files::User.list(
167
167
 
168
168
  * `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.
169
169
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
170
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `name`, `company`, `site_admin`, `password_validity_days` or `ssl_required`.
170
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required` or `username`.
171
171
  * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]` and `[ company, name ]`.
172
172
  * `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
173
173
  * `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
@@ -61,6 +61,7 @@ module Files
61
61
  class InvalidFilterAliasCombinationError < BadRequestError; end
62
62
  class InvalidFilterFieldError < BadRequestError; end
63
63
  class InvalidFilterParamError < BadRequestError; end
64
+ class InvalidFilterParamFormatError < BadRequestError; end
64
65
  class InvalidFilterParamValueError < BadRequestError; end
65
66
  class InvalidInputEncodingError < BadRequestError; end
66
67
  class InvalidInterfaceError < BadRequestError; end
@@ -836,7 +836,7 @@ module Files
836
836
  # Parameters:
837
837
  # 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.
838
838
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
839
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `name`, `company`, `site_admin`, `password_validity_days` or `ssl_required`.
839
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required` or `username`.
840
840
  # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]` and `[ company, name ]`.
841
841
  # filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
842
842
  # filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.187"
4
+ VERSION = "1.1.188"
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.187
4
+ version: 1.1.188
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-27 00:00:00.000000000 Z
11
+ date: 2024-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable