files.com 1.1.720 → 1.1.722

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: 659a4926d060630ccc6dcc28a15865736be46a54993949ddf58291f653d86f6c
4
- data.tar.gz: e395535775d6c1ac62485a228d7b1d1a809a105ced6a8a0b47d2d8b13f92a5d2
3
+ metadata.gz: 473149cf50fdfbf087bbaf3b9e9897fe68b36504edf1a4643ea6922346ce123e
4
+ data.tar.gz: a874a0ec342cebaa92543551ff6f35c5fc9e3770ca70efc804eae8620c3c97d8
5
5
  SHA512:
6
- metadata.gz: 07d039a3cb2b2b80be24f9fc3b2250fa5dde754bff1e28a9f5ab256efca8611e996c4f8086e2181e24082a4b14125a7696bcee7db5153c3c228e024a1b14db04
7
- data.tar.gz: 5052b9341584908648f4c79251ce37f9adb54d31e9cf6a17982b993e3eae5bdd5443b1fbf213c5b4004f806517c3284f27d13dd419413b4740712c003e99d01b
6
+ metadata.gz: 6daaaf679e845b885e23e30486638b9f50b88beb5a6598beca6021e2a0f3af19530d34224f4ce0fbc9e91eea762ab5440131716072e3d392253dc4690c50825f
7
+ data.tar.gz: b8e210c36ce33b3dde3921870986a563ed418ed5852e2652f7f3abdf4c1a06e9fc61545e3712f1a8a3ac100a1d55055c972baa3fabe7f69d5d677d47dbca2952
data/Gemfile.lock CHANGED
@@ -21,7 +21,7 @@ GEM
21
21
  ast (2.4.2)
22
22
  base64 (0.2.0)
23
23
  benchmark (0.4.1)
24
- bigdecimal (4.1.2)
24
+ bigdecimal (4.1.3)
25
25
  byebug (11.1.3)
26
26
  coderay (1.1.3)
27
27
  concurrent-ruby (1.1.10)
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.720
1
+ 1.1.722
@@ -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: initially this tracks GPG encrypt, decrypt, and recrypt usage.
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.
@@ -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: initially this tracks GPG encrypt, decrypt, and recrypt usage.
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]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.720"
4
+ VERSION = "1.1.722"
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.720
4
+ version: 1.1.722
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-10 00:00:00.000000000 Z
11
+ date: 2026-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable