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 +4 -4
- data/_VERSION +1 -1
- data/docs/bundle_action.md +7 -1
- data/docs/expectation_evaluation.md +2 -2
- data/lib/files.com/models/bundle_action.rb +10 -0
- data/lib/files.com/models/expectation_evaluation.rb +1 -1
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68dc057b0cb521bb4102fd29a688ef7b185d01e6625a196c2dcd32e7b2433024
|
|
4
|
+
data.tar.gz: de12ac7fb64d1c7dc4f8baece95c3d5dfb1bb01a11479f6de6fa7fae673c1ee6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e5b421aea6583815fb7e7a8bc9f815dae1a0ff246c0a1b50b5e6b8fd47108aa472064a6d418a3b702e560bdb14d88d19b9155b8552db9f277b29a867a0b2c6ca
|
|
7
|
+
data.tar.gz: '09c65f720730d229d3c0e243dc8f05def7b31747a4947e5a54b77bb9f895e3862f28fea5ec471f47ba625907b9cb6b704cd2d1404bed9a85a988fd102da08a82'
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.617
|
data/docs/bundle_action.md
CHANGED
|
@@ -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(
|
|
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.
|
data/lib/files.com/version.rb
CHANGED