files.com 1.1.515 → 1.1.517

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: da796fb52e8c3bf9ddfbbf12985a96685d46fe6d5ea29e57fb8986523b9a2aa4
4
- data.tar.gz: 9eeb78e5839df51f61ef198eae7ee7fcbd72680ecfd487ffb685a2d1fed1fcdc
3
+ metadata.gz: 74124a1e1102482a815d422d2b44bfc2bf13428ff2a2685c33245a914a0b4647
4
+ data.tar.gz: e0863de2f61d054e0d82148f7b97d0e29d26b33c9236bc375124ac5bc189dd3a
5
5
  SHA512:
6
- metadata.gz: fdf546a875c5f40969d1231aceda9bb77c69d155ce5f569c04ae998bf5c69f4e3abe615ba08f8ffe9c3a7a72747a3bbf2fc4d5cf990be7706d4a14ba967d8852
7
- data.tar.gz: 67a8f604a4ae6dc698e5dfb5fdf18935a0510f3daf54659fdc9af5334dbd9a6f5215030e77df9541054b559fe1e57f71030ce7245387a3dd73ce83b4fe9aad8f
6
+ metadata.gz: 7e1e99932f8f3a2c4242903fc4be9fc653f9ef268803aa1cd5e06437b846b782a9b68e169bfb171bf6e149109f5eeabdcf1bb3cf993b114a0297be014e0b2df9
7
+ data.tar.gz: 7b7430900c79dfce10f3fdb5cb3685bc1da8f5ea185ed63b19d9d4745277d74b9fb5cc95e4e0b381c2b6467ea807cb741bdcc1319c3a53e08309904998f6766d
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.515
1
+ 1.1.517
@@ -54,7 +54,7 @@ Files::AutomationRun.list(
54
54
  * `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.
55
55
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
56
56
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
57
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
57
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
58
58
  * `automation_id` (int64): Required - ID of the associated Automation.
59
59
 
60
60
 
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`.
@@ -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
@@ -84,7 +84,7 @@ module Files
84
84
  # 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.
85
85
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
86
86
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
87
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
87
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
88
88
  # automation_id (required) - int64 - ID of the associated Automation.
89
89
  def self.list(params = {}, options = {})
90
90
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
@@ -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.515"
4
+ VERSION = "1.1.517"
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.515
4
+ version: 1.1.517
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com