files.com 1.1.320 → 1.1.322
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/Gemfile.lock +1 -1
- data/_VERSION +1 -1
- data/docs/inbox_registration.md +1 -1
- 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: 6be7fa61217ce628237f4ecb50d6687d062ccd3c43f1697744d340308c1c7ca3
|
4
|
+
data.tar.gz: ebc4a34f84998ab93f5a53eb280bcc52dccdd4e25fd57c6dda84c4c3928937e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30152d925edcb9b1e1cba222693769e5820310d3a75b4bcbebb8e7d2184d2f5823ba5b3a1132ace6fd38578cee55e12e3735d3eaf7b46da56fbc57e15183749a
|
7
|
+
data.tar.gz: 1b728ce874ec211319276585ad5fe4502c33705b176cc95bd6856b2e47dc09e0d42b0008efa0034d9aec57df541436cc8b0bd812d24406a49a31c8a4dfadcf12
|
data/Gemfile.lock
CHANGED
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.322
|
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.
|
@@ -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.322
|
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-
|
11
|
+
date: 2025-09-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|