files.com 1.0.250 → 1.0.253

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21d5a42762cd7774449905d76549c0e682a2d6633c05dade6721c9de93230448
4
- data.tar.gz: 5cc307793dd61b6337868ab712ee29dd3b5f6254890fb0c640ee6325c8acec56
3
+ metadata.gz: c2ef603590ea0fcf32bca6ced461fc2422f27df88a86cd9344f5857d91b05cb7
4
+ data.tar.gz: 1e36d7a8d9060f082351f34e2c1159e01e858d09887e74c51cadb847c1624b30
5
5
  SHA512:
6
- metadata.gz: 0b22e4c9144c0ae5a7fc730c93843f6ef5d0c64c25f2e89279b0ea3bb39de22e892bf959e0a0bae316c80ea1a307a1d2b5d59b2a5a13b4453a252be7e440fbe2
7
- data.tar.gz: 5785cfc520f58a32f477a447ad588b2b01809dea903ba9afe768fa9cb5eb2c2e9f39a28fc175e52ea817729c056dc31d33199b938e81747f0103013ce6538dc9
6
+ metadata.gz: 32a07e2b32aae8ee08af16a816ac3604cb14018246b81777379edcda7a21e258f23f4125c89c97b4eb95faab28e9cda53a42a1f1b59e7f519216c31ce1b3dcc7
7
+ data.tar.gz: d741e7dc7de4ba3e52b1dcc35fec886ddbf03d909b176eb0c54f9023e1e910aa01e8dcab1675190a457bbbe2d42f90fd4bc17cf96bcbc9ac6500c4100bfe2a2c
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.250
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. Valid values: `unable_to_find_station`, `unable_to_find_partner`, `unable_to_validate_signature`, `decrypt_fail`, `file_save_fail`, `success`
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. Valid values: `send_failed`, `send_success`, `send_no_mdn`
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 ]`.
@@ -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. Valid values: `unable_to_find_station`, `unable_to_find_partner`, `unable_to_validate_signature`, `decrypt_fail`, `file_save_fail`, `success`
42
+ # string - Result of processing.
43
43
  def processing_result
44
44
  @attributes[:processing_result]
45
45
  end
@@ -34,7 +34,7 @@ module Files
34
34
  @attributes[:activity_log]
35
35
  end
36
36
 
37
- # string - Result of processing. Valid values: `send_failed`, `send_success`, `send_no_mdn`
37
+ # string - Result of processing.
38
38
  def processing_result
39
39
  @attributes[:processing_result]
40
40
  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.250
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-27 00:00:00.000000000 Z
11
+ date: 2022-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable