files.com 1.0.164 → 1.0.167

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. package/README.md +9 -5
  2. package/_VERSION +1 -1
  3. package/lib/models/ActionWebhookFailure.js +8 -2
  4. package/lib/models/ApiKey.js +16 -4
  5. package/lib/models/As2Partner.js +46 -4
  6. package/lib/models/As2Station.js +74 -80
  7. package/lib/models/Automation.js +16 -4
  8. package/lib/models/Behavior.js +16 -4
  9. package/lib/models/Bundle.js +24 -6
  10. package/lib/models/Clickwrap.js +16 -4
  11. package/lib/models/File.js +309 -311
  12. package/lib/models/FileComment.js +16 -4
  13. package/lib/models/FileCommentReaction.js +8 -2
  14. package/lib/models/FormFieldSet.js +16 -4
  15. package/lib/models/Group.js +16 -4
  16. package/lib/models/GroupUser.js +16 -4
  17. package/lib/models/Lock.js +8 -2
  18. package/lib/models/Message.js +16 -4
  19. package/lib/models/MessageComment.js +16 -4
  20. package/lib/models/MessageCommentReaction.js +8 -2
  21. package/lib/models/MessageReaction.js +8 -2
  22. package/lib/models/Notification.js +16 -4
  23. package/lib/models/Permission.js +8 -2
  24. package/lib/models/Project.js +16 -4
  25. package/lib/models/PublicKey.js +16 -4
  26. package/lib/models/RemoteServer.js +16 -4
  27. package/lib/models/Request.js +8 -2
  28. package/lib/models/SsoStrategy.js +8 -2
  29. package/lib/models/Style.js +16 -4
  30. package/lib/models/User.js +40 -10
  31. package/lib/models/UserRequest.js +8 -2
  32. package/package.json +1 -1
  33. package/src/models/AccountLineItem.js +2 -2
  34. package/src/models/ActionWebhookFailure.js +3 -1
  35. package/src/models/ApiKey.js +6 -2
  36. package/src/models/As2Partner.js +41 -2
  37. package/src/models/As2Station.js +48 -35
  38. package/src/models/Automation.js +6 -2
  39. package/src/models/Behavior.js +6 -2
  40. package/src/models/Bundle.js +11 -5
  41. package/src/models/BundleDownload.js +1 -0
  42. package/src/models/Clickwrap.js +6 -2
  43. package/src/models/File.js +27 -20
  44. package/src/models/FileComment.js +7 -3
  45. package/src/models/FileCommentReaction.js +3 -1
  46. package/src/models/Folder.js +1 -1
  47. package/src/models/FormFieldSet.js +7 -3
  48. package/src/models/Group.js +6 -2
  49. package/src/models/GroupUser.js +6 -2
  50. package/src/models/InboxUpload.js +1 -0
  51. package/src/models/Invoice.js +2 -2
  52. package/src/models/Lock.js +3 -1
  53. package/src/models/Message.js +7 -3
  54. package/src/models/MessageComment.js +7 -3
  55. package/src/models/MessageCommentReaction.js +3 -1
  56. package/src/models/MessageReaction.js +3 -1
  57. package/src/models/Notification.js +6 -2
  58. package/src/models/Payment.js +2 -2
  59. package/src/models/Permission.js +3 -1
  60. package/src/models/Project.js +6 -2
  61. package/src/models/PublicKey.js +6 -2
  62. package/src/models/RemoteServer.js +6 -2
  63. package/src/models/Request.js +3 -1
  64. package/src/models/Site.js +8 -8
  65. package/src/models/SsoStrategy.js +3 -1
  66. package/src/models/Status.js +2 -2
  67. package/src/models/Style.js +8 -4
  68. package/src/models/User.js +15 -5
  69. package/src/models/UserRequest.js +3 -1
  70. package/src/models/WebhookTest.js +1 -1
  71. package/test/src/index.js +7 -3
@@ -157,12 +157,14 @@ class File {
157
157
  throw new Error('Stream downloads are only available in a NodeJS environment')
158
158
  }
159
159
 
160
- if (!this.download_uri) {
160
+ const downloadUri = this.getDownloadUri()
161
+
162
+ if (!downloadUri) {
161
163
  throw new Error('Current object has no download URI')
162
164
  }
163
165
 
164
166
  const { saveUrlToStream } = require('../isomorphic/File.node.js')
165
- return saveUrlToStream(this.download_uri, writableStream)
167
+ return saveUrlToStream(downloadUri, writableStream)
166
168
  }
167
169
 
168
170
  downloadToFile = async destinationPath => {
@@ -170,21 +172,14 @@ class File {
170
172
  throw new Error('Disk file downloads are only available in a NodeJS environment')
171
173
  }
172
174
 
173
- if (!this.download_uri) {
175
+ const downloadUri = this.getDownloadUri()
176
+
177
+ if (!downloadUri) {
174
178
  throw new Error('Current object has no download URI')
175
179
  }
176
180
 
177
181
  const { saveUrlToFile } = require('../isomorphic/File.node.js')
178
- return saveUrlToFile(this.download_uri, destinationPath)
179
- }
180
-
181
- static findDownload = async path => {
182
- const response = await Api.sendRequest(`/files/${encodeURIComponent(path)}`, 'GET')
183
- return new File(response.data)
184
- }
185
-
186
- get = async path => {
187
- return File.find(path)
182
+ return saveUrlToFile(downloadUri, destinationPath)
188
183
  }
189
184
 
190
185
  copyTo = async destinationFilePath => {
@@ -302,7 +297,7 @@ class File {
302
297
  this.attributes.preview_id = value
303
298
  }
304
299
 
305
- // File preview
300
+ // Preview # File preview
306
301
  getPreview = () => this.attributes.preview
307
302
 
308
303
  setPreview = value => {
@@ -408,7 +403,9 @@ class File {
408
403
  }
409
404
  }
410
405
 
411
- return Api.sendRequest(`/files/${params['path']}`, 'GET', params, this.options)
406
+ const response = await Api.sendRequest(`/files/${params['path']}`, 'GET', params, this.options)
407
+
408
+ return new File(response?.data, this.options)
412
409
  }
413
410
 
414
411
  // Parameters:
@@ -442,7 +439,9 @@ class File {
442
439
  }
443
440
  }
444
441
 
445
- return Api.sendRequest(`/files/${params['path']}`, 'PATCH', params, this.options)
442
+ const response = await Api.sendRequest(`/files/${params['path']}`, 'PATCH', params, this.options)
443
+
444
+ return new File(response?.data, this.options)
446
445
  }
447
446
 
448
447
  // Parameters:
@@ -469,7 +468,9 @@ class File {
469
468
  }
470
469
  }
471
470
 
472
- return Api.sendRequest(`/files/${params['path']}`, 'DELETE', params, this.options)
471
+ const response = await Api.sendRequest(`/files/${params['path']}`, 'DELETE', params, this.options)
472
+
473
+ return response?.data
473
474
  }
474
475
 
475
476
  destroy = (params = {}) =>
@@ -513,7 +514,9 @@ class File {
513
514
  }
514
515
  }
515
516
 
516
- return Api.sendRequest(`/file_actions/copy/${params['path']}`, 'POST', params, this.options)
517
+ const response = await Api.sendRequest(`/file_actions/copy/${params['path']}`, 'POST', params, this.options)
518
+
519
+ return new FileAction(response?.data, this.options)
517
520
  }
518
521
 
519
522
  // Move file/folder
@@ -553,7 +556,9 @@ class File {
553
556
  }
554
557
  }
555
558
 
556
- return Api.sendRequest(`/file_actions/move/${params['path']}`, 'POST', params, this.options)
559
+ const response = await Api.sendRequest(`/file_actions/move/${params['path']}`, 'POST', params, this.options)
560
+
561
+ return new FileAction(response?.data, this.options)
557
562
  }
558
563
 
559
564
  // Begin file upload
@@ -603,7 +608,9 @@ class File {
603
608
  }
604
609
  }
605
610
 
