Skip to content

Commit bafcf0c

Browse files
v1.2.548
[Bot] push changes from Files.com
1 parent 8d007b8 commit bafcf0c

26 files changed

Lines changed: 58 additions & 37 deletions

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.547
1+
1.2.548

docs/models/AccountLineItem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
```
4545

4646
* `id` (int64): Line item Id
47-
* `amount` (double): Line item amount
48-
* `balance` (double): Line item balance
47+
* `amount` (decimal): Line item amount
48+
* `balance` (decimal): Line item balance
4949
* `created_at` (date-time): Line item created at
5050
* `currency` (string): Line item currency
5151
* `download_uri` (string): Line item download uri

docs/models/Invoice.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
```
4545

4646
* `id` (int64): Line item Id
47-
* `amount` (double): Line item amount
48-
* `balance` (double): Line item balance
47+
* `amount` (decimal): Line item amount
48+
* `balance` (decimal): Line item balance
4949
* `created_at` (date-time): Line item created at
5050
* `currency` (string): Line item currency
5151
* `download_uri` (string): Line item download uri

docs/models/InvoiceLineItem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
```
2222

2323
* `id` (int64): Invoice Line item Id
24-
* `amount` (double): Invoice line item amount
24+
* `amount` (decimal): Invoice line item amount
2525
* `created_at` (date-time): Invoice line item created at date/time
2626
* `description` (string): Invoice line item description
2727
* `type` (string): Invoice line item type

docs/models/Payment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@
4444
```
4545

4646
* `id` (int64): Line item Id
47-
* `amount` (double): Line item amount
48-
* `balance` (double): Line item balance
47+
* `amount` (decimal): Line item amount
48+
* `balance` (decimal): Line item balance
4949
* `created_at` (date-time): Line item created at
5050
* `currency` (string): Line item currency
5151
* `download_uri` (string): Line item download uri

docs/models/PaymentLineItem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
```
1313

14-
* `amount` (double): Payment line item amount
14+
* `amount` (decimal): Payment line item amount
1515
* `created_at` (date-time): Payment line item created at date/time
1616
* `invoice_id` (int64): Invoice ID
1717
* `payment_id` (int64): Payment ID

docs/models/RemoteMountBackend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
* `health_check_type` (string): Type of health check to perform.
4444
* `id` (int64): Unique identifier for this backend.
4545
* `interval` (int64): Interval in seconds between health checks.
46-
* `min_free_cpu` (double): Minimum free CPU percentage required for this backend to be considered healthy.
47-
* `min_free_mem` (double): Minimum free memory percentage required for this backend to be considered healthy.
46+
* `min_free_cpu` (decimal): Minimum free CPU percentage required for this backend to be considered healthy.
47+
* `min_free_mem` (decimal): Minimum free memory percentage required for this backend to be considered healthy.
4848
* `priority` (int64): Priority of this backend.
4949
* `remote_path` (string): Path on the remote server to treat as the root of this mount.
5050
* `remote_server_id` (int64): The remote server that this backend is associated with.

docs/models/Site.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@
418418
* `motd_text` (string): A message to show users when they connect via FTP or SFTP.
419419
* `motd_use_for_ftp` (boolean): Show message to users connecting via FTP
420420
* `motd_use_for_sftp` (boolean): Show message to users connecting via SFTP
421-
* `next_billing_amount` (double): Next billing amount
421+
* `next_billing_amount` (decimal): Next billing amount
422422
* `next_billing_date` (string): Next billing date
423423
* `office_integration_available` (boolean): If true, allows users to use a document editing integration.
424424
* `office_integration_type` (string): Which document editing integration to support. Files.com Editor or Microsoft Office for the Web.

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.547';
15+
var version = '1.2.548';
1616
var userAgent = "Files.com JavaScript SDK v".concat(version);
1717
var logLevel = _Logger.LogLevel.INFO;
1818
var debugRequest = false;

lib/models/AccountLineItem.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ var AccountLineItem = /*#__PURE__*/(0, _createClass2.default)(function AccountLi
3232
(0, _defineProperty2.default)(this, "getId", function () {
3333
return _this.attributes.id;
3434
});
35-
// double # Line item amount
35+
// decimal # Line item amount
3636
(0, _defineProperty2.default)(this, "getAmount", function () {
3737
return _this.attributes.amount;
3838
});
39-
// double # Line item balance
39+
// decimal # Line item balance
4040
(0, _defineProperty2.default)(this, "getBalance", function () {
4141
return _this.attributes.balance;
4242
});

0 commit comments

Comments
 (0)