files.com 1.1.357 → 1.1.358

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: ae853435f8736888ea3f60a205e99aa4942911f3b5216df724e418abf45e5eb2
4
- data.tar.gz: 308369df436996a86d7d4bf124740a1a04d52db51115d6f6c33bed8d2fefd431
3
+ metadata.gz: 72980c3e8f23c4b863e783c1563a01511111fc718e140cfed7ef9f35f2f5fc5c
4
+ data.tar.gz: 218c53f0ffaf952fac5dc1445a7adad76131f3aeb79b5d91da5abebbcd29afcf
5
5
  SHA512:
6
- metadata.gz: 417a56294dcf41777157953289c1a26d3dc29f58b3fa2c424e6b967416e8ee986f372e1fea953d7761305cae0483b05940a5e5cb7a119ee3ddfdb23bc1d64a20
7
- data.tar.gz: 8e23faa74fc70bdb47a62aa0d1c3238f53233a065dac8135319605d7d3b1e65dd5c95ecf880fbec2e161274b41504800823362691c531c360d9a71e6463a560e
6
+ metadata.gz: ea5e8bdd1b92a6f260ad5731c0ce2d2675a3fe310b114f910755a391707344f2381c9ce28f6f4becee5c027c85996d8e27dc473f669a039a855e1656be9b5068
7
+ data.tar.gz: 3a64e3b535a17a18b2198f1e99ccc6eebf75346bb9b09f8e487678f44b5b78eeff9e2128c9640b927c405ca9f010cf17d19b07d098cc771e4453730d32c50b53
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.357
1
+ 1.1.358
data/docs/partner.md CHANGED
@@ -26,7 +26,7 @@
26
26
  }
27
27
  ```
28
28
 
29
- * `allow_bypassing_2fa_policies` (boolean): Allow users created under this Partner to bypass Two-Factor Authentication policies.
29
+ * `allow_bypassing_2fa_policies` (boolean): Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
30
30
  * `allow_credential_changes` (boolean): Allow Partner Admins to change or reset credentials for users belonging to this Partner.
31
31
  * `allow_providing_gpg_keys` (boolean): Allow Partner Admins to provide GPG keys.
32
32
  * `allow_user_creation` (boolean): Allow Partner Admins to create users.
@@ -86,7 +86,7 @@ Files::Partner.create(
86
86
 
87
87
  ### Parameters
88
88
 
89
- * `allow_bypassing_2fa_policies` (boolean): Allow users created under this Partner to bypass Two-Factor Authentication policies.
89
+ * `allow_bypassing_2fa_policies` (boolean): Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
90
90
  * `allow_credential_changes` (boolean): Allow Partner Admins to change or reset credentials for users belonging to this Partner.
91
91
  * `allow_providing_gpg_keys` (boolean): Allow Partner Admins to provide GPG keys.
92
92
  * `allow_user_creation` (boolean): Allow Partner Admins to create users.
@@ -116,7 +116,7 @@ Files::Partner.update(id,
116
116
  ### Parameters
117
117
 
118
118
  * `id` (int64): Required - Partner ID.
119
- * `allow_bypassing_2fa_policies` (boolean): Allow users created under this Partner to bypass Two-Factor Authentication policies.
119
+ * `allow_bypassing_2fa_policies` (boolean): Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
120
120
  * `allow_credential_changes` (boolean): Allow Partner Admins to change or reset credentials for users belonging to this Partner.
121
121
  * `allow_providing_gpg_keys` (boolean): Allow Partner Admins to provide GPG keys.
122
122
  * `allow_user_creation` (boolean): Allow Partner Admins to create users.
@@ -161,7 +161,7 @@ partner.update(
161
161
  ### Parameters
162
162
 
163
163
  * `id` (int64): Required - Partner ID.
164
- * `allow_bypassing_2fa_policies` (boolean): Allow users created under this Partner to bypass Two-Factor Authentication policies.
164
+ * `allow_bypassing_2fa_policies` (boolean): Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
165
165
  * `allow_credential_changes` (boolean): Allow Partner Admins to change or reset credentials for users belonging to this Partner.
166
166
  * `allow_providing_gpg_keys` (boolean): Allow Partner Admins to provide GPG keys.
167
167
  * `allow_user_creation` (boolean): Allow Partner Admins to create users.
@@ -9,7 +9,7 @@ module Files
9
9
  @options = options || {}
10
10
  end
11
11
 
12
- # boolean - Allow users created under this Partner to bypass Two-Factor Authentication policies.
12
+ # boolean - Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
13
13
  def allow_bypassing_2fa_policies
14
14
  @attributes[:allow_bypassing_2fa_policies]
15
15
  end
@@ -109,7 +109,7 @@ module Files
109
109
  end
110
110
 
111
111
  # Parameters:
112
- # allow_bypassing_2fa_policies - boolean - Allow users created under this Partner to bypass Two-Factor Authentication policies.
112
+ # allow_bypassing_2fa_policies - boolean - Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
113
113
  # allow_credential_changes - boolean - Allow Partner Admins to change or reset credentials for users belonging to this Partner.
114
114
  # allow_providing_gpg_keys - boolean - Allow Partner Admins to provide GPG keys.
115
115
  # allow_user_creation - boolean - Allow Partner Admins to create users.
@@ -192,7 +192,7 @@ module Files
192
192
  end
193
193
 
194
194
  # Parameters:
195
- # allow_bypassing_2fa_policies - boolean - Allow users created under this Partner to bypass Two-Factor Authentication policies.
195
+ # allow_bypassing_2fa_policies - boolean - Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
196
196
  # allow_credential_changes - boolean - Allow Partner Admins to change or reset credentials for users belonging to this Partner.
197
197
  # allow_providing_gpg_keys - boolean - Allow Partner Admins to provide GPG keys.
198
198
  # allow_user_creation - boolean - Allow Partner Admins to create users.
@@ -212,7 +212,7 @@ module Files
212
212
  end
213
213
 
214
214
  # Parameters:
215
- # allow_bypassing_2fa_policies - boolean - Allow users created under this Partner to bypass Two-Factor Authentication policies.
215
+ # allow_bypassing_2fa_policies - boolean - Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
216
216
  # allow_credential_changes - boolean - Allow Partner Admins to change or reset credentials for users belonging to this Partner.
217
217
  # allow_providing_gpg_keys - boolean - Allow Partner Admins to provide GPG keys.
218
218
  # allow_user_creation - boolean - Allow Partner Admins to create users.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.357"
4
+ VERSION = "1.1.358"
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.357
4
+ version: 1.1.358
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-19 00:00:00.000000000 Z
11
+ date: 2025-11-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable