files.com 1.1.258 → 1.1.259
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 +2 -1
- data/docs/form_field_set.md +3 -1
- data/lib/files.com/models/form_field_set.rb +9 -0
- data/lib/files.com/version.rb +1 -1
- 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: 4f55527031416731818a64a1479468e7a43e266de8533c8f96185eab8ad02dde
|
4
|
+
data.tar.gz: a9dabbe0be4e5073ec1c1130fc07b4a7220a35f9f9d665d5ce582eb120e1350a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80014dd097284e0ac9e350e1659f3ecf522f10779c642bb40494bc75ccc42a6a22a5b3c6671c1311a5355114ecdb250f28449bbb943bf0ef873ceeaef6d6c926
|
7
|
+
data.tar.gz: f4a52c1c909fed787b8d917f81521dab70d11a179a0b76980e70e316ebc3d482b48a6f3c12803c898ee3a0f45a5de94d528e0d67a13102745cb9cc7a14dccaa1
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.259
|
data/docs/bundle.md
CHANGED
data/docs/form_field_set.md
CHANGED
@@ -30,7 +30,8 @@
|
|
30
30
|
],
|
31
31
|
"skip_name": true,
|
32
32
|
"skip_email": true,
|
33
|
-
"skip_company": true
|
33
|
+
"skip_company": true,
|
34
|
+
"in_use": true
|
34
35
|
}
|
35
36
|
```
|
36
37
|
|
@@ -41,6 +42,7 @@
|
|
41
42
|
* `skip_name` (boolean): Any associated InboxRegistrations or BundleRegistrations can be saved without providing name
|
42
43
|
* `skip_email` (boolean): Any associated InboxRegistrations or BundleRegistrations can be saved without providing email
|
43
44
|
* `skip_company` (boolean): Any associated InboxRegistrations or BundleRegistrations can be saved without providing company
|
45
|
+
* `in_use` (boolean): Form Field Set is in use by an active Inbox / Bundle / Inbox Registration / Bundle Registration
|
44
46
|
* `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
|
45
47
|
|
46
48
|
|
@@ -72,6 +72,15 @@ module Files
|
|
72
72
|
@attributes[:skip_company] = value
|
73
73
|
end
|
74
74
|
|
75
|
+
# boolean - Form Field Set is in use by an active Inbox / Bundle / Inbox Registration / Bundle Registration
|
76
|
+
def in_use
|
77
|
+
@attributes[:in_use]
|
78
|
+
end
|
79
|
+
|
80
|
+
def in_use=(value)
|
81
|
+
@attributes[:in_use] = value
|
82
|
+
end
|
83
|
+
|
75
84
|
# int64 - User ID. Provide a value of `0` to operate the current session's user.
|
76
85
|
def user_id
|
77
86
|
@attributes[:user_id]
|
data/lib/files.com/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.259
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|