files.com 1.1.453 → 1.1.455

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: cb06b3688918871dd4db017d72e24d82c1e17a5a16bd02036fe985637ad21dd3
4
- data.tar.gz: 75b2d6b328511930196e8675461dcd099baa93dfb5e7ffb33787066acfb31c36
3
+ metadata.gz: 3665e393057a6c6f129dafdf9a5442e6754d3c4505fcf988e53220f8dfa613d0
4
+ data.tar.gz: f23dcdf949524bf29ed0c8d5f43515fc3f13b3149b506eb4f5ed63b2c0826be2
5
5
  SHA512:
6
- metadata.gz: acd0f7d2603a10fe243fe4a89efe9cfdbaf61feb08377a900a82f20f4fb89409f91dd3aca23a0753ca66c3101de3ed760015a0e491bcffe451d876a4ba08a9c2
7
- data.tar.gz: 777b3b845a94d72f81b2b3f202536654b53675e4dbd46b3fbfc934b612d6cc1fad511e5ab5a323a2a24bb2ae134dcc7b62bfbf0bb03ab89ae3bb7c4b4a72ad23
6
+ metadata.gz: b8d6a8da714a34219dcd8c10d15ce4d1649224fc8c0559ccf4a70a38044b76dbbd7a45ae45f08f712d54e5ffd2babf1d19f0c2d654a079dcee93883348b398ea
7
+ data.tar.gz: bfd038a8b5a4f838cac41e4b1d5faa409862b305ca2724b00c8189af2c73913a6f90159ac0a863ea2f34961251b295fe345caa068c239458746314224ccaea8d
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.453
1
+ 1.1.455
data/docs/sync.md CHANGED
@@ -113,7 +113,7 @@ Files::Sync.list
113
113
 
114
114
  * `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.
115
115
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
116
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id` and `workspace_id`.
116
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `workspace_id` or `name`.
117
117
  * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `workspace_id`, `disabled`, `src_remote_server_id` or `dest_remote_server_id`. Valid field combinations are `[ workspace_id, disabled ]`, `[ workspace_id, src_remote_server_id ]`, `[ workspace_id, dest_remote_server_id ]`, `[ disabled, src_remote_server_id ]`, `[ disabled, dest_remote_server_id ]`, `[ workspace_id, disabled, src_remote_server_id ]` or `[ workspace_id, disabled, dest_remote_server_id ]`.
118
118
 
119
119
 
@@ -348,7 +348,7 @@ module Files
348
348
  # Parameters:
349
349
  # 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.
350
350
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
351
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id` and `workspace_id`.
351
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `workspace_id` or `name`.
352
352
  # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `workspace_id`, `disabled`, `src_remote_server_id` or `dest_remote_server_id`. Valid field combinations are `[ workspace_id, disabled ]`, `[ workspace_id, src_remote_server_id ]`, `[ workspace_id, dest_remote_server_id ]`, `[ disabled, src_remote_server_id ]`, `[ disabled, dest_remote_server_id ]`, `[ workspace_id, disabled, src_remote_server_id ]` or `[ workspace_id, disabled, dest_remote_server_id ]`.
353
353
  def self.list(params = {}, options = {})
354
354
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.453"
4
+ VERSION = "1.1.455"
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.453
4
+ version: 1.1.455
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com