files.com 1.0.250 → 1.0.253
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/as2_incoming_message.md +1 -1
- data/docs/as2_outgoing_message.md +1 -1
- data/docs/user.md +1 -1
- data/lib/files.com/errors.rb +1 -0
- data/lib/files.com/models/as2_incoming_message.rb +1 -1
- data/lib/files.com/models/as2_outgoing_message.rb +1 -1
- data/lib/files.com/models/user.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: c2ef603590ea0fcf32bca6ced461fc2422f27df88a86cd9344f5857d91b05cb7
|
4
|
+
data.tar.gz: 1e36d7a8d9060f082351f34e2c1159e01e858d09887e74c51cadb847c1624b30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32a07e2b32aae8ee08af16a816ac3604cb14018246b81777379edcda7a21e258f23f4125c89c97b4eb95faab28e9cda53a42a1f1b59e7f519216c31ce1b3dcc7
|
7
|
+
data.tar.gz: d741e7dc7de4ba3e52b1dcc35fec886ddbf03d909b176eb0c54f9023e1e910aa01e8dcab1675190a457bbbe2d42f90fd4bc17cf96bcbc9ac6500c4100bfe2a2c
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.253
|
@@ -27,7 +27,7 @@
|
|
27
27
|
* `content_type` (string): Content Type header of the incoming message.
|
28
28
|
* `http_headers` (object): HTTP Headers sent with this message.
|
29
29
|
* `activity_log` (string): JSON Structure of the activity log.
|
30
|
-
* `processing_result` (string): Result of processing.
|
30
|
+
* `processing_result` (string): Result of processing.
|
31
31
|
* `as2_to` (string): AS2 TO header of message
|
32
32
|
* `as2_from` (string): AS2 FROM header of message
|
33
33
|
* `message_id` (string): AS2 Message Id
|
@@ -23,7 +23,7 @@
|
|
23
23
|
* `uuid` (string): UUID assigned to this message.
|
24
24
|
* `http_headers` (object): HTTP Headers sent with this message.
|
25
25
|
* `activity_log` (string): JSON Structure of the activity log.
|
26
|
-
* `processing_result` (string): Result of processing.
|
26
|
+
* `processing_result` (string): Result of processing.
|
27
27
|
* `mic` (string): AS2 Message Integrity Check
|
28
28
|
* `message_id` (string): AS2 Message Id
|
29
29
|
* `body_size` (string): Encrypted Payload Body Size
|
data/docs/user.md
CHANGED
@@ -131,7 +131,7 @@ Files::User.list(
|
|
131
131
|
|
132
132
|
* `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
|
133
133
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
134
|
-
* `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `company`, `name`, `site_admin`, `receive_admin_alerts`, `password_validity_days`, `ssl_required` or `not_site_admin`.
|
134
|
+
* `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `active`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `company`, `name`, `site_admin`, `receive_admin_alerts`, `password_validity_days`, `ssl_required` or `not_site_admin`.
|
135
135
|
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
|
136
136
|
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
|
137
137
|
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
|
data/lib/files.com/errors.rb
CHANGED
@@ -182,6 +182,7 @@ module Files
|
|
182
182
|
class ModelSaveErrorError < ProcessingFailureError; end
|
183
183
|
class MultipartUploadsRequiredForRemotesError < ProcessingFailureError; end
|
184
184
|
class MultipleProcessingErrorsError < ProcessingFailureError; end
|
185
|
+
class PathTooLongError < ProcessingFailureError; end
|
185
186
|
class RecipientAlreadySharedError < ProcessingFailureError; end
|
186
187
|
class RemoteServerErrorError < ProcessingFailureError; end
|
187
188
|
class ResourceLockedError < ProcessingFailureError; end
|
@@ -39,7 +39,7 @@ module Files
|
|
39
39
|
@attributes[:activity_log]
|
40
40
|
end
|
41
41
|
|
42
|
-
# string - Result of processing.
|
42
|
+
# string - Result of processing.
|
43
43
|
def processing_result
|
44
44
|
@attributes[:processing_result]
|
45
45
|
end
|
@@ -666,7 +666,7 @@ module Files
|
|
666
666
|
# Parameters:
|
667
667
|
# cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
|
668
668
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
669
|
-
# sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `company`, `name`, `site_admin`, `receive_admin_alerts`, `password_validity_days`, `ssl_required` or `not_site_admin`.
|
669
|
+
# sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `active`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `company`, `name`, `site_admin`, `receive_admin_alerts`, `password_validity_days`, `ssl_required` or `not_site_admin`.
|
670
670
|
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
|
671
671
|
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
|
672
672
|
# filter_gteq - object - If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
|
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.0.
|
4
|
+
version: 1.0.253
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|