606
- return Api.sendRequest(`/file_actions/begin_upload/${params['path']}`, 'POST', params, this.options)
611
+ const response = await Api.sendRequest(`/file_actions/begin_upload/${params['path']}`, 'POST', params, this.options)
612
+
613
+ return response?.data?.map(obj => new FileUploadPart(obj, this.options)) || []
607
614
  }
608
615
 
609
616
  save = () => {
@@ -36,7 +36,7 @@ class FileComment {
36
36
  this.attributes.body = value
37
37
  }
38
38
 
39
- // Reactions to this comment.
39
+ // FileCommentReaction # Reactions to this comment.
40
40
  getReactions = () => this.attributes.reactions
41
41
 
42
42
  setReactions = value => {
@@ -86,7 +86,9 @@ class FileComment {
86
86
  }
87
87
  }
88
88
 
89
- return Api.sendRequest(`/file_comments/${params['id']}`, 'PATCH', params, this.options)
89
+ const response = await Api.sendRequest(`/file_comments/${params['id']}`, 'PATCH', params, this.options)
90
+
91
+ return new FileComment(response?.data, this.options)
90
92
  }
91
93
 
92
94
  delete = async (params = {}) => {
@@ -111,7 +113,9 @@ class FileComment {
111
113
  }
112
114
  }
113
115
 
114
- return Api.sendRequest(`/file_comments/${params['id']}`, 'DELETE', params, this.options)
116
+ const response = await Api.sendRequest(`/file_comments/${params['id']}`, 'DELETE', params, this.options)
117
+
118
+ return response?.data
115
119
  }
116
120
 
117
121
  destroy = (params = {}) =>
@@ -73,7 +73,9 @@ class FileCommentReaction {
73
73
  }
74
74
  }
75
75
 
76
- return Api.sendRequest(`/file_comment_reactions/${params['id']}`, 'DELETE', params, this.options)
76
+ const response = await Api.sendRequest(`/file_comment_reactions/${params['id']}`, 'DELETE', params, this.options)
77
+
78
+ return response?.data
77
79
  }
78
80
 
79
81
  destroy = (params = {}) =>
@@ -128,7 +128,7 @@ class Folder {
128
128
  this.attributes.preview_id = value
129
129
  }
130
130
 
131
- // File preview
131
+ // Preview # File preview
132
132
  getPreview = () => this.attributes.preview
133
133
 
134
134
  setPreview = value => {
@@ -43,7 +43,7 @@ class FormFieldSet {
43
43
  this.attributes.form_layout = value
44
44
  }
45
45
 
46
- // Associated form fields
46
+ // FormField # Associated form fields
47
47
  getFormFields = () => this.attributes.form_fields
48
48
 
49
49
  setFormFields = value => {
@@ -113,7 +113,9 @@ class FormFieldSet {
113
113
  }
114
114
  }
115
115
 
116
- return Api.sendRequest(`/form_field_sets/${params['id']}`, 'PATCH', params, this.options)
116
+ const response = await Api.sendRequest(`/form_field_sets/${params['id']}`, 'PATCH', params, this.options)
117
+
118
+ return new FormFieldSet(response?.data, this.options)
117
119
  }
118
120
 
119
121
  delete = async (params = {}) => {
@@ -138,7 +140,9 @@ class FormFieldSet {
138
140
  }
139
141
  }
140
142
 
141
- return Api.sendRequest(`/form_field_sets/${params['id']}`, 'DELETE', params, this.options)
143
+ const response = await Api.sendRequest(`/form_field_sets/${params['id']}`, 'DELETE', params, this.options)
144
+
145
+ return response?.data
142
146
  }
143
147
 
144
148
  destroy = (params = {}) =>
@@ -104,7 +104,9 @@ class Group {
104
104
  }
105
105
  }
106
106
 
107
- return Api.sendRequest(`/groups/${params['id']}`, 'PATCH', params, this.options)
107
+ const response = await Api.sendRequest(`/groups/${params['id']}`, 'PATCH', params, this.options)
108
+
109
+ return new Group(response?.data, this.options)
108
110
  }
109
111
 
110
112
  delete = async (params = {}) => {
@@ -129,7 +131,9 @@ class Group {
129
131
  }
130
132
  }
131
133
 
132
- return Api.sendRequest(`/groups/${params['id']}`, 'DELETE', params, this.options)
134
+ const response = await Api.sendRequest(`/groups/${params['id']}`, 'DELETE', params, this.options)
135
+
136
+ return response?.data
133
137
  }
134
138
 
135
139
  destroy = (params = {}) =>
@@ -113,7 +113,9 @@ class GroupUser {
113
113
  }
114
114
  }
115
115
 
116
- return Api.sendRequest(`/group_users/${params['id']}`, 'PATCH', params, this.options)
116
+ const response = await Api.sendRequest(`/group_users/${params['id']}`, 'PATCH', params, this.options)
117
+
118
+ return new GroupUser(response?.data, this.options)
117
119
  }
118
120
 
119
121
  // Parameters:
@@ -163,7 +165,9 @@ class GroupUser {
163
165
  }
164
166
  }
165
167
 
166
- return Api.sendRequest(`/group_users/${params['id']}`, 'DELETE', params, this.options)
168
+ const response = await Api.sendRequest(`/group_users/${params['id']}`, 'DELETE', params, this.options)
169
+
170
+ return response?.data
167
171
  }
168
172
 
169
173
  destroy = (params = {}) =>
@@ -22,6 +22,7 @@ class InboxUpload {
22
22
  }
23
23
 
24
24
  isLoaded = () => !!this.attributes.id
25
+ // InboxRegistration
25
26
  getInboxRegistration = () => this.attributes.inbox_registration
26
27
 
27
28
  // string # Upload path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
@@ -40,13 +40,13 @@ class Invoice {
40
40
  // string # Line item download uri
41
41
  getDownloadUri = () => this.attributes.download_uri
42
42
 
43
- // Associated invoice line items
43
+ // InvoiceLineItem # Associated invoice line items
44
44
  getInvoiceLineItems = () => this.attributes.invoice_line_items
45
45
 
46
46
  // string # Line item payment method
47
47
  getMethod = () => this.attributes.method
48
48
 
49
- // Associated payment line items
49
+ // PaymentLineItem # Associated payment line items
50
50
  getPaymentLineItems = () => this.attributes.payment_line_items
51
51
 
52
52
  // date-time # Date/time payment was reversed if applicable
@@ -142,7 +142,9 @@ class Lock {
142
142
  }
143
143
  }
144
144
 
145
- return Api.sendRequest(`/locks/${params['path']}`, 'DELETE', params, this.options)
145
+ const response = await Api.sendRequest(`/locks/${params['path']}`, 'DELETE', params, this.options)
146
+
147
+ return response?.data
146
148
  }
147
149
 
148
150
  destroy = (params = {}) =>
@@ -43,7 +43,7 @@ class Message {
43
43
  this.attributes.body = value
44
44
  }
45
45
 
46
- // Comments.
46
+ // MessageComment # Comments.
47
47
  getComments = () => this.attributes.comments
48
48
 
49
49
  setComments = value => {
@@ -124,7 +124,9 @@ class Message {
124
124
  }
125
125
  }
126
126
 
127
- return Api.sendRequest(`/messages/${params['id']}`, 'PATCH', params, this.options)
127
+ const response = await Api.sendRequest(`/messages/${params['id']}`, 'PATCH', params, this.options)
128
+
129
+ return new Message(response?.data, this.options)
128
130
  }
129
131
 
130
132
  delete = async (params = {}) => {
@@ -149,7 +151,9 @@ class Message {
149
151
  }
150
152
  }
151
153
 
152
- return Api.sendRequest(`/messages/${params['id']}`, 'DELETE', params, this.options)
154
+ const response = await Api.sendRequest(`/messages/${params['id']}`, 'DELETE', params, this.options)
155
+
156
+ return response?.data
153
157
  }
154
158
 
155
159
  destroy = (params = {}) =>
@@ -36,7 +36,7 @@ class MessageComment {
36
36
  this.attributes.body = value
37
37
  }
38
38
 
39
- // Reactions to this comment.
39
+ // MessageCommentReaction # Reactions to this comment.
40
40
  getReactions = () => this.attributes.reactions
41
41
 
42
42
  setReactions = value => {
@@ -86,7 +86,9 @@ class MessageComment {
86
86
  }
87
87
  }
88
88
 
89
- return Api.sendRequest(`/message_comments/${params['id']}`, 'PATCH', params, this.options)
89
+ const response = await Api.sendRequest(`/message_comments/${params['id']}`, 'PATCH', params, this.options)
90
+
91
+ return new MessageComment(response?.data, this.options)
90
92
  }
91
93
 
92
94
  delete = async (params = {}) => {
@@ -111,7 +113,9 @@ class MessageComment {
111
113
  }
112
114
  }
113
115
 
114
- return Api.sendRequest(`/message_comments/${params['id']}`, 'DELETE', params, this.options)
116
+ const response = await Api.sendRequest(`/message_comments/${params['id']}`, 'DELETE', params, this.options)
117
+
118
+ return response?.data
115
119
  }
116
120
 
117
121
  destroy = (params = {}) =>
@@ -66,7 +66,9 @@ class MessageCommentReaction {
66
66
  }
67
67
  }
68
68
 
69
- return Api.sendRequest(`/message_comment_reactions/${params['id']}`, 'DELETE', params, this.options)
69
+ const response = await Api.sendRequest(`/message_comment_reactions/${params['id']}`, 'DELETE', params, this.options)
70
+
71
+ return response?.data
70
72
  }
71
73
 
72
74
  destroy = (params = {}) =>
@@ -66,7 +66,9 @@ class MessageReaction {
66
66
  }
67
67
  }
68
68
 
69
- return Api.sendRequest(`/message_reactions/${params['id']}`, 'DELETE', params, this.options)
69
+ const response = await Api.sendRequest(`/message_reactions/${params['id']}`, 'DELETE', params, this.options)
70
+
71
+ return response?.data
70
72
  }
71
73
 
72
74
  destroy = (params = {}) =>
@@ -144,7 +144,9 @@ class Notification {
144
144
  }
145
145
  }
146
146
 
147
- return Api.sendRequest(`/notifications/${params['id']}`, 'PATCH', params, this.options)
147
+ const response = await Api.sendRequest(`/notifications/${params['id']}`, 'PATCH', params, this.options)
148
+
149
+ return new Notification(response?.data, this.options)
148
150
  }
149
151
 
150
152
  delete = async (params = {}) => {
@@ -169,7 +171,9 @@ class Notification {
169
171
  }
170
172
  }
171
173
 
172
- return Api.sendRequest(`/notifications/${params['id']}`, 'DELETE', params, this.options)
174
+ const response = await Api.sendRequest(`/notifications/${params['id']}`, 'DELETE', params, this.options)
175
+
176
+ return response?.data
173
177
  }
174
178
 
175
179
  destroy = (params = {}) =>
@@ -40,13 +40,13 @@ class Payment {
40
40
  // string # Line item download uri
41
41
  getDownloadUri = () => this.attributes.download_uri
42
42
 
43
- // Associated invoice line items
43
+ // InvoiceLineItem # Associated invoice line items
44
44
  getInvoiceLineItems = () => this.attributes.invoice_line_items
45
45
 
46
46
  // string # Line item payment method
47
47
  getMethod = () => this.attributes.method
48
48
 
49
- // Associated payment line items
49
+ // PaymentLineItem # Associated payment line items
50
50
  getPaymentLineItems = () => this.attributes.payment_line_items
51
51
 
52
52
  // date-time # Date/time payment was reversed if applicable
@@ -101,7 +101,9 @@ class Permission {
101
101
  }
102
102
  }
103
103
 
104
- return Api.sendRequest(`/permissions/${params['id']}`, 'DELETE', params, this.options)
104
+ const response = await Api.sendRequest(`/permissions/${params['id']}`, 'DELETE', params, this.options)
105
+
106
+ return response?.data
105
107
  }
106
108
 
107
109
  destroy = (params = {}) =>
@@ -72,7 +72,9 @@ class Project {
72
72
  }
73
73
  }
74
74
 
75
- return Api.sendRequest(`/projects/${params['id']}`, 'PATCH', params, this.options)
75
+ const response = await Api.sendRequest(`/projects/${params['id']}`, 'PATCH', params, this.options)
76
+
77
+ return new Project(response?.data, this.options)
76
78
  }
77
79
 
78
80
  delete = async (params = {}) => {
@@ -97,7 +99,9 @@ class Project {
97
99
  }
98
100
  }
99
101
 
100
- return Api.sendRequest(`/projects/${params['id']}`, 'DELETE', params, this.options)
102
+ const response = await Api.sendRequest(`/projects/${params['id']}`, 'DELETE', params, this.options)
103
+
104
+ return response?.data
101
105
  }
102
106
 
103
107
  destroy = (params = {}) =>
@@ -96,7 +96,9 @@ class PublicKey {
96
96
  }
97
97
  }
98
98
 
99
- return Api.sendRequest(`/public_keys/${params['id']}`, 'PATCH', params, this.options)
99
+ const response = await Api.sendRequest(`/public_keys/${params['id']}`, 'PATCH', params, this.options)
100
+
101
+ return new PublicKey(response?.data, this.options)
100
102
  }
101
103
 
102
104
  delete = async (params = {}) => {
@@ -121,7 +123,9 @@ class PublicKey {
121
123
  }
122
124
  }
123
125
 
124
- return Api.sendRequest(`/public_keys/${params['id']}`, 'DELETE', params, this.options)
126
+ const response = await Api.sendRequest(`/public_keys/${params['id']}`, 'DELETE', params, this.options)
127
+
128
+ return response?.data
125
129
  }
126
130
 
127
131
  destroy = (params = {}) =>
@@ -551,7 +551,9 @@ class RemoteServer {
551
551
  }
552
552
  }
553
553
 
554
- return Api.sendRequest(`/remote_servers/${params['id']}`, 'PATCH', params, this.options)
554
+ const response = await Api.sendRequest(`/remote_servers/${params['id']}`, 'PATCH', params, this.options)
555
+
556
+ return new RemoteServer(response?.data, this.options)
555
557
  }
556
558
 
557
559
  delete = async (params = {}) => {
@@ -576,7 +578,9 @@ class RemoteServer {
576
578
  }
577
579
  }
578
580
 
579
- return Api.sendRequest(`/remote_servers/${params['id']}`, 'DELETE', params, this.options)
581
+ const response = await Api.sendRequest(`/remote_servers/${params['id']}`, 'DELETE', params, this.options)
582
+
583
+ return response?.data
580
584
  }
581
585
 
582
586
  destroy = (params = {}) =>
@@ -101,7 +101,9 @@ class Request {
101
101
  }
102
102
  }
103
103
 
104
- return Api.sendRequest(`/requests/${params['id']}`, 'DELETE', params, this.options)
104
+ const response = await Api.sendRequest(`/requests/${params['id']}`, 'DELETE', params, this.options)
105
+
106
+ return response?.data
105
107
  }
106
108
 
107
109
  destroy = (params = {}) =>
@@ -64,7 +64,7 @@ class Site {
64
64
  // boolean # Do Bundles require recipients for sharing?
65
65
  getBundleRequireShareRecipient = () => this.attributes.bundle_require_share_recipient
66
66
 
67
- // Preview watermark image applied to all bundle items.
67
+ // Image # Preview watermark image applied to all bundle items.
68
68
  getBundleWatermarkAttachment = () => this.attributes.bundle_watermark_attachment
69
69
 
70
70
  // object # Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
@@ -160,16 +160,16 @@ class Site {
160
160
  // boolean # Is there a signed HIPAA BAA between Files.com and this site?
161
161
  getHipaa = () => this.attributes.hipaa
162
162
 
163
- // Branded icon 128x128
163
+ // Image # Branded icon 128x128
164
164
  getIcon128 = () => this.attributes.icon128
165
165
 
166
- // Branded icon 16x16
166
+ // Image # Branded icon 16x16
167
167
  getIcon16 = () => this.attributes.icon16
168
168
 
169
- // Branded icon 32x32
169
+ // Image # Branded icon 32x32
170
170
  getIcon32 = () => this.attributes.icon32
171
171
 
172
- // Branded icon 48x48
172
+ // Image # Branded icon 48x48
173
173
  getIcon48 = () => this.attributes.icon48
174
174
 
175
175
  // date-time # Can files be modified?
@@ -232,7 +232,7 @@ class Site {
232
232
  // string # Login help text
233
233
  getLoginHelpText = () => this.attributes.login_help_text
234
234
 
235
- // Branded logo
235
+ // Image # Branded logo
236
236
  getLogo = () => this.attributes.logo
237
237
 
238
238
  // int64 # Number of prior passwords to disallow
@@ -298,7 +298,7 @@ class Site {
298
298
  // string # What type of user is required to use two-factor authentication (when require_2fa is set to `true` for this site)?
299
299
  getRequire2faUserType = () => this.attributes.require_2fa_user_type
300
300
 
301
- // Current session
301
+ // Session # Current session
302
302
  getSession = () => this.attributes.session
303
303
 
304
304
  // boolean # Are sessions locked to the same IP? (i.e. do users need to log in again if they change IPs?)
@@ -367,7 +367,7 @@ class Site {
367
367
  // boolean # Allow uploaders to set `provided_modified_at` for uploaded files?
368
368
  getUseProvidedModifiedAt = () => this.attributes.use_provided_modified_at
369
369
 
370
- // User of current session
370
+ // User # User of current session
371
371
  getUser = () => this.attributes.user
372
372
 
373
373
  // boolean # Will users be locked out after incorrect login attempts?
@@ -175,7 +175,9 @@ class SsoStrategy {
175
175
  }
176
176
  }
177
177
 
178
- return Api.sendRequest(`/sso_strategies/${params['id']}/sync`, 'POST', params, this.options)
178
+ const response = await Api.sendRequest(`/sso_strategies/${params['id']}/sync`, 'POST', params, this.options)
179
+
180
+ return response?.data
179
181
  }
180
182
 
181
183
  // Parameters:
@@ -31,10 +31,10 @@ class Status {
31
31
  // string # Status message
32
32
  getStatus = () => this.attributes.status
33
33
 
34
- // Additional data
34
+ // Auto # Additional data
35
35
  getData = () => this.attributes.data
36
36
 
37
- // A list of api errors
37
+ // Errors # A list of api errors
38
38
  getErrors = () => this.attributes.errors
39
39
 
40
40
  // int64 # Required Clickwrap id
@@ -36,14 +36,14 @@ class Style {
36
36
  this.attributes.path = value
37
37
  }
38
38
 
39
- // Logo
39
+ // Image # Logo
40
40
  getLogo = () => this.attributes.logo
41
41
 
42
42
  setLogo = value => {
43
43
  this.attributes.logo = value
44
44
  }
45
45
 
46
- // Logo thumbnail
46
+ // Image # Logo thumbnail
47
47
  getThumbnail = () => this.attributes.thumbnail
48
48
 
49
49
  setThumbnail = value => {
@@ -90,7 +90,9 @@ class Style {
90
90
  }
91
91
  }
92
92
 
93
- return Api.sendRequest(`/styles/${params['path']}`, 'PATCH', params, this.options)
93
+ const response = await Api.sendRequest(`/styles/${params['path']}`, 'PATCH', params, this.options)
94
+
95
+ return new Style(response?.data, this.options)
94
96
  }
95
97
 
96
98
  delete = async (params = {}) => {
@@ -115,7 +117,9 @@ class Style {
115
117
  }
116
118
  }
117
119
 
118
- return Api.sendRequest(`/styles/${params['path']}`, 'DELETE', params, this.options)
120
+ const response = await Api.sendRequest(`/styles/${params['path']}`, 'DELETE', params, this.options)
121
+
122
+ return response?.data
119
123
  }
120
124
 
121
125
  destroy = (params = {}) =>