files.com 1.1.450 → 1.1.451

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: 4c0f3a4a91abf6fe785359acd50d2ad8f87d3c76c8730a22098f8ef99b64f76e
4
- data.tar.gz: 0ab6fb9555e2c094c27f42d7bf70524931ec496e9886f6320cbf620bf8035490
3
+ metadata.gz: fdb3d4c6b3007ea41c6236f36fb3eeb1765b7c5af8b54a4078f791ef99565017
4
+ data.tar.gz: 34054ec1c0315daddbe35487d3e1f17d2e54d8ce9dccbeaeb1336a9e769e0243
5
5
  SHA512:
6
- metadata.gz: 052b7b30fa6b1a4735eaf782ce5e6c2fe771e3b8238764d678c16c3cd8c6c5009ceb31ea104a8bdd7ef5adb7200f506c80932ab4ff3b37f27785681256f0f3ca
7
- data.tar.gz: '0784c3fdc84bcb2eedc245026bf29e2e22729102a1dec0e915143bbbcf4909c035542a3b0372278411ba40a7c84b096280d8f5c9b3b4709985114d848665ed6a'
6
+ metadata.gz: 8c724d01e67181174e9ffbdb36b1149c03c5457f468e2c54d005f943bacd1e0f42da9e041161f6ee9a7151823d6476872fcde230a73912df0707699aa55b1d26
7
+ data.tar.gz: 2399fa97e559c3df895993dbc07e3c286e32e27f1a3407e95d442af3494edc5b628d2d08a73be431701f8cb3df7b71e44af8fb9e179e35fe2da725ca16e383fc
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.450
1
+ 1.1.451
@@ -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.450"
4
+ VERSION = "1.1.451"
5
5
  end
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.450
4
+ version: 1.1.451
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-07 00:00:00.000000000 Z
11
+ date: 2026-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable