Skip to content

Commit 9da8b73

Browse files
[Bot] push changes from Files.com
1 parent 79f1b2d commit 9da8b73

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.626
1+
1.2.627

docs/models/ApiKey.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ await ApiKey.list({
6060
* `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.
6161
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
6262
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`.
63-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `expires_at`.
63+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `aws_style_credentials` and `expires_at`.
6464
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `expires_at`.
6565
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `expires_at`.
6666
* `filter_lt` (object): If set, return records where the specified field is less than the supplied value. Valid fields are `expires_at`.

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

lib/models/ApiKey.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ _ApiKey = ApiKey;
328328
// 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.
329329
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
330330
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`.
331-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `expires_at`.
331+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `aws_style_credentials` and `expires_at`.
332332
// filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `expires_at`.
333333
// filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `expires_at`.
334334
// filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `expires_at`.

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

1212
let logLevel = LogLevel.INFO

src/models/ApiKey.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class ApiKey {
238238
// 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.
239239
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
240240
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`.
241-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `expires_at`.
241+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `aws_style_credentials` and `expires_at`.
242242
// filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `expires_at`.
243243
// filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `expires_at`.
244244
// filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `expires_at`.

0 commit comments

Comments
 (0)