files.com 1.0.263 → 1.0.264

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.263
1
+ 1.0.264
@@ -68,7 +68,7 @@
68
68
  * `watermark_attachment` (Image): Preview watermark image applied to all bundle items.
69
69
  * `watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
70
70
  * `has_inbox` (boolean): Does this bundle have an associated inbox?
71
- * `paths` (array): A list of paths in this bundle
71
+ * `paths` (array): A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
72
72
  * `password` (string): Password for this bundle.
73
73
  * `form_field_set_id` (int64): Id of Form Field Set to use with this bundle
74
74
  * `watermark_attachment_file` (file): Preview watermark image applied to all bundle items.
@@ -224,7 +224,7 @@ var Bundle = /*#__PURE__*/(0, _createClass2.default)(function Bundle() {
224
224
  (0, _defineProperty2.default)(this, "setHasInbox", function (value) {
225
225
  _this.attributes.has_inbox = value;
226
226
  });
227
- // array # A list of paths in this bundle
227
+ // array # A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
228
228
  (0, _defineProperty2.default)(this, "getPaths", function () {
229
229
  return _this.attributes.paths;
230
230
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.263",
3
+ "version": "1.0.264",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -215,7 +215,7 @@ class Bundle {
215
215
  this.attributes.has_inbox = value
216
216
  }
217
217
 
218
- // array # A list of paths in this bundle
218
+ // array # A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
219
219
  getPaths = () => this.attributes.paths
220
220
 
221
221
  setPaths = value => {