files.com 1.1.18 → 1.2.0

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