files.com 1.0.312 → 1.0.313

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: 762bc842f1125c3865dafd75deba86d5487496fd3454b5008688666da2d783eb
4
- data.tar.gz: bc48d33cb47532fcc6965dafe049820d9df1f4ca2a9dc77fe80e196765a38ec9
3
+ metadata.gz: dd9096f3a4675cf528626ed1fe2bfb2d8aba0491fde07e1618fe3a080398e76a
4
+ data.tar.gz: 97f15a52f7adf94a9b5090648e2db5f27db531067508cc25b5bb4210708803c0
5
5
  SHA512:
6
- metadata.gz: fdaa91d9dd9f783c9fa465f3a64681f47e3b4439465563fa4e5e79080f51bab045e444c975f9c6a4d5ede1b1cdbf2f748e56de0f432d52a4323ea98812548931
7
- data.tar.gz: b5b81eca4e13a6e461c29d8c86106c2e4aa68cc06a274a3a5df6180a17d29edb809b44c8f4ce18e7e12faed340ada59dbd257f50df0e35ff68c1151ef3497732
6
+ metadata.gz: bc66b7f22dc575721fd6908d8c32dd6de23fe34909ea4a328be07ab24f3b99a846328ea62a08ffdbf68757865fdffcfa8638b3b1edcdfed74d689b301c7d7926
7
+ data.tar.gz: 26a455e104bbe824ec22eb7ffe0cfbb20b0de02c1735c75f29106084fcd25fe4861f8051aa0a8a936975d679bbdb166f2da2219d004a81ee3d34b8055fdb79a0
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.312
1
+ 1.0.313
@@ -7,8 +7,7 @@
7
7
  "amount": 1.0,
8
8
  "created_at": "2000-01-01T01:00:00Z",
9
9
  "invoice_id": 1,
10
- "payment_id": 1,
11
- "updated_at": "2000-01-01T01:00:00Z"
10
+ "payment_id": 1
12
11
  }
13
12
  ```
14
13
 
@@ -16,4 +15,3 @@
16
15
  * `created_at` (date-time): Payment line item created at date/time
17
16
  * `invoice_id` (int64): Invoice ID
18
17
  * `payment_id` (int64): Payment ID
19
- * `updated_at` (date-time): Payment line item updated at date/time
@@ -7,13 +7,9 @@
7
7
  "id": 1,
8
8
  "start_at": "2000-01-01T01:00:00Z",
9
9
  "end_at": "2000-01-01T01:00:00Z",
10
- "created_at": "2000-01-01T01:00:00Z",
11
10
  "high_water_user_count": 1.0,
12
11
  "current_storage": 1.0,
13
12
  "high_water_storage": 1.0,
14
- "total_downloads": 1,
15
- "total_uploads": 1,
16
- "updated_at": "2000-01-01T01:00:00Z",
17
13
  "usage_by_top_level_dir": {
18
14
  "key": "example value"
19
15
  },
@@ -31,13 +27,9 @@
31
27
  * `id` (int64): Usage snapshot ID
32
28
  * `start_at` (date-time): Usage snapshot start date/time
33
29
  * `end_at` (date-time): Usage snapshot end date/time
34
- * `created_at` (date-time): DEPRECATED: Usage snapshot created at date/time
35
30
  * `high_water_user_count` (double): Highest user count number in time period
36
31
  * `current_storage` (double): Current total Storage Usage GB as of end date (not necessarily high water mark, which is used for billing)
37
32
  * `high_water_storage` (double): Highest Storage Usage GB recorded in time period (used for billing)
38
- * `total_downloads` (int64): DEPRECATED: Number of downloads in report time period
39
- * `total_uploads` (int64): DEPRECATED: Number of uploads in time period
40
- * `updated_at` (date-time): DEPRECATED: The last time this site usage report was updated
41
33
  * `usage_by_top_level_dir` (object): Storage Usage - map of root folders to their usage as of end date (not necessarily high water mark, which is used for billing)
42
34
  * `root_storage` (double): Storage Usage for root folder as of end date (not necessarily high water mark, which is used for billing)
43
35
  * `deleted_files_counted_in_minimum` (double): Storage Usage for files that are deleted but uploaded within last 30 days as of end date (not necessarily high water mark, which is used for billing)
data/docs/user.md CHANGED
@@ -62,7 +62,6 @@
62
62
  "externally_managed": true,
63
63
  "time_zone": "Pacific Time (US & Canada)",
64
64
  "type_of_2fa": "yubi",
65
- "updated_at": "2000-01-01T01:00:00Z",
66
65
  "user_root": "example",
67
66
  "days_remaining_until_password_expire": 1,
68
67
  "password_expire_at": "2000-01-01T01:00:00Z"
@@ -125,7 +124,6 @@
125
124
  * `externally_managed` (boolean): Is this user managed by a SsoStrategy?
126
125
  * `time_zone` (string): User time zone
127
126
  * `type_of_2fa` (string): Type(s) of 2FA methods in use. Will be either `sms`, `totp`, `u2f`, `yubi`, or multiple values sorted alphabetically and joined by an underscore.
128
- * `updated_at` (date-time): User record most recently updated at. Note this may be incremented because of internal or external updates.
129
127
  * `user_root` (string): Root folder for FTP (and optionally SFTP if the appropriate site-wide setting is set.) Note that this is not used for API, Desktop, or Web interface.
130
128
  * `days_remaining_until_password_expire` (int64): Number of days remaining until password expires
131
129
  * `password_expire_at` (date-time): Password expiration datetime
@@ -28,10 +28,5 @@ module Files
28
28
  def payment_id
29
29
  @attributes[:payment_id]
30
30
  end
31
-
32
- # date-time - Payment line item updated at date/time
33
- def updated_at
34
- @attributes[:updated_at]
35
- end
36
31
  end
37
32
  end
@@ -24,11 +24,6 @@ module Files
24
24
  @attributes[:end_at]
25
25
  end
26
26
 
27
- # date-time - DEPRECATED: Usage snapshot created at date/time
28
- def created_at
29
- @attributes[:created_at]
30
- end
31
-
32
27
  # double - Highest user count number in time period
33
28
  def high_water_user_count
34
29
  @attributes[:high_water_user_count]
@@ -44,21 +39,6 @@ module Files
44
39
  @attributes[:high_water_storage]
45
40
  end
46
41
 
47
- # int64 - DEPRECATED: Number of downloads in report time period
48
- def total_downloads
49
- @attributes[:total_downloads]
50
- end
51
-
52
- # int64 - DEPRECATED: Number of uploads in time period
53
- def total_uploads
54
- @attributes[:total_uploads]
55
- end
56
-
57
- # date-time - DEPRECATED: The last time this site usage report was updated
58
- def updated_at
59
- @attributes[:updated_at]
60
- end
61
-
62
42
  # object - Storage Usage - map of root folders to their usage as of end date (not necessarily high water mark, which is used for billing)
63
43
  def usage_by_top_level_dir
64
44
  @attributes[:usage_by_top_level_dir]
@@ -509,11 +509,6 @@ module Files
509
509
  @attributes[:type_of_2fa] = value
510
510
  end
511
511
 
512
- # date-time - User record most recently updated at. Note this may be incremented because of internal or external updates.
513
- def updated_at
514
- @attributes[:updated_at]
515
- end
516
-
517
512
  # string - Root folder for FTP (and optionally SFTP if the appropriate site-wide setting is set.) Note that this is not used for API, Desktop, or Web interface.
518
513
  def user_root
519
514
  @attributes[:user_root]
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.0.312
4
+ version: 1.0.313
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-15 00:00:00.000000000 Z
11
+ date: 2022-12-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable