files.com 1.1.574 → 1.1.576

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: '09fe9ec64d6bccea37581924287f96413501211d00ebc88c92f25f11c4d19acc'
4
- data.tar.gz: 8fe1355ef9c6119cbda97b96412ac5e505c449bd9b0d9e4218235bfd55a86a43
3
+ metadata.gz: fe4ef948341ef606066a13e133e9e4ff3e0e7838f86150cf72b1fbf51ddd9565
4
+ data.tar.gz: 0af38956ce6499363e8a4d64d756c34668e08cec6eb1091c2151dcda5045bd8b
5
5
  SHA512:
6
- metadata.gz: 5470a0634481cb5f42100bdfbba69672ab19e6446e9b271ce4626b56c4e77444c8f231ce8365a1e094282f7cc0665b212ebe99c1fdabdfe38bb07e69df491dfc
7
- data.tar.gz: 92ac9da35846a004b7f8ec8deb1add7bc881109fd3147cc31d1536146c9944d04f55a66080482196295d0a5bafb872487eb84b3030688d9f6ba7abfc139531f2
6
+ metadata.gz: f488014c0f2a1573bde23ceda715790e9566826673096d4b63d945317e7dedfe541d677f0acf17e8181d05d4930a895fb13d91528af49d80cff22a78033ea930
7
+ data.tar.gz: 98e65023caaa4760425af038b0a38a3e1329d11410f6500f47dd45b861ca3cb564365ba9ae018be7d9b60cfa3ceda4c696cb6fc22e0850c446f2755466f51f76
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.574
1
+ 1.1.576
@@ -59,7 +59,7 @@ Examples:
59
59
  * 10 requests/minute: '10-M'
60
60
  * 1000 requests/hour: '1000-H'
61
61
  * 2000 requests/day: '2000-D'
62
- * `auto_update_policy` (string): Auto update policy ['manual_trigger', 'critical_only', 'always', 'never'] (default critical_only)
62
+ * `auto_update_policy` (string): Auto update policy ['manual_trigger', 'critical_only', 'always', 'never'] (default always)
63
63
  * `api_token` (string): Files Agent API Token
64
64
  * `port` (int64): Incoming port for files agent connections
65
65
  * `hostname` (string):
data/docs/site.md CHANGED
@@ -19,6 +19,9 @@
19
19
  "admin_user_id": 1,
20
20
  "admins_bypass_locked_subfolders": true,
21
21
  "allow_bundle_names": true,
22
+ "allow_user_level_2fa_override": true,
23
+ "allow_user_level_allowed_ip_override": true,
24
+ "allow_user_level_ssl_override": true,
22
25
  "allowed_countries": "US,DE",
23
26
  "allowed_ips": "example",
24
27
  "always_mkdir_parents": true,
@@ -327,6 +330,9 @@
327
330
  * `admin_user_id` (int64): User ID for the main site administrator
328
331
  * `admins_bypass_locked_subfolders` (boolean): Allow admins to bypass the locked subfolders setting.
329
332
  * `allow_bundle_names` (boolean): Are manual Bundle names allowed?
333
+ * `allow_user_level_2fa_override` (boolean): Allow the site-wide two-factor authentication requirement to be overriden on a per-user-basis?
334
+ * `allow_user_level_allowed_ip_override` (boolean): Allow the site-wide allowed IP restriction to be overriden on a per-user-basis?
335
+ * `allow_user_level_ssl_override` (boolean): Allow the site-wide FTP SSL requirement to be overriden on a per-user-basis?
330
336
  * `allowed_countries` (string): Comma separated list of allowed Country codes
331
337
  * `allowed_ips` (string): List of allowed IP addresses
332
338
  * `always_mkdir_parents` (boolean): Create parent directories if they do not exist during uploads? This is primarily used to work around broken upload clients that assume servers will perform this step.
