files.com 1.1.698 → 1.1.700

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: 4ee7b1d5e9d0cad6ed845df4aa8f01c42db61e7967fdcefd276df58c9b179d67
4
- data.tar.gz: 766c88c4704816c33df01359aaad091a3ba422c99b7334c259dba0e38fdf4d65
3
+ metadata.gz: 641bd8b27bacc4e008049db261ae2ea4cb059f45b92c245cbf26c02593e2c094
4
+ data.tar.gz: b6e030e5c0f3fdc61f60eccc6f78cc1da9ad024117429d23536a09c4d136a1e3
5
5
  SHA512:
6
- metadata.gz: 34a43dba6982100682930e77b8b22ce9b70365456f0f9a63427975388924b3c5cb07158e4ab612b70c1cfe0505c98cc9f85485368265588f988a3315830a5e43
7
- data.tar.gz: 00cb5badcfe58edea2e9193b4a0191060610680e04a1490e68ba1e9f7209aabaa2578353d1c45413eab6e4dc513e1e574b1fd561dde9939270a11528a31aed30
6
+ metadata.gz: b761980853fb1ac15480a52477644c7ca38a78c9d927f3f2bf9c6921b4558be524a46924e85682e49baaafcb422d3e90d528f6adea493ba02e5c06916ff28627
7
+ data.tar.gz: a56f57ebbdffe2930a12cdec6906fcf51ad255ea031290d5b7824ede5748ac8203ede79bfd32f56a948103d6daa06298a3e0675da52dc37166839bcca8ef292e
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.698
1
+ 1.1.700
@@ -69,6 +69,7 @@
69
69
  "files_agent_up_to_date": true,
70
70
  "files_agent_latest_version": "example",
71
71
  "files_agent_supports_push_updates": true,
72
+ "direct_transfer_available": true,
72
73
  "outbound_agent_id": 1,
73
74
  "filebase_bucket": "my-bucket",
74
75
  "filebase_access_key": "example",
@@ -149,6 +150,7 @@
149
150
  * `files_agent_up_to_date` (boolean): If true, the Files Agent is up to date.
150
151
  * `files_agent_latest_version` (string): Latest available Files Agent version
151
152
  * `files_agent_supports_push_updates` (boolean): Files Agent supports receiving push updates
153
+ * `direct_transfer_available` (boolean): Whether the Files Agent Proxy recently validated a direct transfer connection. `true` means a direct connection was recently validated (actual availability can vary by client network), `false` means direct transfers are enabled but not currently available, and `null` means direct transfers are disabled or unsupported. Only provided for a connected Files Agent when showing a single Remote Server.
152
154
  * `outbound_agent_id` (int64): Route traffic to outbound on a files-agent
153
155
  * `filebase_bucket` (string): Filebase: Bucket name
154
156
  * `filebase_access_key` (string): Filebase: Access Key.
@@ -35,7 +35,7 @@ Files::UserAdditionalEmailRecipient.list(
35
35
  * `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.
36
36
  * `per_page` (int64): Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
37
37
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `email`, `user_id` or `workspace_id`.
38
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `email` and `workspace_id`. Valid field combinations are `[ workspace_id, email ]`.
38
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `email`, `workspace_id` or `user_id`. Valid field combinations are `[ workspace_id, email ]`, `[ user_id, email ]`, `[ workspace_id, user_id ]` or `[ workspace_id, user_id, email ]`.
39
39
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `email`.
40
40
 
41
41
 
@@ -594,6 +594,15 @@ module Files
594
594
  @attributes[:files_agent_supports_push_updates] = value
595
595
  end
596
596
 
597
+ # boolean - Whether the Files Agent Proxy recently validated a direct transfer connection. `true` means a direct connection was recently validated (actual availability can vary by client network), `false` means direct transfers are enabled but not currently available, and `null` means direct transfers are disabled or unsupported. Only provided for a connected Files Agent when showing a single Remote Server.
598
+ def direct_transfer_available
599
+ @attributes[:direct_transfer_available]
600
+ end
601
+
602
+ def direct_transfer_available=(value)
603
+ @attributes[:direct_transfer_available] = value
604
+ end
605
+
597
606
  # int64 - Route traffic to outbound on a files-agent
598
607
  def outbound_agent_id
599
608
  @attributes[:outbound_agent_id]
@@ -94,7 +94,7 @@ module Files
94
94
  # 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.
95
95
  # per_page - int64 - Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
96
96
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `email`, `user_id` or `workspace_id`.
97
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `email` and `workspace_id`. Valid field combinations are `[ workspace_id, email ]`.
97
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `email`, `workspace_id` or `user_id`. Valid field combinations are `[ workspace_id, email ]`, `[ user_id, email ]`, `[ workspace_id, user_id ]` or `[ workspace_id, user_id, email ]`.
98
98
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `email`.
99
99
  def self.list(params = {}, options = {})
100
100
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.698"
4
+ VERSION = "1.1.700"
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.698
4
+ version: 1.1.700
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-29 00:00:00.000000000 Z
11
+ date: 2026-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable