files.com 1.0.285 → 1.0.287

Sign up to get free protection for your applications and to get access to all the features.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.285
1
+ 1.0.287
package/docs/Errors.md CHANGED
@@ -146,6 +146,7 @@ These errors are derived from the error groups listed above.
146
146
  ### NotFound_PlanNotFoundError
147
147
  ### NotFound_SiteNotFoundError
148
148
  ### NotFound_UserNotFoundError
149
+ ### ProcessingFailure_AutomationCannotBeRunManuallyError
149
150
  ### ProcessingFailure_BundleOnlyAllowsPreviewsError
150
151
  ### ProcessingFailure_BundleOperationRequiresSubfolderError
151
152
  ### ProcessingFailure_CouldNotCreateParentError
@@ -180,6 +181,7 @@ These errors are derived from the error groups listed above.
180
181
  ### ProcessingFailure_SubfolderLockedError
181
182
  ### ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError
182
183
  ### ProcessingFailure_UpdatesNotAllowedForRemotesError
184
+ ### RateLimited_DuplicateShareRecipientError
183
185
  ### RateLimited_ReauthenticationRateLimitedError
184
186
  ### RateLimited_TooManyConcurrentRequestsError
185
187
  ### RateLimited_TooManyLoginAttemptsError
@@ -157,6 +157,21 @@ await Automation.create({
157
157
  * `recurring_day` (int64): If trigger type is `daily`, this specifies a day number to run in one of the supported intervals: `week`, `month`, `quarter`, `year`.
158
158
  * `automation` (string): Required - Automation type
159
159
 
160
+ ---
161
+
162
+ ## Manually run automation
163
+
164
+ ```
165
+ const [automation] = await Automation.list()
166
+
167
+ await automation.manual_run()
168
+ ```
169
+
170
+ ### Parameters
171
+
172
+ * `id` (int64): Required - Automation ID.
173
+
174
+
160
175
  ---
161
176
 
162
177
  ## Update Automation