files.com 1.1.321 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7100386eff1ef55522e4990462f8d776e75cc8480bfae0b75943dcd5f7e11a5c
4
- data.tar.gz: d4b406d424027554a9670490b4015cfc4eb868a02601b2e06efa27ddfa0fce6c
3
+ metadata.gz: 6be7fa61217ce628237f4ecb50d6687d062ccd3c43f1697744d340308c1c7ca3
4
+ data.tar.gz: ebc4a34f84998ab93f5a53eb280bcc52dccdd4e25fd57c6dda84c4c3928937e6
5
5
  SHA512:
6
- metadata.gz: ae5c7492e9bc895611511a86f18bcc90a3184c6ead520b6b90c5d5c630a4fa0488e377c959b3537ed4ee085f3d33e001ac117db2af09b94fd56583cbe0c5b119
7
- data.tar.gz: 0ef4c640ab08ad363b54681ca638725d5ba29e336629befe9ac71ea76a1edc884e2352fa8710167bd4e845dde9a35df23200a494e7ba3112bbb7e669745e2202
6
+ metadata.gz: 30152d925edcb9b1e1cba222693769e5820310d3a75b4bcbebb8e7d2184d2f5823ba5b3a1132ace6fd38578cee55e12e3735d3eaf7b46da56fbc57e15183749a
7
+ data.tar.gz: 1b728ce874ec211319276585ad5fe4502c33705b176cc95bd6856b2e47dc09e0d42b0008efa0034d9aec57df541436cc8b0bd812d24406a49a31c8a4dfadcf12
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.321
1
+ 1.1.322
@@ -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)
@@ -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.322"
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.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-09-02 00:00:00.000000000 Z
11
+ date: 2025-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable