files.com 1.0.189 → 1.0.192

Sign up to get free protection for your applications and to get access to all the features.
Files changed (230) hide show
  1. package/_VERSION +1 -1
  2. package/docs/Errors.md +186 -0
  3. package/docs/models/AccountLineItem.md +53 -0
  4. package/docs/models/Action.md +37 -0
  5. package/docs/models/ActionNotificationExport.md +82 -0
  6. package/docs/models/ActionNotificationExportResult.md +49 -0
  7. package/docs/models/ActionWebhookFailure.md +16 -0
  8. package/docs/models/ApiKey.md +183 -0
  9. package/docs/models/App.md +66 -0
  10. package/docs/models/As2IncomingMessage.md +104 -0
  11. package/docs/models/As2OutgoingMessage.md +96 -0
  12. package/docs/models/As2Partner.md +141 -0
  13. package/docs/models/As2Station.md +142 -0
  14. package/docs/models/Auto.md +11 -0
  15. package/docs/models/Automation.md +257 -0
  16. package/docs/models/AutomationRun.md +61 -0
  17. package/docs/models/BandwidthSnapshot.md +50 -0
  18. package/docs/models/Behavior.md +195 -0
  19. package/docs/models/Bundle.md +330 -0
  20. package/docs/models/BundleDownload.md +44 -0
  21. package/docs/models/BundleRecipient.md +76 -0
  22. package/docs/models/BundleRegistration.md +53 -0
  23. package/docs/models/Clickwrap.md +120 -0
  24. package/docs/models/DnsRecord.md +33 -0
  25. package/docs/models/Errors.md +17 -0
  26. package/docs/models/ExternalEvent.md +84 -0
  27. package/docs/models/File.md +339 -0
  28. package/docs/models/FileAction.md +13 -0
  29. package/docs/models/FileComment.md +98 -0
  30. package/docs/models/FileCommentReaction.md +50 -0
  31. package/docs/models/FileMigration.md +40 -0
  32. package/docs/models/FileUploadPart.md +39 -0
  33. package/docs/models/Folder.md +90 -0
  34. package/docs/models/FormField.md +29 -0
  35. package/docs/models/FormFieldSet.md +170 -0
  36. package/docs/models/Group.md +140 -0
  37. package/docs/models/GroupUser.md +116 -0
  38. package/docs/models/History.md +151 -0
  39. package/docs/models/HistoryExport.md +130 -0
  40. package/docs/models/HistoryExportResult.md +75 -0
  41. package/docs/models/Image.md +13 -0
  42. package/docs/models/InboxRecipient.md +76 -0
  43. package/docs/models/InboxRegistration.md +47 -0
  44. package/docs/models/InboxUpload.md +42 -0
  45. package/docs/models/Invoice.md +82 -0
  46. package/docs/models/InvoiceLineItem.md +27 -0
  47. package/docs/models/IpAddress.md +51 -0
  48. package/docs/models/Lock.md +92 -0
  49. package/docs/models/Message.md +134 -0
  50. package/docs/models/MessageComment.md +114 -0
  51. package/docs/models/MessageCommentReaction.md +79 -0
  52. package/docs/models/MessageReaction.md +79 -0
  53. package/docs/models/Notification.md +241 -0
  54. package/docs/models/Payment.md +82 -0
  55. package/docs/models/PaymentLineItem.md +19 -0
  56. package/docs/models/Permission.md +94 -0
  57. package/docs/models/Preview.md +19 -0
  58. package/docs/models/Priority.md +30 -0
  59. package/docs/models/Project.md +98 -0
  60. package/docs/models/PublicIpAddress.md +17 -0
  61. package/docs/models/PublicKey.md +112 -0
  62. package/docs/models/RemoteBandwidthSnapshot.md +42 -0
  63. package/docs/models/RemoteServer.md +385 -0
  64. package/docs/models/Request.md +97 -0
  65. package/docs/models/Session.md +50 -0
  66. package/docs/models/SettingsChange.md +44 -0
  67. package/docs/models/Site.md +607 -0
  68. package/docs/models/SsoStrategy.md +139 -0
  69. package/docs/models/Status.md +30 -0
  70. package/docs/models/Style.md +76 -0
  71. package/docs/models/UsageDailySnapshot.md +56 -0
  72. package/docs/models/UsageSnapshot.md +63 -0
  73. package/docs/models/User.md +465 -0
  74. package/docs/models/UserCipherUse.md +39 -0
  75. package/docs/models/UserRequest.md +80 -0
  76. package/docs/models/WebhookTest.md +59 -0
  77. package/lib/Api.js +12 -11
  78. package/lib/Errors.js +3127 -0
  79. package/lib/models/AccountLineItem.js +8 -0
  80. package/lib/models/Action.js +8 -0
  81. package/lib/models/ActionNotificationExport.js +21 -13
  82. package/lib/models/ActionNotificationExportResult.js +13 -5
  83. package/lib/models/ActionWebhookFailure.js +12 -4
  84. package/lib/models/ApiKey.js +33 -25
  85. package/lib/models/App.js +10 -2
  86. package/lib/models/As2IncomingMessage.js +11 -3
  87. package/lib/models/As2OutgoingMessage.js +11 -3
  88. package/lib/models/As2Partner.js +34 -26
  89. package/lib/models/As2Station.js +32 -24
  90. package/lib/models/Auto.js +8 -0
  91. package/lib/models/Automation.js +51 -43
  92. package/lib/models/AutomationRun.js +16 -8
  93. package/lib/models/BandwidthSnapshot.js +10 -2
  94. package/lib/models/Behavior.js +46 -38
  95. package/lib/models/Bundle.js +51 -43
  96. package/lib/models/BundleDownload.js +12 -4
  97. package/lib/models/BundleRecipient.js +22 -14
  98. package/lib/models/BundleRegistration.js +12 -4
  99. package/lib/models/Clickwrap.js +31 -23
  100. package/lib/models/DnsRecord.js +10 -2
  101. package/lib/models/Errors.js +8 -0
  102. package/lib/models/ExternalEvent.js +18 -10
  103. package/lib/models/File.js +68 -60
  104. package/lib/models/FileAction.js +8 -0
  105. package/lib/models/FileComment.js +27 -19
  106. package/lib/models/FileCommentReaction.js +18 -10
  107. package/lib/models/FileMigration.js +11 -3
  108. package/lib/models/FileUploadPart.js +8 -0
  109. package/lib/models/Folder.js +19 -11
  110. package/lib/models/FormField.js +8 -0
  111. package/lib/models/FormFieldSet.js +27 -19
  112. package/lib/models/Group.js +30 -22
  113. package/lib/models/GroupUser.js +32 -24
  114. package/lib/models/History.js +42 -34
  115. package/lib/models/HistoryExport.js +34 -26
  116. package/lib/models/HistoryExportResult.js +13 -5
  117. package/lib/models/Image.js +8 -0
  118. package/lib/models/InboxRecipient.js +22 -14
  119. package/lib/models/InboxRegistration.js +11 -3
  120. package/lib/models/InboxUpload.js +12 -4
  121. package/lib/models/Invoice.js +13 -5
  122. package/lib/models/InvoiceLineItem.js +8 -0
  123. package/lib/models/IpAddress.js +12 -4
  124. package/lib/models/Lock.js +24 -16
  125. package/lib/models/Message.js +37 -29
  126. package/lib/models/MessageComment.js +29 -21
  127. package/lib/models/MessageCommentReaction.js +24 -16
  128. package/lib/models/MessageReaction.js +24 -16
  129. package/lib/models/Notification.js +38 -30
  130. package/lib/models/Payment.js +13 -5
  131. package/lib/models/PaymentLineItem.js +8 -0
  132. package/lib/models/Permission.js +23 -15
  133. package/lib/models/Preview.js +8 -0
  134. package/lib/models/Priority.js +13 -5
  135. package/lib/models/Project.js +25 -17
  136. package/lib/models/PublicIpAddress.js +8 -0
  137. package/lib/models/PublicKey.js +29 -21
  138. package/lib/models/RemoteBandwidthSnapshot.js +10 -2
  139. package/lib/models/RemoteServer.js +226 -196
  140. package/lib/models/Request.js +27 -19
  141. package/lib/models/Session.js +13 -5
  142. package/lib/models/SettingsChange.js +10 -2
  143. package/lib/models/Site.js +65 -57
  144. package/lib/models/SsoStrategy.js +17 -9
  145. package/lib/models/Status.js +8 -0
  146. package/lib/models/Style.js +20 -12
  147. package/lib/models/UsageDailySnapshot.js +10 -2
  148. package/lib/models/UsageSnapshot.js +10 -2
  149. package/lib/models/User.js +85 -77
  150. package/lib/models/UserCipherUse.js +11 -3
  151. package/lib/models/UserRequest.js +24 -16
  152. package/lib/models/WebhookTest.js +16 -8
  153. package/package.json +1 -1
  154. package/src/Api.js +4 -8
  155. package/src/Errors.js +223 -0
  156. package/src/models/AccountLineItem.js +1 -0
  157. package/src/models/Action.js +1 -0
  158. package/src/models/ActionNotificationExport.js +14 -13
  159. package/src/models/ActionNotificationExportResult.js +6 -5
  160. package/src/models/ActionWebhookFailure.js +5 -4
  161. package/src/models/ApiKey.js +26 -25
  162. package/src/models/App.js +3 -2
  163. package/src/models/As2IncomingMessage.js +4 -3
  164. package/src/models/As2OutgoingMessage.js +4 -3
  165. package/src/models/As2Partner.js +27 -26
  166. package/src/models/As2Station.js +25 -24
  167. package/src/models/Auto.js +1 -0
  168. package/src/models/Automation.js +51 -50
  169. package/src/models/AutomationRun.js +9 -8
  170. package/src/models/BandwidthSnapshot.js +3 -2
  171. package/src/models/Behavior.js +39 -38
  172. package/src/models/Bundle.js +44 -43
  173. package/src/models/BundleDownload.js +5 -4
  174. package/src/models/BundleRecipient.js +15 -14
  175. package/src/models/BundleRegistration.js +5 -4
  176. package/src/models/Clickwrap.js +24 -23
  177. package/src/models/DnsRecord.js +3 -2
  178. package/src/models/Errors.js +1 -0
  179. package/src/models/ExternalEvent.js +11 -10
  180. package/src/models/File.js +61 -60
  181. package/src/models/FileAction.js +1 -0
  182. package/src/models/FileComment.js +20 -19
  183. package/src/models/FileCommentReaction.js +11 -10
  184. package/src/models/FileMigration.js +4 -3
  185. package/src/models/FileUploadPart.js +1 -0
  186. package/src/models/Folder.js +12 -11
  187. package/src/models/FormField.js +1 -0
  188. package/src/models/FormFieldSet.js +20 -19
  189. package/src/models/Group.js +23 -22
  190. package/src/models/GroupUser.js +25 -24
  191. package/src/models/History.js +35 -34
  192. package/src/models/HistoryExport.js +27 -26
  193. package/src/models/HistoryExportResult.js +6 -5
  194. package/src/models/Image.js +1 -0
  195. package/src/models/InboxRecipient.js +15 -14
  196. package/src/models/InboxRegistration.js +4 -3
  197. package/src/models/InboxUpload.js +5 -4
  198. package/src/models/Invoice.js +6 -5
  199. package/src/models/InvoiceLineItem.js +1 -0
  200. package/src/models/IpAddress.js +5 -4
  201. package/src/models/Lock.js +17 -16
  202. package/src/models/Message.js +30 -29
  203. package/src/models/MessageComment.js +22 -21
  204. package/src/models/MessageCommentReaction.js +17 -16
  205. package/src/models/MessageReaction.js +17 -16
  206. package/src/models/Notification.js +31 -30
  207. package/src/models/Payment.js +6 -5
  208. package/src/models/PaymentLineItem.js +1 -0
  209. package/src/models/Permission.js +16 -15
  210. package/src/models/Preview.js +1 -0
  211. package/src/models/Priority.js +6 -5
  212. package/src/models/Project.js +18 -17
  213. package/src/models/PublicIpAddress.js +1 -0
  214. package/src/models/PublicKey.js +22 -21
  215. package/src/models/RemoteBandwidthSnapshot.js +3 -2
  216. package/src/models/RemoteServer.js +120 -103
  217. package/src/models/Request.js +20 -19
  218. package/src/models/Session.js +6 -5
  219. package/src/models/SettingsChange.js +3 -2
  220. package/src/models/Site.js +58 -57
  221. package/src/models/SsoStrategy.js +10 -9
  222. package/src/models/Status.js +1 -0
  223. package/src/models/Style.js +13 -12
  224. package/src/models/UsageDailySnapshot.js +3 -2
  225. package/src/models/UsageSnapshot.js +3 -2
  226. package/src/models/User.js +78 -77
  227. package/src/models/UserCipherUse.js +4 -3
  228. package/src/models/UserRequest.js +17 -16
  229. package/src/models/WebhookTest.js +9 -8
  230. package/test/src/index.js +46 -0
package/lib/Errors.js ADDED
@@ -0,0 +1,3127 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+
5
+ exports.__esModule = true;
6
+ exports.NotFound_SiteNotFoundError = exports.NotFound_PlanNotFoundError = exports.NotFound_NestedNotFoundError = exports.NotFound_InboxNotFoundError = exports.NotFound_GroupNotFoundError = exports.NotFound_FolderNotFoundError = exports.NotFound_FileUploadNotFoundError = exports.NotFound_FileNotFoundError = exports.NotFound_CodeNotFoundError = exports.NotFound_BundlePathNotFoundError = exports.NotFound_ApiKeyNotFoundError = exports.NotFoundError = exports.NotAuthorized_ZipDownloadIpMismatchError = exports.NotAuthorized_WritePermissionRequiredError = exports.NotAuthorized_UserIdWithoutSiteAdminError = exports.NotAuthorized_TwoFactorAuthenticationRequiredError = exports.NotAuthorized_SiteFilesAreImmutableError = exports.NotAuthorized_SiteAdminRequiredError = exports.NotAuthorized_SelfManagedRequiredError = exports.NotAuthorized_ReauthenticationNeededActionError = exports.NotAuthorized_ReauthenticationFailedFinalError = exports.NotAuthorized_ReauthenticationFailedError = exports.NotAuthorized_ReadPermissionRequiredError = exports.NotAuthorized_ReadOnlySessionError = exports.NotAuthorized_PasswordChangeRequiredError = exports.NotAuthorized_PasswordChangeNotRequiredError = exports.NotAuthorized_NotAllowedToCreateBundleError = exports.NotAuthorized_NonAdminsMustQueryByFolderOrPathError = exports.NotAuthorized_NeedAdminPermissionForInboxError = exports.NotAuthorized_MustAuthenticateWithApiKeyError = exports.NotAuthorized_InsufficientPermissionForParamsError = exports.NotAuthorized_HistoryPermissionRequiredError = exports.NotAuthorized_FullPermissionRequiredError = exports.NotAuthorized_FolderAdminPermissionRequiredError = exports.NotAuthorized_FolderAdminOrBillingPermissionRequiredError = exports.NotAuthorized_ContactAdminForPasswordChangeHelpError = exports.NotAuthorized_CantActForOtherUserError = exports.NotAuthorized_CannotLoginWhileUsingKeyError = exports.NotAuthorized_BundleMaximumUsesReachedError = exports.NotAuthorized_BillingPermissionRequiredError = exports.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = exports.NotAuthorized_ApiKeyOnlyForMobileAppError = exports.NotAuthorized_ApiKeyOnlyForDesktopAppError = exports.NotAuthorized_ApiKeyIsPathRestrictedError = exports.NotAuthorized_ApiKeyIsDisabledError = exports.NotAuthorizedError = exports.NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = exports.NotAuthenticated_TwoFactorAuthenticationErrorError = exports.NotAuthenticated_OneTimePasswordIncorrectError = exports.NotAuthenticated_LockoutRegionMismatchError = exports.NotAuthenticated_LockedOutError = exports.NotAuthenticated_InvalidUsernameOrPasswordError = exports.NotAuthenticated_InvalidOrExpiredCodeError = exports.NotAuthenticated_InvalidOauthError = exports.NotAuthenticated_InvalidCredentialsError = exports.NotAuthenticated_InboxRegistrationCodeFailedError = exports.NotAuthenticated_BundleRegistrationCodeFailedError = exports.NotAuthenticated_AuthenticationRequiredError = exports.NotAuthenticatedError = exports.MissingParameterError = exports.InvalidParameterError = exports.FilesError = exports.FilesApiError = exports.EmptyPropertyError = exports.ConfigurationError = exports.BadRequest_UserRequiredError = exports.BadRequest_UserIdOnUserEndpointError = exports.BadRequest_UserIdInvalidError = exports.BadRequest_UnsupportedMediaTypeError = exports.BadRequest_UnsupportedHttpResponseFormatError = exports.BadRequest_UnsupportedCurrencyError = exports.BadRequest_SearchAllOnChildPathError = exports.BadRequest_RequestParamsRequiredError = exports.BadRequest_RequestParamsInvalidError = exports.BadRequest_RequestParamsContainInvalidCharacterError = exports.BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = exports.BadRequest_ReauthenticationNeededFieldsError = exports.BadRequest_PartNumberTooLargeError = exports.BadRequest_OperationOnNonScimResourceError = exports.BadRequest_NoValidInputParamsError = exports.BadRequest_MethodNotAllowedError = exports.BadRequest_InvalidUploadPartSizeError = exports.BadRequest_InvalidUploadPartGapError = exports.BadRequest_InvalidUploadOffsetError = exports.BadRequest_InvalidReturnToUrlError = exports.BadRequest_InvalidOauthProviderError = exports.BadRequest_InvalidInterfaceError = exports.BadRequest_InvalidInputEncodingError = exports.BadRequest_InvalidFilterFieldError = exports.BadRequest_InvalidFilterCombinationError = exports.BadRequest_InvalidEtagsError = exports.BadRequest_InvalidCursorError = exports.BadRequest_InvalidBodyError = exports.BadRequest_FolderMustNotBeAFileError = exports.BadRequest_DestinationSameError = exports.BadRequest_DatetimeParseError = exports.BadRequest_CantMoveWithMultipleLocationsError = exports.BadRequest_CannotDownloadDirectoryError = exports.BadRequest_AttachmentTooLargeError = exports.BadRequestError = void 0;
7
+ exports.handleErrorResponse = exports.SiteConfiguration_UserRequestsEnabledRequiredError = exports.SiteConfiguration_TrialLockedError = exports.SiteConfiguration_TrialExpiredError = exports.SiteConfiguration_SiteWasRemovedError = exports.SiteConfiguration_NoAccountForSiteError = exports.SiteConfiguration_AccountOverdueError = exports.SiteConfiguration_AccountAlreadyExistsError = exports.SiteConfigurationError = exports.ServiceUnavailable_UploadsUnavailableError = exports.ServiceUnavailableError = exports.RateLimited_TooManyRequestsError = exports.RateLimited_TooManyLoginAttemptsError = exports.RateLimited_TooManyConcurrentRequestsError = exports.RateLimited_ReauthenticationRateLimitedError = exports.RateLimitedError = exports.ProcessingFailure_UpdatesNotAllowedForRemotesError = exports.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = exports.ProcessingFailure_SubfolderLockedError = exports.ProcessingFailure_ResourceLockedError = exports.ProcessingFailure_RemoteServerErrorError = exports.ProcessingFailure_RecipientAlreadySharedError = exports.ProcessingFailure_PathTooLongError = exports.ProcessingFailure_MultipleProcessingErrorsError = exports.ProcessingFailure_MultipartUploadsRequiredForRemotesError = exports.ProcessingFailure_ModelSaveErrorError = exports.ProcessingFailure_InvalidRangeError = exports.ProcessingFailure_InvalidFilenameError = exports.ProcessingFailure_InvalidFileTypeError = exports.ProcessingFailure_InvalidBundleCodeError = exports.ProcessingFailure_HistoryUnavailableError = exports.ProcessingFailure_FolderNotEmptyError = exports.ProcessingFailure_FolderLockedError = exports.ProcessingFailure_FileUploadedToWrongRegionError = exports.ProcessingFailure_FileTooBigToEncryptError = exports.ProcessingFailure_FileTooBigToDecryptError = exports.ProcessingFailure_FilePendingProcessingError = exports.ProcessingFailure_FileNotUploadedError = exports.ProcessingFailure_FileLockedError = exports.ProcessingFailure_FailedToChangePasswordError = exports.ProcessingFailure_ExportNotReadyError = exports.ProcessingFailure_ExportFailureError = exports.ProcessingFailure_ExpiredPublicKeyError = exports.ProcessingFailure_ExpiredPrivateKeyError = exports.ProcessingFailure_DestinationParentDoesNotExistError = exports.ProcessingFailure_DestinationParentConflictError = exports.ProcessingFailure_DestinationFolderLimitedError = exports.ProcessingFailure_DestinationExistsError = exports.ProcessingFailure_CouldNotCreateParentError = exports.ProcessingFailure_BundleOnlyAllowsPreviewsError = exports.ProcessingFailureError = exports.NotImplementedError = exports.NotFound_UserNotFoundError = void 0;
8
+
9
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
10
+
11
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
12
+
13
+ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
14
+
15
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
16
+
17
+ var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
18
+
19
+ var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
20
+
21
+ var _wrapNativeSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/wrapNativeSuper"));
22
+
23
+ var _Logger = _interopRequireDefault(require("./Logger"));
24
+
25
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
26
+
27
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
28
+
29
+ var FilesError = /*#__PURE__*/function (_Error) {
30
+ (0, _inherits2.default)(FilesError, _Error);
31
+
32
+ var _super = _createSuper(FilesError);
33
+
34
+ function FilesError(message) {
35
+ var _this;
36
+
37
+ (0, _classCallCheck2.default)(this, FilesError);
38
+ _this = _super.call(this, message);
39
+ _this.name = 'FilesError';
40
+ return _this;
41
+ }
42
+
43
+ return (0, _createClass2.default)(FilesError);
44
+ }( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
45
+
46
+ exports.FilesError = FilesError;
47
+
48
+ var FilesApiError = /*#__PURE__*/function (_FilesError) {
49
+ (0, _inherits2.default)(FilesApiError, _FilesError);
50
+
51
+ var _super2 = _createSuper(FilesApiError);
52
+
53
+ function FilesApiError(message, code) {
54
+ var _this2;
55
+
56
+ (0, _classCallCheck2.default)(this, FilesApiError);
57
+ _this2 = _super2.call(this, message);
58
+ _this2.name = 'FilesApiError';
59
+ _this2.code = code;
60
+ return _this2;
61
+ }
62
+
63
+ return (0, _createClass2.default)(FilesApiError);
64
+ }(FilesError);
65
+
66
+ exports.FilesApiError = FilesApiError;
67
+ var errorClasses = {
68
+ FilesApiError: FilesApiError
69
+ };
70
+
71
+ var toPascalCase = function toPascalCase(string) {
72
+ return string.replace('-', ' ').split(' ').map(function (part) {
73
+ return part[0].toUpperCase() + part.substring(1);
74
+ }).join('');
75
+ };
76
+
77
+ var handleErrorResponse = function handleErrorResponse(error) {
78
+ var _errorData, _errorData2;
79
+
80
+ var response = error.response;
81
+ var errorData = response === null || response === void 0 ? void 0 : response.data;
82
+ var message = ((_errorData = errorData) === null || _errorData === void 0 ? void 0 : _errorData.error) || (response === null || response === void 0 ? void 0 : response.statusText) || error.message;
83
+ var code = (response === null || response === void 0 ? void 0 : response.status) || ((_errorData2 = errorData) === null || _errorData2 === void 0 ? void 0 : _errorData2['http-code']) || 0;
84
+
85
+ if (!errorData) {
86
+ _Logger.default.error('FilesApiError Exception >', code, message);
87
+
88
+ throw new FilesApiError(message, code);
89
+ }
90
+
91
+ if (Array.isArray(errorData)) {
92
+ errorData = errorData[0];
93
+ }
94
+
95
+ if (!errorData.type) {
96
+ _Logger.default.error('FilesApiError Exception >', code, message);
97
+
98
+ throw new FilesApiError(message, code);
99
+ }
100
+
101
+ var parts = errorData.type.split('/');
102
+ var errorFamily;
103
+ var errorType;
104
+ var className;
105
+
106
+ if (parts.length > 1) {
107
+ var _parts$map = parts.map(toPascalCase);
108
+
109
+ var _parts$map2 = (0, _slicedToArray2.default)(_parts$map, 2);
110
+
111
+ errorFamily = _parts$map2[0];
112
+ errorType = _parts$map2[1];
113
+ className = "".concat(errorFamily, "_").concat(errorType, "Error");
114
+ } else {
115
+ errorFamily = toPascalCase(parts[0]);
116
+ className = "".concat(errorType, "Error");
117
+ }
118
+
119
+ var ErrorClass = errorClasses[className];
120
+
121
+ _Logger.default.error("".concat(className, " Exception >"), code, message);
122
+
123
+ throw new ErrorClass(message, code);
124
+ }; // general errors
125
+
126
+
127
+ exports.handleErrorResponse = handleErrorResponse;
128
+
129
+ var ConfigurationError = /*#__PURE__*/function (_FilesError2) {
130
+ (0, _inherits2.default)(ConfigurationError, _FilesError2);
131
+
132
+ var _super3 = _createSuper(ConfigurationError);
133
+
134
+ function ConfigurationError(message) {
135
+ var _this3;
136
+
137
+ (0, _classCallCheck2.default)(this, ConfigurationError);
138
+ _this3 = _super3.call(this, message);
139
+ _this3.name = 'ConfigurationError';
140
+ return _this3;
141
+ }
142
+
143
+ return (0, _createClass2.default)(ConfigurationError);
144
+ }(FilesError);
145
+
146
+ exports.ConfigurationError = ConfigurationError;
147
+ errorClasses.ConfigurationError = ConfigurationError;
148
+
149
+ var EmptyPropertyError = /*#__PURE__*/function (_FilesError3) {
150
+ (0, _inherits2.default)(EmptyPropertyError, _FilesError3);
151
+
152
+ var _super4 = _createSuper(EmptyPropertyError);
153
+
154
+ function EmptyPropertyError(message) {
155
+ var _this4;
156
+
157
+ (0, _classCallCheck2.default)(this, EmptyPropertyError);
158
+ _this4 = _super4.call(this, message);
159
+ _this4.name = 'EmptyPropertyError';
160
+ return _this4;
161
+ }
162
+
163
+ return (0, _createClass2.default)(EmptyPropertyError);
164
+ }(FilesError);
165
+
166
+ exports.EmptyPropertyError = EmptyPropertyError;
167
+ errorClasses.EmptyPropertyError = EmptyPropertyError;
168
+
169
+ var InvalidParameterError = /*#__PURE__*/function (_FilesError4) {
170
+ (0, _inherits2.default)(InvalidParameterError, _FilesError4);
171
+
172
+ var _super5 = _createSuper(InvalidParameterError);
173
+
174
+ function InvalidParameterError(message) {
175
+ var _this5;
176
+
177
+ (0, _classCallCheck2.default)(this, InvalidParameterError);
178
+ _this5 = _super5.call(this, message);
179
+ _this5.name = 'InvalidParameterError';
180
+ return _this5;
181
+ }
182
+
183
+ return (0, _createClass2.default)(InvalidParameterError);
184
+ }(FilesError);
185
+
186
+ exports.InvalidParameterError = InvalidParameterError;
187
+ errorClasses.InvalidParameterError = InvalidParameterError;
188
+
189
+ var MissingParameterError = /*#__PURE__*/function (_FilesError5) {
190
+ (0, _inherits2.default)(MissingParameterError, _FilesError5);
191
+
192
+ var _super6 = _createSuper(MissingParameterError);
193
+
194
+ function MissingParameterError(message) {
195
+ var _this6;
196
+
197
+ (0, _classCallCheck2.default)(this, MissingParameterError);
198
+ _this6 = _super6.call(this, message);
199
+ _this6.name = 'MissingParameterError';
200
+ return _this6;
201
+ }
202
+
203
+ return (0, _createClass2.default)(MissingParameterError);
204
+ }(FilesError);
205
+
206
+ exports.MissingParameterError = MissingParameterError;
207
+ errorClasses.MissingParameterError = MissingParameterError;
208
+
209
+ var NotImplementedError = /*#__PURE__*/function (_FilesError6) {
210
+ (0, _inherits2.default)(NotImplementedError, _FilesError6);
211
+
212
+ var _super7 = _createSuper(NotImplementedError);
213
+
214
+ function NotImplementedError(message) {
215
+ var _this7;
216
+
217
+ (0, _classCallCheck2.default)(this, NotImplementedError);
218
+ _this7 = _super7.call(this, message);
219
+ _this7.name = 'NotImplementedError';
220
+ return _this7;
221
+ }
222
+
223
+ return (0, _createClass2.default)(NotImplementedError);
224
+ }(FilesError);
225
+
226
+ exports.NotImplementedError = NotImplementedError;
227
+ errorClasses.NotImplementedError = NotImplementedError; // api error groups
228
+
229
+ var BadRequestError = /*#__PURE__*/function (_FilesApiError) {
230
+ (0, _inherits2.default)(BadRequestError, _FilesApiError);
231
+
232
+ var _super8 = _createSuper(BadRequestError);
233
+
234
+ function BadRequestError(message, code) {
235
+ var _this8;
236
+
237
+ (0, _classCallCheck2.default)(this, BadRequestError);
238
+ _this8 = _super8.call(this, message, code);
239
+ _this8.name = 'BadRequestError';
240
+ return _this8;
241
+ }
242
+
243
+ return (0, _createClass2.default)(BadRequestError);
244
+ }(FilesApiError);
245
+
246
+ exports.BadRequestError = BadRequestError;
247
+ errorClasses.BadRequestError = BadRequestError;
248
+
249
+ var NotAuthenticatedError = /*#__PURE__*/function (_FilesApiError2) {
250
+ (0, _inherits2.default)(NotAuthenticatedError, _FilesApiError2);
251
+
252
+ var _super9 = _createSuper(NotAuthenticatedError);
253
+
254
+ function NotAuthenticatedError(message, code) {
255
+ var _this9;
256
+
257
+ (0, _classCallCheck2.default)(this, NotAuthenticatedError);
258
+ _this9 = _super9.call(this, message, code);
259
+ _this9.name = 'NotAuthenticatedError';
260
+ return _this9;
261
+ }
262
+
263
+ return (0, _createClass2.default)(NotAuthenticatedError);
264
+ }(FilesApiError);
265
+
266
+ exports.NotAuthenticatedError = NotAuthenticatedError;
267
+ errorClasses.NotAuthenticatedError = NotAuthenticatedError;
268
+
269
+ var NotAuthorizedError = /*#__PURE__*/function (_FilesApiError3) {
270
+ (0, _inherits2.default)(NotAuthorizedError, _FilesApiError3);
271
+
272
+ var _super10 = _createSuper(NotAuthorizedError);
273
+
274
+ function NotAuthorizedError(message, code) {
275
+ var _this10;
276
+
277
+ (0, _classCallCheck2.default)(this, NotAuthorizedError);
278
+ _this10 = _super10.call(this, message, code);
279
+ _this10.name = 'NotAuthorizedError';
280
+ return _this10;
281
+ }
282
+
283
+ return (0, _createClass2.default)(NotAuthorizedError);
284
+ }(FilesApiError);
285
+
286
+ exports.NotAuthorizedError = NotAuthorizedError;
287
+ errorClasses.NotAuthorizedError = NotAuthorizedError;
288
+
289
+ var NotFoundError = /*#__PURE__*/function (_FilesApiError4) {
290
+ (0, _inherits2.default)(NotFoundError, _FilesApiError4);
291
+
292
+ var _super11 = _createSuper(NotFoundError);
293
+
294
+ function NotFoundError(message, code) {
295
+ var _this11;
296
+
297
+ (0, _classCallCheck2.default)(this, NotFoundError);
298
+ _this11 = _super11.call(this, message, code);
299
+ _this11.name = 'NotFoundError';
300
+ return _this11;
301
+ }
302
+
303
+ return (0, _createClass2.default)(NotFoundError);
304
+ }(FilesApiError);
305
+
306
+ exports.NotFoundError = NotFoundError;
307
+ errorClasses.NotFoundError = NotFoundError;
308
+
309
+ var ProcessingFailureError = /*#__PURE__*/function (_FilesApiError5) {
310
+ (0, _inherits2.default)(ProcessingFailureError, _FilesApiError5);
311
+
312
+ var _super12 = _createSuper(ProcessingFailureError);
313
+
314
+ function ProcessingFailureError(message, code) {
315
+ var _this12;
316
+
317
+ (0, _classCallCheck2.default)(this, ProcessingFailureError);
318
+ _this12 = _super12.call(this, message, code);
319
+ _this12.name = 'ProcessingFailureError';
320
+ return _this12;
321
+ }
322
+
323
+ return (0, _createClass2.default)(ProcessingFailureError);
324
+ }(FilesApiError);
325
+
326
+ exports.ProcessingFailureError = ProcessingFailureError;
327
+ errorClasses.ProcessingFailureError = ProcessingFailureError;
328
+
329
+ var RateLimitedError = /*#__PURE__*/function (_FilesApiError6) {
330
+ (0, _inherits2.default)(RateLimitedError, _FilesApiError6);
331
+
332
+ var _super13 = _createSuper(RateLimitedError);
333
+
334
+ function RateLimitedError(message, code) {
335
+ var _this13;
336
+
337
+ (0, _classCallCheck2.default)(this, RateLimitedError);
338
+ _this13 = _super13.call(this, message, code);
339
+ _this13.name = 'RateLimitedError';
340
+ return _this13;
341
+ }
342
+
343
+ return (0, _createClass2.default)(RateLimitedError);
344
+ }(FilesApiError);
345
+
346
+ exports.RateLimitedError = RateLimitedError;
347
+ errorClasses.RateLimitedError = RateLimitedError;
348
+
349
+ var ServiceUnavailableError = /*#__PURE__*/function (_FilesApiError7) {
350
+ (0, _inherits2.default)(ServiceUnavailableError, _FilesApiError7);
351
+
352
+ var _super14 = _createSuper(ServiceUnavailableError);
353
+
354
+ function ServiceUnavailableError(message, code) {
355
+ var _this14;
356
+
357
+ (0, _classCallCheck2.default)(this, ServiceUnavailableError);
358
+ _this14 = _super14.call(this, message, code);
359
+ _this14.name = 'ServiceUnavailableError';
360
+ return _this14;
361
+ }
362
+
363
+ return (0, _createClass2.default)(ServiceUnavailableError);
364
+ }(FilesApiError);
365
+
366
+ exports.ServiceUnavailableError = ServiceUnavailableError;
367
+ errorClasses.ServiceUnavailableError = ServiceUnavailableError;
368
+
369
+ var SiteConfigurationError = /*#__PURE__*/function (_FilesApiError8) {
370
+ (0, _inherits2.default)(SiteConfigurationError, _FilesApiError8);
371
+
372
+ var _super15 = _createSuper(SiteConfigurationError);
373
+
374
+ function SiteConfigurationError(message, code) {
375
+ var _this15;
376
+
377
+ (0, _classCallCheck2.default)(this, SiteConfigurationError);
378
+ _this15 = _super15.call(this, message, code);
379
+ _this15.name = 'SiteConfigurationError';
380
+ return _this15;
381
+ }
382
+
383
+ return (0, _createClass2.default)(SiteConfigurationError);
384
+ }(FilesApiError);
385
+
386
+ exports.SiteConfigurationError = SiteConfigurationError;
387
+ errorClasses.SiteConfigurationError = SiteConfigurationError; // grouped api errors
388
+
389
+ var BadRequest_AttachmentTooLargeError = /*#__PURE__*/function (_BadRequestError) {
390
+ (0, _inherits2.default)(BadRequest_AttachmentTooLargeError, _BadRequestError);
391
+
392
+ var _super16 = _createSuper(BadRequest_AttachmentTooLargeError);
393
+
394
+ function BadRequest_AttachmentTooLargeError(message, code) {
395
+ var _this16;
396
+
397
+ (0, _classCallCheck2.default)(this, BadRequest_AttachmentTooLargeError);
398
+ _this16 = _super16.call(this, message, code);
399
+ _this16.name = 'BadRequest_AttachmentTooLargeError';
400
+ return _this16;
401
+ }
402
+
403
+ return (0, _createClass2.default)(BadRequest_AttachmentTooLargeError);
404
+ }(BadRequestError);
405
+
406
+ exports.BadRequest_AttachmentTooLargeError = BadRequest_AttachmentTooLargeError;
407
+ errorClasses.BadRequest_AttachmentTooLargeError = BadRequest_AttachmentTooLargeError;
408
+
409
+ var BadRequest_CannotDownloadDirectoryError = /*#__PURE__*/function (_BadRequestError2) {
410
+ (0, _inherits2.default)(BadRequest_CannotDownloadDirectoryError, _BadRequestError2);
411
+
412
+ var _super17 = _createSuper(BadRequest_CannotDownloadDirectoryError);
413
+
414
+ function BadRequest_CannotDownloadDirectoryError(message, code) {
415
+ var _this17;
416
+
417
+ (0, _classCallCheck2.default)(this, BadRequest_CannotDownloadDirectoryError);
418
+ _this17 = _super17.call(this, message, code);
419
+ _this17.name = 'BadRequest_CannotDownloadDirectoryError';
420
+ return _this17;
421
+ }
422
+
423
+ return (0, _createClass2.default)(BadRequest_CannotDownloadDirectoryError);
424
+ }(BadRequestError);
425
+
426
+ exports.BadRequest_CannotDownloadDirectoryError = BadRequest_CannotDownloadDirectoryError;
427
+ errorClasses.BadRequest_CannotDownloadDirectoryError = BadRequest_CannotDownloadDirectoryError;
428
+
429
+ var BadRequest_CantMoveWithMultipleLocationsError = /*#__PURE__*/function (_BadRequestError3) {
430
+ (0, _inherits2.default)(BadRequest_CantMoveWithMultipleLocationsError, _BadRequestError3);
431
+
432
+ var _super18 = _createSuper(BadRequest_CantMoveWithMultipleLocationsError);
433
+
434
+ function BadRequest_CantMoveWithMultipleLocationsError(message, code) {
435
+ var _this18;
436
+
437
+ (0, _classCallCheck2.default)(this, BadRequest_CantMoveWithMultipleLocationsError);
438
+ _this18 = _super18.call(this, message, code);
439
+ _this18.name = 'BadRequest_CantMoveWithMultipleLocationsError';
440
+ return _this18;
441
+ }
442
+
443
+ return (0, _createClass2.default)(BadRequest_CantMoveWithMultipleLocationsError);
444
+ }(BadRequestError);
445
+
446
+ exports.BadRequest_CantMoveWithMultipleLocationsError = BadRequest_CantMoveWithMultipleLocationsError;
447
+ errorClasses.BadRequest_CantMoveWithMultipleLocationsError = BadRequest_CantMoveWithMultipleLocationsError;
448
+
449
+ var BadRequest_DatetimeParseError = /*#__PURE__*/function (_BadRequestError4) {
450
+ (0, _inherits2.default)(BadRequest_DatetimeParseError, _BadRequestError4);
451
+
452
+ var _super19 = _createSuper(BadRequest_DatetimeParseError);
453
+
454
+ function BadRequest_DatetimeParseError(message, code) {
455
+ var _this19;
456
+
457
+ (0, _classCallCheck2.default)(this, BadRequest_DatetimeParseError);
458
+ _this19 = _super19.call(this, message, code);
459
+ _this19.name = 'BadRequest_DatetimeParseError';
460
+ return _this19;
461
+ }
462
+
463
+ return (0, _createClass2.default)(BadRequest_DatetimeParseError);
464
+ }(BadRequestError);
465
+
466
+ exports.BadRequest_DatetimeParseError = BadRequest_DatetimeParseError;
467
+ errorClasses.BadRequest_DatetimeParseError = BadRequest_DatetimeParseError;
468
+
469
+ var BadRequest_DestinationSameError = /*#__PURE__*/function (_BadRequestError5) {
470
+ (0, _inherits2.default)(BadRequest_DestinationSameError, _BadRequestError5);
471
+
472
+ var _super20 = _createSuper(BadRequest_DestinationSameError);
473
+
474
+ function BadRequest_DestinationSameError(message, code) {
475
+ var _this20;
476
+
477
+ (0, _classCallCheck2.default)(this, BadRequest_DestinationSameError);
478
+ _this20 = _super20.call(this, message, code);
479
+ _this20.name = 'BadRequest_DestinationSameError';
480
+ return _this20;
481
+ }
482
+
483
+ return (0, _createClass2.default)(BadRequest_DestinationSameError);
484
+ }(BadRequestError);
485
+
486
+ exports.BadRequest_DestinationSameError = BadRequest_DestinationSameError;
487
+ errorClasses.BadRequest_DestinationSameError = BadRequest_DestinationSameError;
488
+
489
+ var BadRequest_FolderMustNotBeAFileError = /*#__PURE__*/function (_BadRequestError6) {
490
+ (0, _inherits2.default)(BadRequest_FolderMustNotBeAFileError, _BadRequestError6);
491
+
492
+ var _super21 = _createSuper(BadRequest_FolderMustNotBeAFileError);
493
+
494
+ function BadRequest_FolderMustNotBeAFileError(message, code) {
495
+ var _this21;
496
+
497
+ (0, _classCallCheck2.default)(this, BadRequest_FolderMustNotBeAFileError);
498
+ _this21 = _super21.call(this, message, code);
499
+ _this21.name = 'BadRequest_FolderMustNotBeAFileError';
500
+ return _this21;
501
+ }
502
+
503
+ return (0, _createClass2.default)(BadRequest_FolderMustNotBeAFileError);
504
+ }(BadRequestError);
505
+
506
+ exports.BadRequest_FolderMustNotBeAFileError = BadRequest_FolderMustNotBeAFileError;
507
+ errorClasses.BadRequest_FolderMustNotBeAFileError = BadRequest_FolderMustNotBeAFileError;
508
+
509
+ var BadRequest_InvalidBodyError = /*#__PURE__*/function (_BadRequestError7) {
510
+ (0, _inherits2.default)(BadRequest_InvalidBodyError, _BadRequestError7);
511
+
512
+ var _super22 = _createSuper(BadRequest_InvalidBodyError);
513
+
514
+ function BadRequest_InvalidBodyError(message, code) {
515
+ var _this22;
516
+
517
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidBodyError);
518
+ _this22 = _super22.call(this, message, code);
519
+ _this22.name = 'BadRequest_InvalidBodyError';
520
+ return _this22;
521
+ }
522
+
523
+ return (0, _createClass2.default)(BadRequest_InvalidBodyError);
524
+ }(BadRequestError);
525
+
526
+ exports.BadRequest_InvalidBodyError = BadRequest_InvalidBodyError;
527
+ errorClasses.BadRequest_InvalidBodyError = BadRequest_InvalidBodyError;
528
+
529
+ var BadRequest_InvalidCursorError = /*#__PURE__*/function (_BadRequestError8) {
530
+ (0, _inherits2.default)(BadRequest_InvalidCursorError, _BadRequestError8);
531
+
532
+ var _super23 = _createSuper(BadRequest_InvalidCursorError);
533
+
534
+ function BadRequest_InvalidCursorError(message, code) {
535
+ var _this23;
536
+
537
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidCursorError);
538
+ _this23 = _super23.call(this, message, code);
539
+ _this23.name = 'BadRequest_InvalidCursorError';
540
+ return _this23;
541
+ }
542
+
543
+ return (0, _createClass2.default)(BadRequest_InvalidCursorError);
544
+ }(BadRequestError);
545
+
546
+ exports.BadRequest_InvalidCursorError = BadRequest_InvalidCursorError;
547
+ errorClasses.BadRequest_InvalidCursorError = BadRequest_InvalidCursorError;
548
+
549
+ var BadRequest_InvalidEtagsError = /*#__PURE__*/function (_BadRequestError9) {
550
+ (0, _inherits2.default)(BadRequest_InvalidEtagsError, _BadRequestError9);
551
+
552
+ var _super24 = _createSuper(BadRequest_InvalidEtagsError);
553
+
554
+ function BadRequest_InvalidEtagsError(message, code) {
555
+ var _this24;
556
+
557
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidEtagsError);
558
+ _this24 = _super24.call(this, message, code);
559
+ _this24.name = 'BadRequest_InvalidEtagsError';
560
+ return _this24;
561
+ }
562
+
563
+ return (0, _createClass2.default)(BadRequest_InvalidEtagsError);
564
+ }(BadRequestError);
565
+
566
+ exports.BadRequest_InvalidEtagsError = BadRequest_InvalidEtagsError;
567
+ errorClasses.BadRequest_InvalidEtagsError = BadRequest_InvalidEtagsError;
568
+
569
+ var BadRequest_InvalidFilterCombinationError = /*#__PURE__*/function (_BadRequestError10) {
570
+ (0, _inherits2.default)(BadRequest_InvalidFilterCombinationError, _BadRequestError10);
571
+
572
+ var _super25 = _createSuper(BadRequest_InvalidFilterCombinationError);
573
+
574
+ function BadRequest_InvalidFilterCombinationError(message, code) {
575
+ var _this25;
576
+
577
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidFilterCombinationError);
578
+ _this25 = _super25.call(this, message, code);
579
+ _this25.name = 'BadRequest_InvalidFilterCombinationError';
580
+ return _this25;
581
+ }
582
+
583
+ return (0, _createClass2.default)(BadRequest_InvalidFilterCombinationError);
584
+ }(BadRequestError);
585
+
586
+ exports.BadRequest_InvalidFilterCombinationError = BadRequest_InvalidFilterCombinationError;
587
+ errorClasses.BadRequest_InvalidFilterCombinationError = BadRequest_InvalidFilterCombinationError;
588
+
589
+ var BadRequest_InvalidFilterFieldError = /*#__PURE__*/function (_BadRequestError11) {
590
+ (0, _inherits2.default)(BadRequest_InvalidFilterFieldError, _BadRequestError11);
591
+
592
+ var _super26 = _createSuper(BadRequest_InvalidFilterFieldError);
593
+
594
+ function BadRequest_InvalidFilterFieldError(message, code) {
595
+ var _this26;
596
+
597
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidFilterFieldError);
598
+ _this26 = _super26.call(this, message, code);
599
+ _this26.name = 'BadRequest_InvalidFilterFieldError';
600
+ return _this26;
601
+ }
602
+
603
+ return (0, _createClass2.default)(BadRequest_InvalidFilterFieldError);
604
+ }(BadRequestError);
605
+
606
+ exports.BadRequest_InvalidFilterFieldError = BadRequest_InvalidFilterFieldError;
607
+ errorClasses.BadRequest_InvalidFilterFieldError = BadRequest_InvalidFilterFieldError;
608
+
609
+ var BadRequest_InvalidInputEncodingError = /*#__PURE__*/function (_BadRequestError12) {
610
+ (0, _inherits2.default)(BadRequest_InvalidInputEncodingError, _BadRequestError12);
611
+
612
+ var _super27 = _createSuper(BadRequest_InvalidInputEncodingError);
613
+
614
+ function BadRequest_InvalidInputEncodingError(message, code) {
615
+ var _this27;
616
+
617
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidInputEncodingError);
618
+ _this27 = _super27.call(this, message, code);
619
+ _this27.name = 'BadRequest_InvalidInputEncodingError';
620
+ return _this27;
621
+ }
622
+
623
+ return (0, _createClass2.default)(BadRequest_InvalidInputEncodingError);
624
+ }(BadRequestError);
625
+
626
+ exports.BadRequest_InvalidInputEncodingError = BadRequest_InvalidInputEncodingError;
627
+ errorClasses.BadRequest_InvalidInputEncodingError = BadRequest_InvalidInputEncodingError;
628
+
629
+ var BadRequest_InvalidInterfaceError = /*#__PURE__*/function (_BadRequestError13) {
630
+ (0, _inherits2.default)(BadRequest_InvalidInterfaceError, _BadRequestError13);
631
+
632
+ var _super28 = _createSuper(BadRequest_InvalidInterfaceError);
633
+
634
+ function BadRequest_InvalidInterfaceError(message, code) {
635
+ var _this28;
636
+
637
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidInterfaceError);
638
+ _this28 = _super28.call(this, message, code);
639
+ _this28.name = 'BadRequest_InvalidInterfaceError';
640
+ return _this28;
641
+ }
642
+
643
+ return (0, _createClass2.default)(BadRequest_InvalidInterfaceError);
644
+ }(BadRequestError);
645
+
646
+ exports.BadRequest_InvalidInterfaceError = BadRequest_InvalidInterfaceError;
647
+ errorClasses.BadRequest_InvalidInterfaceError = BadRequest_InvalidInterfaceError;
648
+
649
+ var BadRequest_InvalidOauthProviderError = /*#__PURE__*/function (_BadRequestError14) {
650
+ (0, _inherits2.default)(BadRequest_InvalidOauthProviderError, _BadRequestError14);
651
+
652
+ var _super29 = _createSuper(BadRequest_InvalidOauthProviderError);
653
+
654
+ function BadRequest_InvalidOauthProviderError(message, code) {
655
+ var _this29;
656
+
657
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidOauthProviderError);
658
+ _this29 = _super29.call(this, message, code);
659
+ _this29.name = 'BadRequest_InvalidOauthProviderError';
660
+ return _this29;
661
+ }
662
+
663
+ return (0, _createClass2.default)(BadRequest_InvalidOauthProviderError);
664
+ }(BadRequestError);
665
+
666
+ exports.BadRequest_InvalidOauthProviderError = BadRequest_InvalidOauthProviderError;
667
+ errorClasses.BadRequest_InvalidOauthProviderError = BadRequest_InvalidOauthProviderError;
668
+
669
+ var BadRequest_InvalidReturnToUrlError = /*#__PURE__*/function (_BadRequestError15) {
670
+ (0, _inherits2.default)(BadRequest_InvalidReturnToUrlError, _BadRequestError15);
671
+
672
+ var _super30 = _createSuper(BadRequest_InvalidReturnToUrlError);
673
+
674
+ function BadRequest_InvalidReturnToUrlError(message, code) {
675
+ var _this30;
676
+
677
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidReturnToUrlError);
678
+ _this30 = _super30.call(this, message, code);
679
+ _this30.name = 'BadRequest_InvalidReturnToUrlError';
680
+ return _this30;
681
+ }
682
+
683
+ return (0, _createClass2.default)(BadRequest_InvalidReturnToUrlError);
684
+ }(BadRequestError);
685
+
686
+ exports.BadRequest_InvalidReturnToUrlError = BadRequest_InvalidReturnToUrlError;
687
+ errorClasses.BadRequest_InvalidReturnToUrlError = BadRequest_InvalidReturnToUrlError;
688
+
689
+ var BadRequest_InvalidUploadOffsetError = /*#__PURE__*/function (_BadRequestError16) {
690
+ (0, _inherits2.default)(BadRequest_InvalidUploadOffsetError, _BadRequestError16);
691
+
692
+ var _super31 = _createSuper(BadRequest_InvalidUploadOffsetError);
693
+
694
+ function BadRequest_InvalidUploadOffsetError(message, code) {
695
+ var _this31;
696
+
697
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidUploadOffsetError);
698
+ _this31 = _super31.call(this, message, code);
699
+ _this31.name = 'BadRequest_InvalidUploadOffsetError';
700
+ return _this31;
701
+ }
702
+
703
+ return (0, _createClass2.default)(BadRequest_InvalidUploadOffsetError);
704
+ }(BadRequestError);
705
+
706
+ exports.BadRequest_InvalidUploadOffsetError = BadRequest_InvalidUploadOffsetError;
707
+ errorClasses.BadRequest_InvalidUploadOffsetError = BadRequest_InvalidUploadOffsetError;
708
+
709
+ var BadRequest_InvalidUploadPartGapError = /*#__PURE__*/function (_BadRequestError17) {
710
+ (0, _inherits2.default)(BadRequest_InvalidUploadPartGapError, _BadRequestError17);
711
+
712
+ var _super32 = _createSuper(BadRequest_InvalidUploadPartGapError);
713
+
714
+ function BadRequest_InvalidUploadPartGapError(message, code) {
715
+ var _this32;
716
+
717
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidUploadPartGapError);
718
+ _this32 = _super32.call(this, message, code);
719
+ _this32.name = 'BadRequest_InvalidUploadPartGapError';
720
+ return _this32;
721
+ }
722
+
723
+ return (0, _createClass2.default)(BadRequest_InvalidUploadPartGapError);
724
+ }(BadRequestError);
725
+
726
+ exports.BadRequest_InvalidUploadPartGapError = BadRequest_InvalidUploadPartGapError;
727
+ errorClasses.BadRequest_InvalidUploadPartGapError = BadRequest_InvalidUploadPartGapError;
728
+
729
+ var BadRequest_InvalidUploadPartSizeError = /*#__PURE__*/function (_BadRequestError18) {
730
+ (0, _inherits2.default)(BadRequest_InvalidUploadPartSizeError, _BadRequestError18);
731
+
732
+ var _super33 = _createSuper(BadRequest_InvalidUploadPartSizeError);
733
+
734
+ function BadRequest_InvalidUploadPartSizeError(message, code) {
735
+ var _this33;
736
+
737
+ (0, _classCallCheck2.default)(this, BadRequest_InvalidUploadPartSizeError);
738
+ _this33 = _super33.call(this, message, code);
739
+ _this33.name = 'BadRequest_InvalidUploadPartSizeError';
740
+ return _this33;
741
+ }
742
+
743
+ return (0, _createClass2.default)(BadRequest_InvalidUploadPartSizeError);
744
+ }(BadRequestError);
745
+
746
+ exports.BadRequest_InvalidUploadPartSizeError = BadRequest_InvalidUploadPartSizeError;
747
+ errorClasses.BadRequest_InvalidUploadPartSizeError = BadRequest_InvalidUploadPartSizeError;
748
+
749
+ var BadRequest_MethodNotAllowedError = /*#__PURE__*/function (_BadRequestError19) {
750
+ (0, _inherits2.default)(BadRequest_MethodNotAllowedError, _BadRequestError19);
751
+
752
+ var _super34 = _createSuper(BadRequest_MethodNotAllowedError);
753
+
754
+ function BadRequest_MethodNotAllowedError(message, code) {
755
+ var _this34;
756
+
757
+ (0, _classCallCheck2.default)(this, BadRequest_MethodNotAllowedError);
758
+ _this34 = _super34.call(this, message, code);
759
+ _this34.name = 'BadRequest_MethodNotAllowedError';
760
+ return _this34;
761
+ }
762
+
763
+ return (0, _createClass2.default)(BadRequest_MethodNotAllowedError);
764
+ }(BadRequestError);
765
+
766
+ exports.BadRequest_MethodNotAllowedError = BadRequest_MethodNotAllowedError;
767
+ errorClasses.BadRequest_MethodNotAllowedError = BadRequest_MethodNotAllowedError;
768
+
769
+ var BadRequest_NoValidInputParamsError = /*#__PURE__*/function (_BadRequestError20) {
770
+ (0, _inherits2.default)(BadRequest_NoValidInputParamsError, _BadRequestError20);
771
+
772
+ var _super35 = _createSuper(BadRequest_NoValidInputParamsError);
773
+
774
+ function BadRequest_NoValidInputParamsError(message, code) {
775
+ var _this35;
776
+
777
+ (0, _classCallCheck2.default)(this, BadRequest_NoValidInputParamsError);
778
+ _this35 = _super35.call(this, message, code);
779
+ _this35.name = 'BadRequest_NoValidInputParamsError';
780
+ return _this35;
781
+ }
782
+
783
+ return (0, _createClass2.default)(BadRequest_NoValidInputParamsError);
784
+ }(BadRequestError);
785
+
786
+ exports.BadRequest_NoValidInputParamsError = BadRequest_NoValidInputParamsError;
787
+ errorClasses.BadRequest_NoValidInputParamsError = BadRequest_NoValidInputParamsError;
788
+
789
+ var BadRequest_OperationOnNonScimResourceError = /*#__PURE__*/function (_BadRequestError21) {
790
+ (0, _inherits2.default)(BadRequest_OperationOnNonScimResourceError, _BadRequestError21);
791
+
792
+ var _super36 = _createSuper(BadRequest_OperationOnNonScimResourceError);
793
+
794
+ function BadRequest_OperationOnNonScimResourceError(message, code) {
795
+ var _this36;
796
+
797
+ (0, _classCallCheck2.default)(this, BadRequest_OperationOnNonScimResourceError);
798
+ _this36 = _super36.call(this, message, code);
799
+ _this36.name = 'BadRequest_OperationOnNonScimResourceError';
800
+ return _this36;
801
+ }
802
+
803
+ return (0, _createClass2.default)(BadRequest_OperationOnNonScimResourceError);
804
+ }(BadRequestError);
805
+
806
+ exports.BadRequest_OperationOnNonScimResourceError = BadRequest_OperationOnNonScimResourceError;
807
+ errorClasses.BadRequest_OperationOnNonScimResourceError = BadRequest_OperationOnNonScimResourceError;
808
+
809
+ var BadRequest_PartNumberTooLargeError = /*#__PURE__*/function (_BadRequestError22) {
810
+ (0, _inherits2.default)(BadRequest_PartNumberTooLargeError, _BadRequestError22);
811
+
812
+ var _super37 = _createSuper(BadRequest_PartNumberTooLargeError);
813
+
814
+ function BadRequest_PartNumberTooLargeError(message, code) {
815
+ var _this37;
816
+
817
+ (0, _classCallCheck2.default)(this, BadRequest_PartNumberTooLargeError);
818
+ _this37 = _super37.call(this, message, code);
819
+ _this37.name = 'BadRequest_PartNumberTooLargeError';
820
+ return _this37;
821
+ }
822
+
823
+ return (0, _createClass2.default)(BadRequest_PartNumberTooLargeError);
824
+ }(BadRequestError);
825
+
826
+ exports.BadRequest_PartNumberTooLargeError = BadRequest_PartNumberTooLargeError;
827
+ errorClasses.BadRequest_PartNumberTooLargeError = BadRequest_PartNumberTooLargeError;
828
+
829
+ var BadRequest_ReauthenticationNeededFieldsError = /*#__PURE__*/function (_BadRequestError23) {
830
+ (0, _inherits2.default)(BadRequest_ReauthenticationNeededFieldsError, _BadRequestError23);
831
+
832
+ var _super38 = _createSuper(BadRequest_ReauthenticationNeededFieldsError);
833
+
834
+ function BadRequest_ReauthenticationNeededFieldsError(message, code) {
835
+ var _this38;
836
+
837
+ (0, _classCallCheck2.default)(this, BadRequest_ReauthenticationNeededFieldsError);
838
+ _this38 = _super38.call(this, message, code);
839
+ _this38.name = 'BadRequest_ReauthenticationNeededFieldsError';
840
+ return _this38;
841
+ }
842
+
843
+ return (0, _createClass2.default)(BadRequest_ReauthenticationNeededFieldsError);
844
+ }(BadRequestError);
845
+
846
+ exports.BadRequest_ReauthenticationNeededFieldsError = BadRequest_ReauthenticationNeededFieldsError;
847
+ errorClasses.BadRequest_ReauthenticationNeededFieldsError = BadRequest_ReauthenticationNeededFieldsError;
848
+
849
+ var BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = /*#__PURE__*/function (_BadRequestError24) {
850
+ (0, _inherits2.default)(BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError, _BadRequestError24);
851
+
852
+ var _super39 = _createSuper(BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError);
853
+
854
+ function BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError(message, code) {
855
+ var _this39;
856
+
857
+ (0, _classCallCheck2.default)(this, BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError);
858
+ _this39 = _super39.call(this, message, code);
859
+ _this39.name = 'BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError';
860
+ return _this39;
861
+ }
862
+
863
+ return (0, _createClass2.default)(BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError);
864
+ }(BadRequestError);
865
+
866
+ exports.BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError;
867
+ errorClasses.BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError;
868
+
869
+ var BadRequest_RequestParamsContainInvalidCharacterError = /*#__PURE__*/function (_BadRequestError25) {
870
+ (0, _inherits2.default)(BadRequest_RequestParamsContainInvalidCharacterError, _BadRequestError25);
871
+
872
+ var _super40 = _createSuper(BadRequest_RequestParamsContainInvalidCharacterError);
873
+
874
+ function BadRequest_RequestParamsContainInvalidCharacterError(message, code) {
875
+ var _this40;
876
+
877
+ (0, _classCallCheck2.default)(this, BadRequest_RequestParamsContainInvalidCharacterError);
878
+ _this40 = _super40.call(this, message, code);
879
+ _this40.name = 'BadRequest_RequestParamsContainInvalidCharacterError';
880
+ return _this40;
881
+ }
882
+
883
+ return (0, _createClass2.default)(BadRequest_RequestParamsContainInvalidCharacterError);
884
+ }(BadRequestError);
885
+
886
+ exports.BadRequest_RequestParamsContainInvalidCharacterError = BadRequest_RequestParamsContainInvalidCharacterError;
887
+ errorClasses.BadRequest_RequestParamsContainInvalidCharacterError = BadRequest_RequestParamsContainInvalidCharacterError;
888
+
889
+ var BadRequest_RequestParamsInvalidError = /*#__PURE__*/function (_BadRequestError26) {
890
+ (0, _inherits2.default)(BadRequest_RequestParamsInvalidError, _BadRequestError26);
891
+
892
+ var _super41 = _createSuper(BadRequest_RequestParamsInvalidError);
893
+
894
+ function BadRequest_RequestParamsInvalidError(message, code) {
895
+ var _this41;
896
+
897
+ (0, _classCallCheck2.default)(this, BadRequest_RequestParamsInvalidError);
898
+ _this41 = _super41.call(this, message, code);
899
+ _this41.name = 'BadRequest_RequestParamsInvalidError';
900
+ return _this41;
901
+ }
902
+
903
+ return (0, _createClass2.default)(BadRequest_RequestParamsInvalidError);
904
+ }(BadRequestError);
905
+
906
+ exports.BadRequest_RequestParamsInvalidError = BadRequest_RequestParamsInvalidError;
907
+ errorClasses.BadRequest_RequestParamsInvalidError = BadRequest_RequestParamsInvalidError;
908
+
909
+ var BadRequest_RequestParamsRequiredError = /*#__PURE__*/function (_BadRequestError27) {
910
+ (0, _inherits2.default)(BadRequest_RequestParamsRequiredError, _BadRequestError27);
911
+
912
+ var _super42 = _createSuper(BadRequest_RequestParamsRequiredError);
913
+
914
+ function BadRequest_RequestParamsRequiredError(message, code) {
915
+ var _this42;
916
+
917
+ (0, _classCallCheck2.default)(this, BadRequest_RequestParamsRequiredError);
918
+ _this42 = _super42.call(this, message, code);
919
+ _this42.name = 'BadRequest_RequestParamsRequiredError';
920
+ return _this42;
921
+ }
922
+
923
+ return (0, _createClass2.default)(BadRequest_RequestParamsRequiredError);
924
+ }(BadRequestError);
925
+
926
+ exports.BadRequest_RequestParamsRequiredError = BadRequest_RequestParamsRequiredError;
927
+ errorClasses.BadRequest_RequestParamsRequiredError = BadRequest_RequestParamsRequiredError;
928
+
929
+ var BadRequest_SearchAllOnChildPathError = /*#__PURE__*/function (_BadRequestError28) {
930
+ (0, _inherits2.default)(BadRequest_SearchAllOnChildPathError, _BadRequestError28);
931
+
932
+ var _super43 = _createSuper(BadRequest_SearchAllOnChildPathError);
933
+
934
+ function BadRequest_SearchAllOnChildPathError(message, code) {
935
+ var _this43;
936
+
937
+ (0, _classCallCheck2.default)(this, BadRequest_SearchAllOnChildPathError);
938
+ _this43 = _super43.call(this, message, code);
939
+ _this43.name = 'BadRequest_SearchAllOnChildPathError';
940
+ return _this43;
941
+ }
942
+
943
+ return (0, _createClass2.default)(BadRequest_SearchAllOnChildPathError);
944
+ }(BadRequestError);
945
+
946
+ exports.BadRequest_SearchAllOnChildPathError = BadRequest_SearchAllOnChildPathError;
947
+ errorClasses.BadRequest_SearchAllOnChildPathError = BadRequest_SearchAllOnChildPathError;
948
+
949
+ var BadRequest_UnsupportedCurrencyError = /*#__PURE__*/function (_BadRequestError29) {
950
+ (0, _inherits2.default)(BadRequest_UnsupportedCurrencyError, _BadRequestError29);
951
+
952
+ var _super44 = _createSuper(BadRequest_UnsupportedCurrencyError);
953
+
954
+ function BadRequest_UnsupportedCurrencyError(message, code) {
955
+ var _this44;
956
+
957
+ (0, _classCallCheck2.default)(this, BadRequest_UnsupportedCurrencyError);
958
+ _this44 = _super44.call(this, message, code);
959
+ _this44.name = 'BadRequest_UnsupportedCurrencyError';
960
+ return _this44;
961
+ }
962
+
963
+ return (0, _createClass2.default)(BadRequest_UnsupportedCurrencyError);
964
+ }(BadRequestError);
965
+
966
+ exports.BadRequest_UnsupportedCurrencyError = BadRequest_UnsupportedCurrencyError;
967
+ errorClasses.BadRequest_UnsupportedCurrencyError = BadRequest_UnsupportedCurrencyError;
968
+
969
+ var BadRequest_UnsupportedHttpResponseFormatError = /*#__PURE__*/function (_BadRequestError30) {
970
+ (0, _inherits2.default)(BadRequest_UnsupportedHttpResponseFormatError, _BadRequestError30);
971
+
972
+ var _super45 = _createSuper(BadRequest_UnsupportedHttpResponseFormatError);
973
+
974
+ function BadRequest_UnsupportedHttpResponseFormatError(message, code) {
975
+ var _this45;
976
+
977
+ (0, _classCallCheck2.default)(this, BadRequest_UnsupportedHttpResponseFormatError);
978
+ _this45 = _super45.call(this, message, code);
979
+ _this45.name = 'BadRequest_UnsupportedHttpResponseFormatError';
980
+ return _this45;
981
+ }
982
+
983
+ return (0, _createClass2.default)(BadRequest_UnsupportedHttpResponseFormatError);
984
+ }(BadRequestError);
985
+
986
+ exports.BadRequest_UnsupportedHttpResponseFormatError = BadRequest_UnsupportedHttpResponseFormatError;
987
+ errorClasses.BadRequest_UnsupportedHttpResponseFormatError = BadRequest_UnsupportedHttpResponseFormatError;
988
+
989
+ var BadRequest_UnsupportedMediaTypeError = /*#__PURE__*/function (_BadRequestError31) {
990
+ (0, _inherits2.default)(BadRequest_UnsupportedMediaTypeError, _BadRequestError31);
991
+
992
+ var _super46 = _createSuper(BadRequest_UnsupportedMediaTypeError);
993
+
994
+ function BadRequest_UnsupportedMediaTypeError(message, code) {
995
+ var _this46;
996
+
997
+ (0, _classCallCheck2.default)(this, BadRequest_UnsupportedMediaTypeError);
998
+ _this46 = _super46.call(this, message, code);
999
+ _this46.name = 'BadRequest_UnsupportedMediaTypeError';
1000
+ return _this46;
1001
+ }
1002
+
1003
+ return (0, _createClass2.default)(BadRequest_UnsupportedMediaTypeError);
1004
+ }(BadRequestError);
1005
+
1006
+ exports.BadRequest_UnsupportedMediaTypeError = BadRequest_UnsupportedMediaTypeError;
1007
+ errorClasses.BadRequest_UnsupportedMediaTypeError = BadRequest_UnsupportedMediaTypeError;
1008
+
1009
+ var BadRequest_UserIdInvalidError = /*#__PURE__*/function (_BadRequestError32) {
1010
+ (0, _inherits2.default)(BadRequest_UserIdInvalidError, _BadRequestError32);
1011
+
1012
+ var _super47 = _createSuper(BadRequest_UserIdInvalidError);
1013
+
1014
+ function BadRequest_UserIdInvalidError(message, code) {
1015
+ var _this47;
1016
+
1017
+ (0, _classCallCheck2.default)(this, BadRequest_UserIdInvalidError);
1018
+ _this47 = _super47.call(this, message, code);
1019
+ _this47.name = 'BadRequest_UserIdInvalidError';
1020
+ return _this47;
1021
+ }
1022
+
1023
+ return (0, _createClass2.default)(BadRequest_UserIdInvalidError);
1024
+ }(BadRequestError);
1025
+
1026
+ exports.BadRequest_UserIdInvalidError = BadRequest_UserIdInvalidError;
1027
+ errorClasses.BadRequest_UserIdInvalidError = BadRequest_UserIdInvalidError;
1028
+
1029
+ var BadRequest_UserIdOnUserEndpointError = /*#__PURE__*/function (_BadRequestError33) {
1030
+ (0, _inherits2.default)(BadRequest_UserIdOnUserEndpointError, _BadRequestError33);
1031
+
1032
+ var _super48 = _createSuper(BadRequest_UserIdOnUserEndpointError);
1033
+
1034
+ function BadRequest_UserIdOnUserEndpointError(message, code) {
1035
+ var _this48;
1036
+
1037
+ (0, _classCallCheck2.default)(this, BadRequest_UserIdOnUserEndpointError);
1038
+ _this48 = _super48.call(this, message, code);
1039
+ _this48.name = 'BadRequest_UserIdOnUserEndpointError';
1040
+ return _this48;
1041
+ }
1042
+
1043
+ return (0, _createClass2.default)(BadRequest_UserIdOnUserEndpointError);
1044
+ }(BadRequestError);
1045
+
1046
+ exports.BadRequest_UserIdOnUserEndpointError = BadRequest_UserIdOnUserEndpointError;
1047
+ errorClasses.BadRequest_UserIdOnUserEndpointError = BadRequest_UserIdOnUserEndpointError;
1048
+
1049
+ var BadRequest_UserRequiredError = /*#__PURE__*/function (_BadRequestError34) {
1050
+ (0, _inherits2.default)(BadRequest_UserRequiredError, _BadRequestError34);
1051
+
1052
+ var _super49 = _createSuper(BadRequest_UserRequiredError);
1053
+
1054
+ function BadRequest_UserRequiredError(message, code) {
1055
+ var _this49;
1056
+
1057
+ (0, _classCallCheck2.default)(this, BadRequest_UserRequiredError);
1058
+ _this49 = _super49.call(this, message, code);
1059
+ _this49.name = 'BadRequest_UserRequiredError';
1060
+ return _this49;
1061
+ }
1062
+
1063
+ return (0, _createClass2.default)(BadRequest_UserRequiredError);
1064
+ }(BadRequestError);
1065
+
1066
+ exports.BadRequest_UserRequiredError = BadRequest_UserRequiredError;
1067
+ errorClasses.BadRequest_UserRequiredError = BadRequest_UserRequiredError;
1068
+
1069
+ var NotAuthenticated_AuthenticationRequiredError = /*#__PURE__*/function (_NotAuthenticatedErro) {
1070
+ (0, _inherits2.default)(NotAuthenticated_AuthenticationRequiredError, _NotAuthenticatedErro);
1071
+
1072
+ var _super50 = _createSuper(NotAuthenticated_AuthenticationRequiredError);
1073
+
1074
+ function NotAuthenticated_AuthenticationRequiredError(message, code) {
1075
+ var _this50;
1076
+
1077
+ (0, _classCallCheck2.default)(this, NotAuthenticated_AuthenticationRequiredError);
1078
+ _this50 = _super50.call(this, message, code);
1079
+ _this50.name = 'NotAuthenticated_AuthenticationRequiredError';
1080
+ return _this50;
1081
+ }
1082
+
1083
+ return (0, _createClass2.default)(NotAuthenticated_AuthenticationRequiredError);
1084
+ }(NotAuthenticatedError);
1085
+
1086
+ exports.NotAuthenticated_AuthenticationRequiredError = NotAuthenticated_AuthenticationRequiredError;
1087
+ errorClasses.NotAuthenticated_AuthenticationRequiredError = NotAuthenticated_AuthenticationRequiredError;
1088
+
1089
+ var NotAuthenticated_BundleRegistrationCodeFailedError = /*#__PURE__*/function (_NotAuthenticatedErro2) {
1090
+ (0, _inherits2.default)(NotAuthenticated_BundleRegistrationCodeFailedError, _NotAuthenticatedErro2);
1091
+
1092
+ var _super51 = _createSuper(NotAuthenticated_BundleRegistrationCodeFailedError);
1093
+
1094
+ function NotAuthenticated_BundleRegistrationCodeFailedError(message, code) {
1095
+ var _this51;
1096
+
1097
+ (0, _classCallCheck2.default)(this, NotAuthenticated_BundleRegistrationCodeFailedError);
1098
+ _this51 = _super51.call(this, message, code);
1099
+ _this51.name = 'NotAuthenticated_BundleRegistrationCodeFailedError';
1100
+ return _this51;
1101
+ }
1102
+
1103
+ return (0, _createClass2.default)(NotAuthenticated_BundleRegistrationCodeFailedError);
1104
+ }(NotAuthenticatedError);
1105
+
1106
+ exports.NotAuthenticated_BundleRegistrationCodeFailedError = NotAuthenticated_BundleRegistrationCodeFailedError;
1107
+ errorClasses.NotAuthenticated_BundleRegistrationCodeFailedError = NotAuthenticated_BundleRegistrationCodeFailedError;
1108
+
1109
+ var NotAuthenticated_InboxRegistrationCodeFailedError = /*#__PURE__*/function (_NotAuthenticatedErro3) {
1110
+ (0, _inherits2.default)(NotAuthenticated_InboxRegistrationCodeFailedError, _NotAuthenticatedErro3);
1111
+
1112
+ var _super52 = _createSuper(NotAuthenticated_InboxRegistrationCodeFailedError);
1113
+
1114
+ function NotAuthenticated_InboxRegistrationCodeFailedError(message, code) {
1115
+ var _this52;
1116
+
1117
+ (0, _classCallCheck2.default)(this, NotAuthenticated_InboxRegistrationCodeFailedError);
1118
+ _this52 = _super52.call(this, message, code);
1119
+ _this52.name = 'NotAuthenticated_InboxRegistrationCodeFailedError';
1120
+ return _this52;
1121
+ }
1122
+
1123
+ return (0, _createClass2.default)(NotAuthenticated_InboxRegistrationCodeFailedError);
1124
+ }(NotAuthenticatedError);
1125
+
1126
+ exports.NotAuthenticated_InboxRegistrationCodeFailedError = NotAuthenticated_InboxRegistrationCodeFailedError;
1127
+ errorClasses.NotAuthenticated_InboxRegistrationCodeFailedError = NotAuthenticated_InboxRegistrationCodeFailedError;
1128
+
1129
+ var NotAuthenticated_InvalidCredentialsError = /*#__PURE__*/function (_NotAuthenticatedErro4) {
1130
+ (0, _inherits2.default)(NotAuthenticated_InvalidCredentialsError, _NotAuthenticatedErro4);
1131
+
1132
+ var _super53 = _createSuper(NotAuthenticated_InvalidCredentialsError);
1133
+
1134
+ function NotAuthenticated_InvalidCredentialsError(message, code) {
1135
+ var _this53;
1136
+
1137
+ (0, _classCallCheck2.default)(this, NotAuthenticated_InvalidCredentialsError);
1138
+ _this53 = _super53.call(this, message, code);
1139
+ _this53.name = 'NotAuthenticated_InvalidCredentialsError';
1140
+ return _this53;
1141
+ }
1142
+
1143
+ return (0, _createClass2.default)(NotAuthenticated_InvalidCredentialsError);
1144
+ }(NotAuthenticatedError);
1145
+
1146
+ exports.NotAuthenticated_InvalidCredentialsError = NotAuthenticated_InvalidCredentialsError;
1147
+ errorClasses.NotAuthenticated_InvalidCredentialsError = NotAuthenticated_InvalidCredentialsError;
1148
+
1149
+ var NotAuthenticated_InvalidOauthError = /*#__PURE__*/function (_NotAuthenticatedErro5) {
1150
+ (0, _inherits2.default)(NotAuthenticated_InvalidOauthError, _NotAuthenticatedErro5);
1151
+
1152
+ var _super54 = _createSuper(NotAuthenticated_InvalidOauthError);
1153
+
1154
+ function NotAuthenticated_InvalidOauthError(message, code) {
1155
+ var _this54;
1156
+
1157
+ (0, _classCallCheck2.default)(this, NotAuthenticated_InvalidOauthError);
1158
+ _this54 = _super54.call(this, message, code);
1159
+ _this54.name = 'NotAuthenticated_InvalidOauthError';
1160
+ return _this54;
1161
+ }
1162
+
1163
+ return (0, _createClass2.default)(NotAuthenticated_InvalidOauthError);
1164
+ }(NotAuthenticatedError);
1165
+
1166
+ exports.NotAuthenticated_InvalidOauthError = NotAuthenticated_InvalidOauthError;
1167
+ errorClasses.NotAuthenticated_InvalidOauthError = NotAuthenticated_InvalidOauthError;
1168
+
1169
+ var NotAuthenticated_InvalidOrExpiredCodeError = /*#__PURE__*/function (_NotAuthenticatedErro6) {
1170
+ (0, _inherits2.default)(NotAuthenticated_InvalidOrExpiredCodeError, _NotAuthenticatedErro6);
1171
+
1172
+ var _super55 = _createSuper(NotAuthenticated_InvalidOrExpiredCodeError);
1173
+
1174
+ function NotAuthenticated_InvalidOrExpiredCodeError(message, code) {
1175
+ var _this55;
1176
+
1177
+ (0, _classCallCheck2.default)(this, NotAuthenticated_InvalidOrExpiredCodeError);
1178
+ _this55 = _super55.call(this, message, code);
1179
+ _this55.name = 'NotAuthenticated_InvalidOrExpiredCodeError';
1180
+ return _this55;
1181
+ }
1182
+
1183
+ return (0, _createClass2.default)(NotAuthenticated_InvalidOrExpiredCodeError);
1184
+ }(NotAuthenticatedError);
1185
+
1186
+ exports.NotAuthenticated_InvalidOrExpiredCodeError = NotAuthenticated_InvalidOrExpiredCodeError;
1187
+ errorClasses.NotAuthenticated_InvalidOrExpiredCodeError = NotAuthenticated_InvalidOrExpiredCodeError;
1188
+
1189
+ var NotAuthenticated_InvalidUsernameOrPasswordError = /*#__PURE__*/function (_NotAuthenticatedErro7) {
1190
+ (0, _inherits2.default)(NotAuthenticated_InvalidUsernameOrPasswordError, _NotAuthenticatedErro7);
1191
+
1192
+ var _super56 = _createSuper(NotAuthenticated_InvalidUsernameOrPasswordError);
1193
+
1194
+ function NotAuthenticated_InvalidUsernameOrPasswordError(message, code) {
1195
+ var _this56;
1196
+
1197
+ (0, _classCallCheck2.default)(this, NotAuthenticated_InvalidUsernameOrPasswordError);
1198
+ _this56 = _super56.call(this, message, code);
1199
+ _this56.name = 'NotAuthenticated_InvalidUsernameOrPasswordError';
1200
+ return _this56;
1201
+ }
1202
+
1203
+ return (0, _createClass2.default)(NotAuthenticated_InvalidUsernameOrPasswordError);
1204
+ }(NotAuthenticatedError);
1205
+
1206
+ exports.NotAuthenticated_InvalidUsernameOrPasswordError = NotAuthenticated_InvalidUsernameOrPasswordError;
1207
+ errorClasses.NotAuthenticated_InvalidUsernameOrPasswordError = NotAuthenticated_InvalidUsernameOrPasswordError;
1208
+
1209
+ var NotAuthenticated_LockedOutError = /*#__PURE__*/function (_NotAuthenticatedErro8) {
1210
+ (0, _inherits2.default)(NotAuthenticated_LockedOutError, _NotAuthenticatedErro8);
1211
+
1212
+ var _super57 = _createSuper(NotAuthenticated_LockedOutError);
1213
+
1214
+ function NotAuthenticated_LockedOutError(message, code) {
1215
+ var _this57;
1216
+
1217
+ (0, _classCallCheck2.default)(this, NotAuthenticated_LockedOutError);
1218
+ _this57 = _super57.call(this, message, code);
1219
+ _this57.name = 'NotAuthenticated_LockedOutError';
1220
+ return _this57;
1221
+ }
1222
+
1223
+ return (0, _createClass2.default)(NotAuthenticated_LockedOutError);
1224
+ }(NotAuthenticatedError);
1225
+
1226
+ exports.NotAuthenticated_LockedOutError = NotAuthenticated_LockedOutError;
1227
+ errorClasses.NotAuthenticated_LockedOutError = NotAuthenticated_LockedOutError;
1228
+
1229
+ var NotAuthenticated_LockoutRegionMismatchError = /*#__PURE__*/function (_NotAuthenticatedErro9) {
1230
+ (0, _inherits2.default)(NotAuthenticated_LockoutRegionMismatchError, _NotAuthenticatedErro9);
1231
+
1232
+ var _super58 = _createSuper(NotAuthenticated_LockoutRegionMismatchError);
1233
+
1234
+ function NotAuthenticated_LockoutRegionMismatchError(message, code) {
1235
+ var _this58;
1236
+
1237
+ (0, _classCallCheck2.default)(this, NotAuthenticated_LockoutRegionMismatchError);
1238
+ _this58 = _super58.call(this, message, code);
1239
+ _this58.name = 'NotAuthenticated_LockoutRegionMismatchError';
1240
+ return _this58;
1241
+ }
1242
+
1243
+ return (0, _createClass2.default)(NotAuthenticated_LockoutRegionMismatchError);
1244
+ }(NotAuthenticatedError);
1245
+
1246
+ exports.NotAuthenticated_LockoutRegionMismatchError = NotAuthenticated_LockoutRegionMismatchError;
1247
+ errorClasses.NotAuthenticated_LockoutRegionMismatchError = NotAuthenticated_LockoutRegionMismatchError;
1248
+
1249
+ var NotAuthenticated_OneTimePasswordIncorrectError = /*#__PURE__*/function (_NotAuthenticatedErro10) {
1250
+ (0, _inherits2.default)(NotAuthenticated_OneTimePasswordIncorrectError, _NotAuthenticatedErro10);
1251
+
1252
+ var _super59 = _createSuper(NotAuthenticated_OneTimePasswordIncorrectError);
1253
+
1254
+ function NotAuthenticated_OneTimePasswordIncorrectError(message, code) {
1255
+ var _this59;
1256
+
1257
+ (0, _classCallCheck2.default)(this, NotAuthenticated_OneTimePasswordIncorrectError);
1258
+ _this59 = _super59.call(this, message, code);
1259
+ _this59.name = 'NotAuthenticated_OneTimePasswordIncorrectError';
1260
+ return _this59;
1261
+ }
1262
+
1263
+ return (0, _createClass2.default)(NotAuthenticated_OneTimePasswordIncorrectError);
1264
+ }(NotAuthenticatedError);
1265
+
1266
+ exports.NotAuthenticated_OneTimePasswordIncorrectError = NotAuthenticated_OneTimePasswordIncorrectError;
1267
+ errorClasses.NotAuthenticated_OneTimePasswordIncorrectError = NotAuthenticated_OneTimePasswordIncorrectError;
1268
+
1269
+ var NotAuthenticated_TwoFactorAuthenticationErrorError = /*#__PURE__*/function (_NotAuthenticatedErro11) {
1270
+ (0, _inherits2.default)(NotAuthenticated_TwoFactorAuthenticationErrorError, _NotAuthenticatedErro11);
1271
+
1272
+ var _super60 = _createSuper(NotAuthenticated_TwoFactorAuthenticationErrorError);
1273
+
1274
+ function NotAuthenticated_TwoFactorAuthenticationErrorError(message, code) {
1275
+ var _this60;
1276
+
1277
+ (0, _classCallCheck2.default)(this, NotAuthenticated_TwoFactorAuthenticationErrorError);
1278
+ _this60 = _super60.call(this, message, code);
1279
+ _this60.name = 'NotAuthenticated_TwoFactorAuthenticationErrorError';
1280
+ return _this60;
1281
+ }
1282
+
1283
+ return (0, _createClass2.default)(NotAuthenticated_TwoFactorAuthenticationErrorError);
1284
+ }(NotAuthenticatedError);
1285
+
1286
+ exports.NotAuthenticated_TwoFactorAuthenticationErrorError = NotAuthenticated_TwoFactorAuthenticationErrorError;
1287
+ errorClasses.NotAuthenticated_TwoFactorAuthenticationErrorError = NotAuthenticated_TwoFactorAuthenticationErrorError;
1288
+
1289
+ var NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = /*#__PURE__*/function (_NotAuthenticatedErro12) {
1290
+ (0, _inherits2.default)(NotAuthenticated_TwoFactorAuthenticationSetupExpiredError, _NotAuthenticatedErro12);
1291
+
1292
+ var _super61 = _createSuper(NotAuthenticated_TwoFactorAuthenticationSetupExpiredError);
1293
+
1294
+ function NotAuthenticated_TwoFactorAuthenticationSetupExpiredError(message, code) {
1295
+ var _this61;
1296
+
1297
+ (0, _classCallCheck2.default)(this, NotAuthenticated_TwoFactorAuthenticationSetupExpiredError);
1298
+ _this61 = _super61.call(this, message, code);
1299
+ _this61.name = 'NotAuthenticated_TwoFactorAuthenticationSetupExpiredError';
1300
+ return _this61;
1301
+ }
1302
+
1303
+ return (0, _createClass2.default)(NotAuthenticated_TwoFactorAuthenticationSetupExpiredError);
1304
+ }(NotAuthenticatedError);
1305
+
1306
+ exports.NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = NotAuthenticated_TwoFactorAuthenticationSetupExpiredError;
1307
+ errorClasses.NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = NotAuthenticated_TwoFactorAuthenticationSetupExpiredError;
1308
+
1309
+ var NotAuthorized_ApiKeyIsDisabledError = /*#__PURE__*/function (_NotAuthorizedError) {
1310
+ (0, _inherits2.default)(NotAuthorized_ApiKeyIsDisabledError, _NotAuthorizedError);
1311
+
1312
+ var _super62 = _createSuper(NotAuthorized_ApiKeyIsDisabledError);
1313
+
1314
+ function NotAuthorized_ApiKeyIsDisabledError(message, code) {
1315
+ var _this62;
1316
+
1317
+ (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyIsDisabledError);
1318
+ _this62 = _super62.call(this, message, code);
1319
+ _this62.name = 'NotAuthorized_ApiKeyIsDisabledError';
1320
+ return _this62;
1321
+ }
1322
+
1323
+ return (0, _createClass2.default)(NotAuthorized_ApiKeyIsDisabledError);
1324
+ }(NotAuthorizedError);
1325
+
1326
+ exports.NotAuthorized_ApiKeyIsDisabledError = NotAuthorized_ApiKeyIsDisabledError;
1327
+ errorClasses.NotAuthorized_ApiKeyIsDisabledError = NotAuthorized_ApiKeyIsDisabledError;
1328
+
1329
+ var NotAuthorized_ApiKeyIsPathRestrictedError = /*#__PURE__*/function (_NotAuthorizedError2) {
1330
+ (0, _inherits2.default)(NotAuthorized_ApiKeyIsPathRestrictedError, _NotAuthorizedError2);
1331
+
1332
+ var _super63 = _createSuper(NotAuthorized_ApiKeyIsPathRestrictedError);
1333
+
1334
+ function NotAuthorized_ApiKeyIsPathRestrictedError(message, code) {
1335
+ var _this63;
1336
+
1337
+ (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyIsPathRestrictedError);
1338
+ _this63 = _super63.call(this, message, code);
1339
+ _this63.name = 'NotAuthorized_ApiKeyIsPathRestrictedError';
1340
+ return _this63;
1341
+ }
1342
+
1343
+ return (0, _createClass2.default)(NotAuthorized_ApiKeyIsPathRestrictedError);
1344
+ }(NotAuthorizedError);
1345
+
1346
+ exports.NotAuthorized_ApiKeyIsPathRestrictedError = NotAuthorized_ApiKeyIsPathRestrictedError;
1347
+ errorClasses.NotAuthorized_ApiKeyIsPathRestrictedError = NotAuthorized_ApiKeyIsPathRestrictedError;
1348
+
1349
+ var NotAuthorized_ApiKeyOnlyForDesktopAppError = /*#__PURE__*/function (_NotAuthorizedError3) {
1350
+ (0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForDesktopAppError, _NotAuthorizedError3);
1351
+
1352
+ var _super64 = _createSuper(NotAuthorized_ApiKeyOnlyForDesktopAppError);
1353
+
1354
+ function NotAuthorized_ApiKeyOnlyForDesktopAppError(message, code) {
1355
+ var _this64;
1356
+
1357
+ (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForDesktopAppError);
1358
+ _this64 = _super64.call(this, message, code);
1359
+ _this64.name = 'NotAuthorized_ApiKeyOnlyForDesktopAppError';
1360
+ return _this64;
1361
+ }
1362
+
1363
+ return (0, _createClass2.default)(NotAuthorized_ApiKeyOnlyForDesktopAppError);
1364
+ }(NotAuthorizedError);
1365
+
1366
+ exports.NotAuthorized_ApiKeyOnlyForDesktopAppError = NotAuthorized_ApiKeyOnlyForDesktopAppError;
1367
+ errorClasses.NotAuthorized_ApiKeyOnlyForDesktopAppError = NotAuthorized_ApiKeyOnlyForDesktopAppError;
1368
+
1369
+ var NotAuthorized_ApiKeyOnlyForMobileAppError = /*#__PURE__*/function (_NotAuthorizedError4) {
1370
+ (0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForMobileAppError, _NotAuthorizedError4);
1371
+
1372
+ var _super65 = _createSuper(NotAuthorized_ApiKeyOnlyForMobileAppError);
1373
+
1374
+ function NotAuthorized_ApiKeyOnlyForMobileAppError(message, code) {
1375
+ var _this65;
1376
+
1377
+ (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForMobileAppError);
1378
+ _this65 = _super65.call(this, message, code);
1379
+ _this65.name = 'NotAuthorized_ApiKeyOnlyForMobileAppError';
1380
+ return _this65;
1381
+ }
1382
+
1383
+ return (0, _createClass2.default)(NotAuthorized_ApiKeyOnlyForMobileAppError);
1384
+ }(NotAuthorizedError);
1385
+
1386
+ exports.NotAuthorized_ApiKeyOnlyForMobileAppError = NotAuthorized_ApiKeyOnlyForMobileAppError;
1387
+ errorClasses.NotAuthorized_ApiKeyOnlyForMobileAppError = NotAuthorized_ApiKeyOnlyForMobileAppError;
1388
+
1389
+ var NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = /*#__PURE__*/function (_NotAuthorizedError5) {
1390
+ (0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForOfficeIntegrationError, _NotAuthorizedError5);
1391
+
1392
+ var _super66 = _createSuper(NotAuthorized_ApiKeyOnlyForOfficeIntegrationError);
1393
+
1394
+ function NotAuthorized_ApiKeyOnlyForOfficeIntegrationError(message, code) {
1395
+ var _this66;
1396
+
1397
+ (0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForOfficeIntegrationError);
1398
+ _this66 = _super66.call(this, message, code);
1399
+ _this66.name = 'NotAuthorized_ApiKeyOnlyForOfficeIntegrationError';
1400
+ return _this66;
1401
+ }
1402
+
1403
+ return (0, _createClass2.default)(NotAuthorized_ApiKeyOnlyForOfficeIntegrationError);
1404
+ }(NotAuthorizedError);
1405
+
1406
+ exports.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = NotAuthorized_ApiKeyOnlyForOfficeIntegrationError;
1407
+ errorClasses.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = NotAuthorized_ApiKeyOnlyForOfficeIntegrationError;
1408
+
1409
+ var NotAuthorized_BillingPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError6) {
1410
+ (0, _inherits2.default)(NotAuthorized_BillingPermissionRequiredError, _NotAuthorizedError6);
1411
+
1412
+ var _super67 = _createSuper(NotAuthorized_BillingPermissionRequiredError);
1413
+
1414
+ function NotAuthorized_BillingPermissionRequiredError(message, code) {
1415
+ var _this67;
1416
+
1417
+ (0, _classCallCheck2.default)(this, NotAuthorized_BillingPermissionRequiredError);
1418
+ _this67 = _super67.call(this, message, code);
1419
+ _this67.name = 'NotAuthorized_BillingPermissionRequiredError';
1420
+ return _this67;
1421
+ }
1422
+
1423
+ return (0, _createClass2.default)(NotAuthorized_BillingPermissionRequiredError);
1424
+ }(NotAuthorizedError);
1425
+
1426
+ exports.NotAuthorized_BillingPermissionRequiredError = NotAuthorized_BillingPermissionRequiredError;
1427
+ errorClasses.NotAuthorized_BillingPermissionRequiredError = NotAuthorized_BillingPermissionRequiredError;
1428
+
1429
+ var NotAuthorized_BundleMaximumUsesReachedError = /*#__PURE__*/function (_NotAuthorizedError7) {
1430
+ (0, _inherits2.default)(NotAuthorized_BundleMaximumUsesReachedError, _NotAuthorizedError7);
1431
+
1432
+ var _super68 = _createSuper(NotAuthorized_BundleMaximumUsesReachedError);
1433
+
1434
+ function NotAuthorized_BundleMaximumUsesReachedError(message, code) {
1435
+ var _this68;
1436
+
1437
+ (0, _classCallCheck2.default)(this, NotAuthorized_BundleMaximumUsesReachedError);
1438
+ _this68 = _super68.call(this, message, code);
1439
+ _this68.name = 'NotAuthorized_BundleMaximumUsesReachedError';
1440
+ return _this68;
1441
+ }
1442
+
1443
+ return (0, _createClass2.default)(NotAuthorized_BundleMaximumUsesReachedError);
1444
+ }(NotAuthorizedError);
1445
+
1446
+ exports.NotAuthorized_BundleMaximumUsesReachedError = NotAuthorized_BundleMaximumUsesReachedError;
1447
+ errorClasses.NotAuthorized_BundleMaximumUsesReachedError = NotAuthorized_BundleMaximumUsesReachedError;
1448
+
1449
+ var NotAuthorized_CannotLoginWhileUsingKeyError = /*#__PURE__*/function (_NotAuthorizedError8) {
1450
+ (0, _inherits2.default)(NotAuthorized_CannotLoginWhileUsingKeyError, _NotAuthorizedError8);
1451
+
1452
+ var _super69 = _createSuper(NotAuthorized_CannotLoginWhileUsingKeyError);
1453
+
1454
+ function NotAuthorized_CannotLoginWhileUsingKeyError(message, code) {
1455
+ var _this69;
1456
+
1457
+ (0, _classCallCheck2.default)(this, NotAuthorized_CannotLoginWhileUsingKeyError);
1458
+ _this69 = _super69.call(this, message, code);
1459
+ _this69.name = 'NotAuthorized_CannotLoginWhileUsingKeyError';
1460
+ return _this69;
1461
+ }
1462
+
1463
+ return (0, _createClass2.default)(NotAuthorized_CannotLoginWhileUsingKeyError);
1464
+ }(NotAuthorizedError);
1465
+
1466
+ exports.NotAuthorized_CannotLoginWhileUsingKeyError = NotAuthorized_CannotLoginWhileUsingKeyError;
1467
+ errorClasses.NotAuthorized_CannotLoginWhileUsingKeyError = NotAuthorized_CannotLoginWhileUsingKeyError;
1468
+
1469
+ var NotAuthorized_CantActForOtherUserError = /*#__PURE__*/function (_NotAuthorizedError9) {
1470
+ (0, _inherits2.default)(NotAuthorized_CantActForOtherUserError, _NotAuthorizedError9);
1471
+
1472
+ var _super70 = _createSuper(NotAuthorized_CantActForOtherUserError);
1473
+
1474
+ function NotAuthorized_CantActForOtherUserError(message, code) {
1475
+ var _this70;
1476
+
1477
+ (0, _classCallCheck2.default)(this, NotAuthorized_CantActForOtherUserError);
1478
+ _this70 = _super70.call(this, message, code);
1479
+ _this70.name = 'NotAuthorized_CantActForOtherUserError';
1480
+ return _this70;
1481
+ }
1482
+
1483
+ return (0, _createClass2.default)(NotAuthorized_CantActForOtherUserError);
1484
+ }(NotAuthorizedError);
1485
+
1486
+ exports.NotAuthorized_CantActForOtherUserError = NotAuthorized_CantActForOtherUserError;
1487
+ errorClasses.NotAuthorized_CantActForOtherUserError = NotAuthorized_CantActForOtherUserError;
1488
+
1489
+ var NotAuthorized_ContactAdminForPasswordChangeHelpError = /*#__PURE__*/function (_NotAuthorizedError10) {
1490
+ (0, _inherits2.default)(NotAuthorized_ContactAdminForPasswordChangeHelpError, _NotAuthorizedError10);
1491
+
1492
+ var _super71 = _createSuper(NotAuthorized_ContactAdminForPasswordChangeHelpError);
1493
+
1494
+ function NotAuthorized_ContactAdminForPasswordChangeHelpError(message, code) {
1495
+ var _this71;
1496
+
1497
+ (0, _classCallCheck2.default)(this, NotAuthorized_ContactAdminForPasswordChangeHelpError);
1498
+ _this71 = _super71.call(this, message, code);
1499
+ _this71.name = 'NotAuthorized_ContactAdminForPasswordChangeHelpError';
1500
+ return _this71;
1501
+ }
1502
+
1503
+ return (0, _createClass2.default)(NotAuthorized_ContactAdminForPasswordChangeHelpError);
1504
+ }(NotAuthorizedError);
1505
+
1506
+ exports.NotAuthorized_ContactAdminForPasswordChangeHelpError = NotAuthorized_ContactAdminForPasswordChangeHelpError;
1507
+ errorClasses.NotAuthorized_ContactAdminForPasswordChangeHelpError = NotAuthorized_ContactAdminForPasswordChangeHelpError;
1508
+
1509
+ var NotAuthorized_FolderAdminOrBillingPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError11) {
1510
+ (0, _inherits2.default)(NotAuthorized_FolderAdminOrBillingPermissionRequiredError, _NotAuthorizedError11);
1511
+
1512
+ var _super72 = _createSuper(NotAuthorized_FolderAdminOrBillingPermissionRequiredError);
1513
+
1514
+ function NotAuthorized_FolderAdminOrBillingPermissionRequiredError(message, code) {
1515
+ var _this72;
1516
+
1517
+ (0, _classCallCheck2.default)(this, NotAuthorized_FolderAdminOrBillingPermissionRequiredError);
1518
+ _this72 = _super72.call(this, message, code);
1519
+ _this72.name = 'NotAuthorized_FolderAdminOrBillingPermissionRequiredError';
1520
+ return _this72;
1521
+ }
1522
+
1523
+ return (0, _createClass2.default)(NotAuthorized_FolderAdminOrBillingPermissionRequiredError);
1524
+ }(NotAuthorizedError);
1525
+
1526
+ exports.NotAuthorized_FolderAdminOrBillingPermissionRequiredError = NotAuthorized_FolderAdminOrBillingPermissionRequiredError;
1527
+ errorClasses.NotAuthorized_FolderAdminOrBillingPermissionRequiredError = NotAuthorized_FolderAdminOrBillingPermissionRequiredError;
1528
+
1529
+ var NotAuthorized_FolderAdminPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError12) {
1530
+ (0, _inherits2.default)(NotAuthorized_FolderAdminPermissionRequiredError, _NotAuthorizedError12);
1531
+
1532
+ var _super73 = _createSuper(NotAuthorized_FolderAdminPermissionRequiredError);
1533
+
1534
+ function NotAuthorized_FolderAdminPermissionRequiredError(message, code) {
1535
+ var _this73;
1536
+
1537
+ (0, _classCallCheck2.default)(this, NotAuthorized_FolderAdminPermissionRequiredError);
1538
+ _this73 = _super73.call(this, message, code);
1539
+ _this73.name = 'NotAuthorized_FolderAdminPermissionRequiredError';
1540
+ return _this73;
1541
+ }
1542
+
1543
+ return (0, _createClass2.default)(NotAuthorized_FolderAdminPermissionRequiredError);
1544
+ }(NotAuthorizedError);
1545
+
1546
+ exports.NotAuthorized_FolderAdminPermissionRequiredError = NotAuthorized_FolderAdminPermissionRequiredError;
1547
+ errorClasses.NotAuthorized_FolderAdminPermissionRequiredError = NotAuthorized_FolderAdminPermissionRequiredError;
1548
+
1549
+ var NotAuthorized_FullPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError13) {
1550
+ (0, _inherits2.default)(NotAuthorized_FullPermissionRequiredError, _NotAuthorizedError13);
1551
+
1552
+ var _super74 = _createSuper(NotAuthorized_FullPermissionRequiredError);
1553
+
1554
+ function NotAuthorized_FullPermissionRequiredError(message, code) {
1555
+ var _this74;
1556
+
1557
+ (0, _classCallCheck2.default)(this, NotAuthorized_FullPermissionRequiredError);
1558
+ _this74 = _super74.call(this, message, code);
1559
+ _this74.name = 'NotAuthorized_FullPermissionRequiredError';
1560
+ return _this74;
1561
+ }
1562
+
1563
+ return (0, _createClass2.default)(NotAuthorized_FullPermissionRequiredError);
1564
+ }(NotAuthorizedError);
1565
+
1566
+ exports.NotAuthorized_FullPermissionRequiredError = NotAuthorized_FullPermissionRequiredError;
1567
+ errorClasses.NotAuthorized_FullPermissionRequiredError = NotAuthorized_FullPermissionRequiredError;
1568
+
1569
+ var NotAuthorized_HistoryPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError14) {
1570
+ (0, _inherits2.default)(NotAuthorized_HistoryPermissionRequiredError, _NotAuthorizedError14);
1571
+
1572
+ var _super75 = _createSuper(NotAuthorized_HistoryPermissionRequiredError);
1573
+
1574
+ function NotAuthorized_HistoryPermissionRequiredError(message, code) {
1575
+ var _this75;
1576
+
1577
+ (0, _classCallCheck2.default)(this, NotAuthorized_HistoryPermissionRequiredError);
1578
+ _this75 = _super75.call(this, message, code);
1579
+ _this75.name = 'NotAuthorized_HistoryPermissionRequiredError';
1580
+ return _this75;
1581
+ }
1582
+
1583
+ return (0, _createClass2.default)(NotAuthorized_HistoryPermissionRequiredError);
1584
+ }(NotAuthorizedError);
1585
+
1586
+ exports.NotAuthorized_HistoryPermissionRequiredError = NotAuthorized_HistoryPermissionRequiredError;
1587
+ errorClasses.NotAuthorized_HistoryPermissionRequiredError = NotAuthorized_HistoryPermissionRequiredError;
1588
+
1589
+ var NotAuthorized_InsufficientPermissionForParamsError = /*#__PURE__*/function (_NotAuthorizedError15) {
1590
+ (0, _inherits2.default)(NotAuthorized_InsufficientPermissionForParamsError, _NotAuthorizedError15);
1591
+
1592
+ var _super76 = _createSuper(NotAuthorized_InsufficientPermissionForParamsError);
1593
+
1594
+ function NotAuthorized_InsufficientPermissionForParamsError(message, code) {
1595
+ var _this76;
1596
+
1597
+ (0, _classCallCheck2.default)(this, NotAuthorized_InsufficientPermissionForParamsError);
1598
+ _this76 = _super76.call(this, message, code);
1599
+ _this76.name = 'NotAuthorized_InsufficientPermissionForParamsError';
1600
+ return _this76;
1601
+ }
1602
+
1603
+ return (0, _createClass2.default)(NotAuthorized_InsufficientPermissionForParamsError);
1604
+ }(NotAuthorizedError);
1605
+
1606
+ exports.NotAuthorized_InsufficientPermissionForParamsError = NotAuthorized_InsufficientPermissionForParamsError;
1607
+ errorClasses.NotAuthorized_InsufficientPermissionForParamsError = NotAuthorized_InsufficientPermissionForParamsError;
1608
+
1609
+ var NotAuthorized_MustAuthenticateWithApiKeyError = /*#__PURE__*/function (_NotAuthorizedError16) {
1610
+ (0, _inherits2.default)(NotAuthorized_MustAuthenticateWithApiKeyError, _NotAuthorizedError16);
1611
+
1612
+ var _super77 = _createSuper(NotAuthorized_MustAuthenticateWithApiKeyError);
1613
+
1614
+ function NotAuthorized_MustAuthenticateWithApiKeyError(message, code) {
1615
+ var _this77;
1616
+
1617
+ (0, _classCallCheck2.default)(this, NotAuthorized_MustAuthenticateWithApiKeyError);
1618
+ _this77 = _super77.call(this, message, code);
1619
+ _this77.name = 'NotAuthorized_MustAuthenticateWithApiKeyError';
1620
+ return _this77;
1621
+ }
1622
+
1623
+ return (0, _createClass2.default)(NotAuthorized_MustAuthenticateWithApiKeyError);
1624
+ }(NotAuthorizedError);
1625
+
1626
+ exports.NotAuthorized_MustAuthenticateWithApiKeyError = NotAuthorized_MustAuthenticateWithApiKeyError;
1627
+ errorClasses.NotAuthorized_MustAuthenticateWithApiKeyError = NotAuthorized_MustAuthenticateWithApiKeyError;
1628
+
1629
+ var NotAuthorized_NeedAdminPermissionForInboxError = /*#__PURE__*/function (_NotAuthorizedError17) {
1630
+ (0, _inherits2.default)(NotAuthorized_NeedAdminPermissionForInboxError, _NotAuthorizedError17);
1631
+
1632
+ var _super78 = _createSuper(NotAuthorized_NeedAdminPermissionForInboxError);
1633
+
1634
+ function NotAuthorized_NeedAdminPermissionForInboxError(message, code) {
1635
+ var _this78;
1636
+
1637
+ (0, _classCallCheck2.default)(this, NotAuthorized_NeedAdminPermissionForInboxError);
1638
+ _this78 = _super78.call(this, message, code);
1639
+ _this78.name = 'NotAuthorized_NeedAdminPermissionForInboxError';
1640
+ return _this78;
1641
+ }
1642
+
1643
+ return (0, _createClass2.default)(NotAuthorized_NeedAdminPermissionForInboxError);
1644
+ }(NotAuthorizedError);
1645
+
1646
+ exports.NotAuthorized_NeedAdminPermissionForInboxError = NotAuthorized_NeedAdminPermissionForInboxError;
1647
+ errorClasses.NotAuthorized_NeedAdminPermissionForInboxError = NotAuthorized_NeedAdminPermissionForInboxError;
1648
+
1649
+ var NotAuthorized_NonAdminsMustQueryByFolderOrPathError = /*#__PURE__*/function (_NotAuthorizedError18) {
1650
+ (0, _inherits2.default)(NotAuthorized_NonAdminsMustQueryByFolderOrPathError, _NotAuthorizedError18);
1651
+
1652
+ var _super79 = _createSuper(NotAuthorized_NonAdminsMustQueryByFolderOrPathError);
1653
+
1654
+ function NotAuthorized_NonAdminsMustQueryByFolderOrPathError(message, code) {
1655
+ var _this79;
1656
+
1657
+ (0, _classCallCheck2.default)(this, NotAuthorized_NonAdminsMustQueryByFolderOrPathError);
1658
+ _this79 = _super79.call(this, message, code);
1659
+ _this79.name = 'NotAuthorized_NonAdminsMustQueryByFolderOrPathError';
1660
+ return _this79;
1661
+ }
1662
+
1663
+ return (0, _createClass2.default)(NotAuthorized_NonAdminsMustQueryByFolderOrPathError);
1664
+ }(NotAuthorizedError);
1665
+
1666
+ exports.NotAuthorized_NonAdminsMustQueryByFolderOrPathError = NotAuthorized_NonAdminsMustQueryByFolderOrPathError;
1667
+ errorClasses.NotAuthorized_NonAdminsMustQueryByFolderOrPathError = NotAuthorized_NonAdminsMustQueryByFolderOrPathError;
1668
+
1669
+ var NotAuthorized_NotAllowedToCreateBundleError = /*#__PURE__*/function (_NotAuthorizedError19) {
1670
+ (0, _inherits2.default)(NotAuthorized_NotAllowedToCreateBundleError, _NotAuthorizedError19);
1671
+
1672
+ var _super80 = _createSuper(NotAuthorized_NotAllowedToCreateBundleError);
1673
+
1674
+ function NotAuthorized_NotAllowedToCreateBundleError(message, code) {
1675
+ var _this80;
1676
+
1677
+ (0, _classCallCheck2.default)(this, NotAuthorized_NotAllowedToCreateBundleError);
1678
+ _this80 = _super80.call(this, message, code);
1679
+ _this80.name = 'NotAuthorized_NotAllowedToCreateBundleError';
1680
+ return _this80;
1681
+ }
1682
+
1683
+ return (0, _createClass2.default)(NotAuthorized_NotAllowedToCreateBundleError);
1684
+ }(NotAuthorizedError);
1685
+
1686
+ exports.NotAuthorized_NotAllowedToCreateBundleError = NotAuthorized_NotAllowedToCreateBundleError;
1687
+ errorClasses.NotAuthorized_NotAllowedToCreateBundleError = NotAuthorized_NotAllowedToCreateBundleError;
1688
+
1689
+ var NotAuthorized_PasswordChangeNotRequiredError = /*#__PURE__*/function (_NotAuthorizedError20) {
1690
+ (0, _inherits2.default)(NotAuthorized_PasswordChangeNotRequiredError, _NotAuthorizedError20);
1691
+
1692
+ var _super81 = _createSuper(NotAuthorized_PasswordChangeNotRequiredError);
1693
+
1694
+ function NotAuthorized_PasswordChangeNotRequiredError(message, code) {
1695
+ var _this81;
1696
+
1697
+ (0, _classCallCheck2.default)(this, NotAuthorized_PasswordChangeNotRequiredError);
1698
+ _this81 = _super81.call(this, message, code);
1699
+ _this81.name = 'NotAuthorized_PasswordChangeNotRequiredError';
1700
+ return _this81;
1701
+ }
1702
+
1703
+ return (0, _createClass2.default)(NotAuthorized_PasswordChangeNotRequiredError);
1704
+ }(NotAuthorizedError);
1705
+
1706
+ exports.NotAuthorized_PasswordChangeNotRequiredError = NotAuthorized_PasswordChangeNotRequiredError;
1707
+ errorClasses.NotAuthorized_PasswordChangeNotRequiredError = NotAuthorized_PasswordChangeNotRequiredError;
1708
+
1709
+ var NotAuthorized_PasswordChangeRequiredError = /*#__PURE__*/function (_NotAuthorizedError21) {
1710
+ (0, _inherits2.default)(NotAuthorized_PasswordChangeRequiredError, _NotAuthorizedError21);
1711
+
1712
+ var _super82 = _createSuper(NotAuthorized_PasswordChangeRequiredError);
1713
+
1714
+ function NotAuthorized_PasswordChangeRequiredError(message, code) {
1715
+ var _this82;
1716
+
1717
+ (0, _classCallCheck2.default)(this, NotAuthorized_PasswordChangeRequiredError);
1718
+ _this82 = _super82.call(this, message, code);
1719
+ _this82.name = 'NotAuthorized_PasswordChangeRequiredError';
1720
+ return _this82;
1721
+ }
1722
+
1723
+ return (0, _createClass2.default)(NotAuthorized_PasswordChangeRequiredError);
1724
+ }(NotAuthorizedError);
1725
+
1726
+ exports.NotAuthorized_PasswordChangeRequiredError = NotAuthorized_PasswordChangeRequiredError;
1727
+ errorClasses.NotAuthorized_PasswordChangeRequiredError = NotAuthorized_PasswordChangeRequiredError;
1728
+
1729
+ var NotAuthorized_ReadOnlySessionError = /*#__PURE__*/function (_NotAuthorizedError22) {
1730
+ (0, _inherits2.default)(NotAuthorized_ReadOnlySessionError, _NotAuthorizedError22);
1731
+
1732
+ var _super83 = _createSuper(NotAuthorized_ReadOnlySessionError);
1733
+
1734
+ function NotAuthorized_ReadOnlySessionError(message, code) {
1735
+ var _this83;
1736
+
1737
+ (0, _classCallCheck2.default)(this, NotAuthorized_ReadOnlySessionError);
1738
+ _this83 = _super83.call(this, message, code);
1739
+ _this83.name = 'NotAuthorized_ReadOnlySessionError';
1740
+ return _this83;
1741
+ }
1742
+
1743
+ return (0, _createClass2.default)(NotAuthorized_ReadOnlySessionError);
1744
+ }(NotAuthorizedError);
1745
+
1746
+ exports.NotAuthorized_ReadOnlySessionError = NotAuthorized_ReadOnlySessionError;
1747
+ errorClasses.NotAuthorized_ReadOnlySessionError = NotAuthorized_ReadOnlySessionError;
1748
+
1749
+ var NotAuthorized_ReadPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError23) {
1750
+ (0, _inherits2.default)(NotAuthorized_ReadPermissionRequiredError, _NotAuthorizedError23);
1751
+
1752
+ var _super84 = _createSuper(NotAuthorized_ReadPermissionRequiredError);
1753
+
1754
+ function NotAuthorized_ReadPermissionRequiredError(message, code) {
1755
+ var _this84;
1756
+
1757
+ (0, _classCallCheck2.default)(this, NotAuthorized_ReadPermissionRequiredError);
1758
+ _this84 = _super84.call(this, message, code);
1759
+ _this84.name = 'NotAuthorized_ReadPermissionRequiredError';
1760
+ return _this84;
1761
+ }
1762
+
1763
+ return (0, _createClass2.default)(NotAuthorized_ReadPermissionRequiredError);
1764
+ }(NotAuthorizedError);
1765
+
1766
+ exports.NotAuthorized_ReadPermissionRequiredError = NotAuthorized_ReadPermissionRequiredError;
1767
+ errorClasses.NotAuthorized_ReadPermissionRequiredError = NotAuthorized_ReadPermissionRequiredError;
1768
+
1769
+ var NotAuthorized_ReauthenticationFailedError = /*#__PURE__*/function (_NotAuthorizedError24) {
1770
+ (0, _inherits2.default)(NotAuthorized_ReauthenticationFailedError, _NotAuthorizedError24);
1771
+
1772
+ var _super85 = _createSuper(NotAuthorized_ReauthenticationFailedError);
1773
+
1774
+ function NotAuthorized_ReauthenticationFailedError(message, code) {
1775
+ var _this85;
1776
+
1777
+ (0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationFailedError);
1778
+ _this85 = _super85.call(this, message, code);
1779
+ _this85.name = 'NotAuthorized_ReauthenticationFailedError';
1780
+ return _this85;
1781
+ }
1782
+
1783
+ return (0, _createClass2.default)(NotAuthorized_ReauthenticationFailedError);
1784
+ }(NotAuthorizedError);
1785
+
1786
+ exports.NotAuthorized_ReauthenticationFailedError = NotAuthorized_ReauthenticationFailedError;
1787
+ errorClasses.NotAuthorized_ReauthenticationFailedError = NotAuthorized_ReauthenticationFailedError;
1788
+
1789
+ var NotAuthorized_ReauthenticationFailedFinalError = /*#__PURE__*/function (_NotAuthorizedError25) {
1790
+ (0, _inherits2.default)(NotAuthorized_ReauthenticationFailedFinalError, _NotAuthorizedError25);
1791
+
1792
+ var _super86 = _createSuper(NotAuthorized_ReauthenticationFailedFinalError);
1793
+
1794
+ function NotAuthorized_ReauthenticationFailedFinalError(message, code) {
1795
+ var _this86;
1796
+
1797
+ (0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationFailedFinalError);
1798
+ _this86 = _super86.call(this, message, code);
1799
+ _this86.name = 'NotAuthorized_ReauthenticationFailedFinalError';
1800
+ return _this86;
1801
+ }
1802
+
1803
+ return (0, _createClass2.default)(NotAuthorized_ReauthenticationFailedFinalError);
1804
+ }(NotAuthorizedError);
1805
+
1806
+ exports.NotAuthorized_ReauthenticationFailedFinalError = NotAuthorized_ReauthenticationFailedFinalError;
1807
+ errorClasses.NotAuthorized_ReauthenticationFailedFinalError = NotAuthorized_ReauthenticationFailedFinalError;
1808
+
1809
+ var NotAuthorized_ReauthenticationNeededActionError = /*#__PURE__*/function (_NotAuthorizedError26) {
1810
+ (0, _inherits2.default)(NotAuthorized_ReauthenticationNeededActionError, _NotAuthorizedError26);
1811
+
1812
+ var _super87 = _createSuper(NotAuthorized_ReauthenticationNeededActionError);
1813
+
1814
+ function NotAuthorized_ReauthenticationNeededActionError(message, code) {
1815
+ var _this87;
1816
+
1817
+ (0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationNeededActionError);
1818
+ _this87 = _super87.call(this, message, code);
1819
+ _this87.name = 'NotAuthorized_ReauthenticationNeededActionError';
1820
+ return _this87;
1821
+ }
1822
+
1823
+ return (0, _createClass2.default)(NotAuthorized_ReauthenticationNeededActionError);
1824
+ }(NotAuthorizedError);
1825
+
1826
+ exports.NotAuthorized_ReauthenticationNeededActionError = NotAuthorized_ReauthenticationNeededActionError;
1827
+ errorClasses.NotAuthorized_ReauthenticationNeededActionError = NotAuthorized_ReauthenticationNeededActionError;
1828
+
1829
+ var NotAuthorized_SelfManagedRequiredError = /*#__PURE__*/function (_NotAuthorizedError27) {
1830
+ (0, _inherits2.default)(NotAuthorized_SelfManagedRequiredError, _NotAuthorizedError27);
1831
+
1832
+ var _super88 = _createSuper(NotAuthorized_SelfManagedRequiredError);
1833
+
1834
+ function NotAuthorized_SelfManagedRequiredError(message, code) {
1835
+ var _this88;
1836
+
1837
+ (0, _classCallCheck2.default)(this, NotAuthorized_SelfManagedRequiredError);
1838
+ _this88 = _super88.call(this, message, code);
1839
+ _this88.name = 'NotAuthorized_SelfManagedRequiredError';
1840
+ return _this88;
1841
+ }
1842
+
1843
+ return (0, _createClass2.default)(NotAuthorized_SelfManagedRequiredError);
1844
+ }(NotAuthorizedError);
1845
+
1846
+ exports.NotAuthorized_SelfManagedRequiredError = NotAuthorized_SelfManagedRequiredError;
1847
+ errorClasses.NotAuthorized_SelfManagedRequiredError = NotAuthorized_SelfManagedRequiredError;
1848
+
1849
+ var NotAuthorized_SiteAdminRequiredError = /*#__PURE__*/function (_NotAuthorizedError28) {
1850
+ (0, _inherits2.default)(NotAuthorized_SiteAdminRequiredError, _NotAuthorizedError28);
1851
+
1852
+ var _super89 = _createSuper(NotAuthorized_SiteAdminRequiredError);
1853
+
1854
+ function NotAuthorized_SiteAdminRequiredError(message, code) {
1855
+ var _this89;
1856
+
1857
+ (0, _classCallCheck2.default)(this, NotAuthorized_SiteAdminRequiredError);
1858
+ _this89 = _super89.call(this, message, code);
1859
+ _this89.name = 'NotAuthorized_SiteAdminRequiredError';
1860
+ return _this89;
1861
+ }
1862
+
1863
+ return (0, _createClass2.default)(NotAuthorized_SiteAdminRequiredError);
1864
+ }(NotAuthorizedError);
1865
+
1866
+ exports.NotAuthorized_SiteAdminRequiredError = NotAuthorized_SiteAdminRequiredError;
1867
+ errorClasses.NotAuthorized_SiteAdminRequiredError = NotAuthorized_SiteAdminRequiredError;
1868
+
1869
+ var NotAuthorized_SiteFilesAreImmutableError = /*#__PURE__*/function (_NotAuthorizedError29) {
1870
+ (0, _inherits2.default)(NotAuthorized_SiteFilesAreImmutableError, _NotAuthorizedError29);
1871
+
1872
+ var _super90 = _createSuper(NotAuthorized_SiteFilesAreImmutableError);
1873
+
1874
+ function NotAuthorized_SiteFilesAreImmutableError(message, code) {
1875
+ var _this90;
1876
+
1877
+ (0, _classCallCheck2.default)(this, NotAuthorized_SiteFilesAreImmutableError);
1878
+ _this90 = _super90.call(this, message, code);
1879
+ _this90.name = 'NotAuthorized_SiteFilesAreImmutableError';
1880
+ return _this90;
1881
+ }
1882
+
1883
+ return (0, _createClass2.default)(NotAuthorized_SiteFilesAreImmutableError);
1884
+ }(NotAuthorizedError);
1885
+
1886
+ exports.NotAuthorized_SiteFilesAreImmutableError = NotAuthorized_SiteFilesAreImmutableError;
1887
+ errorClasses.NotAuthorized_SiteFilesAreImmutableError = NotAuthorized_SiteFilesAreImmutableError;
1888
+
1889
+ var NotAuthorized_TwoFactorAuthenticationRequiredError = /*#__PURE__*/function (_NotAuthorizedError30) {
1890
+ (0, _inherits2.default)(NotAuthorized_TwoFactorAuthenticationRequiredError, _NotAuthorizedError30);
1891
+
1892
+ var _super91 = _createSuper(NotAuthorized_TwoFactorAuthenticationRequiredError);
1893
+
1894
+ function NotAuthorized_TwoFactorAuthenticationRequiredError(message, code) {
1895
+ var _this91;
1896
+
1897
+ (0, _classCallCheck2.default)(this, NotAuthorized_TwoFactorAuthenticationRequiredError);
1898
+ _this91 = _super91.call(this, message, code);
1899
+ _this91.name = 'NotAuthorized_TwoFactorAuthenticationRequiredError';
1900
+ return _this91;
1901
+ }
1902
+
1903
+ return (0, _createClass2.default)(NotAuthorized_TwoFactorAuthenticationRequiredError);
1904
+ }(NotAuthorizedError);
1905
+
1906
+ exports.NotAuthorized_TwoFactorAuthenticationRequiredError = NotAuthorized_TwoFactorAuthenticationRequiredError;
1907
+ errorClasses.NotAuthorized_TwoFactorAuthenticationRequiredError = NotAuthorized_TwoFactorAuthenticationRequiredError;
1908
+
1909
+ var NotAuthorized_UserIdWithoutSiteAdminError = /*#__PURE__*/function (_NotAuthorizedError31) {
1910
+ (0, _inherits2.default)(NotAuthorized_UserIdWithoutSiteAdminError, _NotAuthorizedError31);
1911
+
1912
+ var _super92 = _createSuper(NotAuthorized_UserIdWithoutSiteAdminError);
1913
+
1914
+ function NotAuthorized_UserIdWithoutSiteAdminError(message, code) {
1915
+ var _this92;
1916
+
1917
+ (0, _classCallCheck2.default)(this, NotAuthorized_UserIdWithoutSiteAdminError);
1918
+ _this92 = _super92.call(this, message, code);
1919
+ _this92.name = 'NotAuthorized_UserIdWithoutSiteAdminError';
1920
+ return _this92;
1921
+ }
1922
+
1923
+ return (0, _createClass2.default)(NotAuthorized_UserIdWithoutSiteAdminError);
1924
+ }(NotAuthorizedError);
1925
+
1926
+ exports.NotAuthorized_UserIdWithoutSiteAdminError = NotAuthorized_UserIdWithoutSiteAdminError;
1927
+ errorClasses.NotAuthorized_UserIdWithoutSiteAdminError = NotAuthorized_UserIdWithoutSiteAdminError;
1928
+
1929
+ var NotAuthorized_WritePermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError32) {
1930
+ (0, _inherits2.default)(NotAuthorized_WritePermissionRequiredError, _NotAuthorizedError32);
1931
+
1932
+ var _super93 = _createSuper(NotAuthorized_WritePermissionRequiredError);
1933
+
1934
+ function NotAuthorized_WritePermissionRequiredError(message, code) {
1935
+ var _this93;
1936
+
1937
+ (0, _classCallCheck2.default)(this, NotAuthorized_WritePermissionRequiredError);
1938
+ _this93 = _super93.call(this, message, code);
1939
+ _this93.name = 'NotAuthorized_WritePermissionRequiredError';
1940
+ return _this93;
1941
+ }
1942
+
1943
+ return (0, _createClass2.default)(NotAuthorized_WritePermissionRequiredError);
1944
+ }(NotAuthorizedError);
1945
+
1946
+ exports.NotAuthorized_WritePermissionRequiredError = NotAuthorized_WritePermissionRequiredError;
1947
+ errorClasses.NotAuthorized_WritePermissionRequiredError = NotAuthorized_WritePermissionRequiredError;
1948
+
1949
+ var NotAuthorized_ZipDownloadIpMismatchError = /*#__PURE__*/function (_NotAuthorizedError33) {
1950
+ (0, _inherits2.default)(NotAuthorized_ZipDownloadIpMismatchError, _NotAuthorizedError33);
1951
+
1952
+ var _super94 = _createSuper(NotAuthorized_ZipDownloadIpMismatchError);
1953
+
1954
+ function NotAuthorized_ZipDownloadIpMismatchError(message, code) {
1955
+ var _this94;
1956
+
1957
+ (0, _classCallCheck2.default)(this, NotAuthorized_ZipDownloadIpMismatchError);
1958
+ _this94 = _super94.call(this, message, code);
1959
+ _this94.name = 'NotAuthorized_ZipDownloadIpMismatchError';
1960
+ return _this94;
1961
+ }
1962
+
1963
+ return (0, _createClass2.default)(NotAuthorized_ZipDownloadIpMismatchError);
1964
+ }(NotAuthorizedError);
1965
+
1966
+ exports.NotAuthorized_ZipDownloadIpMismatchError = NotAuthorized_ZipDownloadIpMismatchError;
1967
+ errorClasses.NotAuthorized_ZipDownloadIpMismatchError = NotAuthorized_ZipDownloadIpMismatchError;
1968
+
1969
+ var NotFound_ApiKeyNotFoundError = /*#__PURE__*/function (_NotFoundError) {
1970
+ (0, _inherits2.default)(NotFound_ApiKeyNotFoundError, _NotFoundError);
1971
+
1972
+ var _super95 = _createSuper(NotFound_ApiKeyNotFoundError);
1973
+
1974
+ function NotFound_ApiKeyNotFoundError(message, code) {
1975
+ var _this95;
1976
+
1977
+ (0, _classCallCheck2.default)(this, NotFound_ApiKeyNotFoundError);
1978
+ _this95 = _super95.call(this, message, code);
1979
+ _this95.name = 'NotFound_ApiKeyNotFoundError';
1980
+ return _this95;
1981
+ }
1982
+
1983
+ return (0, _createClass2.default)(NotFound_ApiKeyNotFoundError);
1984
+ }(NotFoundError);
1985
+
1986
+ exports.NotFound_ApiKeyNotFoundError = NotFound_ApiKeyNotFoundError;
1987
+ errorClasses.NotFound_ApiKeyNotFoundError = NotFound_ApiKeyNotFoundError;
1988
+
1989
+ var NotFound_BundlePathNotFoundError = /*#__PURE__*/function (_NotFoundError2) {
1990
+ (0, _inherits2.default)(NotFound_BundlePathNotFoundError, _NotFoundError2);
1991
+
1992
+ var _super96 = _createSuper(NotFound_BundlePathNotFoundError);
1993
+
1994
+ function NotFound_BundlePathNotFoundError(message, code) {
1995
+ var _this96;
1996
+
1997
+ (0, _classCallCheck2.default)(this, NotFound_BundlePathNotFoundError);
1998
+ _this96 = _super96.call(this, message, code);
1999
+ _this96.name = 'NotFound_BundlePathNotFoundError';
2000
+ return _this96;
2001
+ }
2002
+
2003
+ return (0, _createClass2.default)(NotFound_BundlePathNotFoundError);
2004
+ }(NotFoundError);
2005
+
2006
+ exports.NotFound_BundlePathNotFoundError = NotFound_BundlePathNotFoundError;
2007
+ errorClasses.NotFound_BundlePathNotFoundError = NotFound_BundlePathNotFoundError;
2008
+
2009
+ var NotFound_CodeNotFoundError = /*#__PURE__*/function (_NotFoundError3) {
2010
+ (0, _inherits2.default)(NotFound_CodeNotFoundError, _NotFoundError3);
2011
+
2012
+ var _super97 = _createSuper(NotFound_CodeNotFoundError);
2013
+
2014
+ function NotFound_CodeNotFoundError(message, code) {
2015
+ var _this97;
2016
+
2017
+ (0, _classCallCheck2.default)(this, NotFound_CodeNotFoundError);
2018
+ _this97 = _super97.call(this, message, code);
2019
+ _this97.name = 'NotFound_CodeNotFoundError';
2020
+ return _this97;
2021
+ }
2022
+
2023
+ return (0, _createClass2.default)(NotFound_CodeNotFoundError);
2024
+ }(NotFoundError);
2025
+
2026
+ exports.NotFound_CodeNotFoundError = NotFound_CodeNotFoundError;
2027
+ errorClasses.NotFound_CodeNotFoundError = NotFound_CodeNotFoundError;
2028
+
2029
+ var NotFound_FileNotFoundError = /*#__PURE__*/function (_NotFoundError4) {
2030
+ (0, _inherits2.default)(NotFound_FileNotFoundError, _NotFoundError4);
2031
+
2032
+ var _super98 = _createSuper(NotFound_FileNotFoundError);
2033
+
2034
+ function NotFound_FileNotFoundError(message, code) {
2035
+ var _this98;
2036
+
2037
+ (0, _classCallCheck2.default)(this, NotFound_FileNotFoundError);
2038
+ _this98 = _super98.call(this, message, code);
2039
+ _this98.name = 'NotFound_FileNotFoundError';
2040
+ return _this98;
2041
+ }
2042
+
2043
+ return (0, _createClass2.default)(NotFound_FileNotFoundError);
2044
+ }(NotFoundError);
2045
+
2046
+ exports.NotFound_FileNotFoundError = NotFound_FileNotFoundError;
2047
+ errorClasses.NotFound_FileNotFoundError = NotFound_FileNotFoundError;
2048
+
2049
+ var NotFound_FileUploadNotFoundError = /*#__PURE__*/function (_NotFoundError5) {
2050
+ (0, _inherits2.default)(NotFound_FileUploadNotFoundError, _NotFoundError5);
2051
+
2052
+ var _super99 = _createSuper(NotFound_FileUploadNotFoundError);
2053
+
2054
+ function NotFound_FileUploadNotFoundError(message, code) {
2055
+ var _this99;
2056
+
2057
+ (0, _classCallCheck2.default)(this, NotFound_FileUploadNotFoundError);
2058
+ _this99 = _super99.call(this, message, code);
2059
+ _this99.name = 'NotFound_FileUploadNotFoundError';
2060
+ return _this99;
2061
+ }
2062
+
2063
+ return (0, _createClass2.default)(NotFound_FileUploadNotFoundError);
2064
+ }(NotFoundError);
2065
+
2066
+ exports.NotFound_FileUploadNotFoundError = NotFound_FileUploadNotFoundError;
2067
+ errorClasses.NotFound_FileUploadNotFoundError = NotFound_FileUploadNotFoundError;
2068
+
2069
+ var NotFound_FolderNotFoundError = /*#__PURE__*/function (_NotFoundError6) {
2070
+ (0, _inherits2.default)(NotFound_FolderNotFoundError, _NotFoundError6);
2071
+
2072
+ var _super100 = _createSuper(NotFound_FolderNotFoundError);
2073
+
2074
+ function NotFound_FolderNotFoundError(message, code) {
2075
+ var _this100;
2076
+
2077
+ (0, _classCallCheck2.default)(this, NotFound_FolderNotFoundError);
2078
+ _this100 = _super100.call(this, message, code);
2079
+ _this100.name = 'NotFound_FolderNotFoundError';
2080
+ return _this100;
2081
+ }
2082
+
2083
+ return (0, _createClass2.default)(NotFound_FolderNotFoundError);
2084
+ }(NotFoundError);
2085
+
2086
+ exports.NotFound_FolderNotFoundError = NotFound_FolderNotFoundError;
2087
+ errorClasses.NotFound_FolderNotFoundError = NotFound_FolderNotFoundError;
2088
+
2089
+ var NotFound_GroupNotFoundError = /*#__PURE__*/function (_NotFoundError7) {
2090
+ (0, _inherits2.default)(NotFound_GroupNotFoundError, _NotFoundError7);
2091
+
2092
+ var _super101 = _createSuper(NotFound_GroupNotFoundError);
2093
+
2094
+ function NotFound_GroupNotFoundError(message, code) {
2095
+ var _this101;
2096
+
2097
+ (0, _classCallCheck2.default)(this, NotFound_GroupNotFoundError);
2098
+ _this101 = _super101.call(this, message, code);
2099
+ _this101.name = 'NotFound_GroupNotFoundError';
2100
+ return _this101;
2101
+ }
2102
+
2103
+ return (0, _createClass2.default)(NotFound_GroupNotFoundError);
2104
+ }(NotFoundError);
2105
+
2106
+ exports.NotFound_GroupNotFoundError = NotFound_GroupNotFoundError;
2107
+ errorClasses.NotFound_GroupNotFoundError = NotFound_GroupNotFoundError;
2108
+
2109
+ var NotFound_InboxNotFoundError = /*#__PURE__*/function (_NotFoundError8) {
2110
+ (0, _inherits2.default)(NotFound_InboxNotFoundError, _NotFoundError8);
2111
+
2112
+ var _super102 = _createSuper(NotFound_InboxNotFoundError);
2113
+
2114
+ function NotFound_InboxNotFoundError(message, code) {
2115
+ var _this102;
2116
+
2117
+ (0, _classCallCheck2.default)(this, NotFound_InboxNotFoundError);
2118
+ _this102 = _super102.call(this, message, code);
2119
+ _this102.name = 'NotFound_InboxNotFoundError';
2120
+ return _this102;
2121
+ }
2122
+
2123
+ return (0, _createClass2.default)(NotFound_InboxNotFoundError);
2124
+ }(NotFoundError);
2125
+
2126
+ exports.NotFound_InboxNotFoundError = NotFound_InboxNotFoundError;
2127
+ errorClasses.NotFound_InboxNotFoundError = NotFound_InboxNotFoundError;
2128
+
2129
+ var NotFound_NestedNotFoundError = /*#__PURE__*/function (_NotFoundError9) {
2130
+ (0, _inherits2.default)(NotFound_NestedNotFoundError, _NotFoundError9);
2131
+
2132
+ var _super103 = _createSuper(NotFound_NestedNotFoundError);
2133
+
2134
+ function NotFound_NestedNotFoundError(message, code) {
2135
+ var _this103;
2136
+
2137
+ (0, _classCallCheck2.default)(this, NotFound_NestedNotFoundError);
2138
+ _this103 = _super103.call(this, message, code);
2139
+ _this103.name = 'NotFound_NestedNotFoundError';
2140
+ return _this103;
2141
+ }
2142
+
2143
+ return (0, _createClass2.default)(NotFound_NestedNotFoundError);
2144
+ }(NotFoundError);
2145
+
2146
+ exports.NotFound_NestedNotFoundError = NotFound_NestedNotFoundError;
2147
+ errorClasses.NotFound_NestedNotFoundError = NotFound_NestedNotFoundError;
2148
+
2149
+ var NotFound_PlanNotFoundError = /*#__PURE__*/function (_NotFoundError10) {
2150
+ (0, _inherits2.default)(NotFound_PlanNotFoundError, _NotFoundError10);
2151
+
2152
+ var _super104 = _createSuper(NotFound_PlanNotFoundError);
2153
+
2154
+ function NotFound_PlanNotFoundError(message, code) {
2155
+ var _this104;
2156
+
2157
+ (0, _classCallCheck2.default)(this, NotFound_PlanNotFoundError);
2158
+ _this104 = _super104.call(this, message, code);
2159
+ _this104.name = 'NotFound_PlanNotFoundError';
2160
+ return _this104;
2161
+ }
2162
+
2163
+ return (0, _createClass2.default)(NotFound_PlanNotFoundError);
2164
+ }(NotFoundError);
2165
+
2166
+ exports.NotFound_PlanNotFoundError = NotFound_PlanNotFoundError;
2167
+ errorClasses.NotFound_PlanNotFoundError = NotFound_PlanNotFoundError;
2168
+
2169
+ var NotFound_SiteNotFoundError = /*#__PURE__*/function (_NotFoundError11) {
2170
+ (0, _inherits2.default)(NotFound_SiteNotFoundError, _NotFoundError11);
2171
+
2172
+ var _super105 = _createSuper(NotFound_SiteNotFoundError);
2173
+
2174
+ function NotFound_SiteNotFoundError(message, code) {
2175
+ var _this105;
2176
+
2177
+ (0, _classCallCheck2.default)(this, NotFound_SiteNotFoundError);
2178
+ _this105 = _super105.call(this, message, code);
2179
+ _this105.name = 'NotFound_SiteNotFoundError';
2180
+ return _this105;
2181
+ }
2182
+
2183
+ return (0, _createClass2.default)(NotFound_SiteNotFoundError);
2184
+ }(NotFoundError);
2185
+
2186
+ exports.NotFound_SiteNotFoundError = NotFound_SiteNotFoundError;
2187
+ errorClasses.NotFound_SiteNotFoundError = NotFound_SiteNotFoundError;
2188
+
2189
+ var NotFound_UserNotFoundError = /*#__PURE__*/function (_NotFoundError12) {
2190
+ (0, _inherits2.default)(NotFound_UserNotFoundError, _NotFoundError12);
2191
+
2192
+ var _super106 = _createSuper(NotFound_UserNotFoundError);
2193
+
2194
+ function NotFound_UserNotFoundError(message, code) {
2195
+ var _this106;
2196
+
2197
+ (0, _classCallCheck2.default)(this, NotFound_UserNotFoundError);
2198
+ _this106 = _super106.call(this, message, code);
2199
+ _this106.name = 'NotFound_UserNotFoundError';
2200
+ return _this106;
2201
+ }
2202
+
2203
+ return (0, _createClass2.default)(NotFound_UserNotFoundError);
2204
+ }(NotFoundError);
2205
+
2206
+ exports.NotFound_UserNotFoundError = NotFound_UserNotFoundError;
2207
+ errorClasses.NotFound_UserNotFoundError = NotFound_UserNotFoundError;
2208
+
2209
+ var ProcessingFailure_BundleOnlyAllowsPreviewsError = /*#__PURE__*/function (_ProcessingFailureErr) {
2210
+ (0, _inherits2.default)(ProcessingFailure_BundleOnlyAllowsPreviewsError, _ProcessingFailureErr);
2211
+
2212
+ var _super107 = _createSuper(ProcessingFailure_BundleOnlyAllowsPreviewsError);
2213
+
2214
+ function ProcessingFailure_BundleOnlyAllowsPreviewsError(message, code) {
2215
+ var _this107;
2216
+
2217
+ (0, _classCallCheck2.default)(this, ProcessingFailure_BundleOnlyAllowsPreviewsError);
2218
+ _this107 = _super107.call(this, message, code);
2219
+ _this107.name = 'ProcessingFailure_BundleOnlyAllowsPreviewsError';
2220
+ return _this107;
2221
+ }
2222
+
2223
+ return (0, _createClass2.default)(ProcessingFailure_BundleOnlyAllowsPreviewsError);
2224
+ }(ProcessingFailureError);
2225
+
2226
+ exports.ProcessingFailure_BundleOnlyAllowsPreviewsError = ProcessingFailure_BundleOnlyAllowsPreviewsError;
2227
+ errorClasses.ProcessingFailure_BundleOnlyAllowsPreviewsError = ProcessingFailure_BundleOnlyAllowsPreviewsError;
2228
+
2229
+ var ProcessingFailure_CouldNotCreateParentError = /*#__PURE__*/function (_ProcessingFailureErr2) {
2230
+ (0, _inherits2.default)(ProcessingFailure_CouldNotCreateParentError, _ProcessingFailureErr2);
2231
+
2232
+ var _super108 = _createSuper(ProcessingFailure_CouldNotCreateParentError);
2233
+
2234
+ function ProcessingFailure_CouldNotCreateParentError(message, code) {
2235
+ var _this108;
2236
+
2237
+ (0, _classCallCheck2.default)(this, ProcessingFailure_CouldNotCreateParentError);
2238
+ _this108 = _super108.call(this, message, code);
2239
+ _this108.name = 'ProcessingFailure_CouldNotCreateParentError';
2240
+ return _this108;
2241
+ }
2242
+
2243
+ return (0, _createClass2.default)(ProcessingFailure_CouldNotCreateParentError);
2244
+ }(ProcessingFailureError);
2245
+
2246
+ exports.ProcessingFailure_CouldNotCreateParentError = ProcessingFailure_CouldNotCreateParentError;
2247
+ errorClasses.ProcessingFailure_CouldNotCreateParentError = ProcessingFailure_CouldNotCreateParentError;
2248
+
2249
+ var ProcessingFailure_DestinationExistsError = /*#__PURE__*/function (_ProcessingFailureErr3) {
2250
+ (0, _inherits2.default)(ProcessingFailure_DestinationExistsError, _ProcessingFailureErr3);
2251
+
2252
+ var _super109 = _createSuper(ProcessingFailure_DestinationExistsError);
2253
+
2254
+ function ProcessingFailure_DestinationExistsError(message, code) {
2255
+ var _this109;
2256
+
2257
+ (0, _classCallCheck2.default)(this, ProcessingFailure_DestinationExistsError);
2258
+ _this109 = _super109.call(this, message, code);
2259
+ _this109.name = 'ProcessingFailure_DestinationExistsError';
2260
+ return _this109;
2261
+ }
2262
+
2263
+ return (0, _createClass2.default)(ProcessingFailure_DestinationExistsError);
2264
+ }(ProcessingFailureError);
2265
+
2266
+ exports.ProcessingFailure_DestinationExistsError = ProcessingFailure_DestinationExistsError;
2267
+ errorClasses.ProcessingFailure_DestinationExistsError = ProcessingFailure_DestinationExistsError;
2268
+
2269
+ var ProcessingFailure_DestinationFolderLimitedError = /*#__PURE__*/function (_ProcessingFailureErr4) {
2270
+ (0, _inherits2.default)(ProcessingFailure_DestinationFolderLimitedError, _ProcessingFailureErr4);
2271
+
2272
+ var _super110 = _createSuper(ProcessingFailure_DestinationFolderLimitedError);
2273
+
2274
+ function ProcessingFailure_DestinationFolderLimitedError(message, code) {
2275
+ var _this110;
2276
+
2277
+ (0, _classCallCheck2.default)(this, ProcessingFailure_DestinationFolderLimitedError);
2278
+ _this110 = _super110.call(this, message, code);
2279
+ _this110.name = 'ProcessingFailure_DestinationFolderLimitedError';
2280
+ return _this110;
2281
+ }
2282
+
2283
+ return (0, _createClass2.default)(ProcessingFailure_DestinationFolderLimitedError);
2284
+ }(ProcessingFailureError);
2285
+
2286
+ exports.ProcessingFailure_DestinationFolderLimitedError = ProcessingFailure_DestinationFolderLimitedError;
2287
+ errorClasses.ProcessingFailure_DestinationFolderLimitedError = ProcessingFailure_DestinationFolderLimitedError;
2288
+
2289
+ var ProcessingFailure_DestinationParentConflictError = /*#__PURE__*/function (_ProcessingFailureErr5) {
2290
+ (0, _inherits2.default)(ProcessingFailure_DestinationParentConflictError, _ProcessingFailureErr5);
2291
+
2292
+ var _super111 = _createSuper(ProcessingFailure_DestinationParentConflictError);
2293
+
2294
+ function ProcessingFailure_DestinationParentConflictError(message, code) {
2295
+ var _this111;
2296
+
2297
+ (0, _classCallCheck2.default)(this, ProcessingFailure_DestinationParentConflictError);
2298
+ _this111 = _super111.call(this, message, code);
2299
+ _this111.name = 'ProcessingFailure_DestinationParentConflictError';
2300
+ return _this111;
2301
+ }
2302
+
2303
+ return (0, _createClass2.default)(ProcessingFailure_DestinationParentConflictError);
2304
+ }(ProcessingFailureError);
2305
+
2306
+ exports.ProcessingFailure_DestinationParentConflictError = ProcessingFailure_DestinationParentConflictError;
2307
+ errorClasses.ProcessingFailure_DestinationParentConflictError = ProcessingFailure_DestinationParentConflictError;
2308
+
2309
+ var ProcessingFailure_DestinationParentDoesNotExistError = /*#__PURE__*/function (_ProcessingFailureErr6) {
2310
+ (0, _inherits2.default)(ProcessingFailure_DestinationParentDoesNotExistError, _ProcessingFailureErr6);
2311
+
2312
+ var _super112 = _createSuper(ProcessingFailure_DestinationParentDoesNotExistError);
2313
+
2314
+ function ProcessingFailure_DestinationParentDoesNotExistError(message, code) {
2315
+ var _this112;
2316
+
2317
+ (0, _classCallCheck2.default)(this, ProcessingFailure_DestinationParentDoesNotExistError);
2318
+ _this112 = _super112.call(this, message, code);
2319
+ _this112.name = 'ProcessingFailure_DestinationParentDoesNotExistError';
2320
+ return _this112;
2321
+ }
2322
+
2323
+ return (0, _createClass2.default)(ProcessingFailure_DestinationParentDoesNotExistError);
2324
+ }(ProcessingFailureError);
2325
+
2326
+ exports.ProcessingFailure_DestinationParentDoesNotExistError = ProcessingFailure_DestinationParentDoesNotExistError;
2327
+ errorClasses.ProcessingFailure_DestinationParentDoesNotExistError = ProcessingFailure_DestinationParentDoesNotExistError;
2328
+
2329
+ var ProcessingFailure_ExpiredPrivateKeyError = /*#__PURE__*/function (_ProcessingFailureErr7) {
2330
+ (0, _inherits2.default)(ProcessingFailure_ExpiredPrivateKeyError, _ProcessingFailureErr7);
2331
+
2332
+ var _super113 = _createSuper(ProcessingFailure_ExpiredPrivateKeyError);
2333
+
2334
+ function ProcessingFailure_ExpiredPrivateKeyError(message, code) {
2335
+ var _this113;
2336
+
2337
+ (0, _classCallCheck2.default)(this, ProcessingFailure_ExpiredPrivateKeyError);
2338
+ _this113 = _super113.call(this, message, code);
2339
+ _this113.name = 'ProcessingFailure_ExpiredPrivateKeyError';
2340
+ return _this113;
2341
+ }
2342
+
2343
+ return (0, _createClass2.default)(ProcessingFailure_ExpiredPrivateKeyError);
2344
+ }(ProcessingFailureError);
2345
+
2346
+ exports.ProcessingFailure_ExpiredPrivateKeyError = ProcessingFailure_ExpiredPrivateKeyError;
2347
+ errorClasses.ProcessingFailure_ExpiredPrivateKeyError = ProcessingFailure_ExpiredPrivateKeyError;
2348
+
2349
+ var ProcessingFailure_ExpiredPublicKeyError = /*#__PURE__*/function (_ProcessingFailureErr8) {
2350
+ (0, _inherits2.default)(ProcessingFailure_ExpiredPublicKeyError, _ProcessingFailureErr8);
2351
+
2352
+ var _super114 = _createSuper(ProcessingFailure_ExpiredPublicKeyError);
2353
+
2354
+ function ProcessingFailure_ExpiredPublicKeyError(message, code) {
2355
+ var _this114;
2356
+
2357
+ (0, _classCallCheck2.default)(this, ProcessingFailure_ExpiredPublicKeyError);
2358
+ _this114 = _super114.call(this, message, code);
2359
+ _this114.name = 'ProcessingFailure_ExpiredPublicKeyError';
2360
+ return _this114;
2361
+ }
2362
+
2363
+ return (0, _createClass2.default)(ProcessingFailure_ExpiredPublicKeyError);
2364
+ }(ProcessingFailureError);
2365
+
2366
+ exports.ProcessingFailure_ExpiredPublicKeyError = ProcessingFailure_ExpiredPublicKeyError;
2367
+ errorClasses.ProcessingFailure_ExpiredPublicKeyError = ProcessingFailure_ExpiredPublicKeyError;
2368
+
2369
+ var ProcessingFailure_ExportFailureError = /*#__PURE__*/function (_ProcessingFailureErr9) {
2370
+ (0, _inherits2.default)(ProcessingFailure_ExportFailureError, _ProcessingFailureErr9);
2371
+
2372
+ var _super115 = _createSuper(ProcessingFailure_ExportFailureError);
2373
+
2374
+ function ProcessingFailure_ExportFailureError(message, code) {
2375
+ var _this115;
2376
+
2377
+ (0, _classCallCheck2.default)(this, ProcessingFailure_ExportFailureError);
2378
+ _this115 = _super115.call(this, message, code);
2379
+ _this115.name = 'ProcessingFailure_ExportFailureError';
2380
+ return _this115;
2381
+ }
2382
+
2383
+ return (0, _createClass2.default)(ProcessingFailure_ExportFailureError);
2384
+ }(ProcessingFailureError);
2385
+
2386
+ exports.ProcessingFailure_ExportFailureError = ProcessingFailure_ExportFailureError;
2387
+ errorClasses.ProcessingFailure_ExportFailureError = ProcessingFailure_ExportFailureError;
2388
+
2389
+ var ProcessingFailure_ExportNotReadyError = /*#__PURE__*/function (_ProcessingFailureErr10) {
2390
+ (0, _inherits2.default)(ProcessingFailure_ExportNotReadyError, _ProcessingFailureErr10);
2391
+
2392
+ var _super116 = _createSuper(ProcessingFailure_ExportNotReadyError);
2393
+
2394
+ function ProcessingFailure_ExportNotReadyError(message, code) {
2395
+ var _this116;
2396
+
2397
+ (0, _classCallCheck2.default)(this, ProcessingFailure_ExportNotReadyError);
2398
+ _this116 = _super116.call(this, message, code);
2399
+ _this116.name = 'ProcessingFailure_ExportNotReadyError';
2400
+ return _this116;
2401
+ }
2402
+
2403
+ return (0, _createClass2.default)(ProcessingFailure_ExportNotReadyError);
2404
+ }(ProcessingFailureError);
2405
+
2406
+ exports.ProcessingFailure_ExportNotReadyError = ProcessingFailure_ExportNotReadyError;
2407
+ errorClasses.ProcessingFailure_ExportNotReadyError = ProcessingFailure_ExportNotReadyError;
2408
+
2409
+ var ProcessingFailure_FailedToChangePasswordError = /*#__PURE__*/function (_ProcessingFailureErr11) {
2410
+ (0, _inherits2.default)(ProcessingFailure_FailedToChangePasswordError, _ProcessingFailureErr11);
2411
+
2412
+ var _super117 = _createSuper(ProcessingFailure_FailedToChangePasswordError);
2413
+
2414
+ function ProcessingFailure_FailedToChangePasswordError(message, code) {
2415
+ var _this117;
2416
+
2417
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FailedToChangePasswordError);
2418
+ _this117 = _super117.call(this, message, code);
2419
+ _this117.name = 'ProcessingFailure_FailedToChangePasswordError';
2420
+ return _this117;
2421
+ }
2422
+
2423
+ return (0, _createClass2.default)(ProcessingFailure_FailedToChangePasswordError);
2424
+ }(ProcessingFailureError);
2425
+
2426
+ exports.ProcessingFailure_FailedToChangePasswordError = ProcessingFailure_FailedToChangePasswordError;
2427
+ errorClasses.ProcessingFailure_FailedToChangePasswordError = ProcessingFailure_FailedToChangePasswordError;
2428
+
2429
+ var ProcessingFailure_FileLockedError = /*#__PURE__*/function (_ProcessingFailureErr12) {
2430
+ (0, _inherits2.default)(ProcessingFailure_FileLockedError, _ProcessingFailureErr12);
2431
+
2432
+ var _super118 = _createSuper(ProcessingFailure_FileLockedError);
2433
+
2434
+ function ProcessingFailure_FileLockedError(message, code) {
2435
+ var _this118;
2436
+
2437
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FileLockedError);
2438
+ _this118 = _super118.call(this, message, code);
2439
+ _this118.name = 'ProcessingFailure_FileLockedError';
2440
+ return _this118;
2441
+ }
2442
+
2443
+ return (0, _createClass2.default)(ProcessingFailure_FileLockedError);
2444
+ }(ProcessingFailureError);
2445
+
2446
+ exports.ProcessingFailure_FileLockedError = ProcessingFailure_FileLockedError;
2447
+ errorClasses.ProcessingFailure_FileLockedError = ProcessingFailure_FileLockedError;
2448
+
2449
+ var ProcessingFailure_FileNotUploadedError = /*#__PURE__*/function (_ProcessingFailureErr13) {
2450
+ (0, _inherits2.default)(ProcessingFailure_FileNotUploadedError, _ProcessingFailureErr13);
2451
+
2452
+ var _super119 = _createSuper(ProcessingFailure_FileNotUploadedError);
2453
+
2454
+ function ProcessingFailure_FileNotUploadedError(message, code) {
2455
+ var _this119;
2456
+
2457
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FileNotUploadedError);
2458
+ _this119 = _super119.call(this, message, code);
2459
+ _this119.name = 'ProcessingFailure_FileNotUploadedError';
2460
+ return _this119;
2461
+ }
2462
+
2463
+ return (0, _createClass2.default)(ProcessingFailure_FileNotUploadedError);
2464
+ }(ProcessingFailureError);
2465
+
2466
+ exports.ProcessingFailure_FileNotUploadedError = ProcessingFailure_FileNotUploadedError;
2467
+ errorClasses.ProcessingFailure_FileNotUploadedError = ProcessingFailure_FileNotUploadedError;
2468
+
2469
+ var ProcessingFailure_FilePendingProcessingError = /*#__PURE__*/function (_ProcessingFailureErr14) {
2470
+ (0, _inherits2.default)(ProcessingFailure_FilePendingProcessingError, _ProcessingFailureErr14);
2471
+
2472
+ var _super120 = _createSuper(ProcessingFailure_FilePendingProcessingError);
2473
+
2474
+ function ProcessingFailure_FilePendingProcessingError(message, code) {
2475
+ var _this120;
2476
+
2477
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FilePendingProcessingError);
2478
+ _this120 = _super120.call(this, message, code);
2479
+ _this120.name = 'ProcessingFailure_FilePendingProcessingError';
2480
+ return _this120;
2481
+ }
2482
+
2483
+ return (0, _createClass2.default)(ProcessingFailure_FilePendingProcessingError);
2484
+ }(ProcessingFailureError);
2485
+
2486
+ exports.ProcessingFailure_FilePendingProcessingError = ProcessingFailure_FilePendingProcessingError;
2487
+ errorClasses.ProcessingFailure_FilePendingProcessingError = ProcessingFailure_FilePendingProcessingError;
2488
+
2489
+ var ProcessingFailure_FileTooBigToDecryptError = /*#__PURE__*/function (_ProcessingFailureErr15) {
2490
+ (0, _inherits2.default)(ProcessingFailure_FileTooBigToDecryptError, _ProcessingFailureErr15);
2491
+
2492
+ var _super121 = _createSuper(ProcessingFailure_FileTooBigToDecryptError);
2493
+
2494
+ function ProcessingFailure_FileTooBigToDecryptError(message, code) {
2495
+ var _this121;
2496
+
2497
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FileTooBigToDecryptError);
2498
+ _this121 = _super121.call(this, message, code);
2499
+ _this121.name = 'ProcessingFailure_FileTooBigToDecryptError';
2500
+ return _this121;
2501
+ }
2502
+
2503
+ return (0, _createClass2.default)(ProcessingFailure_FileTooBigToDecryptError);
2504
+ }(ProcessingFailureError);
2505
+
2506
+ exports.ProcessingFailure_FileTooBigToDecryptError = ProcessingFailure_FileTooBigToDecryptError;
2507
+ errorClasses.ProcessingFailure_FileTooBigToDecryptError = ProcessingFailure_FileTooBigToDecryptError;
2508
+
2509
+ var ProcessingFailure_FileTooBigToEncryptError = /*#__PURE__*/function (_ProcessingFailureErr16) {
2510
+ (0, _inherits2.default)(ProcessingFailure_FileTooBigToEncryptError, _ProcessingFailureErr16);
2511
+
2512
+ var _super122 = _createSuper(ProcessingFailure_FileTooBigToEncryptError);
2513
+
2514
+ function ProcessingFailure_FileTooBigToEncryptError(message, code) {
2515
+ var _this122;
2516
+
2517
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FileTooBigToEncryptError);
2518
+ _this122 = _super122.call(this, message, code);
2519
+ _this122.name = 'ProcessingFailure_FileTooBigToEncryptError';
2520
+ return _this122;
2521
+ }
2522
+
2523
+ return (0, _createClass2.default)(ProcessingFailure_FileTooBigToEncryptError);
2524
+ }(ProcessingFailureError);
2525
+
2526
+ exports.ProcessingFailure_FileTooBigToEncryptError = ProcessingFailure_FileTooBigToEncryptError;
2527
+ errorClasses.ProcessingFailure_FileTooBigToEncryptError = ProcessingFailure_FileTooBigToEncryptError;
2528
+
2529
+ var ProcessingFailure_FileUploadedToWrongRegionError = /*#__PURE__*/function (_ProcessingFailureErr17) {
2530
+ (0, _inherits2.default)(ProcessingFailure_FileUploadedToWrongRegionError, _ProcessingFailureErr17);
2531
+
2532
+ var _super123 = _createSuper(ProcessingFailure_FileUploadedToWrongRegionError);
2533
+
2534
+ function ProcessingFailure_FileUploadedToWrongRegionError(message, code) {
2535
+ var _this123;
2536
+
2537
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FileUploadedToWrongRegionError);
2538
+ _this123 = _super123.call(this, message, code);
2539
+ _this123.name = 'ProcessingFailure_FileUploadedToWrongRegionError';
2540
+ return _this123;
2541
+ }
2542
+
2543
+ return (0, _createClass2.default)(ProcessingFailure_FileUploadedToWrongRegionError);
2544
+ }(ProcessingFailureError);
2545
+
2546
+ exports.ProcessingFailure_FileUploadedToWrongRegionError = ProcessingFailure_FileUploadedToWrongRegionError;
2547
+ errorClasses.ProcessingFailure_FileUploadedToWrongRegionError = ProcessingFailure_FileUploadedToWrongRegionError;
2548
+
2549
+ var ProcessingFailure_FolderLockedError = /*#__PURE__*/function (_ProcessingFailureErr18) {
2550
+ (0, _inherits2.default)(ProcessingFailure_FolderLockedError, _ProcessingFailureErr18);
2551
+
2552
+ var _super124 = _createSuper(ProcessingFailure_FolderLockedError);
2553
+
2554
+ function ProcessingFailure_FolderLockedError(message, code) {
2555
+ var _this124;
2556
+
2557
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FolderLockedError);
2558
+ _this124 = _super124.call(this, message, code);
2559
+ _this124.name = 'ProcessingFailure_FolderLockedError';
2560
+ return _this124;
2561
+ }
2562
+
2563
+ return (0, _createClass2.default)(ProcessingFailure_FolderLockedError);
2564
+ }(ProcessingFailureError);
2565
+
2566
+ exports.ProcessingFailure_FolderLockedError = ProcessingFailure_FolderLockedError;
2567
+ errorClasses.ProcessingFailure_FolderLockedError = ProcessingFailure_FolderLockedError;
2568
+
2569
+ var ProcessingFailure_FolderNotEmptyError = /*#__PURE__*/function (_ProcessingFailureErr19) {
2570
+ (0, _inherits2.default)(ProcessingFailure_FolderNotEmptyError, _ProcessingFailureErr19);
2571
+
2572
+ var _super125 = _createSuper(ProcessingFailure_FolderNotEmptyError);
2573
+
2574
+ function ProcessingFailure_FolderNotEmptyError(message, code) {
2575
+ var _this125;
2576
+
2577
+ (0, _classCallCheck2.default)(this, ProcessingFailure_FolderNotEmptyError);
2578
+ _this125 = _super125.call(this, message, code);
2579
+ _this125.name = 'ProcessingFailure_FolderNotEmptyError';
2580
+ return _this125;
2581
+ }
2582
+
2583
+ return (0, _createClass2.default)(ProcessingFailure_FolderNotEmptyError);
2584
+ }(ProcessingFailureError);
2585
+
2586
+ exports.ProcessingFailure_FolderNotEmptyError = ProcessingFailure_FolderNotEmptyError;
2587
+ errorClasses.ProcessingFailure_FolderNotEmptyError = ProcessingFailure_FolderNotEmptyError;
2588
+
2589
+ var ProcessingFailure_HistoryUnavailableError = /*#__PURE__*/function (_ProcessingFailureErr20) {
2590
+ (0, _inherits2.default)(ProcessingFailure_HistoryUnavailableError, _ProcessingFailureErr20);
2591
+
2592
+ var _super126 = _createSuper(ProcessingFailure_HistoryUnavailableError);
2593
+
2594
+ function ProcessingFailure_HistoryUnavailableError(message, code) {
2595
+ var _this126;
2596
+
2597
+ (0, _classCallCheck2.default)(this, ProcessingFailure_HistoryUnavailableError);
2598
+ _this126 = _super126.call(this, message, code);
2599
+ _this126.name = 'ProcessingFailure_HistoryUnavailableError';
2600
+ return _this126;
2601
+ }
2602
+
2603
+ return (0, _createClass2.default)(ProcessingFailure_HistoryUnavailableError);
2604
+ }(ProcessingFailureError);
2605
+
2606
+ exports.ProcessingFailure_HistoryUnavailableError = ProcessingFailure_HistoryUnavailableError;
2607
+ errorClasses.ProcessingFailure_HistoryUnavailableError = ProcessingFailure_HistoryUnavailableError;
2608
+
2609
+ var ProcessingFailure_InvalidBundleCodeError = /*#__PURE__*/function (_ProcessingFailureErr21) {
2610
+ (0, _inherits2.default)(ProcessingFailure_InvalidBundleCodeError, _ProcessingFailureErr21);
2611
+
2612
+ var _super127 = _createSuper(ProcessingFailure_InvalidBundleCodeError);
2613
+
2614
+ function ProcessingFailure_InvalidBundleCodeError(message, code) {
2615
+ var _this127;
2616
+
2617
+ (0, _classCallCheck2.default)(this, ProcessingFailure_InvalidBundleCodeError);
2618
+ _this127 = _super127.call(this, message, code);
2619
+ _this127.name = 'ProcessingFailure_InvalidBundleCodeError';
2620
+ return _this127;
2621
+ }
2622
+
2623
+ return (0, _createClass2.default)(ProcessingFailure_InvalidBundleCodeError);
2624
+ }(ProcessingFailureError);
2625
+
2626
+ exports.ProcessingFailure_InvalidBundleCodeError = ProcessingFailure_InvalidBundleCodeError;
2627
+ errorClasses.ProcessingFailure_InvalidBundleCodeError = ProcessingFailure_InvalidBundleCodeError;
2628
+
2629
+ var ProcessingFailure_InvalidFileTypeError = /*#__PURE__*/function (_ProcessingFailureErr22) {
2630
+ (0, _inherits2.default)(ProcessingFailure_InvalidFileTypeError, _ProcessingFailureErr22);
2631
+
2632
+ var _super128 = _createSuper(ProcessingFailure_InvalidFileTypeError);
2633
+
2634
+ function ProcessingFailure_InvalidFileTypeError(message, code) {
2635
+ var _this128;
2636
+
2637
+ (0, _classCallCheck2.default)(this, ProcessingFailure_InvalidFileTypeError);
2638
+ _this128 = _super128.call(this, message, code);
2639
+ _this128.name = 'ProcessingFailure_InvalidFileTypeError';
2640
+ return _this128;
2641
+ }
2642
+
2643
+ return (0, _createClass2.default)(ProcessingFailure_InvalidFileTypeError);
2644
+ }(ProcessingFailureError);
2645
+
2646
+ exports.ProcessingFailure_InvalidFileTypeError = ProcessingFailure_InvalidFileTypeError;
2647
+ errorClasses.ProcessingFailure_InvalidFileTypeError = ProcessingFailure_InvalidFileTypeError;
2648
+
2649
+ var ProcessingFailure_InvalidFilenameError = /*#__PURE__*/function (_ProcessingFailureErr23) {
2650
+ (0, _inherits2.default)(ProcessingFailure_InvalidFilenameError, _ProcessingFailureErr23);
2651
+
2652
+ var _super129 = _createSuper(ProcessingFailure_InvalidFilenameError);
2653
+
2654
+ function ProcessingFailure_InvalidFilenameError(message, code) {
2655
+ var _this129;
2656
+
2657
+ (0, _classCallCheck2.default)(this, ProcessingFailure_InvalidFilenameError);
2658
+ _this129 = _super129.call(this, message, code);
2659
+ _this129.name = 'ProcessingFailure_InvalidFilenameError';
2660
+ return _this129;
2661
+ }
2662
+
2663
+ return (0, _createClass2.default)(ProcessingFailure_InvalidFilenameError);
2664
+ }(ProcessingFailureError);
2665
+
2666
+ exports.ProcessingFailure_InvalidFilenameError = ProcessingFailure_InvalidFilenameError;
2667
+ errorClasses.ProcessingFailure_InvalidFilenameError = ProcessingFailure_InvalidFilenameError;
2668
+
2669
+ var ProcessingFailure_InvalidRangeError = /*#__PURE__*/function (_ProcessingFailureErr24) {
2670
+ (0, _inherits2.default)(ProcessingFailure_InvalidRangeError, _ProcessingFailureErr24);
2671
+
2672
+ var _super130 = _createSuper(ProcessingFailure_InvalidRangeError);
2673
+
2674
+ function ProcessingFailure_InvalidRangeError(message, code) {
2675
+ var _this130;
2676
+
2677
+ (0, _classCallCheck2.default)(this, ProcessingFailure_InvalidRangeError);
2678
+ _this130 = _super130.call(this, message, code);
2679
+ _this130.name = 'ProcessingFailure_InvalidRangeError';
2680
+ return _this130;
2681
+ }
2682
+
2683
+ return (0, _createClass2.default)(ProcessingFailure_InvalidRangeError);
2684
+ }(ProcessingFailureError);
2685
+
2686
+ exports.ProcessingFailure_InvalidRangeError = ProcessingFailure_InvalidRangeError;
2687
+ errorClasses.ProcessingFailure_InvalidRangeError = ProcessingFailure_InvalidRangeError;
2688
+
2689
+ var ProcessingFailure_ModelSaveErrorError = /*#__PURE__*/function (_ProcessingFailureErr25) {
2690
+ (0, _inherits2.default)(ProcessingFailure_ModelSaveErrorError, _ProcessingFailureErr25);
2691
+
2692
+ var _super131 = _createSuper(ProcessingFailure_ModelSaveErrorError);
2693
+
2694
+ function ProcessingFailure_ModelSaveErrorError(message, code) {
2695
+ var _this131;
2696
+
2697
+ (0, _classCallCheck2.default)(this, ProcessingFailure_ModelSaveErrorError);
2698
+ _this131 = _super131.call(this, message, code);
2699
+ _this131.name = 'ProcessingFailure_ModelSaveErrorError';
2700
+ return _this131;
2701
+ }
2702
+
2703
+ return (0, _createClass2.default)(ProcessingFailure_ModelSaveErrorError);
2704
+ }(ProcessingFailureError);
2705
+
2706
+ exports.ProcessingFailure_ModelSaveErrorError = ProcessingFailure_ModelSaveErrorError;
2707
+ errorClasses.ProcessingFailure_ModelSaveErrorError = ProcessingFailure_ModelSaveErrorError;
2708
+
2709
+ var ProcessingFailure_MultipartUploadsRequiredForRemotesError = /*#__PURE__*/function (_ProcessingFailureErr26) {
2710
+ (0, _inherits2.default)(ProcessingFailure_MultipartUploadsRequiredForRemotesError, _ProcessingFailureErr26);
2711
+
2712
+ var _super132 = _createSuper(ProcessingFailure_MultipartUploadsRequiredForRemotesError);
2713
+
2714
+ function ProcessingFailure_MultipartUploadsRequiredForRemotesError(message, code) {
2715
+ var _this132;
2716
+
2717
+ (0, _classCallCheck2.default)(this, ProcessingFailure_MultipartUploadsRequiredForRemotesError);
2718
+ _this132 = _super132.call(this, message, code);
2719
+ _this132.name = 'ProcessingFailure_MultipartUploadsRequiredForRemotesError';
2720
+ return _this132;
2721
+ }
2722
+
2723
+ return (0, _createClass2.default)(ProcessingFailure_MultipartUploadsRequiredForRemotesError);
2724
+ }(ProcessingFailureError);
2725
+
2726
+ exports.ProcessingFailure_MultipartUploadsRequiredForRemotesError = ProcessingFailure_MultipartUploadsRequiredForRemotesError;
2727
+ errorClasses.ProcessingFailure_MultipartUploadsRequiredForRemotesError = ProcessingFailure_MultipartUploadsRequiredForRemotesError;
2728
+
2729
+ var ProcessingFailure_MultipleProcessingErrorsError = /*#__PURE__*/function (_ProcessingFailureErr27) {
2730
+ (0, _inherits2.default)(ProcessingFailure_MultipleProcessingErrorsError, _ProcessingFailureErr27);
2731
+
2732
+ var _super133 = _createSuper(ProcessingFailure_MultipleProcessingErrorsError);
2733
+
2734
+ function ProcessingFailure_MultipleProcessingErrorsError(message, code) {
2735
+ var _this133;
2736
+
2737
+ (0, _classCallCheck2.default)(this, ProcessingFailure_MultipleProcessingErrorsError);
2738
+ _this133 = _super133.call(this, message, code);
2739
+ _this133.name = 'ProcessingFailure_MultipleProcessingErrorsError';
2740
+ return _this133;
2741
+ }
2742
+
2743
+ return (0, _createClass2.default)(ProcessingFailure_MultipleProcessingErrorsError);
2744
+ }(ProcessingFailureError);
2745
+
2746
+ exports.ProcessingFailure_MultipleProcessingErrorsError = ProcessingFailure_MultipleProcessingErrorsError;
2747
+ errorClasses.ProcessingFailure_MultipleProcessingErrorsError = ProcessingFailure_MultipleProcessingErrorsError;
2748
+
2749
+ var ProcessingFailure_PathTooLongError = /*#__PURE__*/function (_ProcessingFailureErr28) {
2750
+ (0, _inherits2.default)(ProcessingFailure_PathTooLongError, _ProcessingFailureErr28);
2751
+
2752
+ var _super134 = _createSuper(ProcessingFailure_PathTooLongError);
2753
+
2754
+ function ProcessingFailure_PathTooLongError(message, code) {
2755
+ var _this134;
2756
+
2757
+ (0, _classCallCheck2.default)(this, ProcessingFailure_PathTooLongError);
2758
+ _this134 = _super134.call(this, message, code);
2759
+ _this134.name = 'ProcessingFailure_PathTooLongError';
2760
+ return _this134;
2761
+ }
2762
+
2763
+ return (0, _createClass2.default)(ProcessingFailure_PathTooLongError);
2764
+ }(ProcessingFailureError);
2765
+
2766
+ exports.ProcessingFailure_PathTooLongError = ProcessingFailure_PathTooLongError;
2767
+ errorClasses.ProcessingFailure_PathTooLongError = ProcessingFailure_PathTooLongError;
2768
+
2769
+ var ProcessingFailure_RecipientAlreadySharedError = /*#__PURE__*/function (_ProcessingFailureErr29) {
2770
+ (0, _inherits2.default)(ProcessingFailure_RecipientAlreadySharedError, _ProcessingFailureErr29);
2771
+
2772
+ var _super135 = _createSuper(ProcessingFailure_RecipientAlreadySharedError);
2773
+
2774
+ function ProcessingFailure_RecipientAlreadySharedError(message, code) {
2775
+ var _this135;
2776
+
2777
+ (0, _classCallCheck2.default)(this, ProcessingFailure_RecipientAlreadySharedError);
2778
+ _this135 = _super135.call(this, message, code);
2779
+ _this135.name = 'ProcessingFailure_RecipientAlreadySharedError';
2780
+ return _this135;
2781
+ }
2782
+
2783
+ return (0, _createClass2.default)(ProcessingFailure_RecipientAlreadySharedError);
2784
+ }(ProcessingFailureError);
2785
+
2786
+ exports.ProcessingFailure_RecipientAlreadySharedError = ProcessingFailure_RecipientAlreadySharedError;
2787
+ errorClasses.ProcessingFailure_RecipientAlreadySharedError = ProcessingFailure_RecipientAlreadySharedError;
2788
+
2789
+ var ProcessingFailure_RemoteServerErrorError = /*#__PURE__*/function (_ProcessingFailureErr30) {
2790
+ (0, _inherits2.default)(ProcessingFailure_RemoteServerErrorError, _ProcessingFailureErr30);
2791
+
2792
+ var _super136 = _createSuper(ProcessingFailure_RemoteServerErrorError);
2793
+
2794
+ function ProcessingFailure_RemoteServerErrorError(message, code) {
2795
+ var _this136;
2796
+
2797
+ (0, _classCallCheck2.default)(this, ProcessingFailure_RemoteServerErrorError);
2798
+ _this136 = _super136.call(this, message, code);
2799
+ _this136.name = 'ProcessingFailure_RemoteServerErrorError';
2800
+ return _this136;
2801
+ }
2802
+
2803
+ return (0, _createClass2.default)(ProcessingFailure_RemoteServerErrorError);
2804
+ }(ProcessingFailureError);
2805
+
2806
+ exports.ProcessingFailure_RemoteServerErrorError = ProcessingFailure_RemoteServerErrorError;
2807
+ errorClasses.ProcessingFailure_RemoteServerErrorError = ProcessingFailure_RemoteServerErrorError;
2808
+
2809
+ var ProcessingFailure_ResourceLockedError = /*#__PURE__*/function (_ProcessingFailureErr31) {
2810
+ (0, _inherits2.default)(ProcessingFailure_ResourceLockedError, _ProcessingFailureErr31);
2811
+
2812
+ var _super137 = _createSuper(ProcessingFailure_ResourceLockedError);
2813
+
2814
+ function ProcessingFailure_ResourceLockedError(message, code) {
2815
+ var _this137;
2816
+
2817
+ (0, _classCallCheck2.default)(this, ProcessingFailure_ResourceLockedError);
2818
+ _this137 = _super137.call(this, message, code);
2819
+ _this137.name = 'ProcessingFailure_ResourceLockedError';
2820
+ return _this137;
2821
+ }
2822
+
2823
+ return (0, _createClass2.default)(ProcessingFailure_ResourceLockedError);
2824
+ }(ProcessingFailureError);
2825
+
2826
+ exports.ProcessingFailure_ResourceLockedError = ProcessingFailure_ResourceLockedError;
2827
+ errorClasses.ProcessingFailure_ResourceLockedError = ProcessingFailure_ResourceLockedError;
2828
+
2829
+ var ProcessingFailure_SubfolderLockedError = /*#__PURE__*/function (_ProcessingFailureErr32) {
2830
+ (0, _inherits2.default)(ProcessingFailure_SubfolderLockedError, _ProcessingFailureErr32);
2831
+
2832
+ var _super138 = _createSuper(ProcessingFailure_SubfolderLockedError);
2833
+
2834
+ function ProcessingFailure_SubfolderLockedError(message, code) {
2835
+ var _this138;
2836
+
2837
+ (0, _classCallCheck2.default)(this, ProcessingFailure_SubfolderLockedError);
2838
+ _this138 = _super138.call(this, message, code);
2839
+ _this138.name = 'ProcessingFailure_SubfolderLockedError';
2840
+ return _this138;
2841
+ }
2842
+
2843
+ return (0, _createClass2.default)(ProcessingFailure_SubfolderLockedError);
2844
+ }(ProcessingFailureError);
2845
+
2846
+ exports.ProcessingFailure_SubfolderLockedError = ProcessingFailure_SubfolderLockedError;
2847
+ errorClasses.ProcessingFailure_SubfolderLockedError = ProcessingFailure_SubfolderLockedError;
2848
+
2849
+ var ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = /*#__PURE__*/function (_ProcessingFailureErr33) {
2850
+ (0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError, _ProcessingFailureErr33);
2851
+
2852
+ var _super139 = _createSuper(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
2853
+
2854
+ function ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError(message, code) {
2855
+ var _this139;
2856
+
2857
+ (0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
2858
+ _this139 = _super139.call(this, message, code);
2859
+ _this139.name = 'ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError';
2860
+ return _this139;
2861
+ }
2862
+
2863
+ return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
2864
+ }(ProcessingFailureError);
2865
+
2866
+ exports.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError;
2867
+ errorClasses.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError;
2868
+
2869
+ var ProcessingFailure_UpdatesNotAllowedForRemotesError = /*#__PURE__*/function (_ProcessingFailureErr34) {
2870
+ (0, _inherits2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError, _ProcessingFailureErr34);
2871
+
2872
+ var _super140 = _createSuper(ProcessingFailure_UpdatesNotAllowedForRemotesError);
2873
+
2874
+ function ProcessingFailure_UpdatesNotAllowedForRemotesError(message, code) {
2875
+ var _this140;
2876
+
2877
+ (0, _classCallCheck2.default)(this, ProcessingFailure_UpdatesNotAllowedForRemotesError);
2878
+ _this140 = _super140.call(this, message, code);
2879
+ _this140.name = 'ProcessingFailure_UpdatesNotAllowedForRemotesError';
2880
+ return _this140;
2881
+ }
2882
+
2883
+ return (0, _createClass2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError);
2884
+ }(ProcessingFailureError);
2885
+
2886
+ exports.ProcessingFailure_UpdatesNotAllowedForRemotesError = ProcessingFailure_UpdatesNotAllowedForRemotesError;
2887
+ errorClasses.ProcessingFailure_UpdatesNotAllowedForRemotesError = ProcessingFailure_UpdatesNotAllowedForRemotesError;
2888
+
2889
+ var RateLimited_ReauthenticationRateLimitedError = /*#__PURE__*/function (_RateLimitedError) {
2890
+ (0, _inherits2.default)(RateLimited_ReauthenticationRateLimitedError, _RateLimitedError);
2891
+
2892
+ var _super141 = _createSuper(RateLimited_ReauthenticationRateLimitedError);
2893
+
2894
+ function RateLimited_ReauthenticationRateLimitedError(message, code) {
2895
+ var _this141;
2896
+
2897
+ (0, _classCallCheck2.default)(this, RateLimited_ReauthenticationRateLimitedError);
2898
+ _this141 = _super141.call(this, message, code);
2899
+ _this141.name = 'RateLimited_ReauthenticationRateLimitedError';
2900
+ return _this141;
2901
+ }
2902
+
2903
+ return (0, _createClass2.default)(RateLimited_ReauthenticationRateLimitedError);
2904
+ }(RateLimitedError);
2905
+
2906
+ exports.RateLimited_ReauthenticationRateLimitedError = RateLimited_ReauthenticationRateLimitedError;
2907
+ errorClasses.RateLimited_ReauthenticationRateLimitedError = RateLimited_ReauthenticationRateLimitedError;
2908
+
2909
+ var RateLimited_TooManyConcurrentRequestsError = /*#__PURE__*/function (_RateLimitedError2) {
2910
+ (0, _inherits2.default)(RateLimited_TooManyConcurrentRequestsError, _RateLimitedError2);
2911
+
2912
+ var _super142 = _createSuper(RateLimited_TooManyConcurrentRequestsError);
2913
+
2914
+ function RateLimited_TooManyConcurrentRequestsError(message, code) {
2915
+ var _this142;
2916
+
2917
+ (0, _classCallCheck2.default)(this, RateLimited_TooManyConcurrentRequestsError);
2918
+ _this142 = _super142.call(this, message, code);
2919
+ _this142.name = 'RateLimited_TooManyConcurrentRequestsError';
2920
+ return _this142;
2921
+ }
2922
+
2923
+ return (0, _createClass2.default)(RateLimited_TooManyConcurrentRequestsError);
2924
+ }(RateLimitedError);
2925
+
2926
+ exports.RateLimited_TooManyConcurrentRequestsError = RateLimited_TooManyConcurrentRequestsError;
2927
+ errorClasses.RateLimited_TooManyConcurrentRequestsError = RateLimited_TooManyConcurrentRequestsError;
2928
+
2929
+ var RateLimited_TooManyLoginAttemptsError = /*#__PURE__*/function (_RateLimitedError3) {
2930
+ (0, _inherits2.default)(RateLimited_TooManyLoginAttemptsError, _RateLimitedError3);
2931
+
2932
+ var _super143 = _createSuper(RateLimited_TooManyLoginAttemptsError);
2933
+
2934
+ function RateLimited_TooManyLoginAttemptsError(message, code) {
2935
+ var _this143;
2936
+
2937
+ (0, _classCallCheck2.default)(this, RateLimited_TooManyLoginAttemptsError);
2938
+ _this143 = _super143.call(this, message, code);
2939
+ _this143.name = 'RateLimited_TooManyLoginAttemptsError';
2940
+ return _this143;
2941
+ }
2942
+
2943
+ return (0, _createClass2.default)(RateLimited_TooManyLoginAttemptsError);
2944
+ }(RateLimitedError);
2945
+
2946
+ exports.RateLimited_TooManyLoginAttemptsError = RateLimited_TooManyLoginAttemptsError;
2947
+ errorClasses.RateLimited_TooManyLoginAttemptsError = RateLimited_TooManyLoginAttemptsError;
2948
+
2949
+ var RateLimited_TooManyRequestsError = /*#__PURE__*/function (_RateLimitedError4) {
2950
+ (0, _inherits2.default)(RateLimited_TooManyRequestsError, _RateLimitedError4);
2951
+
2952
+ var _super144 = _createSuper(RateLimited_TooManyRequestsError);
2953
+
2954
+ function RateLimited_TooManyRequestsError(message, code) {
2955
+ var _this144;
2956
+
2957
+ (0, _classCallCheck2.default)(this, RateLimited_TooManyRequestsError);
2958
+ _this144 = _super144.call(this, message, code);
2959
+ _this144.name = 'RateLimited_TooManyRequestsError';
2960
+ return _this144;
2961
+ }
2962
+
2963
+ return (0, _createClass2.default)(RateLimited_TooManyRequestsError);
2964
+ }(RateLimitedError);
2965
+
2966
+ exports.RateLimited_TooManyRequestsError = RateLimited_TooManyRequestsError;
2967
+ errorClasses.RateLimited_TooManyRequestsError = RateLimited_TooManyRequestsError;
2968
+
2969
+ var ServiceUnavailable_UploadsUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr) {
2970
+ (0, _inherits2.default)(ServiceUnavailable_UploadsUnavailableError, _ServiceUnavailableEr);
2971
+
2972
+ var _super145 = _createSuper(ServiceUnavailable_UploadsUnavailableError);
2973
+
2974
+ function ServiceUnavailable_UploadsUnavailableError(message, code) {
2975
+ var _this145;
2976
+
2977
+ (0, _classCallCheck2.default)(this, ServiceUnavailable_UploadsUnavailableError);
2978
+ _this145 = _super145.call(this, message, code);
2979
+ _this145.name = 'ServiceUnavailable_UploadsUnavailableError';
2980
+ return _this145;
2981
+ }
2982
+
2983
+ return (0, _createClass2.default)(ServiceUnavailable_UploadsUnavailableError);
2984
+ }(ServiceUnavailableError);
2985
+
2986
+ exports.ServiceUnavailable_UploadsUnavailableError = ServiceUnavailable_UploadsUnavailableError;
2987
+ errorClasses.ServiceUnavailable_UploadsUnavailableError = ServiceUnavailable_UploadsUnavailableError;
2988
+
2989
+ var SiteConfiguration_AccountAlreadyExistsError = /*#__PURE__*/function (_SiteConfigurationErr) {
2990
+ (0, _inherits2.default)(SiteConfiguration_AccountAlreadyExistsError, _SiteConfigurationErr);
2991
+
2992
+ var _super146 = _createSuper(SiteConfiguration_AccountAlreadyExistsError);
2993
+
2994
+ function SiteConfiguration_AccountAlreadyExistsError(message, code) {
2995
+ var _this146;
2996
+
2997
+ (0, _classCallCheck2.default)(this, SiteConfiguration_AccountAlreadyExistsError);
2998
+ _this146 = _super146.call(this, message, code);
2999
+ _this146.name = 'SiteConfiguration_AccountAlreadyExistsError';
3000
+ return _this146;
3001
+ }
3002
+
3003
+ return (0, _createClass2.default)(SiteConfiguration_AccountAlreadyExistsError);
3004
+ }(SiteConfigurationError);
3005
+
3006
+ exports.SiteConfiguration_AccountAlreadyExistsError = SiteConfiguration_AccountAlreadyExistsError;
3007
+ errorClasses.SiteConfiguration_AccountAlreadyExistsError = SiteConfiguration_AccountAlreadyExistsError;
3008
+
3009
+ var SiteConfiguration_AccountOverdueError = /*#__PURE__*/function (_SiteConfigurationErr2) {
3010
+ (0, _inherits2.default)(SiteConfiguration_AccountOverdueError, _SiteConfigurationErr2);
3011
+
3012
+ var _super147 = _createSuper(SiteConfiguration_AccountOverdueError);
3013
+
3014
+ function SiteConfiguration_AccountOverdueError(message, code) {
3015
+ var _this147;
3016
+
3017
+ (0, _classCallCheck2.default)(this, SiteConfiguration_AccountOverdueError);
3018
+ _this147 = _super147.call(this, message, code);
3019
+ _this147.name = 'SiteConfiguration_AccountOverdueError';
3020
+ return _this147;
3021
+ }
3022
+
3023
+ return (0, _createClass2.default)(SiteConfiguration_AccountOverdueError);
3024
+ }(SiteConfigurationError);
3025
+
3026
+ exports.SiteConfiguration_AccountOverdueError = SiteConfiguration_AccountOverdueError;
3027
+ errorClasses.SiteConfiguration_AccountOverdueError = SiteConfiguration_AccountOverdueError;
3028
+
3029
+ var SiteConfiguration_NoAccountForSiteError = /*#__PURE__*/function (_SiteConfigurationErr3) {
3030
+ (0, _inherits2.default)(SiteConfiguration_NoAccountForSiteError, _SiteConfigurationErr3);
3031
+
3032
+ var _super148 = _createSuper(SiteConfiguration_NoAccountForSiteError);
3033
+
3034
+ function SiteConfiguration_NoAccountForSiteError(message, code) {
3035
+ var _this148;
3036
+
3037
+ (0, _classCallCheck2.default)(this, SiteConfiguration_NoAccountForSiteError);
3038
+ _this148 = _super148.call(this, message, code);
3039
+ _this148.name = 'SiteConfiguration_NoAccountForSiteError';
3040
+ return _this148;
3041
+ }
3042
+
3043
+ return (0, _createClass2.default)(SiteConfiguration_NoAccountForSiteError);
3044
+ }(SiteConfigurationError);
3045
+
3046
+ exports.SiteConfiguration_NoAccountForSiteError = SiteConfiguration_NoAccountForSiteError;
3047
+ errorClasses.SiteConfiguration_NoAccountForSiteError = SiteConfiguration_NoAccountForSiteError;
3048
+
3049
+ var SiteConfiguration_SiteWasRemovedError = /*#__PURE__*/function (_SiteConfigurationErr4) {
3050
+ (0, _inherits2.default)(SiteConfiguration_SiteWasRemovedError, _SiteConfigurationErr4);
3051
+
3052
+ var _super149 = _createSuper(SiteConfiguration_SiteWasRemovedError);
3053
+
3054
+ function SiteConfiguration_SiteWasRemovedError(message, code) {
3055
+ var _this149;
3056
+
3057
+ (0, _classCallCheck2.default)(this, SiteConfiguration_SiteWasRemovedError);
3058
+ _this149 = _super149.call(this, message, code);
3059
+ _this149.name = 'SiteConfiguration_SiteWasRemovedError';
3060
+ return _this149;
3061
+ }
3062
+
3063
+ return (0, _createClass2.default)(SiteConfiguration_SiteWasRemovedError);
3064
+ }(SiteConfigurationError);
3065
+
3066
+ exports.SiteConfiguration_SiteWasRemovedError = SiteConfiguration_SiteWasRemovedError;
3067
+ errorClasses.SiteConfiguration_SiteWasRemovedError = SiteConfiguration_SiteWasRemovedError;
3068
+
3069
+ var SiteConfiguration_TrialExpiredError = /*#__PURE__*/function (_SiteConfigurationErr5) {
3070
+ (0, _inherits2.default)(SiteConfiguration_TrialExpiredError, _SiteConfigurationErr5);
3071
+
3072
+ var _super150 = _createSuper(SiteConfiguration_TrialExpiredError);
3073
+
3074
+ function SiteConfiguration_TrialExpiredError(message, code) {
3075
+ var _this150;
3076
+
3077
+ (0, _classCallCheck2.default)(this, SiteConfiguration_TrialExpiredError);
3078
+ _this150 = _super150.call(this, message, code);
3079
+ _this150.name = 'SiteConfiguration_TrialExpiredError';
3080
+ return _this150;
3081
+ }
3082
+
3083
+ return (0, _createClass2.default)(SiteConfiguration_TrialExpiredError);
3084
+ }(SiteConfigurationError);
3085
+
3086
+ exports.SiteConfiguration_TrialExpiredError = SiteConfiguration_TrialExpiredError;
3087
+ errorClasses.SiteConfiguration_TrialExpiredError = SiteConfiguration_TrialExpiredError;
3088
+
3089
+ var SiteConfiguration_TrialLockedError = /*#__PURE__*/function (_SiteConfigurationErr6) {
3090
+ (0, _inherits2.default)(SiteConfiguration_TrialLockedError, _SiteConfigurationErr6);
3091
+
3092
+ var _super151 = _createSuper(SiteConfiguration_TrialLockedError);
3093
+
3094
+ function SiteConfiguration_TrialLockedError(message, code) {
3095
+ var _this151;
3096
+
3097
+ (0, _classCallCheck2.default)(this, SiteConfiguration_TrialLockedError);
3098
+ _this151 = _super151.call(this, message, code);
3099
+ _this151.name = 'SiteConfiguration_TrialLockedError';
3100
+ return _this151;
3101
+ }
3102
+
3103
+ return (0, _createClass2.default)(SiteConfiguration_TrialLockedError);
3104
+ }(SiteConfigurationError);
3105
+
3106
+ exports.SiteConfiguration_TrialLockedError = SiteConfiguration_TrialLockedError;
3107
+ errorClasses.SiteConfiguration_TrialLockedError = SiteConfiguration_TrialLockedError;
3108
+
3109
+ var SiteConfiguration_UserRequestsEnabledRequiredError = /*#__PURE__*/function (_SiteConfigurationErr7) {
3110
+ (0, _inherits2.default)(SiteConfiguration_UserRequestsEnabledRequiredError, _SiteConfigurationErr7);
3111
+
3112
+ var _super152 = _createSuper(SiteConfiguration_UserRequestsEnabledRequiredError);
3113
+
3114
+ function SiteConfiguration_UserRequestsEnabledRequiredError(message, code) {
3115
+ var _this152;
3116
+
3117
+ (0, _classCallCheck2.default)(this, SiteConfiguration_UserRequestsEnabledRequiredError);
3118
+ _this152 = _super152.call(this, message, code);
3119
+ _this152.name = 'SiteConfiguration_UserRequestsEnabledRequiredError';
3120
+ return _this152;
3121
+ }
3122
+
3123
+ return (0, _createClass2.default)(SiteConfiguration_UserRequestsEnabledRequiredError);
3124
+ }(SiteConfigurationError);
3125
+
3126
+ exports.SiteConfiguration_UserRequestsEnabledRequiredError = SiteConfiguration_UserRequestsEnabledRequiredError;
3127
+ errorClasses.SiteConfiguration_UserRequestsEnabledRequiredError = SiteConfiguration_UserRequestsEnabledRequiredError;