files.com 1.1.594 → 1.1.596
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 +2 -0
- data/lib/files.com/models/usage_daily_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: 11085599a3233596b6c408fee6e25e27b0daba2d55158c95caef456251d8e5f2
|
|
4
|
+
data.tar.gz: 011f8d4aeebcd595134181e1fa48f9da1e9581e0520e946549cbfd170b050e3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e40bd7a07e0d7e275cfb8da45bf738bda3c40490b0bdfa913bb461d1bf41f877b5ddd4875b2c95f10cc668db937da253f74b3997aa8427c785cc5090abf20ef7
|
|
7
|
+
data.tar.gz: 90be02767994eec07b23fa7a76311a1bea13cf744f25ca657897711de899e1a28ef451471b1992e8fd47afc564715461f60256d97f72e2eb0c2f63f567909aec
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.596
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"api_usage_available": true,
|
|
10
10
|
"read_api_usage": 1,
|
|
11
11
|
"write_api_usage": 1,
|
|
12
|
+
"transformation_credits_usage": 1,
|
|
12
13
|
"user_count": 1,
|
|
13
14
|
"current_storage": 1,
|
|
14
15
|
"deleted_files_storage": 1,
|
|
@@ -29,6 +30,7 @@
|
|
|
29
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.
|
|
30
31
|
* `read_api_usage` (int64): Read API Calls used on this day. Note: only updated for days before the current day.
|
|
31
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: initially this tracks GPG encrypt, decrypt, and recrypt usage.
|
|
32
34
|
* `user_count` (int64): Number of billable users as of this day.
|
|
33
35
|
* `current_storage` (int64): GB of Files Native Storage used on this day.
|
|
34
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.
|
|
@@ -34,6 +34,11 @@ module Files
|
|
|
34
34
|
@attributes[:write_api_usage]
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
+
# int64 - Transformation and AI credits used on this day. Note: initially this tracks GPG encrypt, decrypt, and recrypt usage.
|
|
38
|
+
def transformation_credits_usage
|
|
39
|
+
@attributes[:transformation_credits_usage]
|
|
40
|
+
end
|
|
41
|
+
|
|
37
42
|
# int64 - Number of billable users as of this day.
|
|
38
43
|
def user_count
|
|
39
44
|
@attributes[:user_count]
|
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.596
|
|
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-04-
|
|
11
|
+
date: 2026-04-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|