Skip to content

Commit 10cc434

Browse files
[Bot] push changes from Files.com
1 parent 050bae8 commit 10cc434

10 files changed

Lines changed: 35 additions & 35 deletions

File tree

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.537
1+
1.2.538

docs/models/BandwidthSnapshot.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@
55
```
66
{
77
"id": 1,
8-
"bytes_received": "1.0",
9-
"bytes_sent": "1.0",
10-
"sync_bytes_received": "1.0",
11-
"sync_bytes_sent": "1.0",
12-
"requests_get": "1.0",
13-
"requests_put": "1.0",
14-
"requests_other": "1.0",
8+
"bytes_received": 1,
9+
"bytes_sent": 1,
10+
"sync_bytes_received": 1,
11+
"sync_bytes_sent": 1,
12+
"requests_get": 1,
13+
"requests_put": 1,
14+
"requests_other": 1,
1515
"logged_at": "2000-01-01T01:00:00Z"
1616
}
1717
```
1818

1919
* `id` (int64): Site bandwidth ID
20-
* `bytes_received` (double): Site bandwidth report bytes received
21-
* `bytes_sent` (double): Site bandwidth report bytes sent
22-
* `sync_bytes_received` (double): Site sync bandwidth report bytes received
23-
* `sync_bytes_sent` (double): Site sync bandwidth report bytes sent
24-
* `requests_get` (double): Site bandwidth report get requests
25-
* `requests_put` (double): Site bandwidth report put requests
26-
* `requests_other` (double): Site bandwidth report other requests
20+
* `bytes_received` (int64): Site bandwidth report bytes received
21+
* `bytes_sent` (int64): Site bandwidth report bytes sent
22+
* `sync_bytes_received` (int64): Site sync bandwidth report bytes received
23+
* `sync_bytes_sent` (int64): Site sync bandwidth report bytes sent
24+
* `requests_get` (int64): Site bandwidth report get requests
25+
* `requests_put` (int64): Site bandwidth report put requests
26+
* `requests_other` (int64): Site bandwidth report other requests
2727
* `logged_at` (date-time): Time the site bandwidth report was logged
2828

2929
---

docs/models/Bundle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ await Bundle.list({
154154
* `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
155155
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
156156
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
157-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
157+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
158158
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
159159
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
160160
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.

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

lib/models/BandwidthSnapshot.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,31 +36,31 @@ var BandwidthSnapshot = /*#__PURE__*/(0, _createClass2.default)(function Bandwid
3636
(0, _defineProperty2.default)(this, "getId", function () {
3737
return _this.attributes.id;
3838
});
39-
// double # Site bandwidth report bytes received
39+
// int64 # Site bandwidth report bytes received
4040
(0, _defineProperty2.default)(this, "getBytesReceived", function () {
4141
return _this.attributes.bytes_received;
4242
});
43-
// double # Site bandwidth report bytes sent
43+
// int64 # Site bandwidth report bytes sent
4444
(0, _defineProperty2.default)(this, "getBytesSent", function () {
4545
return _this.attributes.bytes_sent;
4646
});
47-
// double # Site sync bandwidth report bytes received
47+
// int64 # Site sync bandwidth report bytes received
4848
(0, _defineProperty2.default)(this, "getSyncBytesReceived", function () {
4949
return _this.attributes.sync_bytes_received;
5050
});
51-
// double # Site sync bandwidth report bytes sent
51+
// int64 # Site sync bandwidth report bytes sent
5252
(0, _defineProperty2.default)(this, "getSyncBytesSent", function () {
5353
return _this.attributes.sync_bytes_sent;
5454
});
55-
// double # Site bandwidth report get requests
55+
// int64 # Site bandwidth report get requests
5656
(0, _defineProperty2.default)(this, "getRequestsGet", function () {
5757
return _this.attributes.requests_get;
5858
});
59-
// double # Site bandwidth report put requests
59+
// int64 # Site bandwidth report put requests
6060
(0, _defineProperty2.default)(this, "getRequestsPut", function () {
6161
return _this.attributes.requests_put;
6262
});
63-
// double # Site bandwidth report other requests
63+
// int64 # Site bandwidth report other requests
6464
(0, _defineProperty2.default)(this, "getRequestsOther", function () {
6565
return _this.attributes.requests_other;
6666
});

lib/models/Bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ _Bundle = Bundle;
699699
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
700700
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
701701
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
702-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
702+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
703703
// filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
704704
// filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
705705
// filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.

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.537",
3+
"version": "1.2.538",
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.537'
9+
const version = '1.2.538'
1010
let userAgent = `Files.com JavaScript SDK v${version}`
1111

1212
let logLevel = LogLevel.INFO

src/models/BandwidthSnapshot.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@ class BandwidthSnapshot {
3131
// int64 # Site bandwidth ID
3232
getId = () => this.attributes.id
3333

34-
// double # Site bandwidth report bytes received
34+
// int64 # Site bandwidth report bytes received
3535
getBytesReceived = () => this.attributes.bytes_received
3636

37-
// double # Site bandwidth report bytes sent
37+
// int64 # Site bandwidth report bytes sent
3838
getBytesSent = () => this.attributes.bytes_sent
3939

40-
// double # Site sync bandwidth report bytes received
40+
// int64 # Site sync bandwidth report bytes received
4141
getSyncBytesReceived = () => this.attributes.sync_bytes_received
4242

43-
// double # Site sync bandwidth report bytes sent
43+
// int64 # Site sync bandwidth report bytes sent
4444
getSyncBytesSent = () => this.attributes.sync_bytes_sent
4545

46-
// double # Site bandwidth report get requests
46+
// int64 # Site bandwidth report get requests
4747
getRequestsGet = () => this.attributes.requests_get
4848

49-
// double # Site bandwidth report put requests
49+
// int64 # Site bandwidth report put requests
5050
getRequestsPut = () => this.attributes.requests_put
5151

52-
// double # Site bandwidth report other requests
52+
// int64 # Site bandwidth report other requests
5353
getRequestsOther = () => this.attributes.requests_other
5454

5555
// date-time # Time the site bandwidth report was logged

src/models/Bundle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ class Bundle {
556556
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
557557
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
558558
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
559-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
559+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
560560
// filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
561561
// filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
562562
// filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.

0 commit comments

Comments
 (0)