files.com 1.1.683 → 1.1.685

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: 5ed47796e505dddf19405cf5eafb106a333029fbfce94d3b8303cb7ef375240a
4
- data.tar.gz: e078917468a41070b39145b1fd483aa9bcb150686c82b92e8d0ee8ad8cb5094f
3
+ metadata.gz: 7a1c779ef2280c7391800bb0bc757e7add1959ac72f876f5be1a7de272a3710f
4
+ data.tar.gz: 832f2c325448db3d0394c8237a14b3df803ac53ff99e685f92b62b0a0b0a1b45
5
5
  SHA512:
6
- metadata.gz: 51ffcb02734ebd77e4fc43645e9283cd3281b66929d1c4d3b6533df0bd69b15c6e96ef27799223fb891503ee08dd3ff26c4f77e07cda330f2324a8431e465630
7
- data.tar.gz: 0f655e22b02716d6971ceae493b562bc939f04660b9d347cf9337db7b240fdf2326284174c2bb273b4aaf12726373840a89999af34ae3b3ece2970b8c29cb452
6
+ metadata.gz: dfc0415086f5dabe2ab8eadc5860b3e8a7a65b517835dce83ab0e370238a1737a213d25d43830e57d885c48e646aa26b2c591256e5795b5d4186c225a1544180
7
+ data.tar.gz: d457913929cff346442c151dff3c9129a7e2da39112c9b674e209fc706f081f3011ca1c6fbcd26aa5d3de3e19446ff1c68ba16151d8a986d0de662bcd09c40c8
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.683
1
+ 1.1.685
data/docs/automation.md CHANGED
@@ -268,6 +268,19 @@ Files::Automation.create(
268
268
  * `workspace_id` (int64): Workspace ID
269
269
 
270
270
 
271
+ ---
272
+
273
+ ## Upgrade a legacy Automation to Automation v2
274
+
275
+ ```
276
+ Files::Automation.upgrade(id)
277
+ ```
278
+
279
+ ### Parameters
280
+
281
+ * `id` (int64): Required - Automation ID.
282
+
283
+
271
284
  ---
272
285
 
273
286
  ## Manually Run Automation. v2 Automations require Site or Workspace Admin permission
@@ -377,6 +390,21 @@ Files::Automation.delete(id)
377
390
  * `id` (int64): Required - Automation ID.
378
391
 
379
392
 
393
+ ---
394
+
395
+ ## Upgrade a legacy Automation to Automation v2
396
+
397
+ ```
398
+ automation = Files::Automation.find(id)
399
+
400
+ automation.upgrade
401
+ ```
402
+
403
+ ### Parameters
404
+
405
+ * `id` (int64): Required - Automation ID.
406
+
407
+
380
408
  ---
381
409
 
382
410
  ## Manually Run Automation. v2 Automations require Site or Workspace Admin permission