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 +4 -4
- data/README.md +1 -0
- data/_VERSION +1 -1
- data/docs/inbox_registration.md +1 -1
- data/lib/files.com/errors.rb +1 -0
- data/lib/files.com/models/inbox_registration.rb +1 -1
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 943ab95526c1c6290a5a13bfa5123f27b3f5deda57fd009af8c7dfd10b37b6d7
|
4
|
+
data.tar.gz: d86d047cfff32db68b7214f6c5b02e473fa3abf2cf0c67e5a8c3ef2e3825803f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
1
|
+
1.1.323
|
data/docs/inbox_registration.md
CHANGED
@@ -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.
|
data/lib/files.com/errors.rb
CHANGED
@@ -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)
|
data/lib/files.com/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2025-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|