files.com 1.1.19 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (164) hide show
  1. package/.eslintrc.js +0 -3
  2. package/_VERSION +1 -1
  3. package/lib/Api.js +1 -1
  4. package/lib/Errors.js +345 -334
  5. package/lib/Files.js +1 -1
  6. package/lib/models/ActionNotificationExport.js +25 -25
  7. package/lib/models/ActionNotificationExportResult.js +10 -10
  8. package/lib/models/ActionWebhookFailure.js +5 -9
  9. package/lib/models/ApiKey.js +62 -70
  10. package/lib/models/App.js +5 -5
  11. package/lib/models/As2IncomingMessage.js +7 -7
  12. package/lib/models/As2OutgoingMessage.js +7 -7
  13. package/lib/models/As2Partner.js +54 -58
  14. package/lib/models/As2Station.js +51 -55
  15. package/lib/models/Automation.js +102 -110
  16. package/lib/models/AutomationRun.js +13 -13
  17. package/lib/models/BandwidthSnapshot.js +5 -5
  18. package/lib/models/Behavior.js +77 -85
  19. package/lib/models/Bundle.js +102 -110
  20. package/lib/models/BundleDownload.js +9 -9
  21. package/lib/models/BundleNotification.js +37 -41
  22. package/lib/models/BundleRecipient.js +22 -22
  23. package/lib/models/BundleRegistration.js +7 -7
  24. package/lib/models/Clickwrap.js +52 -56
  25. package/lib/models/DnsRecord.js +5 -5
  26. package/lib/models/EmailIncomingMessage.js +5 -5
  27. package/lib/models/ExternalEvent.js +18 -18
  28. package/lib/models/File.js +89 -93
  29. package/lib/models/FileComment.js +41 -45
  30. package/lib/models/FileCommentReaction.js +15 -19
  31. package/lib/models/FileMigration.js +5 -5
  32. package/lib/models/Folder.js +24 -24
  33. package/lib/models/FormFieldSet.js +44 -48
  34. package/lib/models/GpgKey.js +53 -57
  35. package/lib/models/Group.js +51 -55
  36. package/lib/models/GroupUser.js +53 -57
  37. package/lib/models/History.js +72 -72
  38. package/lib/models/HistoryExport.js +51 -51
  39. package/lib/models/HistoryExportResult.js +10 -10
  40. package/lib/models/InboxRecipient.js +22 -22
  41. package/lib/models/InboxRegistration.js +7 -7
  42. package/lib/models/InboxUpload.js +9 -9
  43. package/lib/models/Invoice.js +12 -12
  44. package/lib/models/IpAddress.js +17 -17
  45. package/lib/models/Lock.js +27 -31
  46. package/lib/models/Message.js +60 -64
  47. package/lib/models/MessageComment.js +46 -50
  48. package/lib/models/MessageCommentReaction.js +27 -31
  49. package/lib/models/MessageReaction.js +27 -31
  50. package/lib/models/Notification.js +66 -70
  51. package/lib/models/Payment.js +12 -12
  52. package/lib/models/Permission.js +28 -32
  53. package/lib/models/Priority.js +9 -9
  54. package/lib/models/Project.js +39 -43
  55. package/lib/models/PublicKey.js +46 -50
  56. package/lib/models/RemoteBandwidthSnapshot.js +5 -5
  57. package/lib/models/RemoteServer.js +306 -310
  58. package/lib/models/Request.js +33 -37
  59. package/lib/models/Session.js +11 -15
  60. package/lib/models/SettingsChange.js +5 -5
  61. package/lib/models/SftpHostKey.js +40 -44
  62. package/lib/models/ShareGroup.js +50 -54
  63. package/lib/models/Site.js +138 -138
  64. package/lib/models/Snapshot.js +44 -48
  65. package/lib/models/SsoStrategy.js +15 -19
  66. package/lib/models/Style.js +17 -21
  67. package/lib/models/UsageDailySnapshot.js +5 -5
  68. package/lib/models/UsageSnapshot.js +5 -5
  69. package/lib/models/User.js +156 -172
  70. package/lib/models/UserCipherUse.js +7 -7
  71. package/lib/models/UserRequest.js +26 -30
  72. package/lib/models/WebhookTest.js +15 -15
  73. package/package.json +6 -2
  74. package/src/Api.js +2 -1
  75. package/src/Errors.js +189 -178
  76. package/src/Files.js +1 -1
  77. package/src/models/AccountLineItem.js +5 -2
  78. package/src/models/Action.js +5 -2
  79. package/src/models/ActionNotificationExport.js +36 -35
  80. package/src/models/ActionNotificationExportResult.js +15 -13
  81. package/src/models/ActionWebhookFailure.js +9 -8
  82. package/src/models/ApiKey.js +69 -72
  83. package/src/models/App.js +10 -8
  84. package/src/models/As2IncomingMessage.js +12 -10
  85. package/src/models/As2OutgoingMessage.js +12 -10
  86. package/src/models/As2Partner.js +61 -60
  87. package/src/models/As2Station.js +58 -57
  88. package/src/models/Auto.js +5 -2
  89. package/src/models/Automation.js +121 -110
  90. package/src/models/AutomationRun.js +18 -17
  91. package/src/models/BandwidthSnapshot.js +10 -8
  92. package/src/models/Behavior.js +85 -86
  93. package/src/models/Bundle.js +121 -110
  94. package/src/models/BundleDownload.js +14 -12
  95. package/src/models/BundleNotification.js +40 -43
  96. package/src/models/BundleRecipient.js +33 -32
  97. package/src/models/BundleRegistration.js +12 -10
  98. package/src/models/Clickwrap.js +60 -58
  99. package/src/models/DnsRecord.js +10 -8
  100. package/src/models/EmailIncomingMessage.js +10 -8
  101. package/src/models/Errors.js +5 -2
  102. package/src/models/ExternalEvent.js +29 -29
  103. package/src/models/File.js +116 -108
  104. package/src/models/FileAction.js +5 -2
  105. package/src/models/FileComment.js +45 -46
  106. package/src/models/FileCommentReaction.js +26 -26
  107. package/src/models/FileMigration.js +10 -8
  108. package/src/models/FileUploadPart.js +5 -2
  109. package/src/models/Folder.js +32 -29
  110. package/src/models/FormField.js +5 -2
  111. package/src/models/FormFieldSet.js +49 -50
  112. package/src/models/GpgKey.js +60 -59
  113. package/src/models/Group.js +58 -57
  114. package/src/models/GroupUser.js +60 -58
  115. package/src/models/History.js +77 -74
  116. package/src/models/HistoryExport.js +62 -61
  117. package/src/models/HistoryExportResult.js +15 -13
  118. package/src/models/Image.js +5 -2
  119. package/src/models/InboxRecipient.js +33 -32
  120. package/src/models/InboxRegistration.js +12 -10
  121. package/src/models/InboxUpload.js +14 -12
  122. package/src/models/Invoice.js +17 -14
  123. package/src/models/InvoiceLineItem.js +5 -2
  124. package/src/models/IpAddress.js +22 -20
  125. package/src/models/Lock.js +36 -36
  126. package/src/models/Message.js +66 -66
  127. package/src/models/MessageComment.js +50 -52
  128. package/src/models/MessageCommentReaction.js +38 -40
  129. package/src/models/MessageReaction.js +38 -40
  130. package/src/models/Notification.js +74 -72
  131. package/src/models/Payment.js +17 -14
  132. package/src/models/PaymentLineItem.js +5 -2
  133. package/src/models/Permission.js +39 -40
  134. package/src/models/Preview.js +5 -2
  135. package/src/models/Priority.js +14 -12
  136. package/src/models/Project.js +43 -45
  137. package/src/models/PublicIpAddress.js +5 -2
  138. package/src/models/PublicKey.js +50 -52
  139. package/src/models/RemoteBandwidthSnapshot.js +10 -8
  140. package/src/models/RemoteServer.js +380 -312
  141. package/src/models/RemoteServerConfigurationFile.js +5 -2
  142. package/src/models/Request.js +44 -46
  143. package/src/models/Session.js +22 -22
  144. package/src/models/SettingsChange.js +10 -8
  145. package/src/models/SftpHostKey.js +45 -46
  146. package/src/models/ShareGroup.js +56 -56
  147. package/src/models/ShareGroupMember.js +5 -2
  148. package/src/models/Site.js +143 -142
  149. package/src/models/Snapshot.js +50 -50
  150. package/src/models/SsoStrategy.js +20 -21
  151. package/src/models/Status.js +5 -2
  152. package/src/models/Style.js +22 -23
  153. package/src/models/UsageDailySnapshot.js +10 -8
  154. package/src/models/UsageSnapshot.js +10 -8
  155. package/src/models/User.js +185 -168
  156. package/src/models/UserCipherUse.js +12 -10
  157. package/src/models/UserRequest.js +37 -39
  158. package/src/models/WebhookTest.js +26 -24
  159. package/test/Api.test.js +163 -0
  160. package/test/{package.json → integration/package.json} +1 -1
  161. package/test/{src → integration/src}/index.js +1 -1
  162. package/test.sh +2 -1
  163. /package/test/{.babelrc → integration/.babelrc} +0 -0
  164. /package/test/{index.js → integration/index.js} +0 -0
package/lib/Errors.js CHANGED
@@ -17,11 +17,12 @@ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Re
17
17
  var FilesError = exports.FilesError = /*#__PURE__*/function (_Error) {
18
18
  (0, _inherits2.default)(FilesError, _Error);
19
19
  var _super = _createSuper(FilesError);
20
- function FilesError(message) {
20
+ function FilesError(message, code) {
21
21
  var _this;
22
22
  (0, _classCallCheck2.default)(this, FilesError);
23
23
  _this = _super.call(this, message);
24
24
  _this.name = 'FilesError';
25
+ _this.code = code;
25
26
  return _this;
26
27
  }
27
28
  return (0, _createClass2.default)(FilesError);
@@ -29,12 +30,22 @@ var FilesError = exports.FilesError = /*#__PURE__*/function (_Error) {
29
30
  var FilesApiError = exports.FilesApiError = /*#__PURE__*/function (_FilesError) {
30
31
  (0, _inherits2.default)(FilesApiError, _FilesError);
31
32
  var _super2 = _createSuper(FilesApiError);
32
- function FilesApiError(message, code) {
33
+ function FilesApiError(message, code, errorData) {
33
34
  var _this2;
34
35
  (0, _classCallCheck2.default)(this, FilesApiError);
35
- _this2 = _super2.call(this, message);
36
+ _this2 = _super2.call(this, message, code);
36
37
  _this2.name = 'FilesApiError';
37
- _this2.code = code;
38
+ if (errorData) {
39
+ _this2.detail = errorData.detail;
40
+ _this2.error = errorData.error;
41
+ _this2.errors = errorData.errors;
42
+ _this2.httpCode = errorData['http-code'];
43
+ _this2.instance = errorData.instance;
44
+ _this2.modelErrors = errorData['model-errors'];
45
+ _this2.title = errorData.title;
46
+ _this2.type = errorData.type;
47
+ _this2.data = errorData.data;
48
+ }
38
49
  return _this2;
39
50
  }
40
51
  return (0, _createClass2.default)(FilesApiError);
@@ -54,8 +65,8 @@ var handleErrorResponse = exports.handleErrorResponse = function handleErrorResp
54
65
  var message = ((_errorData = errorData) === null || _errorData === void 0 ? void 0 : _errorData.error) || (response === null || response === void 0 ? void 0 : response.statusText) || error.message;
55
66
  var code = (response === null || response === void 0 ? void 0 : response.status) || ((_errorData2 = errorData) === null || _errorData2 === void 0 ? void 0 : _errorData2['http-code']) || 0;
56
67
  if (!errorData) {
57
- _Logger.default.error('FilesApiError Exception:', code, message);
58
- throw new FilesApiError(message, code);
68
+ _Logger.default.debug('FilesApiError Exception:', code, message);
69
+ throw new FilesError(message, code);
59
70
  }
60
71
  if (Array.isArray(errorData)) {
61
72
  var _errorData3 = errorData;
@@ -63,8 +74,8 @@ var handleErrorResponse = exports.handleErrorResponse = function handleErrorResp
63
74
  errorData = _errorData4[0];
64
75
  }
65
76
  if (!errorData.type) {
66
- _Logger.default.error('FilesApiError Exception:', code, message);
67
- throw new FilesApiError(message, code);
77
+ _Logger.default.debug('FilesApiError Exception:', code, message);
78
+ throw new FilesError(message, code);
68
79
  }
69
80
  var parts = errorData.type.split('/');
70
81
  var className;
@@ -82,8 +93,8 @@ var handleErrorResponse = exports.handleErrorResponse = function handleErrorResp
82
93
  if (!errorClasses[className]) {
83
94
  _Logger.default.debug("Unable to find exception with name of ".concat(className, " - falling back to FilesApiError"));
84
95
  }
85
- _Logger.default.error("".concat(ErrorClass.name, " Exception >"), code, message);
86
- throw new ErrorClass(message, code);
96
+ _Logger.default.debug("".concat(ErrorClass.name, " Exception >"), code, message);
97
+ throw new ErrorClass(message, code, errorData);
87
98
  };
88
99
 
89
100
  // general errors
@@ -157,10 +168,10 @@ errorClasses.NotImplementedError = NotImplementedError;
157
168
  var BadRequestError = exports.BadRequestError = /*#__PURE__*/function (_FilesApiError) {
158
169
  (0, _inherits2.default)(BadRequestError, _FilesApiError);
159
170
  var _super8 = _createSuper(BadRequestError);
160
- function BadRequestError(message, code) {
171
+ function BadRequestError(message, code, errorData) {
161
172
  var _this8;
162
173
  (0, _classCallCheck2.default)(this, BadRequestError);
163
- _this8 = _super8.call(this, message, code);
174
+ _this8 = _super8.call(this, message, code, errorData);
164
175
  _this8.name = 'BadRequestError';
165
176
  return _this8;
166
177
  }
@@ -170,10 +181,10 @@ errorClasses.BadRequestError = BadRequestError;
170
181
  var NotAuthenticatedError = exports.NotAuthenticatedError = /*#__PURE__*/function (_FilesApiError2) {
171
182
  (0, _inherits2.default)(NotAuthenticatedError, _FilesApiError2);
172
183
  var _super9 = _createSuper(NotAuthenticatedError);
173
- function NotAuthenticatedError(message, code) {
184
+ function NotAuthenticatedError(message, code, errorData) {
174
185
  var _this9;
175
186
  (0, _classCallCheck2.default)(this, NotAuthenticatedError);
176
- _this9 = _super9.call(this, message, code);
187
+ _this9 = _super9.call(this, message, code, errorData);
177
188
  _this9.name = 'NotAuthenticatedError';
178
189
  return _this9;
179
190
  }
@@ -183,10 +194,10 @@ errorClasses.NotAuthenticatedError = NotAuthenticatedError;
183
194
  var NotAuthorizedError = exports.NotAuthorizedError = /*#__PURE__*/function (_FilesApiError3) {
184
195
  (0, _inherits2.default)(NotAuthorizedError, _FilesApiError3);
185
196
  var _super10 = _createSuper(NotAuthorizedError);
186
- function NotAuthorizedError(message, code) {
197
+ function NotAuthorizedError(message, code, errorData) {
187
198
  var _this10;
188
199
  (0, _classCallCheck2.default)(this, NotAuthorizedError);
189
- _this10 = _super10.call(this, message, code);
200
+ _this10 = _super10.call(this, message, code, errorData);
190
201
  _this10.name = 'NotAuthorizedError';
191
202
  return _this10;
192
203
  }
@@ -196,10 +207,10 @@ errorClasses.NotAuthorizedError = NotAuthorizedError;
196
207
  var NotFoundError = exports.NotFoundError = /*#__PURE__*/function (_FilesApiError4) {
197
208
  (0, _inherits2.default)(NotFoundError, _FilesApiError4);
198
209
  var _super11 = _createSuper(NotFoundError);
199
- function NotFoundError(message, code) {
210
+ function NotFoundError(message, code, errorData) {
200
211
  var _this11;
201
212
  (0, _classCallCheck2.default)(this, NotFoundError);
202
- _this11 = _super11.call(this, message, code);
213
+ _this11 = _super11.call(this, message, code, errorData);
203
214
  _this11.name = 'NotFoundError';
204
215
  return _this11;
205
216
  }
@@ -209,10 +220,10 @@ errorClasses.NotFoundError = NotFoundError;
209
220
  var ProcessingFailureError = exports.ProcessingFailureError = /*#__PURE__*/function (_FilesApiError5) {
210
221
  (0, _inherits2.default)(ProcessingFailureError, _FilesApiError5);
211
222
  var _super12 = _createSuper(ProcessingFailureError);
212
- function ProcessingFailureError(message, code) {
223
+ function ProcessingFailureError(message, code, errorData) {
213
224
  var _this12;
214
225
  (0, _classCallCheck2.default)(this, ProcessingFailureError);
215
- _this12 = _super12.call(this, message, code);
226
+ _this12 = _super12.call(this, message, code, errorData);
216
227
  _this12.name = 'ProcessingFailureError';
217
228
  return _this12;
218
229
  }
@@ -222,10 +233,10 @@ errorClasses.ProcessingFailureError = ProcessingFailureError;
222
233
  var RateLimitedError = exports.RateLimitedError = /*#__PURE__*/function (_FilesApiError6) {
223
234
  (0, _inherits2.default)(RateLimitedError, _FilesApiError6);
224
235
  var _super13 = _createSuper(RateLimitedError);
225
- function RateLimitedError(message, code) {
236
+ function RateLimitedError(message, code, errorData) {
226
237
  var _this13;
227
238
  (0, _classCallCheck2.default)(this, RateLimitedError);
228
- _this13 = _super13.call(this, message, code);
239
+ _this13 = _super13.call(this, message, code, errorData);
229
240
  _this13.name = 'RateLimitedError';
230
241
  return _this13;
231
242
  }
@@ -235,10 +246,10 @@ errorClasses.RateLimitedError = RateLimitedError;
235
246
  var ServiceUnavailableError = exports.ServiceUnavailableError = /*#__PURE__*/function (_FilesApiError7) {
236
247
  (0, _inherits2.default)(ServiceUnavailableError, _FilesApiError7);
237
248
  var _super14 = _createSuper(ServiceUnavailableError);
238
- function ServiceUnavailableError(message, code) {
249
+ function ServiceUnavailableError(message, code, errorData) {
239
250
  var _this14;
240
251
  (0, _classCallCheck2.default)(this, ServiceUnavailableError);
241
- _this14 = _super14.call(this, message, code);
252
+ _this14 = _super14.call(this, message, code, errorData);
242
253
  _this14.name = 'ServiceUnavailableError';
243
254
  return _this14;
244
255
  }
@@ -248,10 +259,10 @@ errorClasses.ServiceUnavailableError = ServiceUnavailableError;
248
259
  var SiteConfigurationError = exports.SiteConfigurationError = /*#__PURE__*/function (_FilesApiError8) {
249
260
  (0, _inherits2.default)(SiteConfigurationError, _FilesApiError8);
250
261
  var _super15 = _createSuper(SiteConfigurationError);
251
- function SiteConfigurationError(message, code) {
262
+ function SiteConfigurationError(message, code, errorData) {
252
263
  var _this15;
253
264
  (0, _classCallCheck2.default)(this, SiteConfigurationError);
254
- _this15 = _super15.call(this, message, code);
265
+ _this15 = _super15.call(this, message, code, errorData);
255
266
  _this15.name = 'SiteConfigurationError';
256
267
  return _this15;
257
268
  }
@@ -263,10 +274,10 @@ errorClasses.SiteConfigurationError = SiteConfigurationError;
263
274
  var BadRequest_AgentUpgradeRequiredError = exports.BadRequest_AgentUpgradeRequiredError = /*#__PURE__*/function (_BadRequestError) {
264
275
  (0, _inherits2.default)(BadRequest_AgentUpgradeRequiredError, _BadRequestError);
265
276
  var _super16 = _createSuper(BadRequest_AgentUpgradeRequiredError);
266
- function BadRequest_AgentUpgradeRequiredError(message, code) {
277
+ function BadRequest_AgentUpgradeRequiredError(message, code, errorData) {
267
278
  var _this16;
268
279
  (0, _classCallCheck2.default)(this, BadRequest_AgentUpgradeRequiredError);
269
- _this16 = _super16.call(this, message, code);
280
+ _this16 = _super16.call(this, message, code, errorData);
270
281
  _this16.name = 'BadRequest_AgentUpgradeRequiredError';
271
282
  return _this16;
272
283
  }
@@ -276,10 +287,10 @@ errorClasses.BadRequest_AgentUpgradeRequiredError = BadRequest_AgentUpgradeRequi
276
287
  var BadRequest_AttachmentTooLargeError = exports.BadRequest_AttachmentTooLargeError = /*#__PURE__*/function (_BadRequestError2) {
277
288
  (0, _inherits2.default)(BadRequest_AttachmentTooLargeError, _BadRequestError2);
278
289
  var _super17 = _createSuper(BadRequest_AttachmentTooLargeError);
279
- function BadRequest_AttachmentTooLargeError(message, code) {
290
+ function BadRequest_AttachmentTooLargeError(message, code, errorData) {
280
291
  var _this17;
281
292
  (0, _classCallCheck2.default)(this, BadRequest_AttachmentTooLargeError);
282
- _this17 = _super17.call(this, message, code);
293
+ _this17 = _super17.call(this, message, code, errorData);
283
294
  _this17.name = 'BadRequest_AttachmentTooLargeError';
284
295
  return _this17;
285
296
  }
@@ -289,10 +300,10 @@ errorClasses.BadRequest_AttachmentTooLargeError = BadRequest_AttachmentTooLargeE
289
300
  var BadRequest_CannotDownloadDirectoryError = exports.BadRequest_CannotDownloadDirectoryError = /*#__PURE__*/function (_BadRequestError3) {
290
301
  (0, _inherits2.default)(BadRequest_CannotDownloadDirectoryError, _BadRequestError3);
291
302
  var _super18 = _createSuper(BadRequest_CannotDownloadDirectoryError);
292
- function BadRequest_CannotDownloadDirectoryError(message, code) {
303
+ function BadRequest_CannotDownloadDirectoryError(message, code, errorData) {
293
304
  var _this18;
294
305
  (0, _classCallCheck2.default)(this, BadRequest_CannotDownloadDirectoryError);
295
- _this18 = _super18.call(this, message, code);
306
+ _this18 = _super18.call(this, message, code, errorData);
296
307
  _this18.name = 'BadRequest_CannotDownloadDirectoryError';
297
308
  return _this18;
298
309
  }
@@ -302,10 +313,10 @@ errorClasses.BadRequest_CannotDownloadDirectoryError = BadRequest_CannotDownload
302
313
  var BadRequest_CantMoveWithMultipleLocationsError = exports.BadRequest_CantMoveWithMultipleLocationsError = /*#__PURE__*/function (_BadRequestError4) {
303
314
  (0, _inherits2.default)(BadRequest_CantMoveWithMultipleLocationsError, _BadRequestError4);
304
315
  var _super19 = _createSuper(BadRequest_CantMoveWithMultipleLocationsError);
305
- function BadRequest_CantMoveWithMultipleLocationsError(message, code) {
316
+ function BadRequest_CantMoveWithMultipleLocationsError(message, code, errorData) {
306
317
  var _this19;
307
318
  (0, _classCallCheck2.default)(this, BadRequest_CantMoveWithMultipleLocationsError);
308
- _this19 = _super19.call(this, message, code);
319
+ _this19 = _super19.call(this, message, code, errorData);
309
320
  _this19.name = 'BadRequest_CantMoveWithMultipleLocationsError';
310
321
  return _this19;
311
322
  }
@@ -315,10 +326,10 @@ errorClasses.BadRequest_CantMoveWithMultipleLocationsError = BadRequest_CantMove
315
326
  var BadRequest_DatetimeParseError = exports.BadRequest_DatetimeParseError = /*#__PURE__*/function (_BadRequestError5) {
316
327
  (0, _inherits2.default)(BadRequest_DatetimeParseError, _BadRequestError5);
317
328
  var _super20 = _createSuper(BadRequest_DatetimeParseError);
318
- function BadRequest_DatetimeParseError(message, code) {
329
+ function BadRequest_DatetimeParseError(message, code, errorData) {
319
330
  var _this20;
320
331
  (0, _classCallCheck2.default)(this, BadRequest_DatetimeParseError);
321
- _this20 = _super20.call(this, message, code);
332
+ _this20 = _super20.call(this, message, code, errorData);
322
333
  _this20.name = 'BadRequest_DatetimeParseError';
323
334
  return _this20;
324
335
  }
@@ -328,10 +339,10 @@ errorClasses.BadRequest_DatetimeParseError = BadRequest_DatetimeParseError;
328
339
  var BadRequest_DestinationSameError = exports.BadRequest_DestinationSameError = /*#__PURE__*/function (_BadRequestError6) {
329
340
  (0, _inherits2.default)(BadRequest_DestinationSameError, _BadRequestError6);
330
341
  var _super21 = _createSuper(BadRequest_DestinationSameError);
331
- function BadRequest_DestinationSameError(message, code) {
342
+ function BadRequest_DestinationSameError(message, code, errorData) {
332
343
  var _this21;
333
344
  (0, _classCallCheck2.default)(this, BadRequest_DestinationSameError);
334
- _this21 = _super21.call(this, message, code);
345
+ _this21 = _super21.call(this, message, code, errorData);
335
346
  _this21.name = 'BadRequest_DestinationSameError';
336
347
  return _this21;
337
348
  }
@@ -341,10 +352,10 @@ errorClasses.BadRequest_DestinationSameError = BadRequest_DestinationSameError;
341
352
  var BadRequest_FolderMustNotBeAFileError = exports.BadRequest_FolderMustNotBeAFileError = /*#__PURE__*/function (_BadRequestError7) {
342
353
  (0, _inherits2.default)(BadRequest_FolderMustNotBeAFileError, _BadRequestError7);
343
354
  var _super22 = _createSuper(BadRequest_FolderMustNotBeAFileError);
344
- function BadRequest_FolderMustNotBeAFileError(message, code) {
355
+ function BadRequest_FolderMustNotBeAFileError(message, code, errorData) {
345
356
  var _this22;
346
357
  (0, _classCallCheck2.default)(this, BadRequest_FolderMustNotBeAFileError);
347
- _this22 = _super22.call(this, message, code);
358
+ _this22 = _super22.call(this, message, code, errorData);
348
359
  _this22.name = 'BadRequest_FolderMustNotBeAFileError';
349
360
  return _this22;
350
361
  }
@@ -354,10 +365,10 @@ errorClasses.BadRequest_FolderMustNotBeAFileError = BadRequest_FolderMustNotBeAF
354
365
  var BadRequest_InvalidBodyError = exports.BadRequest_InvalidBodyError = /*#__PURE__*/function (_BadRequestError8) {
355
366
  (0, _inherits2.default)(BadRequest_InvalidBodyError, _BadRequestError8);
356
367
  var _super23 = _createSuper(BadRequest_InvalidBodyError);
357
- function BadRequest_InvalidBodyError(message, code) {
368
+ function BadRequest_InvalidBodyError(message, code, errorData) {
358
369
  var _this23;
359
370
  (0, _classCallCheck2.default)(this, BadRequest_InvalidBodyError);
360
- _this23 = _super23.call(this, message, code);
371
+ _this23 = _super23.call(this, message, code, errorData);
361
372
  _this23.name = 'BadRequest_InvalidBodyError';
362
373
  return _this23;
363
374
  }
@@ -367,10 +378,10 @@ errorClasses.BadRequest_InvalidBodyError = BadRequest_InvalidBodyError;
367
378
  var BadRequest_InvalidCursorError = exports.BadRequest_InvalidCursorError = /*#__PURE__*/function (_BadRequestError9) {
368
379
  (0, _inherits2.default)(BadRequest_InvalidCursorError, _BadRequestError9);
369
380
  var _super24 = _createSuper(BadRequest_InvalidCursorError);
370
- function BadRequest_InvalidCursorError(message, code) {
381
+ function BadRequest_InvalidCursorError(message, code, errorData) {
371
382
  var _this24;
372
383
  (0, _classCallCheck2.default)(this, BadRequest_InvalidCursorError);
373
- _this24 = _super24.call(this, message, code);
384
+ _this24 = _super24.call(this, message, code, errorData);
374
385
  _this24.name = 'BadRequest_InvalidCursorError';
375
386
  return _this24;
376
387
  }
@@ -380,10 +391,10 @@ errorClasses.BadRequest_InvalidCursorError = BadRequest_InvalidCursorError;
380
391
  var BadRequest_InvalidCursorTypeForSortError = exports.BadRequest_InvalidCursorTypeForSortError = /*#__PURE__*/function (_BadRequestError10) {
381
392
  (0, _inherits2.default)(BadRequest_InvalidCursorTypeForSortError, _BadRequestError10);
382
393
  var _super25 = _createSuper(BadRequest_InvalidCursorTypeForSortError);
383
- function BadRequest_InvalidCursorTypeForSortError(message, code) {
394
+ function BadRequest_InvalidCursorTypeForSortError(message, code, errorData) {
384
395
  var _this25;
385
396
  (0, _classCallCheck2.default)(this, BadRequest_InvalidCursorTypeForSortError);
386
- _this25 = _super25.call(this, message, code);
397
+ _this25 = _super25.call(this, message, code, errorData);
387
398
  _this25.name = 'BadRequest_InvalidCursorTypeForSortError';
388
399
  return _this25;
389
400
  }
@@ -393,10 +404,10 @@ errorClasses.BadRequest_InvalidCursorTypeForSortError = BadRequest_InvalidCursor
393
404
  var BadRequest_InvalidEtagsError = exports.BadRequest_InvalidEtagsError = /*#__PURE__*/function (_BadRequestError11) {
394
405
  (0, _inherits2.default)(BadRequest_InvalidEtagsError, _BadRequestError11);
395
406
  var _super26 = _createSuper(BadRequest_InvalidEtagsError);
396
- function BadRequest_InvalidEtagsError(message, code) {
407
+ function BadRequest_InvalidEtagsError(message, code, errorData) {
397
408
  var _this26;
398
409
  (0, _classCallCheck2.default)(this, BadRequest_InvalidEtagsError);
399
- _this26 = _super26.call(this, message, code);
410
+ _this26 = _super26.call(this, message, code, errorData);
400
411
  _this26.name = 'BadRequest_InvalidEtagsError';
401
412
  return _this26;
402
413
  }
@@ -406,10 +417,10 @@ errorClasses.BadRequest_InvalidEtagsError = BadRequest_InvalidEtagsError;
406
417
  var BadRequest_InvalidFilterAliasCombinationError = exports.BadRequest_InvalidFilterAliasCombinationError = /*#__PURE__*/function (_BadRequestError12) {
407
418
  (0, _inherits2.default)(BadRequest_InvalidFilterAliasCombinationError, _BadRequestError12);
408
419
  var _super27 = _createSuper(BadRequest_InvalidFilterAliasCombinationError);
409
- function BadRequest_InvalidFilterAliasCombinationError(message, code) {
420
+ function BadRequest_InvalidFilterAliasCombinationError(message, code, errorData) {
410
421
  var _this27;
411
422
  (0, _classCallCheck2.default)(this, BadRequest_InvalidFilterAliasCombinationError);
412
- _this27 = _super27.call(this, message, code);
423
+ _this27 = _super27.call(this, message, code, errorData);
413
424
  _this27.name = 'BadRequest_InvalidFilterAliasCombinationError';
414
425
  return _this27;
415
426
  }
@@ -419,10 +430,10 @@ errorClasses.BadRequest_InvalidFilterAliasCombinationError = BadRequest_InvalidF
419
430
  var BadRequest_InvalidFilterCombinationError = exports.BadRequest_InvalidFilterCombinationError = /*#__PURE__*/function (_BadRequestError13) {
420
431
  (0, _inherits2.default)(BadRequest_InvalidFilterCombinationError, _BadRequestError13);
421
432
  var _super28 = _createSuper(BadRequest_InvalidFilterCombinationError);
422
- function BadRequest_InvalidFilterCombinationError(message, code) {
433
+ function BadRequest_InvalidFilterCombinationError(message, code, errorData) {
423
434
  var _this28;
424
435
  (0, _classCallCheck2.default)(this, BadRequest_InvalidFilterCombinationError);
425
- _this28 = _super28.call(this, message, code);
436
+ _this28 = _super28.call(this, message, code, errorData);
426
437
  _this28.name = 'BadRequest_InvalidFilterCombinationError';
427
438
  return _this28;
428
439
  }
@@ -432,10 +443,10 @@ errorClasses.BadRequest_InvalidFilterCombinationError = BadRequest_InvalidFilter
432
443
  var BadRequest_InvalidFilterFieldError = exports.BadRequest_InvalidFilterFieldError = /*#__PURE__*/function (_BadRequestError14) {
433
444
  (0, _inherits2.default)(BadRequest_InvalidFilterFieldError, _BadRequestError14);
434
445
  var _super29 = _createSuper(BadRequest_InvalidFilterFieldError);
435
- function BadRequest_InvalidFilterFieldError(message, code) {
446
+ function BadRequest_InvalidFilterFieldError(message, code, errorData) {
436
447
  var _this29;
437
448
  (0, _classCallCheck2.default)(this, BadRequest_InvalidFilterFieldError);
438
- _this29 = _super29.call(this, message, code);
449
+ _this29 = _super29.call(this, message, code, errorData);
439
450
  _this29.name = 'BadRequest_InvalidFilterFieldError';
440
451
  return _this29;
441
452
  }
@@ -445,10 +456,10 @@ errorClasses.BadRequest_InvalidFilterFieldError = BadRequest_InvalidFilterFieldE
445
456
  var BadRequest_InvalidFilterParamError = exports.BadRequest_InvalidFilterParamError = /*#__PURE__*/function (_BadRequestError15) {
446
457
  (0, _inherits2.default)(BadRequest_InvalidFilterParamError, _BadRequestError15);
447
458
  var _super30 = _createSuper(BadRequest_InvalidFilterParamError);
448
- function BadRequest_InvalidFilterParamError(message, code) {
459
+ function BadRequest_InvalidFilterParamError(message, code, errorData) {
449
460
  var _this30;
450
461
  (0, _classCallCheck2.default)(this, BadRequest_InvalidFilterParamError);
451
- _this30 = _super30.call(this, message, code);
462
+ _this30 = _super30.call(this, message, code, errorData);
452
463
  _this30.name = 'BadRequest_InvalidFilterParamError';
453
464
  return _this30;
454
465
  }
@@ -458,10 +469,10 @@ errorClasses.BadRequest_InvalidFilterParamError = BadRequest_InvalidFilterParamE
458
469
  var BadRequest_InvalidFilterParamValueError = exports.BadRequest_InvalidFilterParamValueError = /*#__PURE__*/function (_BadRequestError16) {
459
470
  (0, _inherits2.default)(BadRequest_InvalidFilterParamValueError, _BadRequestError16);
460
471
  var _super31 = _createSuper(BadRequest_InvalidFilterParamValueError);
461
- function BadRequest_InvalidFilterParamValueError(message, code) {
472
+ function BadRequest_InvalidFilterParamValueError(message, code, errorData) {
462
473
  var _this31;
463
474
  (0, _classCallCheck2.default)(this, BadRequest_InvalidFilterParamValueError);
464
- _this31 = _super31.call(this, message, code);
475
+ _this31 = _super31.call(this, message, code, errorData);
465
476
  _this31.name = 'BadRequest_InvalidFilterParamValueError';
466
477
  return _this31;
467
478
  }
@@ -471,10 +482,10 @@ errorClasses.BadRequest_InvalidFilterParamValueError = BadRequest_InvalidFilterP
471
482
  var BadRequest_InvalidInputEncodingError = exports.BadRequest_InvalidInputEncodingError = /*#__PURE__*/function (_BadRequestError17) {
472
483
  (0, _inherits2.default)(BadRequest_InvalidInputEncodingError, _BadRequestError17);
473
484
  var _super32 = _createSuper(BadRequest_InvalidInputEncodingError);
474
- function BadRequest_InvalidInputEncodingError(message, code) {
485
+ function BadRequest_InvalidInputEncodingError(message, code, errorData) {
475
486
  var _this32;
476
487
  (0, _classCallCheck2.default)(this, BadRequest_InvalidInputEncodingError);
477
- _this32 = _super32.call(this, message, code);
488
+ _this32 = _super32.call(this, message, code, errorData);
478
489
  _this32.name = 'BadRequest_InvalidInputEncodingError';
479
490
  return _this32;
480
491
  }
@@ -484,10 +495,10 @@ errorClasses.BadRequest_InvalidInputEncodingError = BadRequest_InvalidInputEncod
484
495
  var BadRequest_InvalidInterfaceError = exports.BadRequest_InvalidInterfaceError = /*#__PURE__*/function (_BadRequestError18) {
485
496
  (0, _inherits2.default)(BadRequest_InvalidInterfaceError, _BadRequestError18);
486
497
  var _super33 = _createSuper(BadRequest_InvalidInterfaceError);
487
- function BadRequest_InvalidInterfaceError(message, code) {
498
+ function BadRequest_InvalidInterfaceError(message, code, errorData) {
488
499
  var _this33;
489
500
  (0, _classCallCheck2.default)(this, BadRequest_InvalidInterfaceError);
490
- _this33 = _super33.call(this, message, code);
501
+ _this33 = _super33.call(this, message, code, errorData);
491
502
  _this33.name = 'BadRequest_InvalidInterfaceError';
492
503
  return _this33;
493
504
  }
@@ -497,10 +508,10 @@ errorClasses.BadRequest_InvalidInterfaceError = BadRequest_InvalidInterfaceError
497
508
  var BadRequest_InvalidOauthProviderError = exports.BadRequest_InvalidOauthProviderError = /*#__PURE__*/function (_BadRequestError19) {
498
509
  (0, _inherits2.default)(BadRequest_InvalidOauthProviderError, _BadRequestError19);
499
510
  var _super34 = _createSuper(BadRequest_InvalidOauthProviderError);
500
- function BadRequest_InvalidOauthProviderError(message, code) {
511
+ function BadRequest_InvalidOauthProviderError(message, code, errorData) {
501
512
  var _this34;
502
513
  (0, _classCallCheck2.default)(this, BadRequest_InvalidOauthProviderError);
503
- _this34 = _super34.call(this, message, code);
514
+ _this34 = _super34.call(this, message, code, errorData);
504
515
  _this34.name = 'BadRequest_InvalidOauthProviderError';
505
516
  return _this34;
506
517
  }
@@ -510,10 +521,10 @@ errorClasses.BadRequest_InvalidOauthProviderError = BadRequest_InvalidOauthProvi
510
521
  var BadRequest_InvalidPathError = exports.BadRequest_InvalidPathError = /*#__PURE__*/function (_BadRequestError20) {
511
522
  (0, _inherits2.default)(BadRequest_InvalidPathError, _BadRequestError20);
512
523
  var _super35 = _createSuper(BadRequest_InvalidPathError);
513
- function BadRequest_InvalidPathError(message, code) {
524
+ function BadRequest_InvalidPathError(message, code, errorData) {
514
525
  var _this35;
515
526
  (0, _classCallCheck2.default)(this, BadRequest_InvalidPathError);
516
- _this35 = _super35.call(this, message, code);
527
+ _this35 = _super35.call(this, message, code, errorData);
517
528
  _this35.name = 'BadRequest_InvalidPathError';
518
529
  return _this35;
519
530
  }
@@ -523,10 +534,10 @@ errorClasses.BadRequest_InvalidPathError = BadRequest_InvalidPathError;
523
534
  var BadRequest_InvalidReturnToUrlError = exports.BadRequest_InvalidReturnToUrlError = /*#__PURE__*/function (_BadRequestError21) {
524
535
  (0, _inherits2.default)(BadRequest_InvalidReturnToUrlError, _BadRequestError21);
525
536
  var _super36 = _createSuper(BadRequest_InvalidReturnToUrlError);
526
- function BadRequest_InvalidReturnToUrlError(message, code) {
537
+ function BadRequest_InvalidReturnToUrlError(message, code, errorData) {
527
538
  var _this36;
528
539
  (0, _classCallCheck2.default)(this, BadRequest_InvalidReturnToUrlError);
529
- _this36 = _super36.call(this, message, code);
540
+ _this36 = _super36.call(this, message, code, errorData);
530
541
  _this36.name = 'BadRequest_InvalidReturnToUrlError';
531
542
  return _this36;
532
543
  }
@@ -536,10 +547,10 @@ errorClasses.BadRequest_InvalidReturnToUrlError = BadRequest_InvalidReturnToUrlE
536
547
  var BadRequest_InvalidUploadOffsetError = exports.BadRequest_InvalidUploadOffsetError = /*#__PURE__*/function (_BadRequestError22) {
537
548
  (0, _inherits2.default)(BadRequest_InvalidUploadOffsetError, _BadRequestError22);
538
549
  var _super37 = _createSuper(BadRequest_InvalidUploadOffsetError);
539
- function BadRequest_InvalidUploadOffsetError(message, code) {
550
+ function BadRequest_InvalidUploadOffsetError(message, code, errorData) {
540
551
  var _this37;
541
552
  (0, _classCallCheck2.default)(this, BadRequest_InvalidUploadOffsetError);
542
- _this37 = _super37.call(this, message, code);
553
+ _this37 = _super37.call(this, message, code, errorData);
543
554
  _this37.name = 'BadRequest_InvalidUploadOffsetError';
544
555
  return _this37;
545
556
  }
@@ -549,10 +560,10 @@ errorClasses.BadRequest_InvalidUploadOffsetError = BadRequest_InvalidUploadOffse
549
560
  var BadRequest_InvalidUploadPartGapError = exports.BadRequest_InvalidUploadPartGapError = /*#__PURE__*/function (_BadRequestError23) {
550
561
  (0, _inherits2.default)(BadRequest_InvalidUploadPartGapError, _BadRequestError23);
551
562
  var _super38 = _createSuper(BadRequest_InvalidUploadPartGapError);
552
- function BadRequest_InvalidUploadPartGapError(message, code) {
563
+ function BadRequest_InvalidUploadPartGapError(message, code, errorData) {
553
564
  var _this38;
554
565
  (0, _classCallCheck2.default)(this, BadRequest_InvalidUploadPartGapError);
555
- _this38 = _super38.call(this, message, code);
566
+ _this38 = _super38.call(this, message, code, errorData);
556
567
  _this38.name = 'BadRequest_InvalidUploadPartGapError';
557
568
  return _this38;
558
569
  }
@@ -562,10 +573,10 @@ errorClasses.BadRequest_InvalidUploadPartGapError = BadRequest_InvalidUploadPart
562
573
  var BadRequest_InvalidUploadPartSizeError = exports.BadRequest_InvalidUploadPartSizeError = /*#__PURE__*/function (_BadRequestError24) {
563
574
  (0, _inherits2.default)(BadRequest_InvalidUploadPartSizeError, _BadRequestError24);
564
575
  var _super39 = _createSuper(BadRequest_InvalidUploadPartSizeError);
565
- function BadRequest_InvalidUploadPartSizeError(message, code) {
576
+ function BadRequest_InvalidUploadPartSizeError(message, code, errorData) {
566
577
  var _this39;
567
578
  (0, _classCallCheck2.default)(this, BadRequest_InvalidUploadPartSizeError);
568
- _this39 = _super39.call(this, message, code);
579
+ _this39 = _super39.call(this, message, code, errorData);
569
580
  _this39.name = 'BadRequest_InvalidUploadPartSizeError';
570
581
  return _this39;
571
582
  }
@@ -575,10 +586,10 @@ errorClasses.BadRequest_InvalidUploadPartSizeError = BadRequest_InvalidUploadPar
575
586
  var BadRequest_MethodNotAllowedError = exports.BadRequest_MethodNotAllowedError = /*#__PURE__*/function (_BadRequestError25) {
576
587
  (0, _inherits2.default)(BadRequest_MethodNotAllowedError, _BadRequestError25);
577
588
  var _super40 = _createSuper(BadRequest_MethodNotAllowedError);
578
- function BadRequest_MethodNotAllowedError(message, code) {
589
+ function BadRequest_MethodNotAllowedError(message, code, errorData) {
579
590
  var _this40;
580
591
  (0, _classCallCheck2.default)(this, BadRequest_MethodNotAllowedError);
581
- _this40 = _super40.call(this, message, code);
592
+ _this40 = _super40.call(this, message, code, errorData);
582
593
  _this40.name = 'BadRequest_MethodNotAllowedError';
583
594
  return _this40;
584
595
  }
@@ -588,10 +599,10 @@ errorClasses.BadRequest_MethodNotAllowedError = BadRequest_MethodNotAllowedError
588
599
  var BadRequest_NoValidInputParamsError = exports.BadRequest_NoValidInputParamsError = /*#__PURE__*/function (_BadRequestError26) {
589
600
  (0, _inherits2.default)(BadRequest_NoValidInputParamsError, _BadRequestError26);
590
601
  var _super41 = _createSuper(BadRequest_NoValidInputParamsError);
591
- function BadRequest_NoValidInputParamsError(message, code) {
602
+ function BadRequest_NoValidInputParamsError(message, code, errorData) {
592
603
  var _this41;
593
604
  (0, _classCallCheck2.default)(this, BadRequest_NoValidInputParamsError);
594
- _this41 = _super41.call(this, message, code);
605
+ _this41 = _super41.call(this, message, code, errorData);
595
606
  _this41.name = 'BadRequest_NoValidInputParamsError';
596
607
  return _this41;
597
608
  }
@@ -601,10 +612,10 @@ errorClasses.BadRequest_NoValidInputParamsError = BadRequest_NoValidInputParamsE
601
612
  var BadRequest_OperationOnNonScimResourceError = exports.BadRequest_OperationOnNonScimResourceError = /*#__PURE__*/function (_BadRequestError27) {
602
613
  (0, _inherits2.default)(BadRequest_OperationOnNonScimResourceError, _BadRequestError27);
603
614
  var _super42 = _createSuper(BadRequest_OperationOnNonScimResourceError);
604
- function BadRequest_OperationOnNonScimResourceError(message, code) {
615
+ function BadRequest_OperationOnNonScimResourceError(message, code, errorData) {
605
616
  var _this42;
606
617
  (0, _classCallCheck2.default)(this, BadRequest_OperationOnNonScimResourceError);
607
- _this42 = _super42.call(this, message, code);
618
+ _this42 = _super42.call(this, message, code, errorData);
608
619
  _this42.name = 'BadRequest_OperationOnNonScimResourceError';
609
620
  return _this42;
610
621
  }
@@ -614,10 +625,10 @@ errorClasses.BadRequest_OperationOnNonScimResourceError = BadRequest_OperationOn
614
625
  var BadRequest_PartNumberTooLargeError = exports.BadRequest_PartNumberTooLargeError = /*#__PURE__*/function (_BadRequestError28) {
615
626
  (0, _inherits2.default)(BadRequest_PartNumberTooLargeError, _BadRequestError28);
616
627
  var _super43 = _createSuper(BadRequest_PartNumberTooLargeError);
617
- function BadRequest_PartNumberTooLargeError(message, code) {
628
+ function BadRequest_PartNumberTooLargeError(message, code, errorData) {
618
629
  var _this43;
619
630
  (0, _classCallCheck2.default)(this, BadRequest_PartNumberTooLargeError);
620
- _this43 = _super43.call(this, message, code);
631
+ _this43 = _super43.call(this, message, code, errorData);
621
632
  _this43.name = 'BadRequest_PartNumberTooLargeError';
622
633
  return _this43;
623
634
  }
@@ -627,10 +638,10 @@ errorClasses.BadRequest_PartNumberTooLargeError = BadRequest_PartNumberTooLargeE
627
638
  var BadRequest_ReauthenticationNeededFieldsError = exports.BadRequest_ReauthenticationNeededFieldsError = /*#__PURE__*/function (_BadRequestError29) {
628
639
  (0, _inherits2.default)(BadRequest_ReauthenticationNeededFieldsError, _BadRequestError29);
629
640
  var _super44 = _createSuper(BadRequest_ReauthenticationNeededFieldsError);
630
- function BadRequest_ReauthenticationNeededFieldsError(message, code) {
641
+ function BadRequest_ReauthenticationNeededFieldsError(message, code, errorData) {
631
642
  var _this44;
632
643
  (0, _classCallCheck2.default)(this, BadRequest_ReauthenticationNeededFieldsError);
633
- _this44 = _super44.call(this, message, code);
644
+ _this44 = _super44.call(this, message, code, errorData);
634
645
  _this44.name = 'BadRequest_ReauthenticationNeededFieldsError';
635
646
  return _this44;
636
647
  }
@@ -640,10 +651,10 @@ errorClasses.BadRequest_ReauthenticationNeededFieldsError = BadRequest_Reauthent
640
651
  var BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = exports.BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = /*#__PURE__*/function (_BadRequestError30) {
641
652
  (0, _inherits2.default)(BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError, _BadRequestError30);
642
653
  var _super45 = _createSuper(BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError);
643
- function BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError(message, code) {
654
+ function BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError(message, code, errorData) {
644
655
  var _this45;
645
656
  (0, _classCallCheck2.default)(this, BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError);
646
- _this45 = _super45.call(this, message, code);
657
+ _this45 = _super45.call(this, message, code, errorData);
647
658
  _this45.name = 'BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError';
648
659
  return _this45;
649
660
  }
@@ -653,10 +664,10 @@ errorClasses.BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = BadR
653
664
  var BadRequest_RequestParamsContainInvalidCharacterError = exports.BadRequest_RequestParamsContainInvalidCharacterError = /*#__PURE__*/function (_BadRequestError31) {
654
665
  (0, _inherits2.default)(BadRequest_RequestParamsContainInvalidCharacterError, _BadRequestError31);
655
666
  var _super46 = _createSuper(BadRequest_RequestParamsContainInvalidCharacterError);
656
- function BadRequest_RequestParamsContainInvalidCharacterError(message, code) {
667
+ function BadRequest_RequestParamsContainInvalidCharacterError(message, code, errorData) {
657
668
  var _this46;
658
669
  (0, _classCallCheck2.default)(this, BadRequest_RequestParamsContainInvalidCharacterError);
659
- _this46 = _super46.call(this, message, code);
670
+ _this46 = _super46.call(this, message, code, errorData);
660
671
  _this46.name = 'BadRequest_RequestParamsContainInvalidCharacterError';
661
672
  return _this46;
662
673
  }
@@ -666,10 +677,10 @@ errorClasses.BadRequest_RequestParamsContainInvalidCharacterError = BadRequest_R
666
677
  var BadRequest_RequestParamsInvalidError = exports.BadRequest_RequestParamsInvalidError = /*#__PURE__*/function (_BadRequestError32) {
667
678
  (0, _inherits2.default)(BadRequest_RequestParamsInvalidError, _BadRequestError32);
668
679
  var _super47 = _createSuper(BadRequest_RequestParamsInvalidError);
669
- function BadRequest_RequestParamsInvalidError(message, code) {
680
+ function BadRequest_RequestParamsInvalidError(message, code, errorData) {
670
681
  var _this47;
671
682
  (0, _classCallCheck2.default)(this, BadRequest_RequestParamsInvalidError);
672
- _this47 = _super47.call(this, message, code);
683
+ _this47 = _super47.call(this, message, code, errorData);
673
684
  _this47.name = 'BadRequest_RequestParamsInvalidError';
674
685
  return _this47;
675
686
  }
@@ -679,10 +690,10 @@ errorClasses.BadRequest_RequestParamsInvalidError = BadRequest_RequestParamsInva
679
690
  var BadRequest_RequestParamsRequiredError = exports.BadRequest_RequestParamsRequiredError = /*#__PURE__*/function (_BadRequestError33) {
680
691
  (0, _inherits2.default)(BadRequest_RequestParamsRequiredError, _BadRequestError33);
681
692
  var _super48 = _createSuper(BadRequest_RequestParamsRequiredError);
682
- function BadRequest_RequestParamsRequiredError(message, code) {
693
+ function BadRequest_RequestParamsRequiredError(message, code, errorData) {
683
694
  var _this48;
684
695
  (0, _classCallCheck2.default)(this, BadRequest_RequestParamsRequiredError);
685
- _this48 = _super48.call(this, message, code);
696
+ _this48 = _super48.call(this, message, code, errorData);
686
697
  _this48.name = 'BadRequest_RequestParamsRequiredError';
687
698
  return _this48;
688
699
  }
@@ -692,10 +703,10 @@ errorClasses.BadRequest_RequestParamsRequiredError = BadRequest_RequestParamsReq
692
703
  var BadRequest_SearchAllOnChildPathError = exports.BadRequest_SearchAllOnChildPathError = /*#__PURE__*/function (_BadRequestError34) {
693
704
  (0, _inherits2.default)(BadRequest_SearchAllOnChildPathError, _BadRequestError34);
694
705
  var _super49 = _createSuper(BadRequest_SearchAllOnChildPathError);
695
- function BadRequest_SearchAllOnChildPathError(message, code) {
706
+ function BadRequest_SearchAllOnChildPathError(message, code, errorData) {
696
707
  var _this49;
697
708
  (0, _classCallCheck2.default)(this, BadRequest_SearchAllOnChildPathError);
698
- _this49 = _super49.call(this, message, code);
709
+ _this49 = _super49.call(this, message, code, errorData);
699
710
  _this49.name = 'BadRequest_SearchAllOnChildPathError';
700
711
  return _this49;
701
712
  }
@@ -705,10 +716,10 @@ errorClasses.BadRequest_SearchAllOnChildPathError = BadRequest_SearchAllOnChildP
705
716
  var BadRequest_UnsupportedCurrencyError = exports.BadRequest_UnsupportedCurrencyError = /*#__PURE__*/function (_BadRequestError35) {
706
717
  (0, _inherits2.default)(BadRequest_UnsupportedCurrencyError, _BadRequestError35);
707
718
  var _super50 = _createSuper(BadRequest_UnsupportedCurrencyError);
708
- function BadRequest_UnsupportedCurrencyError(message, code) {
719
+ function BadRequest_UnsupportedCurrencyError(message, code, errorData) {
709
720
  var _this50;
710
721
  (0, _classCallCheck2.default)(this, BadRequest_UnsupportedCurrencyError);
711
- _this50 = _super50.call(this, message, code);
722
+ _this50 = _super50.call(this, message, code, errorData);
712
723
  _this50.name = 'BadRequest_UnsupportedCurrencyError';
713
724
  return _this50;
714
725
  }
@@ -718,10 +729,10 @@ errorClasses.BadRequest_UnsupportedCurrencyError = BadRequest_UnsupportedCurrenc
718
729
  var BadRequest_UnsupportedHttpResponseFormatError = exports.BadRequest_UnsupportedHttpResponseFormatError = /*#__PURE__*/function (_BadRequestError36) {
719
730
  (0, _inherits2.default)(BadRequest_UnsupportedHttpResponseFormatError, _BadRequestError36);
720
731
  var _super51 = _createSuper(BadRequest_UnsupportedHttpResponseFormatError);
721
- function BadRequest_UnsupportedHttpResponseFormatError(message, code) {
732
+ function BadRequest_UnsupportedHttpResponseFormatError(message, code, errorData) {
722
733
  var _this51;
723
734
  (0, _classCallCheck2.default)(this, BadRequest_UnsupportedHttpResponseFormatError);
724
- _this51 = _super51.call(this, message, code);
735
+ _this51 = _super51.call(this, message, code, errorData);
725
736
  _this51.name = 'BadRequest_UnsupportedHttpResponseFormatError';
726
737
  return _this51;
727
738
  }
@@ -731,10 +742,10 @@ errorClasses.BadRequest_UnsupportedHttpResponseFormatError = BadRequest_Unsuppor
731
742
  var BadRequest_UnsupportedMediaTypeError = exports.BadRequest_UnsupportedMediaTypeError = /*#__PURE__*/function (_BadRequestError37) {
732
743
  (0, _inherits2.default)(BadRequest_UnsupportedMediaTypeError, _BadRequestError37);
733
744
  var _super52 = _createSuper(BadRequest_UnsupportedMediaTypeError);
734
- function BadRequest_UnsupportedMediaTypeError(message, code) {
745
+ function BadRequest_UnsupportedMediaTypeError(message, code, errorData) {
735
746
  var _this52;
736
747
  (0, _classCallCheck2.default)(this, BadRequest_UnsupportedMediaTypeError);
737
- _this52 = _super52.call(this, message, code);
748
+ _this52 = _super52.call(this, message, code, errorData);
738
749
  _this52.name = 'BadRequest_UnsupportedMediaTypeError';
739
750
  return _this52;
740
751
  }
@@ -744,10 +755,10 @@ errorClasses.BadRequest_UnsupportedMediaTypeError = BadRequest_UnsupportedMediaT
744
755
  var BadRequest_UserIdInvalidError = exports.BadRequest_UserIdInvalidError = /*#__PURE__*/function (_BadRequestError38) {
745
756
  (0, _inherits2.default)(BadRequest_UserIdInvalidError, _BadRequestError38);
746
757
  var _super53 = _createSuper(BadRequest_UserIdInvalidError);
747
- function BadRequest_UserIdInvalidError(message, code) {
758
+ function BadRequest_UserIdInvalidError(message, code, errorData) {
748
759
  var _this53;
749
760
  (0, _classCallCheck2.default)(this, BadRequest_UserIdInvalidError);
750
- _this53 = _super53.call(this, message, code);
761
+ _this53 = _super53.call(this, message, code, errorData);
751
762
  _this53.name = 'BadRequest_UserIdInvalidError';
752
763
  return _this53;
753
764
  }
@@ -757,10 +768,10 @@ errorClasses.BadRequest_UserIdInvalidError = BadRequest_UserIdInvalidError;
757
768
  var BadRequest_UserIdOnUserEndpointError = exports.BadRequest_UserIdOnUserEndpointError = /*#__PURE__*/function (_BadRequestError39) {
758
769
  (0, _inherits2.default)(BadRequest_UserIdOnUserEndpointError, _BadRequestError39);
759
770
  var _super54 = _createSuper(BadRequest_UserIdOnUserEndpointError);
760
- function BadRequest_UserIdOnUserEndpointError(message, code) {
771
+ function BadRequest_UserIdOnUserEndpointError(message, code, errorData) {
761
772
  var _this54;
762
773
  (0, _classCallCheck2.default)(this, BadRequest_UserIdOnUserEndpointError);
763
- _this54 = _super54.call(this, message, code);
774
+ _this54 = _super54.call(this, message, code, errorData);
764
775
  _this54.name = 'BadRequest_UserIdOnUserEndpointError';
765
776
  return _this54;
766
777
  }
@@ -770,10 +781,10 @@ errorClasses.BadRequest_UserIdOnUserEndpointError = BadRequest_UserIdOnUserEndpo
770
781
  var BadRequest_UserRequiredError = exports.BadRequest_UserRequiredError = /*#__PURE__*/function (_BadRequestError40) {
771
782
  (0, _inherits2.default)(BadRequest_UserRequiredError, _BadRequestError40);
772
783
  var _super55 = _createSuper(BadRequest_UserRequiredError);
773
- function BadRequest_UserRequiredError(message, code) {
784
+ function BadRequest_UserRequiredError(message, code, errorData) {
774
785
  var _this55;
775
786
  (0, _classCallCheck2.default)(this, BadRequest_UserRequiredError);
776
- _this55 = _super55.call(this, message, code);
787
+ _this55 = _super55.call(this, message, code, errorData);
777
788
  _this55.name = 'BadRequest_UserRequiredError';
778
789
  return _this55;
779
790
  }
@@ -783,10 +794,10 @@ errorClasses.BadRequest_UserRequiredError = BadRequest_UserRequiredError;
783
794
  var NotAuthenticated_AuthenticationRequiredError = exports.NotAuthenticated_AuthenticationRequiredError = /*#__PURE__*/function (_NotAuthenticatedErro) {
784
795
  (0, _inherits2.default)(NotAuthenticated_AuthenticationRequiredError, _NotAuthenticatedErro);
785
796
  var _super56 = _createSuper(NotAuthenticated_AuthenticationRequiredError);
786
- function NotAuthenticated_AuthenticationRequiredError(message, code) {
797
+ function NotAuthenticated_AuthenticationRequiredError(message, code, errorData) {
787
798
  var _this56;
788
799
  (0, _classCallCheck2.default)(this, NotAuthenticated_AuthenticationRequiredError);
789
- _this56 = _super56.call(this, message, code);
800
+ _this56 = _super56.call(this, message, code, errorData);
790
801
  _this56.name = 'NotAuthenticated_AuthenticationRequiredError';
791
802
  return _this56;
792
803
  }
@@ -796,10 +807,10 @@ errorClasses.NotAuthenticated_AuthenticationRequiredError = NotAuthenticated_Aut
796
807
  var NotAuthenticated_BundleRegistrationCodeFailedError = exports.NotAuthenticated_BundleRegistrationCodeFailedError = /*#__PURE__*/function (_NotAuthenticatedErro2) {
797
808
  (0, _inherits2.default)(NotAuthenticated_BundleRegistrationCodeFailedError, _NotAuthenticatedErro2);
798
809
  var _super57 = _createSuper(NotAuthenticated_BundleRegistrationCodeFailedError);
799
- function NotAuthenticated_BundleRegistrationCodeFailedError(message, code) {
810
+ function NotAuthenticated_BundleRegistrationCodeFailedError(message, code, errorData) {
800
811
  var _this57;
801
812
  (0, _classCallCheck2.default)(this, NotAuthenticated_BundleRegistrationCodeFailedError);
802
- _this57 = _super57.call(this, message, code);
813
+ _this57 = _super57.call(this, message, code, errorData);
803
814
  _this57.name = 'NotAuthenticated_BundleRegistrationCodeFailedError';
804
815
  return _this57;
805
816
  }
@@ -809,10 +820,10 @@ errorClasses.NotAuthenticated_BundleRegistrationCodeFailedError = NotAuthenticat
809
820
  var NotAuthenticated_FilesAgentTokenFailedError = exports.NotAuthenticated_FilesAgentTokenFailedError = /*#__PURE__*/function (_NotAuthenticatedErro3) {
810
821
  (0, _inherits2.default)(NotAuthenticated_FilesAgentTokenFailedError, _NotAuthenticatedErro3);
811
822
  var _super58 = _createSuper(NotAuthenticated_FilesAgentTokenFailedError);
812
- function NotAuthenticated_FilesAgentTokenFailedError(message, code) {
823
+ function NotAuthenticated_FilesAgentTokenFailedError(message, code, errorData) {
813
824
  var _this58;
814
825
  (0, _classCallCheck2.default)(this, NotAuthenticated_FilesAgentTokenFailedError);
815
- _this58 = _super58.call(this, message, code);
826
+ _this58 = _super58.call(this, message, code, errorData);
816
827
  _this58.name = 'NotAuthenticated_FilesAgentTokenFailedError';
817
828
  return _this58;
818
829
  }
@@ -822,10 +833,10 @@ errorClasses.NotAuthenticated_FilesAgentTokenFailedError = NotAuthenticated_File
822
833
  var NotAuthenticated_InboxRegistrationCodeFailedError = exports.NotAuthenticated_InboxRegistrationCodeFailedError = /*#__PURE__*/function (_NotAuthenticatedErro4) {
823
834
  (0, _inherits2.default)(NotAuthenticated_InboxRegistrationCodeFailedError, _NotAuthenticatedErro4);
824
835
  var _super59 = _createSuper(NotAuthenticated_InboxRegistrationCodeFailedError);
825
- function NotAuthenticated_InboxRegistrationCodeFailedError(message, code) {
836
+ function NotAuthenticated_InboxRegistrationCodeFailedError(message, code, errorData) {
826
837
  var _this59;
827
838
  (0, _classCallCheck2.default)(this, NotAuthenticated_InboxRegistrationCodeFailedError);
828
- _this59 = _super59.call(this, message, code);
839
+ _this59 = _super59.call(this, message, code, errorData);
829
840
  _this59.name = 'NotAuthenticated_InboxRegistrationCodeFailedError';
830
841
  return _this59;
831
842
  }
@@ -835,10 +846,10 @@ errorClasses.NotAuthenticated_InboxRegistrationCodeFailedError = NotAuthenticate
835
846
  var NotAuthenticated_InvalidCredentialsError = exports.NotAuthenticated_InvalidCredentialsError = /*#__PURE__*/function (_NotAuthenticatedErro5) {
836
847
  (0, _inherits2.default)(NotAuthenticated_InvalidCredentialsError, _NotAuthenticatedErro5);
837
848
  var _super60 = _createSuper(NotAuthenticated_InvalidCredentialsError);
838
- function NotAuthenticated_InvalidCredentialsError(message, code) {
849
+ function NotAuthenticated_InvalidCredentialsError(message, code, errorData) {
839
850
  var _this60;
840
851
  (0, _classCallCheck2.default)(this, NotAuthenticated_InvalidCredentialsError);
841
- _this60 = _super60.call(this, message, code);
852
+ _this60 = _super60.call(this, message, code, errorData);
842
853
  _this60.name = 'NotAuthenticated_InvalidCredentialsError';
843
854
  return _this60;
844
855
  }
@@ -848,10 +859,10 @@ errorClasses.NotAuthenticated_InvalidCredentialsError = NotAuthenticated_Invalid
848
859
  var NotAuthenticated_InvalidOauthError = exports.NotAuthenticated_InvalidOauthError = /*#__PURE__*/function (_NotAuthenticatedErro6) {
849
860
  (0, _inherits2.default)(NotAuthenticated_InvalidOauthError, _NotAuthenticatedErro6);
850
861
  var _super61 = _createSuper(NotAuthenticated_InvalidOauthError);
851
- function NotAuthenticated_InvalidOauthError(message, code) {
862
+ function NotAuthenticated_InvalidOauthError(message, code, errorData) {
852
863
  var _this61;
853
864
  (0, _classCallCheck2.default)(this, NotAuthenticated_InvalidOauthError);
854
- _this61 = _super61.call(this, message, code);
865
+ _this61 = _super61.call(this, message, code, errorData);
855
866
  _this61.name = 'NotAuthenticated_InvalidOauthError';
856
867
  return _this61;
857
868
  }
@@ -861,10 +872,10 @@ errorClasses.NotAuthenticated_InvalidOauthError = NotAuthenticated_InvalidOauthE
861
872
  var NotAuthenticated_InvalidOrExpiredCodeError = exports.NotAuthenticated_InvalidOrExpiredCodeError = /*#__PURE__*/function (_NotAuthenticatedErro7) {
862
873
  (0, _inherits2.default)(NotAuthenticated_InvalidOrExpiredCodeError, _NotAuthenticatedErro7);
863
874
  var _super62 = _createSuper(NotAuthenticated_InvalidOrExpiredCodeError);
864
- function NotAuthenticated_InvalidOrExpiredCodeError(message, code) {
875
+ function NotAuthenticated_InvalidOrExpiredCodeError(message, code, errorData) {
865
876
  var _this62;
866
877
  (0, _classCallCheck2.default)(this, NotAuthenticated_InvalidOrExpiredCodeError);
867
- _this62 = _super62.call(this, message, code);
878
+ _this62 = _super62.call(this, message, code, errorData);
868
879
  _this62.name = 'NotAuthenticated_InvalidOrExpiredCodeError';
869
880
  return _this62;
870
881
  }
@@ -874,10 +885,10 @@ errorClasses.NotAuthenticated_InvalidOrExpiredCodeError = NotAuthenticated_Inval
874
885
  var NotAuthenticated_InvalidUsernameOrPasswordError = exports.NotAuthenticated_InvalidUsernameOrPasswordError = /*#__PURE__*/function (_NotAuthenticatedErro8) {
875
886
  (0, _inherits2.default)(NotAuthenticated_InvalidUsernameOrPasswordError, _NotAuthenticatedErro8);
876
887
  var _super63 = _createSuper(NotAuthenticated_InvalidUsernameOrPasswordError);
877
- function NotAuthenticated_InvalidUsernameOrPasswordError(message, code) {
888
+ function NotAuthenticated_InvalidUsernameOrPasswordError(message, code, errorData) {
878
889
  var _this63;
879
890
  (0, _classCallCheck2.default)(this, NotAuthenticated_InvalidUsernameOrPasswordError);
880
- _this63 = _super63.call(this, message, code);
891
+ _this63 = _super63.call(this, message, code, errorData);
881
892
  _this63.name = 'NotAuthenticated_InvalidUsernameOrPasswordError';
882
893
  return _this63;
883
894
  }
@@ -887,10 +898,10 @@ errorClasses.NotAuthenticated_InvalidUsernameOrPasswordError = NotAuthenticated_
887
898
  var NotAuthenticated_LockedOutError = exports.NotAuthenticated_LockedOutError = /*#__PURE__*/function (_NotAuthenticatedErro9) {
888
899
  (0, _inherits2.default)(NotAuthenticated_LockedOutError, _NotAuthenticatedErro9);
889
900
  var _super64 = _createSuper(NotAuthenticated_LockedOutError);
890
- function NotAuthenticated_LockedOutError(message, code) {
901
+ function NotAuthenticated_LockedOutError(message, code, errorData) {
891
902
  var _this64;
892
903
  (0, _classCallCheck2.default)(this, NotAuthenticated_LockedOutError);
893
- _this64 = _super64.call(this, message, code);
904
+ _this64 = _super64.call(this, message, code, errorData);
894
905
  _this64.name = 'NotAuthenticated_LockedOutError';
895
906
  return _this64;
896
907
  }
@@ -900,10 +911,10 @@ errorClasses.NotAuthenticated_LockedOutError = NotAuthenticated_LockedOutError;
900
911
  var NotAuthenticated_LockoutRegionMismatchError = exports.NotAuthenticated_LockoutRegionMismatchError = /*#__PURE__*/function (_NotAuthenticatedErro10) {
901
912
  (0, _inherits2.default)(NotAuthenticated_LockoutRegionMismatchError, _NotAuthenticatedErro10);
902
913
  var _super65 = _createSuper(NotAuthenticated_LockoutRegionMismatchError);
903
- function NotAuthenticated_LockoutRegionMismatchError(message, code) {
914
+ function NotAuthenticated_LockoutRegionMismatchError(message, code, errorData) {
904
915
  var _this65;
905
916
  (0, _classCallCheck2.default)(this, NotAuthenticated_LockoutRegionMismatchError);
906
- _this65 = _super65.call(this, message, code);
917
+ _this65 = _super65.call(this, message, code, errorData);
907
918
  _this65.name = 'NotAuthenticated_LockoutRegionMismatchError';
908
919
  return _this65;
909
920
  }
@@ -913,10 +924,10 @@ errorClasses.NotAuthenticated_LockoutRegionMismatchError = NotAuthenticated_Lock
913
924
  var NotAuthenticated_OneTimePasswordIncorrectError = exports.NotAuthenticated_OneTimePasswordIncorrectError = /*#__PURE__*/function (_NotAuthenticatedErro11) {
914
925
  (0, _inherits2.default)(NotAuthenticated_OneTimePasswordIncorrectError, _NotAuthenticatedErro11);
915
926
  var _super66 = _createSuper(NotAuthenticated_OneTimePasswordIncorrectError);
916
- function NotAuthenticated_OneTimePasswordIncorrectError(message, code) {
927
+ function NotAuthenticated_OneTimePasswordIncorrectError(message, code, errorData) {
917
928
  var _this66;
918
929
  (0, _classCallCheck2.default)(this, NotAuthenticated_OneTimePasswordIncorrectError);
919
- _this66 = _super66.call(this, message, code);
930
+ _this66 = _super66.call(this, message, code, errorData);
920
931
  _this66.name = 'NotAuthenticated_OneTimePasswordIncorrectError';
921
932
  return _this66;
922
933
  }
@@ -926,10 +937,10 @@ errorClasses.NotAuthenticated_OneTimePasswordIncorrectError = NotAuthenticated_O
926
937
  var NotAuthenticated_TwoFactorAuthenticationErrorError = exports.NotAuthenticated_TwoFactorAuthenticationErrorError = /*#__PURE__*/function (_NotAuthenticatedErro12) {
927
938
  (0, _inherits2.default)(NotAuthenticated_TwoFactorAuthenticationErrorError, _NotAuthenticatedErro12);
928
939
  var _super67 = _createSuper(NotAuthenticated_TwoFactorAuthenticationErrorError);
929
- function NotAuthenticated_TwoFactorAuthenticationErrorError(message, code) {
940
+ function NotAuthenticated_TwoFactorAuthenticationErrorError(message, code, errorData) {
930
941
  var _this67;
931
942
  (0, _classCallCheck2.default)(this, NotAuthenticated_TwoFactorAuthenticationErrorError);
932
- _this67 = _super67.call(this, message, code);
943
+ _this67 = _super67.call(this, message, code, errorData);
933
944
  _this67.name = 'NotAuthenticated_TwoFactorAuthenticationErrorError';
934
945
  return _this67;
935
946
  }
@@ -939,10 +950,10 @@ errorClasses.NotAuthenticated_TwoFactorAuthenticationErrorError = NotAuthenticat
939
950
  var NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = exports.NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = /*#__PURE__*/function (_NotAuthenticatedErro13) {
940
951
  (0, _inherits2.default)(NotAuthenticated_TwoFactorAuthenticationSetupExpiredError, _NotAuthenticatedErro13);
941
952
  var _super68 = _createSuper(NotAuthenticated_TwoFactorAuthenticationSetupExpiredError);
942
- function NotAuthenticated_TwoFactorAuthenticationSetupExpiredError(message, code) {
953
+ function NotAuthenticated_TwoFactorAuthenticationSetupExpiredError(message, code, errorData) {
943
954
  var _this68;
944
955
  (0, _classCallCheck2.default)(this, NotAuthenticated_TwoFactorAuthenticationSetupExpiredError);
945
- _this68 = _super68.call(this, message, code);
956
+ _this68 = _super68.call(this, message, code, errorData);
946
957
  _this68.name = 'NotAuthenticated_TwoFactorAuthenticationSetupExpiredError';
947
958
  return _this68;
948
959
  }
@@ -952,10 +963,10 @@ errorClasses.NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = NotAuth
952
963
  var NotAuthorized_ApiKeyIsDisabledError = exports.NotAuthorized_ApiKeyIsDisabledError = /*#__PURE__*/function (_NotAuthorizedError) {
953
964
  (0, _inherits2.default)(NotAuthorized_ApiKeyIsDisabledError, _NotAuthorizedError);
954
965
  var _super69 = _createSuper(NotAuthorized_ApiKeyIsDisabledError);
955
- function NotAuthorized_ApiKeyIsDisabledError(message, code) {
966
+ function NotAuthorized_ApiKeyIsDisabledError(message, code, errorData) {
956
967
  var _this69;
957
968
  (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyIsDisabledError);
958
- _this69 = _super69.call(this, message, code);
969
+ _this69 = _super69.call(this, message, code, errorData);
959
970
  _this69.name = 'NotAuthorized_ApiKeyIsDisabledError';
960
971
  return _this69;
961
972
  }
@@ -965,10 +976,10 @@ errorClasses.NotAuthorized_ApiKeyIsDisabledError = NotAuthorized_ApiKeyIsDisable
965
976
  var NotAuthorized_ApiKeyIsPathRestrictedError = exports.NotAuthorized_ApiKeyIsPathRestrictedError = /*#__PURE__*/function (_NotAuthorizedError2) {
966
977
  (0, _inherits2.default)(NotAuthorized_ApiKeyIsPathRestrictedError, _NotAuthorizedError2);
967
978
  var _super70 = _createSuper(NotAuthorized_ApiKeyIsPathRestrictedError);
968
- function NotAuthorized_ApiKeyIsPathRestrictedError(message, code) {
979
+ function NotAuthorized_ApiKeyIsPathRestrictedError(message, code, errorData) {
969
980
  var _this70;
970
981
  (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyIsPathRestrictedError);
971
- _this70 = _super70.call(this, message, code);
982
+ _this70 = _super70.call(this, message, code, errorData);
972
983
  _this70.name = 'NotAuthorized_ApiKeyIsPathRestrictedError';
973
984
  return _this70;
974
985
  }
@@ -978,10 +989,10 @@ errorClasses.NotAuthorized_ApiKeyIsPathRestrictedError = NotAuthorized_ApiKeyIsP
978
989
  var NotAuthorized_ApiKeyOnlyForDesktopAppError = exports.NotAuthorized_ApiKeyOnlyForDesktopAppError = /*#__PURE__*/function (_NotAuthorizedError3) {
979
990
  (0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForDesktopAppError, _NotAuthorizedError3);
980
991
  var _super71 = _createSuper(NotAuthorized_ApiKeyOnlyForDesktopAppError);
981
- function NotAuthorized_ApiKeyOnlyForDesktopAppError(message, code) {
992
+ function NotAuthorized_ApiKeyOnlyForDesktopAppError(message, code, errorData) {
982
993
  var _this71;
983
994
  (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForDesktopAppError);
984
- _this71 = _super71.call(this, message, code);
995
+ _this71 = _super71.call(this, message, code, errorData);
985
996
  _this71.name = 'NotAuthorized_ApiKeyOnlyForDesktopAppError';
986
997
  return _this71;
987
998
  }
@@ -991,10 +1002,10 @@ errorClasses.NotAuthorized_ApiKeyOnlyForDesktopAppError = NotAuthorized_ApiKeyOn
991
1002
  var NotAuthorized_ApiKeyOnlyForMobileAppError = exports.NotAuthorized_ApiKeyOnlyForMobileAppError = /*#__PURE__*/function (_NotAuthorizedError4) {
992
1003
  (0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForMobileAppError, _NotAuthorizedError4);
993
1004
  var _super72 = _createSuper(NotAuthorized_ApiKeyOnlyForMobileAppError);
994
- function NotAuthorized_ApiKeyOnlyForMobileAppError(message, code) {
1005
+ function NotAuthorized_ApiKeyOnlyForMobileAppError(message, code, errorData) {
995
1006
  var _this72;
996
1007
  (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForMobileAppError);
997
- _this72 = _super72.call(this, message, code);
1008
+ _this72 = _super72.call(this, message, code, errorData);
998
1009
  _this72.name = 'NotAuthorized_ApiKeyOnlyForMobileAppError';
999
1010
  return _this72;
1000
1011
  }
@@ -1004,10 +1015,10 @@ errorClasses.NotAuthorized_ApiKeyOnlyForMobileAppError = NotAuthorized_ApiKeyOnl
1004
1015
  var NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = exports.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = /*#__PURE__*/function (_NotAuthorizedError5) {
1005
1016
  (0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForOfficeIntegrationError, _NotAuthorizedError5);
1006
1017
  var _super73 = _createSuper(NotAuthorized_ApiKeyOnlyForOfficeIntegrationError);
1007
- function NotAuthorized_ApiKeyOnlyForOfficeIntegrationError(message, code) {
1018
+ function NotAuthorized_ApiKeyOnlyForOfficeIntegrationError(message, code, errorData) {
1008
1019
  var _this73;
1009
1020
  (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForOfficeIntegrationError);
1010
- _this73 = _super73.call(this, message, code);
1021
+ _this73 = _super73.call(this, message, code, errorData);
1011
1022
  _this73.name = 'NotAuthorized_ApiKeyOnlyForOfficeIntegrationError';
1012
1023
  return _this73;
1013
1024
  }
@@ -1017,10 +1028,10 @@ errorClasses.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = NotAuthorized_A
1017
1028
  var NotAuthorized_BillingPermissionRequiredError = exports.NotAuthorized_BillingPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError6) {
1018
1029
  (0, _inherits2.default)(NotAuthorized_BillingPermissionRequiredError, _NotAuthorizedError6);
1019
1030
  var _super74 = _createSuper(NotAuthorized_BillingPermissionRequiredError);
1020
- function NotAuthorized_BillingPermissionRequiredError(message, code) {
1031
+ function NotAuthorized_BillingPermissionRequiredError(message, code, errorData) {
1021
1032
  var _this74;
1022
1033
  (0, _classCallCheck2.default)(this, NotAuthorized_BillingPermissionRequiredError);
1023
- _this74 = _super74.call(this, message, code);
1034
+ _this74 = _super74.call(this, message, code, errorData);
1024
1035
  _this74.name = 'NotAuthorized_BillingPermissionRequiredError';
1025
1036
  return _this74;
1026
1037
  }
@@ -1030,10 +1041,10 @@ errorClasses.NotAuthorized_BillingPermissionRequiredError = NotAuthorized_Billin
1030
1041
  var NotAuthorized_BundleMaximumUsesReachedError = exports.NotAuthorized_BundleMaximumUsesReachedError = /*#__PURE__*/function (_NotAuthorizedError7) {
1031
1042
  (0, _inherits2.default)(NotAuthorized_BundleMaximumUsesReachedError, _NotAuthorizedError7);
1032
1043
  var _super75 = _createSuper(NotAuthorized_BundleMaximumUsesReachedError);
1033
- function NotAuthorized_BundleMaximumUsesReachedError(message, code) {
1044
+ function NotAuthorized_BundleMaximumUsesReachedError(message, code, errorData) {
1034
1045
  var _this75;
1035
1046
  (0, _classCallCheck2.default)(this, NotAuthorized_BundleMaximumUsesReachedError);
1036
- _this75 = _super75.call(this, message, code);
1047
+ _this75 = _super75.call(this, message, code, errorData);
1037
1048
  _this75.name = 'NotAuthorized_BundleMaximumUsesReachedError';
1038
1049
  return _this75;
1039
1050
  }
@@ -1043,10 +1054,10 @@ errorClasses.NotAuthorized_BundleMaximumUsesReachedError = NotAuthorized_BundleM
1043
1054
  var NotAuthorized_CannotLoginWhileUsingKeyError = exports.NotAuthorized_CannotLoginWhileUsingKeyError = /*#__PURE__*/function (_NotAuthorizedError8) {
1044
1055
  (0, _inherits2.default)(NotAuthorized_CannotLoginWhileUsingKeyError, _NotAuthorizedError8);
1045
1056
  var _super76 = _createSuper(NotAuthorized_CannotLoginWhileUsingKeyError);
1046
- function NotAuthorized_CannotLoginWhileUsingKeyError(message, code) {
1057
+ function NotAuthorized_CannotLoginWhileUsingKeyError(message, code, errorData) {
1047
1058
  var _this76;
1048
1059
  (0, _classCallCheck2.default)(this, NotAuthorized_CannotLoginWhileUsingKeyError);
1049
- _this76 = _super76.call(this, message, code);
1060
+ _this76 = _super76.call(this, message, code, errorData);
1050
1061
  _this76.name = 'NotAuthorized_CannotLoginWhileUsingKeyError';
1051
1062
  return _this76;
1052
1063
  }
@@ -1056,10 +1067,10 @@ errorClasses.NotAuthorized_CannotLoginWhileUsingKeyError = NotAuthorized_CannotL
1056
1067
  var NotAuthorized_CantActForOtherUserError = exports.NotAuthorized_CantActForOtherUserError = /*#__PURE__*/function (_NotAuthorizedError9) {
1057
1068
  (0, _inherits2.default)(NotAuthorized_CantActForOtherUserError, _NotAuthorizedError9);
1058
1069
  var _super77 = _createSuper(NotAuthorized_CantActForOtherUserError);
1059
- function NotAuthorized_CantActForOtherUserError(message, code) {
1070
+ function NotAuthorized_CantActForOtherUserError(message, code, errorData) {
1060
1071
  var _this77;
1061
1072
  (0, _classCallCheck2.default)(this, NotAuthorized_CantActForOtherUserError);
1062
- _this77 = _super77.call(this, message, code);
1073
+ _this77 = _super77.call(this, message, code, errorData);
1063
1074
  _this77.name = 'NotAuthorized_CantActForOtherUserError';
1064
1075
  return _this77;
1065
1076
  }
@@ -1069,10 +1080,10 @@ errorClasses.NotAuthorized_CantActForOtherUserError = NotAuthorized_CantActForOt
1069
1080
  var NotAuthorized_ContactAdminForPasswordChangeHelpError = exports.NotAuthorized_ContactAdminForPasswordChangeHelpError = /*#__PURE__*/function (_NotAuthorizedError10) {
1070
1081
  (0, _inherits2.default)(NotAuthorized_ContactAdminForPasswordChangeHelpError, _NotAuthorizedError10);
1071
1082
  var _super78 = _createSuper(NotAuthorized_ContactAdminForPasswordChangeHelpError);
1072
- function NotAuthorized_ContactAdminForPasswordChangeHelpError(message, code) {
1083
+ function NotAuthorized_ContactAdminForPasswordChangeHelpError(message, code, errorData) {
1073
1084
  var _this78;
1074
1085
  (0, _classCallCheck2.default)(this, NotAuthorized_ContactAdminForPasswordChangeHelpError);
1075
- _this78 = _super78.call(this, message, code);
1086
+ _this78 = _super78.call(this, message, code, errorData);
1076
1087
  _this78.name = 'NotAuthorized_ContactAdminForPasswordChangeHelpError';
1077
1088
  return _this78;
1078
1089
  }
@@ -1082,10 +1093,10 @@ errorClasses.NotAuthorized_ContactAdminForPasswordChangeHelpError = NotAuthorize
1082
1093
  var NotAuthorized_FilesAgentFailedAuthorizationError = exports.NotAuthorized_FilesAgentFailedAuthorizationError = /*#__PURE__*/function (_NotAuthorizedError11) {
1083
1094
  (0, _inherits2.default)(NotAuthorized_FilesAgentFailedAuthorizationError, _NotAuthorizedError11);
1084
1095
  var _super79 = _createSuper(NotAuthorized_FilesAgentFailedAuthorizationError);
1085
- function NotAuthorized_FilesAgentFailedAuthorizationError(message, code) {
1096
+ function NotAuthorized_FilesAgentFailedAuthorizationError(message, code, errorData) {
1086
1097
  var _this79;
1087
1098
  (0, _classCallCheck2.default)(this, NotAuthorized_FilesAgentFailedAuthorizationError);
1088
- _this79 = _super79.call(this, message, code);
1099
+ _this79 = _super79.call(this, message, code, errorData);
1089
1100
  _this79.name = 'NotAuthorized_FilesAgentFailedAuthorizationError';
1090
1101
  return _this79;
1091
1102
  }
@@ -1095,10 +1106,10 @@ errorClasses.NotAuthorized_FilesAgentFailedAuthorizationError = NotAuthorized_Fi
1095
1106
  var NotAuthorized_FolderAdminOrBillingPermissionRequiredError = exports.NotAuthorized_FolderAdminOrBillingPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError12) {
1096
1107
  (0, _inherits2.default)(NotAuthorized_FolderAdminOrBillingPermissionRequiredError, _NotAuthorizedError12);
1097
1108
  var _super80 = _createSuper(NotAuthorized_FolderAdminOrBillingPermissionRequiredError);
1098
- function NotAuthorized_FolderAdminOrBillingPermissionRequiredError(message, code) {
1109
+ function NotAuthorized_FolderAdminOrBillingPermissionRequiredError(message, code, errorData) {
1099
1110
  var _this80;
1100
1111
  (0, _classCallCheck2.default)(this, NotAuthorized_FolderAdminOrBillingPermissionRequiredError);
1101
- _this80 = _super80.call(this, message, code);
1112
+ _this80 = _super80.call(this, message, code, errorData);
1102
1113
  _this80.name = 'NotAuthorized_FolderAdminOrBillingPermissionRequiredError';
1103
1114
  return _this80;
1104
1115
  }
@@ -1108,10 +1119,10 @@ errorClasses.NotAuthorized_FolderAdminOrBillingPermissionRequiredError = NotAuth
1108
1119
  var NotAuthorized_FolderAdminPermissionRequiredError = exports.NotAuthorized_FolderAdminPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError13) {
1109
1120
  (0, _inherits2.default)(NotAuthorized_FolderAdminPermissionRequiredError, _NotAuthorizedError13);
1110
1121
  var _super81 = _createSuper(NotAuthorized_FolderAdminPermissionRequiredError);
1111
- function NotAuthorized_FolderAdminPermissionRequiredError(message, code) {
1122
+ function NotAuthorized_FolderAdminPermissionRequiredError(message, code, errorData) {
1112
1123
  var _this81;
1113
1124
  (0, _classCallCheck2.default)(this, NotAuthorized_FolderAdminPermissionRequiredError);
1114
- _this81 = _super81.call(this, message, code);
1125
+ _this81 = _super81.call(this, message, code, errorData);
1115
1126
  _this81.name = 'NotAuthorized_FolderAdminPermissionRequiredError';
1116
1127
  return _this81;
1117
1128
  }
@@ -1121,10 +1132,10 @@ errorClasses.NotAuthorized_FolderAdminPermissionRequiredError = NotAuthorized_Fo
1121
1132
  var NotAuthorized_FullPermissionRequiredError = exports.NotAuthorized_FullPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError14) {
1122
1133
  (0, _inherits2.default)(NotAuthorized_FullPermissionRequiredError, _NotAuthorizedError14);
1123
1134
  var _super82 = _createSuper(NotAuthorized_FullPermissionRequiredError);
1124
- function NotAuthorized_FullPermissionRequiredError(message, code) {
1135
+ function NotAuthorized_FullPermissionRequiredError(message, code, errorData) {
1125
1136
  var _this82;
1126
1137
  (0, _classCallCheck2.default)(this, NotAuthorized_FullPermissionRequiredError);
1127
- _this82 = _super82.call(this, message, code);
1138
+ _this82 = _super82.call(this, message, code, errorData);
1128
1139
  _this82.name = 'NotAuthorized_FullPermissionRequiredError';
1129
1140
  return _this82;
1130
1141
  }
@@ -1134,10 +1145,10 @@ errorClasses.NotAuthorized_FullPermissionRequiredError = NotAuthorized_FullPermi
1134
1145
  var NotAuthorized_HistoryPermissionRequiredError = exports.NotAuthorized_HistoryPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError15) {
1135
1146
  (0, _inherits2.default)(NotAuthorized_HistoryPermissionRequiredError, _NotAuthorizedError15);
1136
1147
  var _super83 = _createSuper(NotAuthorized_HistoryPermissionRequiredError);
1137
- function NotAuthorized_HistoryPermissionRequiredError(message, code) {
1148
+ function NotAuthorized_HistoryPermissionRequiredError(message, code, errorData) {
1138
1149
  var _this83;
1139
1150
  (0, _classCallCheck2.default)(this, NotAuthorized_HistoryPermissionRequiredError);
1140
- _this83 = _super83.call(this, message, code);
1151
+ _this83 = _super83.call(this, message, code, errorData);
1141
1152
  _this83.name = 'NotAuthorized_HistoryPermissionRequiredError';
1142
1153
  return _this83;
1143
1154
  }
@@ -1147,10 +1158,10 @@ errorClasses.NotAuthorized_HistoryPermissionRequiredError = NotAuthorized_Histor
1147
1158
  var NotAuthorized_InsufficientPermissionForParamsError = exports.NotAuthorized_InsufficientPermissionForParamsError = /*#__PURE__*/function (_NotAuthorizedError16) {
1148
1159
  (0, _inherits2.default)(NotAuthorized_InsufficientPermissionForParamsError, _NotAuthorizedError16);
1149
1160
  var _super84 = _createSuper(NotAuthorized_InsufficientPermissionForParamsError);
1150
- function NotAuthorized_InsufficientPermissionForParamsError(message, code) {
1161
+ function NotAuthorized_InsufficientPermissionForParamsError(message, code, errorData) {
1151
1162
  var _this84;
1152
1163
  (0, _classCallCheck2.default)(this, NotAuthorized_InsufficientPermissionForParamsError);
1153
- _this84 = _super84.call(this, message, code);
1164
+ _this84 = _super84.call(this, message, code, errorData);
1154
1165
  _this84.name = 'NotAuthorized_InsufficientPermissionForParamsError';
1155
1166
  return _this84;
1156
1167
  }
@@ -1160,10 +1171,10 @@ errorClasses.NotAuthorized_InsufficientPermissionForParamsError = NotAuthorized_
1160
1171
  var NotAuthorized_MustAuthenticateWithApiKeyError = exports.NotAuthorized_MustAuthenticateWithApiKeyError = /*#__PURE__*/function (_NotAuthorizedError17) {
1161
1172
  (0, _inherits2.default)(NotAuthorized_MustAuthenticateWithApiKeyError, _NotAuthorizedError17);
1162
1173
  var _super85 = _createSuper(NotAuthorized_MustAuthenticateWithApiKeyError);
1163
- function NotAuthorized_MustAuthenticateWithApiKeyError(message, code) {
1174
+ function NotAuthorized_MustAuthenticateWithApiKeyError(message, code, errorData) {
1164
1175
  var _this85;
1165
1176
  (0, _classCallCheck2.default)(this, NotAuthorized_MustAuthenticateWithApiKeyError);
1166
- _this85 = _super85.call(this, message, code);
1177
+ _this85 = _super85.call(this, message, code, errorData);
1167
1178
  _this85.name = 'NotAuthorized_MustAuthenticateWithApiKeyError';
1168
1179
  return _this85;
1169
1180
  }
@@ -1173,10 +1184,10 @@ errorClasses.NotAuthorized_MustAuthenticateWithApiKeyError = NotAuthorized_MustA
1173
1184
  var NotAuthorized_NeedAdminPermissionForInboxError = exports.NotAuthorized_NeedAdminPermissionForInboxError = /*#__PURE__*/function (_NotAuthorizedError18) {
1174
1185
  (0, _inherits2.default)(NotAuthorized_NeedAdminPermissionForInboxError, _NotAuthorizedError18);
1175
1186
  var _super86 = _createSuper(NotAuthorized_NeedAdminPermissionForInboxError);
1176
- function NotAuthorized_NeedAdminPermissionForInboxError(message, code) {
1187
+ function NotAuthorized_NeedAdminPermissionForInboxError(message, code, errorData) {
1177
1188
  var _this86;
1178
1189
  (0, _classCallCheck2.default)(this, NotAuthorized_NeedAdminPermissionForInboxError);
1179
- _this86 = _super86.call(this, message, code);
1190
+ _this86 = _super86.call(this, message, code, errorData);
1180
1191
  _this86.name = 'NotAuthorized_NeedAdminPermissionForInboxError';
1181
1192
  return _this86;
1182
1193
  }
@@ -1186,10 +1197,10 @@ errorClasses.NotAuthorized_NeedAdminPermissionForInboxError = NotAuthorized_Need
1186
1197
  var NotAuthorized_NonAdminsMustQueryByFolderOrPathError = exports.NotAuthorized_NonAdminsMustQueryByFolderOrPathError = /*#__PURE__*/function (_NotAuthorizedError19) {
1187
1198
  (0, _inherits2.default)(NotAuthorized_NonAdminsMustQueryByFolderOrPathError, _NotAuthorizedError19);
1188
1199
  var _super87 = _createSuper(NotAuthorized_NonAdminsMustQueryByFolderOrPathError);
1189
- function NotAuthorized_NonAdminsMustQueryByFolderOrPathError(message, code) {
1200
+ function NotAuthorized_NonAdminsMustQueryByFolderOrPathError(message, code, errorData) {
1190
1201
  var _this87;
1191
1202
  (0, _classCallCheck2.default)(this, NotAuthorized_NonAdminsMustQueryByFolderOrPathError);
1192
- _this87 = _super87.call(this, message, code);
1203
+ _this87 = _super87.call(this, message, code, errorData);
1193
1204
  _this87.name = 'NotAuthorized_NonAdminsMustQueryByFolderOrPathError';
1194
1205
  return _this87;
1195
1206
  }
@@ -1199,10 +1210,10 @@ errorClasses.NotAuthorized_NonAdminsMustQueryByFolderOrPathError = NotAuthorized
1199
1210
  var NotAuthorized_NotAllowedToCreateBundleError = exports.NotAuthorized_NotAllowedToCreateBundleError = /*#__PURE__*/function (_NotAuthorizedError20) {
1200
1211
  (0, _inherits2.default)(NotAuthorized_NotAllowedToCreateBundleError, _NotAuthorizedError20);
1201
1212
  var _super88 = _createSuper(NotAuthorized_NotAllowedToCreateBundleError);
1202
- function NotAuthorized_NotAllowedToCreateBundleError(message, code) {
1213
+ function NotAuthorized_NotAllowedToCreateBundleError(message, code, errorData) {
1203
1214
  var _this88;
1204
1215
  (0, _classCallCheck2.default)(this, NotAuthorized_NotAllowedToCreateBundleError);
1205
- _this88 = _super88.call(this, message, code);
1216
+ _this88 = _super88.call(this, message, code, errorData);
1206
1217
  _this88.name = 'NotAuthorized_NotAllowedToCreateBundleError';
1207
1218
  return _this88;
1208
1219
  }
@@ -1212,10 +1223,10 @@ errorClasses.NotAuthorized_NotAllowedToCreateBundleError = NotAuthorized_NotAllo
1212
1223
  var NotAuthorized_PasswordChangeNotRequiredError = exports.NotAuthorized_PasswordChangeNotRequiredError = /*#__PURE__*/function (_NotAuthorizedError21) {
1213
1224
  (0, _inherits2.default)(NotAuthorized_PasswordChangeNotRequiredError, _NotAuthorizedError21);
1214
1225
  var _super89 = _createSuper(NotAuthorized_PasswordChangeNotRequiredError);
1215
- function NotAuthorized_PasswordChangeNotRequiredError(message, code) {
1226
+ function NotAuthorized_PasswordChangeNotRequiredError(message, code, errorData) {
1216
1227
  var _this89;
1217
1228
  (0, _classCallCheck2.default)(this, NotAuthorized_PasswordChangeNotRequiredError);
1218
- _this89 = _super89.call(this, message, code);
1229
+ _this89 = _super89.call(this, message, code, errorData);
1219
1230
  _this89.name = 'NotAuthorized_PasswordChangeNotRequiredError';
1220
1231
  return _this89;
1221
1232
  }
@@ -1225,10 +1236,10 @@ errorClasses.NotAuthorized_PasswordChangeNotRequiredError = NotAuthorized_Passwo
1225
1236
  var NotAuthorized_PasswordChangeRequiredError = exports.NotAuthorized_PasswordChangeRequiredError = /*#__PURE__*/function (_NotAuthorizedError22) {
1226
1237
  (0, _inherits2.default)(NotAuthorized_PasswordChangeRequiredError, _NotAuthorizedError22);
1227
1238
  var _super90 = _createSuper(NotAuthorized_PasswordChangeRequiredError);
1228
- function NotAuthorized_PasswordChangeRequiredError(message, code) {
1239
+ function NotAuthorized_PasswordChangeRequiredError(message, code, errorData) {
1229
1240
  var _this90;
1230
1241
  (0, _classCallCheck2.default)(this, NotAuthorized_PasswordChangeRequiredError);
1231
- _this90 = _super90.call(this, message, code);
1242
+ _this90 = _super90.call(this, message, code, errorData);
1232
1243
  _this90.name = 'NotAuthorized_PasswordChangeRequiredError';
1233
1244
  return _this90;
1234
1245
  }
@@ -1238,10 +1249,10 @@ errorClasses.NotAuthorized_PasswordChangeRequiredError = NotAuthorized_PasswordC
1238
1249
  var NotAuthorized_ReadOnlySessionError = exports.NotAuthorized_ReadOnlySessionError = /*#__PURE__*/function (_NotAuthorizedError23) {
1239
1250
  (0, _inherits2.default)(NotAuthorized_ReadOnlySessionError, _NotAuthorizedError23);
1240
1251
  var _super91 = _createSuper(NotAuthorized_ReadOnlySessionError);
1241
- function NotAuthorized_ReadOnlySessionError(message, code) {
1252
+ function NotAuthorized_ReadOnlySessionError(message, code, errorData) {
1242
1253
  var _this91;
1243
1254
  (0, _classCallCheck2.default)(this, NotAuthorized_ReadOnlySessionError);
1244
- _this91 = _super91.call(this, message, code);
1255
+ _this91 = _super91.call(this, message, code, errorData);
1245
1256
  _this91.name = 'NotAuthorized_ReadOnlySessionError';
1246
1257
  return _this91;
1247
1258
  }
@@ -1251,10 +1262,10 @@ errorClasses.NotAuthorized_ReadOnlySessionError = NotAuthorized_ReadOnlySessionE
1251
1262
  var NotAuthorized_ReadPermissionRequiredError = exports.NotAuthorized_ReadPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError24) {
1252
1263
  (0, _inherits2.default)(NotAuthorized_ReadPermissionRequiredError, _NotAuthorizedError24);
1253
1264
  var _super92 = _createSuper(NotAuthorized_ReadPermissionRequiredError);
1254
- function NotAuthorized_ReadPermissionRequiredError(message, code) {
1265
+ function NotAuthorized_ReadPermissionRequiredError(message, code, errorData) {
1255
1266
  var _this92;
1256
1267
  (0, _classCallCheck2.default)(this, NotAuthorized_ReadPermissionRequiredError);
1257
- _this92 = _super92.call(this, message, code);
1268
+ _this92 = _super92.call(this, message, code, errorData);
1258
1269
  _this92.name = 'NotAuthorized_ReadPermissionRequiredError';
1259
1270
  return _this92;
1260
1271
  }
@@ -1264,10 +1275,10 @@ errorClasses.NotAuthorized_ReadPermissionRequiredError = NotAuthorized_ReadPermi
1264
1275
  var NotAuthorized_ReauthenticationFailedError = exports.NotAuthorized_ReauthenticationFailedError = /*#__PURE__*/function (_NotAuthorizedError25) {
1265
1276
  (0, _inherits2.default)(NotAuthorized_ReauthenticationFailedError, _NotAuthorizedError25);
1266
1277
  var _super93 = _createSuper(NotAuthorized_ReauthenticationFailedError);
1267
- function NotAuthorized_ReauthenticationFailedError(message, code) {
1278
+ function NotAuthorized_ReauthenticationFailedError(message, code, errorData) {
1268
1279
  var _this93;
1269
1280
  (0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationFailedError);
1270
- _this93 = _super93.call(this, message, code);
1281
+ _this93 = _super93.call(this, message, code, errorData);
1271
1282
  _this93.name = 'NotAuthorized_ReauthenticationFailedError';
1272
1283
  return _this93;
1273
1284
  }
@@ -1277,10 +1288,10 @@ errorClasses.NotAuthorized_ReauthenticationFailedError = NotAuthorized_Reauthent
1277
1288
  var NotAuthorized_ReauthenticationFailedFinalError = exports.NotAuthorized_ReauthenticationFailedFinalError = /*#__PURE__*/function (_NotAuthorizedError26) {
1278
1289
  (0, _inherits2.default)(NotAuthorized_ReauthenticationFailedFinalError, _NotAuthorizedError26);
1279
1290
  var _super94 = _createSuper(NotAuthorized_ReauthenticationFailedFinalError);
1280
- function NotAuthorized_ReauthenticationFailedFinalError(message, code) {
1291
+ function NotAuthorized_ReauthenticationFailedFinalError(message, code, errorData) {
1281
1292
  var _this94;
1282
1293
  (0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationFailedFinalError);
1283
- _this94 = _super94.call(this, message, code);
1294
+ _this94 = _super94.call(this, message, code, errorData);
1284
1295
  _this94.name = 'NotAuthorized_ReauthenticationFailedFinalError';
1285
1296
  return _this94;
1286
1297
  }
@@ -1290,10 +1301,10 @@ errorClasses.NotAuthorized_ReauthenticationFailedFinalError = NotAuthorized_Reau
1290
1301
  var NotAuthorized_ReauthenticationNeededActionError = exports.NotAuthorized_ReauthenticationNeededActionError = /*#__PURE__*/function (_NotAuthorizedError27) {
1291
1302
  (0, _inherits2.default)(NotAuthorized_ReauthenticationNeededActionError, _NotAuthorizedError27);
1292
1303
  var _super95 = _createSuper(NotAuthorized_ReauthenticationNeededActionError);
1293
- function NotAuthorized_ReauthenticationNeededActionError(message, code) {
1304
+ function NotAuthorized_ReauthenticationNeededActionError(message, code, errorData) {
1294
1305
  var _this95;
1295
1306
  (0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationNeededActionError);
1296
- _this95 = _super95.call(this, message, code);
1307
+ _this95 = _super95.call(this, message, code, errorData);
1297
1308
  _this95.name = 'NotAuthorized_ReauthenticationNeededActionError';
1298
1309
  return _this95;
1299
1310
  }
@@ -1303,10 +1314,10 @@ errorClasses.NotAuthorized_ReauthenticationNeededActionError = NotAuthorized_Rea
1303
1314
  var NotAuthorized_SelfManagedRequiredError = exports.NotAuthorized_SelfManagedRequiredError = /*#__PURE__*/function (_NotAuthorizedError28) {
1304
1315
  (0, _inherits2.default)(NotAuthorized_SelfManagedRequiredError, _NotAuthorizedError28);
1305
1316
  var _super96 = _createSuper(NotAuthorized_SelfManagedRequiredError);
1306
- function NotAuthorized_SelfManagedRequiredError(message, code) {
1317
+ function NotAuthorized_SelfManagedRequiredError(message, code, errorData) {
1307
1318
  var _this96;
1308
1319
  (0, _classCallCheck2.default)(this, NotAuthorized_SelfManagedRequiredError);
1309
- _this96 = _super96.call(this, message, code);
1320
+ _this96 = _super96.call(this, message, code, errorData);
1310
1321
  _this96.name = 'NotAuthorized_SelfManagedRequiredError';
1311
1322
  return _this96;
1312
1323
  }
@@ -1316,10 +1327,10 @@ errorClasses.NotAuthorized_SelfManagedRequiredError = NotAuthorized_SelfManagedR
1316
1327
  var NotAuthorized_SiteAdminRequiredError = exports.NotAuthorized_SiteAdminRequiredError = /*#__PURE__*/function (_NotAuthorizedError29) {
1317
1328
  (0, _inherits2.default)(NotAuthorized_SiteAdminRequiredError, _NotAuthorizedError29);
1318
1329
  var _super97 = _createSuper(NotAuthorized_SiteAdminRequiredError);
1319
- function NotAuthorized_SiteAdminRequiredError(message, code) {
1330
+ function NotAuthorized_SiteAdminRequiredError(message, code, errorData) {
1320
1331
  var _this97;
1321
1332
  (0, _classCallCheck2.default)(this, NotAuthorized_SiteAdminRequiredError);
1322
- _this97 = _super97.call(this, message, code);
1333
+ _this97 = _super97.call(this, message, code, errorData);
1323
1334
  _this97.name = 'NotAuthorized_SiteAdminRequiredError';
1324
1335
  return _this97;
1325
1336
  }
@@ -1329,10 +1340,10 @@ errorClasses.NotAuthorized_SiteAdminRequiredError = NotAuthorized_SiteAdminRequi
1329
1340
  var NotAuthorized_SiteFilesAreImmutableError = exports.NotAuthorized_SiteFilesAreImmutableError = /*#__PURE__*/function (_NotAuthorizedError30) {
1330
1341
  (0, _inherits2.default)(NotAuthorized_SiteFilesAreImmutableError, _NotAuthorizedError30);
1331
1342
  var _super98 = _createSuper(NotAuthorized_SiteFilesAreImmutableError);
1332
- function NotAuthorized_SiteFilesAreImmutableError(message, code) {
1343
+ function NotAuthorized_SiteFilesAreImmutableError(message, code, errorData) {
1333
1344
  var _this98;
1334
1345
  (0, _classCallCheck2.default)(this, NotAuthorized_SiteFilesAreImmutableError);
1335
- _this98 = _super98.call(this, message, code);
1346
+ _this98 = _super98.call(this, message, code, errorData);
1336
1347
  _this98.name = 'NotAuthorized_SiteFilesAreImmutableError';
1337
1348
  return _this98;
1338
1349
  }
@@ -1342,10 +1353,10 @@ errorClasses.NotAuthorized_SiteFilesAreImmutableError = NotAuthorized_SiteFilesA
1342
1353
  var NotAuthorized_TwoFactorAuthenticationRequiredError = exports.NotAuthorized_TwoFactorAuthenticationRequiredError = /*#__PURE__*/function (_NotAuthorizedError31) {
1343
1354
  (0, _inherits2.default)(NotAuthorized_TwoFactorAuthenticationRequiredError, _NotAuthorizedError31);
1344
1355
  var _super99 = _createSuper(NotAuthorized_TwoFactorAuthenticationRequiredError);
1345
- function NotAuthorized_TwoFactorAuthenticationRequiredError(message, code) {
1356
+ function NotAuthorized_TwoFactorAuthenticationRequiredError(message, code, errorData) {
1346
1357
  var _this99;
1347
1358
  (0, _classCallCheck2.default)(this, NotAuthorized_TwoFactorAuthenticationRequiredError);
1348
- _this99 = _super99.call(this, message, code);
1359
+ _this99 = _super99.call(this, message, code, errorData);
1349
1360
  _this99.name = 'NotAuthorized_TwoFactorAuthenticationRequiredError';
1350
1361
  return _this99;
1351
1362
  }
@@ -1355,10 +1366,10 @@ errorClasses.NotAuthorized_TwoFactorAuthenticationRequiredError = NotAuthorized_
1355
1366
  var NotAuthorized_UserIdWithoutSiteAdminError = exports.NotAuthorized_UserIdWithoutSiteAdminError = /*#__PURE__*/function (_NotAuthorizedError32) {
1356
1367
  (0, _inherits2.default)(NotAuthorized_UserIdWithoutSiteAdminError, _NotAuthorizedError32);
1357
1368
  var _super100 = _createSuper(NotAuthorized_UserIdWithoutSiteAdminError);
1358
- function NotAuthorized_UserIdWithoutSiteAdminError(message, code) {
1369
+ function NotAuthorized_UserIdWithoutSiteAdminError(message, code, errorData) {
1359
1370
  var _this100;
1360
1371
  (0, _classCallCheck2.default)(this, NotAuthorized_UserIdWithoutSiteAdminError);
1361
- _this100 = _super100.call(this, message, code);
1372
+ _this100 = _super100.call(this, message, code, errorData);
1362
1373
  _this100.name = 'NotAuthorized_UserIdWithoutSiteAdminError';
1363
1374
  return _this100;
1364
1375
  }
@@ -1368,10 +1379,10 @@ errorClasses.NotAuthorized_UserIdWithoutSiteAdminError = NotAuthorized_UserIdWit
1368
1379
  var NotAuthorized_WriteAndBundlePermissionRequiredError = exports.NotAuthorized_WriteAndBundlePermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError33) {
1369
1380
  (0, _inherits2.default)(NotAuthorized_WriteAndBundlePermissionRequiredError, _NotAuthorizedError33);
1370
1381
  var _super101 = _createSuper(NotAuthorized_WriteAndBundlePermissionRequiredError);
1371
- function NotAuthorized_WriteAndBundlePermissionRequiredError(message, code) {
1382
+ function NotAuthorized_WriteAndBundlePermissionRequiredError(message, code, errorData) {
1372
1383
  var _this101;
1373
1384
  (0, _classCallCheck2.default)(this, NotAuthorized_WriteAndBundlePermissionRequiredError);
1374
- _this101 = _super101.call(this, message, code);
1385
+ _this101 = _super101.call(this, message, code, errorData);
1375
1386
  _this101.name = 'NotAuthorized_WriteAndBundlePermissionRequiredError';
1376
1387
  return _this101;
1377
1388
  }
@@ -1381,10 +1392,10 @@ errorClasses.NotAuthorized_WriteAndBundlePermissionRequiredError = NotAuthorized
1381
1392
  var NotAuthorized_WritePermissionRequiredError = exports.NotAuthorized_WritePermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError34) {
1382
1393
  (0, _inherits2.default)(NotAuthorized_WritePermissionRequiredError, _NotAuthorizedError34);
1383
1394
  var _super102 = _createSuper(NotAuthorized_WritePermissionRequiredError);
1384
- function NotAuthorized_WritePermissionRequiredError(message, code) {
1395
+ function NotAuthorized_WritePermissionRequiredError(message, code, errorData) {
1385
1396
  var _this102;
1386
1397
  (0, _classCallCheck2.default)(this, NotAuthorized_WritePermissionRequiredError);
1387
- _this102 = _super102.call(this, message, code);
1398
+ _this102 = _super102.call(this, message, code, errorData);
1388
1399
  _this102.name = 'NotAuthorized_WritePermissionRequiredError';
1389
1400
  return _this102;
1390
1401
  }
@@ -1394,10 +1405,10 @@ errorClasses.NotAuthorized_WritePermissionRequiredError = NotAuthorized_WritePer
1394
1405
  var NotAuthorized_ZipDownloadIpMismatchError = exports.NotAuthorized_ZipDownloadIpMismatchError = /*#__PURE__*/function (_NotAuthorizedError35) {
1395
1406
  (0, _inherits2.default)(NotAuthorized_ZipDownloadIpMismatchError, _NotAuthorizedError35);
1396
1407
  var _super103 = _createSuper(NotAuthorized_ZipDownloadIpMismatchError);
1397
- function NotAuthorized_ZipDownloadIpMismatchError(message, code) {
1408
+ function NotAuthorized_ZipDownloadIpMismatchError(message, code, errorData) {
1398
1409
  var _this103;
1399
1410
  (0, _classCallCheck2.default)(this, NotAuthorized_ZipDownloadIpMismatchError);
1400
- _this103 = _super103.call(this, message, code);
1411
+ _this103 = _super103.call(this, message, code, errorData);
1401
1412
  _this103.name = 'NotAuthorized_ZipDownloadIpMismatchError';
1402
1413
  return _this103;
1403
1414
  }
@@ -1407,10 +1418,10 @@ errorClasses.NotAuthorized_ZipDownloadIpMismatchError = NotAuthorized_ZipDownloa
1407
1418
  var NotFound_ApiKeyNotFoundError = exports.NotFound_ApiKeyNotFoundError = /*#__PURE__*/function (_NotFoundError) {
1408
1419
  (0, _inherits2.default)(NotFound_ApiKeyNotFoundError, _NotFoundError);
1409
1420
  var _super104 = _createSuper(NotFound_ApiKeyNotFoundError);
1410
- function NotFound_ApiKeyNotFoundError(message, code) {
1421
+ function NotFound_ApiKeyNotFoundError(message, code, errorData) {
1411
1422
  var _this104;
1412
1423
  (0, _classCallCheck2.default)(this, NotFound_ApiKeyNotFoundError);
1413
- _this104 = _super104.call(this, message, code);
1424
+ _this104 = _super104.call(this, message, code, errorData);
1414
1425
  _this104.name = 'NotFound_ApiKeyNotFoundError';
1415
1426
  return _this104;
1416
1427
  }
@@ -1420,10 +1431,10 @@ errorClasses.NotFound_ApiKeyNotFoundError = NotFound_ApiKeyNotFoundError;
1420
1431
  var NotFound_BundlePathNotFoundError = exports.NotFound_BundlePathNotFoundError = /*#__PURE__*/function (_NotFoundError2) {
1421
1432
  (0, _inherits2.default)(NotFound_BundlePathNotFoundError, _NotFoundError2);
1422
1433
  var _super105 = _createSuper(NotFound_BundlePathNotFoundError);
1423
- function NotFound_BundlePathNotFoundError(message, code) {
1434
+ function NotFound_BundlePathNotFoundError(message, code, errorData) {
1424
1435
  var _this105;
1425
1436
  (0, _classCallCheck2.default)(this, NotFound_BundlePathNotFoundError);
1426
- _this105 = _super105.call(this, message, code);
1437
+ _this105 = _super105.call(this, message, code, errorData);
1427
1438
  _this105.name = 'NotFound_BundlePathNotFoundError';
1428
1439
  return _this105;
1429
1440
  }
@@ -1433,10 +1444,10 @@ errorClasses.NotFound_BundlePathNotFoundError = NotFound_BundlePathNotFoundError
1433
1444
  var NotFound_BundleRegistrationNotFoundError = exports.NotFound_BundleRegistrationNotFoundError = /*#__PURE__*/function (_NotFoundError3) {
1434
1445
  (0, _inherits2.default)(NotFound_BundleRegistrationNotFoundError, _NotFoundError3);
1435
1446
  var _super106 = _createSuper(NotFound_BundleRegistrationNotFoundError);
1436
- function NotFound_BundleRegistrationNotFoundError(message, code) {
1447
+ function NotFound_BundleRegistrationNotFoundError(message, code, errorData) {
1437
1448
  var _this106;
1438
1449
  (0, _classCallCheck2.default)(this, NotFound_BundleRegistrationNotFoundError);
1439
- _this106 = _super106.call(this, message, code);
1450
+ _this106 = _super106.call(this, message, code, errorData);
1440
1451
  _this106.name = 'NotFound_BundleRegistrationNotFoundError';
1441
1452
  return _this106;
1442
1453
  }
@@ -1446,10 +1457,10 @@ errorClasses.NotFound_BundleRegistrationNotFoundError = NotFound_BundleRegistrat
1446
1457
  var NotFound_CodeNotFoundError = exports.NotFound_CodeNotFoundError = /*#__PURE__*/function (_NotFoundError4) {
1447
1458
  (0, _inherits2.default)(NotFound_CodeNotFoundError, _NotFoundError4);
1448
1459
  var _super107 = _createSuper(NotFound_CodeNotFoundError);
1449
- function NotFound_CodeNotFoundError(message, code) {
1460
+ function NotFound_CodeNotFoundError(message, code, errorData) {
1450
1461
  var _this107;
1451
1462
  (0, _classCallCheck2.default)(this, NotFound_CodeNotFoundError);
1452
- _this107 = _super107.call(this, message, code);
1463
+ _this107 = _super107.call(this, message, code, errorData);
1453
1464
  _this107.name = 'NotFound_CodeNotFoundError';
1454
1465
  return _this107;
1455
1466
  }
@@ -1459,10 +1470,10 @@ errorClasses.NotFound_CodeNotFoundError = NotFound_CodeNotFoundError;
1459
1470
  var NotFound_FileNotFoundError = exports.NotFound_FileNotFoundError = /*#__PURE__*/function (_NotFoundError5) {
1460
1471
  (0, _inherits2.default)(NotFound_FileNotFoundError, _NotFoundError5);
1461
1472
  var _super108 = _createSuper(NotFound_FileNotFoundError);
1462
- function NotFound_FileNotFoundError(message, code) {
1473
+ function NotFound_FileNotFoundError(message, code, errorData) {
1463
1474
  var _this108;
1464
1475
  (0, _classCallCheck2.default)(this, NotFound_FileNotFoundError);
1465
- _this108 = _super108.call(this, message, code);
1476
+ _this108 = _super108.call(this, message, code, errorData);
1466
1477
  _this108.name = 'NotFound_FileNotFoundError';
1467
1478
  return _this108;
1468
1479
  }
@@ -1472,10 +1483,10 @@ errorClasses.NotFound_FileNotFoundError = NotFound_FileNotFoundError;
1472
1483
  var NotFound_FileUploadNotFoundError = exports.NotFound_FileUploadNotFoundError = /*#__PURE__*/function (_NotFoundError6) {
1473
1484
  (0, _inherits2.default)(NotFound_FileUploadNotFoundError, _NotFoundError6);
1474
1485
  var _super109 = _createSuper(NotFound_FileUploadNotFoundError);
1475
- function NotFound_FileUploadNotFoundError(message, code) {
1486
+ function NotFound_FileUploadNotFoundError(message, code, errorData) {
1476
1487
  var _this109;
1477
1488
  (0, _classCallCheck2.default)(this, NotFound_FileUploadNotFoundError);
1478
- _this109 = _super109.call(this, message, code);
1489
+ _this109 = _super109.call(this, message, code, errorData);
1479
1490
  _this109.name = 'NotFound_FileUploadNotFoundError';
1480
1491
  return _this109;
1481
1492
  }
@@ -1485,10 +1496,10 @@ errorClasses.NotFound_FileUploadNotFoundError = NotFound_FileUploadNotFoundError
1485
1496
  var NotFound_FolderNotFoundError = exports.NotFound_FolderNotFoundError = /*#__PURE__*/function (_NotFoundError7) {
1486
1497
  (0, _inherits2.default)(NotFound_FolderNotFoundError, _NotFoundError7);
1487
1498
  var _super110 = _createSuper(NotFound_FolderNotFoundError);
1488
- function NotFound_FolderNotFoundError(message, code) {
1499
+ function NotFound_FolderNotFoundError(message, code, errorData) {
1489
1500
  var _this110;
1490
1501
  (0, _classCallCheck2.default)(this, NotFound_FolderNotFoundError);
1491
- _this110 = _super110.call(this, message, code);
1502
+ _this110 = _super110.call(this, message, code, errorData);
1492
1503
  _this110.name = 'NotFound_FolderNotFoundError';
1493
1504
  return _this110;
1494
1505
  }
@@ -1498,10 +1509,10 @@ errorClasses.NotFound_FolderNotFoundError = NotFound_FolderNotFoundError;
1498
1509
  var NotFound_GroupNotFoundError = exports.NotFound_GroupNotFoundError = /*#__PURE__*/function (_NotFoundError8) {
1499
1510
  (0, _inherits2.default)(NotFound_GroupNotFoundError, _NotFoundError8);
1500
1511
  var _super111 = _createSuper(NotFound_GroupNotFoundError);
1501
- function NotFound_GroupNotFoundError(message, code) {
1512
+ function NotFound_GroupNotFoundError(message, code, errorData) {
1502
1513
  var _this111;
1503
1514
  (0, _classCallCheck2.default)(this, NotFound_GroupNotFoundError);
1504
- _this111 = _super111.call(this, message, code);
1515
+ _this111 = _super111.call(this, message, code, errorData);
1505
1516
  _this111.name = 'NotFound_GroupNotFoundError';
1506
1517
  return _this111;
1507
1518
  }
@@ -1511,10 +1522,10 @@ errorClasses.NotFound_GroupNotFoundError = NotFound_GroupNotFoundError;
1511
1522
  var NotFound_InboxNotFoundError = exports.NotFound_InboxNotFoundError = /*#__PURE__*/function (_NotFoundError9) {
1512
1523
  (0, _inherits2.default)(NotFound_InboxNotFoundError, _NotFoundError9);
1513
1524
  var _super112 = _createSuper(NotFound_InboxNotFoundError);
1514
- function NotFound_InboxNotFoundError(message, code) {
1525
+ function NotFound_InboxNotFoundError(message, code, errorData) {
1515
1526
  var _this112;
1516
1527
  (0, _classCallCheck2.default)(this, NotFound_InboxNotFoundError);
1517
- _this112 = _super112.call(this, message, code);
1528
+ _this112 = _super112.call(this, message, code, errorData);
1518
1529
  _this112.name = 'NotFound_InboxNotFoundError';
1519
1530
  return _this112;
1520
1531
  }
@@ -1524,10 +1535,10 @@ errorClasses.NotFound_InboxNotFoundError = NotFound_InboxNotFoundError;
1524
1535
  var NotFound_NestedNotFoundError = exports.NotFound_NestedNotFoundError = /*#__PURE__*/function (_NotFoundError10) {
1525
1536
  (0, _inherits2.default)(NotFound_NestedNotFoundError, _NotFoundError10);
1526
1537
  var _super113 = _createSuper(NotFound_NestedNotFoundError);
1527
- function NotFound_NestedNotFoundError(message, code) {
1538
+ function NotFound_NestedNotFoundError(message, code, errorData) {
1528
1539
  var _this113;
1529
1540
  (0, _classCallCheck2.default)(this, NotFound_NestedNotFoundError);
1530
- _this113 = _super113.call(this, message, code);
1541
+ _this113 = _super113.call(this, message, code, errorData);
1531
1542
  _this113.name = 'NotFound_NestedNotFoundError';
1532
1543
  return _this113;
1533
1544
  }
@@ -1537,10 +1548,10 @@ errorClasses.NotFound_NestedNotFoundError = NotFound_NestedNotFoundError;
1537
1548
  var NotFound_PlanNotFoundError = exports.NotFound_PlanNotFoundError = /*#__PURE__*/function (_NotFoundError11) {
1538
1549
  (0, _inherits2.default)(NotFound_PlanNotFoundError, _NotFoundError11);
1539
1550
  var _super114 = _createSuper(NotFound_PlanNotFoundError);
1540
- function NotFound_PlanNotFoundError(message, code) {
1551
+ function NotFound_PlanNotFoundError(message, code, errorData) {
1541
1552
  var _this114;
1542
1553
  (0, _classCallCheck2.default)(this, NotFound_PlanNotFoundError);
1543
- _this114 = _super114.call(this, message, code);
1554
+ _this114 = _super114.call(this, message, code, errorData);
1544
1555
  _this114.name = 'NotFound_PlanNotFoundError';
1545
1556
  return _this114;
1546
1557
  }
@@ -1550,10 +1561,10 @@ errorClasses.NotFound_PlanNotFoundError = NotFound_PlanNotFoundError;
1550
1561
  var NotFound_SiteNotFoundError = exports.NotFound_SiteNotFoundError = /*#__PURE__*/function (_NotFoundError12) {
1551
1562
  (0, _inherits2.default)(NotFound_SiteNotFoundError, _NotFoundError12);
1552
1563
  var _super115 = _createSuper(NotFound_SiteNotFoundError);
1553
- function NotFound_SiteNotFoundError(message, code) {
1564
+ function NotFound_SiteNotFoundError(message, code, errorData) {
1554
1565
  var _this115;
1555
1566
  (0, _classCallCheck2.default)(this, NotFound_SiteNotFoundError);
1556
- _this115 = _super115.call(this, message, code);
1567
+ _this115 = _super115.call(this, message, code, errorData);
1557
1568
  _this115.name = 'NotFound_SiteNotFoundError';
1558
1569
  return _this115;
1559
1570
  }
@@ -1563,10 +1574,10 @@ errorClasses.NotFound_SiteNotFoundError = NotFound_SiteNotFoundError;
1563
1574
  var NotFound_UserNotFoundError = exports.NotFound_UserNotFoundError = /*#__PURE__*/function (_NotFoundError13) {
1564
1575
  (0, _inherits2.default)(NotFound_UserNotFoundError, _NotFoundError13);
1565
1576
  var _super116 = _createSuper(NotFound_UserNotFoundError);
1566
- function NotFound_UserNotFoundError(message, code) {
1577
+ function NotFound_UserNotFoundError(message, code, errorData) {
1567
1578
  var _this116;
1568
1579
  (0, _classCallCheck2.default)(this, NotFound_UserNotFoundError);
1569
- _this116 = _super116.call(this, message, code);
1580
+ _this116 = _super116.call(this, message, code, errorData);
1570
1581
  _this116.name = 'NotFound_UserNotFoundError';
1571
1582
  return _this116;
1572
1583
  }
@@ -1576,10 +1587,10 @@ errorClasses.NotFound_UserNotFoundError = NotFound_UserNotFoundError;
1576
1587
  var ProcessingFailure_AutomationCannotBeRunManuallyError = exports.ProcessingFailure_AutomationCannotBeRunManuallyError = /*#__PURE__*/function (_ProcessingFailureErr) {
1577
1588
  (0, _inherits2.default)(ProcessingFailure_AutomationCannotBeRunManuallyError, _ProcessingFailureErr);
1578
1589
  var _super117 = _createSuper(ProcessingFailure_AutomationCannotBeRunManuallyError);
1579
- function ProcessingFailure_AutomationCannotBeRunManuallyError(message, code) {
1590
+ function ProcessingFailure_AutomationCannotBeRunManuallyError(message, code, errorData) {
1580
1591
  var _this117;
1581
1592
  (0, _classCallCheck2.default)(this, ProcessingFailure_AutomationCannotBeRunManuallyError);
1582
- _this117 = _super117.call(this, message, code);
1593
+ _this117 = _super117.call(this, message, code, errorData);
1583
1594
  _this117.name = 'ProcessingFailure_AutomationCannotBeRunManuallyError';
1584
1595
  return _this117;
1585
1596
  }
@@ -1589,10 +1600,10 @@ errorClasses.ProcessingFailure_AutomationCannotBeRunManuallyError = ProcessingFa
1589
1600
  var ProcessingFailure_BundleOnlyAllowsPreviewsError = exports.ProcessingFailure_BundleOnlyAllowsPreviewsError = /*#__PURE__*/function (_ProcessingFailureErr2) {
1590
1601
  (0, _inherits2.default)(ProcessingFailure_BundleOnlyAllowsPreviewsError, _ProcessingFailureErr2);
1591
1602
  var _super118 = _createSuper(ProcessingFailure_BundleOnlyAllowsPreviewsError);
1592
- function ProcessingFailure_BundleOnlyAllowsPreviewsError(message, code) {
1603
+ function ProcessingFailure_BundleOnlyAllowsPreviewsError(message, code, errorData) {
1593
1604
  var _this118;
1594
1605
  (0, _classCallCheck2.default)(this, ProcessingFailure_BundleOnlyAllowsPreviewsError);
1595
- _this118 = _super118.call(this, message, code);
1606
+ _this118 = _super118.call(this, message, code, errorData);
1596
1607
  _this118.name = 'ProcessingFailure_BundleOnlyAllowsPreviewsError';
1597
1608
  return _this118;
1598
1609
  }
@@ -1602,10 +1613,10 @@ errorClasses.ProcessingFailure_BundleOnlyAllowsPreviewsError = ProcessingFailure
1602
1613
  var ProcessingFailure_BundleOperationRequiresSubfolderError = exports.ProcessingFailure_BundleOperationRequiresSubfolderError = /*#__PURE__*/function (_ProcessingFailureErr3) {
1603
1614
  (0, _inherits2.default)(ProcessingFailure_BundleOperationRequiresSubfolderError, _ProcessingFailureErr3);
1604
1615
  var _super119 = _createSuper(ProcessingFailure_BundleOperationRequiresSubfolderError);
1605
- function ProcessingFailure_BundleOperationRequiresSubfolderError(message, code) {
1616
+ function ProcessingFailure_BundleOperationRequiresSubfolderError(message, code, errorData) {
1606
1617
  var _this119;
1607
1618
  (0, _classCallCheck2.default)(this, ProcessingFailure_BundleOperationRequiresSubfolderError);
1608
- _this119 = _super119.call(this, message, code);
1619
+ _this119 = _super119.call(this, message, code, errorData);
1609
1620
  _this119.name = 'ProcessingFailure_BundleOperationRequiresSubfolderError';
1610
1621
  return _this119;
1611
1622
  }
@@ -1615,10 +1626,10 @@ errorClasses.ProcessingFailure_BundleOperationRequiresSubfolderError = Processin
1615
1626
  var ProcessingFailure_CouldNotCreateParentError = exports.ProcessingFailure_CouldNotCreateParentError = /*#__PURE__*/function (_ProcessingFailureErr4) {
1616
1627
  (0, _inherits2.default)(ProcessingFailure_CouldNotCreateParentError, _ProcessingFailureErr4);
1617
1628
  var _super120 = _createSuper(ProcessingFailure_CouldNotCreateParentError);
1618
- function ProcessingFailure_CouldNotCreateParentError(message, code) {
1629
+ function ProcessingFailure_CouldNotCreateParentError(message, code, errorData) {
1619
1630
  var _this120;
1620
1631
  (0, _classCallCheck2.default)(this, ProcessingFailure_CouldNotCreateParentError);
1621
- _this120 = _super120.call(this, message, code);
1632
+ _this120 = _super120.call(this, message, code, errorData);
1622
1633
  _this120.name = 'ProcessingFailure_CouldNotCreateParentError';
1623
1634
  return _this120;
1624
1635
  }
@@ -1628,10 +1639,10 @@ errorClasses.ProcessingFailure_CouldNotCreateParentError = ProcessingFailure_Cou
1628
1639
  var ProcessingFailure_DestinationExistsError = exports.ProcessingFailure_DestinationExistsError = /*#__PURE__*/function (_ProcessingFailureErr5) {
1629
1640
  (0, _inherits2.default)(ProcessingFailure_DestinationExistsError, _ProcessingFailureErr5);
1630
1641
  var _super121 = _createSuper(ProcessingFailure_DestinationExistsError);
1631
- function ProcessingFailure_DestinationExistsError(message, code) {
1642
+ function ProcessingFailure_DestinationExistsError(message, code, errorData) {
1632
1643
  var _this121;
1633
1644
  (0, _classCallCheck2.default)(this, ProcessingFailure_DestinationExistsError);
1634
- _this121 = _super121.call(this, message, code);
1645
+ _this121 = _super121.call(this, message, code, errorData);
1635
1646
  _this121.name = 'ProcessingFailure_DestinationExistsError';
1636
1647
  return _this121;
1637
1648
  }
@@ -1641,10 +1652,10 @@ errorClasses.ProcessingFailure_DestinationExistsError = ProcessingFailure_Destin
1641
1652
  var ProcessingFailure_DestinationFolderLimitedError = exports.ProcessingFailure_DestinationFolderLimitedError = /*#__PURE__*/function (_ProcessingFailureErr6) {
1642
1653
  (0, _inherits2.default)(ProcessingFailure_DestinationFolderLimitedError, _ProcessingFailureErr6);
1643
1654
  var _super122 = _createSuper(ProcessingFailure_DestinationFolderLimitedError);
1644
- function ProcessingFailure_DestinationFolderLimitedError(message, code) {
1655
+ function ProcessingFailure_DestinationFolderLimitedError(message, code, errorData) {
1645
1656
  var _this122;
1646
1657
  (0, _classCallCheck2.default)(this, ProcessingFailure_DestinationFolderLimitedError);
1647
- _this122 = _super122.call(this, message, code);
1658
+ _this122 = _super122.call(this, message, code, errorData);
1648
1659
  _this122.name = 'ProcessingFailure_DestinationFolderLimitedError';
1649
1660
  return _this122;
1650
1661
  }
@@ -1654,10 +1665,10 @@ errorClasses.ProcessingFailure_DestinationFolderLimitedError = ProcessingFailure
1654
1665
  var ProcessingFailure_DestinationParentConflictError = exports.ProcessingFailure_DestinationParentConflictError = /*#__PURE__*/function (_ProcessingFailureErr7) {
1655
1666
  (0, _inherits2.default)(ProcessingFailure_DestinationParentConflictError, _ProcessingFailureErr7);
1656
1667
  var _super123 = _createSuper(ProcessingFailure_DestinationParentConflictError);
1657
- function ProcessingFailure_DestinationParentConflictError(message, code) {
1668
+ function ProcessingFailure_DestinationParentConflictError(message, code, errorData) {
1658
1669
  var _this123;
1659
1670
  (0, _classCallCheck2.default)(this, ProcessingFailure_DestinationParentConflictError);
1660
- _this123 = _super123.call(this, message, code);
1671
+ _this123 = _super123.call(this, message, code, errorData);
1661
1672
  _this123.name = 'ProcessingFailure_DestinationParentConflictError';
1662
1673
  return _this123;
1663
1674
  }
@@ -1667,10 +1678,10 @@ errorClasses.ProcessingFailure_DestinationParentConflictError = ProcessingFailur
1667
1678
  var ProcessingFailure_DestinationParentDoesNotExistError = exports.ProcessingFailure_DestinationParentDoesNotExistError = /*#__PURE__*/function (_ProcessingFailureErr8) {
1668
1679
  (0, _inherits2.default)(ProcessingFailure_DestinationParentDoesNotExistError, _ProcessingFailureErr8);
1669
1680
  var _super124 = _createSuper(ProcessingFailure_DestinationParentDoesNotExistError);
1670
- function ProcessingFailure_DestinationParentDoesNotExistError(message, code) {
1681
+ function ProcessingFailure_DestinationParentDoesNotExistError(message, code, errorData) {
1671
1682
  var _this124;
1672
1683
  (0, _classCallCheck2.default)(this, ProcessingFailure_DestinationParentDoesNotExistError);
1673
- _this124 = _super124.call(this, message, code);
1684
+ _this124 = _super124.call(this, message, code, errorData);
1674
1685
  _this124.name = 'ProcessingFailure_DestinationParentDoesNotExistError';
1675
1686
  return _this124;
1676
1687
  }
@@ -1680,10 +1691,10 @@ errorClasses.ProcessingFailure_DestinationParentDoesNotExistError = ProcessingFa
1680
1691
  var ProcessingFailure_ExpiredPrivateKeyError = exports.ProcessingFailure_ExpiredPrivateKeyError = /*#__PURE__*/function (_ProcessingFailureErr9) {
1681
1692
  (0, _inherits2.default)(ProcessingFailure_ExpiredPrivateKeyError, _ProcessingFailureErr9);
1682
1693
  var _super125 = _createSuper(ProcessingFailure_ExpiredPrivateKeyError);
1683
- function ProcessingFailure_ExpiredPrivateKeyError(message, code) {
1694
+ function ProcessingFailure_ExpiredPrivateKeyError(message, code, errorData) {
1684
1695
  var _this125;
1685
1696
  (0, _classCallCheck2.default)(this, ProcessingFailure_ExpiredPrivateKeyError);
1686
- _this125 = _super125.call(this, message, code);
1697
+ _this125 = _super125.call(this, message, code, errorData);
1687
1698
  _this125.name = 'ProcessingFailure_ExpiredPrivateKeyError';
1688
1699
  return _this125;
1689
1700
  }
@@ -1693,10 +1704,10 @@ errorClasses.ProcessingFailure_ExpiredPrivateKeyError = ProcessingFailure_Expire
1693
1704
  var ProcessingFailure_ExpiredPublicKeyError = exports.ProcessingFailure_ExpiredPublicKeyError = /*#__PURE__*/function (_ProcessingFailureErr10) {
1694
1705
  (0, _inherits2.default)(ProcessingFailure_ExpiredPublicKeyError, _ProcessingFailureErr10);
1695
1706
  var _super126 = _createSuper(ProcessingFailure_ExpiredPublicKeyError);
1696
- function ProcessingFailure_ExpiredPublicKeyError(message, code) {
1707
+ function ProcessingFailure_ExpiredPublicKeyError(message, code, errorData) {
1697
1708
  var _this126;
1698
1709
  (0, _classCallCheck2.default)(this, ProcessingFailure_ExpiredPublicKeyError);
1699
- _this126 = _super126.call(this, message, code);
1710
+ _this126 = _super126.call(this, message, code, errorData);
1700
1711
  _this126.name = 'ProcessingFailure_ExpiredPublicKeyError';
1701
1712
  return _this126;
1702
1713
  }
@@ -1706,10 +1717,10 @@ errorClasses.ProcessingFailure_ExpiredPublicKeyError = ProcessingFailure_Expired
1706
1717
  var ProcessingFailure_ExportFailureError = exports.ProcessingFailure_ExportFailureError = /*#__PURE__*/function (_ProcessingFailureErr11) {
1707
1718
  (0, _inherits2.default)(ProcessingFailure_ExportFailureError, _ProcessingFailureErr11);
1708
1719
  var _super127 = _createSuper(ProcessingFailure_ExportFailureError);
1709
- function ProcessingFailure_ExportFailureError(message, code) {
1720
+ function ProcessingFailure_ExportFailureError(message, code, errorData) {
1710
1721
  var _this127;
1711
1722
  (0, _classCallCheck2.default)(this, ProcessingFailure_ExportFailureError);
1712
- _this127 = _super127.call(this, message, code);
1723
+ _this127 = _super127.call(this, message, code, errorData);
1713
1724
  _this127.name = 'ProcessingFailure_ExportFailureError';
1714
1725
  return _this127;
1715
1726
  }
@@ -1719,10 +1730,10 @@ errorClasses.ProcessingFailure_ExportFailureError = ProcessingFailure_ExportFail
1719
1730
  var ProcessingFailure_ExportNotReadyError = exports.ProcessingFailure_ExportNotReadyError = /*#__PURE__*/function (_ProcessingFailureErr12) {
1720
1731
  (0, _inherits2.default)(ProcessingFailure_ExportNotReadyError, _ProcessingFailureErr12);
1721
1732
  var _super128 = _createSuper(ProcessingFailure_ExportNotReadyError);
1722
- function ProcessingFailure_ExportNotReadyError(message, code) {
1733
+ function ProcessingFailure_ExportNotReadyError(message, code, errorData) {
1723
1734
  var _this128;
1724
1735
  (0, _classCallCheck2.default)(this, ProcessingFailure_ExportNotReadyError);
1725
- _this128 = _super128.call(this, message, code);
1736
+ _this128 = _super128.call(this, message, code, errorData);
1726
1737
  _this128.name = 'ProcessingFailure_ExportNotReadyError';
1727
1738
  return _this128;
1728
1739
  }
@@ -1732,10 +1743,10 @@ errorClasses.ProcessingFailure_ExportNotReadyError = ProcessingFailure_ExportNot
1732
1743
  var ProcessingFailure_FailedToChangePasswordError = exports.ProcessingFailure_FailedToChangePasswordError = /*#__PURE__*/function (_ProcessingFailureErr13) {
1733
1744
  (0, _inherits2.default)(ProcessingFailure_FailedToChangePasswordError, _ProcessingFailureErr13);
1734
1745
  var _super129 = _createSuper(ProcessingFailure_FailedToChangePasswordError);
1735
- function ProcessingFailure_FailedToChangePasswordError(message, code) {
1746
+ function ProcessingFailure_FailedToChangePasswordError(message, code, errorData) {
1736
1747
  var _this129;
1737
1748
  (0, _classCallCheck2.default)(this, ProcessingFailure_FailedToChangePasswordError);
1738
- _this129 = _super129.call(this, message, code);
1749
+ _this129 = _super129.call(this, message, code, errorData);
1739
1750
  _this129.name = 'ProcessingFailure_FailedToChangePasswordError';
1740
1751
  return _this129;
1741
1752
  }
@@ -1745,10 +1756,10 @@ errorClasses.ProcessingFailure_FailedToChangePasswordError = ProcessingFailure_F
1745
1756
  var ProcessingFailure_FileLockedError = exports.ProcessingFailure_FileLockedError = /*#__PURE__*/function (_ProcessingFailureErr14) {
1746
1757
  (0, _inherits2.default)(ProcessingFailure_FileLockedError, _ProcessingFailureErr14);
1747
1758
  var _super130 = _createSuper(ProcessingFailure_FileLockedError);
1748
- function ProcessingFailure_FileLockedError(message, code) {
1759
+ function ProcessingFailure_FileLockedError(message, code, errorData) {
1749
1760
  var _this130;
1750
1761
  (0, _classCallCheck2.default)(this, ProcessingFailure_FileLockedError);
1751
- _this130 = _super130.call(this, message, code);
1762
+ _this130 = _super130.call(this, message, code, errorData);
1752
1763
  _this130.name = 'ProcessingFailure_FileLockedError';
1753
1764
  return _this130;
1754
1765
  }
@@ -1758,10 +1769,10 @@ errorClasses.ProcessingFailure_FileLockedError = ProcessingFailure_FileLockedErr
1758
1769
  var ProcessingFailure_FileNotUploadedError = exports.ProcessingFailure_FileNotUploadedError = /*#__PURE__*/function (_ProcessingFailureErr15) {
1759
1770
  (0, _inherits2.default)(ProcessingFailure_FileNotUploadedError, _ProcessingFailureErr15);
1760
1771
  var _super131 = _createSuper(ProcessingFailure_FileNotUploadedError);
1761
- function ProcessingFailure_FileNotUploadedError(message, code) {
1772
+ function ProcessingFailure_FileNotUploadedError(message, code, errorData) {
1762
1773
  var _this131;
1763
1774
  (0, _classCallCheck2.default)(this, ProcessingFailure_FileNotUploadedError);
1764
- _this131 = _super131.call(this, message, code);
1775
+ _this131 = _super131.call(this, message, code, errorData);
1765
1776
  _this131.name = 'ProcessingFailure_FileNotUploadedError';
1766
1777
  return _this131;
1767
1778
  }
@@ -1771,10 +1782,10 @@ errorClasses.ProcessingFailure_FileNotUploadedError = ProcessingFailure_FileNotU
1771
1782
  var ProcessingFailure_FilePendingProcessingError = exports.ProcessingFailure_FilePendingProcessingError = /*#__PURE__*/function (_ProcessingFailureErr16) {
1772
1783
  (0, _inherits2.default)(ProcessingFailure_FilePendingProcessingError, _ProcessingFailureErr16);
1773
1784
  var _super132 = _createSuper(ProcessingFailure_FilePendingProcessingError);
1774
- function ProcessingFailure_FilePendingProcessingError(message, code) {
1785
+ function ProcessingFailure_FilePendingProcessingError(message, code, errorData) {
1775
1786
  var _this132;
1776
1787
  (0, _classCallCheck2.default)(this, ProcessingFailure_FilePendingProcessingError);
1777
- _this132 = _super132.call(this, message, code);
1788
+ _this132 = _super132.call(this, message, code, errorData);
1778
1789
  _this132.name = 'ProcessingFailure_FilePendingProcessingError';
1779
1790
  return _this132;
1780
1791
  }
@@ -1784,10 +1795,10 @@ errorClasses.ProcessingFailure_FilePendingProcessingError = ProcessingFailure_Fi
1784
1795
  var ProcessingFailure_FileTooBigToDecryptError = exports.ProcessingFailure_FileTooBigToDecryptError = /*#__PURE__*/function (_ProcessingFailureErr17) {
1785
1796
  (0, _inherits2.default)(ProcessingFailure_FileTooBigToDecryptError, _ProcessingFailureErr17);
1786
1797
  var _super133 = _createSuper(ProcessingFailure_FileTooBigToDecryptError);
1787
- function ProcessingFailure_FileTooBigToDecryptError(message, code) {
1798
+ function ProcessingFailure_FileTooBigToDecryptError(message, code, errorData) {
1788
1799
  var _this133;
1789
1800
  (0, _classCallCheck2.default)(this, ProcessingFailure_FileTooBigToDecryptError);
1790
- _this133 = _super133.call(this, message, code);
1801
+ _this133 = _super133.call(this, message, code, errorData);
1791
1802
  _this133.name = 'ProcessingFailure_FileTooBigToDecryptError';
1792
1803
  return _this133;
1793
1804
  }
@@ -1797,10 +1808,10 @@ errorClasses.ProcessingFailure_FileTooBigToDecryptError = ProcessingFailure_File
1797
1808
  var ProcessingFailure_FileTooBigToEncryptError = exports.ProcessingFailure_FileTooBigToEncryptError = /*#__PURE__*/function (_ProcessingFailureErr18) {
1798
1809
  (0, _inherits2.default)(ProcessingFailure_FileTooBigToEncryptError, _ProcessingFailureErr18);
1799
1810
  var _super134 = _createSuper(ProcessingFailure_FileTooBigToEncryptError);
1800
- function ProcessingFailure_FileTooBigToEncryptError(message, code) {
1811
+ function ProcessingFailure_FileTooBigToEncryptError(message, code, errorData) {
1801
1812
  var _this134;
1802
1813
  (0, _classCallCheck2.default)(this, ProcessingFailure_FileTooBigToEncryptError);
1803
- _this134 = _super134.call(this, message, code);
1814
+ _this134 = _super134.call(this, message, code, errorData);
1804
1815
  _this134.name = 'ProcessingFailure_FileTooBigToEncryptError';
1805
1816
  return _this134;
1806
1817
  }
@@ -1810,10 +1821,10 @@ errorClasses.ProcessingFailure_FileTooBigToEncryptError = ProcessingFailure_File
1810
1821
  var ProcessingFailure_FileUploadedToWrongRegionError = exports.ProcessingFailure_FileUploadedToWrongRegionError = /*#__PURE__*/function (_ProcessingFailureErr19) {
1811
1822
  (0, _inherits2.default)(ProcessingFailure_FileUploadedToWrongRegionError, _ProcessingFailureErr19);
1812
1823
  var _super135 = _createSuper(ProcessingFailure_FileUploadedToWrongRegionError);
1813
- function ProcessingFailure_FileUploadedToWrongRegionError(message, code) {
1824
+ function ProcessingFailure_FileUploadedToWrongRegionError(message, code, errorData) {
1814
1825
  var _this135;
1815
1826
  (0, _classCallCheck2.default)(this, ProcessingFailure_FileUploadedToWrongRegionError);
1816
- _this135 = _super135.call(this, message, code);
1827
+ _this135 = _super135.call(this, message, code, errorData);
1817
1828
  _this135.name = 'ProcessingFailure_FileUploadedToWrongRegionError';
1818
1829
  return _this135;
1819
1830
  }
@@ -1823,10 +1834,10 @@ errorClasses.ProcessingFailure_FileUploadedToWrongRegionError = ProcessingFailur
1823
1834
  var ProcessingFailure_FolderLockedError = exports.ProcessingFailure_FolderLockedError = /*#__PURE__*/function (_ProcessingFailureErr20) {
1824
1835
  (0, _inherits2.default)(ProcessingFailure_FolderLockedError, _ProcessingFailureErr20);
1825
1836
  var _super136 = _createSuper(ProcessingFailure_FolderLockedError);
1826
- function ProcessingFailure_FolderLockedError(message, code) {
1837
+ function ProcessingFailure_FolderLockedError(message, code, errorData) {
1827
1838
  var _this136;
1828
1839
  (0, _classCallCheck2.default)(this, ProcessingFailure_FolderLockedError);
1829
- _this136 = _super136.call(this, message, code);
1840
+ _this136 = _super136.call(this, message, code, errorData);
1830
1841
  _this136.name = 'ProcessingFailure_FolderLockedError';
1831
1842
  return _this136;
1832
1843
  }
@@ -1836,10 +1847,10 @@ errorClasses.ProcessingFailure_FolderLockedError = ProcessingFailure_FolderLocke
1836
1847
  var ProcessingFailure_FolderNotEmptyError = exports.ProcessingFailure_FolderNotEmptyError = /*#__PURE__*/function (_ProcessingFailureErr21) {
1837
1848
  (0, _inherits2.default)(ProcessingFailure_FolderNotEmptyError, _ProcessingFailureErr21);
1838
1849
  var _super137 = _createSuper(ProcessingFailure_FolderNotEmptyError);
1839
- function ProcessingFailure_FolderNotEmptyError(message, code) {
1850
+ function ProcessingFailure_FolderNotEmptyError(message, code, errorData) {
1840
1851
  var _this137;
1841
1852
  (0, _classCallCheck2.default)(this, ProcessingFailure_FolderNotEmptyError);
1842
- _this137 = _super137.call(this, message, code);
1853
+ _this137 = _super137.call(this, message, code, errorData);
1843
1854
  _this137.name = 'ProcessingFailure_FolderNotEmptyError';
1844
1855
  return _this137;
1845
1856
  }
@@ -1849,10 +1860,10 @@ errorClasses.ProcessingFailure_FolderNotEmptyError = ProcessingFailure_FolderNot
1849
1860
  var ProcessingFailure_HistoryUnavailableError = exports.ProcessingFailure_HistoryUnavailableError = /*#__PURE__*/function (_ProcessingFailureErr22) {
1850
1861
  (0, _inherits2.default)(ProcessingFailure_HistoryUnavailableError, _ProcessingFailureErr22);
1851
1862
  var _super138 = _createSuper(ProcessingFailure_HistoryUnavailableError);
1852
- function ProcessingFailure_HistoryUnavailableError(message, code) {
1863
+ function ProcessingFailure_HistoryUnavailableError(message, code, errorData) {
1853
1864
  var _this138;
1854
1865
  (0, _classCallCheck2.default)(this, ProcessingFailure_HistoryUnavailableError);
1855
- _this138 = _super138.call(this, message, code);
1866
+ _this138 = _super138.call(this, message, code, errorData);
1856
1867
  _this138.name = 'ProcessingFailure_HistoryUnavailableError';
1857
1868
  return _this138;
1858
1869
  }
@@ -1862,10 +1873,10 @@ errorClasses.ProcessingFailure_HistoryUnavailableError = ProcessingFailure_Histo
1862
1873
  var ProcessingFailure_InvalidBundleCodeError = exports.ProcessingFailure_InvalidBundleCodeError = /*#__PURE__*/function (_ProcessingFailureErr23) {
1863
1874
  (0, _inherits2.default)(ProcessingFailure_InvalidBundleCodeError, _ProcessingFailureErr23);
1864
1875
  var _super139 = _createSuper(ProcessingFailure_InvalidBundleCodeError);
1865
- function ProcessingFailure_InvalidBundleCodeError(message, code) {
1876
+ function ProcessingFailure_InvalidBundleCodeError(message, code, errorData) {
1866
1877
  var _this139;
1867
1878
  (0, _classCallCheck2.default)(this, ProcessingFailure_InvalidBundleCodeError);
1868
- _this139 = _super139.call(this, message, code);
1879
+ _this139 = _super139.call(this, message, code, errorData);
1869
1880
  _this139.name = 'ProcessingFailure_InvalidBundleCodeError';
1870
1881
  return _this139;
1871
1882
  }
@@ -1875,10 +1886,10 @@ errorClasses.ProcessingFailure_InvalidBundleCodeError = ProcessingFailure_Invali
1875
1886
  var ProcessingFailure_InvalidFileTypeError = exports.ProcessingFailure_InvalidFileTypeError = /*#__PURE__*/function (_ProcessingFailureErr24) {
1876
1887
  (0, _inherits2.default)(ProcessingFailure_InvalidFileTypeError, _ProcessingFailureErr24);
1877
1888
  var _super140 = _createSuper(ProcessingFailure_InvalidFileTypeError);
1878
- function ProcessingFailure_InvalidFileTypeError(message, code) {
1889
+ function ProcessingFailure_InvalidFileTypeError(message, code, errorData) {
1879
1890
  var _this140;
1880
1891
  (0, _classCallCheck2.default)(this, ProcessingFailure_InvalidFileTypeError);
1881
- _this140 = _super140.call(this, message, code);
1892
+ _this140 = _super140.call(this, message, code, errorData);
1882
1893
  _this140.name = 'ProcessingFailure_InvalidFileTypeError';
1883
1894
  return _this140;
1884
1895
  }
@@ -1888,10 +1899,10 @@ errorClasses.ProcessingFailure_InvalidFileTypeError = ProcessingFailure_InvalidF
1888
1899
  var ProcessingFailure_InvalidFilenameError = exports.ProcessingFailure_InvalidFilenameError = /*#__PURE__*/function (_ProcessingFailureErr25) {
1889
1900
  (0, _inherits2.default)(ProcessingFailure_InvalidFilenameError, _ProcessingFailureErr25);
1890
1901
  var _super141 = _createSuper(ProcessingFailure_InvalidFilenameError);
1891
- function ProcessingFailure_InvalidFilenameError(message, code) {
1902
+ function ProcessingFailure_InvalidFilenameError(message, code, errorData) {
1892
1903
  var _this141;
1893
1904
  (0, _classCallCheck2.default)(this, ProcessingFailure_InvalidFilenameError);
1894
- _this141 = _super141.call(this, message, code);
1905
+ _this141 = _super141.call(this, message, code, errorData);
1895
1906
  _this141.name = 'ProcessingFailure_InvalidFilenameError';
1896
1907
  return _this141;
1897
1908
  }
@@ -1901,10 +1912,10 @@ errorClasses.ProcessingFailure_InvalidFilenameError = ProcessingFailure_InvalidF
1901
1912
  var ProcessingFailure_InvalidRangeError = exports.ProcessingFailure_InvalidRangeError = /*#__PURE__*/function (_ProcessingFailureErr26) {
1902
1913
  (0, _inherits2.default)(ProcessingFailure_InvalidRangeError, _ProcessingFailureErr26);
1903
1914
  var _super142 = _createSuper(ProcessingFailure_InvalidRangeError);
1904
- function ProcessingFailure_InvalidRangeError(message, code) {
1915
+ function ProcessingFailure_InvalidRangeError(message, code, errorData) {
1905
1916
  var _this142;
1906
1917
  (0, _classCallCheck2.default)(this, ProcessingFailure_InvalidRangeError);
1907
- _this142 = _super142.call(this, message, code);
1918
+ _this142 = _super142.call(this, message, code, errorData);
1908
1919
  _this142.name = 'ProcessingFailure_InvalidRangeError';
1909
1920
  return _this142;
1910
1921
  }
@@ -1914,10 +1925,10 @@ errorClasses.ProcessingFailure_InvalidRangeError = ProcessingFailure_InvalidRang
1914
1925
  var ProcessingFailure_ModelSaveErrorError = exports.ProcessingFailure_ModelSaveErrorError = /*#__PURE__*/function (_ProcessingFailureErr27) {
1915
1926
  (0, _inherits2.default)(ProcessingFailure_ModelSaveErrorError, _ProcessingFailureErr27);
1916
1927
  var _super143 = _createSuper(ProcessingFailure_ModelSaveErrorError);
1917
- function ProcessingFailure_ModelSaveErrorError(message, code) {
1928
+ function ProcessingFailure_ModelSaveErrorError(message, code, errorData) {
1918
1929
  var _this143;
1919
1930
  (0, _classCallCheck2.default)(this, ProcessingFailure_ModelSaveErrorError);
1920
- _this143 = _super143.call(this, message, code);
1931
+ _this143 = _super143.call(this, message, code, errorData);
1921
1932
  _this143.name = 'ProcessingFailure_ModelSaveErrorError';
1922
1933
  return _this143;
1923
1934
  }
@@ -1927,10 +1938,10 @@ errorClasses.ProcessingFailure_ModelSaveErrorError = ProcessingFailure_ModelSave
1927
1938
  var ProcessingFailure_MultipleProcessingErrorsError = exports.ProcessingFailure_MultipleProcessingErrorsError = /*#__PURE__*/function (_ProcessingFailureErr28) {
1928
1939
  (0, _inherits2.default)(ProcessingFailure_MultipleProcessingErrorsError, _ProcessingFailureErr28);
1929
1940
  var _super144 = _createSuper(ProcessingFailure_MultipleProcessingErrorsError);
1930
- function ProcessingFailure_MultipleProcessingErrorsError(message, code) {
1941
+ function ProcessingFailure_MultipleProcessingErrorsError(message, code, errorData) {
1931
1942
  var _this144;
1932
1943
  (0, _classCallCheck2.default)(this, ProcessingFailure_MultipleProcessingErrorsError);
1933
- _this144 = _super144.call(this, message, code);
1944
+ _this144 = _super144.call(this, message, code, errorData);
1934
1945
  _this144.name = 'ProcessingFailure_MultipleProcessingErrorsError';
1935
1946
  return _this144;
1936
1947
  }
@@ -1940,10 +1951,10 @@ errorClasses.ProcessingFailure_MultipleProcessingErrorsError = ProcessingFailure
1940
1951
  var ProcessingFailure_PathTooLongError = exports.ProcessingFailure_PathTooLongError = /*#__PURE__*/function (_ProcessingFailureErr29) {
1941
1952
  (0, _inherits2.default)(ProcessingFailure_PathTooLongError, _ProcessingFailureErr29);
1942
1953
  var _super145 = _createSuper(ProcessingFailure_PathTooLongError);
1943
- function ProcessingFailure_PathTooLongError(message, code) {
1954
+ function ProcessingFailure_PathTooLongError(message, code, errorData) {
1944
1955
  var _this145;
1945
1956
  (0, _classCallCheck2.default)(this, ProcessingFailure_PathTooLongError);
1946
- _this145 = _super145.call(this, message, code);
1957
+ _this145 = _super145.call(this, message, code, errorData);
1947
1958
  _this145.name = 'ProcessingFailure_PathTooLongError';
1948
1959
  return _this145;
1949
1960
  }
@@ -1953,10 +1964,10 @@ errorClasses.ProcessingFailure_PathTooLongError = ProcessingFailure_PathTooLongE
1953
1964
  var ProcessingFailure_RecipientAlreadySharedError = exports.ProcessingFailure_RecipientAlreadySharedError = /*#__PURE__*/function (_ProcessingFailureErr30) {
1954
1965
  (0, _inherits2.default)(ProcessingFailure_RecipientAlreadySharedError, _ProcessingFailureErr30);
1955
1966
  var _super146 = _createSuper(ProcessingFailure_RecipientAlreadySharedError);
1956
- function ProcessingFailure_RecipientAlreadySharedError(message, code) {
1967
+ function ProcessingFailure_RecipientAlreadySharedError(message, code, errorData) {
1957
1968
  var _this146;
1958
1969
  (0, _classCallCheck2.default)(this, ProcessingFailure_RecipientAlreadySharedError);
1959
- _this146 = _super146.call(this, message, code);
1970
+ _this146 = _super146.call(this, message, code, errorData);
1960
1971
  _this146.name = 'ProcessingFailure_RecipientAlreadySharedError';
1961
1972
  return _this146;
1962
1973
  }
@@ -1966,10 +1977,10 @@ errorClasses.ProcessingFailure_RecipientAlreadySharedError = ProcessingFailure_R
1966
1977
  var ProcessingFailure_RemoteServerErrorError = exports.ProcessingFailure_RemoteServerErrorError = /*#__PURE__*/function (_ProcessingFailureErr31) {
1967
1978
  (0, _inherits2.default)(ProcessingFailure_RemoteServerErrorError, _ProcessingFailureErr31);
1968
1979
  var _super147 = _createSuper(ProcessingFailure_RemoteServerErrorError);
1969
- function ProcessingFailure_RemoteServerErrorError(message, code) {
1980
+ function ProcessingFailure_RemoteServerErrorError(message, code, errorData) {
1970
1981
  var _this147;
1971
1982
  (0, _classCallCheck2.default)(this, ProcessingFailure_RemoteServerErrorError);
1972
- _this147 = _super147.call(this, message, code);
1983
+ _this147 = _super147.call(this, message, code, errorData);
1973
1984
  _this147.name = 'ProcessingFailure_RemoteServerErrorError';
1974
1985
  return _this147;
1975
1986
  }
@@ -1979,10 +1990,10 @@ errorClasses.ProcessingFailure_RemoteServerErrorError = ProcessingFailure_Remote
1979
1990
  var ProcessingFailure_ResourceLockedError = exports.ProcessingFailure_ResourceLockedError = /*#__PURE__*/function (_ProcessingFailureErr32) {
1980
1991
  (0, _inherits2.default)(ProcessingFailure_ResourceLockedError, _ProcessingFailureErr32);
1981
1992
  var _super148 = _createSuper(ProcessingFailure_ResourceLockedError);
1982
- function ProcessingFailure_ResourceLockedError(message, code) {
1993
+ function ProcessingFailure_ResourceLockedError(message, code, errorData) {
1983
1994
  var _this148;
1984
1995
  (0, _classCallCheck2.default)(this, ProcessingFailure_ResourceLockedError);
1985
- _this148 = _super148.call(this, message, code);
1996
+ _this148 = _super148.call(this, message, code, errorData);
1986
1997
  _this148.name = 'ProcessingFailure_ResourceLockedError';
1987
1998
  return _this148;
1988
1999
  }
@@ -1992,10 +2003,10 @@ errorClasses.ProcessingFailure_ResourceLockedError = ProcessingFailure_ResourceL
1992
2003
  var ProcessingFailure_SubfolderLockedError = exports.ProcessingFailure_SubfolderLockedError = /*#__PURE__*/function (_ProcessingFailureErr33) {
1993
2004
  (0, _inherits2.default)(ProcessingFailure_SubfolderLockedError, _ProcessingFailureErr33);
1994
2005
  var _super149 = _createSuper(ProcessingFailure_SubfolderLockedError);
1995
- function ProcessingFailure_SubfolderLockedError(message, code) {
2006
+ function ProcessingFailure_SubfolderLockedError(message, code, errorData) {
1996
2007
  var _this149;
1997
2008
  (0, _classCallCheck2.default)(this, ProcessingFailure_SubfolderLockedError);
1998
- _this149 = _super149.call(this, message, code);
2009
+ _this149 = _super149.call(this, message, code, errorData);
1999
2010
  _this149.name = 'ProcessingFailure_SubfolderLockedError';
2000
2011
  return _this149;
2001
2012
  }
@@ -2005,10 +2016,10 @@ errorClasses.ProcessingFailure_SubfolderLockedError = ProcessingFailure_Subfolde
2005
2016
  var ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = exports.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = /*#__PURE__*/function (_ProcessingFailureErr34) {
2006
2017
  (0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError, _ProcessingFailureErr34);
2007
2018
  var _super150 = _createSuper(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
2008
- function ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError(message, code) {
2019
+ function ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError(message, code, errorData) {
2009
2020
  var _this150;
2010
2021
  (0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
2011
- _this150 = _super150.call(this, message, code);
2022
+ _this150 = _super150.call(this, message, code, errorData);
2012
2023
  _this150.name = 'ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError';
2013
2024
  return _this150;
2014
2025
  }
@@ -2018,10 +2029,10 @@ errorClasses.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = Pro
2018
2029
  var ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = exports.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = /*#__PURE__*/function (_ProcessingFailureErr35) {
2019
2030
  (0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError, _ProcessingFailureErr35);
2020
2031
  var _super151 = _createSuper(ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError);
2021
- function ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError(message, code) {
2032
+ function ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError(message, code, errorData) {
2022
2033
  var _this151;
2023
2034
  (0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError);
2024
- _this151 = _super151.call(this, message, code);
2035
+ _this151 = _super151.call(this, message, code, errorData);
2025
2036
  _this151.name = 'ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError';
2026
2037
  return _this151;
2027
2038
  }
@@ -2031,10 +2042,10 @@ errorClasses.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError =
2031
2042
  var ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = exports.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = /*#__PURE__*/function (_ProcessingFailureErr36) {
2032
2043
  (0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationGeneralErrorError, _ProcessingFailureErr36);
2033
2044
  var _super152 = _createSuper(ProcessingFailure_TwoFactorAuthenticationGeneralErrorError);
2034
- function ProcessingFailure_TwoFactorAuthenticationGeneralErrorError(message, code) {
2045
+ function ProcessingFailure_TwoFactorAuthenticationGeneralErrorError(message, code, errorData) {
2035
2046
  var _this152;
2036
2047
  (0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationGeneralErrorError);
2037
- _this152 = _super152.call(this, message, code);
2048
+ _this152 = _super152.call(this, message, code, errorData);
2038
2049
  _this152.name = 'ProcessingFailure_TwoFactorAuthenticationGeneralErrorError';
2039
2050
  return _this152;
2040
2051
  }
@@ -2044,10 +2055,10 @@ errorClasses.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = Proces
2044
2055
  var ProcessingFailure_UpdatesNotAllowedForRemotesError = exports.ProcessingFailure_UpdatesNotAllowedForRemotesError = /*#__PURE__*/function (_ProcessingFailureErr37) {
2045
2056
  (0, _inherits2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError, _ProcessingFailureErr37);
2046
2057
  var _super153 = _createSuper(ProcessingFailure_UpdatesNotAllowedForRemotesError);
2047
- function ProcessingFailure_UpdatesNotAllowedForRemotesError(message, code) {
2058
+ function ProcessingFailure_UpdatesNotAllowedForRemotesError(message, code, errorData) {
2048
2059
  var _this153;
2049
2060
  (0, _classCallCheck2.default)(this, ProcessingFailure_UpdatesNotAllowedForRemotesError);
2050
- _this153 = _super153.call(this, message, code);
2061
+ _this153 = _super153.call(this, message, code, errorData);
2051
2062
  _this153.name = 'ProcessingFailure_UpdatesNotAllowedForRemotesError';
2052
2063
  return _this153;
2053
2064
  }
@@ -2057,10 +2068,10 @@ errorClasses.ProcessingFailure_UpdatesNotAllowedForRemotesError = ProcessingFail
2057
2068
  var RateLimited_DuplicateShareRecipientError = exports.RateLimited_DuplicateShareRecipientError = /*#__PURE__*/function (_RateLimitedError) {
2058
2069
  (0, _inherits2.default)(RateLimited_DuplicateShareRecipientError, _RateLimitedError);
2059
2070
  var _super154 = _createSuper(RateLimited_DuplicateShareRecipientError);
2060
- function RateLimited_DuplicateShareRecipientError(message, code) {
2071
+ function RateLimited_DuplicateShareRecipientError(message, code, errorData) {
2061
2072
  var _this154;
2062
2073
  (0, _classCallCheck2.default)(this, RateLimited_DuplicateShareRecipientError);
2063
- _this154 = _super154.call(this, message, code);
2074
+ _this154 = _super154.call(this, message, code, errorData);
2064
2075
  _this154.name = 'RateLimited_DuplicateShareRecipientError';
2065
2076
  return _this154;
2066
2077
  }
@@ -2070,10 +2081,10 @@ errorClasses.RateLimited_DuplicateShareRecipientError = RateLimited_DuplicateSha
2070
2081
  var RateLimited_ReauthenticationRateLimitedError = exports.RateLimited_ReauthenticationRateLimitedError = /*#__PURE__*/function (_RateLimitedError2) {
2071
2082
  (0, _inherits2.default)(RateLimited_ReauthenticationRateLimitedError, _RateLimitedError2);
2072
2083
  var _super155 = _createSuper(RateLimited_ReauthenticationRateLimitedError);
2073
- function RateLimited_ReauthenticationRateLimitedError(message, code) {
2084
+ function RateLimited_ReauthenticationRateLimitedError(message, code, errorData) {
2074
2085
  var _this155;
2075
2086
  (0, _classCallCheck2.default)(this, RateLimited_ReauthenticationRateLimitedError);
2076
- _this155 = _super155.call(this, message, code);
2087
+ _this155 = _super155.call(this, message, code, errorData);
2077
2088
  _this155.name = 'RateLimited_ReauthenticationRateLimitedError';
2078
2089
  return _this155;
2079
2090
  }
@@ -2083,10 +2094,10 @@ errorClasses.RateLimited_ReauthenticationRateLimitedError = RateLimited_Reauthen
2083
2094
  var RateLimited_TooManyConcurrentRequestsError = exports.RateLimited_TooManyConcurrentRequestsError = /*#__PURE__*/function (_RateLimitedError3) {
2084
2095
  (0, _inherits2.default)(RateLimited_TooManyConcurrentRequestsError, _RateLimitedError3);
2085
2096
  var _super156 = _createSuper(RateLimited_TooManyConcurrentRequestsError);
2086
- function RateLimited_TooManyConcurrentRequestsError(message, code) {
2097
+ function RateLimited_TooManyConcurrentRequestsError(message, code, errorData) {
2087
2098
  var _this156;
2088
2099
  (0, _classCallCheck2.default)(this, RateLimited_TooManyConcurrentRequestsError);
2089
- _this156 = _super156.call(this, message, code);
2100
+ _this156 = _super156.call(this, message, code, errorData);
2090
2101
  _this156.name = 'RateLimited_TooManyConcurrentRequestsError';
2091
2102
  return _this156;
2092
2103
  }
@@ -2096,10 +2107,10 @@ errorClasses.RateLimited_TooManyConcurrentRequestsError = RateLimited_TooManyCon
2096
2107
  var RateLimited_TooManyLoginAttemptsError = exports.RateLimited_TooManyLoginAttemptsError = /*#__PURE__*/function (_RateLimitedError4) {
2097
2108
  (0, _inherits2.default)(RateLimited_TooManyLoginAttemptsError, _RateLimitedError4);
2098
2109
  var _super157 = _createSuper(RateLimited_TooManyLoginAttemptsError);
2099
- function RateLimited_TooManyLoginAttemptsError(message, code) {
2110
+ function RateLimited_TooManyLoginAttemptsError(message, code, errorData) {
2100
2111
  var _this157;
2101
2112
  (0, _classCallCheck2.default)(this, RateLimited_TooManyLoginAttemptsError);
2102
- _this157 = _super157.call(this, message, code);
2113
+ _this157 = _super157.call(this, message, code, errorData);
2103
2114
  _this157.name = 'RateLimited_TooManyLoginAttemptsError';
2104
2115
  return _this157;
2105
2116
  }
@@ -2109,10 +2120,10 @@ errorClasses.RateLimited_TooManyLoginAttemptsError = RateLimited_TooManyLoginAtt
2109
2120
  var RateLimited_TooManyRequestsError = exports.RateLimited_TooManyRequestsError = /*#__PURE__*/function (_RateLimitedError5) {
2110
2121
  (0, _inherits2.default)(RateLimited_TooManyRequestsError, _RateLimitedError5);
2111
2122
  var _super158 = _createSuper(RateLimited_TooManyRequestsError);
2112
- function RateLimited_TooManyRequestsError(message, code) {
2123
+ function RateLimited_TooManyRequestsError(message, code, errorData) {
2113
2124
  var _this158;
2114
2125
  (0, _classCallCheck2.default)(this, RateLimited_TooManyRequestsError);
2115
- _this158 = _super158.call(this, message, code);
2126
+ _this158 = _super158.call(this, message, code, errorData);
2116
2127
  _this158.name = 'RateLimited_TooManyRequestsError';
2117
2128
  return _this158;
2118
2129
  }
@@ -2122,10 +2133,10 @@ errorClasses.RateLimited_TooManyRequestsError = RateLimited_TooManyRequestsError
2122
2133
  var RateLimited_TooManySharesError = exports.RateLimited_TooManySharesError = /*#__PURE__*/function (_RateLimitedError6) {
2123
2134
  (0, _inherits2.default)(RateLimited_TooManySharesError, _RateLimitedError6);
2124
2135
  var _super159 = _createSuper(RateLimited_TooManySharesError);
2125
- function RateLimited_TooManySharesError(message, code) {
2136
+ function RateLimited_TooManySharesError(message, code, errorData) {
2126
2137
  var _this159;
2127
2138
  (0, _classCallCheck2.default)(this, RateLimited_TooManySharesError);
2128
- _this159 = _super159.call(this, message, code);
2139
+ _this159 = _super159.call(this, message, code, errorData);
2129
2140
  _this159.name = 'RateLimited_TooManySharesError';
2130
2141
  return _this159;
2131
2142
  }
@@ -2135,10 +2146,10 @@ errorClasses.RateLimited_TooManySharesError = RateLimited_TooManySharesError;
2135
2146
  var ServiceUnavailable_AgentUnavailableError = exports.ServiceUnavailable_AgentUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr) {
2136
2147
  (0, _inherits2.default)(ServiceUnavailable_AgentUnavailableError, _ServiceUnavailableEr);
2137
2148
  var _super160 = _createSuper(ServiceUnavailable_AgentUnavailableError);
2138
- function ServiceUnavailable_AgentUnavailableError(message, code) {
2149
+ function ServiceUnavailable_AgentUnavailableError(message, code, errorData) {
2139
2150
  var _this160;
2140
2151
  (0, _classCallCheck2.default)(this, ServiceUnavailable_AgentUnavailableError);
2141
- _this160 = _super160.call(this, message, code);
2152
+ _this160 = _super160.call(this, message, code, errorData);
2142
2153
  _this160.name = 'ServiceUnavailable_AgentUnavailableError';
2143
2154
  return _this160;
2144
2155
  }
@@ -2148,10 +2159,10 @@ errorClasses.ServiceUnavailable_AgentUnavailableError = ServiceUnavailable_Agent
2148
2159
  var ServiceUnavailable_AutomationsUnavailableError = exports.ServiceUnavailable_AutomationsUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr2) {
2149
2160
  (0, _inherits2.default)(ServiceUnavailable_AutomationsUnavailableError, _ServiceUnavailableEr2);
2150
2161
  var _super161 = _createSuper(ServiceUnavailable_AutomationsUnavailableError);
2151
- function ServiceUnavailable_AutomationsUnavailableError(message, code) {
2162
+ function ServiceUnavailable_AutomationsUnavailableError(message, code, errorData) {
2152
2163
  var _this161;
2153
2164
  (0, _classCallCheck2.default)(this, ServiceUnavailable_AutomationsUnavailableError);
2154
- _this161 = _super161.call(this, message, code);
2165
+ _this161 = _super161.call(this, message, code, errorData);
2155
2166
  _this161.name = 'ServiceUnavailable_AutomationsUnavailableError';
2156
2167
  return _this161;
2157
2168
  }
@@ -2161,10 +2172,10 @@ errorClasses.ServiceUnavailable_AutomationsUnavailableError = ServiceUnavailable
2161
2172
  var ServiceUnavailable_UploadsUnavailableError = exports.ServiceUnavailable_UploadsUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr3) {
2162
2173
  (0, _inherits2.default)(ServiceUnavailable_UploadsUnavailableError, _ServiceUnavailableEr3);
2163
2174
  var _super162 = _createSuper(ServiceUnavailable_UploadsUnavailableError);
2164
- function ServiceUnavailable_UploadsUnavailableError(message, code) {
2175
+ function ServiceUnavailable_UploadsUnavailableError(message, code, errorData) {
2165
2176
  var _this162;
2166
2177
  (0, _classCallCheck2.default)(this, ServiceUnavailable_UploadsUnavailableError);
2167
- _this162 = _super162.call(this, message, code);
2178
+ _this162 = _super162.call(this, message, code, errorData);
2168
2179
  _this162.name = 'ServiceUnavailable_UploadsUnavailableError';
2169
2180
  return _this162;
2170
2181
  }
@@ -2174,10 +2185,10 @@ errorClasses.ServiceUnavailable_UploadsUnavailableError = ServiceUnavailable_Upl
2174
2185
  var SiteConfiguration_AccountAlreadyExistsError = exports.SiteConfiguration_AccountAlreadyExistsError = /*#__PURE__*/function (_SiteConfigurationErr) {
2175
2186
  (0, _inherits2.default)(SiteConfiguration_AccountAlreadyExistsError, _SiteConfigurationErr);
2176
2187
  var _super163 = _createSuper(SiteConfiguration_AccountAlreadyExistsError);
2177
- function SiteConfiguration_AccountAlreadyExistsError(message, code) {
2188
+ function SiteConfiguration_AccountAlreadyExistsError(message, code, errorData) {
2178
2189
  var _this163;
2179
2190
  (0, _classCallCheck2.default)(this, SiteConfiguration_AccountAlreadyExistsError);
2180
- _this163 = _super163.call(this, message, code);
2191
+ _this163 = _super163.call(this, message, code, errorData);
2181
2192
  _this163.name = 'SiteConfiguration_AccountAlreadyExistsError';
2182
2193
  return _this163;
2183
2194
  }
@@ -2187,10 +2198,10 @@ errorClasses.SiteConfiguration_AccountAlreadyExistsError = SiteConfiguration_Acc
2187
2198
  var SiteConfiguration_AccountOverdueError = exports.SiteConfiguration_AccountOverdueError = /*#__PURE__*/function (_SiteConfigurationErr2) {
2188
2199
  (0, _inherits2.default)(SiteConfiguration_AccountOverdueError, _SiteConfigurationErr2);
2189
2200
  var _super164 = _createSuper(SiteConfiguration_AccountOverdueError);
2190
- function SiteConfiguration_AccountOverdueError(message, code) {
2201
+ function SiteConfiguration_AccountOverdueError(message, code, errorData) {
2191
2202
  var _this164;
2192
2203
  (0, _classCallCheck2.default)(this, SiteConfiguration_AccountOverdueError);
2193
- _this164 = _super164.call(this, message, code);
2204
+ _this164 = _super164.call(this, message, code, errorData);
2194
2205
  _this164.name = 'SiteConfiguration_AccountOverdueError';
2195
2206
  return _this164;
2196
2207
  }
@@ -2200,10 +2211,10 @@ errorClasses.SiteConfiguration_AccountOverdueError = SiteConfiguration_AccountOv
2200
2211
  var SiteConfiguration_NoAccountForSiteError = exports.SiteConfiguration_NoAccountForSiteError = /*#__PURE__*/function (_SiteConfigurationErr3) {
2201
2212
  (0, _inherits2.default)(SiteConfiguration_NoAccountForSiteError, _SiteConfigurationErr3);
2202
2213
  var _super165 = _createSuper(SiteConfiguration_NoAccountForSiteError);
2203
- function SiteConfiguration_NoAccountForSiteError(message, code) {
2214
+ function SiteConfiguration_NoAccountForSiteError(message, code, errorData) {
2204
2215
  var _this165;
2205
2216
  (0, _classCallCheck2.default)(this, SiteConfiguration_NoAccountForSiteError);
2206
- _this165 = _super165.call(this, message, code);
2217
+ _this165 = _super165.call(this, message, code, errorData);
2207
2218
  _this165.name = 'SiteConfiguration_NoAccountForSiteError';
2208
2219
  return _this165;
2209
2220
  }
@@ -2213,10 +2224,10 @@ errorClasses.SiteConfiguration_NoAccountForSiteError = SiteConfiguration_NoAccou
2213
2224
  var SiteConfiguration_SiteWasRemovedError = exports.SiteConfiguration_SiteWasRemovedError = /*#__PURE__*/function (_SiteConfigurationErr4) {
2214
2225
  (0, _inherits2.default)(SiteConfiguration_SiteWasRemovedError, _SiteConfigurationErr4);
2215
2226
  var _super166 = _createSuper(SiteConfiguration_SiteWasRemovedError);
2216
- function SiteConfiguration_SiteWasRemovedError(message, code) {
2227
+ function SiteConfiguration_SiteWasRemovedError(message, code, errorData) {
2217
2228
  var _this166;
2218
2229
  (0, _classCallCheck2.default)(this, SiteConfiguration_SiteWasRemovedError);
2219
- _this166 = _super166.call(this, message, code);
2230
+ _this166 = _super166.call(this, message, code, errorData);
2220
2231
  _this166.name = 'SiteConfiguration_SiteWasRemovedError';
2221
2232
  return _this166;
2222
2233
  }
@@ -2226,10 +2237,10 @@ errorClasses.SiteConfiguration_SiteWasRemovedError = SiteConfiguration_SiteWasRe
2226
2237
  var SiteConfiguration_TrialExpiredError = exports.SiteConfiguration_TrialExpiredError = /*#__PURE__*/function (_SiteConfigurationErr5) {
2227
2238
  (0, _inherits2.default)(SiteConfiguration_TrialExpiredError, _SiteConfigurationErr5);
2228
2239
  var _super167 = _createSuper(SiteConfiguration_TrialExpiredError);
2229
- function SiteConfiguration_TrialExpiredError(message, code) {
2240
+ function SiteConfiguration_TrialExpiredError(message, code, errorData) {
2230
2241
  var _this167;
2231
2242
  (0, _classCallCheck2.default)(this, SiteConfiguration_TrialExpiredError);
2232
- _this167 = _super167.call(this, message, code);
2243
+ _this167 = _super167.call(this, message, code, errorData);
2233
2244
  _this167.name = 'SiteConfiguration_TrialExpiredError';
2234
2245
  return _this167;
2235
2246
  }
@@ -2239,10 +2250,10 @@ errorClasses.SiteConfiguration_TrialExpiredError = SiteConfiguration_TrialExpire
2239
2250
  var SiteConfiguration_TrialLockedError = exports.SiteConfiguration_TrialLockedError = /*#__PURE__*/function (_SiteConfigurationErr6) {
2240
2251
  (0, _inherits2.default)(SiteConfiguration_TrialLockedError, _SiteConfigurationErr6);
2241
2252
  var _super168 = _createSuper(SiteConfiguration_TrialLockedError);
2242
- function SiteConfiguration_TrialLockedError(message, code) {
2253
+ function SiteConfiguration_TrialLockedError(message, code, errorData) {
2243
2254
  var _this168;
2244
2255
  (0, _classCallCheck2.default)(this, SiteConfiguration_TrialLockedError);
2245
- _this168 = _super168.call(this, message, code);
2256
+ _this168 = _super168.call(this, message, code, errorData);
2246
2257
  _this168.name = 'SiteConfiguration_TrialLockedError';
2247
2258
  return _this168;
2248
2259
  }
@@ -2252,10 +2263,10 @@ errorClasses.SiteConfiguration_TrialLockedError = SiteConfiguration_TrialLockedE
2252
2263
  var SiteConfiguration_UserRequestsEnabledRequiredError = exports.SiteConfiguration_UserRequestsEnabledRequiredError = /*#__PURE__*/function (_SiteConfigurationErr7) {
2253
2264
  (0, _inherits2.default)(SiteConfiguration_UserRequestsEnabledRequiredError, _SiteConfigurationErr7);
2254
2265
  var _super169 = _createSuper(SiteConfiguration_UserRequestsEnabledRequiredError);
2255
- function SiteConfiguration_UserRequestsEnabledRequiredError(message, code) {
2266
+ function SiteConfiguration_UserRequestsEnabledRequiredError(message, code, errorData) {
2256
2267
  var _this169;
2257
2268
  (0, _classCallCheck2.default)(this, SiteConfiguration_UserRequestsEnabledRequiredError);
2258
- _this169 = _super169.call(this, message, code);
2269
+ _this169 = _super169.call(this, message, code, errorData);
2259
2270
  _this169.name = 'SiteConfiguration_UserRequestsEnabledRequiredError';
2260
2271
  return _this169;
2261
2272
  }