files.com 1.1.187 → 1.1.189

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: 1ff599330200f04340ceedac02ac0f6172a58b24cc477a24aea54c6758e8ae61
4
+ data.tar.gz: 837fb450e54fc23819ccfedbd6ee2dc6b240760d6ccf78614d8badf1f6ce4f1d
5
5
  SHA512:
6
- metadata.gz: 3ca76d9dba94ae2067cadd2fd381139ada1484841c67d26cb66c457850c85a6b8483c0e7d235af6a947ad1f4b7c1c5dbbcbb77ad190684dda16ceec4c552189e
7
- data.tar.gz: 172e3434d3e97b41e1ac8aa83b4dfa07127d2217fc00761bfcbb086206e361d63665da7f5d95ae0f76380b976e1345c7795f6a42c0789075594317b1bf88c86b
6
+ metadata.gz: cc9bfd3a7186861899e3c3b038eeba829ddce72742a2d15e18afa1d31239415e9247a60fbe21431b8dce73dfec076b6e8c554fad87f405ec762bc66faed379f0
7
+ data.tar.gz: 68c4c9a6cd9793ea151925fdb2f7d23cf3f5bf8a42e0324ceae43114d25c08dcd6cff938b9ea8d34f8fbbeb6a0d2adc960fe6af1592f7755c008563dbb3529dd
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` |
@@ -499,6 +500,11 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
499
500
  |`TrialLockedError`| `SiteConfigurationError` |
500
501
  |`UserRequestsEnabledRequiredError`| `SiteConfigurationError` |
501
502
 
503
+ ## Case Sensitivity
504
+
505
+ The Files.com API compares files and paths in a case-insensitive manner.
506
+ For related documentation see [Case Sensitivity Documentation](https://www.files.com/docs/files-and-folders/file-system-semantics/case-sensitivity).
507
+
502
508
  ## Examples
503
509
 
504
510
  The Files::File and Files::Dir models implement the standard Ruby API
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.187
1
+ 1.1.189
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.189"
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.189
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-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable