files.com 1.1.681 → 1.1.682

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: c9c833a143a8391a44ebde9b88e149f7d231ecc18fcd2f4a3044b76494e55ff1
4
- data.tar.gz: 2e262c76502adb4d6523427d1c7cce881bb5c07775ccbc0e4b44d06b89473d48
3
+ metadata.gz: 2c86cae5b00c3655207ca8a4425401eac36bcd0a92db0200cd34d546f490d2df
4
+ data.tar.gz: 9ba89c4e3380e60f347d418849583781c727212f3902b467ee04c05b9979f0f8
5
5
  SHA512:
6
- metadata.gz: 016bf4fe6fbc5d50b77775ecc437637bb63dbedd13a7412d4b2fc75459b685b91caa624540eb66830b0cf9fb208384e5afbca6e6226f8cb430bc3385d648bdf0
7
- data.tar.gz: 2aa8a0bfd3146849efb5fd6269f8fa3711c18ffc39c405b50dd4a6edd7b81d72d3c375cbe985a75df871b37e786542ec2a3eee4eb24786fc917a9a50b7fa8483
6
+ metadata.gz: 54f1251d77ee97cc00f53e0d43df23e2801aa6807a160456967cfcf3df397f2b61faf72888c2b6cdab58852de95bcbc70e51cbd7a7542bc665ef5c2b7480a50f
7
+ data.tar.gz: 6dc7aba8222b3e55812567b362282e3ce3b93bf37ae4077bcef14f1911490288dceb0502df924f4118727ec490a1e2c0cc28cfa00fe5203ea68587243d63dc30
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.681
1
+ 1.1.682
@@ -5,6 +5,9 @@
5
5
  ```
6
6
  {
7
7
  "definition_schema": "example",
8
+ "error_families": [
9
+ "example"
10
+ ],
8
11
  "nodes": [
9
12
  "example"
10
13
  ]
@@ -12,4 +15,5 @@
12
15
  ```
13
16
 
14
17
  * `definition_schema` (object): JSON Schema for active Automation v2 graph definitions.
18
+ * `error_families` (array(object)): Typed error families accepted by Automation v2 on_error rules.
15
19
  * `nodes` (array(object)): Active Automation v2 node authoring metadata.
data/docs/behavior.md CHANGED
@@ -46,7 +46,7 @@ Files::Behavior.list
46
46
  * `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.
47
47
  * `per_page` (int64): Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
48
48
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `behavior`.
49
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `clickwrap_id`, `form_field_set_id`, `impacts_ui`, `remote_server_id` or `behavior`. Valid field combinations are `[ impacts_ui, behavior ]`.
49
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `clickwrap_id`, `form_field_set_id`, `impacts_ui`, `remote_server_id` or `behavior`. Valid field combinations are `[ impacts_ui, behavior ]` and `[ behavior, remote_server_id ]`.
50
50
 
51
51
 
52
52
  ---
@@ -14,6 +14,11 @@ module Files
14
14
  @attributes[:definition_schema]
15
15
  end
16
16
 
17
+ # array(object) - Typed error families accepted by Automation v2 on_error rules.
18
+ def error_families
19
+ @attributes[:error_families]
20
+ end
21
+
17
22
  # array(object) - Active Automation v2 node authoring metadata.
18
23
  def nodes
19
24
  @attributes[:nodes]
@@ -167,7 +167,7 @@ module Files
167
167
  # 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.
168
168
  # per_page - int64 - Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
169
169
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `behavior`.
170
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `clickwrap_id`, `form_field_set_id`, `impacts_ui`, `remote_server_id` or `behavior`. Valid field combinations are `[ impacts_ui, behavior ]`.
170
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `clickwrap_id`, `form_field_set_id`, `impacts_ui`, `remote_server_id` or `behavior`. Valid field combinations are `[ impacts_ui, behavior ]` and `[ behavior, remote_server_id ]`.
171
171
  def self.list(params = {}, options = {})
172
172
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params[:cursor] and !params[:cursor].is_a?(String)
173
173
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params[:per_page] and !params[:per_page].is_a?(Integer)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.681"
4
+ VERSION = "1.1.682"
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.681
4
+ version: 1.1.682
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com