files.com 1.0.169 → 1.0.172

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 CHANGED
@@ -1 +1 @@
1
- 1.0.169
1
+ 1.0.172
@@ -95,6 +95,24 @@ var Bundle = /*#__PURE__*/(0, _createClass2.default)(function Bundle() {
95
95
  (0, _defineProperty2.default)(this, "setFormFieldSet", function (value) {
96
96
  _this.attributes.form_field_set = value;
97
97
  });
98
+ (0, _defineProperty2.default)(this, "getSkipName", function () {
99
+ return _this.attributes.skip_name;
100
+ });
101
+ (0, _defineProperty2.default)(this, "setSkipName", function (value) {
102
+ _this.attributes.skip_name = value;
103
+ });
104
+ (0, _defineProperty2.default)(this, "getSkipEmail", function () {
105
+ return _this.attributes.skip_email;
106
+ });
107
+ (0, _defineProperty2.default)(this, "setSkipEmail", function (value) {
108
+ _this.attributes.skip_email = value;
109
+ });
110
+ (0, _defineProperty2.default)(this, "getSkipCompany", function () {
111
+ return _this.attributes.skip_company;
112
+ });
113
+ (0, _defineProperty2.default)(this, "setSkipCompany", function (value) {
114
+ _this.attributes.skip_company = value;
115
+ });
98
116
  (0, _defineProperty2.default)(this, "getId", function () {
99
117
  return _this.attributes.id;
100
118
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.169",
3
+ "version": "1.0.172",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -40,7 +40,7 @@ class As2IncomingMessage {
40
40
  // string # JSON Structure of the activity log.
41
41
  getActivityLog = () => this.attributes.activity_log
42
42
 
43
- // string # Result of processing. Valid values: `unable_to_find_station`, `unable_to_find_partner`, `unable_to_validate_signature`, `decrypt_fail`, `file_save_fail`, `success`
43
+ // string # Result of processing.
44
44
  getProcessingResult = () => this.attributes.processing_result
45
45
 
46
46
  // string # AS2 TO header of message
@@ -37,7 +37,7 @@ class As2OutgoingMessage {
37
37
  // string # JSON Structure of the activity log.
38
38
  getActivityLog = () => this.attributes.activity_log
39
39
 
40
- // string # Result of processing. Valid values: `send_failed`, `send_success`, `send_no_mdn`
40
+ // string # Result of processing.
41
41
  getProcessingResult = () => this.attributes.processing_result
42
42
 
43
43
  // string # AS2 Message Integrity Check
@@ -85,6 +85,27 @@ class Bundle {
85
85
  this.attributes.form_field_set = value
86
86
  }
87
87
 
88
+ // boolean # BundleRegistrations can be saved without providing name?
89
+ getSkipName = () => this.attributes.skip_name
90
+
91
+ setSkipName = value => {
92
+ this.attributes.skip_name = value
93
+ }
94
+
95
+ // boolean # BundleRegistrations can be saved without providing email?
96
+ getSkipEmail = () => this.attributes.skip_email
97
+
98
+ setSkipEmail = value => {
99
+ this.attributes.skip_email = value
100
+ }
101
+
102
+ // boolean # BundleRegistrations can be saved without providing company?
103
+ getSkipCompany = () => this.attributes.skip_company
104
+
105
+ setSkipCompany = value => {
106
+ this.attributes.skip_company = value
107
+ }
108
+
88
109
  // int64 # Bundle ID
89
110
  getId = () => this.attributes.id
90
111
 
@@ -699,7 +699,7 @@ class User {
699
699
  // Parameters:
700
700
  // cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
701
701
  // per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
702
- // sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `company`, `name`, `site_admin`, `receive_admin_alerts`, `password_validity_days`, `ssl_required` or `not_site_admin`.
702
+ // sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `active`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `company`, `name`, `site_admin`, `receive_admin_alerts`, `password_validity_days`, `ssl_required` or `not_site_admin`.
703
703
  // filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
704
704
  // filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
705
705
  // filter_gteq - object - If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.