files.com 1.0.139 → 1.0.140
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/history_export.md +2 -0
- data/lib/files.com/models/history_export.rb +9 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d06237d78aefbc899c9976c0cb853efdd1f910ae04f38c9cf48920353dfdffe3
|
|
4
|
+
data.tar.gz: ca68eb9f5c808f3fe4336a0a5eef3573cf118abafb362bbe0158ce8dadc3ce99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fad063137d0bdfed25bb343861cfa54f426dbc5d27b4719e861398cdb429bdb94e88de3a5e2977fb7a443df43959c82c6361ff28992f69a41b86ca42acdcabc9
|
|
7
|
+
data.tar.gz: 857407be1ca8e7b3c0c6cd9433f250ba238e4cddd0438bd1f8ca586914e0f316920d4aadd2d87d93833e0e9082c190a22faad3f00506db3dce8f4151e24a5d63
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.140
|
data/docs/history_export.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
```
|
|
6
6
|
{
|
|
7
7
|
"id": 1,
|
|
8
|
+
"history_version": "20201213.2",
|
|
8
9
|
"start_at": "2000-01-01T01:00:00Z",
|
|
9
10
|
"end_at": "2000-01-01T01:00:00Z",
|
|
10
11
|
"status": "ready",
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
```
|
|
33
34
|
|
|
34
35
|
* `id` (int64): History Export ID
|
|
36
|
+
* `history_version` (string): Version of the history for the export.
|
|
35
37
|
* `start_at` (date-time): Start date/time of export range.
|
|
36
38
|
* `end_at` (date-time): End date/time of export range.
|
|
37
39
|
* `status` (string): Status of export. Will be: `building`, `ready`, or `failed`
|
|
@@ -18,6 +18,15 @@ module Files
|
|
|
18
18
|
@attributes[:id] = value
|
|
19
19
|
end
|
|
20
20
|
|
|
21
|
+
# string - Version of the history for the export.
|
|
22
|
+
def history_version
|
|
23
|
+
@attributes[:history_version]
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def history_version=(value)
|
|
27
|
+
@attributes[:history_version] = value
|
|
28
|
+
end
|
|
29
|
+
|
|
21
30
|
# date-time - Start date/time of export range.
|
|
22
31
|
def start_at
|
|
23
32
|
@attributes[:start_at]
|
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.0.
|
|
4
|
+
version: 1.0.140
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|