files.com 1.0.204 → 1.0.205

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.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.204
1
+ 1.0.205
@@ -562,6 +562,7 @@ await Site.update({
562
562
  * `user_requests_notify_admins` (boolean): Send email to site admins when a user request is received?
563
563
  * `ftp_enabled` (boolean): Is FTP enabled?
564
564
  * `sftp_enabled` (boolean): Is SFTP enabled?
565
+ * `bundle_watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
565
566
  * `allowed_2fa_method_sms` (boolean): Is SMS two factor authentication allowed?
566
567
  * `allowed_2fa_method_u2f` (boolean): Is U2F two factor authentication allowed?
567
568
  * `allowed_2fa_method_totp` (boolean): Is TOTP two factor authentication allowed?
@@ -14,9 +14,7 @@
14
14
  "deleted_files_storage": "65536",
15
15
  "deleted_files_counted_in_minimum": "65536",
16
16
  "root_storage": "65536",
17
- "usage_by_top_level_dir": [
18
- ""
19
- ]
17
+ "usage_by_top_level_dir": ""
20
18
  }
21
19
  ```
22
20
 
@@ -30,7 +28,7 @@
30
28
  * `deleted_files_storage` (int64): GB of Files Native Storage used on this day for files that have been deleted and are stored as backups.
31
29
  * `deleted_files_counted_in_minimum` (int64): GB of Files Native Storage used on this day for files that have been permanently deleted but were uploaded less than 30 days ago, and are still billable.
32
30
  * `root_storage` (int64): GB of Files Native Storage used for the root folder. Included here because this value will not be part of `usage_by_top_level_dir`
33
- * `usage_by_top_level_dir` (array): Usage broken down by each top-level folder
31
+ * `usage_by_top_level_dir` (object): Usage broken down by each top-level folder
34
32
 
35
33
  ---
36
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.204",
3
+ "version": "1.0.205",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -498,6 +498,7 @@ class Site {
498
498
  // user_requests_notify_admins - boolean - Send email to site admins when a user request is received?
499
499
  // ftp_enabled - boolean - Is FTP enabled?
500
500
  // sftp_enabled - boolean - Is SFTP enabled?
501
+ // bundle_watermark_value - object - Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
501
502
  // allowed_2fa_method_sms - boolean - Is SMS two factor authentication allowed?
502
503
  // allowed_2fa_method_u2f - boolean - Is U2F two factor authentication allowed?
503
504
  // allowed_2fa_method_totp - boolean - Is TOTP two factor authentication allowed?
@@ -53,7 +53,7 @@ class UsageDailySnapshot {
53
53
  // int64 # GB of Files Native Storage used for the root folder. Included here because this value will not be part of `usage_by_top_level_dir`
54
54
  getRootStorage = () => this.attributes.root_storage
55
55
 
56
- // array # Usage broken down by each top-level folder
56
+ // object # Usage broken down by each top-level folder
57
57
  getUsageByTopLevelDir = () => this.attributes.usage_by_top_level_dir
58
58
 
59
59