files.com 1.0.171 → 1.0.172

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.171
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.171",
3
+ "version": "1.0.172",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -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