files.com 1.0.190 → 1.0.193

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. package/_VERSION +1 -1
  2. package/docs/Errors.md +186 -0
  3. package/docs/models/AccountLineItem.md +53 -0
  4. package/docs/models/Action.md +37 -0
  5. package/docs/models/ActionNotificationExport.md +82 -0
  6. package/docs/models/ActionNotificationExportResult.md +49 -0
  7. package/docs/models/ActionWebhookFailure.md +16 -0
  8. package/docs/models/ApiKey.md +183 -0
  9. package/docs/models/App.md +66 -0
  10. package/docs/models/As2IncomingMessage.md +104 -0
  11. package/docs/models/As2OutgoingMessage.md +96 -0
  12. package/docs/models/As2Partner.md +141 -0
  13. package/docs/models/As2Station.md +142 -0
  14. package/docs/models/Auto.md +11 -0
  15. package/docs/models/Automation.md +257 -0
  16. package/docs/models/AutomationRun.md +61 -0
  17. package/docs/models/BandwidthSnapshot.md +50 -0
  18. package/docs/models/Behavior.md +195 -0
  19. package/docs/models/Bundle.md +330 -0
  20. package/docs/models/BundleDownload.md +44 -0
  21. package/docs/models/BundleRecipient.md +76 -0
  22. package/docs/models/BundleRegistration.md +53 -0
  23. package/docs/models/Clickwrap.md +120 -0
  24. package/docs/models/DnsRecord.md +33 -0
  25. package/docs/models/Errors.md +17 -0
  26. package/docs/models/ExternalEvent.md +84 -0
  27. package/docs/models/File.md +339 -0
  28. package/docs/models/FileAction.md +13 -0
  29. package/docs/models/FileComment.md +98 -0
  30. package/docs/models/FileCommentReaction.md +50 -0
  31. package/docs/models/FileMigration.md +40 -0
  32. package/docs/models/FileUploadPart.md +39 -0
  33. package/docs/models/Folder.md +90 -0
  34. package/docs/models/FormField.md +29 -0
  35. package/docs/models/FormFieldSet.md +170 -0
  36. package/docs/models/Group.md +140 -0
  37. package/docs/models/GroupUser.md +116 -0
  38. package/docs/models/History.md +151 -0
  39. package/docs/models/HistoryExport.md +130 -0
  40. package/docs/models/HistoryExportResult.md +75 -0
  41. package/docs/models/Image.md +13 -0
  42. package/docs/models/InboxRecipient.md +76 -0
  43. package/docs/models/InboxRegistration.md +47 -0
  44. package/docs/models/InboxUpload.md +42 -0
  45. package/docs/models/Invoice.md +82 -0
  46. package/docs/models/InvoiceLineItem.md +27 -0
  47. package/docs/models/IpAddress.md +51 -0
  48. package/docs/models/Lock.md +92 -0
  49. package/docs/models/Message.md +134 -0
  50. package/docs/models/MessageComment.md +114 -0
  51. package/docs/models/MessageCommentReaction.md +79 -0
  52. package/docs/models/MessageReaction.md +79 -0
  53. package/docs/models/Notification.md +241 -0
  54. package/docs/models/Payment.md +82 -0
  55. package/docs/models/PaymentLineItem.md +19 -0
  56. package/docs/models/Permission.md +94 -0
  57. package/docs/models/Preview.md +19 -0
  58. package/docs/models/Priority.md +30 -0
  59. package/docs/models/Project.md +98 -0
  60. package/docs/models/PublicIpAddress.md +17 -0
  61. package/docs/models/PublicKey.md +112 -0
  62. package/docs/models/RemoteBandwidthSnapshot.md +42 -0
  63. package/docs/models/RemoteServer.md +385 -0
  64. package/docs/models/Request.md +97 -0
  65. package/docs/models/Session.md +50 -0
  66. package/docs/models/SettingsChange.md +44 -0
  67. package/docs/models/Site.md +607 -0
  68. package/docs/models/SsoStrategy.md +139 -0
  69. package/docs/models/Status.md +30 -0
  70. package/docs/models/Style.md +76 -0
  71. package/docs/models/UsageDailySnapshot.md +56 -0
  72. package/docs/models/UsageSnapshot.md +63 -0
  73. package/docs/models/User.md +465 -0
  74. package/docs/models/UserCipherUse.md +39 -0
  75. package/docs/models/UserRequest.md +80 -0
  76. package/docs/models/WebhookTest.md +59 -0
  77. package/lib/Api.js +12 -11
  78. package/lib/Errors.js +3125 -0
  79. package/lib/models/AccountLineItem.js +8 -0
  80. package/lib/models/Action.js +8 -0
  81. package/lib/models/ActionNotificationExport.js +21 -13
  82. package/lib/models/ActionNotificationExportResult.js +13 -5
  83. package/lib/models/ActionWebhookFailure.js +12 -4
  84. package/lib/models/ApiKey.js +33 -25
  85. package/lib/models/App.js +10 -2
  86. package/lib/models/As2IncomingMessage.js +11 -3
  87. package/lib/models/As2OutgoingMessage.js +11 -3
  88. package/lib/models/As2Partner.js +34 -26
  89. package/lib/models/As2Station.js +32 -24
  90. package/lib/models/Auto.js +8 -0
  91. package/lib/models/Automation.js +51 -43
  92. package/lib/models/AutomationRun.js +16 -8
  93. package/lib/models/BandwidthSnapshot.js +10 -2
  94. package/lib/models/Behavior.js +46 -38
  95. package/lib/models/Bundle.js +51 -43
  96. package/lib/models/BundleDownload.js +12 -4
  97. package/lib/models/BundleRecipient.js +22 -14
  98. package/lib/models/BundleRegistration.js +12 -4
  99. package/lib/models/Clickwrap.js +31 -23
  100. package/lib/models/DnsRecord.js +10 -2
  101. package/lib/models/Errors.js +8 -0
  102. package/lib/models/ExternalEvent.js +18 -10
  103. package/lib/models/File.js +68 -60
  104. package/lib/models/FileAction.js +8 -0
  105. package/lib/models/FileComment.js +27 -19
  106. package/lib/models/FileCommentReaction.js +18 -10
  107. package/lib/models/FileMigration.js +11 -3
  108. package/lib/models/FileUploadPart.js +8 -0
  109. package/lib/models/Folder.js +19 -11
  110. package/lib/models/FormField.js +8 -0
  111. package/lib/models/FormFieldSet.js +27 -19
  112. package/lib/models/Group.js +30 -22
  113. package/lib/models/GroupUser.js +32 -24
  114. package/lib/models/History.js +42 -34
  115. package/lib/models/HistoryExport.js +34 -26
  116. package/lib/models/HistoryExportResult.js +13 -5
  117. package/lib/models/Image.js +8 -0
  118. package/lib/models/InboxRecipient.js +22 -14
  119. package/lib/models/InboxRegistration.js +11 -3
  120. package/lib/models/InboxUpload.js +12 -4
  121. package/lib/models/Invoice.js +13 -5
  122. package/lib/models/InvoiceLineItem.js +8 -0
  123. package/lib/models/IpAddress.js +12 -4
  124. package/lib/models/Lock.js +24 -16
  125. package/lib/models/Message.js +37 -29
  126. package/lib/models/MessageComment.js +29 -21
  127. package/lib/models/MessageCommentReaction.js +24 -16
  128. package/lib/models/MessageReaction.js +24 -16
  129. package/lib/models/Notification.js +38 -30
  130. package/lib/models/Payment.js +13 -5
  131. package/lib/models/PaymentLineItem.js +8 -0
  132. package/lib/models/Permission.js +23 -15
  133. package/lib/models/Preview.js +8 -0
  134. package/lib/models/Priority.js +13 -5
  135. package/lib/models/Project.js +25 -17
  136. package/lib/models/PublicIpAddress.js +8 -0
  137. package/lib/models/PublicKey.js +29 -21
  138. package/lib/models/RemoteBandwidthSnapshot.js +10 -2
  139. package/lib/models/RemoteServer.js +113 -105
  140. package/lib/models/Request.js +27 -19
  141. package/lib/models/Session.js +13 -5
  142. package/lib/models/SettingsChange.js +10 -2
  143. package/lib/models/Site.js +65 -57
  144. package/lib/models/SsoStrategy.js +17 -9
  145. package/lib/models/Status.js +8 -0
  146. package/lib/models/Style.js +20 -12
  147. package/lib/models/UsageDailySnapshot.js +10 -2
  148. package/lib/models/UsageSnapshot.js +10 -2
  149. package/lib/models/User.js +85 -77
  150. package/lib/models/UserCipherUse.js +11 -3
  151. package/lib/models/UserRequest.js +24 -16
  152. package/lib/models/WebhookTest.js +16 -8
  153. package/package.json +1 -1
  154. package/src/Api.js +4 -8
  155. package/src/Errors.js +221 -0
  156. package/src/models/AccountLineItem.js +1 -0
  157. package/src/models/Action.js +1 -0
  158. package/src/models/ActionNotificationExport.js +14 -13
  159. package/src/models/ActionNotificationExportResult.js +6 -5
  160. package/src/models/ActionWebhookFailure.js +5 -4
  161. package/src/models/ApiKey.js +26 -25
  162. package/src/models/App.js +3 -2
  163. package/src/models/As2IncomingMessage.js +4 -3
  164. package/src/models/As2OutgoingMessage.js +4 -3
  165. package/src/models/As2Partner.js +27 -26
  166. package/src/models/As2Station.js +25 -24
  167. package/src/models/Auto.js +1 -0
  168. package/src/models/Automation.js +44 -43
  169. package/src/models/AutomationRun.js +9 -8
  170. package/src/models/BandwidthSnapshot.js +3 -2
  171. package/src/models/Behavior.js +39 -38
  172. package/src/models/Bundle.js +44 -43
  173. package/src/models/BundleDownload.js +5 -4
  174. package/src/models/BundleRecipient.js +15 -14
  175. package/src/models/BundleRegistration.js +5 -4
  176. package/src/models/Clickwrap.js +24 -23
  177. package/src/models/DnsRecord.js +3 -2
  178. package/src/models/Errors.js +1 -0
  179. package/src/models/ExternalEvent.js +11 -10
  180. package/src/models/File.js +61 -60
  181. package/src/models/FileAction.js +1 -0
  182. package/src/models/FileComment.js +20 -19
  183. package/src/models/FileCommentReaction.js +11 -10
  184. package/src/models/FileMigration.js +4 -3
  185. package/src/models/FileUploadPart.js +1 -0
  186. package/src/models/Folder.js +12 -11
  187. package/src/models/FormField.js +1 -0
  188. package/src/models/FormFieldSet.js +20 -19
  189. package/src/models/Group.js +23 -22
  190. package/src/models/GroupUser.js +25 -24
  191. package/src/models/History.js +35 -34
  192. package/src/models/HistoryExport.js +27 -26
  193. package/src/models/HistoryExportResult.js +6 -5
  194. package/src/models/Image.js +1 -0
  195. package/src/models/InboxRecipient.js +15 -14
  196. package/src/models/InboxRegistration.js +4 -3
  197. package/src/models/InboxUpload.js +5 -4
  198. package/src/models/Invoice.js +6 -5
  199. package/src/models/InvoiceLineItem.js +1 -0
  200. package/src/models/IpAddress.js +5 -4
  201. package/src/models/Lock.js +17 -16
  202. package/src/models/Message.js +30 -29
  203. package/src/models/MessageComment.js +22 -21
  204. package/src/models/MessageCommentReaction.js +17 -16
  205. package/src/models/MessageReaction.js +17 -16
  206. package/src/models/Notification.js +31 -30
  207. package/src/models/Payment.js +6 -5
  208. package/src/models/PaymentLineItem.js +1 -0
  209. package/src/models/Permission.js +16 -15
  210. package/src/models/Preview.js +1 -0
  211. package/src/models/Priority.js +6 -5
  212. package/src/models/Project.js +18 -17
  213. package/src/models/PublicIpAddress.js +1 -0
  214. package/src/models/PublicKey.js +22 -21
  215. package/src/models/RemoteBandwidthSnapshot.js +3 -2
  216. package/src/models/RemoteServer.js +106 -105
  217. package/src/models/Request.js +20 -19
  218. package/src/models/Session.js +6 -5
  219. package/src/models/SettingsChange.js +3 -2
  220. package/src/models/Site.js +58 -57
  221. package/src/models/SsoStrategy.js +10 -9
  222. package/src/models/Status.js +1 -0
  223. package/src/models/Style.js +13 -12
  224. package/src/models/UsageDailySnapshot.js +3 -2
  225. package/src/models/UsageSnapshot.js +3 -2
  226. package/src/models/User.js +78 -77
  227. package/src/models/UserCipherUse.js +4 -3
  228. package/src/models/UserRequest.js +17 -16
  229. package/src/models/WebhookTest.js +9 -8
  230. package/test/src/index.js +46 -0
@@ -1,4 +1,5 @@
1
1
  import Api from '../Api'
2
+ import * as errors from '../Errors'
2
3
  import Logger from '../Logger'
3
4
  import { getType, isArray, isBrowser, isInt, isObject, isString } from '../utils'
4
5
 
@@ -111,26 +112,26 @@ class Lock {
111
112
  // token (required) - string - Lock token
112
113
  delete = async (params = {}) => {
113
114
  if (!this.attributes.path) {
114
- throw new Error('Current object has no path')
115
+ throw new errors.EmptyPropertyError('Current object has no path')
115
116
  }
116
117
 
117
118
  if (!isObject(params)) {
118
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
119
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
119
120
  }
120
121
 
121
122
  params.path = this.attributes.path
122
123
  if (params['path'] && !isString(params['path'])) {
123
- throw new Error(`Bad parameter: path must be of type String, received ${getType(path)}`)
124
+ throw new errors.InvalidParameterError(`Bad parameter: path must be of type String, received ${getType(path)}`)
124
125
  }
125
126
  if (params['token'] && !isString(params['token'])) {
126
- throw new Error(`Bad parameter: token must be of type String, received ${getType(token)}`)
127
+ throw new errors.InvalidParameterError(`Bad parameter: token must be of type String, received ${getType(token)}`)
127
128
  }
128
129
 
129
130
  if (!params['path']) {
130
131
  if (this.attributes.path) {
131
132
  params['path'] = this.path
132
133
  } else {
133
- throw new Error('Parameter missing: path')
134
+ throw new errors.MissingParameterError('Parameter missing: path')
134
135
  }
135
136
  }
136
137
 
@@ -138,7 +139,7 @@ class Lock {
138
139
  if (this.attributes.token) {
139
140
  params['token'] = this.token
140
141
  } else {
141
- throw new Error('Parameter missing: token')
142
+ throw new errors.MissingParameterError('Parameter missing: token')
142
143
  }
143
144
  }
144
145
 
@@ -163,25 +164,25 @@ class Lock {
163
164
  // include_children - boolean - Include locks from children objects?
164
165
  static listFor = async (path, params = {}, options = {}) => {
165
166
  if (!isObject(params)) {
166
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
167
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
167
168
  }
168
169
 
169
170
  params['path'] = path
170
171
 
171
172
  if (!params['path']) {
172
- throw new Error('Parameter missing: path')
173
+ throw new errors.MissingParameterError('Parameter missing: path')
173
174
  }
174
175
 
175
176
  if (params['cursor'] && !isString(params['cursor'])) {
176
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
177
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
177
178
  }
178
179
 
179
180
  if (params['per_page'] && !isInt(params['per_page'])) {
180
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
181
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
181
182
  }
182
183
 
183
184
  if (params['path'] && !isString(params['path'])) {
184
- throw new Error(`Bad parameter: path must be of type String, received ${getType(path)}`)
185
+ throw new errors.InvalidParameterError(`Bad parameter: path must be of type String, received ${getType(path)}`)
185
186
  }
186
187
 
187
188
  const response = await Api.sendRequest(`/locks/${params['path']}`, 'GET', params, options)
@@ -197,25 +198,25 @@ class Lock {
197
198
  // timeout - int64 - Lock timeout length
198
199
  static create = async (path, params = {}, options = {}) => {
199
200
  if (!isObject(params)) {
200
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
201
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
201
202
  }
202
203
 
203
204
  params['path'] = path
204
205
 
205
206
  if (!params['path']) {
206
- throw new Error('Parameter missing: path')
207
+ throw new errors.MissingParameterError('Parameter missing: path')
207
208
  }
208
209
 
209
210
  if (params['path'] && !isString(params['path'])) {
210
- throw new Error(`Bad parameter: path must be of type String, received ${getType(path)}`)
211
+ throw new errors.InvalidParameterError(`Bad parameter: path must be of type String, received ${getType(path)}`)
211
212
  }
212
213
 
213
214
  if (params['recursive'] && !isString(params['recursive'])) {
214
- throw new Error(`Bad parameter: recursive must be of type String, received ${getType(recursive)}`)
215
+ throw new errors.InvalidParameterError(`Bad parameter: recursive must be of type String, received ${getType(recursive)}`)
215
216
  }
216
217
 
217
218
  if (params['timeout'] && !isInt(params['timeout'])) {
218
- throw new Error(`Bad parameter: timeout must be of type Int, received ${getType(timeout)}`)
219
+ throw new errors.InvalidParameterError(`Bad parameter: timeout must be of type Int, received ${getType(timeout)}`)
219
220
  }
220
221
 
221
222
  const response = await Api.sendRequest(`/locks/${params['path']}`, 'POST', params, options)
@@ -1,4 +1,5 @@
1
1
  import Api from '../Api'
2
+ import * as errors from '../Errors'
2
3
  import Logger from '../Logger'
3
4
  import { getType, isArray, isBrowser, isInt, isObject, isString } from '../utils'
4
5
 
@@ -71,32 +72,32 @@ class Message {
71
72
  // body (required) - string - Message body.
72
73
  update = async (params = {}) => {
73
74
  if (!this.attributes.id) {
74
- throw new Error('Current object has no id')
75
+ throw new errors.EmptyPropertyError('Current object has no id')
75
76
  }
76
77
 
77
78
  if (!isObject(params)) {
78
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
79
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
79
80
  }
80
81
 
81
82
  params.id = this.attributes.id
82
83
  if (params['id'] && !isInt(params['id'])) {
83
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
84
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
84
85
  }
85
86
  if (params['project_id'] && !isInt(params['project_id'])) {
86
- throw new Error(`Bad parameter: project_id must be of type Int, received ${getType(project_id)}`)
87
+ throw new errors.InvalidParameterError(`Bad parameter: project_id must be of type Int, received ${getType(project_id)}`)
87
88
  }
88
89
  if (params['subject'] && !isString(params['subject'])) {
89
- throw new Error(`Bad parameter: subject must be of type String, received ${getType(subject)}`)
90
+ throw new errors.InvalidParameterError(`Bad parameter: subject must be of type String, received ${getType(subject)}`)
90
91
  }
91
92
  if (params['body'] && !isString(params['body'])) {
92
- throw new Error(`Bad parameter: body must be of type String, received ${getType(body)}`)
93
+ throw new errors.InvalidParameterError(`Bad parameter: body must be of type String, received ${getType(body)}`)
93
94
  }
94
95
 
95
96
  if (!params['id']) {
96
97
  if (this.attributes.id) {
97
98
  params['id'] = this.id
98
99
  } else {
99
- throw new Error('Parameter missing: id')
100
+ throw new errors.MissingParameterError('Parameter missing: id')
100
101
  }
101
102
  }
102
103
 
@@ -104,7 +105,7 @@ class Message {
104
105
  if (this.attributes.project_id) {
105
106
  params['project_id'] = this.project_id
106
107
  } else {
107
- throw new Error('Parameter missing: project_id')
108
+ throw new errors.MissingParameterError('Parameter missing: project_id')
108
109
  }
109
110
  }
110
111
 
@@ -112,7 +113,7 @@ class Message {
112
113
  if (this.attributes.subject) {
113
114
  params['subject'] = this.subject
114
115
  } else {
115
- throw new Error('Parameter missing: subject')
116
+ throw new errors.MissingParameterError('Parameter missing: subject')
116
117
  }
117
118
  }
118
119
 
@@ -120,7 +121,7 @@ class Message {
120
121
  if (this.attributes.body) {
121
122
  params['body'] = this.body
122
123
  } else {
123
- throw new Error('Parameter missing: body')
124
+ throw new errors.MissingParameterError('Parameter missing: body')
124
125
  }
125
126
  }
126
127
 
@@ -131,23 +132,23 @@ class Message {
131
132
 
132
133
  delete = async (params = {}) => {
133
134
  if (!this.attributes.id) {
134
- throw new Error('Current object has no id')
135
+ throw new errors.EmptyPropertyError('Current object has no id')
135
136
  }
136
137
 
137
138
  if (!isObject(params)) {
138
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
139
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
139
140
  }
140
141
 
141
142
  params.id = this.attributes.id
142
143
  if (params['id'] && !isInt(params['id'])) {
143
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
144
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
144
145
  }
145
146
 
146
147
  if (!params['id']) {
147
148
  if (this.attributes.id) {
148
149
  params['id'] = this.id
149
150
  } else {
150
- throw new Error('Parameter missing: id')
151
+ throw new errors.MissingParameterError('Parameter missing: id')
151
152
  }
152
153
  }
153
154
 
@@ -176,23 +177,23 @@ class Message {
176
177
  // project_id (required) - int64 - Project for which to return messages.
177
178
  static list = async (params = {}, options = {}) => {
178
179
  if (!params['project_id']) {
179
- throw new Error('Parameter missing: project_id')
180
+ throw new errors.MissingParameterError('Parameter missing: project_id')
180
181
  }
181
182
 
182
183
  if (params['user_id'] && !isInt(params['user_id'])) {
183
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
184
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
184
185
  }
185
186
 
186
187
  if (params['cursor'] && !isString(params['cursor'])) {
187
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
188
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
188
189
  }
189
190
 
190
191
  if (params['per_page'] && !isInt(params['per_page'])) {
191
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
192
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
192
193
  }
193
194
 
194
195
  if (params['project_id'] && !isInt(params['project_id'])) {
195
- throw new Error(`Bad parameter: project_id must be of type Int, received ${getType(project_id)}`)
196
+ throw new errors.InvalidParameterError(`Bad parameter: project_id must be of type Int, received ${getType(project_id)}`)
196
197
  }
197
198
 
198
199
  const response = await Api.sendRequest(`/messages`, 'GET', params, options)
@@ -207,17 +208,17 @@ class Message {
207
208
  // id (required) - int64 - Message ID.
208
209
  static find = async (id, params = {}, options = {}) => {
209
210
  if (!isObject(params)) {
210
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
211
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
211
212
  }
212
213
 
213
214
  params['id'] = id
214
215
 
215
216
  if (!params['id']) {
216
- throw new Error('Parameter missing: id')
217
+ throw new errors.MissingParameterError('Parameter missing: id')
217
218
  }
218
219
 
219
220
  if (params['id'] && !isInt(params['id'])) {
220
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
221
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
221
222
  }
222
223
 
223
224
  const response = await Api.sendRequest(`/messages/${params['id']}`, 'GET', params, options)
@@ -235,31 +236,31 @@ class Message {
235
236
  // body (required) - string - Message body.
236
237
  static create = async (params = {}, options = {}) => {
237
238
  if (!params['project_id']) {
238
- throw new Error('Parameter missing: project_id')
239
+ throw new errors.MissingParameterError('Parameter missing: project_id')
239
240
  }
240
241
 
241
242
  if (!params['subject']) {
242
- throw new Error('Parameter missing: subject')
243
+ throw new errors.MissingParameterError('Parameter missing: subject')
243
244
  }
244
245
 
245
246
  if (!params['body']) {
246
- throw new Error('Parameter missing: body')
247
+ throw new errors.MissingParameterError('Parameter missing: body')
247
248
  }
248
249
 
249
250
  if (params['user_id'] && !isInt(params['user_id'])) {
250
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
251
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
251
252
  }
252
253
 
253
254
  if (params['project_id'] && !isInt(params['project_id'])) {
254
- throw new Error(`Bad parameter: project_id must be of type Int, received ${getType(project_id)}`)
255
+ throw new errors.InvalidParameterError(`Bad parameter: project_id must be of type Int, received ${getType(project_id)}`)
255
256
  }
256
257
 
257
258
  if (params['subject'] && !isString(params['subject'])) {
258
- throw new Error(`Bad parameter: subject must be of type String, received ${getType(subject)}`)
259
+ throw new errors.InvalidParameterError(`Bad parameter: subject must be of type String, received ${getType(subject)}`)
259
260
  }
260
261
 
261
262
  if (params['body'] && !isString(params['body'])) {
262
- throw new Error(`Bad parameter: body must be of type String, received ${getType(body)}`)
263
+ throw new errors.InvalidParameterError(`Bad parameter: body must be of type String, received ${getType(body)}`)
263
264
  }
264
265
 
265
266
  const response = await Api.sendRequest(`/messages`, 'POST', params, options)
@@ -1,4 +1,5 @@
1
1
  import Api from '../Api'
2
+ import * as errors from '../Errors'
2
3
  import Logger from '../Logger'
3
4
  import { getType, isArray, isBrowser, isInt, isObject, isString } from '../utils'
4
5
 
@@ -55,26 +56,26 @@ class MessageComment {
55
56
  // body (required) - string - Comment body.
56
57
  update = async (params = {}) => {
57
58
  if (!this.attributes.id) {
58
- throw new Error('Current object has no id')
59
+ throw new errors.EmptyPropertyError('Current object has no id')
59
60
  }
60
61
 
61
62
  if (!isObject(params)) {
62
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
63
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
63
64
  }
64
65
 
65
66
  params.id = this.attributes.id
66
67
  if (params['id'] && !isInt(params['id'])) {
67
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
68
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
68
69
  }
69
70
  if (params['body'] && !isString(params['body'])) {
70
- throw new Error(`Bad parameter: body must be of type String, received ${getType(body)}`)
71
+ throw new errors.InvalidParameterError(`Bad parameter: body must be of type String, received ${getType(body)}`)
71
72
  }
72
73
 
73
74
  if (!params['id']) {
74
75
  if (this.attributes.id) {
75
76
  params['id'] = this.id
76
77
  } else {
77
- throw new Error('Parameter missing: id')
78
+ throw new errors.MissingParameterError('Parameter missing: id')
78
79
  }
79
80
  }
80
81
 
@@ -82,7 +83,7 @@ class MessageComment {
82
83
  if (this.attributes.body) {
83
84
  params['body'] = this.body
84
85
  } else {
85
- throw new Error('Parameter missing: body')
86
+ throw new errors.MissingParameterError('Parameter missing: body')
86
87
  }
87
88
  }
88
89
 
@@ -93,23 +94,23 @@ class MessageComment {
93
94
 
94
95
  delete = async (params = {}) => {
95
96
  if (!this.attributes.id) {
96
- throw new Error('Current object has no id')
97
+ throw new errors.EmptyPropertyError('Current object has no id')
97
98
  }
98
99
 
99
100
  if (!isObject(params)) {
100
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
101
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
101
102
  }
102
103
 
103
104
  params.id = this.attributes.id
104
105
  if (params['id'] && !isInt(params['id'])) {
105
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
106
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
106
107
  }
107
108
 
108
109
  if (!params['id']) {
109
110
  if (this.attributes.id) {
110
111
  params['id'] = this.id
111
112
  } else {
112
- throw new Error('Parameter missing: id')
113
+ throw new errors.MissingParameterError('Parameter missing: id')
113
114
  }
114
115
  }
115
116
 
@@ -138,23 +139,23 @@ class MessageComment {
138
139
  // message_id (required) - int64 - Message comment to return comments for.
139
140
  static list = async (params = {}, options = {}) => {
140
141
  if (!params['message_id']) {
141
- throw new Error('Parameter missing: message_id')
142
+ throw new errors.MissingParameterError('Parameter missing: message_id')
142
143
  }
143
144
 
144
145
  if (params['user_id'] && !isInt(params['user_id'])) {
145
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
146
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
146
147
  }
147
148
 
148
149
  if (params['cursor'] && !isString(params['cursor'])) {
149
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
150
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
150
151
  }
151
152
 
152
153
  if (params['per_page'] && !isInt(params['per_page'])) {
153
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
154
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
154
155
  }
155
156
 
156
157
  if (params['message_id'] && !isInt(params['message_id'])) {
157
- throw new Error(`Bad parameter: message_id must be of type Int, received ${getType(message_id)}`)
158
+ throw new errors.InvalidParameterError(`Bad parameter: message_id must be of type Int, received ${getType(message_id)}`)
158
159
  }
159
160
 
160
161
  const response = await Api.sendRequest(`/message_comments`, 'GET', params, options)
@@ -169,17 +170,17 @@ class MessageComment {
169
170
  // id (required) - int64 - Message Comment ID.
170
171
  static find = async (id, params = {}, options = {}) => {
171
172
  if (!isObject(params)) {
172
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
173
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
173
174
  }
174
175
 
175
176
  params['id'] = id
176
177
 
177
178
  if (!params['id']) {
178
- throw new Error('Parameter missing: id')
179
+ throw new errors.MissingParameterError('Parameter missing: id')
179
180
  }
180
181
 
181
182
  if (params['id'] && !isInt(params['id'])) {
182
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
183
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
183
184
  }
184
185
 
185
186
  const response = await Api.sendRequest(`/message_comments/${params['id']}`, 'GET', params, options)
@@ -195,15 +196,15 @@ class MessageComment {
195
196
  // body (required) - string - Comment body.
196
197
  static create = async (params = {}, options = {}) => {
197
198
  if (!params['body']) {
198
- throw new Error('Parameter missing: body')
199
+ throw new errors.MissingParameterError('Parameter missing: body')
199
200
  }
200
201
 
201
202
  if (params['user_id'] && !isInt(params['user_id'])) {
202
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
203
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
203
204
  }
204
205
 
205
206
  if (params['body'] && !isString(params['body'])) {
206
- throw new Error(`Bad parameter: body must be of type String, received ${getType(body)}`)
207
+ throw new errors.InvalidParameterError(`Bad parameter: body must be of type String, received ${getType(body)}`)
207
208
  }
208
209
 
209
210
  const response = await Api.sendRequest(`/message_comments`, 'POST', params, options)
@@ -1,4 +1,5 @@
1
1
  import Api from '../Api'
2
+ import * as errors from '../Errors'
2
3
  import Logger from '../Logger'
3
4
  import { getType, isArray, isBrowser, isInt, isObject, isString } from '../utils'
4
5
 
@@ -46,23 +47,23 @@ class MessageCommentReaction {
46
47
 
47
48
  delete = async (params = {}) => {
48
49
  if (!this.attributes.id) {
49
- throw new Error('Current object has no id')
50
+ throw new errors.EmptyPropertyError('Current object has no id')
50
51
  }
51
52
 
52
53
  if (!isObject(params)) {
53
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
54
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
54
55
  }
55
56
 
56
57
  params.id = this.attributes.id
57
58
  if (params['id'] && !isInt(params['id'])) {
58
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
59
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
59
60
  }
60
61
 
61
62
  if (!params['id']) {
62
63
  if (this.attributes.id) {
63
64
  params['id'] = this.id
64
65
  } else {
65
- throw new Error('Parameter missing: id')
66
+ throw new errors.MissingParameterError('Parameter missing: id')
66
67
  }
67
68
  }
68
69
 
@@ -76,7 +77,7 @@ class MessageCommentReaction {
76
77
 
77
78
  save = () => {
78
79
  if (this.attributes['id']) {
79
- throw new Error('The MessageCommentReaction object doesn\'t support updates.')
80
+ throw new errors.NotImplementedError('The MessageCommentReaction object doesn\'t support updates.')
80
81
  } else {
81
82
  const newObject = MessageCommentReaction.create(this.attributes, this.options)
82
83
  this.attributes = { ...newObject.attributes }
@@ -91,23 +92,23 @@ class MessageCommentReaction {
91
92
  // message_comment_id (required) - int64 - Message comment to return reactions for.
92
93
  static list = async (params = {}, options = {}) => {
93
94
  if (!params['message_comment_id']) {
94
- throw new Error('Parameter missing: message_comment_id')
95
+ throw new errors.MissingParameterError('Parameter missing: message_comment_id')
95
96
  }
96
97
 
97
98
  if (params['user_id'] && !isInt(params['user_id'])) {
98
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
99
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
99
100
  }
100
101
 
101
102
  if (params['cursor'] && !isString(params['cursor'])) {
102
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
103
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
103
104
  }
104
105
 
105
106
  if (params['per_page'] && !isInt(params['per_page'])) {
106
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
107
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
107
108
  }
108
109
 
109
110
  if (params['message_comment_id'] && !isInt(params['message_comment_id'])) {
110
- throw new Error(`Bad parameter: message_comment_id must be of type Int, received ${getType(message_comment_id)}`)
111
+ throw new errors.InvalidParameterError(`Bad parameter: message_comment_id must be of type Int, received ${getType(message_comment_id)}`)
111
112
  }
112
113
 
113
114
  const response = await Api.sendRequest(`/message_comment_reactions`, 'GET', params, options)
@@ -122,17 +123,17 @@ class MessageCommentReaction {
122
123
  // id (required) - int64 - Message Comment Reaction ID.
123
124
  static find = async (id, params = {}, options = {}) => {
124
125
  if (!isObject(params)) {
125
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
126
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
126
127
  }
127
128
 
128
129
  params['id'] = id
129
130
 
130
131
  if (!params['id']) {
131
- throw new Error('Parameter missing: id')
132
+ throw new errors.MissingParameterError('Parameter missing: id')
132
133
  }
133
134
 
134
135
  if (params['id'] && !isInt(params['id'])) {
135
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
136
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
136
137
  }
137
138
 
138
139
  const response = await Api.sendRequest(`/message_comment_reactions/${params['id']}`, 'GET', params, options)
@@ -148,15 +149,15 @@ class MessageCommentReaction {
148
149
  // emoji (required) - string - Emoji to react with.
149
150
  static create = async (params = {}, options = {}) => {
150
151
  if (!params['emoji']) {
151
- throw new Error('Parameter missing: emoji')
152
+ throw new errors.MissingParameterError('Parameter missing: emoji')
152
153
  }
153
154
 
154
155
  if (params['user_id'] && !isInt(params['user_id'])) {
155
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
156
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
156
157
  }
157
158
 
158
159
  if (params['emoji'] && !isString(params['emoji'])) {
159
- throw new Error(`Bad parameter: emoji must be of type String, received ${getType(emoji)}`)
160
+ throw new errors.InvalidParameterError(`Bad parameter: emoji must be of type String, received ${getType(emoji)}`)
160
161
  }
161
162
 
162
163
  const response = await Api.sendRequest(`/message_comment_reactions`, 'POST', params, options)
@@ -1,4 +1,5 @@
1
1
  import Api from '../Api'
2
+ import * as errors from '../Errors'
2
3
  import Logger from '../Logger'
3
4
  import { getType, isArray, isBrowser, isInt, isObject, isString } from '../utils'
4
5
 
@@ -46,23 +47,23 @@ class MessageReaction {
46
47
 
47
48
  delete = async (params = {}) => {
48
49
  if (!this.attributes.id) {
49
- throw new Error('Current object has no id')
50
+ throw new errors.EmptyPropertyError('Current object has no id')
50
51
  }
51
52
 
52
53
  if (!isObject(params)) {
53
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
54
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
54
55
  }
55
56
 
56
57
  params.id = this.attributes.id
57
58
  if (params['id'] && !isInt(params['id'])) {
58
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
59
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
59
60
  }
60
61
 
61
62
  if (!params['id']) {
62
63
  if (this.attributes.id) {
63
64
  params['id'] = this.id
64
65
  } else {
65
- throw new Error('Parameter missing: id')
66
+ throw new errors.MissingParameterError('Parameter missing: id')
66
67
  }
67
68
  }
68
69
 
@@ -76,7 +77,7 @@ class MessageReaction {
76
77
 
77
78
  save = () => {
78
79
  if (this.attributes['id']) {
79
- throw new Error('The MessageReaction object doesn\'t support updates.')
80
+ throw new errors.NotImplementedError('The MessageReaction object doesn\'t support updates.')
80
81
  } else {
81
82
  const newObject = MessageReaction.create(this.attributes, this.options)
82
83
  this.attributes = { ...newObject.attributes }
@@ -91,23 +92,23 @@ class MessageReaction {
91
92
  // message_id (required) - int64 - Message to return reactions for.
92
93
  static list = async (params = {}, options = {}) => {
93
94
  if (!params['message_id']) {
94
- throw new Error('Parameter missing: message_id')
95
+ throw new errors.MissingParameterError('Parameter missing: message_id')
95
96
  }
96
97
 
97
98
  if (params['user_id'] && !isInt(params['user_id'])) {
98
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
99
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
99
100
  }
100
101
 
101
102
  if (params['cursor'] && !isString(params['cursor'])) {
102
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
103
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
103
104
  }
104
105
 
105
106
  if (params['per_page'] && !isInt(params['per_page'])) {
106
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
107
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
107
108
  }
108
109
 
109
110
  if (params['message_id'] && !isInt(params['message_id'])) {
110
- throw new Error(`Bad parameter: message_id must be of type Int, received ${getType(message_id)}`)
111
+ throw new errors.InvalidParameterError(`Bad parameter: message_id must be of type Int, received ${getType(message_id)}`)
111
112
  }
112
113
 
113
114
  const response = await Api.sendRequest(`/message_reactions`, 'GET', params, options)
@@ -122,17 +123,17 @@ class MessageReaction {
122
123
  // id (required) - int64 - Message Reaction ID.
123
124
  static find = async (id, params = {}, options = {}) => {
124
125
  if (!isObject(params)) {
125
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
126
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
126
127
  }
127
128
 
128
129
  params['id'] = id
129
130
 
130
131
  if (!params['id']) {
131
- throw new Error('Parameter missing: id')
132
+ throw new errors.MissingParameterError('Parameter missing: id')
132
133
  }
133
134
 
134
135
  if (params['id'] && !isInt(params['id'])) {
135
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
136
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
136
137
  }
137
138
 
138
139
  const response = await Api.sendRequest(`/message_reactions/${params['id']}`, 'GET', params, options)
@@ -148,15 +149,15 @@ class MessageReaction {
148
149
  // emoji (required) - string - Emoji to react with.
149
150
  static create = async (params = {}, options = {}) => {
150
151
  if (!params['emoji']) {
151
- throw new Error('Parameter missing: emoji')
152
+ throw new errors.MissingParameterError('Parameter missing: emoji')
152
153
  }
153
154
 
154
155
  if (params['user_id'] && !isInt(params['user_id'])) {
155
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
156
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
156
157
  }
157
158
 
158
159
  if (params['emoji'] && !isString(params['emoji'])) {
159
- throw new Error(`Bad parameter: emoji must be of type String, received ${getType(emoji)}`)
160
+ throw new errors.InvalidParameterError(`Bad parameter: emoji must be of type String, received ${getType(emoji)}`)
160
161
  }
161
162
 
162
163
  const response = await Api.sendRequest(`/message_reactions`, 'POST', params, options)