files.com 1.0.260 → 1.0.262

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -379,14 +379,6 @@ var Site = /*#__PURE__*/(0, _createClass2.default)(function Site() {
379
379
  (0, _defineProperty2.default)(this, "getOptOutGlobal", function () {
380
380
  return _this.attributes.opt_out_global;
381
381
  });
382
- // date-time # Last time the site was notified about an overage
383
- (0, _defineProperty2.default)(this, "getOverageNotifiedAt", function () {
384
- return _this.attributes.overage_notified_at;
385
- });
386
- // boolean # Notify site email of overages?
387
- (0, _defineProperty2.default)(this, "getOverageNotify", function () {
388
- return _this.attributes.overage_notify;
389
- });
390
382
  // boolean # Is this site's billing overdue?
391
383
  (0, _defineProperty2.default)(this, "getOverdue", function () {
392
384
  return _this.attributes.overdue;
@@ -664,7 +656,6 @@ var Site = /*#__PURE__*/(0, _createClass2.default)(function Site() {
664
656
  // reply_to_email - string - Reply-to email for this site
665
657
  // allow_bundle_names - boolean - Are manual Bundle names allowed?
666
658
  // bundle_expiration - int64 - Site-wide Bundle expiration in days
667
- // overage_notify - boolean - Notify site email of overages?
668
659
  // welcome_email_enabled - boolean - Will the welcome email be sent to new users?
669
660
  // ask_about_overwrites - boolean - If false, rename conflicting files instead of asking for overwrite confirmation. Only applies to web interface.
670
661
  // show_request_access_link - boolean - Show request access link for users without access? Currently unused.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.260",
3
+ "version": "1.0.262",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
package/src/Errors.js CHANGED
@@ -97,6 +97,7 @@ export class BadRequest_InvalidBodyError extends BadRequestError { constructor(m
97
97
  export class BadRequest_InvalidCursorError extends BadRequestError { constructor(message, code) { super(message, code); this.name = 'BadRequest_InvalidCursorError' } } errorClasses.BadRequest_InvalidCursorError = BadRequest_InvalidCursorError
98
98
  export class BadRequest_InvalidCursorTypeForSortError extends BadRequestError { constructor(message, code) { super(message, code); this.name = 'BadRequest_InvalidCursorTypeForSortError' } } errorClasses.BadRequest_InvalidCursorTypeForSortError = BadRequest_InvalidCursorTypeForSortError
99
99
  export class BadRequest_InvalidEtagsError extends BadRequestError { constructor(message, code) { super(message, code); this.name = 'BadRequest_InvalidEtagsError' } } errorClasses.BadRequest_InvalidEtagsError = BadRequest_InvalidEtagsError
100
+ export class BadRequest_InvalidFilterAliasCombinationError extends BadRequestError { constructor(message, code) { super(message, code); this.name = 'BadRequest_InvalidFilterAliasCombinationError' } } errorClasses.BadRequest_InvalidFilterAliasCombinationError = BadRequest_InvalidFilterAliasCombinationError
100
101
  export class BadRequest_InvalidFilterCombinationError extends BadRequestError { constructor(message, code) { super(message, code); this.name = 'BadRequest_InvalidFilterCombinationError' } } errorClasses.BadRequest_InvalidFilterCombinationError = BadRequest_InvalidFilterCombinationError
101
102
  export class BadRequest_InvalidFilterFieldError extends BadRequestError { constructor(message, code) { super(message, code); this.name = 'BadRequest_InvalidFilterFieldError' } } errorClasses.BadRequest_InvalidFilterFieldError = BadRequest_InvalidFilterFieldError
102
103
  export class BadRequest_InvalidFilterParamError extends BadRequestError { constructor(message, code) { super(message, code); this.name = 'BadRequest_InvalidFilterParamError' } } errorClasses.BadRequest_InvalidFilterParamError = BadRequest_InvalidFilterParamError
@@ -284,12 +284,6 @@ class Site {
284
284
  // boolean # Use servers in the USA only?
285
285
  getOptOutGlobal = () => this.attributes.opt_out_global
286
286
 
287
- // date-time # Last time the site was notified about an overage
288
- getOverageNotifiedAt = () => this.attributes.overage_notified_at
289
-
290
- // boolean # Notify site email of overages?
291
- getOverageNotify = () => this.attributes.overage_notify
292
-
293
287
  // boolean # Is this site's billing overdue?
294
288
  getOverdue = () => this.attributes.overdue
295
289
 
@@ -475,7 +469,6 @@ class Site {
475
469
  // reply_to_email - string - Reply-to email for this site
476
470
  // allow_bundle_names - boolean - Are manual Bundle names allowed?
477
471
  // bundle_expiration - int64 - Site-wide Bundle expiration in days
478
- // overage_notify - boolean - Notify site email of overages?
479
472
  // welcome_email_enabled - boolean - Will the welcome email be sent to new users?
480
473
  // ask_about_overwrites - boolean - If false, rename conflicting files instead of asking for overwrite confirmation. Only applies to web interface.
481
474
  // show_request_access_link - boolean - Show request access link for users without access? Currently unused.