files.com 1.1.708 → 1.1.710

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: 1f353ea4c0d81cb3a90669c7181e53fdf20aeb1a8652c58f930e578257fda154
4
- data.tar.gz: 7794f3bb109aa207379b7c0f9460282e540ea5c967c52d30b9c8775dc8d6d54a
3
+ metadata.gz: 0c5b63c03a3fddf0bafff0ad3fa7fbdd5e7b7bc429cb15c0aed303af6bd0b3d3
4
+ data.tar.gz: 44862bdc4a536d4b887fddd3154cd87b559b024c9adb32744933c2b707b92d8f
5
5
  SHA512:
6
- metadata.gz: f33fb6c4a054980a0dd051ab5a92396d8f2271052e2a795ad22d8c9f9b2358116eb347b937a862a3fd210f4342f734d39f80fa06ac58a6a9bfefc6c22d425829
7
- data.tar.gz: 0f3aeb8215dc0bb3981081ed8a042a5a2b2c2e192fbfc002b12c8d7c2f5cd2582134ada1ed0e92da4319dfea5c37430f6df18440ddd09d05348fdbcf7f066c19
6
+ metadata.gz: 89c5695c7febde0622c60dbe73c61c38e6ecddd79c5782c175bd304d91a19605e8a07fe884fc38eb4fe3b5451ac4edff8b6ea54ada5c21b213334fae72e32739
7
+ data.tar.gz: ce69880995b69a22a1245d68e924fb6d2621bcdc59dd5e44ef04e42ac24352dba8b766a6dcac1737fb6a512ba4b7f4224c1c954b341112a413ef5685bf30da57
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.708
1
+ 1.1.710
data/docs/bundle.md CHANGED
@@ -83,6 +83,9 @@
83
83
  "workspace_id": 1,
84
84
  "has_inbox": true,
85
85
  "dont_allow_folders_in_uploads": true,
86
+ "requested_upload_slots": [
87
+ "example"
88
+ ],
86
89
  "paths": [
87
90
  "file.txt"
88
91
  ],
@@ -140,6 +143,7 @@
140
143
  * `workspace_id` (int64): Workspace ID. `0` means the default workspace.
141
144
  * `has_inbox` (boolean): Does this bundle have an associated inbox?
142
145
  * `dont_allow_folders_in_uploads` (boolean): Should folder uploads be prevented?
146
+ * `requested_upload_slots` (array(object)): Upload slots requested by the associated Inbox. Each slot contains a name used as its label and destination subfolder name.
143
147
  * `paths` (array(string)): A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
144
148
  * `bundlepaths` (array(object)): A list of bundlepaths in this bundle. For performance reasons, this is not provided when listing bundles.
145
149
  * `password` (string): Password for this bundle.
data/docs/site.md CHANGED
@@ -47,6 +47,7 @@
47
47
  "bundle_registration_notifications": "never",
48
48
  "bundle_require_registration": true,
49
49
  "bundle_require_share_recipient": true,
50
+ "bundle_send_one_time_password_to_recipient_at_registration": true,
50
51
  "bundle_require_note": true,
51
52
  "bundle_send_shared_receipts": true,
52
53
  "bundle_upload_receipt_notifications": "never",
@@ -393,6 +394,7 @@
393
394
  * `bundle_registration_notifications` (string): Do Bundle owners receive registration notification?
394
395
  * `bundle_require_registration` (boolean): Do Bundles require registration?
395
396
  * `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
397
+ * `bundle_send_one_time_password_to_recipient_at_registration` (boolean): If true, new Share Links must send a one-time password to the recipient when they register. Requires bundle_require_share_recipient and cannot be enabled with bundle_password_required.
396
398
  * `bundle_require_note` (boolean): Do Bundles require internal notes?
397
399
  * `bundle_send_shared_receipts` (boolean): Do Bundle creators receive receipts of invitations?
398
400
  * `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
@@ -663,6 +665,7 @@ Files::Site.update(
663
665
  bundle_password_required: false,
664
666
  bundle_require_registration: false,
665
667
  bundle_require_share_recipient: false,
668
+ bundle_send_one_time_password_to_recipient_at_registration: false,
666
669
  bundle_registration_notifications: "never",
667
670
  bundle_activity_notifications: "never",
668
671
  bundle_upload_receipt_notifications: "never",
@@ -845,6 +848,7 @@ Files::Site.update(
845
848
  * `bundle_password_required` (boolean): Do Bundles require password protection?
846
849
  * `bundle_require_registration` (boolean): Do Bundles require registration?
847
850
  * `bundle_require_share_recipient` (boolean): Do Bundles require recipients for sharing?
851
+ * `bundle_send_one_time_password_to_recipient_at_registration` (boolean): If true, new Share Links must send a one-time password to the recipient when they register. Requires bundle_require_share_recipient and cannot be enabled with bundle_password_required.
848
852
  * `bundle_registration_notifications` (string): Do Bundle owners receive registration notification?
849
853
  * `bundle_activity_notifications` (string): Do Bundle owners receive activity notifications?
850
854
  * `bundle_upload_receipt_notifications` (string): Do Bundle uploaders receive upload confirmation notifications?
@@ -410,6 +410,15 @@ module Files
410
410
  @attributes[:dont_allow_folders_in_uploads] = value
411
411
  end
412
412
 
413
+ # array(object) - Upload slots requested by the associated Inbox. Each slot contains a name used as its label and destination subfolder name.
414
+ def requested_upload_slots
415
+ @attributes[:requested_upload_slots]
416
+ end
417
+
418
+ def requested_upload_slots=(value)
419
+ @attributes[:requested_upload_slots] = value
420
+ end
421
+
413
422
  # array(string) - A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
414
423
  def paths
415
424
  @attributes[:paths]
@@ -171,6 +171,11 @@ module Files
171
171
  @attributes[:bundle_require_share_recipient]
172
172
  end
173
173
 
174
+ # boolean - If true, new Share Links must send a one-time password to the recipient when they register. Requires bundle_require_share_recipient and cannot be enabled with bundle_password_required.
175
+ def bundle_send_one_time_password_to_recipient_at_registration
176
+ @attributes[:bundle_send_one_time_password_to_recipient_at_registration]
177
+ end
178
+
174
179
  # boolean - Do Bundles require internal notes?
175
180
  def bundle_require_note
176
181
  @attributes[:bundle_require_note]
@@ -1074,6 +1079,7 @@ module Files
1074
1079
  # bundle_password_required - boolean - Do Bundles require password protection?
1075
1080
  # bundle_require_registration - boolean - Do Bundles require registration?
1076
1081
  # bundle_require_share_recipient - boolean - Do Bundles require recipients for sharing?
1082
+ # bundle_send_one_time_password_to_recipient_at_registration - boolean - If true, new Share Links must send a one-time password to the recipient when they register. Requires bundle_require_share_recipient and cannot be enabled with bundle_password_required.
1077
1083
  # bundle_registration_notifications - string - Do Bundle owners receive registration notification?
1078
1084
  # bundle_activity_notifications - string - Do Bundle owners receive activity notifications?
1079
1085
  # bundle_upload_receipt_notifications - string - Do Bundle uploaders receive upload confirmation notifications?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.708"
4
+ VERSION = "1.1.710"
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.708
4
+ version: 1.1.710
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-08-11 00:00:00.000000000 Z
11
+ date: 2026-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable