files.com 1.1.604 → 1.1.605

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: b43f3d0bfddc0d6f61a286065abcae70be3dd14354d95d32ce5726458bde227c
4
- data.tar.gz: 9687989b52bdbafc927e38d8af782f862c1bbcae08023c7a721923bcecc8a1eb
3
+ metadata.gz: b897c4afdd2176526743b2a4202037c7b6908a274bd7a2d8e437fb7d8a3ed1ad
4
+ data.tar.gz: '078b68d769eb4c9a4ff551f3a00ecd7fa47ae8814c1aab2a48c37a5435d620f6'
5
5
  SHA512:
6
- metadata.gz: 29b921a4634b9007fc0ee22496fa1c53fd65bfe5d2f31f1b0235a6f06e8329ed406ad5604e1f5aa3800091305c3b594409c7b875f6c64b52e6c3b424ab07320b
7
- data.tar.gz: 4fa83d7559385861df76ec3395c996eb7021f0de8bf2359fd0292429d8c2306e1baa24c1ad4e13db183330d5bc8e9dc535bf706a7474e65fd5d0ae9135ae4aa2
6
+ metadata.gz: f847476d8069f9720e8d8f84121431349e5012a8ed01de64caafa21b2df61fb2a8f914c0fe2d021bdaaaf3fc3e7a4b8173ad45a848bdcd58008943dd436f8fd2
7
+ data.tar.gz: f361e278971ea7874d5147915ecbde80eed6b41a245d94831288266d1eb68046e507fe7b5b5a196ca45c483d90106300bc0e566a30ed34e241a2ceb4bb87d76d
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.604
1
+ 1.1.605
data/docs/clickwrap.md CHANGED
@@ -16,7 +16,7 @@
16
16
  * `id` (int64): Clickwrap ID
17
17
  * `name` (string): Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.)
18
18
  * `body` (string): Body text of Clickwrap (supports Markdown formatting).
19
- * `use_with_users` (string): Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
19
+ * `use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
20
20
  * `use_with_bundles` (string): Use this Clickwrap for Bundles?
21
21
  * `use_with_inboxes` (string): Use this Clickwrap for Inboxes?
22
22
 
@@ -69,7 +69,7 @@ Files::Clickwrap.create(
69
69
  * `body` (string): Body text of Clickwrap (supports Markdown formatting).
70
70
  * `use_with_bundles` (string): Use this Clickwrap for Bundles?
71
71
  * `use_with_inboxes` (string): Use this Clickwrap for Inboxes?
72
- * `use_with_users` (string): Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
72
+ * `use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
73
73
 
74
74
 
75
75
  ---
@@ -93,7 +93,7 @@ Files::Clickwrap.update(id,
93
93
  * `body` (string): Body text of Clickwrap (supports Markdown formatting).
94
94
  * `use_with_bundles` (string): Use this Clickwrap for Bundles?
95
95
  * `use_with_inboxes` (string): Use this Clickwrap for Inboxes?
96
- * `use_with_users` (string): Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
96
+ * `use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
97
97
 
98
98
 
99
99
  ---
@@ -132,7 +132,7 @@ clickwrap.update(
132
132
  * `body` (string): Body text of Clickwrap (supports Markdown formatting).
133
133
  * `use_with_bundles` (string): Use this Clickwrap for Bundles?
134
134
  * `use_with_inboxes` (string): Use this Clickwrap for Inboxes?
135
- * `use_with_users` (string): Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
135
+ * `use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
136
136
 
137
137
 
138
138
  ---
@@ -36,7 +36,7 @@ module Files
36
36
  @attributes[:body] = value
37
37
  end
38
38
 
39
- # string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
39
+ # string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
40
40
  def use_with_users
41
41
  @attributes[:use_with_users]
42
42
  end
@@ -68,7 +68,7 @@ module Files
68
68
  # body - string - Body text of Clickwrap (supports Markdown formatting).
69
69
  # use_with_bundles - string - Use this Clickwrap for Bundles?
70
70
  # use_with_inboxes - string - Use this Clickwrap for Inboxes?
71
- # use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
71
+ # use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
72
72
  def update(params = {})
73
73
  params ||= {}
74
74
  params[:id] = @attributes[:id]
@@ -149,7 +149,7 @@ module Files
149
149
  # body - string - Body text of Clickwrap (supports Markdown formatting).
150
150
  # use_with_bundles - string - Use this Clickwrap for Bundles?
151
151
  # use_with_inboxes - string - Use this Clickwrap for Inboxes?
152
- # use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
152
+ # use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
153
153
  def self.create(params = {}, options = {})
154
154
  raise InvalidParameterError.new("Bad parameter: name must be an String") if params[:name] and !params[:name].is_a?(String)
155
155
  raise InvalidParameterError.new("Bad parameter: body must be an String") if params[:body] and !params[:body].is_a?(String)
@@ -166,7 +166,7 @@ module Files
166
166
  # body - string - Body text of Clickwrap (supports Markdown formatting).
167
167
  # use_with_bundles - string - Use this Clickwrap for Bundles?
168
168
  # use_with_inboxes - string - Use this Clickwrap for Inboxes?
169
- # use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
169
+ # use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
170
170
  def self.update(id, params = {}, options = {})
171
171
  params ||= {}
172
172
  params[:id] = id
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.604"
4
+ VERSION = "1.1.605"
5
5
  end
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.1.604
4
+ version: 1.1.605
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-04-19 00:00:00.000000000 Z
11
+ date: 2026-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable