files.com 1.1.81 → 1.1.82

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: 5d27978c06bf5d25644b5f45c96068090fc1f65813785371d780eb683d075d21
4
- data.tar.gz: b0b1fa1c7f58c6e93a080059005a88958eb93938530fced6c533e903e4bf29f1
3
+ metadata.gz: 4d4e66c22b0d20c44a7a53a0466ccae5c927825524f8e70da5f23c5df93d537a
4
+ data.tar.gz: 667d274d4b29e015316f7f2541d55cc2ac415ead6a61104e288d738b1210782a
5
5
  SHA512:
6
- metadata.gz: e8b22ae9788e5f1d47e9e555b901341b6fde1ce49d1af88ae08ec0b64c27f5cf8be62d68ac808f832b2e422760253544baeee912198bd02a6faac666ad62b4fc
7
- data.tar.gz: 4256d3724bf90b0b753294e4d7f05d874044f82ec6557b486e2364fdfbf59ca55794a34b82e9ad00e6c9e1d9fac7b795b62cbe8f3c8b28b774c5918e84aece16
6
+ metadata.gz: 54d0b03228a45ce0e591ea5e5f43410ecf4f455462d4e46678e95b292bcbe335494cda075481e9e4b3ecc068c218c8769a18e8314a5fe02c1bb739b4fb1be0f2
7
+ data.tar.gz: 3cb4ad86e39f8044a66061caf4709db0bf6fb540d442276cfa7c692be9e306c0d306797ebcdc4ec80345b9936bf4228c424e05f4deba195bcc77f81cd78330b1
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.81
1
+ 1.1.82
data/docs/behavior.md CHANGED
@@ -25,7 +25,7 @@
25
25
  * `name` (string): Name for this behavior.
26
26
  * `description` (string): Description for this behavior.
27
27
  * `value` (object): Settings for this behavior. See the section above for an example value to provide here. Formatting is different for each Behavior type. May be sent as nested JSON or a single JSON-encoded string. If using XML encoding for the API call, this data must be sent as a JSON-encoded string.
28
- * `disable_parent_folder_behavior` (boolean): If true, the parent folder's behavior will be disabled for this folder.
28
+ * `disable_parent_folder_behavior` (boolean): If true, the parent folder's behavior will be disabled for this folder and its children.
29
29
  * `recursive` (boolean): Is behavior recursive?
30
30
  * `attachment_file` (file): Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
31
31
  * `attachment_delete` (boolean): If true, will delete the file stored in attachment
@@ -106,7 +106,7 @@ Files::Behavior.create(
106
106
 
107
107
  * `value` (string): The value of the folder behavior. Can be an integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
108
108
  * `attachment_file` (file): Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
109
- * `disable_parent_folder_behavior` (boolean): If true, the parent folder's behavior will be disabled for this folder.
109
+ * `disable_parent_folder_behavior` (boolean): If true, the parent folder's behavior will be disabled for this folder and its children.
110
110
  * `recursive` (boolean): Is behavior recursive?
111
111
  * `name` (string): Name for this behavior.
112
112
  * `description` (string): Description for this behavior.
@@ -161,7 +161,7 @@ Files::Behavior.update(id,
161
161
  * `id` (int64): Required - Behavior ID.
162
162
  * `value` (string): The value of the folder behavior. Can be an integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
163
163
  * `attachment_file` (file): Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
164
- * `disable_parent_folder_behavior` (boolean): If true, the parent folder's behavior will be disabled for this folder.
164
+ * `disable_parent_folder_behavior` (boolean): If true, the parent folder's behavior will be disabled for this folder and its children.
165
165
  * `recursive` (boolean): Is behavior recursive?
166
166
  * `name` (string): Name for this behavior.
167
167
  * `description` (string): Description for this behavior.
@@ -207,7 +207,7 @@ behavior.update(
207
207
  * `id` (int64): Required - Behavior ID.
208
208
  * `value` (string): The value of the folder behavior. Can be an integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
209
209
  * `attachment_file` (file): Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
210
- * `disable_parent_folder_behavior` (boolean): If true, the parent folder's behavior will be disabled for this folder.
210
+ * `disable_parent_folder_behavior` (boolean): If true, the parent folder's behavior will be disabled for this folder and its children.
211
211
  * `recursive` (boolean): Is behavior recursive?
212
212
  * `name` (string): Name for this behavior.
213
213
  * `description` (string): Description for this behavior.
@@ -72,7 +72,7 @@ module Files
72
72
  @attributes[:value] = value
73
73
  end
74
74
 
75
- # boolean - If true, the parent folder's behavior will be disabled for this folder.
75
+ # boolean - If true, the parent folder's behavior will be disabled for this folder and its children.
76
76
  def disable_parent_folder_behavior
77
77
  @attributes[:disable_parent_folder_behavior]
78
78
  end
@@ -111,7 +111,7 @@ module Files
111
111
  # Parameters:
112
112
  # value - string - The value of the folder behavior. Can be an integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
113
113
  # attachment_file - file - Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
114
- # disable_parent_folder_behavior - boolean - If true, the parent folder's behavior will be disabled for this folder.
114
+ # disable_parent_folder_behavior - boolean - If true, the parent folder's behavior will be disabled for this folder and its children.
115
115
  # recursive - boolean - Is behavior recursive?
116
116
  # name - string - Name for this behavior.
117
117
  # description - string - Description for this behavior.
@@ -227,7 +227,7 @@ module Files
227
227
  # Parameters:
228
228
  # value - string - The value of the folder behavior. Can be an integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
229
229
  # attachment_file - file - Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
230
- # disable_parent_folder_behavior - boolean - If true, the parent folder's behavior will be disabled for this folder.
230
+ # disable_parent_folder_behavior - boolean - If true, the parent folder's behavior will be disabled for this folder and its children.
231
231
  # recursive - boolean - Is behavior recursive?
232
232
  # name - string - Name for this behavior.
233
233
  # description - string - Description for this behavior.
@@ -269,7 +269,7 @@ module Files
269
269
  # Parameters:
270
270
  # value - string - The value of the folder behavior. Can be an integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
271
271
  # attachment_file - file - Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
272
- # disable_parent_folder_behavior - boolean - If true, the parent folder's behavior will be disabled for this folder.
272
+ # disable_parent_folder_behavior - boolean - If true, the parent folder's behavior will be disabled for this folder and its children.
273
273
  # recursive - boolean - Is behavior recursive?
274
274
  # name - string - Name for this behavior.
275
275
  # description - string - Description for this behavior.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.81"
4
+ VERSION = "1.1.82"
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.81
4
+ version: 1.1.82
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-21 00:00:00.000000000 Z
11
+ date: 2024-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable