files.com 1.1.720 → 1.1.721
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 +4 -4
- data/_VERSION +1 -1
- data/docs/usage_daily_snapshot.md +1 -1
- data/docs/usage_snapshot.md +2 -0
- data/lib/files.com/models/usage_daily_snapshot.rb +1 -1
- data/lib/files.com/models/usage_snapshot.rb +5 -0
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0abf8f373e951f20194ea7dbc5fc7dfef3e4202b40f2b82a18c8a4be7c66407d
|
|
4
|
+
data.tar.gz: cc2cf4a0063d45684abd52d993e9bf7ed25deefc4c2abe29d7d1708876f38715
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84f662ac4f8fab2ffc9e3cd7e0d65bbec967dd7b7881d7d1820073cde464d34f30a0df34a3b9cd7b01640d942e8fcef8b3933ac4ff9f2fcadff4e29fd6e96bee
|
|
7
|
+
data.tar.gz: 766aab74724890db8628801614027151244aa5e755d440b63b857a8264aa8b0f9879c4180dfcd63e3c712687f57a017d3a2591d9f88f3af62cb7778aaa2d3c98
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.721
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
* `api_usage_available` (boolean): True if the API usage fields `read_api_usage` and `write_api_usage` can be relied upon. If this is false, we suggest hiding that value from any UI.
|
|
31
31
|
* `read_api_usage` (int64): Read API Calls used on this day. Note: only updated for days before the current day.
|
|
32
32
|
* `write_api_usage` (int64): Write API Calls used on this day. Note: only updated for days before the current day.
|
|
33
|
-
* `transformation_credits_usage` (int64): Transformation and AI credits used on this day. Note:
|
|
33
|
+
* `transformation_credits_usage` (int64): Transformation and AI credits used on this day. Note: only updated for days before the current day.
|
|
34
34
|
* `user_count` (int64): Number of billable users as of this day.
|
|
35
35
|
* `current_storage` (int64): GB of Files Native Storage used on this day.
|
|
36
36
|
* `deleted_files_storage` (int64): GB of Files Native Storage used on this day for files that have been deleted and are stored as backups.
|
data/docs/usage_snapshot.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"start_at": "2000-01-01T01:00:00Z",
|
|
9
9
|
"end_at": "2000-01-01T01:00:00Z",
|
|
10
10
|
"high_water_user_count": 1,
|
|
11
|
+
"transformation_credits_usage": 1,
|
|
11
12
|
"current_storage": 1,
|
|
12
13
|
"high_water_storage": 1,
|
|
13
14
|
"root_storage": 1,
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
* `start_at` (date-time): Usage snapshot start date/time
|
|
33
34
|
* `end_at` (date-time): Usage snapshot end date/time
|
|
34
35
|
* `high_water_user_count` (int64): Highest user count number in time period
|
|
36
|
+
* `transformation_credits_usage` (int64): Total Transformation and AI credits used in this usage period. Updated daily. Does not include credits consumed today.
|
|
35
37
|
* `current_storage` (int64): Current total Storage Usage GB as of end date (not necessarily high water mark, which is used for billing)
|
|
36
38
|
* `high_water_storage` (int64): Highest Storage Usage GB recorded in time period (used for billing)
|
|
37
39
|
* `root_storage` (int64): Storage Usage for root folder as of end date (not necessarily high water mark, which is used for billing)
|
|
@@ -34,7 +34,7 @@ module Files
|
|
|
34
34
|
@attributes[:write_api_usage]
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
-
# int64 - Transformation and AI credits used on this day. Note:
|
|
37
|
+
# int64 - Transformation and AI credits used on this day. Note: only updated for days before the current day.
|
|
38
38
|
def transformation_credits_usage
|
|
39
39
|
@attributes[:transformation_credits_usage]
|
|
40
40
|
end
|
|
@@ -29,6 +29,11 @@ module Files
|
|
|
29
29
|
@attributes[:high_water_user_count]
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
+
# int64 - Total Transformation and AI credits used in this usage period. Updated daily. Does not include credits consumed today.
|
|
33
|
+
def transformation_credits_usage
|
|
34
|
+
@attributes[:transformation_credits_usage]
|
|
35
|
+
end
|
|
36
|
+
|
|
32
37
|
# int64 - Current total Storage Usage GB as of end date (not necessarily high water mark, which is used for billing)
|
|
33
38
|
def current_storage
|
|
34
39
|
@attributes[:current_storage]
|
data/lib/files.com/version.rb
CHANGED
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.
|
|
4
|
+
version: 1.1.721
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|