files.com 1.0.272 → 1.0.273

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: 3c5c18b24419dd3e23b18a419cb386aca97bc5e5faa113a0926945704c1868c2
4
- data.tar.gz: cfbf609b263c4deecd62bc185f8d7959a0e5a8b92805012f7a04591d093b2d18
3
+ metadata.gz: e4444cd6bf040d1d2a4bd4f6c3f1a32ce250603c43ac4d0a50319fa8e55f04d2
4
+ data.tar.gz: 7dbf653e73f7acd9f9f37104f6b46d3a85cca63598c940d509bef79f17f53496
5
5
  SHA512:
6
- metadata.gz: f0c5397194a276682561be92de240c91ecd67ebe9582d4162f3d4937fb27d08f3139a57d3fa3d432a838321117e40cc77cac527baf3623d65a52dda7ef1f91f1
7
- data.tar.gz: 4824680b6b6d236043d70fa0d2bf40087d4b43078a7588dba580fedf45b296d78b1882fcd94fbdde7ca8bac37ed5e7baaad0b2f2a820293dfc5c3795ca83ea26
6
+ metadata.gz: 46e36688b0aa360fe09f7411c5cc8df1741546e1a948deed39ebc5255b6e4639224740f9f915e00216d257ae54215225a7c8f91e456fc72c04435a676d1ccdc3
7
+ data.tar.gz: 36ca33592098826113554cac96e7235ae75d98c470b197d514af2d20173cbfe4979a2d9342256c6c8ee401ce2c7d29b8ee5770d46e9a7f930f0e3355ccebcda8
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.272
1
+ 1.0.273
data/docs/automation.md CHANGED
@@ -69,7 +69,6 @@
69
69
  * `trigger_actions` (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, copy
70
70
  * `value` (object): A Hash of attributes specific to the automation type.
71
71
  * `destination` (string): DEPRECATED: Destination Path. Use `destinations` instead.
72
- * `cloned_from` (int64): Set to the ID of automation used a clone template. For
73
72
 
74
73
 
75
74
  ---
@@ -128,8 +127,7 @@ Files::Automation.create(
128
127
  trigger: "realtime",
129
128
  trigger_actions: "[ \"create\" ]",
130
129
  value: "{\"limit\": \"1\"}",
131
- automation: "create_folder",
132
- cloned_from: 1
130
+ automation: "create_folder"
133
131
  )
134
132
  ```
135
133
 
@@ -152,7 +150,6 @@ Files::Automation.create(
152
150
  * `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, copy
153
151
  * `value` (object): A Hash of attributes specific to the automation type.
154
152
  * `automation` (string): Required - Automation type
155
- * `cloned_from` (int64): Set to the ID of automation used a clone template. For
156
153
 
157
154
 
158
155
  ---
data/docs/file.md CHANGED
@@ -26,8 +26,8 @@ may places where a Ruby File object can be used.
26
26
  "id": 1,
27
27
  "status": "complete",
28
28
  "download_uri": "https://mysite.files.com/...",
29
- "type": "complete",
30
- "size": 1024
29
+ "type": "image",
30
+ "size": "large"
31
31
  }
32
32
  }
33
33
  ```
data/docs/folder.md CHANGED
@@ -28,8 +28,8 @@ Files::Dir is an alias of Files::Folder
28
28
  "id": 1,
29
29
  "status": "complete",
30
30
  "download_uri": "https://mysite.files.com/...",
31
- "type": "complete",
32
- "size": 1024
31
+ "type": "image",
32
+ "size": "large"
33
33
  }
34
34
  }
35
35
  ```
data/docs/preview.md CHANGED
@@ -7,13 +7,13 @@
7
7
  "id": 1,
8
8
  "status": "complete",
9
9
  "download_uri": "https://mysite.files.com/...",
10
- "type": "complete",
11
- "size": 1024
10
+ "type": "image",
11
+ "size": "large"
12
12
  }
13
13
  ```
14
14
 
15
15
  * `id` (int64): Preview ID
16
16
  * `status` (string): Preview status. Can be invalid, not_generated, generating, complete, or file_too_large
17
17
  * `download_uri` (string): Link to download preview
18
- * `type` (string): Preview status. Can be invalid, not_generated, generating, complete, or file_too_large
19
- * `size` (int64): Preview size
18
+ * `type` (string): Preview type. Can be image, pdf, pdf_native, video, or audio
19
+ * `size` (string): Preview size
@@ -207,15 +207,6 @@ module Files
207
207
  @attributes[:destination] = value
208
208
  end
209
209
 
210
- # int64 - Set to the ID of automation used a clone template. For
211
- def cloned_from
212
- @attributes[:cloned_from]
213
- end
214
-
215
- def cloned_from=(value)
216
- @attributes[:cloned_from] = value
217
- end
218
-
219
210
  # Parameters:
220
211
  # source - string - Source Path
221
212
  # destination - string - DEPRECATED: Destination Path. Use `destinations` instead.
@@ -348,7 +339,6 @@ module Files
348
339
  # 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, copy
349
340
  # value - object - A Hash of attributes specific to the automation type.
350
341
  # automation (required) - string - Automation type
351
- # cloned_from - int64 - Set to the ID of automation used a clone template. For
352
342
  def self.create(params = {}, options = {})
353
343
  raise InvalidParameterError.new("Bad parameter: source must be an String") if params.dig(:source) and !params.dig(:source).is_a?(String)
354
344
  raise InvalidParameterError.new("Bad parameter: destination must be an String") if params.dig(:destination) and !params.dig(:destination).is_a?(String)
@@ -366,7 +356,6 @@ module Files
366
356
  raise InvalidParameterError.new("Bad parameter: trigger_actions must be an Array") if params.dig(:trigger_actions) and !params.dig(:trigger_actions).is_a?(Array)
367
357
  raise InvalidParameterError.new("Bad parameter: value must be an Hash") if params.dig(:value) and !params.dig(:value).is_a?(Hash)
368
358
  raise InvalidParameterError.new("Bad parameter: automation must be an String") if params.dig(:automation) and !params.dig(:automation).is_a?(String)
369
- raise InvalidParameterError.new("Bad parameter: cloned_from must be an Integer") if params.dig(:cloned_from) and !params.dig(:cloned_from).is_a?(Integer)
370
359
  raise MissingParameterError.new("Parameter missing: automation") unless params.dig(:automation)
371
360
 
372
361
  response, options = Api.send_request("/automations", :post, params, options)
@@ -24,12 +24,12 @@ module Files
24
24
  @attributes[:download_uri]
25
25
  end
26
26
 
27
- # string - Preview status. Can be invalid, not_generated, generating, complete, or file_too_large
27
+ # string - Preview type. Can be image, pdf, pdf_native, video, or audio
28
28
  def type
29
29
  @attributes[:type]
30
30
  end
31
31
 
32
- # int64 - Preview size
32
+ # string - Preview size
33
33
  def size
34
34
  @attributes[:size]
35
35
  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.0.272
4
+ version: 1.0.273
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-07 00:00:00.000000000 Z
11
+ date: 2022-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable