files.com 1.1.153 → 1.1.155
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/_VERSION +1 -1
- data/docs/site.md +4 -0
- data/lib/files.com/errors.rb +1 -1
- data/lib/files.com/models/site.rb +6 -0
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6790bf6e9cd0ecc1dbe2807c3fd596d87ea1bcec39afb61b73daed72e93054f2
|
4
|
+
data.tar.gz: 437f59fe7c753a345cc5bdc08a1ecd2c68368840a7603faa3bdaf7c297d49692
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76fe8b0973e5e785940a35a7e86bfd33bb0db14c81b8e6da199505f5b9e0625d77b21955d2ab87fae10be2f568243a2eb30ce857b18d463d61963bb1d1e49758
|
7
|
+
data.tar.gz: 30aa9415e8c37fca38e50aa1f0ee20c341dc399479887ddba66b4d5f532f12b47dc4575c5a75a3168eb4583756a2857eaebd28b0595a0f230dc769257a6c0e59
|
data/README.md
CHANGED
@@ -342,7 +342,6 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
|
|
342
342
|
|`InvalidCursorTypeForSortError`| `BadRequestError` |
|
343
343
|
|`InvalidEtagsError`| `BadRequestError` |
|
344
344
|
|`InvalidFilterAliasCombinationError`| `BadRequestError` |
|
345
|
-
|`InvalidFilterCombinationError`| `BadRequestError` |
|
346
345
|
|`InvalidFilterFieldError`| `BadRequestError` |
|
347
346
|
|`InvalidFilterParamError`| `BadRequestError` |
|
348
347
|
|`InvalidFilterParamValueError`| `BadRequestError` |
|
@@ -351,6 +350,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
|
|
351
350
|
|`InvalidOauthProviderError`| `BadRequestError` |
|
352
351
|
|`InvalidPathError`| `BadRequestError` |
|
353
352
|
|`InvalidReturnToUrlError`| `BadRequestError` |
|
353
|
+
|`InvalidSortFilterCombinationError`| `BadRequestError` |
|
354
354
|
|`InvalidUploadOffsetError`| `BadRequestError` |
|
355
355
|
|`InvalidUploadPartGapError`| `BadRequestError` |
|
356
356
|
|`InvalidUploadPartSizeError`| `BadRequestError` |
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.155
|
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.
|
data/lib/files.com/errors.rb
CHANGED
@@ -58,7 +58,6 @@ module Files
|
|
58
58
|
class InvalidCursorTypeForSortError < BadRequestError; end
|
59
59
|
class InvalidEtagsError < BadRequestError; end
|
60
60
|
class InvalidFilterAliasCombinationError < BadRequestError; end
|
61
|
-
class InvalidFilterCombinationError < BadRequestError; end
|
62
61
|
class InvalidFilterFieldError < BadRequestError; end
|
63
62
|
class InvalidFilterParamError < BadRequestError; end
|
64
63
|
class InvalidFilterParamValueError < BadRequestError; end
|
@@ -67,6 +66,7 @@ module Files
|
|
67
66
|
class InvalidOauthProviderError < BadRequestError; end
|
68
67
|
class InvalidPathError < BadRequestError; end
|
69
68
|
class InvalidReturnToUrlError < BadRequestError; end
|
69
|
+
class InvalidSortFilterCombinationError < BadRequestError; end
|
70
70
|
class InvalidUploadOffsetError < BadRequestError; end
|
71
71
|
class InvalidUploadPartGapError < BadRequestError; end
|
72
72
|
class InvalidUploadPartSizeError < BadRequestError; end
|
@@ -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.
|
data/lib/files.com/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.155
|
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-
|
11
|
+
date: 2024-10-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|