files.com 1.1.318 → 1.1.320
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/permission.md +2 -2
- data/docs/sync.md +0 -6
- data/lib/files.com/models/permission.rb +2 -2
- data/lib/files.com/models/sync.rb +0 -3
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28565bc3b84fbb21006a7ecf85d3b0cff7f906338a2a67e68ec01c4d5f35fc83
|
4
|
+
data.tar.gz: 66823cf12733a925503c7863779be7c04515f6cb0f9008b864894055948203eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e057d4d75a36b793e72a74e509f068ee4cdbca809df3cabbed25550f6a1fefc364bc91aaf9957c9efe7dee527c88e41ba53e1d892e2b8cd6608e3a860205a6b
|
7
|
+
data.tar.gz: a08a44adb492681df86f0041a42d5d3549e1aef9a697ec4825734005f76c0b2890abc407d3789913943ccbb4ddb758231a5803b1e8158c7ea8f1fdac4bdf436a
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.320
|
data/docs/permission.md
CHANGED
@@ -44,8 +44,8 @@ Files::Permission.list(
|
|
44
44
|
|
45
45
|
* `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.
|
46
46
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
47
|
-
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `group_id`, `path` or `
|
48
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id` or `user_id`. Valid field combinations are `[ group_id, path ]`, `[ user_id, path ]` or `[ user_id, group_id ]`.
|
47
|
+
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `group_id`, `path`, `user_id` or `id`.
|
48
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id` or `user_id`. Valid field combinations are `[ group_id, path ]`, `[ user_id, path ]`, `[ user_id, group_id ]` or `[ user_id, group_id, path ]`.
|
49
49
|
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`.
|
50
50
|
* `path` (string): Permission path. If provided, will scope all permissions(including upward) to this path.
|
51
51
|
* `include_groups` (boolean): If searching by user or group, also include user's permissions that are inherited from its groups?
|
data/docs/sync.md
CHANGED
@@ -137,7 +137,6 @@ Files::Sync.create(
|
|
137
137
|
dest_path: "example",
|
138
138
|
src_remote_server_id: 1,
|
139
139
|
dest_remote_server_id: 1,
|
140
|
-
two_way: false,
|
141
140
|
keep_after_copy: false,
|
142
141
|
delete_empty_folders: false,
|
143
142
|
disabled: false,
|
@@ -161,7 +160,6 @@ Files::Sync.create(
|
|
161
160
|
* `dest_path` (string): Absolute destination path
|
162
161
|
* `src_remote_server_id` (int64): Remote server ID for the source
|
163
162
|
* `dest_remote_server_id` (int64): Remote server ID for the destination
|
164
|
-
* `two_way` (boolean): Is this a two-way sync?
|
165
163
|
* `keep_after_copy` (boolean): Keep files after copying?
|
166
164
|
* `delete_empty_folders` (boolean): Delete empty folders after sync?
|
167
165
|
* `disabled` (boolean): Is this sync disabled?
|
@@ -214,7 +212,6 @@ Files::Sync.update(id,
|
|
214
212
|
dest_path: "example",
|
215
213
|
src_remote_server_id: 1,
|
216
214
|
dest_remote_server_id: 1,
|
217
|
-
two_way: false,
|
218
215
|
keep_after_copy: false,
|
219
216
|
delete_empty_folders: false,
|
220
217
|
disabled: false,
|
@@ -239,7 +236,6 @@ Files::Sync.update(id,
|
|
239
236
|
* `dest_path` (string): Absolute destination path
|
240
237
|
* `src_remote_server_id` (int64): Remote server ID for the source
|
241
238
|
* `dest_remote_server_id` (int64): Remote server ID for the destination
|
242
|
-
* `two_way` (boolean): Is this a two-way sync?
|
243
239
|
* `keep_after_copy` (boolean): Keep files after copying?
|
244
240
|
* `delete_empty_folders` (boolean): Delete empty folders after sync?
|
245
241
|
* `disabled` (boolean): Is this sync disabled?
|
@@ -311,7 +307,6 @@ sync.update(
|
|
311
307
|
dest_path: "example",
|
312
308
|
src_remote_server_id: 1,
|
313
309
|
dest_remote_server_id: 1,
|
314
|
-
two_way: false,
|
315
310
|
keep_after_copy: false,
|
316
311
|
delete_empty_folders: false,
|
317
312
|
disabled: false,
|
@@ -336,7 +331,6 @@ sync.update(
|
|
336
331
|
* `dest_path` (string): Absolute destination path
|
337
332
|
* `src_remote_server_id` (int64): Remote server ID for the source
|
338
333
|
* `dest_remote_server_id` (int64): Remote server ID for the destination
|
339
|
-
* `two_way` (boolean): Is this a two-way sync?
|
340
334
|
* `keep_after_copy` (boolean): Keep files after copying?
|
341
335
|
* `delete_empty_folders` (boolean): Delete empty folders after sync?
|
342
336
|
* `disabled` (boolean): Is this sync disabled?
|
@@ -119,8 +119,8 @@ module Files
|
|
119
119
|
# Parameters:
|
120
120
|
# 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.
|
121
121
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
122
|
-
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `group_id`, `path` or `
|
123
|
-
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id` or `user_id`. Valid field combinations are `[ group_id, path ]`, `[ user_id, path ]` or `[ user_id, group_id ]`.
|
122
|
+
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `group_id`, `path`, `user_id` or `id`.
|
123
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `path`, `group_id` or `user_id`. Valid field combinations are `[ group_id, path ]`, `[ user_id, path ]`, `[ user_id, group_id ]` or `[ user_id, group_id, path ]`.
|
124
124
|
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`.
|
125
125
|
# path - string - Permission path. If provided, will scope all permissions(including upward) to this path.
|
126
126
|
# include_groups - boolean - If searching by user or group, also include user's permissions that are inherited from its groups?
|
@@ -273,7 +273,6 @@ module Files
|
|
273
273
|
# dest_path - string - Absolute destination path
|
274
274
|
# src_remote_server_id - int64 - Remote server ID for the source
|
275
275
|
# dest_remote_server_id - int64 - Remote server ID for the destination
|
276
|
-
# two_way - boolean - Is this a two-way sync?
|
277
276
|
# keep_after_copy - boolean - Keep files after copying?
|
278
277
|
# delete_empty_folders - boolean - Delete empty folders after sync?
|
279
278
|
# disabled - boolean - Is this sync disabled?
|
@@ -376,7 +375,6 @@ module Files
|
|
376
375
|
# dest_path - string - Absolute destination path
|
377
376
|
# src_remote_server_id - int64 - Remote server ID for the source
|
378
377
|
# dest_remote_server_id - int64 - Remote server ID for the destination
|
379
|
-
# two_way - boolean - Is this a two-way sync?
|
380
378
|
# keep_after_copy - boolean - Keep files after copying?
|
381
379
|
# delete_empty_folders - boolean - Delete empty folders after sync?
|
382
380
|
# disabled - boolean - Is this sync disabled?
|
@@ -439,7 +437,6 @@ module Files
|
|
439
437
|
# dest_path - string - Absolute destination path
|
440
438
|
# src_remote_server_id - int64 - Remote server ID for the source
|
441
439
|
# dest_remote_server_id - int64 - Remote server ID for the destination
|
442
|
-
# two_way - boolean - Is this a two-way sync?
|
443
440
|
# keep_after_copy - boolean - Keep files after copying?
|
444
441
|
# delete_empty_folders - boolean - Delete empty folders after sync?
|
445
442
|
# disabled - boolean - Is this sync disabled?
|
data/lib/files.com/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.320
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|