files.com 1.2.105 → 1.2.106

Sign up to get free protection for your applications and to get access to all the features.
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.2.105';
14
+ var version = '1.2.106';
15
15
  var userAgent = "Files.com JavaScript SDK v".concat(version);
16
16
  var logLevel = _Logger.LogLevel.INFO;
17
17
  var debugRequest = false;
@@ -359,6 +359,13 @@ var User = /*#__PURE__*/(0, _createClass2.default)(function User() {
359
359
  (0, _defineProperty2.default)(this, "setPasswordExpired", function (value) {
360
360
  _this.attributes.password_expired = value;
361
361
  });
362
+ // boolean # Is the user an allowed to view all (non-billing) site configuration for this site?
363
+ (0, _defineProperty2.default)(this, "getReadonlySiteAdmin", function () {
364
+ return _this.attributes.readonly_site_admin;
365
+ });
366
+ (0, _defineProperty2.default)(this, "setReadonlySiteAdmin", function (value) {
367
+ _this.attributes.readonly_site_admin = value;
368
+ });
362
369
  // boolean # Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
363
370
  (0, _defineProperty2.default)(this, "getRestapiPermission", function () {
364
371
  return _this.attributes.restapi_permission;
@@ -712,6 +719,7 @@ var User = /*#__PURE__*/(0, _createClass2.default)(function User() {
712
719
  // notes - string - Any internal notes on the user
713
720
  // office_integration_enabled - boolean - Enable integration with Office for the web?
714
721
  // password_validity_days - int64 - Number of days to allow user to use the same password
722
+ // readonly_site_admin - boolean - Is the user an allowed to view all (non-billing) site configuration for this site?
715
723
  // receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
716
724
  // require_login_by - string - Require user to login by specified date otherwise it will be disabled.
717
725
  // require_password_change - boolean - Is a password change required upon next user login?
@@ -1177,6 +1185,7 @@ _User = User;
1177
1185
  // notes - string - Any internal notes on the user
1178
1186
  // office_integration_enabled - boolean - Enable integration with Office for the web?
1179
1187
  // password_validity_days - int64 - Number of days to allow user to use the same password
1188
+ // readonly_site_admin - boolean - Is the user an allowed to view all (non-billing) site configuration for this site?
1180
1189
  // receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
1181
1190
  // require_login_by - string - Require user to login by specified date otherwise it will be disabled.
1182
1191
  // require_password_change - boolean - Is a password change required upon next user login?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.105",
3
+ "version": "1.2.106",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
package/src/Errors.js CHANGED
@@ -157,6 +157,7 @@ export class NotAuthorized_ApiKeyIsPathRestrictedError extends NotAuthorizedErro
157
157
  export class NotAuthorized_ApiKeyOnlyForDesktopAppError extends NotAuthorizedError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'NotAuthorized_ApiKeyOnlyForDesktopAppError' } } errorClasses.NotAuthorized_ApiKeyOnlyForDesktopAppError = NotAuthorized_ApiKeyOnlyForDesktopAppError
158
158
  export class NotAuthorized_ApiKeyOnlyForMobileAppError extends NotAuthorizedError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'NotAuthorized_ApiKeyOnlyForMobileAppError' } } errorClasses.NotAuthorized_ApiKeyOnlyForMobileAppError = NotAuthorized_ApiKeyOnlyForMobileAppError
159
159
  export class NotAuthorized_ApiKeyOnlyForOfficeIntegrationError extends NotAuthorizedError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'NotAuthorized_ApiKeyOnlyForOfficeIntegrationError' } } errorClasses.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = NotAuthorized_ApiKeyOnlyForOfficeIntegrationError
160
+ export class NotAuthorized_BillingOrSiteAdminPermissionRequiredError extends NotAuthorizedError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'NotAuthorized_BillingOrSiteAdminPermissionRequiredError' } } errorClasses.NotAuthorized_BillingOrSiteAdminPermissionRequiredError = NotAuthorized_BillingOrSiteAdminPermissionRequiredError
160
161
  export class NotAuthorized_BillingPermissionRequiredError extends NotAuthorizedError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'NotAuthorized_BillingPermissionRequiredError' } } errorClasses.NotAuthorized_BillingPermissionRequiredError = NotAuthorized_BillingPermissionRequiredError
161
162
  export class NotAuthorized_BundleMaximumUsesReachedError extends NotAuthorizedError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'NotAuthorized_BundleMaximumUsesReachedError' } } errorClasses.NotAuthorized_BundleMaximumUsesReachedError = NotAuthorized_BundleMaximumUsesReachedError
162
163
  export class NotAuthorized_CannotLoginWhileUsingKeyError extends NotAuthorizedError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'NotAuthorized_CannotLoginWhileUsingKeyError' } } errorClasses.NotAuthorized_CannotLoginWhileUsingKeyError = NotAuthorized_CannotLoginWhileUsingKeyError
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.2.105'
8
+ const version = '1.2.106'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO
@@ -353,6 +353,13 @@ class User {
353
353
  this.attributes.password_expired = value
354
354
  }
355
355
 
356
+ // boolean # Is the user an allowed to view all (non-billing) site configuration for this site?
357
+ getReadonlySiteAdmin = () => this.attributes.readonly_site_admin
358
+
359
+ setReadonlySiteAdmin = value => {
360
+ this.attributes.readonly_site_admin = value
361
+ }
362
+
356
363
  // boolean # Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
357
364
  getRestapiPermission = () => this.attributes.restapi_permission
358
365
 
@@ -637,6 +644,7 @@ class User {
637
644
  // notes - string - Any internal notes on the user
638
645
  // office_integration_enabled - boolean - Enable integration with Office for the web?
639
646
  // password_validity_days - int64 - Number of days to allow user to use the same password
647
+ // readonly_site_admin - boolean - Is the user an allowed to view all (non-billing) site configuration for this site?
640
648
  // receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
641
649
  // require_login_by - string - Require user to login by specified date otherwise it will be disabled.
642
650
  // require_password_change - boolean - Is a password change required upon next user login?
@@ -916,6 +924,7 @@ class User {
916
924
  // notes - string - Any internal notes on the user
917
925
  // office_integration_enabled - boolean - Enable integration with Office for the web?
918
926
  // password_validity_days - int64 - Number of days to allow user to use the same password
927
+ // readonly_site_admin - boolean - Is the user an allowed to view all (non-billing) site configuration for this site?
919
928
  // receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
920
929
  // require_login_by - string - Require user to login by specified date otherwise it will be disabled.
921
930
  // require_password_change - boolean - Is a password change required upon next user login?