files.com 1.1.152 → 1.1.153

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: 8e4e622db4ac06e7bfb4a78c6f0fd7aac3e446ceee53544d9b96f778887bc754
4
- data.tar.gz: 7e473024b62905ee135b0bfdd85f3fd7a698f96df8572b8ecbc264d1c3911c6d
3
+ metadata.gz: ea471afd57eb4dbc7c84e8862024a6eb1b0e2818d2a3946f546bc4f5cc4222e3
4
+ data.tar.gz: 139316408c4e7cd6fbe4dd4a2a4cf94a1d5adfac6ab7bde235dc02e8c50f98d6
5
5
  SHA512:
6
- metadata.gz: 1c3ba80922cab9756825d24aba25f1e7cf7081ede25c73ea8a965b9d984916955a6caaee24edfcb48ebdba58545be97d459c80053a1b781bb560b8931b0bedd3
7
- data.tar.gz: df0025903e6e44aa5eef68bb2f3cbb3c598ef50b05128eae75eb13fa229c8d87d03bcf60f7ed31bfdb0b817a66d54e1b31d1da56575daef34aedce29fbef765d
6
+ metadata.gz: 68bd449632b206f5ff51a0e705dec632e37bcc9774c4841e982ffc65a8eecb5aa6abc85bfb2d487f1c050bdb6e351051509b02bbd137eca514a6c4f5052b31af
7
+ data.tar.gz: 44439f58efd0b0f1f6ee05eb11b9ab350825ce45b2d67d8959b1a41365f46ce939131aadceddd05e32dd96a538e0810f55113ad6a9988d75e1310c7003e371be
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.152
1
+ 1.1.153
data/docs/site.md CHANGED
@@ -212,6 +212,7 @@
212
212
  "authenticate_until": "2000-01-01T01:00:00Z",
213
213
  "authentication_method": "password",
214
214
  "avatar_url": "example",
215
+ "billable": true,
215
216
  "billing_permission": false,
216
217
  "bypass_site_allowed_ips": false,
217
218
  "bypass_inactive_disable": false,
data/docs/user.md CHANGED
@@ -15,6 +15,7 @@
15
15
  "authenticate_until": "2000-01-01T01:00:00Z",
16
16
  "authentication_method": "password",
17
17
  "avatar_url": "example",
18
+ "billable": true,
18
19
  "billing_permission": true,
19
20
  "bypass_site_allowed_ips": true,
20
21
  "bypass_inactive_disable": true,
@@ -82,6 +83,7 @@
82
83
  * `authenticate_until` (date-time): Scheduled Date/Time at which user will be deactivated
83
84
  * `authentication_method` (string): How is this user authenticated?
84
85
  * `avatar_url` (string): URL holding the user's avatar
86
+ * `billable` (boolean): Is this a billable user record?
85
87
  * `billing_permission` (boolean): Allow this user to perform operations on the account, payments, and invoices?
86
88
  * `bypass_site_allowed_ips` (boolean): Allow this user to skip site-wide IP blacklists?
87
89
  * `bypass_inactive_disable` (boolean): Exempt this user from being disabled based on inactivity?
@@ -90,6 +90,15 @@ module Files
90
90
  @attributes[:avatar_url] = value
91
91
  end
92
92
 
93
+ # boolean - Is this a billable user record?
94
+ def billable
95
+ @attributes[:billable]
96
+ end
97
+
98
+ def billable=(value)
99
+ @attributes[:billable] = value
100
+ end
101
+
93
102
  # boolean - Allow this user to perform operations on the account, payments, and invoices?
94
103
  def billing_permission
95
104
  @attributes[:billing_permission]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.152"
4
+ VERSION = "1.1.153"
5
5
  end
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.1.152
4
+ version: 1.1.153
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com