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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2ef603590ea0fcf32bca6ced461fc2422f27df88a86cd9344f5857d91b05cb7
4
- data.tar.gz: 1e36d7a8d9060f082351f34e2c1159e01e858d09887e74c51cadb847c1624b30
3
+ metadata.gz: 3b02c1d15b2e559465baa4f5ce9b7977b0b4a8fb2267366846e1160d68cbbff1
4
+ data.tar.gz: 9e81299c84cfec2a425636a5fa57f5ad5d76395002e550e438ca995be8cdbb53
5
5
  SHA512:
6
- metadata.gz: 32a07e2b32aae8ee08af16a816ac3604cb14018246b81777379edcda7a21e258f23f4125c89c97b4eb95faab28e9cda53a42a1f1b59e7f519216c31ce1b3dcc7
7
- data.tar.gz: d741e7dc7de4ba3e52b1dcc35fec886ddbf03d909b176eb0c54f9023e1e910aa01e8dcab1675190a457bbbe2d42f90fd4bc17cf96bcbc9ac6500c4100bfe2a2c
6
+ metadata.gz: 8d676beb9bb1b9b42dfe798cdbd39a43b50498dccf4a8baabf0fcaec5113e2526faa6a005d6e22887c34b7489e90932edb1d714cc51f2a1a7156374d6cc9f560
7
+ data.tar.gz: 03c56d72c665ce6aed3c191a13505bd761eed37f2834bd88fb9e1e5a3bf8a43468f18ff1f3a020793c2e78c3923ad3bed383521f20dfd3d88d993352f2fb66c4
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.253
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]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.253
4
+ version: 1.0.254
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com