files.com 1.1.700 → 1.1.702

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: 641bd8b27bacc4e008049db261ae2ea4cb059f45b92c245cbf26c02593e2c094
4
- data.tar.gz: b6e030e5c0f3fdc61f60eccc6f78cc1da9ad024117429d23536a09c4d136a1e3
3
+ metadata.gz: 0acf3ca829b1f589c4215997d54340fdd629d1c6c2dd1d0721867177ffd7ad19
4
+ data.tar.gz: d0aa06a6630c68a3c4f3dcb00113887626e797cd0ea58818566d57fdef0fbb66
5
5
  SHA512:
6
- metadata.gz: b761980853fb1ac15480a52477644c7ca38a78c9d927f3f2bf9c6921b4558be524a46924e85682e49baaafcb422d3e90d528f6adea493ba02e5c06916ff28627
7
- data.tar.gz: a56f57ebbdffe2930a12cdec6906fcf51ad255ea031290d5b7824ede5748ac8203ede79bfd32f56a948103d6daa06298a3e0675da52dc37166839bcca8ef292e
6
+ metadata.gz: b1f03566c17c5599b8642c7c6d2267cfd5d9809e4f55b2d88222a53a654f1ccbd54fb5bc6e349fd0e6b3462f21a124946cfb22ec43d399c1b8330cb6a85b664d
7
+ data.tar.gz: aea8520b418b619f5660eafb44e2745b42a0c4506afc3d2ec4f24368c8a4d95615b18a0475b771816b62262bbcecae1ca5a3f131cbd19811e8cf59c6aefcd28e
data/README.md CHANGED
@@ -525,6 +525,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
525
525
  |`MethodNotAllowedError`| `BadRequestError` |
526
526
  |`MultipleSortParamsNotAllowedError`| `BadRequestError` |
527
527
  |`NoValidInputParamsError`| `BadRequestError` |
528
+ |`OffsetUploadNotAllowedWithMalwareScanningError`| `BadRequestError` |
528
529
  |`PartNumberTooLargeError`| `BadRequestError` |
529
530
  |`PathCannotHaveTrailingWhitespaceError`| `BadRequestError` |
530
531
  |`ReauthenticationNeededFieldsError`| `BadRequestError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.700
1
+ 1.1.702
data/docs/sso_strategy.md CHANGED
@@ -9,6 +9,7 @@
9
9
  "label": "My Corporate SSO Provider",
10
10
  "logo_url": "https://mysite.files.com/.../logo.png",
11
11
  "id": 1,
12
+ "enabled": true,
12
13
  "user_count": 1,
13
14
  "saml_provider_cert_fingerprint": "example",
14
15
  "saml_provider_issuer_url": "example",
@@ -45,7 +46,6 @@
45
46
  "provider_identifier": "",
46
47
  "ldap_base_dn": "example",
47
48
  "ldap_domain": "mysite.com",
48
- "enabled": true,
49
49
  "display_on_login_page": true,
50
50
  "ldap_host": "ldap.site.com",
51
51
  "ldap_host_2": "ldap2.site.com",
@@ -64,6 +64,7 @@
64
64
  * `label` (string): Custom label for the SSO provider on the login page.
65
65
  * `logo_url` (string): URL holding a custom logo for the SSO provider on the login page.
66
66
  * `id` (int64): ID
67
+ * `enabled` (boolean): Is strategy enabled? This may become automatically set to `false` after a high number and duration of failures.
67
68
  * `user_count` (int64): Count of users with this SSO Strategy
68
69
  * `saml_provider_cert_fingerprint` (string): Identity provider sha256 cert fingerprint if saml_provider_metadata_url is not available.
69
70
  * `saml_provider_issuer_url` (string): Identity provider issuer url
@@ -100,7 +101,6 @@
100
101
  * `provider_identifier` (string): URL-friendly, unique identifier for Azure SAML configuration
101
102
  * `ldap_base_dn` (string): Base DN for looking up users in LDAP server
102
103
  * `ldap_domain` (string): Domain name that will be appended to LDAP usernames
103
- * `enabled` (boolean): Is strategy enabled? This may become automatically set to `false` after a high number and duration of failures.
104
104
  * `display_on_login_page` (boolean): Should this strategy be displayed on the login page?
105
105
  * `ldap_host` (string): LDAP host
106
106
  * `ldap_host_2` (string): LDAP backup host
@@ -81,6 +81,7 @@ module Files
81
81
  class MethodNotAllowedError < BadRequestError; end
82
82
  class MultipleSortParamsNotAllowedError < BadRequestError; end
83
83
  class NoValidInputParamsError < BadRequestError; end
84
+ class OffsetUploadNotAllowedWithMalwareScanningError < BadRequestError; end
84
85
  class PartNumberTooLargeError < BadRequestError; end
85
86
  class PathCannotHaveTrailingWhitespaceError < BadRequestError; end
86
87
  class ReauthenticationNeededFieldsError < BadRequestError; end
@@ -34,6 +34,11 @@ module Files
34
34
  @attributes[:id]
35
35
  end
36
36
 
37
+ # boolean - Is strategy enabled? This may become automatically set to `false` after a high number and duration of failures.
38
+ def enabled
39
+ @attributes[:enabled]
40
+ end
41
+
37
42
  # int64 - Count of users with this SSO Strategy
38
43
  def user_count
39
44
  @attributes[:user_count]
@@ -214,11 +219,6 @@ module Files
214
219
  @attributes[:ldap_domain]
215
220
  end
216
221
 
217
- # boolean - Is strategy enabled? This may become automatically set to `false` after a high number and duration of failures.
218
- def enabled
219
- @attributes[:enabled]
220
- end
221
-
222
222
  # boolean - Should this strategy be displayed on the login page?
223
223
  def display_on_login_page
224
224
  @attributes[:display_on_login_page]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.700"
4
+ VERSION = "1.1.702"
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.700
4
+ version: 1.1.702
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-07-30 00:00:00.000000000 Z
11
+ date: 2026-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable