files.com 1.2.227 → 1.2.229

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.
package/README.md CHANGED
@@ -565,6 +565,7 @@ Error
565
565
  | `NotAuthorized_BillingOrSiteAdminPermissionRequiredError`| `NotAuthorizedError` |
566
566
  | `NotAuthorized_BillingPermissionRequiredError`| `NotAuthorizedError` |
567
567
  | `NotAuthorized_BundleMaximumUsesReachedError`| `NotAuthorizedError` |
568
+ | `NotAuthorized_BundlePermissionRequiredError`| `NotAuthorizedError` |
568
569
  | `NotAuthorized_CannotLoginWhileUsingKeyError`| `NotAuthorizedError` |
569
570
  | `NotAuthorized_CantActForOtherUserError`| `NotAuthorizedError` |
570
571
  | `NotAuthorized_ContactAdminForPasswordChangeHelpError`| `NotAuthorizedError` |
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.227
1
+ 1.2.229
package/docs/Errors.md CHANGED
@@ -116,6 +116,7 @@ These errors are derived from the error groups listed above.
116
116
  ### NotAuthorized_BillingOrSiteAdminPermissionRequiredError
117
117
  ### NotAuthorized_BillingPermissionRequiredError
118
118
  ### NotAuthorized_BundleMaximumUsesReachedError
119
+ ### NotAuthorized_BundlePermissionRequiredError
119
120
  ### NotAuthorized_CannotLoginWhileUsingKeyError
120
121
  ### NotAuthorized_CantActForOtherUserError
121
122
  ### NotAuthorized_ContactAdminForPasswordChangeHelpError
@@ -107,7 +107,7 @@
107
107
  * `last_modified_at` (date-time): Time when automation was last modified. Does not change for name or description updates.
108
108
  * `legacy_folder_matching` (boolean): If `true`, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used.
109
109
  * `name` (string): Name for this automation.
110
- * `overwrite_files` (boolean): If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten if they appear to be the same file size as the newly incoming file. Use the `always_overwrite_size_matching_files` option in conjunction with `overwrite_files` to override this behavior and overwrite files no matter what.
110
+ * `overwrite_files` (boolean): If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the `always_overwrite_size_matching_files` option in conjunction with `overwrite_files` to override this behavior and overwrite files no matter what.
111
111
  * `path` (string): Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
112
112
  * `path_time_zone` (string): Timezone to use when rendering timestamps in paths.
113
113
  * `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`.
@@ -223,7 +223,7 @@ await Automation.create({
223
223
  * `ignore_locked_folders` (boolean): If true, the Lock Folders behavior will be disregarded for automated actions.
224
224
  * `legacy_folder_matching` (boolean): DEPRECATED: If `true`, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used.
225
225
  * `name` (string): Name for this automation.
226
- * `overwrite_files` (boolean): If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten if they appear to be the same file size as the newly incoming file. Use the `always_overwrite_size_matching_files` option in conjunction with `overwrite_files` to override this behavior and overwrite files no matter what.
226
+ * `overwrite_files` (boolean): If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the `always_overwrite_size_matching_files` option in conjunction with `overwrite_files` to override this behavior and overwrite files no matter what.
227
227
  * `path_time_zone` (string): Timezone to use when rendering timestamps in paths.
228
228
  * `retry_on_failure_interval_in_minutes` (int64): If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
229
229
  * `retry_on_failure_number_of_attempts` (int64): If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.
@@ -313,7 +313,7 @@ await automation.update({
313
313
  * `ignore_locked_folders` (boolean): If true, the Lock Folders behavior will be disregarded for automated actions.
314
314
  * `legacy_folder_matching` (boolean): DEPRECATED: If `true`, use the legacy behavior for this automation, where it can operate on folders in addition to just files. This behavior no longer works and should not be used.
315
315
  * `name` (string): Name for this automation.
316
- * `overwrite_files` (boolean): If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten if they appear to be the same file size as the newly incoming file. Use the `always_overwrite_size_matching_files` option in conjunction with `overwrite_files` to override this behavior and overwrite files no matter what.
316
+ * `overwrite_files` (boolean): If true, existing files will be overwritten with new files on Move/Copy automations. Note: by default files will not be overwritten on Copy automations if they appear to be the same file size as the newly incoming file. Use the `always_overwrite_size_matching_files` option in conjunction with `overwrite_files` to override this behavior and overwrite files no matter what.
317
317
  * `path_time_zone` (string): Timezone to use when rendering timestamps in paths.
318
318
  * `retry_on_failure_interval_in_minutes` (int64): If the Automation fails, retry at this interval (in minutes). Acceptable values are 5 through 1440 (one day). Set to null to disable.
319
319
  * `retry_on_failure_number_of_attempts` (int64): If the Automation fails, retry at most this many times. Maximum allowed value: 10. Set to null to disable.