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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 020c7f9f685b2d95698c207103a764ea432b4046ce4914d2a892a8dc456c9804
4
- data.tar.gz: 8d7c357da3f9de729f18ea52d6aee278a4295fef78ebff22f0e0ed80ee4ccb96
3
+ metadata.gz: e60cf6d0dfc4602da2699cf06b34f162236a2bbdc7c4370db85f199a55d97849
4
+ data.tar.gz: 3cc33ae7e27380407d03a7fc1814a6d1acfc05ec07e1536a2fbdac98762579e8
5
5
  SHA512:
6
- metadata.gz: ffe60ee334450ccf7c6c323087a110731a12b7536b3d532a816a8b59051d742687ed5a2efd628a5a8887a2d3a261a53bde1caca562ab9a8d4c201e4a91adc342
7
- data.tar.gz: f614cd3f75d9c4b1684c0053110c5992b94b68fe38c574b0f3fb4345c0329ed025871d70b5d1270da7fcccad5910a2b156aacd2eb6462428693963f2d9818868
6
+ metadata.gz: 89136976a45bae5f566bc04f7feb3a38f6fa87e76f8397276e2f969cd5a40fabc3b90ccc7a4c8204ba47140f5337bb37073b5e5a4afb95b35599475ae8870ced
7
+ data.tar.gz: 30d11ab9ce5308a236ca46a0c29cb9152ee4191039aacf0b4741a050aa609e04c74ccd2cc221022f15afcec3befeaac07aecf1aa30fc7b404cdb6f4b80a49632
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.396
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, created_at ]` and `[ user_id, 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, 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
- "created_by_remote_server_sync_id": 1,
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
- "last_modified_by_remote_server_sync_id": 1,
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
- * `created_by_remote_server_sync_id` (int64): ID of the Remote Server Sync that created the file/folder
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
- * `last_modified_by_remote_server_sync_id` (int64): ID of the Remote Server Sync that last modified the file/folder
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
- "created_by_remote_server_sync_id": 1,
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
- "last_modified_by_remote_server_sync_id": 1,
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
- * `created_by_remote_server_sync_id` (int64): ID of the Remote Server Sync that created the file/folder
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
- * `last_modified_by_remote_server_sync_id` (int64): ID of the Remote Server Sync that last modified the file/folder
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, created_at ]` and `[ user_id, 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, 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 Remote Server Sync that created the file/folder
642
- def created_by_remote_server_sync_id
643
- @attributes[:created_by_remote_server_sync_id]
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 created_by_remote_server_sync_id=(value)
647
- @attributes[:created_by_remote_server_sync_id] = value
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 Remote Server Sync that last modified the file/folder
737
- def last_modified_by_remote_server_sync_id
738
- @attributes[:last_modified_by_remote_server_sync_id]
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 last_modified_by_remote_server_sync_id=(value)
742
- @attributes[:last_modified_by_remote_server_sync_id] = value
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 Remote Server Sync that created the file/folder
226
- def created_by_remote_server_sync_id
227
- @attributes[:created_by_remote_server_sync_id]
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 created_by_remote_server_sync_id=(value)
231
- @attributes[:created_by_remote_server_sync_id] = value
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 Remote Server Sync that last modified the file/folder
321
- def last_modified_by_remote_server_sync_id
322
- @attributes[:last_modified_by_remote_server_sync_id]
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 last_modified_by_remote_server_sync_id=(value)
326
- @attributes[:last_modified_by_remote_server_sync_id] = value
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.396"
4
+ VERSION = "1.1.397"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.396
4
+ version: 1.1.397
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com