files.com 1.1.107 → 1.1.108

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: 4bbe4d169ac2eda4d4ea012a8d9dc7371ea90084d50c4afcd4630c4bfc059091
4
- data.tar.gz: 696362385417f0e54cdcb4330950a14fda115b821febd1a104c33887781f14ff
3
+ metadata.gz: 1dd1cf45a935621883819ca3440cef1e371bb9dbf5981cec5769ba37415f3a8a
4
+ data.tar.gz: 7c0383e69fdb38ffc98f0b6910db15c6005b512f0fb8e990c7e5074f7c633cca
5
5
  SHA512:
6
- metadata.gz: 20a406d31f96b106420c21adf642eb116b158f8f1c6d3ec620326382c5082a259d30a10f87eb216aad8745feb22a410df53310332509eaf163240335dbe5db74
7
- data.tar.gz: 1c5841d83dee98b9030fb102cb2af47ce181d8d001be486a61df8afb6e4a011457e025bcb666f3e49f2580f50813dcfc8f65d7d0b0345e3d65ad4080305029cb
6
+ metadata.gz: cafad0cf15dbfcbeabe11551b893a0b978e492a219d8fabab7cb8c419019158bb4370bfeece76905eb50d72362981753d15e4179b9f0044eab574b38e586cce5
7
+ data.tar.gz: c4ef09c2fe54f35d3a3ed08e6e32eb73f133fdcd812a1dfd6f609cbf8d30b159121a30e94fc0add337d0bab0e78094a0306fc6fd9ea6b77afaabe9dc5ce9830b
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.107
1
+ 1.1.108
data/docs/action.md CHANGED
@@ -16,7 +16,6 @@
16
16
  ],
17
17
  "user_id": 1,
18
18
  "username": "user",
19
- "user_is_from_parent_site": true,
20
19
  "action": "create",
21
20
  "failure_type": "none",
22
21
  "interface": "web"
@@ -33,7 +32,6 @@
33
32
  * `targets` (array(object)): Targets
34
33
  * `user_id` (int64): User ID
35
34
  * `username` (string): Username
36
- * `user_is_from_parent_site` (boolean): true if this change was performed by a user on a parent site.
37
35
  * `action` (string): Type of action
38
36
  * `failure_type` (string): Failure type. If action was a user login or session failure, why did it fail?
39
37
  * `interface` (string): Interface on which this action occurred.
@@ -9,7 +9,6 @@
9
9
  "api_key_prefix": "example",
10
10
  "user_id": 1,
11
11
  "username": "example",
12
- "user_is_from_parent_site": true,
13
12
  "interface": "example",
14
13
  "request_method": "example",
15
14
  "request_path": "example",
@@ -31,7 +30,6 @@
31
30
  * `api_key_prefix` (string): API Key Prefix, if applicable
32
31
  * `user_id` (int64): User ID
33
32
  * `username` (string): Username
34
- * `user_is_from_parent_site` (boolean): true if this change was performed by a user on a parent site.
35
33
  * `interface` (string): API Interface
36
34
  * `request_method` (string): HTTP Method
37
35
  * `request_path` (string): Request path
data/docs/history.md CHANGED
@@ -16,7 +16,6 @@
16
16
  ],
17
17
  "user_id": 1,
18
18
  "username": "user",
19
- "user_is_from_parent_site": true,
20
19
  "action": "create",
21
20
  "failure_type": "none",
22
21
  "interface": "web"
@@ -33,7 +32,6 @@
33
32
  * `targets` (array(object)): Targets
34
33
  * `user_id` (int64): User ID
35
34
  * `username` (string): Username
36
- * `user_is_from_parent_site` (boolean): true if this change was performed by a user on a parent site.
37
35
  * `action` (string): Type of action
38
36
  * `failure_type` (string): Failure type. If action was a user login or session failure, why did it fail?
39
37
  * `interface` (string): Interface on which this action occurred.
@@ -16,7 +16,6 @@
16
16
  "destination": "DestFolder",
17
17
  "ip": "127.0.0.1",
18
18
  "username": "jerry",
19
- "user_is_from_parent_site": true,
20
19
  "action": "read",
21
20
  "failure_type": "bad_password",
22
21
  "interface": "ftp",
@@ -45,7 +44,6 @@
45
44
  * `destination` (string): File moved to this destination folder
46
45
  * `ip` (string): Client IP that performed the action
47
46
  * `username` (string): Username of the user that performed the action
48
- * `user_is_from_parent_site` (boolean): true if this change was performed by a user on a parent site.
49
47
  * `action` (string): What action was taken. Valid values: `create`, `read`, `update`, `destroy`, `move`, `login`, `failedlogin`, `copy`, `user_create`, `user_update`, `user_destroy`, `group_create`, `group_update`, `group_destroy`, `permission_create`, `permission_destroy`, `api_key_create`, `api_key_update`, `api_key_destroy`
50
48
  * `failure_type` (string): The type of login failure, if applicable. Valid values: `expired_trial`, `account_overdue`, `locked_out`, `ip_mismatch`, `password_mismatch`, `site_mismatch`, `username_not_found`, `none`, `no_ftp_permission`, `no_web_permission`, `no_directory`, `errno_enoent`, `no_sftp_permission`, `no_dav_permission`, `no_restapi_permission`, `key_mismatch`, `region_mismatch`, `expired_access`, `desktop_ip_mismatch`, `desktop_api_key_not_used_quickly_enough`, `disabled`, `country_mismatch`, `insecure_ftp`, `insecure_cipher`, `rate_limited`
51
49
  * `interface` (string): Inteface through which the action was taken. Valid values: `web`, `ftp`, `robot`, `jsapi`, `webdesktopapi`, `sftp`, `dav`, `desktop`, `restapi`, `scim`, `office`, `mobile`, `as2`, `inbound_email`, `remote`
@@ -11,7 +11,6 @@
11
11
  "user_id": 1,
12
12
  "api_key_id": 1,
13
13
  "user_is_files_support": true,
14
- "user_is_from_parent_site": true,
15
14
  "username": "some_user"
16
15
  }
17
16
  ```
@@ -21,7 +20,6 @@
21
20
  * `user_id` (int64): The user id responsible for this change
22
21
  * `api_key_id` (int64): The API key id responsible for this change
23
22
  * `user_is_files_support` (boolean): true if this change was performed by Files.com support.
24
- * `user_is_from_parent_site` (boolean): true if this change was performed by a user on a parent site.
25
23
  * `username` (string): The username of the user responsible for this change
26
24
 
27
25
 
data/docs/site.md CHANGED
@@ -169,8 +169,7 @@
169
169
  "allowed_2fa_method_webauthn": true,
170
170
  "allowed_2fa_method_yubi": true,
171
171
  "use_provided_modified_at": true,
172
- "windows_mode_ftp": false,
173
- "user_belongs_to_parent_site": false
172
+ "windows_mode_ftp": false
174
173
  },
175
174
  "session_pinned_by_ip": true,
176
175
  "sftp_enabled": true,
@@ -95,7 +95,6 @@ module Files
95
95
  class InvalidCredentialsError < NotAuthenticatedError; end
96
96
  class InvalidOauthError < NotAuthenticatedError; end
97
97
  class InvalidOrExpiredCodeError < NotAuthenticatedError; end
98
- class InvalidSessionError < NotAuthenticatedError; end
99
98
  class InvalidUsernameOrPasswordError < NotAuthenticatedError; end
100
99
  class LockedOutError < NotAuthenticatedError; end
101
100
  class LockoutRegionMismatchError < NotAuthenticatedError; end
@@ -120,7 +119,6 @@ module Files
120
119
  class FullPermissionRequiredError < NotAuthorizedError; end
121
120
  class HistoryPermissionRequiredError < NotAuthorizedError; end
122
121
  class InsufficientPermissionForParamsError < NotAuthorizedError; end
123
- class InsufficientPermissionForSiteError < NotAuthorizedError; end
124
122
  class MustAuthenticateWithApiKeyError < NotAuthorizedError; end
125
123
  class NeedAdminPermissionForInboxError < NotAuthorizedError; end
126
124
  class NonAdminsMustQueryByFolderOrPathError < NotAuthorizedError; end
@@ -59,11 +59,6 @@ module Files
59
59
  @attributes[:username]
60
60
  end
61
61
 
62
- # boolean - true if this change was performed by a user on a parent site.
63
- def user_is_from_parent_site
64
- @attributes[:user_is_from_parent_site]
65
- end
66
-
67
62
  # string - Type of action
68
63
  def action
69
64
  @attributes[:action]
@@ -34,11 +34,6 @@ module Files
34
34
  @attributes[:username]
35
35
  end
36
36
 
37
- # boolean - true if this change was performed by a user on a parent site.
38
- def user_is_from_parent_site
39
- @attributes[:user_is_from_parent_site]
40
- end
41
-
42
37
  # string - API Interface
43
38
  def interface
44
39
  @attributes[:interface]
@@ -59,11 +59,6 @@ module Files
59
59
  @attributes[:username]
60
60
  end
61
61
 
62
- # boolean - true if this change was performed by a user on a parent site.
63
- def user_is_from_parent_site
64
- @attributes[:user_is_from_parent_site]
65
- end
66
-
67
62
  # string - Type of action
68
63
  def action
69
64
  @attributes[:action]
@@ -69,11 +69,6 @@ module Files
69
69
  @attributes[:username]
70
70
  end
71
71
 
72
- # boolean - true if this change was performed by a user on a parent site.
73
- def user_is_from_parent_site
74
- @attributes[:user_is_from_parent_site]
75
- end
76
-
77
72
  # string - What action was taken. Valid values: `create`, `read`, `update`, `destroy`, `move`, `login`, `failedlogin`, `copy`, `user_create`, `user_update`, `user_destroy`, `group_create`, `group_update`, `group_destroy`, `permission_create`, `permission_destroy`, `api_key_create`, `api_key_update`, `api_key_destroy`
78
73
  def action
79
74
  @attributes[:action]
@@ -34,11 +34,6 @@ module Files
34
34
  @attributes[:user_is_files_support]
35
35
  end
36
36
 
37
- # boolean - true if this change was performed by a user on a parent site.
38
- def user_is_from_parent_site
39
- @attributes[:user_is_from_parent_site]
40
- end
41
-
42
37
  # string - The username of the user responsible for this change
43
38
  def username
44
39
  @attributes[:username]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.107"
4
+ VERSION = "1.1.108"
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.107
4
+ version: 1.1.108
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-02 00:00:00.000000000 Z
11
+ date: 2024-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable