files.com 1.0.367 → 1.0.369
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e54ec978c1847fd669b94f75db924f8f3b98c3931918c12e6d16171464a7104
|
4
|
+
data.tar.gz: c4d6341c54ed17100ca0e71526ce15f162e5681ca4c1dc4c70bbe0cac8925663
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a986cb97c79e86c20e6046dc90021f549e330a5ad7e332f1d98529e6f3c0d284cfdd05a7f53f8f9410589c24e299230951582336f38a1847c4e19f4d1b8d32cc
|
7
|
+
data.tar.gz: 0b215d11abf59aa8323ef6ef47470a5afdce8df2242994d11d70b5b460043ea43ffe7e3bfff3ef4bdff213ed045dde6a7169634918e53c7b97a5be2b9a7cb422
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.369
|
@@ -7,7 +7,9 @@
|
|
7
7
|
"id": 1,
|
8
8
|
"inbox_id": 1,
|
9
9
|
"sender": "example",
|
10
|
+
"sender_name": "example",
|
10
11
|
"status": "success",
|
12
|
+
"body": "example",
|
11
13
|
"message": "example",
|
12
14
|
"created_at": "2000-01-01T01:00:00Z"
|
13
15
|
}
|
@@ -16,7 +18,9 @@
|
|
16
18
|
* `id` (int64): Id of the Email Incoming Message
|
17
19
|
* `inbox_id` (int64): Id of the Inbox associated with this message
|
18
20
|
* `sender` (string): Sender of the email
|
21
|
+
* `sender_name` (string): Sender name
|
19
22
|
* `status` (string): Status of the message
|
23
|
+
* `body` (string): Body of the email
|
20
24
|
* `message` (string): Message describing the failure
|
21
25
|
* `created_at` (date-time): Message creation date/time
|
22
26
|
|
@@ -24,6 +24,7 @@
|
|
24
24
|
"target_permission": "full",
|
25
25
|
"target_recursive": true,
|
26
26
|
"target_expires_at": 1,
|
27
|
+
"target_expires_at_iso8601": "example",
|
27
28
|
"target_permission_set": "desktop_app",
|
28
29
|
"target_platform": "windows",
|
29
30
|
"target_username": "jerry",
|
@@ -50,7 +51,8 @@
|
|
50
51
|
* `target_name` (string): Name of the User, Group or other object with a name related to this action
|
51
52
|
* `target_permission` (string): Permission level of the action
|
52
53
|
* `target_recursive` (boolean): Whether or not the action was recursive
|
53
|
-
* `target_expires_at` (int64): If searching for Histories about API keys, this is when the API key will expire
|
54
|
+
* `target_expires_at` (int64): If searching for Histories about API keys, this is when the API key will expire. Represented as a Unix timestamp.
|
55
|
+
* `target_expires_at_iso8601` (string): If searching for Histories about API keys, this is when the API key will expire. Represented in ISO8601 format.
|
54
56
|
* `target_permission_set` (string): If searching for Histories about API keys, this represents the permission set of the associated API key
|
55
57
|
* `target_platform` (string): If searching for Histories about API keys, this is the platform on which the action was taken
|
56
58
|
* `target_username` (string): If searching for Histories about API keys, this is the username on which the action was taken
|
@@ -24,11 +24,21 @@ module Files
|
|
24
24
|
@attributes[:sender]
|
25
25
|
end
|
26
26
|
|
27
|
+
# string - Sender name
|
28
|
+
def sender_name
|
29
|
+
@attributes[:sender_name]
|
30
|
+
end
|
31
|
+
|
27
32
|
# string - Status of the message
|
28
33
|
def status
|
29
34
|
@attributes[:status]
|
30
35
|
end
|
31
36
|
|
37
|
+
# string - Body of the email
|
38
|
+
def body
|
39
|
+
@attributes[:body]
|
40
|
+
end
|
41
|
+
|
32
42
|
# string - Message describing the failure
|
33
43
|
def message
|
34
44
|
@attributes[:message]
|
@@ -104,11 +104,16 @@ module Files
|
|
104
104
|
@attributes[:target_recursive]
|
105
105
|
end
|
106
106
|
|
107
|
-
# int64 - If searching for Histories about API keys, this is when the API key will expire
|
107
|
+
# int64 - If searching for Histories about API keys, this is when the API key will expire. Represented as a Unix timestamp.
|
108
108
|
def target_expires_at
|
109
109
|
@attributes[:target_expires_at]
|
110
110
|
end
|
111
111
|
|
112
|
+
# string - If searching for Histories about API keys, this is when the API key will expire. Represented in ISO8601 format.
|
113
|
+
def target_expires_at_iso8601
|
114
|
+
@attributes[:target_expires_at_iso8601]
|
115
|
+
end
|
116
|
+
|
112
117
|
# string - If searching for Histories about API keys, this represents the permission set of the associated API key
|
113
118
|
def target_permission_set
|
114
119
|
@attributes[:target_permission_set]
|
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.369
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|