files.com 1.0.253 → 1.0.254
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.md +6 -0
- data/lib/files.com/models/bundle.rb +27 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b02c1d15b2e559465baa4f5ce9b7977b0b4a8fb2267366846e1160d68cbbff1
|
|
4
|
+
data.tar.gz: 9e81299c84cfec2a425636a5fa57f5ad5d76395002e550e438ca995be8cdbb53
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d676beb9bb1b9b42dfe798cdbd39a43b50498dccf4a8baabf0fcaec5113e2526faa6a005d6e22887c34b7489e90932edb1d714cc51f2a1a7156374d6cc9f560
|
|
7
|
+
data.tar.gz: 03c56d72c665ce6aed3c191a13505bd761eed37f2834bd88fb9e1e5a3bf8a43468f18ff1f3a020793c2e78c3923ad3bed383521f20dfd3d88d993352f2fb66c4
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.254
|
data/docs/bundle.md
CHANGED
|
@@ -39,6 +39,9 @@
|
|
|
39
39
|
"skip_email": true,
|
|
40
40
|
"skip_company": true
|
|
41
41
|
},
|
|
42
|
+
"skip_name": true,
|
|
43
|
+
"skip_email": true,
|
|
44
|
+
"skip_company": true,
|
|
42
45
|
"id": 1,
|
|
43
46
|
"created_at": "2000-01-01T01:00:00Z",
|
|
44
47
|
"expires_at": "2000-01-01T01:00:00Z",
|
|
@@ -69,6 +72,9 @@
|
|
|
69
72
|
* `require_share_recipient` (boolean): Only allow access to recipients who have explicitly received the share via an email sent through the Files.com UI?
|
|
70
73
|
* `clickwrap_body` (string): Legal text that must be agreed to prior to accessing Bundle.
|
|
71
74
|
* `form_field_set` (FormFieldSet): Custom Form to use
|
|
75
|
+
* `skip_name` (boolean): BundleRegistrations can be saved without providing name?
|
|
76
|
+
* `skip_email` (boolean): BundleRegistrations can be saved without providing email?
|
|
77
|
+
* `skip_company` (boolean): BundleRegistrations can be saved without providing company?
|
|
72
78
|
* `id` (int64): Bundle ID
|
|
73
79
|
* `created_at` (date-time): Bundle created at date/time
|
|
74
80
|
* `expires_at` (date-time): Bundle expiration date/time
|
|
@@ -90,6 +90,33 @@ module Files
|
|
|
90
90
|
@attributes[:form_field_set] = value
|
|
91
91
|
end
|
|
92
92
|
|
|
93
|
+
# boolean - BundleRegistrations can be saved without providing name?
|
|
94
|
+
def skip_name
|
|
95
|
+
@attributes[:skip_name]
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def skip_name=(value)
|
|
99
|
+
@attributes[:skip_name] = value
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
# boolean - BundleRegistrations can be saved without providing email?
|
|
103
|
+
def skip_email
|
|
104
|
+
@attributes[:skip_email]
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
def skip_email=(value)
|
|
108
|
+
@attributes[:skip_email] = value
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
# boolean - BundleRegistrations can be saved without providing company?
|
|
112
|
+
def skip_company
|
|
113
|
+
@attributes[:skip_company]
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
def skip_company=(value)
|
|
117
|
+
@attributes[:skip_company] = value
|
|
118
|
+
end
|
|
119
|
+
|
|
93
120
|
# int64 - Bundle ID
|
|
94
121
|
def id
|
|
95
122
|
@attributes[:id]
|