files.com 1.1.717 → 1.1.718

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: e37c3544323a72647c37e95fe9e35bbe6ccfe6a3f6332488de57166bbdfff33a
4
- data.tar.gz: 65a935ff85893faa2b8fee83b5659cdb87329da867aae793177ab3157ab07209
3
+ metadata.gz: 26440a1745afdb3b105e177175018054c6e19617630f118284df32363e8629cc
4
+ data.tar.gz: fa97f8cd9fa3dd61ac03018125e6694db4fce185080a635cb689272df3c4b564
5
5
  SHA512:
6
- metadata.gz: '0900d72a977aebe60d6e6815e7323ca736f72b9bc328c215d7789e78a924ed2b7cfd861aac55bd78db40bb4d3e5d8e312133eec0901272b0de2d5e6c35e35285'
7
- data.tar.gz: e6b6f1ba8035701a1e15dcb7df88a7db3d16a81a04f53e11b9d423bb4aa50cda402a4b85bca884bbb0b800126231a76fa4d86e9d7c0d138598cf4b08d186599f
6
+ metadata.gz: 672fcc247987c5fffc758d6459c96b8e9c27c0813d9bf6ad3e1730ddd249008fe451389db396d5d5a195e692c3c698fb134f665e3cb3f856015882dfb3104823
7
+ data.tar.gz: 0f1cf361030c0c2d994ff9921dd4eb0ea732df9aed6a9ddd5a3486a9e8a21bcc618c873682edb3fb72296470f614096766cb050a62826c046c4e09b913108b4a
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.717
1
+ 1.1.718
data/docs/user.md CHANGED
@@ -196,7 +196,7 @@
196
196
  * `password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `password`.
197
197
  * `announcements_read` (boolean): Signifies that the user has read all the announcements in the UI.
198
198
  * `clear_2fa` (boolean): If true when changing authentication_method from `password` to `sso`, remove all two-factor methods. Ignored in all other cases.
199
- * `convert_to_partner_user` (boolean): If true, convert this user to a partner user by assigning the partner_id provided.
199
+ * `convert_to_partner_user` (boolean): Required when assigning a Partner to an existing non-Partner user. If true, convert the user by assigning the partner_id provided.
200
200
 
201
201
 
202
202
  ---
@@ -563,7 +563,7 @@ Files::User.update(id,
563
563
  * `username` (string): User's username
564
564
  * `workspace_id` (int64): Workspace ID
565
565
  * `clear_2fa` (boolean): If true when changing authentication_method from `password` to `sso`, remove all two-factor methods. Ignored in all other cases.
566
- * `convert_to_partner_user` (boolean): If true, convert this user to a partner user by assigning the partner_id provided.
566
+ * `convert_to_partner_user` (boolean): Required when assigning a Partner to an existing non-Partner user. If true, convert the user by assigning the partner_id provided.
567
567
 
568
568
 
569
569
  ---
@@ -773,7 +773,7 @@ user.update(
773
773
  * `username` (string): User's username
774
774
  * `workspace_id` (int64): Workspace ID
775
775
  * `clear_2fa` (boolean): If true when changing authentication_method from `password` to `sso`, remove all two-factor methods. Ignored in all other cases.
776
- * `convert_to_partner_user` (boolean): If true, convert this user to a partner user by assigning the partner_id provided.
776
+ * `convert_to_partner_user` (boolean): Required when assigning a Partner to an existing non-Partner user. If true, convert the user by assigning the partner_id provided.
777
777
 
778
778
 
779
779
  ---
@@ -896,7 +896,7 @@ module Files
896
896
  @attributes[:clear_2fa] = value
897
897
  end
898
898
 
899
- # boolean - If true, convert this user to a partner user by assigning the partner_id provided.
899
+ # boolean - Required when assigning a Partner to an existing non-Partner user. If true, convert the user by assigning the partner_id provided.
900
900
  def convert_to_partner_user
901
901
  @attributes[:convert_to_partner_user]
902
902
  end
@@ -1008,7 +1008,7 @@ module Files
1008
1008
  # username - string - User's username
1009
1009
  # workspace_id - int64 - Workspace ID
1010
1010
  # clear_2fa - boolean - If true when changing authentication_method from `password` to `sso`, remove all two-factor methods. Ignored in all other cases.
1011
- # convert_to_partner_user - boolean - If true, convert this user to a partner user by assigning the partner_id provided.
1011
+ # convert_to_partner_user - boolean - Required when assigning a Partner to an existing non-Partner user. If true, convert the user by assigning the partner_id provided.
1012
1012
  def update(params = {})
1013
1013
  params ||= {}
1014
1014
  params[:id] = @attributes[:id]
@@ -1354,7 +1354,7 @@ module Files
1354
1354
  # username - string - User's username
1355
1355
  # workspace_id - int64 - Workspace ID
1356
1356
  # clear_2fa - boolean - If true when changing authentication_method from `password` to `sso`, remove all two-factor methods. Ignored in all other cases.
1357
- # convert_to_partner_user - boolean - If true, convert this user to a partner user by assigning the partner_id provided.
1357
+ # convert_to_partner_user - boolean - Required when assigning a Partner to an existing non-Partner user. If true, convert the user by assigning the partner_id provided.
1358
1358
  def self.update(id, params = {}, options = {})
1359
1359
  params ||= {}
1360
1360
  params[:id] = id
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.717"
4
+ VERSION = "1.1.718"
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.717
4
+ version: 1.1.718
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-09-04 00:00:00.000000000 Z
11
+ date: 2026-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable