files.com 1.1.321 → 1.1.323

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: 7100386eff1ef55522e4990462f8d776e75cc8480bfae0b75943dcd5f7e11a5c
4
- data.tar.gz: d4b406d424027554a9670490b4015cfc4eb868a02601b2e06efa27ddfa0fce6c
3
+ metadata.gz: 943ab95526c1c6290a5a13bfa5123f27b3f5deda57fd009af8c7dfd10b37b6d7
4
+ data.tar.gz: d86d047cfff32db68b7214f6c5b02e473fa3abf2cf0c67e5a8c3ef2e3825803f
5
5
  SHA512:
6
- metadata.gz: ae5c7492e9bc895611511a86f18bcc90a3184c6ead520b6b90c5d5c630a4fa0488e377c959b3537ed4ee085f3d33e001ac117db2af09b94fd56583cbe0c5b119
7
- data.tar.gz: 0ef4c640ab08ad363b54681ca638725d5ba29e336629befe9ac71ea76a1edc884e2352fa8710167bd4e845dde9a35df23200a494e7ba3112bbb7e669745e2202
6
+ metadata.gz: a6f80bd86abe42c5c7fc1829d16b4b480e423603c395cbc609e348b518a2c28a99ec13956700f68867a331954517df97977be7878bb5c7edf2ec73d519cce248
7
+ data.tar.gz: 53f399c6eebb238a6fdad8129ef5615ca0a7ae971d00f6e4fccc1be52b60463bf5a517dce7a1e8aece5f0e166cfd52ea58a60a5c915cf96642e0b82ca841ba2c
data/README.md CHANGED
@@ -613,6 +613,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
613
613
  |`InvalidPriorityColorError`| `ProcessingFailureError` |
614
614
  |`InvalidRangeError`| `ProcessingFailureError` |
615
615
  |`InvalidSiteError`| `ProcessingFailureError` |
616
+ |`MetadataNotSupportedOnRemotesErrorError`| `ProcessingFailureError` |
616
617
  |`ModelSaveErrorError`| `ProcessingFailureError` |
617
618
  |`MultipleProcessingErrorsError`| `ProcessingFailureError` |
618
619
  |`PathTooLongError`| `ProcessingFailureError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.321
1
+ 1.1.323
@@ -49,4 +49,4 @@ Files::InboxRegistration.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
- * `folder_behavior_id` (int64): ID of the associated Inbox.
52
+ * `folder_behavior_id` (int64): ID of the associated Inbox. This is required if the user is not a site admin.
@@ -203,6 +203,7 @@ module Files
203
203
  class InvalidPriorityColorError < ProcessingFailureError; end
204
204
  class InvalidRangeError < ProcessingFailureError; end
205
205
  class InvalidSiteError < ProcessingFailureError; end
206
+ class MetadataNotSupportedOnRemotesErrorError < ProcessingFailureError; end
206
207
  class ModelSaveErrorError < ProcessingFailureError; end
207
208
  class MultipleProcessingErrorsError < ProcessingFailureError; end
208
209
  class PathTooLongError < ProcessingFailureError; end
@@ -72,7 +72,7 @@ module Files
72
72
  # Parameters:
73
73
  # 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.
74
74
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
75
- # folder_behavior_id - int64 - ID of the associated Inbox.
75
+ # folder_behavior_id - int64 - ID of the associated Inbox. This is required if the user is not a site admin.
76
76
  def self.list(params = {}, options = {})
77
77
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
78
78
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params[:per_page] and !params[:per_page].is_a?(Integer)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.321"
4
+ VERSION = "1.1.323"
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.321
4
+ version: 1.1.323
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-09-02 00:00:00.000000000 Z
11
+ date: 2025-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable