files.com 1.0.175 → 1.0.176
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/external_event.md +3 -1
- data/lib/files.com/models/external_event.rb +5 -0
- 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: 03d3652fb19d7122d286a797d196ae127a0f3c5ee07f1e0f5f8f01c6549a9b40
|
|
4
|
+
data.tar.gz: 2dca0d731de2e00202e42c2e9f229056fb1d07f6b4b1dcec3cefdb35f6903f11
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c83aae1e826d78894d774119131283d9183b3e7c4c36e6958d96c56f2cecb72adab5416c5f54786d9757e66330c674b33e38632b259cfb745f066ae268371872
|
|
7
|
+
data.tar.gz: 4648e05d2ed94d3b3e6eff3a6f5f3aa07fb3f6d8aeb699035cc0c5d746d5eaf138f5904ad016a6ce7901b460f88d4c7ff719e7a57add68a66f500fcb7f9b10a8
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.176
|
data/docs/external_event.md
CHANGED
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"event_type": "",
|
|
9
9
|
"status": "",
|
|
10
10
|
"body": "",
|
|
11
|
-
"created_at": "2000-01-01T01:00:00Z"
|
|
11
|
+
"created_at": "2000-01-01T01:00:00Z",
|
|
12
|
+
"body_url": ""
|
|
12
13
|
}
|
|
13
14
|
```
|
|
14
15
|
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
* `status` (string): Status of event.
|
|
18
19
|
* `body` (string): Event body
|
|
19
20
|
* `created_at` (date-time): External event create date/time
|
|
21
|
+
* `body_url` (string): Link to log file.
|
|
20
22
|
|
|
21
23
|
|
|
22
24
|
---
|
|
@@ -34,6 +34,11 @@ module Files
|
|
|
34
34
|
@attributes[:created_at]
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
+
# string - Link to log file.
|
|
38
|
+
def body_url
|
|
39
|
+
@attributes[:body_url]
|
|
40
|
+
end
|
|
41
|
+
|
|
37
42
|
# Parameters:
|
|
38
43
|
# cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
|
|
39
44
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|