files.com 1.1.503 → 1.1.505

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: 135751d65e421910fae3529b52873f027d35aed9679fdfb6865aff6a0b2b5964
4
- data.tar.gz: 604b880712b50d1e8559b92c1d72d49d550180ecead4720b39f6a7c2ed3607b7
3
+ metadata.gz: e5084e20589e5976a5174943535f4f616324867a89ad096549aceecb6def4266
4
+ data.tar.gz: cae4c21c10706ed5dc3161bbff35cf15b787e56296f6a1b2826ecdd61bf4970c
5
5
  SHA512:
6
- metadata.gz: a4c04eed340c7ef243bf82d0269ef4ab93728babce927391c5e2a338ab48c4c5be967f772dad169a00e6956e9ea744e4ef1d95491dbf40e255fb5e1d1a80ba67
7
- data.tar.gz: 4773792f2ca4dec7a7c0315fbed66d3d4215c566e89d662b201e101ae04b7fbc065e77662a4d594201105743780c90aedbb78f900d91087ff270c16760c6cfee
6
+ metadata.gz: c7aecdf7f653d7a37b9f0b1e1a10d281ac14dec098782a09ccc3d837fa611cdf44f743fbf513b501ea05d3d764521abf61e23e52a043a8a5aab1a0eb7ac4f982
7
+ data.tar.gz: e15919f44c63c82ecca8fa055df14206d24b88cd935b7c33246c8b497ab6997309aebf6557f3b5668cdb267cf279e2d68568242ae1a836df6a2f09a7614f3cdb
data/README.md CHANGED
@@ -498,6 +498,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
498
498
  |`InvalidUploadOffsetError`| `BadRequestError` |
499
499
  |`InvalidUploadPartGapError`| `BadRequestError` |
500
500
  |`InvalidUploadPartSizeError`| `BadRequestError` |
501
+ |`InvalidWorkspaceIdHeaderError`| `BadRequestError` |
501
502
  |`MethodNotAllowedError`| `BadRequestError` |
502
503
  |`MultipleSortParamsNotAllowedError`| `BadRequestError` |
503
504
  |`NoValidInputParamsError`| `BadRequestError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.503
1
+ 1.1.505
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, 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 ]`.
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`.
@@ -74,6 +74,7 @@ module Files
74
74
  class InvalidUploadOffsetError < BadRequestError; end
75
75
  class InvalidUploadPartGapError < BadRequestError; end
76
76
  class InvalidUploadPartSizeError < BadRequestError; end
77
+ class InvalidWorkspaceIdHeaderError < BadRequestError; end
77
78
  class MethodNotAllowedError < BadRequestError; end
78
79
  class MultipleSortParamsNotAllowedError < BadRequestError; end
79
80
  class NoValidInputParamsError < 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, 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 ]`.
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.503"
4
+ VERSION = "1.1.505"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.503
4
+ version: 1.1.505
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com