files.com 1.0.457 → 1.0.459

Sign up to get free protection for your applications and to get access to all the features.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.457
1
+ 1.0.459
@@ -163,13 +163,6 @@ await User.list({
163
163
  * `filter_lt` (object): If set, return records where the specified field is less than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
164
164
  * `filter_lteq` (object): If set, return records where the specified field is less than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
165
165
  * `ids` (string): comma-separated list of User IDs
166
- * `q[username]` (string): List users matching username.
167
- * `q[email]` (string): List users matching email.
168
- * `q[notes]` (string): List users matching notes field.
169
- * `q[admin]` (string): If `true`, list only admin users.
170
- * `q[allowed_ips]` (string): If set, list only users with overridden allowed IP setting.
171
- * `q[password_validity_days]` (string): If set, list only users with overridden password validity days setting.
172
- * `q[ssl_required]` (string): If set, list only users with overridden SSL required setting.
173
166
  * `search` (string): Searches for partial matches of name, username, or email.
174
167
 
175
168
  ---
package/lib/Files.js CHANGED
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
11
11
  var apiKey;
12
12
  var baseUrl = 'https://app.files.com';
13
13
  var sessionId = null;
14
- var version = '1.0.457';
14
+ var version = '1.0.459';
15
15
  var userAgent = "Files.com JavaScript SDK v".concat(version);
16
16
  var logLevel = _Logger.LogLevel.INFO;
17
17
  var debugRequest = false;
@@ -1023,13 +1023,6 @@ _class = User;
1023
1023
  // filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
1024
1024
  // filter_lteq - object - If set, return records where the specified field is less than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
1025
1025
  // ids - string - comma-separated list of User IDs
1026
- // q[username] - string - List users matching username.
1027
- // q[email] - string - List users matching email.
1028
- // q[notes] - string - List users matching notes field.
1029
- // q[admin] - string - If `true`, list only admin users.
1030
- // q[allowed_ips] - string - If set, list only users with overridden allowed IP setting.
1031
- // q[password_validity_days] - string - If set, list only users with overridden password validity days setting.
1032
- // q[ssl_required] - string - If set, list only users with overridden SSL required setting.
1033
1026
  // search - string - Searches for partial matches of name, username, or email.
1034
1027
  (0, _defineProperty2.default)(User, "list", /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee6() {
1035
1028
  var _response$data;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.457",
3
+ "version": "1.0.459",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
package/src/Files.js CHANGED
@@ -5,7 +5,7 @@ const endpointPrefix = '/api/rest/v1'
5
5
  let apiKey
6
6
  let baseUrl = 'https://app.files.com'
7
7
  let sessionId = null
8
- const version = '1.0.457'
8
+ const version = '1.0.459'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO
@@ -798,13 +798,6 @@ class User {
798
798
  // filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
799
799
  // filter_lteq - object - If set, return records where the specified field is less than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
800
800
  // ids - string - comma-separated list of User IDs
801
- // q[username] - string - List users matching username.
802
- // q[email] - string - List users matching email.
803
- // q[notes] - string - List users matching notes field.
804
- // q[admin] - string - If `true`, list only admin users.
805
- // q[allowed_ips] - string - If set, list only users with overridden allowed IP setting.
806
- // q[password_validity_days] - string - If set, list only users with overridden password validity days setting.
807
- // q[ssl_required] - string - If set, list only users with overridden SSL required setting.
808
801
  // search - string - Searches for partial matches of name, username, or email.
809
802
  static list = async (params = {}, options = {}) => {
810
803
  if (params['cursor'] && !isString(params['cursor'])) {