files.com 1.1.516 → 1.1.518

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: b1dff2318d45d397a0e63be64509c26ce06cdb5509fa0f42124aa155d9ecbb95
4
- data.tar.gz: 449248343a7585af2b5c9f9da37d3e7a7b904c216234d8cd25d03ec6744e76c3
3
+ metadata.gz: 5384d79991af5601718381de097f99c178cff4a06f510d55969668f11a3a8d3c
4
+ data.tar.gz: 19624920dfbd28f975c545037c601ba5b06fece5cca40514e7e8b6ae25aadb43
5
5
  SHA512:
6
- metadata.gz: ddd2ae66c448edb0cd48322843f4ca2b36569bf54a6826806437998e08a8fa427a218b525e8b226dc401ed8ab602f60a205a88fb09c12f1019aa32569c0ddbca
7
- data.tar.gz: 3c12c479bf0641d462d25fb0b1ee77f9c73c552928b1a8d4258ee3842c3d7f2eff5a080b0c1f0b635e62c1ae94bea071e1e4636c8b0a9ca7c368a65bc7a7f685
6
+ metadata.gz: 8d33792991943e50b11132788b593eb564d1c0be9389bee2b45eeb50a69184a92feed68be80fc098650f39c78d1c303a74132b08c5a0ce6d0a96df02921ed797
7
+ data.tar.gz: 92bf13e3b03ba22df124f9d0016796e8aa1ef0081cf67dfc12ffae1bf5f2cc2035259c24c58b13d0a15acd90d46471fbb44f1c77bed5b2a43f4c48537651cbc0
data/README.md CHANGED
@@ -480,6 +480,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
480
480
  |`DoesNotSupportSortingError`| `BadRequestError` |
481
481
  |`FolderMustNotBeAFileError`| `BadRequestError` |
482
482
  |`FoldersNotAllowedError`| `BadRequestError` |
483
+ |`InternalGeneralErrorError`| `BadRequestError` |
483
484
  |`InvalidBodyError`| `BadRequestError` |
484
485
  |`InvalidCursorError`| `BadRequestError` |
485
486
  |`InvalidCursorTypeForSortError`| `BadRequestError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.516
1
+ 1.1.518
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`.
@@ -56,6 +56,7 @@ module Files
56
56
  class DoesNotSupportSortingError < BadRequestError; end
57
57
  class FolderMustNotBeAFileError < BadRequestError; end
58
58
  class FoldersNotAllowedError < BadRequestError; end
59
+ class InternalGeneralErrorError < BadRequestError; end
59
60
  class InvalidBodyError < BadRequestError; end
60
61
  class InvalidCursorError < BadRequestError; end
61
62
  class InvalidCursorTypeForSortError < BadRequestError; 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.516"
4
+ VERSION = "1.1.518"
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.516
4
+ version: 1.1.518
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-22 00:00:00.000000000 Z
11
+ date: 2026-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable