files.com 1.0.229 → 1.0.230
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/folder.md +1 -1
- data/lib/files.com/models/folder.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: 577e4466fc3ee443e1ce074d02d4b90410988ac10d81caaa26d6b672044851f7
|
|
4
|
+
data.tar.gz: cd569b5acfc84da810f69f740b62b2627a701c6fcdc82ad16935fa70538d9127
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d875c3598cd26514e8470ded6f8564c4c2695526c35c774133553e98dd31a6b3e1c18288e5026ea2562247640737ba4443dd72ede5104437171affbc9ba9dac7
|
|
7
|
+
data.tar.gz: 8523816b4031deff6216148b2b83f91454d6d8debd8720dcefd965a116ad6123e7f174f52dd8cba6bf5cbb95b6206d38d9b0992bdfc246233c78703db33f5a93
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.230
|
data/docs/folder.md
CHANGED
|
@@ -67,7 +67,7 @@ Files::Folder.list_for(path,
|
|
|
67
67
|
|
|
68
68
|
### Parameters
|
|
69
69
|
|
|
70
|
-
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor header.
|
|
70
|
+
* `cursor` (string): Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
|
|
71
71
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
72
72
|
* `path` (string): Required - Path to operate on.
|
|
73
73
|
* `filter` (string): If specified, will filter folders/files list by this string. Wildcards of `*` and `?` are acceptable here.
|
|
@@ -300,7 +300,7 @@ module Files
|
|
|
300
300
|
end
|
|
301
301
|
|
|
302
302
|
# Parameters:
|
|
303
|
-
# cursor - string - Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor header.
|
|
303
|
+
# cursor - string - Send cursor to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
|
|
304
304
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
305
305
|
# path (required) - string - Path to operate on.
|
|
306
306
|
# filter - string - If specified, will filter folders/files list by this string. Wildcards of `*` and `?` are acceptable here.
|