files.com 1.0.260 → 1.0.261
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.
- package/_VERSION +1 -1
- package/docs/models/Site.md +0 -6
- package/lib/models/Site.js +0 -9
- package/package.json +1 -1
- package/src/models/Site.js +0 -7
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.261
|
package/docs/models/Site.md
CHANGED
@@ -93,8 +93,6 @@
|
|
93
93
|
"office_integration_type": "example",
|
94
94
|
"oncehub_link": "https://go.oncehub.com/files",
|
95
95
|
"opt_out_global": true,
|
96
|
-
"overage_notified_at": "2000-01-01T01:00:00Z",
|
97
|
-
"overage_notify": true,
|
98
96
|
"overdue": true,
|
99
97
|
"password_min_length": 1,
|
100
98
|
"password_require_letter": true,
|
@@ -239,8 +237,6 @@
|
|
239
237
|
* `office_integration_type` (string): Office integration application used to edit and view the MS Office documents
|
240
238
|
* `oncehub_link` (string): Link to scheduling a meeting with our Sales team
|
241
239
|
* `opt_out_global` (boolean): Use servers in the USA only?
|
242
|
-
* `overage_notified_at` (date-time): Last time the site was notified about an overage
|
243
|
-
* `overage_notify` (boolean): Notify site email of overages?
|
244
240
|
* `overdue` (boolean): Is this site's billing overdue?
|
245
241
|
* `password_min_length` (int64): Shortest password length for users
|
246
242
|
* `password_require_letter` (boolean): Require a letter in passwords?
|
@@ -329,7 +325,6 @@ await Site.update({
|
|
329
325
|
'reply_to_email': "example",
|
330
326
|
'allow_bundle_names': true,
|
331
327
|
'bundle_expiration': 1,
|
332
|
-
'overage_notify': true,
|
333
328
|
'welcome_email_enabled': true,
|
334
329
|
'ask_about_overwrites': true,
|
335
330
|
'show_request_access_link': true,
|
@@ -460,7 +455,6 @@ await Site.update({
|
|
460
455
|
* `reply_to_email` (string): Reply-to email for this site
|
461
456
|
* `allow_bundle_names` (boolean): Are manual Bundle names allowed?
|
462
457
|
* `bundle_expiration` (int64): Site-wide Bundle expiration in days
|
463
|
-
* `overage_notify` (boolean): Notify site email of overages?
|
464
458
|
* `welcome_email_enabled` (boolean): Will the welcome email be sent to new users?
|
465
459
|
* `ask_about_overwrites` (boolean): If false, rename conflicting files instead of asking for overwrite confirmation. Only applies to web interface.
|
466
460
|
* `show_request_access_link` (boolean): Show request access link for users without access? Currently unused.
|
package/lib/models/Site.js
CHANGED
@@ -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
package/src/models/Site.js
CHANGED
@@ -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.
|