files.com 1.1.502 → 1.1.503

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: 569daa899f67dc3d0a2fc7817931df36493a84aa0ed351d0a0478ba7b15f14df
4
- data.tar.gz: 20e3dc92e8136a916473e7fff0500f0c5b7fb88d24376efed8ad98b2c2a9dba7
3
+ metadata.gz: 135751d65e421910fae3529b52873f027d35aed9679fdfb6865aff6a0b2b5964
4
+ data.tar.gz: 604b880712b50d1e8559b92c1d72d49d550180ecead4720b39f6a7c2ed3607b7
5
5
  SHA512:
6
- metadata.gz: e1ac323608d6fa0928def01d589dd8aee54a61564f528dad9206a5a96eb2233347417a4ed06c2ab1377ac90b9d4746facb90e90c1fe4c043a850d87da5b347f0
7
- data.tar.gz: 97a3e9eb54858d20b1d1cfc35564ee4e58dfd7eeb526f4fa708fff487dee30ea7d81b0fdca01dd054027c01205d9b24517990a8b7203e60e75b395c017554182
6
+ metadata.gz: a4c04eed340c7ef243bf82d0269ef4ab93728babce927391c5e2a338ab48c4c5be967f772dad169a00e6956e9ea744e4ef1d95491dbf40e255fb5e1d1a80ba67
7
+ data.tar.gz: 4773792f2ca4dec7a7c0315fbed66d3d4215c566e89d662b201e101ae04b7fbc065e77662a4d594201105743780c90aedbb78f900d91087ff270c16760c6cfee
data/README.md CHANGED
@@ -592,6 +592,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
592
592
  |`BufferedUploadDisabledForThisDestinationError`| `ProcessingFailureError` |
593
593
  |`BundleOnlyAllowsPreviewsError`| `ProcessingFailureError` |
594
594
  |`BundleOperationRequiresSubfolderError`| `ProcessingFailureError` |
595
+ |`ConfigurationLockedPathError`| `ProcessingFailureError` |
595
596
  |`CouldNotCreateParentError`| `ProcessingFailureError` |
596
597
  |`DestinationExistsError`| `ProcessingFailureError` |
597
598
  |`DestinationFolderLimitedError`| `ProcessingFailureError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.502
1
+ 1.1.503
data/docs/bundle.md CHANGED
@@ -154,7 +154,7 @@ Files::Bundle.list(
154
154
  * `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.
155
155
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
156
156
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
157
- * `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 ]`.
157
+ * `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 ]`.
158
158
  * `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`.
159
159
  * `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`.
160
160
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
@@ -176,6 +176,7 @@ module Files
176
176
  class BufferedUploadDisabledForThisDestinationError < ProcessingFailureError; end
177
177
  class BundleOnlyAllowsPreviewsError < ProcessingFailureError; end
178
178
  class BundleOperationRequiresSubfolderError < ProcessingFailureError; end
179
+ class ConfigurationLockedPathError < ProcessingFailureError; end
179
180
  class CouldNotCreateParentError < ProcessingFailureError; end
180
181
  class DestinationExistsError < ProcessingFailureError; end
181
182
  class DestinationFolderLimitedError < ProcessingFailureError; end
@@ -531,7 +531,7 @@ module Files
531
531
  # 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.
532
532
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
533
533
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
534
- # 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 ]`.
534
+ # 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 ]`.
535
535
  # 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`.
536
536
  # 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`.
537
537
  # 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.502"
4
+ VERSION = "1.1.503"
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.502
4
+ version: 1.1.503
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-16 00:00:00.000000000 Z
11
+ date: 2026-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable