files.com 1.0.212 → 1.0.213

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: b47255f7698ba6a1ebe5f8f8ba855d33aa546db17d89d212851219add42b5c2c
4
- data.tar.gz: 92b8059a5f8a8d9bda18855fccf4e31a6109bd9a44c785c47ad5b0ab87f54bcf
3
+ metadata.gz: e045daa127987d2f0eb06955dbe9bbc09207311d00cef771bfb1a49a8d967c5a
4
+ data.tar.gz: 45db1790ded201753f0a9649a98336f68be1e5b87dffbcff4a09970cbca1b184
5
5
  SHA512:
6
- metadata.gz: 7f655df9c1e037f0d8e88b7f17b44584dcb2a393d4948066d4098522a9389c8d868e9366d1865d633e780acd220b6127a4b5f20d412a8e7f75b39558a3e91adc
7
- data.tar.gz: b20cb722bd517b94b5b5344c883b5048d598794d66ea45b97388e44afee89786fc7b1393e21acab4b7e2ee453092f00f3b19c64c4a3c0d379a23471ca6099c89
6
+ metadata.gz: 92fe4d433c889b9e34ec8e0d6de04a3aa37bb69696685255f5d3955e959b60cb2dc9afe9ed484c35d1f1c636393618b754ef4d9802642e976341e4a47c69614c
7
+ data.tar.gz: e8d38b379e51963e1b2865dbff139914e1dac9662833b12802ca0f2694d4c637dcba8b32defcee00d543cc3429577878695737bf5c000e4d573b8f3ce1aaa4b2
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.212
1
+ 1.0.213
@@ -18,7 +18,7 @@ Files::ActionWebhookFailure.retry(id)
18
18
  ## retry Action Webhook Failure
19
19
 
20
20
  ```
21
- action_webhook_failure = Files::ActionWebhookFailure.list_for(path).first
21
+ action_webhook_failure = Files::ActionWebhookFailure.new
22
22
 
23
23
  action_webhook_failure.retry
24
24
  ```
data/docs/api_key.md CHANGED
@@ -167,7 +167,7 @@ Files::ApiKey.delete(id)
167
167
  ## Update Api Key
168
168
 
169
169
  ```
170
- api_key = Files::ApiKey.list_for(path).first
170
+ api_key = Files::ApiKey.list.first
171
171
 
172
172
  api_key.update(
173
173
  name: "My Main API Key",
@@ -189,7 +189,7 @@ api_key.update(
189
189
  ## Delete Api Key
190
190
 
191
191
  ```
192
- api_key = Files::ApiKey.list_for(path).first
192
+ api_key = Files::ApiKey.list.first
193
193
 
194
194
  api_key.delete
195
195
  ```
data/docs/as2_key.md CHANGED
@@ -103,7 +103,7 @@ Files::As2Key.delete(id)
103
103
  ## Update As2 Key
104
104
 
105
105
  ```
106
- as2_key = Files::As2Key.list_for(path).first
106
+ as2_key = Files::As2Key.list.first
107
107
 
108
108
  as2_key.update(
109
109
  as2_partnership_name: "Test"
@@ -121,7 +121,7 @@ as2_key.update(
121
121
  ## Delete As2 Key
122
122
 
123
123
  ```
124
- as2_key = Files::As2Key.list_for(path).first
124
+ as2_key = Files::As2Key.list.first
125
125
 
126
126
  as2_key.delete
127
127
  ```
data/docs/automation.md CHANGED
@@ -206,7 +206,7 @@ Files::Automation.delete(id)
206
206
  ## Update Automation
207
207
 
208
208
  ```
209
- automation = Files::Automation.list_for(path).first
209
+ automation = Files::Automation.list.first
210
210
 
211
211
  automation.update(
212
212
  automation: "create_folder",
@@ -250,7 +250,7 @@ automation.update(
250
250
  ## Delete Automation
251
251
 
252
252
  ```
253
- automation = Files::Automation.list_for(path).first
253
+ automation = Files::Automation.list.first
254
254
 
255
255
  automation.delete
256
256
  ```
data/docs/behavior.md CHANGED
@@ -178,7 +178,7 @@ Files::Behavior.delete(id)
178
178
  ## Update Behavior
179
179
 
180
180
  ```
181
- behavior = Files::Behavior.list_for(path).first
181
+ behavior = Files::Behavior.list.first
182
182
 
183
183
  behavior.update(
184
184
  value: "{\"method\": \"GET\"}",
@@ -202,7 +202,7 @@ behavior.update(
202
202
  ## Delete Behavior
203
203
 
204
204
  ```
205
- behavior = Files::Behavior.list_for(path).first
205
+ behavior = Files::Behavior.list.first
206
206
 
207
207
  behavior.delete
208
208
  ```
data/docs/bundle.md CHANGED
@@ -236,7 +236,7 @@ Files::Bundle.delete(id)
236
236
  ## Send email(s) with a link to bundle
237
237
 
238
238
  ```
239
- bundle = Files::Bundle.list_for(path).first
239
+ bundle = Files::Bundle.list.first
240
240
 
241
241
  bundle.share(
242
242
  to: ["johndoe@gmail.com"],
@@ -258,7 +258,7 @@ bundle.share(
258
258
  ## Update Bundle
259
259
 
260
260
  ```
261
- bundle = Files::Bundle.list_for(path).first
261
+ bundle = Files::Bundle.list.first
262
262
 
263
263
  bundle.update(
264
264
  paths: ["file.txt"],
@@ -300,7 +300,7 @@ bundle.update(
300
300
  ## Delete Bundle
301
301
 
302
302
  ```
303
- bundle = Files::Bundle.list_for(path).first
303
+ bundle = Files::Bundle.list.first
304
304
 
305
305
  bundle.delete
306
306
  ```
data/docs/clickwrap.md CHANGED
@@ -109,7 +109,7 @@ Files::Clickwrap.delete(id)
109
109
  ## Update Clickwrap
110
110
 
111
111
  ```
112
- clickwrap = Files::Clickwrap.list_for(path).first
112
+ clickwrap = Files::Clickwrap.list.first
113
113
 
114
114
  clickwrap.update(
115
115
  name: "Example Site NDA for Files.com Use",
@@ -132,7 +132,7 @@ clickwrap.update(
132
132
  ## Delete Clickwrap
133
133
 
134
134
  ```
135
- clickwrap = Files::Clickwrap.list_for(path).first
135
+ clickwrap = Files::Clickwrap.list.first
136
136
 
137
137
  clickwrap.delete
138
138
  ```
data/docs/file.md CHANGED
@@ -232,7 +232,7 @@ Files::File.begin_upload(path,
232
232
  ## Download file
233
233
 
234
234
  ```
235
- file = Files::File.list_for(path).first
235
+ file = Files::File.new
236
236
 
237
237
  file.download(
238
238
  with_previews: true,
@@ -254,7 +254,7 @@ file.download(
254
254
  ## Update file/folder metadata
255
255
 
256
256
  ```
257
- file = Files::File.list_for(path).first
257
+ file = Files::File.new
258
258
 
259
259
  file.update(
260
260
  provided_mtime: "2000-01-01T01:00:00Z",
@@ -274,7 +274,7 @@ file.update(
274
274
  ## Delete file/folder
275
275
 
276
276
  ```
277
- file = Files::File.list_for(path).first
277
+ file = Files::File.new
278
278
 
279
279
  file.delete(
280
280
  recursive: true
@@ -292,7 +292,7 @@ file.delete(
292
292
  ## Copy file/folder
293
293
 
294
294
  ```
295
- file = Files::File.list_for(path).first
295
+ file = Files::File.new
296
296
 
297
297
  file.copy(
298
298
  destination: "destination",
@@ -312,7 +312,7 @@ file.copy(
312
312
  ## Move file/folder
313
313
 
314
314
  ```
315
- file = Files::File.list_for(path).first
315
+ file = Files::File.new
316
316
 
317
317
  file.move(
318
318
  destination: "destination"
@@ -330,7 +330,7 @@ file.move(
330
330
  ## Begin file upload
331
331
 
332
332
  ```
333
- file = Files::File.list_for(path).first
333
+ file = Files::File.new
334
334
 
335
335
  file.begin_upload(
336
336
  mkdir_parents: true,
data/docs/file_comment.md CHANGED
@@ -87,7 +87,7 @@ Files::FileComment.delete(id)
87
87
  ## Update File Comment
88
88
 
89
89
  ```
90
- file_comment = Files::FileComment.list_for(path).first
90
+ file_comment = Files::FileComment.list.first
91
91
 
92
92
  file_comment.update(
93
93
  body: "body"
@@ -105,7 +105,7 @@ file_comment.update(
105
105
  ## Delete File Comment
106
106
 
107
107
  ```
108
- file_comment = Files::FileComment.list_for(path).first
108
+ file_comment = Files::FileComment.list.first
109
109
 
110
110
  file_comment.delete
111
111
  ```
@@ -52,7 +52,7 @@ Files::FileCommentReaction.delete(id)
52
52
  ## Delete File Comment Reaction
53
53
 
54
54
  ```
55
- file_comment_reaction = Files::FileCommentReaction.list_for(path).first
55
+ file_comment_reaction = Files::FileCommentReaction.new
56
56
 
57
57
  file_comment_reaction.delete
58
58
  ```
@@ -140,7 +140,7 @@ Files::FormFieldSet.delete(id)
140
140
  ## Update Form Field Set
141
141
 
142
142
  ```
143
- form_field_set = Files::FormFieldSet.list_for(path).first
143
+ form_field_set = Files::FormFieldSet.list.first
144
144
 
145
145
  form_field_set.update(
146
146
  title: "Sample Form Title",
@@ -166,7 +166,7 @@ form_field_set.update(
166
166
  ## Delete Form Field Set
167
167
 
168
168
  ```
169
- form_field_set = Files::FormFieldSet.list_for(path).first
169
+ form_field_set = Files::FormFieldSet.list.first
170
170
 
171
171
  form_field_set.delete
172
172
  ```
data/docs/group.md CHANGED
@@ -123,7 +123,7 @@ Files::Group.delete(id)
123
123
  ## Update Group
124
124
 
125
125
  ```
126
- group = Files::Group.list_for(path).first
126
+ group = Files::Group.list.first
127
127
 
128
128
  group.update(
129
129
  name: "owners",
@@ -146,7 +146,7 @@ group.update(
146
146
  ## Delete Group
147
147
 
148
148
  ```
149
- group = Files::Group.list_for(path).first
149
+ group = Files::Group.list.first
150
150
 
151
151
  group.delete
152
152
  ```
data/docs/group_user.md CHANGED
@@ -104,7 +104,7 @@ Files::GroupUser.delete(id,
104
104
  ## Update Group User
105
105
 
106
106
  ```
107
- group_user = Files::GroupUser.list_for(path).first
107
+ group_user = Files::GroupUser.list.first
108
108
 
109
109
  group_user.update(
110
110
  group_id: 1,
@@ -126,7 +126,7 @@ group_user.update(
126
126
  ## Delete Group User
127
127
 
128
128
  ```
129
- group_user = Files::GroupUser.list_for(path).first
129
+ group_user = Files::GroupUser.list.first
130
130
 
131
131
  group_user.delete(
132
132
  group_id: 1,
data/docs/lock.md CHANGED
@@ -95,7 +95,7 @@ Files::Lock.delete(path,
95
95
  ## Delete Lock
96
96
 
97
97
  ```
98
- lock = Files::Lock.list_for(path).first
98
+ lock = Files::Lock.list.first
99
99
 
100
100
  lock.delete(
101
101
  token: "token"
data/docs/message.md CHANGED
@@ -118,7 +118,7 @@ Files::Message.delete(id)
118
118
  ## Update Message
119
119
 
120
120
  ```
121
- message = Files::Message.list_for(path).first
121
+ message = Files::Message.list.first
122
122
 
123
123
  message.update(
124
124
  project_id: 1,
@@ -140,7 +140,7 @@ message.update(
140
140
  ## Delete Message
141
141
 
142
142
  ```
143
- message = Files::Message.list_for(path).first
143
+ message = Files::Message.list.first
144
144
 
145
145
  message.delete
146
146
  ```
@@ -103,7 +103,7 @@ Files::MessageComment.delete(id)
103
103
  ## Update Message Comment
104
104
 
105
105
  ```
106
- message_comment = Files::MessageComment.list_for(path).first
106
+ message_comment = Files::MessageComment.list.first
107
107
 
108
108
  message_comment.update(
109
109
  body: "body"
@@ -121,7 +121,7 @@ message_comment.update(
121
121
  ## Delete Message Comment
122
122
 
123
123
  ```
124
- message_comment = Files::MessageComment.list_for(path).first
124
+ message_comment = Files::MessageComment.list.first
125
125
 
126
126
  message_comment.delete
127
127
  ```
@@ -82,7 +82,7 @@ Files::MessageCommentReaction.delete(id)
82
82
  ## Delete Message Comment Reaction
83
83
 
84
84
  ```
85
- message_comment_reaction = Files::MessageCommentReaction.list_for(path).first
85
+ message_comment_reaction = Files::MessageCommentReaction.list.first
86
86
 
87
87
  message_comment_reaction.delete
88
88
  ```
@@ -82,7 +82,7 @@ Files::MessageReaction.delete(id)
82
82
  ## Delete Message Reaction
83
83
 
84
84
  ```
85
- message_reaction = Files::MessageReaction.list_for(path).first
85
+ message_reaction = Files::MessageReaction.list.first
86
86
 
87
87
  message_reaction.delete
88
88
  ```
data/docs/notification.md CHANGED
@@ -146,7 +146,7 @@ Files::Notification.delete(id)
146
146
  ## Update Notification
147
147
 
148
148
  ```
149
- notification = Files::Notification.list_for(path).first
149
+ notification = Files::Notification.list.first
150
150
 
151
151
  notification.update(
152
152
  notify_on_copy: true,
@@ -170,7 +170,7 @@ notification.update(
170
170
  ## Delete Notification
171
171
 
172
172
  ```
173
- notification = Files::Notification.list_for(path).first
173
+ notification = Files::Notification.list.first
174
174
 
175
175
  notification.delete
176
176
  ```
data/docs/permission.md CHANGED
@@ -97,7 +97,7 @@ Files::Permission.delete(id)
97
97
  ## Delete Permission
98
98
 
99
99
  ```
100
- permission = Files::Permission.list_for(path).first
100
+ permission = Files::Permission.list.first
101
101
 
102
102
  permission.delete
103
103
  ```
data/docs/project.md CHANGED
@@ -91,7 +91,7 @@ Files::Project.delete(id)
91
91
  ## Update Project
92
92
 
93
93
  ```
94
- project = Files::Project.list_for(path).first
94
+ project = Files::Project.list.first
95
95
 
96
96
  project.update(
97
97
  global_access: "global_access"
@@ -109,7 +109,7 @@ project.update(
109
109
  ## Delete Project
110
110
 
111
111
  ```
112
- project = Files::Project.list_for(path).first
112
+ project = Files::Project.list.first
113
113
 
114
114
  project.delete
115
115
  ```
data/docs/public_key.md CHANGED
@@ -103,7 +103,7 @@ Files::PublicKey.delete(id)
103
103
  ## Update Public Key
104
104
 
105
105
  ```
106
- public_key = Files::PublicKey.list_for(path).first
106
+ public_key = Files::PublicKey.list.first
107
107
 
108
108
  public_key.update(
109
109
  title: "My Main Key"
@@ -121,7 +121,7 @@ public_key.update(
121
121
  ## Delete Public Key
122
122
 
123
123
  ```
124
- public_key = Files::PublicKey.list_for(path).first
124
+ public_key = Files::PublicKey.list.first
125
125
 
126
126
  public_key.delete
127
127
  ```
@@ -298,7 +298,7 @@ Files::RemoteServer.delete(id)
298
298
  ## Update Remote Server
299
299
 
300
300
  ```
301
- remote_server = Files::RemoteServer.list_for(path).first
301
+ remote_server = Files::RemoteServer.list.first
302
302
 
303
303
  remote_server.update(
304
304
  reset_authentication: true,
@@ -382,7 +382,7 @@ remote_server.update(
382
382
  ## Delete Remote Server
383
383
 
384
384
  ```
385
- remote_server = Files::RemoteServer.list_for(path).first
385
+ remote_server = Files::RemoteServer.list.first
386
386
 
387
387
  remote_server.delete
388
388
  ```
data/docs/request.md CHANGED
@@ -100,7 +100,7 @@ Files::Request.delete(id)
100
100
  ## Delete Request
101
101
 
102
102
  ```
103
- request = Files::Request.list_for(path).first
103
+ request = Files::Request.list.first
104
104
 
105
105
  request.delete
106
106
  ```
data/docs/style.md CHANGED
@@ -65,7 +65,7 @@ Files::Style.delete(path)
65
65
  ## Update Style
66
66
 
67
67
  ```
68
- style = Files::Style.list_for(path).first
68
+ style = Files::Style.new
69
69
 
70
70
  style.update(
71
71
  file: "file"
@@ -83,7 +83,7 @@ style.update(
83
83
  ## Delete Style
84
84
 
85
85
  ```
86
- style = Files::Style.list_for(path).first
86
+ style = Files::Style.new
87
87
 
88
88
  style.delete
89
89
  ```
data/docs/user.md CHANGED
@@ -404,7 +404,7 @@ Files::User.delete(id)
404
404
  ## Unlock user who has been locked out due to failed logins
405
405
 
406
406
  ```
407
- user = Files::User.list_for(path).first
407
+ user = Files::User.list.first
408
408
 
409
409
  user.unlock
410
410
  ```
@@ -419,7 +419,7 @@ user.unlock
419
419
  ## Resend user welcome email
420
420
 
421
421
  ```
422
- user = Files::User.list_for(path).first
422
+ user = Files::User.list.first
423
423
 
424
424
  user.resend_welcome_email
425
425
  ```
@@ -434,7 +434,7 @@ user.resend_welcome_email
434
434
  ## Trigger 2FA Reset process for user who has lost access to their existing 2FA methods
435
435
 
436
436
  ```
437
- user = Files::User.list_for(path).first
437
+ user = Files::User.list.first
438
438
 
439
439
  user.user_2fa_reset
440
440
  ```
@@ -449,7 +449,7 @@ user.user_2fa_reset
449
449
  ## Update User
450
450
 
451
451
  ```
452
- user = Files::User.list_for(path).first
452
+ user = Files::User.list.first
453
453
 
454
454
  user.update(
455
455
  avatar_delete: true,
@@ -544,7 +544,7 @@ user.update(
544
544
  ## Delete User
545
545
 
546
546
  ```
547
- user = Files::User.list_for(path).first
547
+ user = Files::User.list.first
548
548
 
549
549
  user.delete
550
550
  ```
data/docs/user_request.md CHANGED
@@ -83,7 +83,7 @@ Files::UserRequest.delete(id)
83
83
  ## Delete User Request
84
84
 
85
85
  ```
86
- user_request = Files::UserRequest.list_for(path).first
86
+ user_request = Files::UserRequest.list.first
87
87
 
88
88
  user_request.delete
89
89
  ```
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.212
4
+ version: 1.0.213
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-09-20 00:00:00.000000000 Z
11
+ date: 2021-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable