files.com 1.1.357 → 1.1.359
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 +1 -1
- data/docs/partner.md +4 -4
- data/lib/files.com/models/bundle.rb +1 -1
- data/lib/files.com/models/partner.rb +4 -4
- 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: bc633da47048b070f03d57624ed41672c29d93a56669aabd2b10851ecb8932bc
|
|
4
|
+
data.tar.gz: c0d40a9898847d503ca2c8a6d00aa12d5903cfa8d1ac8a00256f0af2d0061282
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f152bca8b2c17471f965a0fc4229fc74ce7b48ccf9f1cb01b5923217d6d7c0fb9b855867eaafc9895de06ba7c77593b3e1a99c192acc7f63463208188e5284c4
|
|
7
|
+
data.tar.gz: 5addadd97e91c43c1ecf1d6280b961ec5b1ddaf5bef64203139f4ac97fd53d50365bc5b3af6d5f28bb7bd753d19725e84188dc409e53b8a496afcbd1eb32c038
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.359
|
data/docs/bundle.md
CHANGED
|
@@ -152,7 +152,7 @@ Files::Bundle.list(
|
|
|
152
152
|
* `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
|
|
153
153
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
154
154
|
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
|
|
155
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
|
|
155
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
|
|
156
156
|
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
157
157
|
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
158
158
|
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
|
data/docs/partner.md
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
}
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
* `allow_bypassing_2fa_policies` (boolean): Allow
|
|
29
|
+
* `allow_bypassing_2fa_policies` (boolean): Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
|
|
30
30
|
* `allow_credential_changes` (boolean): Allow Partner Admins to change or reset credentials for users belonging to this Partner.
|
|
31
31
|
* `allow_providing_gpg_keys` (boolean): Allow Partner Admins to provide GPG keys.
|
|
32
32
|
* `allow_user_creation` (boolean): Allow Partner Admins to create users.
|
|
@@ -86,7 +86,7 @@ Files::Partner.create(
|
|
|
86
86
|
|
|
87
87
|
### Parameters
|
|
88
88
|
|
|
89
|
-
* `allow_bypassing_2fa_policies` (boolean): Allow
|
|
89
|
+
* `allow_bypassing_2fa_policies` (boolean): Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
|
|
90
90
|
* `allow_credential_changes` (boolean): Allow Partner Admins to change or reset credentials for users belonging to this Partner.
|
|
91
91
|
* `allow_providing_gpg_keys` (boolean): Allow Partner Admins to provide GPG keys.
|
|
92
92
|
* `allow_user_creation` (boolean): Allow Partner Admins to create users.
|
|
@@ -116,7 +116,7 @@ Files::Partner.update(id,
|
|
|
116
116
|
### Parameters
|
|
117
117
|
|
|
118
118
|
* `id` (int64): Required - Partner ID.
|
|
119
|
-
* `allow_bypassing_2fa_policies` (boolean): Allow
|
|
119
|
+
* `allow_bypassing_2fa_policies` (boolean): Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
|
|
120
120
|
* `allow_credential_changes` (boolean): Allow Partner Admins to change or reset credentials for users belonging to this Partner.
|
|
121
121
|
* `allow_providing_gpg_keys` (boolean): Allow Partner Admins to provide GPG keys.
|
|
122
122
|
* `allow_user_creation` (boolean): Allow Partner Admins to create users.
|
|
@@ -161,7 +161,7 @@ partner.update(
|
|
|
161
161
|
### Parameters
|
|
162
162
|
|
|
163
163
|
* `id` (int64): Required - Partner ID.
|
|
164
|
-
* `allow_bypassing_2fa_policies` (boolean): Allow
|
|
164
|
+
* `allow_bypassing_2fa_policies` (boolean): Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
|
|
165
165
|
* `allow_credential_changes` (boolean): Allow Partner Admins to change or reset credentials for users belonging to this Partner.
|
|
166
166
|
* `allow_providing_gpg_keys` (boolean): Allow Partner Admins to provide GPG keys.
|
|
167
167
|
* `allow_user_creation` (boolean): Allow Partner Admins to create users.
|
|
@@ -519,7 +519,7 @@ module Files
|
|
|
519
519
|
# cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
|
|
520
520
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
521
521
|
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
|
|
522
|
-
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
|
|
522
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
|
|
523
523
|
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
524
524
|
# filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
525
525
|
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
|
|
@@ -9,7 +9,7 @@ module Files
|
|
|
9
9
|
@options = options || {}
|
|
10
10
|
end
|
|
11
11
|
|
|
12
|
-
# boolean - Allow
|
|
12
|
+
# boolean - Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
|
|
13
13
|
def allow_bypassing_2fa_policies
|
|
14
14
|
@attributes[:allow_bypassing_2fa_policies]
|
|
15
15
|
end
|
|
@@ -109,7 +109,7 @@ module Files
|
|
|
109
109
|
end
|
|
110
110
|
|
|
111
111
|
# Parameters:
|
|
112
|
-
# allow_bypassing_2fa_policies - boolean - Allow
|
|
112
|
+
# allow_bypassing_2fa_policies - boolean - Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
|
|
113
113
|
# allow_credential_changes - boolean - Allow Partner Admins to change or reset credentials for users belonging to this Partner.
|
|
114
114
|
# allow_providing_gpg_keys - boolean - Allow Partner Admins to provide GPG keys.
|
|
115
115
|
# allow_user_creation - boolean - Allow Partner Admins to create users.
|
|
@@ -192,7 +192,7 @@ module Files
|
|
|
192
192
|
end
|
|
193
193
|
|
|
194
194
|
# Parameters:
|
|
195
|
-
# allow_bypassing_2fa_policies - boolean - Allow
|
|
195
|
+
# allow_bypassing_2fa_policies - boolean - Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
|
|
196
196
|
# allow_credential_changes - boolean - Allow Partner Admins to change or reset credentials for users belonging to this Partner.
|
|
197
197
|
# allow_providing_gpg_keys - boolean - Allow Partner Admins to provide GPG keys.
|
|
198
198
|
# allow_user_creation - boolean - Allow Partner Admins to create users.
|
|
@@ -212,7 +212,7 @@ module Files
|
|
|
212
212
|
end
|
|
213
213
|
|
|
214
214
|
# Parameters:
|
|
215
|
-
# allow_bypassing_2fa_policies - boolean - Allow
|
|
215
|
+
# allow_bypassing_2fa_policies - boolean - Allow Partner Admins to change Two-Factor Authentication requirements for Partner Users.
|
|
216
216
|
# allow_credential_changes - boolean - Allow Partner Admins to change or reset credentials for users belonging to this Partner.
|
|
217
217
|
# allow_providing_gpg_keys - boolean - Allow Partner Admins to provide GPG keys.
|
|
218
218
|
# allow_user_creation - boolean - Allow Partner Admins to create users.
|
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.359
|
|
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-11-
|
|
11
|
+
date: 2025-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|