files.com 1.1.438 → 1.1.439

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: a9f97ed72883e8c1a75789d7d4eec1ca0dbbd86c6683be47859612cc1e67d824
4
- data.tar.gz: 2d95c125034c4bcf67ebd7db51b19bb1084c652f1ac654135dd39d84fb29b34f
3
+ metadata.gz: 5606e3f1e028b3f80fb006553a840f8a3142060befd4fb69e624820ec4155f5d
4
+ data.tar.gz: e9af7c16379dcc7becd826e17c26b37c1e02c55f0ae86715db6a99bfa051886c
5
5
  SHA512:
6
- metadata.gz: 0b4707b384ed063f8625aace98b0a69c5598e57a26132961c7ed00667fcc9410decf330da52b01692f20fedd270504f38e6886554db6c602123d838498181959
7
- data.tar.gz: 03ab1e8d5a51b66bef9c41fc7d6f465f19a1e8e9f25d89fb87b580f8d15379357d0855b3b7e1d8ef648238b45bce3d6582028c7680bd856070b9fa7ae0b4b83b
6
+ metadata.gz: f0cad3258a83ce1638208e5bd201300ecb8a087c0e24bc2c102576ab15ea827801b33d7678130b3ed9e15371ef7680a8175e670b46c33dfc2ed4ebe0c28356ee
7
+ data.tar.gz: 48824f8dcf6c2a3f5b8f940556027ca76ab5990f210ae5b8ab8cc54c063db93da5ebae60b760039043b231c163b2f1d943e63e54bd431b7f278d2a75f5a691c0
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.438
1
+ 1.1.439
@@ -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 `[ 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 `[ workspace_id, status ]`, `[ 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
 
@@ -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 `[ 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 `[ workspace_id, status ]`, `[ 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.438"
4
+ VERSION = "1.1.439"
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.438
4
+ version: 1.1.439
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com