files.com 1.1.615 → 1.1.617

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: '08a389272f6bcfa76465e87a6b5ad10f725f5fc15cb6a808efdf6430a4a25bfd'
4
- data.tar.gz: 86773e32fb71727835ceebd0a90d5f5c8509147cf9dcb076d1eea09766f336de
3
+ metadata.gz: 68dc057b0cb521bb4102fd29a688ef7b185d01e6625a196c2dcd32e7b2433024
4
+ data.tar.gz: de12ac7fb64d1c7dc4f8baece95c3d5dfb1bb01a11479f6de6fa7fae673c1ee6
5
5
  SHA512:
6
- metadata.gz: 2399198c4851849d440e4e69ddbc491041bd9143c7d9897c955c82725884acd38f94b0331a112418c0029fe7f66a921629653e9dfd6d60ad929a647c057c9749
7
- data.tar.gz: 2309caab315de1ce3c18cb81a7d6dc2d53ff3cf48d5e7d21b9c369153b33492aff6caeb4d170ca85d8cb247d872644e4b82f842dbf098bc3dd00b8d0f4dab1c9
6
+ metadata.gz: e5b421aea6583815fb7e7a8bc9f815dae1a0ff246c0a1b50b5e6b8fd47108aa472064a6d418a3b702e560bdb14d88d19b9155b8552db9f277b29a867a0b2c6ca
7
+ data.tar.gz: '09c65f720730d229d3c0e243dc8f05def7b31747a4947e5a54b77bb9f895e3862f28fea5ec471f47ba625907b9cb6b704cd2d1404bed9a85a988fd102da08a82'
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.615
1
+ 1.1.617
@@ -31,7 +31,11 @@
31
31
  "workspace_id": 1,
32
32
  "bundle_registration_name": "John Doe",
33
33
  "bundle_registration_email": "john@example.com",
34
- "bundle_registration_ip": "127.0.0.1"
34
+ "bundle_registration_ip": "127.0.0.1",
35
+ "form_field_set_id": 1,
36
+ "form_field_data": {
37
+ "key": "example value"
38
+ }
35
39
  }
36
40
  ```
37
41
 
@@ -46,6 +50,8 @@
46
50
  * `bundle_registration_name` (string): Name of the registrant who performed the action
47
51
  * `bundle_registration_email` (string): Email of the registrant
48
52
  * `bundle_registration_ip` (string): IP address of the registrant
53
+ * `form_field_set_id` (int64): Id of associated form field set
54
+ * `form_field_data` (object): Data for form field set with form field ids as keys and user data as values
49
55
 
50
56
 
51
57
  ---
@@ -23,7 +23,7 @@
23
23
 
24
24
  ],
25
25
  "criteria_errors": [
26
-
26
+ "count expected exactly 2, got 1"
27
27
  ],
28
28
  "summary": null,
29
29
  "created_at": "2000-01-01T01:00:00Z",
@@ -45,7 +45,7 @@
45
45
  * `closed_at` (date-time): When the evaluation row was finalized.
46
46
  * `matched_files` (array(object)): Captured evidence for files that matched the window.
47
47
  * `missing_files` (array(object)): Captured evidence for required files that were missing.
48
- * `criteria_errors` (array(object)): Captured criteria failures for the window.
48
+ * `criteria_errors` (array(string)): Captured criteria failures for the window.
49
49
  * `summary` (object): Compact evaluator summary payload.
50
50
  * `created_at` (date-time): Creation time.
51
51
  * `updated_at` (date-time): Last update time.
@@ -64,6 +64,16 @@ module Files
64
64
  @attributes[:bundle_registration_ip]
65
65
  end
66
66
 
67
+ # int64 - Id of associated form field set
68
+ def form_field_set_id
69
+ @attributes[:form_field_set_id]
70
+ end
71
+
72
+ # object - Data for form field set with form field ids as keys and user data as values
73
+ def form_field_data
74
+ @attributes[:form_field_data]
75
+ end
76
+
67
77
  # Parameters:
68
78
  # user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
69
79
  # 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.
@@ -79,7 +79,7 @@ module Files
79
79
  @attributes[:missing_files]
80
80
  end
81
81
 
82
- # array(object) - Captured criteria failures for the window.
82
+ # array(string) - Captured criteria failures for the window.
83
83
  def criteria_errors
84
84
  @attributes[:criteria_errors]
85
85
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.615"
4
+ VERSION = "1.1.617"
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.615
4
+ version: 1.1.617
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com