files.com 1.1.504 → 1.1.506

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: 25ca156a23ce1b8af81770045a34f778d2c0a655b10557f5f15bcbdb0168988e
4
- data.tar.gz: c39be120ab4f64f2d7d373bdf79b2a6ccb37a30627ed86ec2cbb7c889779a7de
3
+ metadata.gz: 662e0f73814330788cf0bec2830679403f313b04ec74490bc6100ea810ed1896
4
+ data.tar.gz: e23415d9d2561938e9a200cc7b85894274c27b8b8da8c6a658914530e1f2aff8
5
5
  SHA512:
6
- metadata.gz: 5e60a6f3a8f4726081a9e8a5baf4055228d4788a75a71537fb4966872043d7173d5f5413735e76649ee9d6d8603cc603b4a7da3acdba7aadd8eb9c996dcc6b9f
7
- data.tar.gz: aa3ad35f9f1c51dd2f06322d85be801dfbfc3c4eeb2bce0578d512656a9f524b3d933ef8fdc1640243d5fc2968ef8104ccfb1a476988cb234a652fde8df2ed1f
6
+ metadata.gz: eba2de5dd0bd5c7bb3992b635aba0808a29d6bcd04baf8328974583a1e7305d21244d7432635a6d257eca00d2d3e40714666cd4964e85a57a2b08ac4fa991fb7
7
+ data.tar.gz: d5531e6274a488f1b508f37aa7bda8c867e7fbfa9a8b3675811cc556245c4c3a7d7a12566516bb8f190540625671443303680160076e560c89cfd0813d841fdd
data/README.md CHANGED
@@ -498,6 +498,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
498
498
  |`InvalidUploadOffsetError`| `BadRequestError` |
499
499
  |`InvalidUploadPartGapError`| `BadRequestError` |
500
500
  |`InvalidUploadPartSizeError`| `BadRequestError` |
501
+ |`InvalidWorkspaceIdHeaderError`| `BadRequestError` |
501
502
  |`MethodNotAllowedError`| `BadRequestError` |
502
503
  |`MultipleSortParamsNotAllowedError`| `BadRequestError` |
503
504
  |`NoValidInputParamsError`| `BadRequestError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.504
1
+ 1.1.506
@@ -54,7 +54,7 @@ Files::AutomationRun.list(
54
54
  * `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.
55
55
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
56
56
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
57
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
57
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
58
58
  * `automation_id` (int64): Required - ID of the associated Automation.
59
59
 
60
60
 
@@ -74,6 +74,7 @@ module Files
74
74
  class InvalidUploadOffsetError < BadRequestError; end
75
75
  class InvalidUploadPartGapError < BadRequestError; end
76
76
  class InvalidUploadPartSizeError < BadRequestError; end
77
+ class InvalidWorkspaceIdHeaderError < BadRequestError; end
77
78
  class MethodNotAllowedError < BadRequestError; end
78
79
  class MultipleSortParamsNotAllowedError < BadRequestError; end
79
80
  class NoValidInputParamsError < BadRequestError; end
@@ -84,7 +84,7 @@ module Files
84
84
  # 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.
85
85
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
86
86
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
87
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
87
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
88
88
  # automation_id (required) - int64 - ID of the associated Automation.
89
89
  def self.list(params = {}, options = {})
90
90
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.504"
4
+ VERSION = "1.1.506"
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.504
4
+ version: 1.1.506
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com