files.com 1.2.248 → 1.2.249
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/Bundle.md +4 -2
- package/docs/models/FormFieldSet.md +5 -2
- package/lib/Files.js +1 -1
- package/lib/models/FormFieldSet.js +7 -0
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/FormFieldSet.js +7 -0
package/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.249
|
package/docs/models/Bundle.md
CHANGED
|
@@ -47,7 +47,8 @@
|
|
|
47
47
|
],
|
|
48
48
|
"skip_name": true,
|
|
49
49
|
"skip_email": true,
|
|
50
|
-
"skip_company": true
|
|
50
|
+
"skip_company": true,
|
|
51
|
+
"in_use": true
|
|
51
52
|
},
|
|
52
53
|
"skip_name": true,
|
|
53
54
|
"skip_email": true,
|
|
@@ -368,7 +369,8 @@ await bundle.update({
|
|
|
368
369
|
],
|
|
369
370
|
"skip_name": true,
|
|
370
371
|
"skip_email": true,
|
|
371
|
-
"skip_company": true
|
|
372
|
+
"skip_company": true,
|
|
373
|
+
"in_use": true
|
|
372
374
|
},
|
|
373
375
|
"skip_name": true,
|
|
374
376
|
"skip_email": true,
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
],
|
|
31
31
|
"skip_name": true,
|
|
32
32
|
"skip_email": true,
|
|
33
|
-
"skip_company": true
|
|
33
|
+
"skip_company": true,
|
|
34
|
+
"in_use": true
|
|
34
35
|
}
|
|
35
36
|
```
|
|
36
37
|
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
* `skip_name` (boolean): Any associated InboxRegistrations or BundleRegistrations can be saved without providing name
|
|
42
43
|
* `skip_email` (boolean): Any associated InboxRegistrations or BundleRegistrations can be saved without providing email
|
|
43
44
|
* `skip_company` (boolean): Any associated InboxRegistrations or BundleRegistrations can be saved without providing company
|
|
45
|
+
* `in_use` (boolean): Form Field Set is in use by an active Inbox / Bundle / Inbox Registration / Bundle Registration
|
|
44
46
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
|
45
47
|
|
|
46
48
|
---
|
|
@@ -153,7 +155,8 @@ await form_field_set.update({
|
|
|
153
155
|
],
|
|
154
156
|
"skip_name": true,
|
|
155
157
|
"skip_email": true,
|
|
156
|
-
"skip_company": true
|
|
158
|
+
"skip_company": true,
|
|
159
|
+
"in_use": true
|
|
157
160
|
}
|
|
158
161
|
```
|
|
159
162
|
|
package/lib/Files.js
CHANGED
|
@@ -12,7 +12,7 @@ var apiKey;
|
|
|
12
12
|
var baseUrl = 'https://app.files.com';
|
|
13
13
|
var sessionId = null;
|
|
14
14
|
var language = null;
|
|
15
|
-
var version = '1.2.
|
|
15
|
+
var version = '1.2.249';
|
|
16
16
|
var userAgent = "Files.com JavaScript SDK v".concat(version);
|
|
17
17
|
var logLevel = _Logger.LogLevel.INFO;
|
|
18
18
|
var debugRequest = false;
|
|
@@ -81,6 +81,13 @@ var FormFieldSet = /*#__PURE__*/(0, _createClass2.default)(function FormFieldSet
|
|
|
81
81
|
(0, _defineProperty2.default)(this, "setSkipCompany", function (value) {
|
|
82
82
|
_this.attributes.skip_company = value;
|
|
83
83
|
});
|
|
84
|
+
// boolean # Form Field Set is in use by an active Inbox / Bundle / Inbox Registration / Bundle Registration
|
|
85
|
+
(0, _defineProperty2.default)(this, "getInUse", function () {
|
|
86
|
+
return _this.attributes.in_use;
|
|
87
|
+
});
|
|
88
|
+
(0, _defineProperty2.default)(this, "setInUse", function (value) {
|
|
89
|
+
_this.attributes.in_use = value;
|
|
90
|
+
});
|
|
84
91
|
// int64 # User ID. Provide a value of `0` to operate the current session's user.
|
|
85
92
|
(0, _defineProperty2.default)(this, "getUserId", function () {
|
|
86
93
|
return _this.attributes.user_id;
|
package/package.json
CHANGED
package/src/Files.js
CHANGED
|
@@ -77,6 +77,13 @@ class FormFieldSet {
|
|
|
77
77
|
this.attributes.skip_company = value
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
+
// boolean # Form Field Set is in use by an active Inbox / Bundle / Inbox Registration / Bundle Registration
|
|
81
|
+
getInUse = () => this.attributes.in_use
|
|
82
|
+
|
|
83
|
+
setInUse = value => {
|
|
84
|
+
this.attributes.in_use = value
|
|
85
|
+
}
|
|
86
|
+
|
|
80
87
|
// int64 # User ID. Provide a value of `0` to operate the current session's user.
|
|
81
88
|
getUserId = () => this.attributes.user_id
|
|
82
89
|
|