files.com 1.0.172 → 1.0.173

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.172
1
+ 1.0.173
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.172",
3
+ "version": "1.0.173",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
@@ -278,6 +278,9 @@ class Bundle {
278
278
  // preview_only - boolean - Restrict users to previewing files only?
279
279
  // require_registration - boolean - Show a registration page that captures the downloader's name and email address?
280
280
  // require_share_recipient - boolean - Only allow access to recipients who have explicitly received the share via an email sent through the Files.com UI?
281
+ // skip_email - boolean - BundleRegistrations can be saved without providing email?
282
+ // skip_name - boolean - BundleRegistrations can be saved without providing name?
283
+ // skip_company - boolean - BundleRegistrations can be saved without providing company?
281
284
  // watermark_attachment_delete - boolean - If true, will delete the file stored in watermark_attachment
282
285
  // watermark_attachment_file - file - Preview watermark image applied to all bundle items.
283
286
  update = async (params = {}) => {
@@ -449,6 +452,9 @@ class Bundle {
449
452
  // clickwrap_id - int64 - ID of the clickwrap to use with this bundle.
450
453
  // inbox_id - int64 - ID of the associated inbox, if available.
451
454
  // require_share_recipient - boolean - Only allow access to recipients who have explicitly received the share via an email sent through the Files.com UI?
455
+ // skip_email - boolean - BundleRegistrations can be saved without providing email?
456
+ // skip_name - boolean - BundleRegistrations can be saved without providing name?
457
+ // skip_company - boolean - BundleRegistrations can be saved without providing company?
452
458
  // watermark_attachment_file - file - Preview watermark image applied to all bundle items.
453
459
  static create = async (params = {}, options = {}) => {
454
460
  if (!params['paths']) {