files.com 1.0.196 → 1.0.197
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_registration.md +2 -0
- data/lib/files.com/models/bundle_registration.rb +5 -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: 132a17f2eee373017f7e623e3bc1d670024ab843407abc6efeaa3784cfc622c2
|
|
4
|
+
data.tar.gz: ef718a291170b625b796b1f7a4d0840e81db547c1f4ff67bc6ba78b47fd6a586
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9cd8c1cb2c3e7cc7f829c793a45780511cbd19e8c81d845a5aa2145526c342da2f28cd3261a92c4ebc39f437ff2219499070b15a896ab081f75d15f059313d06
|
|
7
|
+
data.tar.gz: 408dd148d1778eb3cfbdd397ec046abd2224e071b280f712a0505c49608dd652ed30845a0eb2201e646b2e4cd60da371da4d97fb4c14002001cb97b85413d76c
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.197
|
data/docs/bundle_registration.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"name": "account",
|
|
9
9
|
"company": "Action Verb",
|
|
10
10
|
"email": "john.doe@files.com",
|
|
11
|
+
"ip": "10.1.1.1",
|
|
11
12
|
"inbox_code": "abc123",
|
|
12
13
|
"clickwrap_body": "",
|
|
13
14
|
"form_field_set_id": 1,
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
* `name` (string): Registrant name
|
|
20
21
|
* `company` (string): Registrant company name
|
|
21
22
|
* `email` (string): Registrant email address
|
|
23
|
+
* `ip` (string): Registrant IP Address
|
|
22
24
|
* `inbox_code` (string): InboxRegistration cookie code, if there is an associated InboxRegistration
|
|
23
25
|
* `clickwrap_body` (string): Clickwrap text that was shown to the registrant
|
|
24
26
|
* `form_field_set_id` (int64): Id of associated form field set
|
|
@@ -29,6 +29,11 @@ module Files
|
|
|
29
29
|
@attributes[:email]
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
+
# string - Registrant IP Address
|
|
33
|
+
def ip
|
|
34
|
+
@attributes[:ip]
|
|
35
|
+
end
|
|
36
|
+
|
|
32
37
|
# string - InboxRegistration cookie code, if there is an associated InboxRegistration
|
|
33
38
|
def inbox_code
|
|
34
39
|
@attributes[:inbox_code]
|
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.197
|
|
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-08-
|
|
11
|
+
date: 2021-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|