files.com 1.1.709 → 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 +4 -4
- data/_VERSION +1 -1
- data/docs/bundle.md +4 -0
- data/lib/files.com/models/bundle.rb +9 -0
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c5b63c03a3fddf0bafff0ad3fa7fbdd5e7b7bc429cb15c0aed303af6bd0b3d3
|
|
4
|
+
data.tar.gz: 44862bdc4a536d4b887fddd3154cd87b559b024c9adb32744933c2b707b92d8f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 89c5695c7febde0622c60dbe73c61c38e6ecddd79c5782c175bd304d91a19605e8a07fe884fc38eb4fe3b5451ac4edff8b6ea54ada5c21b213334fae72e32739
|
|
7
|
+
data.tar.gz: ce69880995b69a22a1245d68e924fb6d2621bcdc59dd5e44ef04e42ac24352dba8b766a6dcac1737fb6a512ba4b7f4224c1c954b341112a413ef5685bf30da57
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
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.
|
|
@@ -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]
|
data/lib/files.com/version.rb
CHANGED