Skip to content

Commit 5f37bad

Browse files
[Bot] push changes from Files.com
1 parent 7e43c57 commit 5f37bad

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.146
1+
1.4.147

docs/User.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
* `avatar_delete` / `AvatarDelete` (bool): If true, the avatar will be deleted.
146146
* `change_password` / `ChangePassword` (string): Used for changing a password on an existing user.
147147
* `change_password_confirmation` / `ChangePasswordConfirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
148-
* `grant_permission` / `GrantPermission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
148+
* `grant_permission` / `GrantPermission` (string): Permission to grant on the User Root upon user creation. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
149149
* `group_id` / `GroupId` (Nullable<Int64>): Group ID to associate this user with.
150150
* `imported_password_hash` / `ImportedPasswordHash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash methods are MD5, SHA1, and SHA256.
151151
* `password` / `Password` (string): User password.
@@ -217,7 +217,7 @@ Task<User> User.Create(
217217
* `change_password` (string): Used for changing a password on an existing user.
218218
* `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
219219
* `email` (string): User's email.
220-
* `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
220+
* `grant_permission` (string): Permission to grant on the User Root upon user creation. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
221221
* `group_id` (Nullable<Int64>): Group ID to associate this user with.
222222
* `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
223223
* `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash methods are MD5, SHA1, and SHA256.
@@ -332,7 +332,7 @@ Task<User> User.Update(
332332
* `change_password` (string): Used for changing a password on an existing user.
333333
* `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
334334
* `email` (string): User's email.
335-
* `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
335+
* `grant_permission` (string): Permission to grant on the User Root upon user creation. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
336336
* `group_id` (Nullable<Int64>): Group ID to associate this user with.
337337
* `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
338338
* `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash methods are MD5, SHA1, and SHA256.
@@ -508,7 +508,7 @@ User.Update(parameters);
508508
* `change_password` (string): Used for changing a password on an existing user.
509509
* `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
510510
* `email` (string): User's email.
511-
* `grant_permission` (string): Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
511+
* `grant_permission` (string): Permission to grant on the User Root upon user creation. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
512512
* `group_id` (Nullable<Int64>): Group ID to associate this user with.
513513
* `group_ids` (string): A list of group ids to associate this user with. Comma delimited.
514514
* `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash methods are MD5, SHA1, and SHA256.

examples/files-cli/files-cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="FilesCom" Version="1.4.146" />
10+
<PackageReference Include="FilesCom" Version="1.4.147" />
1111
<PackageReference Include="log4net" Version="2.0.10" />
1212
<PackageReference Include="System.Configuration.ConfigurationManager" Version="5.0.0-preview.1.20120.5" />
1313
<PackageReference Include="ManyConsole" Version="2.0.1" />

sdk/FilesCom/FilesCom.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1;netcoreapp3.0;netcoreapp2.2;netcoreapp2.1;netstandard2.1;netstandard2.0</TargetFrameworks>
44
<CheckEolTargetFramework>false</CheckEolTargetFramework>
55
<PackageId>FilesCom</PackageId>
6-
<Version>1.4.146</Version>
6+
<Version>1.4.147</Version>
77
<Authors>Files.com - support@files.com - https://www.files.com/</Authors>
88
<Title>Files.com Client</Title>
99
<Description>The Files.com .NET Client library provides convenient access to the Files.com API from applications using the .NET framework.</Description>

sdk/FilesCom/Models/User.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ public string ChangePasswordConfirmation
10761076
}
10771077

10781078
/// <summary>
1079-
/// Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
1079+
/// Permission to grant on the User Root upon user creation. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
10801080
/// </summary>
10811081
[JsonPropertyName("grant_permission")]
10821082
public string GrantPermission
@@ -1218,7 +1218,7 @@ public async Task User2faReset(Dictionary<string, object> parameters)
12181218
/// change_password - string - Used for changing a password on an existing user.
12191219
/// change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
12201220
/// email - string - User's email.
1221-
/// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
1221+
/// grant_permission - string - Permission to grant on the User Root upon user creation. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
12221222
/// group_id - int64 - Group ID to associate this user with.
12231223
/// group_ids - string - A list of group ids to associate this user with. Comma delimited.
12241224
/// imported_password_hash - string - Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash methods are MD5, SHA1, and SHA256.
@@ -1665,7 +1665,7 @@ public static async Task<User> Get(
16651665
/// change_password - string - Used for changing a password on an existing user.
16661666
/// change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
16671667
/// email - string - User's email.
1668-
/// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
1668+
/// grant_permission - string - Permission to grant on the User Root upon user creation. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
16691669
/// group_id - int64 - Group ID to associate this user with.
16701670
/// group_ids - string - A list of group ids to associate this user with. Comma delimited.
16711671
/// imported_password_hash - string - Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash methods are MD5, SHA1, and SHA256.
@@ -2029,7 +2029,7 @@ public static async Task User2faReset(
20292029
/// change_password - string - Used for changing a password on an existing user.
20302030
/// change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
20312031
/// email - string - User's email.
2032-
/// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
2032+
/// grant_permission - string - Permission to grant on the User Root upon user creation. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
20332033
/// group_id - int64 - Group ID to associate this user with.
20342034
/// group_ids - string - A list of group ids to associate this user with. Comma delimited.
20352035
/// imported_password_hash - string - Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash methods are MD5, SHA1, and SHA256.

0 commit comments

Comments
 (0)