files.com 1.0.161 → 1.0.162
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: a82f98df8c198dc2f6671c69f186af104f4417cba774fb7648e654af8355874b
|
|
4
|
+
data.tar.gz: bb0f843693107e36c2859b415bf0396f12a939acc8ce6b000d5e98cc7b5d1949
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4dde3c98a50d4e2b8ca60b44ee5f33f155e3eeeb08a34da901a79585f62c98c74e1e650ff8c0daaa471d1a6beeaa881ba79ad453e4b228da604a3dea5ce8c27e
|
|
7
|
+
data.tar.gz: 4211d6b84aa5df4ae05ce17acaf28eb2146fd3a989f7d8d896f765486dbb8a5887b7079929d3b3a665732efd39954cd10c2d558ae27ae80a2fc6eb2e13b7f2d6
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.162
|
data/docs/bundle_registration.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"company": "Action Verb",
|
|
10
10
|
"email": "john.doe@files.com",
|
|
11
11
|
"inbox_code": "abc123",
|
|
12
|
+
"clickwrap_body": "",
|
|
12
13
|
"form_field_set_id": 1,
|
|
13
14
|
"form_field_data": ""
|
|
14
15
|
}
|
|
@@ -19,6 +20,7 @@
|
|
|
19
20
|
* `company` (string): Registrant company name
|
|
20
21
|
* `email` (string): Registrant email address
|
|
21
22
|
* `inbox_code` (string): InboxRegistration cookie code, if there is an associated InboxRegistration
|
|
23
|
+
* `clickwrap_body` (string): Clickwrap text that was shown to the registrant
|
|
22
24
|
* `form_field_set_id` (int64): Id of associated form field set
|
|
23
25
|
* `form_field_data` (string): Data for form field set with form field ids as keys and user data as values
|
|
24
26
|
|
data/docs/inbox_registration.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"name": "account",
|
|
9
9
|
"company": "Action Verb",
|
|
10
10
|
"email": "john.doe@files.com",
|
|
11
|
+
"clickwrap_body": "",
|
|
11
12
|
"form_field_set_id": 1,
|
|
12
13
|
"form_field_data": ""
|
|
13
14
|
}
|
|
@@ -17,6 +18,7 @@
|
|
|
17
18
|
* `name` (string): Registrant name
|
|
18
19
|
* `company` (string): Registrant company name
|
|
19
20
|
* `email` (string): Registrant email address
|
|
21
|
+
* `clickwrap_body` (string): Clickwrap text that was shown to the registrant
|
|
20
22
|
* `form_field_set_id` (int64): Id of associated form field set
|
|
21
23
|
* `form_field_data` (string): Data for form field set with form field ids as keys and user data as values
|
|
22
24
|
|
|
@@ -34,6 +34,11 @@ module Files
|
|
|
34
34
|
@attributes[:inbox_code]
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
+
# string - Clickwrap text that was shown to the registrant
|
|
38
|
+
def clickwrap_body
|
|
39
|
+
@attributes[:clickwrap_body]
|
|
40
|
+
end
|
|
41
|
+
|
|
37
42
|
# int64 - Id of associated form field set
|
|
38
43
|
def form_field_set_id
|
|
39
44
|
@attributes[:form_field_set_id]
|
|
@@ -29,6 +29,11 @@ module Files
|
|
|
29
29
|
@attributes[:email]
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
+
# string - Clickwrap text that was shown to the registrant
|
|
33
|
+
def clickwrap_body
|
|
34
|
+
@attributes[:clickwrap_body]
|
|
35
|
+
end
|
|
36
|
+
|
|
32
37
|
# int64 - Id of associated form field set
|
|
33
38
|
def form_field_set_id
|
|
34
39
|
@attributes[:form_field_set_id]
|
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.162
|
|
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-04-
|
|
11
|
+
date: 2021-04-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|