files.com 1.1.396 → 1.1.397
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 +1 -1
- data/docs/file.md +4 -4
- data/docs/folder.md +4 -4
- data/lib/files.com/models/bundle.rb +1 -1
- data/lib/files.com/models/file.rb +10 -10
- data/lib/files.com/models/folder.rb +10 -10
- 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: e60cf6d0dfc4602da2699cf06b34f162236a2bbdc7c4370db85f199a55d97849
|
|
4
|
+
data.tar.gz: 3cc33ae7e27380407d03a7fc1814a6d1acfc05ec07e1536a2fbdac98762579e8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 89136976a45bae5f566bc04f7feb3a38f6fa87e76f8397276e2f969cd5a40fabc3b90ccc7a4c8204ba47140f5337bb37073b5e5a4afb95b35599475ae8870ced
|
|
7
|
+
data.tar.gz: 30d11ab9ce5308a236ca46a0c29cb9152ee4191039aacf0b4741a050aa609e04c74ccd2cc221022f15afcec3befeaac07aecf1aa30fc7b404cdb6f4b80a49632
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.397
|
data/docs/bundle.md
CHANGED
|
@@ -152,7 +152,7 @@ Files::Bundle.list(
|
|
|
152
152
|
* `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
|
|
153
153
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
154
154
|
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
|
|
155
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id,
|
|
155
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
|
|
156
156
|
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
157
157
|
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
158
158
|
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
|
data/docs/file.md
CHANGED
|
@@ -15,7 +15,7 @@ may places where a Ruby File object can be used.
|
|
|
15
15
|
"created_by_bundle_registration_id": 1,
|
|
16
16
|
"created_by_inbox_id": 1,
|
|
17
17
|
"created_by_remote_server_id": 1,
|
|
18
|
-
"
|
|
18
|
+
"created_by_sync_id": 1,
|
|
19
19
|
"custom_metadata": {
|
|
20
20
|
"key": "value"
|
|
21
21
|
},
|
|
@@ -28,7 +28,7 @@ may places where a Ruby File object can be used.
|
|
|
28
28
|
"last_modified_by_automation_id": 1,
|
|
29
29
|
"last_modified_by_bundle_registration_id": 1,
|
|
30
30
|
"last_modified_by_remote_server_id": 1,
|
|
31
|
-
"
|
|
31
|
+
"last_modified_by_sync_id": 1,
|
|
32
32
|
"mtime": "2000-01-01T01:00:00Z",
|
|
33
33
|
"provided_mtime": "2000-01-01T01:00:00Z",
|
|
34
34
|
"crc32": "70976923",
|
|
@@ -61,7 +61,7 @@ may places where a Ruby File object can be used.
|
|
|
61
61
|
* `created_by_bundle_registration_id` (int64): ID of the Bundle Registration that created the file/folder
|
|
62
62
|
* `created_by_inbox_id` (int64): ID of the Inbox that created the file/folder
|
|
63
63
|
* `created_by_remote_server_id` (int64): ID of the Remote Server that created the file/folder
|
|
64
|
-
* `
|
|
64
|
+
* `created_by_sync_id` (int64): ID of the Sync that created the file/folder
|
|
65
65
|
* `custom_metadata` (object): Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
|
|
66
66
|
* `display_name` (string): File/Folder display name
|
|
67
67
|
* `type` (string): Type: `directory` or `file`.
|
|
@@ -72,7 +72,7 @@ may places where a Ruby File object can be used.
|
|
|
72
72
|
* `last_modified_by_automation_id` (int64): ID of the Automation that last modified the file/folder
|
|
73
73
|
* `last_modified_by_bundle_registration_id` (int64): ID of the Bundle Registration that last modified the file/folder
|
|
74
74
|
* `last_modified_by_remote_server_id` (int64): ID of the Remote Server that last modified the file/folder
|
|
75
|
-
* `
|
|
75
|
+
* `last_modified_by_sync_id` (int64): ID of the Sync that last modified the file/folder
|
|
76
76
|
* `mtime` (date-time): File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
|
|
77
77
|
* `provided_mtime` (date-time): File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
|
|
78
78
|
* `crc32` (string): File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
|
data/docs/folder.md
CHANGED
|
@@ -17,7 +17,7 @@ Files::Dir is an alias of Files::Folder
|
|
|
17
17
|
"created_by_bundle_registration_id": 1,
|
|
18
18
|
"created_by_inbox_id": 1,
|
|
19
19
|
"created_by_remote_server_id": 1,
|
|
20
|
-
"
|
|
20
|
+
"created_by_sync_id": 1,
|
|
21
21
|
"custom_metadata": {
|
|
22
22
|
"key": "value"
|
|
23
23
|
},
|
|
@@ -30,7 +30,7 @@ Files::Dir is an alias of Files::Folder
|
|
|
30
30
|
"last_modified_by_automation_id": 1,
|
|
31
31
|
"last_modified_by_bundle_registration_id": 1,
|
|
32
32
|
"last_modified_by_remote_server_id": 1,
|
|
33
|
-
"
|
|
33
|
+
"last_modified_by_sync_id": 1,
|
|
34
34
|
"mtime": "2000-01-01T01:00:00Z",
|
|
35
35
|
"provided_mtime": "2000-01-01T01:00:00Z",
|
|
36
36
|
"crc32": "70976923",
|
|
@@ -63,7 +63,7 @@ Files::Dir is an alias of Files::Folder
|
|
|
63
63
|
* `created_by_bundle_registration_id` (int64): ID of the Bundle Registration that created the file/folder
|
|
64
64
|
* `created_by_inbox_id` (int64): ID of the Inbox that created the file/folder
|
|
65
65
|
* `created_by_remote_server_id` (int64): ID of the Remote Server that created the file/folder
|
|
66
|
-
* `
|
|
66
|
+
* `created_by_sync_id` (int64): ID of the Sync that created the file/folder
|
|
67
67
|
* `custom_metadata` (object): Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
|
|
68
68
|
* `display_name` (string): File/Folder display name
|
|
69
69
|
* `type` (string): Type: `directory` or `file`.
|
|
@@ -74,7 +74,7 @@ Files::Dir is an alias of Files::Folder
|
|
|
74
74
|
* `last_modified_by_automation_id` (int64): ID of the Automation that last modified the file/folder
|
|
75
75
|
* `last_modified_by_bundle_registration_id` (int64): ID of the Bundle Registration that last modified the file/folder
|
|
76
76
|
* `last_modified_by_remote_server_id` (int64): ID of the Remote Server that last modified the file/folder
|
|
77
|
-
* `
|
|
77
|
+
* `last_modified_by_sync_id` (int64): ID of the Sync that last modified the file/folder
|
|
78
78
|
* `mtime` (date-time): File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
|
|
79
79
|
* `provided_mtime` (date-time): File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
|
|
80
80
|
* `crc32` (string): File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
|
|
@@ -519,7 +519,7 @@ module Files
|
|
|
519
519
|
# cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
|
|
520
520
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
521
521
|
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
|
|
522
|
-
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id,
|
|
522
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
|
|
523
523
|
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
524
524
|
# filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
525
525
|
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
|
|
@@ -638,13 +638,13 @@ module Files
|
|
|
638
638
|
@attributes[:created_by_remote_server_id] = value
|
|
639
639
|
end
|
|
640
640
|
|
|
641
|
-
# int64 - ID of the
|
|
642
|
-
def
|
|
643
|
-
@attributes[:
|
|
641
|
+
# int64 - ID of the Sync that created the file/folder
|
|
642
|
+
def created_by_sync_id
|
|
643
|
+
@attributes[:created_by_sync_id]
|
|
644
644
|
end
|
|
645
645
|
|
|
646
|
-
def
|
|
647
|
-
@attributes[:
|
|
646
|
+
def created_by_sync_id=(value)
|
|
647
|
+
@attributes[:created_by_sync_id] = value
|
|
648
648
|
end
|
|
649
649
|
|
|
650
650
|
# object - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
|
|
@@ -733,13 +733,13 @@ module Files
|
|
|
733
733
|
@attributes[:last_modified_by_remote_server_id] = value
|
|
734
734
|
end
|
|
735
735
|
|
|
736
|
-
# int64 - ID of the
|
|
737
|
-
def
|
|
738
|
-
@attributes[:
|
|
736
|
+
# int64 - ID of the Sync that last modified the file/folder
|
|
737
|
+
def last_modified_by_sync_id
|
|
738
|
+
@attributes[:last_modified_by_sync_id]
|
|
739
739
|
end
|
|
740
740
|
|
|
741
|
-
def
|
|
742
|
-
@attributes[:
|
|
741
|
+
def last_modified_by_sync_id=(value)
|
|
742
|
+
@attributes[:last_modified_by_sync_id] = value
|
|
743
743
|
end
|
|
744
744
|
|
|
745
745
|
# date-time - File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
|
|
@@ -222,13 +222,13 @@ module Files
|
|
|
222
222
|
@attributes[:created_by_remote_server_id] = value
|
|
223
223
|
end
|
|
224
224
|
|
|
225
|
-
# int64 - ID of the
|
|
226
|
-
def
|
|
227
|
-
@attributes[:
|
|
225
|
+
# int64 - ID of the Sync that created the file/folder
|
|
226
|
+
def created_by_sync_id
|
|
227
|
+
@attributes[:created_by_sync_id]
|
|
228
228
|
end
|
|
229
229
|
|
|
230
|
-
def
|
|
231
|
-
@attributes[:
|
|
230
|
+
def created_by_sync_id=(value)
|
|
231
|
+
@attributes[:created_by_sync_id] = value
|
|
232
232
|
end
|
|
233
233
|
|
|
234
234
|
# object - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
|
|
@@ -317,13 +317,13 @@ module Files
|
|
|
317
317
|
@attributes[:last_modified_by_remote_server_id] = value
|
|
318
318
|
end
|
|
319
319
|
|
|
320
|
-
# int64 - ID of the
|
|
321
|
-
def
|
|
322
|
-
@attributes[:
|
|
320
|
+
# int64 - ID of the Sync that last modified the file/folder
|
|
321
|
+
def last_modified_by_sync_id
|
|
322
|
+
@attributes[:last_modified_by_sync_id]
|
|
323
323
|
end
|
|
324
324
|
|
|
325
|
-
def
|
|
326
|
-
@attributes[:
|
|
325
|
+
def last_modified_by_sync_id=(value)
|
|
326
|
+
@attributes[:last_modified_by_sync_id] = value
|
|
327
327
|
end
|
|
328
328
|
|
|
329
329
|
# date-time - File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
|
data/lib/files.com/version.rb
CHANGED