files.com 1.0.153 → 1.0.158

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: 28523a4c4682607284945a68a641740c5aca7296198a31c433b52b581bd85024
4
- data.tar.gz: f4963e7b92698c9e45e0ee6728d290b37d3e93afc9b0142ba6b735bb4178ba3b
3
+ metadata.gz: d8a100f45b1174b6eae8c341db6d5c9b098c704a3b5cdcfa0c22ecd3e61d33b5
4
+ data.tar.gz: af94c8541f7f85148844f955b9c19fe6729a9955f2902ffcb7ec9bb65c22f421
5
5
  SHA512:
6
- metadata.gz: e46d87ea687b2a4e392c635dc8f3ff90cff9ec2e0f31b5fdcc5a57c73246e7699031fca4f014905dbe5ac04cd1a30b9f51d68041dcd0d15311efc99d40df45c1
7
- data.tar.gz: 4330b4f76272d153b35d1329ebc875dace28a89c18298c67ae187c866ee4ad13987e932f7f2a060592d3d72d2dc167fb37d5fc95530753b925168d55d9267ac7
6
+ metadata.gz: 2b9f2a09ded08bb006c60baca0898c0ff4afebbcdca9d637803bcd2037c0b11f5a3c0e7fe558c2e6269ebefb91a741f968db117a9e343b40e4cf4eeab306abf8
7
+ data.tar.gz: af1d77a612e7938f275c12fe616b70dcfdbf34d78bff0f6464d12a44ef7d3f49b363b1750eca1b059582e0f95825d44ef0584a925e5d3892fc6c966adbb60f53
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.153
1
+ 1.0.158
data/docs/automation.md CHANGED
@@ -22,7 +22,6 @@
22
22
  "time_zone": "Eastern Time (US & Canada)"
23
23
  },
24
24
  "source": "",
25
- "destination": "",
26
25
  "destinations": [
27
26
  "destination"
28
27
  ],
@@ -52,7 +51,6 @@
52
51
  * `next_process_on` (string): If trigger is `daily`, date this automation will next run.
53
52
  * `schedule` (object): If trigger is `custom_schedule`, Custom schedule description for when the automation should be run.
54
53
  * `source` (string): Source Path
55
- * `destination` (string): DEPRECATED: Destination Path
56
54
  * `destinations` (string): Destination Path
57
55
  * `destination_replace_from` (string): If set, this string in the destination path will be replaced with the value in `destination_replace_to`.
58
56
  * `destination_replace_to` (string): If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
@@ -64,6 +62,7 @@
64
62
  * `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
65
63
  * `trigger_action_path` (string): If trigger is `action`, this is the path to watch for the specified trigger actions.
66
64
  * `value` (object): A Hash of attributes specific to the automation type.
65
+ * `destination` (string): DEPRECATED: Destination Path. Use `destinations` instead.
67
66
 
68
67
 
69
68
  ---
@@ -112,7 +111,6 @@ Files::Automation.find(id)
112
111
  Files::Automation.create(
113
112
  automation: "create_folder",
114
113
  source: "source",
115
- destination: "destination",
116
114
  destinations: "[\"folder_a/file_a.txt\", {\"folder_path\":\"folder_b\", \"file_path\":\"file_b.txt\"}, {\"folder_path\":\"folder_c\"}]",
117
115
  interval: "year",
118
116
  user_ids: [1,2],
@@ -129,7 +127,7 @@ Files::Automation.create(
129
127
 
130
128
  * `automation` (string): Required - Automation type
131
129
  * `source` (string): Source Path
132
- * `destination` (string): DEPRECATED: Destination Path
130
+ * `destination` (string): DEPRECATED: Destination Path. Use `destinations` instead.
133
131
  * `destinations` (array(string)): A list of String destination paths or Hash of folder_path and optional file_path.
134
132
  * `destination_replace_from` (string): If set, this string in the destination path will be replaced with the value in `destination_replace_to`.
135
133
  * `destination_replace_to` (string): If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
@@ -152,7 +150,6 @@ Files::Automation.create(
152
150
  Files::Automation.update(id,
153
151
  automation: "create_folder",
154
152
  source: "source",
155
- destination: "destination",
156
153
  destinations: "[\"folder_a/file_a.txt\", {\"folder_path\":\"folder_b\", \"file_path\":\"file_b.txt\"}, {\"folder_path\":\"folder_c\"}]",
157
154
  interval: "year",
158
155
  user_ids: [1,2],
@@ -170,7 +167,7 @@ Files::Automation.update(id,
170
167
  * `id` (int64): Required - Automation ID.
171
168
  * `automation` (string): Required - Automation type
172
169
  * `source` (string): Source Path
173
- * `destination` (string): DEPRECATED: Destination Path
170
+ * `destination` (string): DEPRECATED: Destination Path. Use `destinations` instead.
174
171
  * `destinations` (array(string)): A list of String destination paths or Hash of folder_path and optional file_path.
175
172
  * `destination_replace_from` (string): If set, this string in the destination path will be replaced with the value in `destination_replace_to`.
176
173
  * `destination_replace_to` (string): If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
@@ -208,7 +205,6 @@ automation = Files::Automation.list_for(path).first
208
205
  automation.update(
209
206
  automation: "create_folder",
210
207
  source: "source",
211
- destination: "destination",
212
208
  destinations: "[\"folder_a/file_a.txt\", {\"folder_path\":\"folder_b\", \"file_path\":\"file_b.txt\"}, {\"folder_path\":\"folder_c\"}]",
213
209
  interval: "year",
214
210
  user_ids: [1,2],
@@ -226,7 +222,7 @@ automation.update(
226
222
  * `id` (int64): Required - Automation ID.
227
223
  * `automation` (string): Required - Automation type
228
224
  * `source` (string): Source Path
229
- * `destination` (string): DEPRECATED: Destination Path
225
+ * `destination` (string): DEPRECATED: Destination Path. Use `destinations` instead.
230
226
  * `destinations` (array(string)): A list of String destination paths or Hash of folder_path and optional file_path.
231
227
  * `destination_replace_from` (string): If set, this string in the destination path will be replaced with the value in `destination_replace_to`.
232
228
  * `destination_replace_to` (string): If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
data/docs/bundle.md CHANGED
@@ -171,9 +171,9 @@ Files::Bundle.share(id,
171
171
  ### Parameters
172
172
 
173
173
  * `id` (int64): Required - Bundle ID.
174
- * `to` (array(string)): Required - A list of email addresses to share this bundle with.
174
+ * `to` (array(string)): A list of email addresses to share this bundle with. Required unless `recipients` is used.
175
175
  * `note` (string): Note to include in email.
176
- * `recipients` (array(object)): A list of recipients to share this bundle with.
176
+ * `recipients` (array(object)): A list of recipients to share this bundle with. Required unless `to` is used.
177
177
 
178
178
 
179
179
  ---
@@ -244,9 +244,9 @@ bundle.share(
244
244
  ### Parameters
245
245
 
246
246
  * `id` (int64): Required - Bundle ID.
247
- * `to` (array(string)): Required - A list of email addresses to share this bundle with.
247
+ * `to` (array(string)): A list of email addresses to share this bundle with. Required unless `recipients` is used.
248
248
  * `note` (string): Note to include in email.
249
- * `recipients` (array(object)): A list of recipients to share this bundle with.
249
+ * `recipients` (array(object)): A list of recipients to share this bundle with. Required unless `to` is used.
250
250
 
251
251
 
252
252
  ---
@@ -33,5 +33,12 @@ Files::BundleDownload.list(
33
33
 
34
34
  * `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
35
35
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
36
+ * `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `created_at`.
37
+ * `filter` (object): If set, return records where the specifiied field is equal to the supplied value. Valid fields are `created_at`.
38
+ * `filter_gt` (object): If set, return records where the specifiied field is greater than the supplied value. Valid fields are `created_at`.
39
+ * `filter_gteq` (object): If set, return records where the specifiied field is greater than or equal to the supplied value. Valid fields are `created_at`.
40
+ * `filter_like` (object): If set, return records where the specifiied field is equal to the supplied value. Valid fields are `created_at`.
41
+ * `filter_lt` (object): If set, return records where the specifiied field is less than the supplied value. Valid fields are `created_at`.
42
+ * `filter_lteq` (object): If set, return records where the specifiied field is less than or equal to the supplied value. Valid fields are `created_at`.
36
43
  * `bundle_id` (int64): Bundle ID
37
44
  * `bundle_registration_id` (int64): BundleRegistration ID
@@ -69,7 +69,7 @@ Files::InboxRecipient.create(
69
69
 
70
70
  * `user_id` (int64): User ID. Provide a value of `0` to operate the current session's user.
71
71
  * `inbox_id` (int64): Required - Inbox to share.
72
- * `recipient` (string): Required - Email addresses to share this inbox with.
72
+ * `recipient` (string): Required - Email address to share this inbox with.
73
73
  * `name` (string): Name of recipient.
74
74
  * `company` (string): Company of recipient.
75
75
  * `note` (string): Note to include in email.
data/docs/inbox_upload.md CHANGED
@@ -31,5 +31,12 @@ Files::InboxUpload.list(
31
31
 
32
32
  * `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
33
33
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
34
+ * `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `created_at`.
35
+ * `filter` (object): If set, return records where the specifiied field is equal to the supplied value. Valid fields are `created_at`.
36
+ * `filter_gt` (object): If set, return records where the specifiied field is greater than the supplied value. Valid fields are `created_at`.
37
+ * `filter_gteq` (object): If set, return records where the specifiied field is greater than or equal to the supplied value. Valid fields are `created_at`.
38
+ * `filter_like` (object): If set, return records where the specifiied field is equal to the supplied value. Valid fields are `created_at`.
39
+ * `filter_lt` (object): If set, return records where the specifiied field is less than the supplied value. Valid fields are `created_at`.
40
+ * `filter_lteq` (object): If set, return records where the specifiied field is less than or equal to the supplied value. Valid fields are `created_at`.
34
41
  * `inbox_registration_id` (int64): InboxRegistration ID
35
42
  * `inbox_id` (int64): Inbox ID
@@ -175,6 +175,7 @@ module Files
175
175
  class ModelSaveErrorError < ProcessingFailureError; end
176
176
  class MultipartUploadsRequiredForRemotesError < ProcessingFailureError; end
177
177
  class MultipleProcessingErrorsError < ProcessingFailureError; end
178
+ class RecipientAlreadySharedError < ProcessingFailureError; end
178
179
  class RemoteServerErrorError < ProcessingFailureError; end
179
180
  class ResourceLockedError < ProcessingFailureError; end
180
181
  class SubfolderLockedError < ProcessingFailureError; end
@@ -72,15 +72,6 @@ module Files
72
72
  @attributes[:source] = value
73
73
  end
74
74
 
75
- # string - DEPRECATED: Destination Path
76
- def destination
77
- @attributes[:destination]
78
- end
79
-
80
- def destination=(value)
81
- @attributes[:destination] = value
82
- end
83
-
84
75
  # string - Destination Path
85
76
  def destinations
86
77
  @attributes[:destinations]
@@ -180,10 +171,19 @@ module Files
180
171
  @attributes[:value] = value
181
172
  end
182
173
 
174
+ # string - DEPRECATED: Destination Path. Use `destinations` instead.
175
+ def destination
176
+ @attributes[:destination]
177
+ end
178
+
179
+ def destination=(value)
180
+ @attributes[:destination] = value
181
+ end
182
+
183
183
  # Parameters:
184
184
  # automation (required) - string - Automation type
185
185
  # source - string - Source Path
186
- # destination - string - DEPRECATED: Destination Path
186
+ # destination - string - DEPRECATED: Destination Path. Use `destinations` instead.
187
187
  # destinations - array(string) - A list of String destination paths or Hash of folder_path and optional file_path.
188
188
  # destination_replace_from - string - If set, this string in the destination path will be replaced with the value in `destination_replace_to`.
189
189
  # destination_replace_to - string - If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
@@ -294,7 +294,7 @@ module Files
294
294
  # Parameters:
295
295
  # automation (required) - string - Automation type
296
296
  # source - string - Source Path
297
- # destination - string - DEPRECATED: Destination Path
297
+ # destination - string - DEPRECATED: Destination Path. Use `destinations` instead.
298
298
  # destinations - array(string) - A list of String destination paths or Hash of folder_path and optional file_path.
299
299
  # destination_replace_from - string - If set, this string in the destination path will be replaced with the value in `destination_replace_to`.
300
300
  # destination_replace_to - string - If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
@@ -332,7 +332,7 @@ module Files
332
332
  # Parameters:
333
333
  # automation (required) - string - Automation type
334
334
  # source - string - Source Path
335
- # destination - string - DEPRECATED: Destination Path
335
+ # destination - string - DEPRECATED: Destination Path. Use `destinations` instead.
336
336
  # destinations - array(string) - A list of String destination paths or Hash of folder_path and optional file_path.
337
337
  # destination_replace_from - string - If set, this string in the destination path will be replaced with the value in `destination_replace_to`.
338
338
  # destination_replace_to - string - If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
@@ -197,9 +197,9 @@ module Files
197
197
  # Send email(s) with a link to bundle
198
198
  #
199
199
  # Parameters:
200
- # to (required) - array(string) - A list of email addresses to share this bundle with.
200
+ # to - array(string) - A list of email addresses to share this bundle with. Required unless `recipients` is used.
201
201
  # note - string - Note to include in email.
202
- # recipients - array(object) - A list of recipients to share this bundle with.
202
+ # recipients - array(object) - A list of recipients to share this bundle with. Required unless `to` is used.
203
203
  def share(params = {})
204
204
  params ||= {}
205
205
  params[:id] = @attributes[:id]
@@ -209,7 +209,6 @@ module Files
209
209
  raise InvalidParameterError.new("Bad parameter: note must be an String") if params.dig(:note) and !params.dig(:note).is_a?(String)
210
210
  raise InvalidParameterError.new("Bad parameter: recipients must be an Array") if params.dig(:recipients) and !params.dig(:recipients).is_a?(Array)
211
211
  raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id)
212
- raise MissingParameterError.new("Parameter missing: to") unless params.dig(:to)
213
212
 
214
213
  Api.send_request("/bundles/#{@attributes[:id]}/share", :post, params, @options)
215
214
  end
@@ -353,9 +352,9 @@ module Files
353
352
  # Send email(s) with a link to bundle
354
353
  #
355
354
  # Parameters:
356
- # to (required) - array(string) - A list of email addresses to share this bundle with.
355
+ # to - array(string) - A list of email addresses to share this bundle with. Required unless `recipients` is used.
357
356
  # note - string - Note to include in email.
358
- # recipients - array(object) - A list of recipients to share this bundle with.
357
+ # recipients - array(object) - A list of recipients to share this bundle with. Required unless `to` is used.
359
358
  def self.share(id, params = {}, options = {})
360
359
  params ||= {}
361
360
  params[:id] = id
@@ -364,7 +363,6 @@ module Files
364
363
  raise InvalidParameterError.new("Bad parameter: note must be an String") if params.dig(:note) and !params.dig(:note).is_a?(String)
365
364
  raise InvalidParameterError.new("Bad parameter: recipients must be an Array") if params.dig(:recipients) and !params.dig(:recipients).is_a?(Array)
366
365
  raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id)
367
- raise MissingParameterError.new("Parameter missing: to") unless params.dig(:to)
368
366
 
369
367
  response, _options = Api.send_request("/bundles/#{params[:id]}/share", :post, params, options)
370
368
  response.data
@@ -31,11 +31,25 @@ module Files
31
31
  # Parameters:
32
32
  # cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
33
33
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
34
+ # sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `created_at`.
35
+ # filter - object - If set, return records where the specifiied field is equal to the supplied value. Valid fields are `created_at`.
36
+ # filter_gt - object - If set, return records where the specifiied field is greater than the supplied value. Valid fields are `created_at`.
37
+ # filter_gteq - object - If set, return records where the specifiied field is greater than or equal to the supplied value. Valid fields are `created_at`.
38
+ # filter_like - object - If set, return records where the specifiied field is equal to the supplied value. Valid fields are `created_at`.
39
+ # filter_lt - object - If set, return records where the specifiied field is less than the supplied value. Valid fields are `created_at`.
40
+ # filter_lteq - object - If set, return records where the specifiied field is less than or equal to the supplied value. Valid fields are `created_at`.
34
41
  # bundle_id - int64 - Bundle ID
35
42
  # bundle_registration_id - int64 - BundleRegistration ID
36
43
  def self.list(params = {}, options = {})
37
44
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String)
38
45
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)
46
+ raise InvalidParameterError.new("Bad parameter: sort_by must be an Hash") if params.dig(:sort_by) and !params.dig(:sort_by).is_a?(Hash)
47
+ raise InvalidParameterError.new("Bad parameter: filter must be an Hash") if params.dig(:filter) and !params.dig(:filter).is_a?(Hash)
48
+ raise InvalidParameterError.new("Bad parameter: filter_gt must be an Hash") if params.dig(:filter_gt) and !params.dig(:filter_gt).is_a?(Hash)
49
+ raise InvalidParameterError.new("Bad parameter: filter_gteq must be an Hash") if params.dig(:filter_gteq) and !params.dig(:filter_gteq).is_a?(Hash)
50
+ raise InvalidParameterError.new("Bad parameter: filter_like must be an Hash") if params.dig(:filter_like) and !params.dig(:filter_like).is_a?(Hash)
51
+ raise InvalidParameterError.new("Bad parameter: filter_lt must be an Hash") if params.dig(:filter_lt) and !params.dig(:filter_lt).is_a?(Hash)
52
+ raise InvalidParameterError.new("Bad parameter: filter_lteq must be an Hash") if params.dig(:filter_lteq) and !params.dig(:filter_lteq).is_a?(Hash)
39
53
  raise InvalidParameterError.new("Bad parameter: bundle_id must be an Integer") if params.dig(:bundle_id) and !params.dig(:bundle_id).is_a?(Integer)
40
54
  raise InvalidParameterError.new("Bad parameter: bundle_registration_id must be an Integer") if params.dig(:bundle_registration_id) and !params.dig(:bundle_registration_id).is_a?(Integer)
41
55
 
@@ -128,7 +128,7 @@ module Files
128
128
  # Parameters:
129
129
  # user_id - int64 - User ID. Provide a value of `0` to operate the current session's user.
130
130
  # inbox_id (required) - int64 - Inbox to share.
131
- # recipient (required) - string - Email addresses to share this inbox with.
131
+ # recipient (required) - string - Email address to share this inbox with.
132
132
  # name - string - Name of recipient.
133
133
  # company - string - Company of recipient.
134
134
  # note - string - Note to include in email.
@@ -26,11 +26,25 @@ module Files
26
26
  # Parameters:
27
27
  # cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via the X-Files-Cursor-Next header.
28
28
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
29
+ # sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `created_at`.
30
+ # filter - object - If set, return records where the specifiied field is equal to the supplied value. Valid fields are `created_at`.
31
+ # filter_gt - object - If set, return records where the specifiied field is greater than the supplied value. Valid fields are `created_at`.
32
+ # filter_gteq - object - If set, return records where the specifiied field is greater than or equal to the supplied value. Valid fields are `created_at`.
33
+ # filter_like - object - If set, return records where the specifiied field is equal to the supplied value. Valid fields are `created_at`.
34
+ # filter_lt - object - If set, return records where the specifiied field is less than the supplied value. Valid fields are `created_at`.
35
+ # filter_lteq - object - If set, return records where the specifiied field is less than or equal to the supplied value. Valid fields are `created_at`.
29
36
  # inbox_registration_id - int64 - InboxRegistration ID
30
37
  # inbox_id - int64 - Inbox ID
31
38
  def self.list(params = {}, options = {})
32
39
  raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String)
33
40
  raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)
41
+ raise InvalidParameterError.new("Bad parameter: sort_by must be an Hash") if params.dig(:sort_by) and !params.dig(:sort_by).is_a?(Hash)
42
+ raise InvalidParameterError.new("Bad parameter: filter must be an Hash") if params.dig(:filter) and !params.dig(:filter).is_a?(Hash)
43
+ raise InvalidParameterError.new("Bad parameter: filter_gt must be an Hash") if params.dig(:filter_gt) and !params.dig(:filter_gt).is_a?(Hash)
44
+ raise InvalidParameterError.new("Bad parameter: filter_gteq must be an Hash") if params.dig(:filter_gteq) and !params.dig(:filter_gteq).is_a?(Hash)
45
+ raise InvalidParameterError.new("Bad parameter: filter_like must be an Hash") if params.dig(:filter_like) and !params.dig(:filter_like).is_a?(Hash)
46
+ raise InvalidParameterError.new("Bad parameter: filter_lt must be an Hash") if params.dig(:filter_lt) and !params.dig(:filter_lt).is_a?(Hash)
47
+ raise InvalidParameterError.new("Bad parameter: filter_lteq must be an Hash") if params.dig(:filter_lteq) and !params.dig(:filter_lteq).is_a?(Hash)
34
48
  raise InvalidParameterError.new("Bad parameter: inbox_registration_id must be an Integer") if params.dig(:inbox_registration_id) and !params.dig(:inbox_registration_id).is_a?(Integer)
35
49
  raise InvalidParameterError.new("Bad parameter: inbox_id must be an Integer") if params.dig(:inbox_id) and !params.dig(:inbox_id).is_a?(Integer)
36
50
 
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.153
4
+ version: 1.0.158
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-29 00:00:00.000000000 Z
11
+ date: 2021-04-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable