files.com 1.1.571 → 1.1.572

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15421db64239d65109544a54822c8adcdd8ee089b3517445cd44db670b4e6708
4
- data.tar.gz: 58c8d4cb6c8873fe415d48b10d384bb73af8fc25eaae26a08a3cd7a0c5abb8a6
3
+ metadata.gz: fae52313f8c59741e02bf5251f55c73dc92150721cef24360e0b1f0335c1449d
4
+ data.tar.gz: 5ba04a1a1e7ba06c418799813add8cfd09cd098aea0cc9d31bf6273d6cd37598
5
5
  SHA512:
6
- metadata.gz: 0d4b1ca39c4280ea32b5bd25050ad544eca8baf8883dc07be3c720f93d0166a826dadddb476ae5b1b9d8c0e87433e4dffeb139db35c8fdc384e02d9f6a2c25d6
7
- data.tar.gz: f7986e3239c769d5a1ebb41df7b50fe527210b813afd619594bd64191b8eb640334d6f05a664c524384209b831f316aec4bf17cadd9e0ce1ebca001623b90b4c
6
+ metadata.gz: f827adda11c84316350562698311b039bc5bf18321add1d8f518cf8253a5c371ea14b062a957bd83d338b883e4e6d45d6660dffd171384102f36c4c629a76ec5
7
+ data.tar.gz: f4ae5886a1ecb17aa912d2319360d5341f366da816de657fab5dfc37f55d062c855a45c4ec3175ba678ba8af9dcf6fe1f5c3b7d512061028e5c2107dbc80f629
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.571
1
+ 1.1.572
data/docs/automation.md CHANGED
@@ -130,7 +130,7 @@
130
130
  * `source` (string): Source path/glob. See Automation docs for exact description, but this is used to filter for files in the `path` to find files to operate on. Supports globs, except on remote mounts.
131
131
  * `legacy_sync_ids` (array(int64)): IDs of remote sync folder behaviors to run by this Automation
132
132
  * `sync_ids` (array(int64)): IDs of syncs to run by this Automation. This is the new way to specify syncs, and it is recommended to use this instead of `legacy_sync_ids`.
133
- * `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
133
+ * `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy
134
134
  * `trigger` (string): How this automation is triggered to run.
135
135
  * `user_id` (int64): User ID of the Automation's creator.
136
136
  * `user_ids` (array(int64)): IDs of Users for the Automation (i.e. who to Request File from)
@@ -246,7 +246,7 @@ Files::Automation.create(
246
246
  * `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.
247
247
  * `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.
248
248
  * `trigger` (string): How this automation is triggered to run.
249
- * `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
249
+ * `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy
250
250
  * `value` (object): A Hash of attributes specific to the automation type.
251
251
  * `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`.
252
252
  * `automation` (string): Required - Automation type
@@ -340,7 +340,7 @@ Files::Automation.update(id,
340
340
  * `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.
341
341
  * `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.
342
342
  * `trigger` (string): How this automation is triggered to run.
343
- * `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
343
+ * `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy
344
344
  * `value` (object): A Hash of attributes specific to the automation type.
345
345
  * `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`.
346
346
  * `automation` (string): Automation type
@@ -450,7 +450,7 @@ automation.update(
450
450
  * `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.
451
451
  * `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.
452
452
  * `trigger` (string): How this automation is triggered to run.
453
- * `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
453
+ * `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy
454
454
  * `value` (object): A Hash of attributes specific to the automation type.
455
455
  * `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`.
456
456
  * `automation` (string): Automation type
@@ -315,7 +315,7 @@ module Files
315
315
  @attributes[:sync_ids] = value
316
316
  end
317
317
 
318
- # array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
318
+ # array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy
319
319
  def trigger_actions
320
320
  @attributes[:trigger_actions]
321
321
  end
@@ -419,7 +419,7 @@ module Files
419
419
  # 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.
420
420
  # 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.
421
421
  # trigger - string - How this automation is triggered to run.
422
- # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
422
+ # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy
423
423
  # value - object - A Hash of attributes specific to the automation type.
424
424
  # 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`.
425
425
  # automation - string - Automation type
@@ -558,7 +558,7 @@ module Files
558
558
  # 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.
559
559
  # 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.
560
560
  # trigger - string - How this automation is triggered to run.
561
- # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
561
+ # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy
562
562
  # value - object - A Hash of attributes specific to the automation type.
563
563
  # 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`.
564
564
  # automation (required) - string - Automation type
@@ -638,7 +638,7 @@ module Files
638
638
  # 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.
639
639
  # 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.
640
640
  # trigger - string - How this automation is triggered to run.
641
- # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, archived_delete, copy
641
+ # trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, copy, move, archived_delete, update, read, destroy
642
642
  # value - object - A Hash of attributes specific to the automation type.
643
643
  # 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`.
644
644
  # automation - string - Automation type
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.571"
4
+ VERSION = "1.1.572"
5
5
  end
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.1.571
4
+ version: 1.1.572
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-22 00:00:00.000000000 Z
11
+ date: 2026-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable