files.com 1.0.190 → 1.0.193

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