files.com 1.1.153 → 1.1.154

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea471afd57eb4dbc7c84e8862024a6eb1b0e2818d2a3946f546bc4f5cc4222e3
4
- data.tar.gz: 139316408c4e7cd6fbe4dd4a2a4cf94a1d5adfac6ab7bde235dc02e8c50f98d6
3
+ metadata.gz: 4b1832dfc9d37bc5c0e9b28a4a199a29e6909a22276af486d93a7e01c44dd892
4
+ data.tar.gz: 96c7750cf99bde4d77a2d5a198e5c4330c0f175566fce59f8492c8ee5c18cb51
5
5
  SHA512:
6
- metadata.gz: 68bd449632b206f5ff51a0e705dec632e37bcc9774c4841e982ffc65a8eecb5aa6abc85bfb2d487f1c050bdb6e351051509b02bbd137eca514a6c4f5052b31af
7
- data.tar.gz: 44439f58efd0b0f1f6ee05eb11b9ab350825ce45b2d67d8959b1a41365f46ce939131aadceddd05e32dd96a538e0810f55113ad6a9988d75e1310c7003e371be
6
+ metadata.gz: 4fb25822beded0ec84d61892b7c3291b7f7fc0b5343bdf9c8ad868d0f3e4892034d417020132a92016c3db1171c3770c816c824026871a0f27b3587ad1dc053d
7
+ data.tar.gz: 54b92922cf49e3f636c1cb7a8595a49a01c7cce811032bf911b0e8c35177311cecf1656e0410ba0b79723508a36d971b70a3107fef06c524f11c8e504216f81b
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.153
1
+ 1.1.154
data/docs/site.md CHANGED
@@ -35,6 +35,7 @@
35
35
  "bundle_require_registration": true,
36
36
  "bundle_require_share_recipient": true,
37
37
  "bundle_require_note": true,
38
+ "bundle_send_shared_receipts": true,
38
39
  "bundle_upload_receipt_notifications": "never",
39
40
  "bundle_watermark_attachment": {
40
41
  "name": "My logo",
@@ -316,6 +317,7 @@
316
317
  * `bundle_require_registration` (boolean): Do Bundles require registration?
317
318
  * `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
318
319
  * `bundle_require_note` (boolean): Do Bundles require internal notes?
320
+ * `bundle_send_shared_receipts` (boolean): Do Bundle creators receive receipts of invitations?
319
321
  * `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
320
322
  * `bundle_watermark_attachment` (Image): Preview watermark image applied to all bundle items.
321
323
  * `bundle_watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
@@ -513,6 +515,7 @@ Files::Site.update(
513
515
  motd_use_for_sftp: true,
514
516
  additional_text_file_types: ["example"],
515
517
  bundle_require_note: true,
518
+ bundle_send_shared_receipts: true,
516
519
  session_expiry: 1.0,
517
520
  ssl_required: true,
518
521
  tls_disabled: true,
@@ -665,6 +668,7 @@ Files::Site.update(
665
668
  * `left_navigation_visibility` (object): Visibility settings for account navigation
666
669
  * `additional_text_file_types` (array(string)): Additional extensions that are considered text files
667
670
  * `bundle_require_note` (boolean): Do Bundles require internal notes?
671
+ * `bundle_send_shared_receipts` (boolean): Do Bundle creators receive receipts of invitations?
668
672
  * `session_expiry` (double): Session expiry in hours
669
673
  * `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
670
674
  * `tls_disabled` (boolean): DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
@@ -144,6 +144,11 @@ module Files
144
144
  @attributes[:bundle_require_note]
145
145
  end
146
146
 
147
+ # boolean - Do Bundle creators receive receipts of invitations?
148
+ def bundle_send_shared_receipts
149
+ @attributes[:bundle_send_shared_receipts]
150
+ end
151
+
147
152
  # string - Do Bundle uploaders receive upload confirmation notifications?
148
153
  def bundle_upload_receipt_notifications
149
154
  @attributes[:bundle_upload_receipt_notifications]
@@ -871,6 +876,7 @@ module Files
871
876
  # left_navigation_visibility - object - Visibility settings for account navigation
872
877
  # additional_text_file_types - array(string) - Additional extensions that are considered text files
873
878
  # bundle_require_note - boolean - Do Bundles require internal notes?
879
+ # bundle_send_shared_receipts - boolean - Do Bundle creators receive receipts of invitations?
874
880
  # session_expiry - double - Session expiry in hours
875
881
  # ssl_required - boolean - Is SSL required? Disabling this is insecure.
876
882
  # tls_disabled - boolean - DO NOT ENABLE. This setting allows TLSv1.0 and TLSv1.1 to be used on your site. We intend to remove this capability entirely in early 2024. If set, the `sftp_insecure_ciphers` flag will be automatically set to true.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.153"
4
+ VERSION = "1.1.154"
5
5
  end
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.1.153
4
+ version: 1.1.154
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-15 00:00:00.000000000 Z
11
+ date: 2024-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable