Skip to content

Commit e6511d5

Browse files
[Bot] push changes from Files.com
1 parent 81e3ea4 commit e6511d5

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.602
1+
1.2.603

docs/models/UsageDailySnapshot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"api_usage_available": true,
1010
"read_api_usage": 1,
1111
"write_api_usage": 1,
12-
"transformation_credits_usage": "100",
12+
"transformation_credits_usage": 1,
1313
"user_count": 1,
1414
"current_storage": 1,
1515
"deleted_files_storage": 1,
@@ -30,7 +30,7 @@
3030
* `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.
3131
* `read_api_usage` (int64): Read API Calls used on this day. Note: only updated for days before the current day.
3232
* `write_api_usage` (int64): Write API Calls used on this day. Note: only updated for days before the current day.
33-
* `transformation_credits_usage` (decimal): 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: initially this tracks GPG encrypt, decrypt, and recrypt usage.
3434
* `user_count` (int64): Number of billable users as of this day.
3535
* `current_storage` (int64): GB of Files Native Storage used on this day.
3636
* `deleted_files_storage` (int64): GB of Files Native Storage used on this day for files that have been deleted and are stored as backups.

lib/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
1414
var language = null;
15-
var version = '1.2.602';
15+
var version = '1.2.603';
1616
var userAgent = "Files.com JavaScript SDK v".concat(version);
1717
var logLevel = _Logger.LogLevel.INFO;
1818
var debugRequest = false;

lib/models/UsageDailySnapshot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ var UsageDailySnapshot = /*#__PURE__*/(0, _createClass2.default)(function UsageD
5252
(0, _defineProperty2.default)(this, "getWriteApiUsage", function () {
5353
return _this.attributes.write_api_usage;
5454
});
55-
// decimal # Transformation and AI credits used on this day. Note: initially this tracks GPG encrypt, decrypt, and recrypt usage.
55+
// int64 # Transformation and AI credits used on this day. Note: initially this tracks GPG encrypt, decrypt, and recrypt usage.
5656
(0, _defineProperty2.default)(this, "getTransformationCreditsUsage", function () {
5757
return _this.attributes.transformation_credits_usage;
5858
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "files.com",
3-
"version": "1.2.602",
3+
"version": "1.2.603",
44
"description": "Files.com SDK for JavaScript",
55
"keywords": [
66
"files.com",

src/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let apiKey
66
let baseUrl = 'https://app.files.com'
77
let sessionId = null
88
let language = null
9-
const version = '1.2.602'
9+
const version = '1.2.603'
1010
let userAgent = `Files.com JavaScript SDK v${version}`
1111

1212
let logLevel = LogLevel.INFO

src/models/UsageDailySnapshot.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class UsageDailySnapshot {
4343
// int64 # Write API Calls used on this day. Note: only updated for days before the current day.
4444
getWriteApiUsage = () => this.attributes.write_api_usage
4545

46-
// decimal # Transformation and AI credits used on this day. Note: initially this tracks GPG encrypt, decrypt, and recrypt usage.
46+
// int64 # Transformation and AI credits used on this day. Note: initially this tracks GPG encrypt, decrypt, and recrypt usage.
4747
getTransformationCreditsUsage = () => this.attributes.transformation_credits_usage
4848

4949
// int64 # Number of billable users as of this day.

0 commit comments

Comments
 (0)