files.com 1.2.69 → 1.2.71

Sign up to get free protection for your applications and to get access to all the features.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.69
1
+ 1.2.71
package/docs/Errors.md CHANGED
@@ -73,7 +73,6 @@ These errors are derived from the error groups listed above.
73
73
  ### BadRequest_InvalidUploadPartSizeError
74
74
  ### BadRequest_MethodNotAllowedError
75
75
  ### BadRequest_NoValidInputParamsError
76
- ### BadRequest_OperationOnNonScimResourceError
77
76
  ### BadRequest_PartNumberTooLargeError
78
77
  ### BadRequest_PathCannotHaveTrailingWhitespaceError
79
78
  ### BadRequest_ReauthenticationNeededFieldsError
@@ -195,6 +194,7 @@ These errors are derived from the error groups listed above.
195
194
  ### ProcessingFailure_UpdatesNotAllowedForRemotesError
196
195
  ### RateLimited_DuplicateShareRecipientError
197
196
  ### RateLimited_ReauthenticationRateLimitedError
197
+ ### RateLimited_TooManyConcurrentLoginsError
198
198
  ### RateLimited_TooManyConcurrentRequestsError
199
199
  ### RateLimited_TooManyLoginAttemptsError
200
200
  ### RateLimited_TooManyRequestsError
@@ -10,7 +10,6 @@
10
10
  "created_at": "2000-01-01T01:00:00Z",
11
11
  "runtime": 1.0,
12
12
  "status": "success",
13
- "run_stage": "planning",
14
13
  "successful_operations": 1,
15
14
  "failed_operations": 1,
16
15
  "status_messages_url": "https://www.example.com/log_file.txt"
@@ -23,7 +22,6 @@
23
22
  * `created_at` (date-time): Automation run start date/time.
24
23
  * `runtime` (double): Automation run runtime.
25
24
  * `status` (string): The success status of the AutomationRun. One of `running`, `success`, `partial_failure`, or `failure`.
26
- * `run_stage` (string): The stage currently being executed in the execution environment. One of `queued_for_planning`, `planning`, `queued_for_execution`, `executing`, or `finished`.
27
25
  * `successful_operations` (int64): Count of successful operations.
28
26
  * `failed_operations` (int64): Count of failed operations.
29
27
  * `status_messages_url` (string): Link to status messages log file.
@@ -42,10 +42,10 @@
42
42
  * `query_user_id` (string): Return results that are actions performed by the user indiciated by this User ID
43
43
  * `query_file_id` (string): Return results that are file actions related to the file indicated by this File ID
44
44
  * `query_parent_id` (string): Return results that are file actions inside the parent folder specified by this folder ID
45
- * `query_path` (string): Return results that are file actions related to this path.
46
- * `query_folder` (string): Return results that are file actions related to files or folders inside this folder path.
47
- * `query_src` (string): Return results that are file moves originating from this path.
48
- * `query_destination` (string): Return results that are file moves with this path as destination.
45
+ * `query_path` (string): Return results that are file actions related to paths matching this pattern.
46
+ * `query_folder` (string): Return results that are file actions related to files or folders inside folder paths matching this pattern.
47
+ * `query_src` (string): Return results that are file moves originating from paths matching this pattern.
48
+ * `query_destination` (string): Return results that are file moves with paths matching this pattern as destination.
49
49
  * `query_ip` (string): Filter results by this IP address.
50
50
  * `query_username` (string): Filter results by this username.
51
51
  * `query_failure_type` (string): If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values: `expired_trial`, `account_overdue`, `locked_out`, `ip_mismatch`, `password_mismatch`, `site_mismatch`, `username_not_found`, `none`, `no_ftp_permission`, `no_web_permission`, `no_directory`, `errno_enoent`, `no_sftp_permission`, `no_dav_permission`, `no_restapi_permission`, `key_mismatch`, `region_mismatch`, `expired_access`, `desktop_ip_mismatch`, `desktop_api_key_not_used_quickly_enough`, `disabled`, `country_mismatch`, `insecure_ftp`, `insecure_cipher`, `rate_limited`
@@ -114,10 +114,10 @@ await HistoryExport.create({
114
114
  * `query_user_id` (string): Return results that are actions performed by the user indiciated by this User ID
115
115
  * `query_file_id` (string): Return results that are file actions related to the file indicated by this File ID
116
116
  * `query_parent_id` (string): Return results that are file actions inside the parent folder specified by this folder ID
117
- * `query_path` (string): Return results that are file actions related to this path.
118
- * `query_folder` (string): Return results that are file actions related to files or folders inside this folder path.
119
- * `query_src` (string): Return results that are file moves originating from this path.
120
- * `query_destination` (string): Return results that are file moves with this path as destination.
117
+ * `query_path` (string): Return results that are file actions related to paths matching this pattern.
118
+ * `query_folder` (string): Return results that are file actions related to files or folders inside folder paths matching this pattern.
119
+ * `query_src` (string): Return results that are file moves originating from paths matching this pattern.
120
+ * `query_destination` (string): Return results that are file moves with paths matching this pattern as destination.
121
121
  * `query_ip` (string): Filter results by this IP address.
122
122
  * `query_username` (string): Filter results by this username.
123
123
  * `query_failure_type` (string): If searching for Histories about login failures, this parameter restricts results to failures of this specific type. Valid values: `expired_trial`, `account_overdue`, `locked_out`, `ip_mismatch`, `password_mismatch`, `site_mismatch`, `username_not_found`, `none`, `no_ftp_permission`, `no_web_permission`, `no_directory`, `errno_enoent`, `no_sftp_permission`, `no_dav_permission`, `no_restapi_permission`, `key_mismatch`, `region_mismatch`, `expired_access`, `desktop_ip_mismatch`, `desktop_api_key_not_used_quickly_enough`, `disabled`, `country_mismatch`, `insecure_ftp`, `insecure_cipher`, `rate_limited`