files.com 1.0.298 → 1.0.299
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.
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.299
|
@@ -6,7 +6,7 @@
|
|
6
6
|
{
|
7
7
|
"id": 1,
|
8
8
|
"created_at": 1,
|
9
|
-
"created_at_iso8601":
|
9
|
+
"created_at_iso8601": "example",
|
10
10
|
"user_id": 1,
|
11
11
|
"file_id": 1,
|
12
12
|
"parent_id": 1,
|
@@ -33,7 +33,7 @@
|
|
33
33
|
|
34
34
|
* `id` (int64): Action ID
|
35
35
|
* `created_at` (int64): When the action happened
|
36
|
-
* `created_at_iso8601` (
|
36
|
+
* `created_at_iso8601` (string): When the action happened, in ISO8601 format.
|
37
37
|
* `user_id` (int64): User ID
|
38
38
|
* `file_id` (int64): File ID related to the action
|
39
39
|
* `parent_id` (int64): ID of the parent folder
|
@@ -39,7 +39,7 @@ var HistoryExportResult = /*#__PURE__*/(0, _createClass2.default)(function Histo
|
|
39
39
|
(0, _defineProperty2.default)(this, "getCreatedAt", function () {
|
40
40
|
return _this.attributes.created_at;
|
41
41
|
});
|
42
|
-
//
|
42
|
+
// string # When the action happened, in ISO8601 format.
|
43
43
|
(0, _defineProperty2.default)(this, "getCreatedAtIso8601", function () {
|
44
44
|
return _this.attributes.created_at_iso8601;
|
45
45
|
});
|
package/package.json
CHANGED
@@ -29,7 +29,7 @@ class HistoryExportResult {
|
|
29
29
|
// int64 # When the action happened
|
30
30
|
getCreatedAt = () => this.attributes.created_at
|
31
31
|
|
32
|
-
//
|
32
|
+
// string # When the action happened, in ISO8601 format.
|
33
33
|
getCreatedAtIso8601 = () => this.attributes.created_at_iso8601
|
34
34
|
|
35
35
|
// int64 # User ID
|