@@ -568,6 +574,9 @@ Files::Site.update(
568
574
  include_password_in_welcome_email: false,
569
575
  allowed_countries: "US,DE",
570
576
  allowed_ips: "example",
577
+ allow_user_level_2fa_override: false,
578
+ allow_user_level_allowed_ip_override: false,
579
+ allow_user_level_ssl_override: false,
571
580
  disallowed_countries: "US,DE",
572
581
  days_to_retain_backups: 1,
573
582
  max_prior_passwords: 1,
@@ -729,6 +738,9 @@ Files::Site.update(
729
738
  * `include_password_in_welcome_email` (boolean): Include password in emails to new users?
730
739
  * `allowed_countries` (string): Comma separated list of allowed Country codes
731
740
  * `allowed_ips` (string): List of allowed IP addresses
741
+ * `allow_user_level_2fa_override` (boolean): Allow the site-wide two-factor authentication requirement to be overriden on a per-user-basis?
742
+ * `allow_user_level_allowed_ip_override` (boolean): Allow the site-wide allowed IP restriction to be overriden on a per-user-basis?
743
+ * `allow_user_level_ssl_override` (boolean): Allow the site-wide FTP SSL requirement to be overriden on a per-user-basis?
732
744
  * `disallowed_countries` (string): Comma separated list of disallowed Country codes
733
745
  * `days_to_retain_backups` (int64): Number of days to keep deleted files
734
746
  * `max_prior_passwords` (int64): Number of prior passwords to disallow
@@ -104,7 +104,7 @@ module Files
104
104
  @attributes[:transfer_rate_limit]
105
105
  end
106
106
 
107
- # string - Auto update policy ['manual_trigger', 'critical_only', 'always', 'never'] (default critical_only)
107
+ # string - Auto update policy ['manual_trigger', 'critical_only', 'always', 'never'] (default always)
108
108
  def auto_update_policy
109
109
  @attributes[:auto_update_policy]
110
110
  end
@@ -76,6 +76,21 @@ module Files
76
76
  @attributes[:allow_bundle_names]
77
77
  end
78
78
 
79
+ # boolean - Allow the site-wide two-factor authentication requirement to be overriden on a per-user-basis?
80
+ def allow_user_level_2fa_override
81
+ @attributes[:allow_user_level_2fa_override]
82
+ end
83
+
84
+ # boolean - Allow the site-wide allowed IP restriction to be overriden on a per-user-basis?
85
+ def allow_user_level_allowed_ip_override
86
+ @attributes[:allow_user_level_allowed_ip_override]
87
+ end
88
+
89
+ # boolean - Allow the site-wide FTP SSL requirement to be overriden on a per-user-basis?
90
+ def allow_user_level_ssl_override
91
+ @attributes[:allow_user_level_ssl_override]
92
+ end
93
+
79
94
  # string - Comma separated list of allowed Country codes
80
95
  def allowed_countries
81
96
  @attributes[:allowed_countries]
@@ -946,6 +961,9 @@ module Files
946
961
  # include_password_in_welcome_email - boolean - Include password in emails to new users?
947
962
  # allowed_countries - string - Comma separated list of allowed Country codes
948
963
  # allowed_ips - string - List of allowed IP addresses
964
+ # allow_user_level_2fa_override - boolean - Allow the site-wide two-factor authentication requirement to be overriden on a per-user-basis?
965
+ # allow_user_level_allowed_ip_override - boolean - Allow the site-wide allowed IP restriction to be overriden on a per-user-basis?
966
+ # allow_user_level_ssl_override - boolean - Allow the site-wide FTP SSL requirement to be overriden on a per-user-basis?
949
967
  # disallowed_countries - string - Comma separated list of disallowed Country codes
950
968
  # days_to_retain_backups - int64 - Number of days to keep deleted files
951
969
  # max_prior_passwords - int64 - Number of prior passwords to disallow
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.574"
4
+ VERSION = "1.1.576"
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.574
4
+ version: 1.1.576
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-03-10 00:00:00.000000000 Z
11
+ date: 2026-03-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable