files.com 1.1.223 → 1.1.225

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: 9ad14bf9632a72c55ad0a8b213716589a355a0ff0eaf009525817b4454b41fe9
4
- data.tar.gz: 703083980ad25012cec4da03fafc9cac62920167d464dd5f4ecd8f51ccba462a
3
+ metadata.gz: '019bb95e5e9816477e3400aca3e2496072bd258790b009f200ad2fc665a69d50'
4
+ data.tar.gz: 680488600ad59aca683b4a0394f78ba120e90055556b2ff10597878c44977e20
5
5
  SHA512:
6
- metadata.gz: 8d09c7295406faa44ef0fb24b794839dfbe9cadbb26b8eece04c9acf953d7b6ec6089790537c74d6233ccb44cb2c2e80106e5feb3dc5caa94963223521c3467a
7
- data.tar.gz: 4ed3007b2f5d1869e4c1f4a48b41c02460c962009c0821df703f10e9d88b5d8623e832f72ea07709c0d82da34276deaa363f4d09ae8a4cc937fd98a233eca716
6
+ metadata.gz: a16df1e08bd11487b8b8163a70cb4d4b5ad72c83be3e1c555b8e18b0785d47575ff67e5e5c9342730e792d256a801d21d4096600bcbe14b47b7e10c7730cf51f
7
+ data.tar.gz: '0975fc51bfb2af9cb5ce61a167633db16e3734acfc1719c370046989e0ffe1bf55fa878809a040d105942d41bd4e190d3251f10d939964261010229763bce85c'
data/README.md CHANGED
@@ -529,11 +529,13 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
529
529
  |`InvalidFilenameError`| `ProcessingFailureError` |
530
530
  |`InvalidPriorityColorError`| `ProcessingFailureError` |
531
531
  |`InvalidRangeError`| `ProcessingFailureError` |
532
+ |`InvalidSiteError`| `ProcessingFailureError` |
532
533
  |`ModelSaveErrorError`| `ProcessingFailureError` |
533
534
  |`MultipleProcessingErrorsError`| `ProcessingFailureError` |
534
535
  |`PathTooLongError`| `ProcessingFailureError` |
535
536
  |`RecipientAlreadySharedError`| `ProcessingFailureError` |
536
537
  |`RemoteServerErrorError`| `ProcessingFailureError` |
538
+ |`ResourceBelongsToParentSiteError`| `ProcessingFailureError` |
537
539
  |`ResourceLockedError`| `ProcessingFailureError` |
538
540
  |`SubfolderLockedError`| `ProcessingFailureError` |
539
541
  |`TwoFactorAuthenticationCodeAlreadySentError`| `ProcessingFailureError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.223
1
+ 1.1.225
@@ -49,8 +49,8 @@ Files::ExternalEvent.list
49
49
 
50
50
  * `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.
51
51
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
52
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `remote_server_type`, `folder_behavior_id`, `siem_http_destination_id`, `created_at`, `event_type` or `status`.
53
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ event_type, status ]` or `[ event_type, status, created_at ]`.
52
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `remote_server_type`, `siem_http_destination_id`, `created_at`, `event_type`, `status` or `folder_behavior_id`.
53
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ folder_behavior_id, created_at ]`, `[ event_type, status ]` or `[ event_type, status, created_at ]`.
54
54
  * `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
55
55
  * `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
56
56
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `remote_server_type`.
@@ -197,11 +197,13 @@ module Files
197
197
  class InvalidFilenameError < ProcessingFailureError; end
198
198
  class InvalidPriorityColorError < ProcessingFailureError; end
199
199
  class InvalidRangeError < ProcessingFailureError; end
200
+ class InvalidSiteError < ProcessingFailureError; end
200
201
  class ModelSaveErrorError < ProcessingFailureError; end
201
202
  class MultipleProcessingErrorsError < ProcessingFailureError; end
202
203
  class PathTooLongError < ProcessingFailureError; end
203
204
  class RecipientAlreadySharedError < ProcessingFailureError; end
204
205
  class RemoteServerErrorError < ProcessingFailureError; end
206
+ class ResourceBelongsToParentSiteError < ProcessingFailureError; end
205
207
  class ResourceLockedError < ProcessingFailureError; end
206
208
  class SubfolderLockedError < ProcessingFailureError; end
207
209
  class TwoFactorAuthenticationCodeAlreadySentError < ProcessingFailureError; end
@@ -145,8 +145,8 @@ module Files
145
145
  # Parameters:
146
146
  # 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.
147
147
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
148
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `remote_server_type`, `folder_behavior_id`, `siem_http_destination_id`, `created_at`, `event_type` or `status`.
149
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ event_type, status ]` or `[ event_type, status, created_at ]`.
148
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `remote_server_type`, `siem_http_destination_id`, `created_at`, `event_type`, `status` or `folder_behavior_id`.
149
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ folder_behavior_id, created_at ]`, `[ event_type, status ]` or `[ event_type, status, created_at ]`.
150
150
  # filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
151
151
  # filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
152
152
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `remote_server_type`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.223"
4
+ VERSION = "1.1.225"
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.223
4
+ version: 1.1.225
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-08 00:00:00.000000000 Z
11
+ date: 2025-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable