files.com 1.1.27 → 1.1.29

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 37069210fdefe819008f4cf4d3d11cb2d0ed332bbcf75e4bc3244f0b415e0845
4
- data.tar.gz: 001cfab1106773eb2d7219c96987e114697738d5640694e1edd4d62eb874b2a4
3
+ metadata.gz: 26e564a1629f6466a059a35de41f5ec7ca3cd3a27b0e20cd22c36dd1a4da296c
4
+ data.tar.gz: 5f0d652a806c79fb1136b506e4a0167ee9e8dbb705f238ff866cf3de34dcab9d
5
5
  SHA512:
6
- metadata.gz: 5999e697e1a39e2591e328e6714b2a67f3ca0a27d69d76a525e16bad0894d64551f43d88d764c57a461011e27f24fa198a1a6cb5708f75edbd904cfad27d3bc8
7
- data.tar.gz: eefb666877e7e18e186b4f630a25e8f9f3ea68563b6d643bdff23173aba922a418c885cefa4da6f34194d1c74265c58183cb73d3034b2e7419e0539b9a3a1811
6
+ metadata.gz: a520cf072c8dedc1e0e83791ac1ffae124954b9831e7bb4625daaf04c9259eea81c1dc61f0016dae4910a57298d3bec32ca606062fc33cef5c8d7bd3ace23ed3
7
+ data.tar.gz: 54469a659ec634ff9e087160efad9818eafa13864f4772f28c4567db0429d4f966533ec3b31ed9759d39f5347cd01357660b280d250ca4446eac8f282c271acc
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.27
1
+ 1.1.29
@@ -14,6 +14,8 @@
14
14
  "successful_files": 1,
15
15
  "errored_files": 1,
16
16
  "bytes_synced": 1,
17
+ "compared_files": 1,
18
+ "compared_folders": 1,
17
19
  "remote_server_type": "example"
18
20
  }
19
21
  ```
@@ -28,6 +30,8 @@
28
30
  * `successful_files` (int64): For sync events, the number of files handled successfully.
29
31
  * `errored_files` (int64): For sync events, the number of files that encountered errors.
30
32
  * `bytes_synced` (int64): For sync events, the total number of bytes synced.
33
+ * `compared_files` (int64): For sync events, the number of files considered for the sync.
34
+ * `compared_folders` (int64): For sync events, the number of folders listed and considered for the sync.
31
35
  * `remote_server_type` (string): Associated Remote Server type, if any
32
36
 
33
37
 
data/docs/user.md CHANGED
@@ -115,7 +115,7 @@
115
115
  * `active_2fa` (boolean): Is 2fa active for the user?
116
116
  * `require_password_change` (boolean): Is a password change required upon next user login?
117
117
  * `password_expired` (boolean): Is user's password expired?
118
- * `restapi_permission` (boolean): Can this user access the REST API?
118
+ * `restapi_permission` (boolean): Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
119
119
  * `self_managed` (boolean): Does this user manage it's own credentials or is it a shared/bot user?
120
120
  * `sftp_permission` (boolean): Can the user access with SFTP?
121
121
  * `site_admin` (boolean): Is the user an administrator for this site?
@@ -261,7 +261,7 @@ Files::User.create(
261
261
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
262
262
  * `require_login_by` (string): Require user to login by specified date otherwise it will be disabled.
263
263
  * `require_password_change` (boolean): Is a password change required upon next user login?
264
- * `restapi_permission` (boolean): Can this user access the REST API?
264
+ * `restapi_permission` (boolean): Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
265
265
  * `self_managed` (boolean): Does this user manage it's own credentials or is it a shared/bot user?
266
266
  * `sftp_permission` (boolean): Can the user access with SFTP?
267
267
  * `site_admin` (boolean): Is the user an administrator for this site?
@@ -397,7 +397,7 @@ Files::User.update(id,
397
397
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
398
398
  * `require_login_by` (string): Require user to login by specified date otherwise it will be disabled.
399
399
  * `require_password_change` (boolean): Is a password change required upon next user login?
400
- * `restapi_permission` (boolean): Can this user access the REST API?
400
+ * `restapi_permission` (boolean): Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
401
401
  * `self_managed` (boolean): Does this user manage it's own credentials or is it a shared/bot user?
402
402
  * `sftp_permission` (boolean): Can the user access with SFTP?
403
403
  * `site_admin` (boolean): Is the user an administrator for this site?
@@ -554,7 +554,7 @@ user.update(
554
554
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
555
555
  * `require_login_by` (string): Require user to login by specified date otherwise it will be disabled.
556
556
  * `require_password_change` (boolean): Is a password change required upon next user login?
557
- * `restapi_permission` (boolean): Can this user access the REST API?
557
+ * `restapi_permission` (boolean): Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
558
558
  * `self_managed` (boolean): Does this user manage it's own credentials or is it a shared/bot user?
559
559
  * `sftp_permission` (boolean): Can the user access with SFTP?
560
560
  * `site_admin` (boolean): Is the user an administrator for this site?
@@ -95,6 +95,24 @@ module Files
95
95
  @attributes[:bytes_synced] = value
96
96
  end
97
97
 
98
+ # int64 - For sync events, the number of files considered for the sync.
99
+ def compared_files
100
+ @attributes[:compared_files]
101
+ end
102
+
103
+ def compared_files=(value)
104
+ @attributes[:compared_files] = value
105
+ end
106
+
107
+ # int64 - For sync events, the number of folders listed and considered for the sync.
108
+ def compared_folders
109
+ @attributes[:compared_folders]
110
+ end
111
+
112
+ def compared_folders=(value)
113
+ @attributes[:compared_folders] = value
114
+ end
115
+
98
116
  # string - Associated Remote Server type, if any
99
117
  def remote_server_type
100
118
  @attributes[:remote_server_type]
@@ -419,7 +419,7 @@ module Files
419
419
  @attributes[:password_expired] = value
420
420
  end
421
421
 
422
- # boolean - Can this user access the REST API?
422
+ # boolean - Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
423
423
  def restapi_permission
424
424
  @attributes[:restapi_permission]
425
425
  end
@@ -702,7 +702,7 @@ module Files
702
702
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
703
703
  # require_login_by - string - Require user to login by specified date otherwise it will be disabled.
704
704
  # require_password_change - boolean - Is a password change required upon next user login?
705
- # restapi_permission - boolean - Can this user access the REST API?
705
+ # restapi_permission - boolean - Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
706
706
  # self_managed - boolean - Does this user manage it's own credentials or is it a shared/bot user?
707
707
  # sftp_permission - boolean - Can the user access with SFTP?
708
708
  # site_admin - boolean - Is the user an administrator for this site?
@@ -860,7 +860,7 @@ module Files
860
860
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
861
861
  # require_login_by - string - Require user to login by specified date otherwise it will be disabled.
862
862
  # require_password_change - boolean - Is a password change required upon next user login?
863
- # restapi_permission - boolean - Can this user access the REST API?
863
+ # restapi_permission - boolean - Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
864
864
  # self_managed - boolean - Does this user manage it's own credentials or is it a shared/bot user?
865
865
  # sftp_permission - boolean - Can the user access with SFTP?
866
866
  # site_admin - boolean - Is the user an administrator for this site?
@@ -972,7 +972,7 @@ module Files
972
972
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
973
973
  # require_login_by - string - Require user to login by specified date otherwise it will be disabled.
974
974
  # require_password_change - boolean - Is a password change required upon next user login?
975
- # restapi_permission - boolean - Can this user access the REST API?
975
+ # restapi_permission - boolean - Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
976
976
  # self_managed - boolean - Does this user manage it's own credentials or is it a shared/bot user?
977
977
  # sftp_permission - boolean - Can the user access with SFTP?
978
978
  # site_admin - boolean - Is the user an administrator for this site?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.27"
4
+ VERSION = "1.1.29"
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.27
4
+ version: 1.1.29
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-03-12 00:00:00.000000000 Z
11
+ date: 2024-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable