files.com 1.0.354 → 1.0.355

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8a7cdfdd8ed2bbf363671ae295cfedaf423c62ffec15c24b8376e65fe3c6d067
4
- data.tar.gz: a2bec3edfdcc0c313f5fe55f7ca9a22e71498c0340fe2cd665bd8ae7bfd9e6bc
3
+ metadata.gz: 4b76ebb6cea17e266a98d38b3cf5b30932401733ccbec3c9deb1c3840ec7348a
4
+ data.tar.gz: 915b4b030927cce859ddf792a23124e3226562e4893d12f274d0ec34fcacf32e
5
5
  SHA512:
6
- metadata.gz: d7514f8d5e31b71cf5c5c30d5c0fd8171b84cd971e92107b66a31435cd363ad9077877e02aee0cf854046cd21cfe420904a2bedf542670b8bf15b87b7e3667d0
7
- data.tar.gz: d7552b02ac39ac08d02db86bc2a13608a97c4da0ca74b3d517bfff7f5713b9e0c43eb42ef1d3f0065d68de5e4a9da55f1e394cf7524f43c4b4e81868c715cd06
6
+ metadata.gz: 31cd8c82b10e8ebe769c2fb1bd8dfc41ca03d0410081ac545213cd74cfd517af4f01a2488b87369aa8ddf9a269734a313558d0f2359225be28b2875eb79a14cd
7
+ data.tar.gz: 3eea1d69a6f481e7106f17afe9507fdcb70a5835fba6d6a547eceabb24f17cf6f82680b9e258e5cece955b7c47638ed5a8c1ab27a42649fae1272954f7377f33
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.354
1
+ 1.0.355
data/docs/bundle.md CHANGED
@@ -61,7 +61,7 @@
61
61
  * `description` (string): Public description
62
62
  * `password_protected` (boolean): Is this bundle password protected?
63
63
  * `permissions` (string): Permissions that apply to Folders in this Share Link.
64
- * `preview_only` (boolean): Restrict users to previewing files only?
64
+ * `preview_only` (boolean): DEPRECATED: Restrict users to previewing files only. Use `permissions` instead.
65
65
  * `require_registration` (boolean): Show a registration page that captures the downloader's name and email address?
66
66
  * `require_share_recipient` (boolean): Only allow access to recipients who have explicitly received the share via an email sent through the Files.com UI?
67
67
  * `clickwrap_body` (string): Legal text that must be agreed to prior to accessing Bundle.
@@ -180,7 +180,7 @@ Files::Bundle.create(
180
180
  * `code` (string): Bundle code. This code forms the end part of the Public URL.
181
181
  * `path_template` (string): Template for creating submission subfolders. Can use the uploader's name, email address, ip, company, and any custom form data.
182
182
  * `permissions` (string): Permissions that apply to Folders in this Share Link.
183
- * `preview_only` (boolean): Restrict users to previewing files only?
183
+ * `preview_only` (boolean): DEPRECATED: Restrict users to previewing files only. Use `permissions` instead.
184
184
  * `require_registration` (boolean): Show a registration page that captures the downloader's name and email address?
185
185
  * `clickwrap_id` (int64): ID of the clickwrap to use with this bundle.
186
186
  * `inbox_id` (int64): ID of the associated inbox, if available.
@@ -263,7 +263,7 @@ Files::Bundle.update(id,
263
263
  * `note` (string): Bundle internal note
264
264
  * `path_template` (string): Template for creating submission subfolders. Can use the uploader's name, email address, ip, company, and any custom form data.
265
265
  * `permissions` (string): Permissions that apply to Folders in this Share Link.
266
- * `preview_only` (boolean): Restrict users to previewing files only?
266
+ * `preview_only` (boolean): DEPRECATED: Restrict users to previewing files only. Use `permissions` instead.
267
267
  * `require_registration` (boolean): Show a registration page that captures the downloader's name and email address?
268
268
  * `require_share_recipient` (boolean): Only allow access to recipients who have explicitly received the share via an email sent through the Files.com UI?
269
269
  * `send_email_receipt_to_uploader` (boolean): Send delivery receipt to the uploader. Note: For writable share only
@@ -361,7 +361,7 @@ bundle.update(
361
361
  * `note` (string): Bundle internal note
362
362
  * `path_template` (string): Template for creating submission subfolders. Can use the uploader's name, email address, ip, company, and any custom form data.
363
363
  * `permissions` (string): Permissions that apply to Folders in this Share Link.
364
- * `preview_only` (boolean): Restrict users to previewing files only?
364
+ * `preview_only` (boolean): DEPRECATED: Restrict users to previewing files only. Use `permissions` instead.
365
365
  * `require_registration` (boolean): Show a registration page that captures the downloader's name and email address?
366
366
  * `require_share_recipient` (boolean): Only allow access to recipients who have explicitly received the share via an email sent through the Files.com UI?
367
367
  * `send_email_receipt_to_uploader` (boolean): Send delivery receipt to the uploader. Note: For writable share only
@@ -54,7 +54,7 @@ module Files
54
54
  @attributes[:permissions] = value
55
55
  end
56
56
 
57
- # boolean - Restrict users to previewing files only?
57
+ # boolean - DEPRECATED: Restrict users to previewing files only. Use `permissions` instead.
58
58
  def preview_only
59
59
  @attributes[:preview_only]
60
60
  end
@@ -364,7 +364,7 @@ module Files
364
364
  # note - string - Bundle internal note
365
365
  # path_template - string - Template for creating submission subfolders. Can use the uploader's name, email address, ip, company, and any custom form data.
366
366
  # permissions - string - Permissions that apply to Folders in this Share Link.
367
- # preview_only - boolean - Restrict users to previewing files only?
367
+ # preview_only - boolean - DEPRECATED: Restrict users to previewing files only. Use `permissions` instead.
368
368
  # require_registration - boolean - Show a registration page that captures the downloader's name and email address?
369
369
  # require_share_recipient - boolean - Only allow access to recipients who have explicitly received the share via an email sent through the Files.com UI?
370
370
  # send_email_receipt_to_uploader - boolean - Send delivery receipt to the uploader. Note: For writable share only
@@ -479,7 +479,7 @@ module Files
479
479
  # code - string - Bundle code. This code forms the end part of the Public URL.
480
480
  # path_template - string - Template for creating submission subfolders. Can use the uploader's name, email address, ip, company, and any custom form data.
481
481
  # permissions - string - Permissions that apply to Folders in this Share Link.
482
- # preview_only - boolean - Restrict users to previewing files only?
482
+ # preview_only - boolean - DEPRECATED: Restrict users to previewing files only. Use `permissions` instead.
483
483
  # require_registration - boolean - Show a registration page that captures the downloader's name and email address?
484
484
  # clickwrap_id - int64 - ID of the clickwrap to use with this bundle.
485
485
  # inbox_id - int64 - ID of the associated inbox, if available.
@@ -546,7 +546,7 @@ module Files
546
546
  # note - string - Bundle internal note
547
547
  # path_template - string - Template for creating submission subfolders. Can use the uploader's name, email address, ip, company, and any custom form data.
548
548
  # permissions - string - Permissions that apply to Folders in this Share Link.
549
- # preview_only - boolean - Restrict users to previewing files only?
549
+ # preview_only - boolean - DEPRECATED: Restrict users to previewing files only. Use `permissions` instead.
550
550
  # require_registration - boolean - Show a registration page that captures the downloader's name and email address?
551
551
  # require_share_recipient - boolean - Only allow access to recipients who have explicitly received the share via an email sent through the Files.com UI?
552
552
  # send_email_receipt_to_uploader - boolean - Send delivery receipt to the uploader. Note: For writable share only
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.354
4
+ version: 1.0.355
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable