files.com 1.0.270 → 1.0.273

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c86065a517047b94ebe1548acf7f6781638abe2a1ccb9052460ffb65b653cf8
4
- data.tar.gz: 992a51feeb6a2704e592981dcda9bd063786743486f93efc2bc68bf81bd9d5b9
3
+ metadata.gz: e4444cd6bf040d1d2a4bd4f6c3f1a32ce250603c43ac4d0a50319fa8e55f04d2
4
+ data.tar.gz: 7dbf653e73f7acd9f9f37104f6b46d3a85cca63598c940d509bef79f17f53496
5
5
  SHA512:
6
- metadata.gz: 89aa1ce6d1fcec9336b914850fa46b8d09fd835a9b432d30984af793378342e0ba3d2195e9160887a10a3a34c19190c1348f9a2c365786d27913f15ed6c4cd22
7
- data.tar.gz: fe9c3fd4bfc57a844c6fe9da1e53cde62155cc9f3faeea6fdd94f87f34e779835e5b0195d736d91c881be5b470dcc381f671654d3edac2ee8dd763859016b7b6
6
+ metadata.gz: 46e36688b0aa360fe09f7411c5cc8df1741546e1a948deed39ebc5255b6e4639224740f9f915e00216d257ae54215225a7c8f91e456fc72c04435a676d1ccdc3
7
+ data.tar.gz: 36ca33592098826113554cac96e7235ae75d98c470b197d514af2d20173cbfe4979a2d9342256c6c8ee401ce2c7d29b8ee5770d46e9a7f930f0e3355ccebcda8
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.270
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
@@ -85,6 +85,7 @@ module Files
85
85
  class RequestParamsContainInvalidCharacterError < BadRequestError; end
86
86
  class RequestParamsInvalidError < BadRequestError; end
87
87
  class RequestParamsRequiredError < BadRequestError; end
88
+ class SearchAllOnChildPathError < BadRequestError; end
88
89
  class UnsupportedCurrencyError < BadRequestError; end
89
90
  class UnsupportedHttpResponseFormatError < BadRequestError; end
90
91
  class UnsupportedMediaTypeError < BadRequestError; end
@@ -192,6 +193,7 @@ module Files
192
193
 
193
194
  class RateLimitedError < APIError; end
194
195
  class ReauthenticationRateLimitedError < RateLimitedError; end
196
+ class TooManyConcurrentRequestsError < RateLimitedError; end
195
197
  class TooManyLoginAttemptsError < RateLimitedError; end
196
198
  class TooManyRequestsError < RateLimitedError; end
197
199
 
@@ -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.270
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-04 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