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
 
@@ -81,7 +82,7 @@ class BundleRecipient {
81
82
 
82
83
  save = () => {
83
84
  if (this.attributes['id']) {
84
- throw new Error('The BundleRecipient object doesn\'t support updates.')
85
+ throw new errors.NotImplementedError('The BundleRecipient object doesn\'t support updates.')
85
86
  } else {
86
87
  const newObject = BundleRecipient.create(this.attributes, this.options)
87
88
  this.attributes = { ...newObject.attributes }
@@ -103,23 +104,23 @@ class BundleRecipient {
103
104
  // bundle_id (required) - int64 - List recipients for the bundle with this ID.
104
105
  static list = async (params = {}, options = {}) => {
105
106
  if (!params['bundle_id']) {
106
- throw new Error('Parameter missing: bundle_id')
107
+ throw new errors.MissingParameterError('Parameter missing: bundle_id')
107
108
  }
108
109
 
109
110
  if (params['user_id'] && !isInt(params['user_id'])) {
110
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
111
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
111
112
  }
112
113
 
113
114
  if (params['cursor'] && !isString(params['cursor'])) {
114
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
115
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
115
116
  }
116
117
 
117
118
  if (params['per_page'] && !isInt(params['per_page'])) {
118
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
119
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
119
120
  }
120
121
 
121
122
  if (params['bundle_id'] && !isInt(params['bundle_id'])) {
122
- throw new Error(`Bad parameter: bundle_id must be of type Int, received ${getType(bundle_id)}`)
123
+ throw new errors.InvalidParameterError(`Bad parameter: bundle_id must be of type Int, received ${getType(bundle_id)}`)
123
124
  }
124
125
 
125
126
  const response = await Api.sendRequest(`/bundle_recipients`, 'GET', params, options)
@@ -140,35 +141,35 @@ class BundleRecipient {
140
141
  // share_after_create - boolean - Set to true to share the link with the recipient upon creation.
141
142
  static create = async (params = {}, options = {}) => {
142
143
  if (!params['bundle_id']) {
143
- throw new Error('Parameter missing: bundle_id')
144
+ throw new errors.MissingParameterError('Parameter missing: bundle_id')
144
145
  }
145
146
 
146
147
  if (!params['recipient']) {
147
- throw new Error('Parameter missing: recipient')
148
+ throw new errors.MissingParameterError('Parameter missing: recipient')
148
149
  }
149
150
 
150
151
  if (params['user_id'] && !isInt(params['user_id'])) {
151
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
152
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
152
153
  }
153
154
 
154
155
  if (params['bundle_id'] && !isInt(params['bundle_id'])) {
155
- throw new Error(`Bad parameter: bundle_id must be of type Int, received ${getType(bundle_id)}`)
156
+ throw new errors.InvalidParameterError(`Bad parameter: bundle_id must be of type Int, received ${getType(bundle_id)}`)
156
157
  }
157
158
 
158
159
  if (params['recipient'] && !isString(params['recipient'])) {
159
- throw new Error(`Bad parameter: recipient must be of type String, received ${getType(recipient)}`)
160
+ throw new errors.InvalidParameterError(`Bad parameter: recipient must be of type String, received ${getType(recipient)}`)
160
161
  }
161
162
 
162
163
  if (params['name'] && !isString(params['name'])) {
163
- throw new Error(`Bad parameter: name must be of type String, received ${getType(name)}`)
164
+ throw new errors.InvalidParameterError(`Bad parameter: name must be of type String, received ${getType(name)}`)
164
165
  }
165
166
 
166
167
  if (params['company'] && !isString(params['company'])) {
167
- throw new Error(`Bad parameter: company must be of type String, received ${getType(company)}`)
168
+ throw new errors.InvalidParameterError(`Bad parameter: company must be of type String, received ${getType(company)}`)
168
169
  }
169
170
 
170
171
  if (params['note'] && !isString(params['note'])) {
171
- throw new Error(`Bad parameter: note must be of type String, received ${getType(note)}`)
172
+ throw new errors.InvalidParameterError(`Bad parameter: note must be of type String, received ${getType(note)}`)
172
173
  }
173
174
 
174
175
  const response = await Api.sendRequest(`/bundle_recipients`, '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
 
@@ -66,19 +67,19 @@ class BundleRegistration {
66
67
  // bundle_id - int64 - ID of the associated Bundle
67
68
  static list = async (params = {}, options = {}) => {
68
69
  if (params['user_id'] && !isInt(params['user_id'])) {
69
- throw new Error(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
70
+ throw new errors.InvalidParameterError(`Bad parameter: user_id must be of type Int, received ${getType(user_id)}`)
70
71
  }
71
72
 
72
73
  if (params['cursor'] && !isString(params['cursor'])) {
73
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
74
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
74
75
  }
75
76
 
76
77
  if (params['per_page'] && !isInt(params['per_page'])) {
77
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
78
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
78
79
  }
79
80
 
80
81
  if (params['bundle_id'] && !isInt(params['bundle_id'])) {
81
- throw new Error(`Bad parameter: bundle_id must be of type Int, received ${getType(bundle_id)}`)
82
+ throw new errors.InvalidParameterError(`Bad parameter: bundle_id must be of type Int, received ${getType(bundle_id)}`)
82
83
  }
83
84
 
84
85
  const response = await Api.sendRequest(`/bundle_registrations`, 'GET', 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
 
@@ -73,38 +74,38 @@ class Clickwrap {
73
74
  // use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
74
75
  update = async (params = {}) => {
75
76
  if (!this.attributes.id) {
76
- throw new Error('Current object has no id')
77
+ throw new errors.EmptyPropertyError('Current object has no id')
77
78
  }
78
79
 
79
80
  if (!isObject(params)) {
80
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
81
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
81
82
  }
82
83
 
83
84
  params.id = this.attributes.id
84
85
  if (params['id'] && !isInt(params['id'])) {
85
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
86
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
86
87
  }
87
88
  if (params['name'] && !isString(params['name'])) {
88
- throw new Error(`Bad parameter: name must be of type String, received ${getType(name)}`)
89
+ throw new errors.InvalidParameterError(`Bad parameter: name must be of type String, received ${getType(name)}`)
89
90
  }
90
91
  if (params['body'] && !isString(params['body'])) {
91
- throw new Error(`Bad parameter: body must be of type String, received ${getType(body)}`)
92
+ throw new errors.InvalidParameterError(`Bad parameter: body must be of type String, received ${getType(body)}`)
92
93
  }
93
94
  if (params['use_with_bundles'] && !isString(params['use_with_bundles'])) {
94
- throw new Error(`Bad parameter: use_with_bundles must be of type String, received ${getType(use_with_bundles)}`)
95
+ throw new errors.InvalidParameterError(`Bad parameter: use_with_bundles must be of type String, received ${getType(use_with_bundles)}`)
95
96
  }
96
97
  if (params['use_with_inboxes'] && !isString(params['use_with_inboxes'])) {
97
- throw new Error(`Bad parameter: use_with_inboxes must be of type String, received ${getType(use_with_inboxes)}`)
98
+ throw new errors.InvalidParameterError(`Bad parameter: use_with_inboxes must be of type String, received ${getType(use_with_inboxes)}`)
98
99
  }
99
100
  if (params['use_with_users'] && !isString(params['use_with_users'])) {
100
- throw new Error(`Bad parameter: use_with_users must be of type String, received ${getType(use_with_users)}`)
101
+ throw new errors.InvalidParameterError(`Bad parameter: use_with_users must be of type String, received ${getType(use_with_users)}`)
101
102
  }
102
103
 
103
104
  if (!params['id']) {
104
105
  if (this.attributes.id) {
105
106
  params['id'] = this.id
106
107
  } else {
107
- throw new Error('Parameter missing: id')
108
+ throw new errors.MissingParameterError('Parameter missing: id')
108
109
  }
109
110
  }
110
111
 
@@ -115,23 +116,23 @@ class Clickwrap {
115
116
 
116
117
  delete = async (params = {}) => {
117
118
  if (!this.attributes.id) {
118
- throw new Error('Current object has no id')
119
+ throw new errors.EmptyPropertyError('Current object has no id')
119
120
  }
120
121
 
121
122
  if (!isObject(params)) {
122
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
123
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
123
124
  }
124
125
 
125
126
  params.id = this.attributes.id
126
127
  if (params['id'] && !isInt(params['id'])) {
127
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
128
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
128
129
  }
129
130
 
130
131
  if (!params['id']) {
131
132
  if (this.attributes.id) {
132
133
  params['id'] = this.id
133
134
  } else {
134
- throw new Error('Parameter missing: id')
135
+ throw new errors.MissingParameterError('Parameter missing: id')
135
136
  }
136
137
  }
137
138
 
@@ -158,11 +159,11 @@ class Clickwrap {
158
159
  // per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
159
160
  static list = async (params = {}, options = {}) => {
160
161
  if (params['cursor'] && !isString(params['cursor'])) {
161
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
162
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
162
163
  }
163
164
 
164
165
  if (params['per_page'] && !isInt(params['per_page'])) {
165
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
166
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
166
167
  }
167
168
 
168
169
  const response = await Api.sendRequest(`/clickwraps`, 'GET', params, options)
@@ -177,17 +178,17 @@ class Clickwrap {
177
178
  // id (required) - int64 - Clickwrap ID.
178
179
  static find = async (id, params = {}, options = {}) => {
179
180
  if (!isObject(params)) {
180
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
181
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
181
182
  }
182
183
 
183
184
  params['id'] = id
184
185
 
185
186
  if (!params['id']) {
186
- throw new Error('Parameter missing: id')
187
+ throw new errors.MissingParameterError('Parameter missing: id')
187
188
  }
188
189
 
189
190
  if (params['id'] && !isInt(params['id'])) {
190
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
191
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
191
192
  }
192
193
 
193
194
  const response = await Api.sendRequest(`/clickwraps/${params['id']}`, 'GET', params, options)
@@ -206,23 +207,23 @@ class Clickwrap {
206
207
  // use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
207
208
  static create = async (params = {}, options = {}) => {
208
209
  if (params['name'] && !isString(params['name'])) {
209
- throw new Error(`Bad parameter: name must be of type String, received ${getType(name)}`)
210
+ throw new errors.InvalidParameterError(`Bad parameter: name must be of type String, received ${getType(name)}`)
210
211
  }
211
212
 
212
213
  if (params['body'] && !isString(params['body'])) {
213
- throw new Error(`Bad parameter: body must be of type String, received ${getType(body)}`)
214
+ throw new errors.InvalidParameterError(`Bad parameter: body must be of type String, received ${getType(body)}`)
214
215
  }
215
216
 
216
217
  if (params['use_with_bundles'] && !isString(params['use_with_bundles'])) {
217
- throw new Error(`Bad parameter: use_with_bundles must be of type String, received ${getType(use_with_bundles)}`)
218
+ throw new errors.InvalidParameterError(`Bad parameter: use_with_bundles must be of type String, received ${getType(use_with_bundles)}`)
218
219
  }
219
220
 
220
221
  if (params['use_with_inboxes'] && !isString(params['use_with_inboxes'])) {
221
- throw new Error(`Bad parameter: use_with_inboxes must be of type String, received ${getType(use_with_inboxes)}`)
222
+ throw new errors.InvalidParameterError(`Bad parameter: use_with_inboxes must be of type String, received ${getType(use_with_inboxes)}`)
222
223
  }
223
224
 
224
225
  if (params['use_with_users'] && !isString(params['use_with_users'])) {
225
- throw new Error(`Bad parameter: use_with_users must be of type String, received ${getType(use_with_users)}`)
226
+ throw new errors.InvalidParameterError(`Bad parameter: use_with_users must be of type String, received ${getType(use_with_users)}`)
226
227
  }
227
228
 
228
229
  const response = await Api.sendRequest(`/clickwraps`, '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
 
@@ -40,11 +41,11 @@ class DnsRecord {
40
41
  // per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
41
42
  static list = async (params = {}, options = {}) => {
42
43
  if (params['cursor'] && !isString(params['cursor'])) {
43
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
44
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
44
45
  }
45
46
 
46
47
  if (params['per_page'] && !isInt(params['per_page'])) {
47
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
48
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
48
49
  }
49
50
 
50
51
  const response = await Api.sendRequest(`/dns_records`, 'GET', 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
 
@@ -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
 
@@ -98,7 +99,7 @@ class ExternalEvent {
98
99
 
99
100
  save = () => {
100
101
  if (this.attributes['id']) {
101
- throw new Error('The ExternalEvent object doesn\'t support updates.')
102
+ throw new errors.NotImplementedError('The ExternalEvent object doesn\'t support updates.')
102
103
  } else {
103
104
  const newObject = ExternalEvent.create(this.attributes, this.options)
104
105
  this.attributes = { ...newObject.attributes }
@@ -118,11 +119,11 @@ class ExternalEvent {
118
119
  // filter_lteq - object - If set, return records where the specified field is less than or equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status` or `folder_behavior_id`. Valid field combinations are `[ event_type, status, created_at ]`, `[ event_type, created_at ]` or `[ status, created_at ]`.
119
120
  static list = async (params = {}, options = {}) => {
120
121
  if (params['cursor'] && !isString(params['cursor'])) {
121
- throw new Error(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
122
+ throw new errors.InvalidParameterError(`Bad parameter: cursor must be of type String, received ${getType(cursor)}`)
122
123
  }
123
124
 
124
125
  if (params['per_page'] && !isInt(params['per_page'])) {
125
- throw new Error(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
126
+ throw new errors.InvalidParameterError(`Bad parameter: per_page must be of type Int, received ${getType(per_page)}`)
126
127
  }
127
128
 
128
129
  const response = await Api.sendRequest(`/external_events`, 'GET', params, options)
@@ -137,17 +138,17 @@ class ExternalEvent {
137
138
  // id (required) - int64 - External Event ID.
138
139
  static find = async (id, params = {}, options = {}) => {
139
140
  if (!isObject(params)) {
140
- throw new Error(`Bad parameter: params must be of type object, received ${getType(params)}`)
141
+ throw new errors.InvalidParameterError(`Bad parameter: params must be of type object, received ${getType(params)}`)
141
142
  }
142
143
 
143
144
  params['id'] = id
144
145
 
145
146
  if (!params['id']) {
146
- throw new Error('Parameter missing: id')
147
+ throw new errors.MissingParameterError('Parameter missing: id')
147
148
  }
148
149
 
149
150
  if (params['id'] && !isInt(params['id'])) {
150
- throw new Error(`Bad parameter: id must be of type Int, received ${getType(id)}`)
151
+ throw new errors.InvalidParameterError(`Bad parameter: id must be of type Int, received ${getType(id)}`)
151
152
  }
152
153
 
153
154
  const response = await Api.sendRequest(`/external_events/${params['id']}`, 'GET', params, options)
@@ -163,19 +164,19 @@ class ExternalEvent {
163
164
  // body (required) - string - Event body
164
165
  static create = async (params = {}, options = {}) => {
165
166
  if (!params['status']) {
166
- throw new Error('Parameter missing: status')
167
+ throw new errors.MissingParameterError('Parameter missing: status')
167
168
  }
168
169
 
169
170
  if (!params['body']) {
170
- throw new Error('Parameter missing: body')
171
+ throw new errors.MissingParameterError('Parameter missing: body')
171
172
  }
172
173
 
173
174
  if (params['status'] && !isString(params['status'])) {
174
- throw new Error(`Bad parameter: status must be of type String, received ${getType(status)}`)
175
+ throw new errors.InvalidParameterError(`Bad parameter: status must be of type String, received ${getType(status)}`)
175
176
  }
176
177
 
177
178
  if (params['body'] && !isString(params['body'])) {
178
- throw new Error(`Bad parameter: body must be of type String, received ${getType(body)}`)
179
+ throw new errors.InvalidParameterError(`Bad parameter: body must be of type String, received ${getType(body)}`)
179
180
  }
180
181
 
181
182
  const response = await Api.sendRequest(`/external_events`, 'POST', params, options)