files.com 1.0.190 → 1.0.191

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