files.com 1.2.39 → 1.2.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/_VERSION +1 -1
- package/docs/Errors.md +1 -0
- package/docs/models/As2Partner.md +1 -1
- package/docs/models/Bundle.md +5 -2
- package/docs/models/BundlePath.md +13 -0
- package/docs/models/Site.md +8 -0
- package/lib/Errors.js +191 -179
- package/lib/Files.js +1 -1
- package/lib/models/As2Partner.js +1 -1
- package/lib/models/Bundle.js +7 -0
- package/lib/models/BundlePath.js +55 -0
- package/lib/models/Site.js +10 -0
- package/package.json +1 -1
- package/src/Errors.js +1 -0
- package/src/Files.js +1 -1
- package/src/models/As2Partner.js +1 -1
- package/src/models/Bundle.js +7 -0
- package/src/models/BundlePath.js +41 -0
- package/src/models/Site.js +8 -0
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.41
|
package/docs/Errors.md
CHANGED
@@ -168,6 +168,7 @@ These errors are derived from the error groups listed above.
|
|
168
168
|
### ProcessingFailure_FileTooBigToDecryptError
|
169
169
|
### ProcessingFailure_FileTooBigToEncryptError
|
170
170
|
### ProcessingFailure_FileUploadedToWrongRegionError
|
171
|
+
### ProcessingFailure_FilenameTooLongError
|
171
172
|
### ProcessingFailure_FolderLockedError
|
172
173
|
### ProcessingFailure_FolderNotEmptyError
|
173
174
|
### ProcessingFailure_HistoryUnavailableError
|
@@ -26,7 +26,7 @@
|
|
26
26
|
* `name` (string): The partner's formal AS2 name.
|
27
27
|
* `uri` (string): Public URI for sending AS2 message to.
|
28
28
|
* `server_certificate` (string): Remote server certificate security setting
|
29
|
-
* `mdn_validation_level` (string): MDN Validation Level
|
29
|
+
* `mdn_validation_level` (string): MDN Validation Level controls how to evaluate message transfer success based on a partner's MDN response. NOTE: This setting does not affect MDN storage; all MDNs received from a partner are always stored. `none`: MDN is stored for informational purposes only, a successful HTTPS transfer is a successful AS2 transfer. `weak`: Inspect the MDN for MIC and Disposition only. `normal`: `weak` plus validate MDN signature matches body, `strict`: `normal` but do not allow signatures from self-signed or incorrectly purposed certificates.
|
30
30
|
* `enable_dedicated_ips` (boolean): `true` if remote server only accepts connections from dedicated IPs
|
31
31
|
* `hex_public_certificate_serial` (string): Serial of public certificate used for message security in hex format.
|
32
32
|
* `public_certificate_md5` (string): MD5 hash of public certificate used for message security.
|
package/docs/models/Bundle.md
CHANGED
@@ -76,7 +76,8 @@
|
|
76
76
|
"has_inbox": true,
|
77
77
|
"paths": [
|
78
78
|
"file.txt"
|
79
|
-
]
|
79
|
+
],
|
80
|
+
"bundlepaths": "example"
|
80
81
|
}
|
81
82
|
```
|
82
83
|
|
@@ -118,6 +119,7 @@
|
|
118
119
|
* `watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
|
119
120
|
* `has_inbox` (boolean): Does this bundle have an associated inbox?
|
120
121
|
* `paths` (array): A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
|
122
|
+
* `bundlepaths` (BundlePath): A list of bundlepaths in this bundle. For performance reasons, this is not provided when listing bundles.
|
121
123
|
* `password` (string): Password for this bundle.
|
122
124
|
* `form_field_set_id` (int64): Id of Form Field Set to use with this bundle
|
123
125
|
* `create_snapshot` (boolean): If true, create a snapshot of this bundle's contents.
|
@@ -392,7 +394,8 @@ await bundle.update({
|
|
392
394
|
"has_inbox": true,
|
393
395
|
"paths": [
|
394
396
|
"file.txt"
|
395
|
-
]
|
397
|
+
],
|
398
|
+
"bundlepaths": "example"
|
396
399
|
}
|
397
400
|
```
|
398
401
|
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# BundlePath
|
2
|
+
|
3
|
+
## Example BundlePath Object
|
4
|
+
|
5
|
+
```
|
6
|
+
{
|
7
|
+
"recursive": true,
|
8
|
+
"path": "example"
|
9
|
+
}
|
10
|
+
```
|
11
|
+
|
12
|
+
* `recursive` (boolean): Allow access to subfolders content?
|
13
|
+
* `path` (string): The path to the resource relative to filesystem. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
package/docs/models/Site.md
CHANGED
@@ -260,6 +260,8 @@
|
|
260
260
|
"user_lockout_within": 6,
|
261
261
|
"user_requests_enabled": true,
|
262
262
|
"user_requests_notify_admins": true,
|
263
|
+
"users_can_create_api_keys": true,
|
264
|
+
"users_can_create_ssh_keys": true,
|
263
265
|
"welcome_custom_text": "Welcome to my site!",
|
264
266
|
"welcome_email_cc": "example",
|
265
267
|
"welcome_email_subject": "example",
|
@@ -416,6 +418,8 @@
|
|
416
418
|
* `user_lockout_within` (int64): Number of hours for user lockout window
|
417
419
|
* `user_requests_enabled` (boolean): Enable User Requests feature
|
418
420
|
* `user_requests_notify_admins` (boolean): Send email to site admins when a user request is received?
|
421
|
+
* `users_can_create_api_keys` (boolean): Allow users to create their own API keys?
|
422
|
+
* `users_can_create_ssh_keys` (boolean): Allow users to create their own SSH keys?
|
419
423
|
* `welcome_custom_text` (string): Custom text send in user welcome email
|
420
424
|
* `welcome_email_cc` (email): Include this email in welcome emails if enabled
|
421
425
|
* `welcome_email_subject` (string): Include this email subject in welcome emails if enabled
|
@@ -530,6 +534,8 @@ await Site.update({
|
|
530
534
|
'dav_enabled': true,
|
531
535
|
'ftp_enabled': true,
|
532
536
|
'sftp_enabled': true,
|
537
|
+
'users_can_create_api_keys': true,
|
538
|
+
'users_can_create_ssh_keys': true,
|
533
539
|
'sftp_host_key_type': "default",
|
534
540
|
'active_sftp_host_key_id': 1,
|
535
541
|
'protocol_access_groups_only': true,
|
@@ -674,6 +680,8 @@ await Site.update({
|
|
674
680
|
* `dav_enabled` (boolean): Is WebDAV enabled?
|
675
681
|
* `ftp_enabled` (boolean): Is FTP enabled?
|
676
682
|
* `sftp_enabled` (boolean): Is SFTP enabled?
|
683
|
+
* `users_can_create_api_keys` (boolean): Allow users to create their own API keys?
|
684
|
+
* `users_can_create_ssh_keys` (boolean): Allow users to create their own SSH keys?
|
677
685
|
* `sftp_host_key_type` (string): Sftp Host Key Type
|
678
686
|
* `active_sftp_host_key_id` (int64): Id of the currently selected custom SFTP Host Key
|
679
687
|
* `protocol_access_groups_only` (boolean): If true, protocol access permissions on users will be ignored, and only protocol access permissions set on Groups will be honored. Make sure that your current user is a member of a group with API permission when changing this value to avoid locking yourself out of your site.
|
package/lib/Errors.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
4
|
exports.__esModule = true;
|
5
5
|
exports.NotFound_ApiKeyNotFoundError = exports.NotFoundError = exports.NotAuthorized_ZipDownloadIpMismatchError = exports.NotAuthorized_WritePermissionRequiredError = exports.NotAuthorized_WriteAndBundlePermissionRequiredError = exports.NotAuthorized_UserIdWithoutSiteAdminError = exports.NotAuthorized_TwoFactorAuthenticationRequiredError = exports.NotAuthorized_SiteFilesAreImmutableError = exports.NotAuthorized_SiteAdminRequiredError = exports.NotAuthorized_SelfManagedRequiredError = exports.NotAuthorized_RecaptchaFailedError = exports.NotAuthorized_ReauthenticationNeededActionError = exports.NotAuthorized_ReauthenticationFailedFinalError = exports.NotAuthorized_ReauthenticationFailedError = exports.NotAuthorized_ReadPermissionRequiredError = exports.NotAuthorized_ReadOnlySessionError = exports.NotAuthorized_PasswordChangeRequiredError = exports.NotAuthorized_PasswordChangeNotRequiredError = exports.NotAuthorized_NotAllowedToCreateBundleError = exports.NotAuthorized_NonAdminsMustQueryByFolderOrPathError = exports.NotAuthorized_NeedAdminPermissionForInboxError = exports.NotAuthorized_MustAuthenticateWithApiKeyError = exports.NotAuthorized_InsufficientPermissionForParamsError = exports.NotAuthorized_HistoryPermissionRequiredError = exports.NotAuthorized_FullPermissionRequiredError = exports.NotAuthorized_FolderAdminPermissionRequiredError = exports.NotAuthorized_FolderAdminOrBillingPermissionRequiredError = exports.NotAuthorized_FilesAgentFailedAuthorizationError = exports.NotAuthorized_ContactAdminForPasswordChangeHelpError = exports.NotAuthorized_CantActForOtherUserError = exports.NotAuthorized_CannotLoginWhileUsingKeyError = exports.NotAuthorized_BundleMaximumUsesReachedError = exports.NotAuthorized_BillingPermissionRequiredError = exports.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = exports.NotAuthorized_ApiKeyOnlyForMobileAppError = exports.NotAuthorized_ApiKeyOnlyForDesktopAppError = exports.NotAuthorized_ApiKeyIsPathRestrictedError = exports.NotAuthorized_ApiKeyIsDisabledError = exports.NotAuthorizedError = exports.NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = exports.NotAuthenticated_TwoFactorAuthenticationErrorError = exports.NotAuthenticated_OneTimePasswordIncorrectError = exports.NotAuthenticated_LockoutRegionMismatchError = exports.NotAuthenticated_LockedOutError = exports.NotAuthenticated_InvalidUsernameOrPasswordError = exports.NotAuthenticated_InvalidOrExpiredCodeError = exports.NotAuthenticated_InvalidOauthError = exports.NotAuthenticated_InvalidCredentialsError = exports.NotAuthenticated_InboxRegistrationCodeFailedError = exports.NotAuthenticated_FilesAgentTokenFailedError = exports.NotAuthenticated_BundleRegistrationCodeFailedError = exports.NotAuthenticated_AuthenticationRequiredError = exports.NotAuthenticatedError = exports.MissingParameterError = exports.InvalidParameterError = exports.FilesError = exports.FilesApiError = exports.EmptyPropertyError = exports.ConfigurationError = exports.BadRequest_UserRequiredError = exports.BadRequest_UserIdOnUserEndpointError = exports.BadRequest_UserIdInvalidError = exports.BadRequest_UnsupportedMediaTypeError = exports.BadRequest_UnsupportedHttpResponseFormatError = exports.BadRequest_UnsupportedCurrencyError = exports.BadRequest_SearchAllOnChildPathError = exports.BadRequest_RequestParamsRequiredError = exports.BadRequest_RequestParamsInvalidError = exports.BadRequest_RequestParamsContainInvalidCharacterError = exports.BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = exports.BadRequest_ReauthenticationNeededFieldsError = exports.BadRequest_PartNumberTooLargeError = exports.BadRequest_OperationOnNonScimResourceError = exports.BadRequest_NoValidInputParamsError = exports.BadRequest_MethodNotAllowedError = exports.BadRequest_InvalidUploadPartSizeError = exports.BadRequest_InvalidUploadPartGapError = exports.BadRequest_InvalidUploadOffsetError = exports.BadRequest_InvalidReturnToUrlError = exports.BadRequest_InvalidPathError = exports.BadRequest_InvalidOauthProviderError = exports.BadRequest_InvalidInterfaceError = exports.BadRequest_InvalidInputEncodingError = exports.BadRequest_InvalidFilterParamValueError = exports.BadRequest_InvalidFilterParamError = exports.BadRequest_InvalidFilterFieldError = exports.BadRequest_InvalidFilterCombinationError = exports.BadRequest_InvalidFilterAliasCombinationError = exports.BadRequest_InvalidEtagsError = exports.BadRequest_InvalidCursorTypeForSortError = exports.BadRequest_InvalidCursorError = exports.BadRequest_InvalidBodyError = exports.BadRequest_FolderMustNotBeAFileError = exports.BadRequest_DestinationSameError = exports.BadRequest_DatetimeParseError = exports.BadRequest_CantMoveWithMultipleLocationsError = exports.BadRequest_CannotDownloadDirectoryError = exports.BadRequest_AttachmentTooLargeError = exports.BadRequest_AgentUpgradeRequiredError = exports.BadRequestError = void 0;
|
6
|
-
exports.handleErrorResponse = exports.SiteConfiguration_UserRequestsEnabledRequiredError = exports.SiteConfiguration_TrialLockedError = exports.SiteConfiguration_TrialExpiredError = exports.SiteConfiguration_SiteWasRemovedError = exports.SiteConfiguration_NoAccountForSiteError = exports.SiteConfiguration_AccountOverdueError = exports.SiteConfiguration_AccountAlreadyExistsError = exports.SiteConfigurationError = exports.ServiceUnavailable_UploadsUnavailableError = exports.ServiceUnavailable_AutomationsUnavailableError = exports.ServiceUnavailable_AgentUnavailableError = exports.ServiceUnavailableError = exports.RateLimited_TooManySharesError = exports.RateLimited_TooManyRequestsError = exports.RateLimited_TooManyLoginAttemptsError = exports.RateLimited_TooManyConcurrentRequestsError = exports.RateLimited_ReauthenticationRateLimitedError = exports.RateLimited_DuplicateShareRecipientError = exports.RateLimitedError = exports.ProcessingFailure_UpdatesNotAllowedForRemotesError = exports.ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = exports.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = exports.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = exports.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = exports.ProcessingFailure_SubfolderLockedError = exports.ProcessingFailure_ResourceLockedError = exports.ProcessingFailure_RemoteServerErrorError = exports.ProcessingFailure_RecipientAlreadySharedError = exports.ProcessingFailure_PathTooLongError = exports.ProcessingFailure_MultipleProcessingErrorsError = exports.ProcessingFailure_ModelSaveErrorError = exports.ProcessingFailure_InvalidRangeError = exports.ProcessingFailure_InvalidFilenameError = exports.ProcessingFailure_InvalidFileTypeError = exports.ProcessingFailure_InvalidBundleCodeError = exports.ProcessingFailure_HistoryUnavailableError = exports.ProcessingFailure_FolderNotEmptyError = exports.ProcessingFailure_FolderLockedError = exports.ProcessingFailure_FileUploadedToWrongRegionError = exports.ProcessingFailure_FileTooBigToEncryptError = exports.ProcessingFailure_FileTooBigToDecryptError = exports.ProcessingFailure_FilePendingProcessingError = exports.ProcessingFailure_FileNotUploadedError = exports.ProcessingFailure_FileLockedError = exports.ProcessingFailure_FailedToChangePasswordError = exports.ProcessingFailure_ExportNotReadyError = exports.ProcessingFailure_ExportFailureError = exports.ProcessingFailure_ExpiredPublicKeyError = exports.ProcessingFailure_ExpiredPrivateKeyError = exports.ProcessingFailure_DestinationParentDoesNotExistError = exports.ProcessingFailure_DestinationParentConflictError = exports.ProcessingFailure_DestinationFolderLimitedError = exports.ProcessingFailure_DestinationExistsError = exports.ProcessingFailure_CouldNotCreateParentError = exports.ProcessingFailure_BundleOperationRequiresSubfolderError = exports.ProcessingFailure_BundleOnlyAllowsPreviewsError = exports.ProcessingFailure_AutomationCannotBeRunManuallyError = exports.ProcessingFailureError = exports.NotImplementedError = exports.NotFound_UserNotFoundError = exports.NotFound_SiteNotFoundError = exports.NotFound_PlanNotFoundError = exports.NotFound_NestedNotFoundError = exports.NotFound_InboxNotFoundError = exports.NotFound_GroupNotFoundError = exports.NotFound_FolderNotFoundError = exports.NotFound_FileUploadNotFoundError = exports.NotFound_FileNotFoundError = exports.NotFound_CodeNotFoundError = exports.NotFound_BundleRegistrationNotFoundError = exports.NotFound_BundlePathNotFoundError = void 0;
|
6
|
+
exports.handleErrorResponse = exports.SiteConfiguration_UserRequestsEnabledRequiredError = exports.SiteConfiguration_TrialLockedError = exports.SiteConfiguration_TrialExpiredError = exports.SiteConfiguration_SiteWasRemovedError = exports.SiteConfiguration_NoAccountForSiteError = exports.SiteConfiguration_AccountOverdueError = exports.SiteConfiguration_AccountAlreadyExistsError = exports.SiteConfigurationError = exports.ServiceUnavailable_UploadsUnavailableError = exports.ServiceUnavailable_AutomationsUnavailableError = exports.ServiceUnavailable_AgentUnavailableError = exports.ServiceUnavailableError = exports.RateLimited_TooManySharesError = exports.RateLimited_TooManyRequestsError = exports.RateLimited_TooManyLoginAttemptsError = exports.RateLimited_TooManyConcurrentRequestsError = exports.RateLimited_ReauthenticationRateLimitedError = exports.RateLimited_DuplicateShareRecipientError = exports.RateLimitedError = exports.ProcessingFailure_UpdatesNotAllowedForRemotesError = exports.ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = exports.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = exports.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = exports.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = exports.ProcessingFailure_SubfolderLockedError = exports.ProcessingFailure_ResourceLockedError = exports.ProcessingFailure_RemoteServerErrorError = exports.ProcessingFailure_RecipientAlreadySharedError = exports.ProcessingFailure_PathTooLongError = exports.ProcessingFailure_MultipleProcessingErrorsError = exports.ProcessingFailure_ModelSaveErrorError = exports.ProcessingFailure_InvalidRangeError = exports.ProcessingFailure_InvalidFilenameError = exports.ProcessingFailure_InvalidFileTypeError = exports.ProcessingFailure_InvalidBundleCodeError = exports.ProcessingFailure_HistoryUnavailableError = exports.ProcessingFailure_FolderNotEmptyError = exports.ProcessingFailure_FolderLockedError = exports.ProcessingFailure_FilenameTooLongError = exports.ProcessingFailure_FileUploadedToWrongRegionError = exports.ProcessingFailure_FileTooBigToEncryptError = exports.ProcessingFailure_FileTooBigToDecryptError = exports.ProcessingFailure_FilePendingProcessingError = exports.ProcessingFailure_FileNotUploadedError = exports.ProcessingFailure_FileLockedError = exports.ProcessingFailure_FailedToChangePasswordError = exports.ProcessingFailure_ExportNotReadyError = exports.ProcessingFailure_ExportFailureError = exports.ProcessingFailure_ExpiredPublicKeyError = exports.ProcessingFailure_ExpiredPrivateKeyError = exports.ProcessingFailure_DestinationParentDoesNotExistError = exports.ProcessingFailure_DestinationParentConflictError = exports.ProcessingFailure_DestinationFolderLimitedError = exports.ProcessingFailure_DestinationExistsError = exports.ProcessingFailure_CouldNotCreateParentError = exports.ProcessingFailure_BundleOperationRequiresSubfolderError = exports.ProcessingFailure_BundleOnlyAllowsPreviewsError = exports.ProcessingFailure_AutomationCannotBeRunManuallyError = exports.ProcessingFailureError = exports.NotImplementedError = exports.NotFound_UserNotFoundError = exports.NotFound_SiteNotFoundError = exports.NotFound_PlanNotFoundError = exports.NotFound_NestedNotFoundError = exports.NotFound_InboxNotFoundError = exports.NotFound_GroupNotFoundError = exports.NotFound_FolderNotFoundError = exports.NotFound_FileUploadNotFoundError = exports.NotFound_FileNotFoundError = exports.NotFound_CodeNotFoundError = exports.NotFound_BundleRegistrationNotFoundError = exports.NotFound_BundlePathNotFoundError = void 0;
|
7
7
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
8
8
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
9
9
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
@@ -1708,241 +1708,253 @@ var ProcessingFailure_FileUploadedToWrongRegionError = exports.ProcessingFailure
|
|
1708
1708
|
return (0, _createClass2.default)(ProcessingFailure_FileUploadedToWrongRegionError);
|
1709
1709
|
}(ProcessingFailureError);
|
1710
1710
|
errorClasses.ProcessingFailure_FileUploadedToWrongRegionError = ProcessingFailure_FileUploadedToWrongRegionError;
|
1711
|
-
var
|
1712
|
-
function
|
1711
|
+
var ProcessingFailure_FilenameTooLongError = exports.ProcessingFailure_FilenameTooLongError = /*#__PURE__*/function (_ProcessingFailureErr20) {
|
1712
|
+
function ProcessingFailure_FilenameTooLongError(message, code, errorData) {
|
1713
1713
|
var _this137;
|
1714
|
-
(0, _classCallCheck2.default)(this,
|
1715
|
-
_this137 = _callSuper(this,
|
1716
|
-
_this137.name = '
|
1714
|
+
(0, _classCallCheck2.default)(this, ProcessingFailure_FilenameTooLongError);
|
1715
|
+
_this137 = _callSuper(this, ProcessingFailure_FilenameTooLongError, [message, code, errorData]);
|
1716
|
+
_this137.name = 'ProcessingFailure_FilenameTooLongError';
|
1717
1717
|
return _this137;
|
1718
1718
|
}
|
1719
|
-
(0, _inherits2.default)(
|
1719
|
+
(0, _inherits2.default)(ProcessingFailure_FilenameTooLongError, _ProcessingFailureErr20);
|
1720
|
+
return (0, _createClass2.default)(ProcessingFailure_FilenameTooLongError);
|
1721
|
+
}(ProcessingFailureError);
|
1722
|
+
errorClasses.ProcessingFailure_FilenameTooLongError = ProcessingFailure_FilenameTooLongError;
|
1723
|
+
var ProcessingFailure_FolderLockedError = exports.ProcessingFailure_FolderLockedError = /*#__PURE__*/function (_ProcessingFailureErr21) {
|
1724
|
+
function ProcessingFailure_FolderLockedError(message, code, errorData) {
|
1725
|
+
var _this138;
|
1726
|
+
(0, _classCallCheck2.default)(this, ProcessingFailure_FolderLockedError);
|
1727
|
+
_this138 = _callSuper(this, ProcessingFailure_FolderLockedError, [message, code, errorData]);
|
1728
|
+
_this138.name = 'ProcessingFailure_FolderLockedError';
|
1729
|
+
return _this138;
|
1730
|
+
}
|
1731
|
+
(0, _inherits2.default)(ProcessingFailure_FolderLockedError, _ProcessingFailureErr21);
|
1720
1732
|
return (0, _createClass2.default)(ProcessingFailure_FolderLockedError);
|
1721
1733
|
}(ProcessingFailureError);
|
1722
1734
|
errorClasses.ProcessingFailure_FolderLockedError = ProcessingFailure_FolderLockedError;
|
1723
|
-
var ProcessingFailure_FolderNotEmptyError = exports.ProcessingFailure_FolderNotEmptyError = /*#__PURE__*/function (
|
1735
|
+
var ProcessingFailure_FolderNotEmptyError = exports.ProcessingFailure_FolderNotEmptyError = /*#__PURE__*/function (_ProcessingFailureErr22) {
|
1724
1736
|
function ProcessingFailure_FolderNotEmptyError(message, code, errorData) {
|
1725
|
-
var
|
1737
|
+
var _this139;
|
1726
1738
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FolderNotEmptyError);
|
1727
|
-
|
1728
|
-
|
1729
|
-
return
|
1739
|
+
_this139 = _callSuper(this, ProcessingFailure_FolderNotEmptyError, [message, code, errorData]);
|
1740
|
+
_this139.name = 'ProcessingFailure_FolderNotEmptyError';
|
1741
|
+
return _this139;
|
1730
1742
|
}
|
1731
|
-
(0, _inherits2.default)(ProcessingFailure_FolderNotEmptyError,
|
1743
|
+
(0, _inherits2.default)(ProcessingFailure_FolderNotEmptyError, _ProcessingFailureErr22);
|
1732
1744
|
return (0, _createClass2.default)(ProcessingFailure_FolderNotEmptyError);
|
1733
1745
|
}(ProcessingFailureError);
|
1734
1746
|
errorClasses.ProcessingFailure_FolderNotEmptyError = ProcessingFailure_FolderNotEmptyError;
|
1735
|
-
var ProcessingFailure_HistoryUnavailableError = exports.ProcessingFailure_HistoryUnavailableError = /*#__PURE__*/function (
|
1747
|
+
var ProcessingFailure_HistoryUnavailableError = exports.ProcessingFailure_HistoryUnavailableError = /*#__PURE__*/function (_ProcessingFailureErr23) {
|
1736
1748
|
function ProcessingFailure_HistoryUnavailableError(message, code, errorData) {
|
1737
|
-
var
|
1749
|
+
var _this140;
|
1738
1750
|
(0, _classCallCheck2.default)(this, ProcessingFailure_HistoryUnavailableError);
|
1739
|
-
|
1740
|
-
|
1741
|
-
return
|
1751
|
+
_this140 = _callSuper(this, ProcessingFailure_HistoryUnavailableError, [message, code, errorData]);
|
1752
|
+
_this140.name = 'ProcessingFailure_HistoryUnavailableError';
|
1753
|
+
return _this140;
|
1742
1754
|
}
|
1743
|
-
(0, _inherits2.default)(ProcessingFailure_HistoryUnavailableError,
|
1755
|
+
(0, _inherits2.default)(ProcessingFailure_HistoryUnavailableError, _ProcessingFailureErr23);
|
1744
1756
|
return (0, _createClass2.default)(ProcessingFailure_HistoryUnavailableError);
|
1745
1757
|
}(ProcessingFailureError);
|
1746
1758
|
errorClasses.ProcessingFailure_HistoryUnavailableError = ProcessingFailure_HistoryUnavailableError;
|
1747
|
-
var ProcessingFailure_InvalidBundleCodeError = exports.ProcessingFailure_InvalidBundleCodeError = /*#__PURE__*/function (
|
1759
|
+
var ProcessingFailure_InvalidBundleCodeError = exports.ProcessingFailure_InvalidBundleCodeError = /*#__PURE__*/function (_ProcessingFailureErr24) {
|
1748
1760
|
function ProcessingFailure_InvalidBundleCodeError(message, code, errorData) {
|
1749
|
-
var
|
1761
|
+
var _this141;
|
1750
1762
|
(0, _classCallCheck2.default)(this, ProcessingFailure_InvalidBundleCodeError);
|
1751
|
-
|
1752
|
-
|
1753
|
-
return
|
1763
|
+
_this141 = _callSuper(this, ProcessingFailure_InvalidBundleCodeError, [message, code, errorData]);
|
1764
|
+
_this141.name = 'ProcessingFailure_InvalidBundleCodeError';
|
1765
|
+
return _this141;
|
1754
1766
|
}
|
1755
|
-
(0, _inherits2.default)(ProcessingFailure_InvalidBundleCodeError,
|
1767
|
+
(0, _inherits2.default)(ProcessingFailure_InvalidBundleCodeError, _ProcessingFailureErr24);
|
1756
1768
|
return (0, _createClass2.default)(ProcessingFailure_InvalidBundleCodeError);
|
1757
1769
|
}(ProcessingFailureError);
|
1758
1770
|
errorClasses.ProcessingFailure_InvalidBundleCodeError = ProcessingFailure_InvalidBundleCodeError;
|
1759
|
-
var ProcessingFailure_InvalidFileTypeError = exports.ProcessingFailure_InvalidFileTypeError = /*#__PURE__*/function (
|
1771
|
+
var ProcessingFailure_InvalidFileTypeError = exports.ProcessingFailure_InvalidFileTypeError = /*#__PURE__*/function (_ProcessingFailureErr25) {
|
1760
1772
|
function ProcessingFailure_InvalidFileTypeError(message, code, errorData) {
|
1761
|
-
var
|
1773
|
+
var _this142;
|
1762
1774
|
(0, _classCallCheck2.default)(this, ProcessingFailure_InvalidFileTypeError);
|
1763
|
-
|
1764
|
-
|
1765
|
-
return
|
1775
|
+
_this142 = _callSuper(this, ProcessingFailure_InvalidFileTypeError, [message, code, errorData]);
|
1776
|
+
_this142.name = 'ProcessingFailure_InvalidFileTypeError';
|
1777
|
+
return _this142;
|
1766
1778
|
}
|
1767
|
-
(0, _inherits2.default)(ProcessingFailure_InvalidFileTypeError,
|
1779
|
+
(0, _inherits2.default)(ProcessingFailure_InvalidFileTypeError, _ProcessingFailureErr25);
|
1768
1780
|
return (0, _createClass2.default)(ProcessingFailure_InvalidFileTypeError);
|
1769
1781
|
}(ProcessingFailureError);
|
1770
1782
|
errorClasses.ProcessingFailure_InvalidFileTypeError = ProcessingFailure_InvalidFileTypeError;
|
1771
|
-
var ProcessingFailure_InvalidFilenameError = exports.ProcessingFailure_InvalidFilenameError = /*#__PURE__*/function (
|
1783
|
+
var ProcessingFailure_InvalidFilenameError = exports.ProcessingFailure_InvalidFilenameError = /*#__PURE__*/function (_ProcessingFailureErr26) {
|
1772
1784
|
function ProcessingFailure_InvalidFilenameError(message, code, errorData) {
|
1773
|
-
var
|
1785
|
+
var _this143;
|
1774
1786
|
(0, _classCallCheck2.default)(this, ProcessingFailure_InvalidFilenameError);
|
1775
|
-
|
1776
|
-
|
1777
|
-
return
|
1787
|
+
_this143 = _callSuper(this, ProcessingFailure_InvalidFilenameError, [message, code, errorData]);
|
1788
|
+
_this143.name = 'ProcessingFailure_InvalidFilenameError';
|
1789
|
+
return _this143;
|
1778
1790
|
}
|
1779
|
-
(0, _inherits2.default)(ProcessingFailure_InvalidFilenameError,
|
1791
|
+
(0, _inherits2.default)(ProcessingFailure_InvalidFilenameError, _ProcessingFailureErr26);
|
1780
1792
|
return (0, _createClass2.default)(ProcessingFailure_InvalidFilenameError);
|
1781
1793
|
}(ProcessingFailureError);
|
1782
1794
|
errorClasses.ProcessingFailure_InvalidFilenameError = ProcessingFailure_InvalidFilenameError;
|
1783
|
-
var ProcessingFailure_InvalidRangeError = exports.ProcessingFailure_InvalidRangeError = /*#__PURE__*/function (
|
1795
|
+
var ProcessingFailure_InvalidRangeError = exports.ProcessingFailure_InvalidRangeError = /*#__PURE__*/function (_ProcessingFailureErr27) {
|
1784
1796
|
function ProcessingFailure_InvalidRangeError(message, code, errorData) {
|
1785
|
-
var
|
1797
|
+
var _this144;
|
1786
1798
|
(0, _classCallCheck2.default)(this, ProcessingFailure_InvalidRangeError);
|
1787
|
-
|
1788
|
-
|
1789
|
-
return
|
1799
|
+
_this144 = _callSuper(this, ProcessingFailure_InvalidRangeError, [message, code, errorData]);
|
1800
|
+
_this144.name = 'ProcessingFailure_InvalidRangeError';
|
1801
|
+
return _this144;
|
1790
1802
|
}
|
1791
|
-
(0, _inherits2.default)(ProcessingFailure_InvalidRangeError,
|
1803
|
+
(0, _inherits2.default)(ProcessingFailure_InvalidRangeError, _ProcessingFailureErr27);
|
1792
1804
|
return (0, _createClass2.default)(ProcessingFailure_InvalidRangeError);
|
1793
1805
|
}(ProcessingFailureError);
|
1794
1806
|
errorClasses.ProcessingFailure_InvalidRangeError = ProcessingFailure_InvalidRangeError;
|
1795
|
-
var ProcessingFailure_ModelSaveErrorError = exports.ProcessingFailure_ModelSaveErrorError = /*#__PURE__*/function (
|
1807
|
+
var ProcessingFailure_ModelSaveErrorError = exports.ProcessingFailure_ModelSaveErrorError = /*#__PURE__*/function (_ProcessingFailureErr28) {
|
1796
1808
|
function ProcessingFailure_ModelSaveErrorError(message, code, errorData) {
|
1797
|
-
var
|
1809
|
+
var _this145;
|
1798
1810
|
(0, _classCallCheck2.default)(this, ProcessingFailure_ModelSaveErrorError);
|
1799
|
-
|
1800
|
-
|
1801
|
-
return
|
1811
|
+
_this145 = _callSuper(this, ProcessingFailure_ModelSaveErrorError, [message, code, errorData]);
|
1812
|
+
_this145.name = 'ProcessingFailure_ModelSaveErrorError';
|
1813
|
+
return _this145;
|
1802
1814
|
}
|
1803
|
-
(0, _inherits2.default)(ProcessingFailure_ModelSaveErrorError,
|
1815
|
+
(0, _inherits2.default)(ProcessingFailure_ModelSaveErrorError, _ProcessingFailureErr28);
|
1804
1816
|
return (0, _createClass2.default)(ProcessingFailure_ModelSaveErrorError);
|
1805
1817
|
}(ProcessingFailureError);
|
1806
1818
|
errorClasses.ProcessingFailure_ModelSaveErrorError = ProcessingFailure_ModelSaveErrorError;
|
1807
|
-
var ProcessingFailure_MultipleProcessingErrorsError = exports.ProcessingFailure_MultipleProcessingErrorsError = /*#__PURE__*/function (
|
1819
|
+
var ProcessingFailure_MultipleProcessingErrorsError = exports.ProcessingFailure_MultipleProcessingErrorsError = /*#__PURE__*/function (_ProcessingFailureErr29) {
|
1808
1820
|
function ProcessingFailure_MultipleProcessingErrorsError(message, code, errorData) {
|
1809
|
-
var
|
1821
|
+
var _this146;
|
1810
1822
|
(0, _classCallCheck2.default)(this, ProcessingFailure_MultipleProcessingErrorsError);
|
1811
|
-
|
1812
|
-
|
1813
|
-
return
|
1823
|
+
_this146 = _callSuper(this, ProcessingFailure_MultipleProcessingErrorsError, [message, code, errorData]);
|
1824
|
+
_this146.name = 'ProcessingFailure_MultipleProcessingErrorsError';
|
1825
|
+
return _this146;
|
1814
1826
|
}
|
1815
|
-
(0, _inherits2.default)(ProcessingFailure_MultipleProcessingErrorsError,
|
1827
|
+
(0, _inherits2.default)(ProcessingFailure_MultipleProcessingErrorsError, _ProcessingFailureErr29);
|
1816
1828
|
return (0, _createClass2.default)(ProcessingFailure_MultipleProcessingErrorsError);
|
1817
1829
|
}(ProcessingFailureError);
|
1818
1830
|
errorClasses.ProcessingFailure_MultipleProcessingErrorsError = ProcessingFailure_MultipleProcessingErrorsError;
|
1819
|
-
var ProcessingFailure_PathTooLongError = exports.ProcessingFailure_PathTooLongError = /*#__PURE__*/function (
|
1831
|
+
var ProcessingFailure_PathTooLongError = exports.ProcessingFailure_PathTooLongError = /*#__PURE__*/function (_ProcessingFailureErr30) {
|
1820
1832
|
function ProcessingFailure_PathTooLongError(message, code, errorData) {
|
1821
|
-
var
|
1833
|
+
var _this147;
|
1822
1834
|
(0, _classCallCheck2.default)(this, ProcessingFailure_PathTooLongError);
|
1823
|
-
|
1824
|
-
|
1825
|
-
return
|
1835
|
+
_this147 = _callSuper(this, ProcessingFailure_PathTooLongError, [message, code, errorData]);
|
1836
|
+
_this147.name = 'ProcessingFailure_PathTooLongError';
|
1837
|
+
return _this147;
|
1826
1838
|
}
|
1827
|
-
(0, _inherits2.default)(ProcessingFailure_PathTooLongError,
|
1839
|
+
(0, _inherits2.default)(ProcessingFailure_PathTooLongError, _ProcessingFailureErr30);
|
1828
1840
|
return (0, _createClass2.default)(ProcessingFailure_PathTooLongError);
|
1829
1841
|
}(ProcessingFailureError);
|
1830
1842
|
errorClasses.ProcessingFailure_PathTooLongError = ProcessingFailure_PathTooLongError;
|
1831
|
-
var ProcessingFailure_RecipientAlreadySharedError = exports.ProcessingFailure_RecipientAlreadySharedError = /*#__PURE__*/function (
|
1843
|
+
var ProcessingFailure_RecipientAlreadySharedError = exports.ProcessingFailure_RecipientAlreadySharedError = /*#__PURE__*/function (_ProcessingFailureErr31) {
|
1832
1844
|
function ProcessingFailure_RecipientAlreadySharedError(message, code, errorData) {
|
1833
|
-
var
|
1845
|
+
var _this148;
|
1834
1846
|
(0, _classCallCheck2.default)(this, ProcessingFailure_RecipientAlreadySharedError);
|
1835
|
-
|
1836
|
-
|
1837
|
-
return
|
1847
|
+
_this148 = _callSuper(this, ProcessingFailure_RecipientAlreadySharedError, [message, code, errorData]);
|
1848
|
+
_this148.name = 'ProcessingFailure_RecipientAlreadySharedError';
|
1849
|
+
return _this148;
|
1838
1850
|
}
|
1839
|
-
(0, _inherits2.default)(ProcessingFailure_RecipientAlreadySharedError,
|
1851
|
+
(0, _inherits2.default)(ProcessingFailure_RecipientAlreadySharedError, _ProcessingFailureErr31);
|
1840
1852
|
return (0, _createClass2.default)(ProcessingFailure_RecipientAlreadySharedError);
|
1841
1853
|
}(ProcessingFailureError);
|
1842
1854
|
errorClasses.ProcessingFailure_RecipientAlreadySharedError = ProcessingFailure_RecipientAlreadySharedError;
|
1843
|
-
var ProcessingFailure_RemoteServerErrorError = exports.ProcessingFailure_RemoteServerErrorError = /*#__PURE__*/function (
|
1855
|
+
var ProcessingFailure_RemoteServerErrorError = exports.ProcessingFailure_RemoteServerErrorError = /*#__PURE__*/function (_ProcessingFailureErr32) {
|
1844
1856
|
function ProcessingFailure_RemoteServerErrorError(message, code, errorData) {
|
1845
|
-
var
|
1857
|
+
var _this149;
|
1846
1858
|
(0, _classCallCheck2.default)(this, ProcessingFailure_RemoteServerErrorError);
|
1847
|
-
|
1848
|
-
|
1849
|
-
return
|
1859
|
+
_this149 = _callSuper(this, ProcessingFailure_RemoteServerErrorError, [message, code, errorData]);
|
1860
|
+
_this149.name = 'ProcessingFailure_RemoteServerErrorError';
|
1861
|
+
return _this149;
|
1850
1862
|
}
|
1851
|
-
(0, _inherits2.default)(ProcessingFailure_RemoteServerErrorError,
|
1863
|
+
(0, _inherits2.default)(ProcessingFailure_RemoteServerErrorError, _ProcessingFailureErr32);
|
1852
1864
|
return (0, _createClass2.default)(ProcessingFailure_RemoteServerErrorError);
|
1853
1865
|
}(ProcessingFailureError);
|
1854
1866
|
errorClasses.ProcessingFailure_RemoteServerErrorError = ProcessingFailure_RemoteServerErrorError;
|
1855
|
-
var ProcessingFailure_ResourceLockedError = exports.ProcessingFailure_ResourceLockedError = /*#__PURE__*/function (
|
1867
|
+
var ProcessingFailure_ResourceLockedError = exports.ProcessingFailure_ResourceLockedError = /*#__PURE__*/function (_ProcessingFailureErr33) {
|
1856
1868
|
function ProcessingFailure_ResourceLockedError(message, code, errorData) {
|
1857
|
-
var
|
1869
|
+
var _this150;
|
1858
1870
|
(0, _classCallCheck2.default)(this, ProcessingFailure_ResourceLockedError);
|
1859
|
-
|
1860
|
-
|
1861
|
-
return
|
1871
|
+
_this150 = _callSuper(this, ProcessingFailure_ResourceLockedError, [message, code, errorData]);
|
1872
|
+
_this150.name = 'ProcessingFailure_ResourceLockedError';
|
1873
|
+
return _this150;
|
1862
1874
|
}
|
1863
|
-
(0, _inherits2.default)(ProcessingFailure_ResourceLockedError,
|
1875
|
+
(0, _inherits2.default)(ProcessingFailure_ResourceLockedError, _ProcessingFailureErr33);
|
1864
1876
|
return (0, _createClass2.default)(ProcessingFailure_ResourceLockedError);
|
1865
1877
|
}(ProcessingFailureError);
|
1866
1878
|
errorClasses.ProcessingFailure_ResourceLockedError = ProcessingFailure_ResourceLockedError;
|
1867
|
-
var ProcessingFailure_SubfolderLockedError = exports.ProcessingFailure_SubfolderLockedError = /*#__PURE__*/function (
|
1879
|
+
var ProcessingFailure_SubfolderLockedError = exports.ProcessingFailure_SubfolderLockedError = /*#__PURE__*/function (_ProcessingFailureErr34) {
|
1868
1880
|
function ProcessingFailure_SubfolderLockedError(message, code, errorData) {
|
1869
|
-
var
|
1881
|
+
var _this151;
|
1870
1882
|
(0, _classCallCheck2.default)(this, ProcessingFailure_SubfolderLockedError);
|
1871
|
-
|
1872
|
-
|
1873
|
-
return
|
1883
|
+
_this151 = _callSuper(this, ProcessingFailure_SubfolderLockedError, [message, code, errorData]);
|
1884
|
+
_this151.name = 'ProcessingFailure_SubfolderLockedError';
|
1885
|
+
return _this151;
|
1874
1886
|
}
|
1875
|
-
(0, _inherits2.default)(ProcessingFailure_SubfolderLockedError,
|
1887
|
+
(0, _inherits2.default)(ProcessingFailure_SubfolderLockedError, _ProcessingFailureErr34);
|
1876
1888
|
return (0, _createClass2.default)(ProcessingFailure_SubfolderLockedError);
|
1877
1889
|
}(ProcessingFailureError);
|
1878
1890
|
errorClasses.ProcessingFailure_SubfolderLockedError = ProcessingFailure_SubfolderLockedError;
|
1879
|
-
var ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = exports.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = /*#__PURE__*/function (
|
1891
|
+
var ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = exports.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = /*#__PURE__*/function (_ProcessingFailureErr35) {
|
1880
1892
|
function ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError(message, code, errorData) {
|
1881
|
-
var
|
1893
|
+
var _this152;
|
1882
1894
|
(0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
|
1883
|
-
|
1884
|
-
|
1885
|
-
return
|
1895
|
+
_this152 = _callSuper(this, ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError, [message, code, errorData]);
|
1896
|
+
_this152.name = 'ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError';
|
1897
|
+
return _this152;
|
1886
1898
|
}
|
1887
|
-
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError,
|
1899
|
+
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError, _ProcessingFailureErr35);
|
1888
1900
|
return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
|
1889
1901
|
}(ProcessingFailureError);
|
1890
1902
|
errorClasses.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError;
|
1891
|
-
var ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = exports.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = /*#__PURE__*/function (
|
1903
|
+
var ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = exports.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = /*#__PURE__*/function (_ProcessingFailureErr36) {
|
1892
1904
|
function ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError(message, code, errorData) {
|
1893
|
-
var
|
1905
|
+
var _this153;
|
1894
1906
|
(0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError);
|
1895
|
-
|
1896
|
-
|
1897
|
-
return
|
1907
|
+
_this153 = _callSuper(this, ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError, [message, code, errorData]);
|
1908
|
+
_this153.name = 'ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError';
|
1909
|
+
return _this153;
|
1898
1910
|
}
|
1899
|
-
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError,
|
1911
|
+
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError, _ProcessingFailureErr36);
|
1900
1912
|
return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError);
|
1901
1913
|
}(ProcessingFailureError);
|
1902
1914
|
errorClasses.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError;
|
1903
|
-
var ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = exports.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = /*#__PURE__*/function (
|
1915
|
+
var ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = exports.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = /*#__PURE__*/function (_ProcessingFailureErr37) {
|
1904
1916
|
function ProcessingFailure_TwoFactorAuthenticationGeneralErrorError(message, code, errorData) {
|
1905
|
-
var
|
1917
|
+
var _this154;
|
1906
1918
|
(0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationGeneralErrorError);
|
1907
|
-
|
1908
|
-
|
1909
|
-
return
|
1919
|
+
_this154 = _callSuper(this, ProcessingFailure_TwoFactorAuthenticationGeneralErrorError, [message, code, errorData]);
|
1920
|
+
_this154.name = 'ProcessingFailure_TwoFactorAuthenticationGeneralErrorError';
|
1921
|
+
return _this154;
|
1910
1922
|
}
|
1911
|
-
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationGeneralErrorError,
|
1923
|
+
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationGeneralErrorError, _ProcessingFailureErr37);
|
1912
1924
|
return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationGeneralErrorError);
|
1913
1925
|
}(ProcessingFailureError);
|
1914
1926
|
errorClasses.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = ProcessingFailure_TwoFactorAuthenticationGeneralErrorError;
|
1915
|
-
var ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = exports.ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = /*#__PURE__*/function (
|
1927
|
+
var ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = exports.ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = /*#__PURE__*/function (_ProcessingFailureErr38) {
|
1916
1928
|
function ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError(message, code, errorData) {
|
1917
|
-
var
|
1929
|
+
var _this155;
|
1918
1930
|
(0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError);
|
1919
|
-
|
1920
|
-
|
1921
|
-
return
|
1931
|
+
_this155 = _callSuper(this, ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError, [message, code, errorData]);
|
1932
|
+
_this155.name = 'ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError';
|
1933
|
+
return _this155;
|
1922
1934
|
}
|
1923
|
-
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError,
|
1935
|
+
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError, _ProcessingFailureErr38);
|
1924
1936
|
return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError);
|
1925
1937
|
}(ProcessingFailureError);
|
1926
1938
|
errorClasses.ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError;
|
1927
|
-
var ProcessingFailure_UpdatesNotAllowedForRemotesError = exports.ProcessingFailure_UpdatesNotAllowedForRemotesError = /*#__PURE__*/function (
|
1939
|
+
var ProcessingFailure_UpdatesNotAllowedForRemotesError = exports.ProcessingFailure_UpdatesNotAllowedForRemotesError = /*#__PURE__*/function (_ProcessingFailureErr39) {
|
1928
1940
|
function ProcessingFailure_UpdatesNotAllowedForRemotesError(message, code, errorData) {
|
1929
|
-
var
|
1941
|
+
var _this156;
|
1930
1942
|
(0, _classCallCheck2.default)(this, ProcessingFailure_UpdatesNotAllowedForRemotesError);
|
1931
|
-
|
1932
|
-
|
1933
|
-
return
|
1943
|
+
_this156 = _callSuper(this, ProcessingFailure_UpdatesNotAllowedForRemotesError, [message, code, errorData]);
|
1944
|
+
_this156.name = 'ProcessingFailure_UpdatesNotAllowedForRemotesError';
|
1945
|
+
return _this156;
|
1934
1946
|
}
|
1935
|
-
(0, _inherits2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError,
|
1947
|
+
(0, _inherits2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError, _ProcessingFailureErr39);
|
1936
1948
|
return (0, _createClass2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError);
|
1937
1949
|
}(ProcessingFailureError);
|
1938
1950
|
errorClasses.ProcessingFailure_UpdatesNotAllowedForRemotesError = ProcessingFailure_UpdatesNotAllowedForRemotesError;
|
1939
1951
|
var RateLimited_DuplicateShareRecipientError = exports.RateLimited_DuplicateShareRecipientError = /*#__PURE__*/function (_RateLimitedError) {
|
1940
1952
|
function RateLimited_DuplicateShareRecipientError(message, code, errorData) {
|
1941
|
-
var
|
1953
|
+
var _this157;
|
1942
1954
|
(0, _classCallCheck2.default)(this, RateLimited_DuplicateShareRecipientError);
|
1943
|
-
|
1944
|
-
|
1945
|
-
return
|
1955
|
+
_this157 = _callSuper(this, RateLimited_DuplicateShareRecipientError, [message, code, errorData]);
|
1956
|
+
_this157.name = 'RateLimited_DuplicateShareRecipientError';
|
1957
|
+
return _this157;
|
1946
1958
|
}
|
1947
1959
|
(0, _inherits2.default)(RateLimited_DuplicateShareRecipientError, _RateLimitedError);
|
1948
1960
|
return (0, _createClass2.default)(RateLimited_DuplicateShareRecipientError);
|
@@ -1950,11 +1962,11 @@ var RateLimited_DuplicateShareRecipientError = exports.RateLimited_DuplicateShar
|
|
1950
1962
|
errorClasses.RateLimited_DuplicateShareRecipientError = RateLimited_DuplicateShareRecipientError;
|
1951
1963
|
var RateLimited_ReauthenticationRateLimitedError = exports.RateLimited_ReauthenticationRateLimitedError = /*#__PURE__*/function (_RateLimitedError2) {
|
1952
1964
|
function RateLimited_ReauthenticationRateLimitedError(message, code, errorData) {
|
1953
|
-
var
|
1965
|
+
var _this158;
|
1954
1966
|
(0, _classCallCheck2.default)(this, RateLimited_ReauthenticationRateLimitedError);
|
1955
|
-
|
1956
|
-
|
1957
|
-
return
|
1967
|
+
_this158 = _callSuper(this, RateLimited_ReauthenticationRateLimitedError, [message, code, errorData]);
|
1968
|
+
_this158.name = 'RateLimited_ReauthenticationRateLimitedError';
|
1969
|
+
return _this158;
|
1958
1970
|
}
|
1959
1971
|
(0, _inherits2.default)(RateLimited_ReauthenticationRateLimitedError, _RateLimitedError2);
|
1960
1972
|
return (0, _createClass2.default)(RateLimited_ReauthenticationRateLimitedError);
|
@@ -1962,11 +1974,11 @@ var RateLimited_ReauthenticationRateLimitedError = exports.RateLimited_Reauthent
|
|
1962
1974
|
errorClasses.RateLimited_ReauthenticationRateLimitedError = RateLimited_ReauthenticationRateLimitedError;
|
1963
1975
|
var RateLimited_TooManyConcurrentRequestsError = exports.RateLimited_TooManyConcurrentRequestsError = /*#__PURE__*/function (_RateLimitedError3) {
|
1964
1976
|
function RateLimited_TooManyConcurrentRequestsError(message, code, errorData) {
|
1965
|
-
var
|
1977
|
+
var _this159;
|
1966
1978
|
(0, _classCallCheck2.default)(this, RateLimited_TooManyConcurrentRequestsError);
|
1967
|
-
|
1968
|
-
|
1969
|
-
return
|
1979
|
+
_this159 = _callSuper(this, RateLimited_TooManyConcurrentRequestsError, [message, code, errorData]);
|
1980
|
+
_this159.name = 'RateLimited_TooManyConcurrentRequestsError';
|
1981
|
+
return _this159;
|
1970
1982
|
}
|
1971
1983
|
(0, _inherits2.default)(RateLimited_TooManyConcurrentRequestsError, _RateLimitedError3);
|
1972
1984
|
return (0, _createClass2.default)(RateLimited_TooManyConcurrentRequestsError);
|
@@ -1974,11 +1986,11 @@ var RateLimited_TooManyConcurrentRequestsError = exports.RateLimited_TooManyConc
|
|
1974
1986
|
errorClasses.RateLimited_TooManyConcurrentRequestsError = RateLimited_TooManyConcurrentRequestsError;
|
1975
1987
|
var RateLimited_TooManyLoginAttemptsError = exports.RateLimited_TooManyLoginAttemptsError = /*#__PURE__*/function (_RateLimitedError4) {
|
1976
1988
|
function RateLimited_TooManyLoginAttemptsError(message, code, errorData) {
|
1977
|
-
var
|
1989
|
+
var _this160;
|
1978
1990
|
(0, _classCallCheck2.default)(this, RateLimited_TooManyLoginAttemptsError);
|
1979
|
-
|
1980
|
-
|
1981
|
-
return
|
1991
|
+
_this160 = _callSuper(this, RateLimited_TooManyLoginAttemptsError, [message, code, errorData]);
|
1992
|
+
_this160.name = 'RateLimited_TooManyLoginAttemptsError';
|
1993
|
+
return _this160;
|
1982
1994
|
}
|
1983
1995
|
(0, _inherits2.default)(RateLimited_TooManyLoginAttemptsError, _RateLimitedError4);
|
1984
1996
|
return (0, _createClass2.default)(RateLimited_TooManyLoginAttemptsError);
|
@@ -1986,11 +1998,11 @@ var RateLimited_TooManyLoginAttemptsError = exports.RateLimited_TooManyLoginAtte
|
|
1986
1998
|
errorClasses.RateLimited_TooManyLoginAttemptsError = RateLimited_TooManyLoginAttemptsError;
|
1987
1999
|
var RateLimited_TooManyRequestsError = exports.RateLimited_TooManyRequestsError = /*#__PURE__*/function (_RateLimitedError5) {
|
1988
2000
|
function RateLimited_TooManyRequestsError(message, code, errorData) {
|
1989
|
-
var
|
2001
|
+
var _this161;
|
1990
2002
|
(0, _classCallCheck2.default)(this, RateLimited_TooManyRequestsError);
|
1991
|
-
|
1992
|
-
|
1993
|
-
return
|
2003
|
+
_this161 = _callSuper(this, RateLimited_TooManyRequestsError, [message, code, errorData]);
|
2004
|
+
_this161.name = 'RateLimited_TooManyRequestsError';
|
2005
|
+
return _this161;
|
1994
2006
|
}
|
1995
2007
|
(0, _inherits2.default)(RateLimited_TooManyRequestsError, _RateLimitedError5);
|
1996
2008
|
return (0, _createClass2.default)(RateLimited_TooManyRequestsError);
|
@@ -1998,11 +2010,11 @@ var RateLimited_TooManyRequestsError = exports.RateLimited_TooManyRequestsError
|
|
1998
2010
|
errorClasses.RateLimited_TooManyRequestsError = RateLimited_TooManyRequestsError;
|
1999
2011
|
var RateLimited_TooManySharesError = exports.RateLimited_TooManySharesError = /*#__PURE__*/function (_RateLimitedError6) {
|
2000
2012
|
function RateLimited_TooManySharesError(message, code, errorData) {
|
2001
|
-
var
|
2013
|
+
var _this162;
|
2002
2014
|
(0, _classCallCheck2.default)(this, RateLimited_TooManySharesError);
|
2003
|
-
|
2004
|
-
|
2005
|
-
return
|
2015
|
+
_this162 = _callSuper(this, RateLimited_TooManySharesError, [message, code, errorData]);
|
2016
|
+
_this162.name = 'RateLimited_TooManySharesError';
|
2017
|
+
return _this162;
|
2006
2018
|
}
|
2007
2019
|
(0, _inherits2.default)(RateLimited_TooManySharesError, _RateLimitedError6);
|
2008
2020
|
return (0, _createClass2.default)(RateLimited_TooManySharesError);
|
@@ -2010,11 +2022,11 @@ var RateLimited_TooManySharesError = exports.RateLimited_TooManySharesError = /*
|
|
2010
2022
|
errorClasses.RateLimited_TooManySharesError = RateLimited_TooManySharesError;
|
2011
2023
|
var ServiceUnavailable_AgentUnavailableError = exports.ServiceUnavailable_AgentUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr) {
|
2012
2024
|
function ServiceUnavailable_AgentUnavailableError(message, code, errorData) {
|
2013
|
-
var
|
2025
|
+
var _this163;
|
2014
2026
|
(0, _classCallCheck2.default)(this, ServiceUnavailable_AgentUnavailableError);
|
2015
|
-
|
2016
|
-
|
2017
|
-
return
|
2027
|
+
_this163 = _callSuper(this, ServiceUnavailable_AgentUnavailableError, [message, code, errorData]);
|
2028
|
+
_this163.name = 'ServiceUnavailable_AgentUnavailableError';
|
2029
|
+
return _this163;
|
2018
2030
|
}
|
2019
2031
|
(0, _inherits2.default)(ServiceUnavailable_AgentUnavailableError, _ServiceUnavailableEr);
|
2020
2032
|
return (0, _createClass2.default)(ServiceUnavailable_AgentUnavailableError);
|
@@ -2022,11 +2034,11 @@ var ServiceUnavailable_AgentUnavailableError = exports.ServiceUnavailable_AgentU
|
|
2022
2034
|
errorClasses.ServiceUnavailable_AgentUnavailableError = ServiceUnavailable_AgentUnavailableError;
|
2023
2035
|
var ServiceUnavailable_AutomationsUnavailableError = exports.ServiceUnavailable_AutomationsUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr2) {
|
2024
2036
|
function ServiceUnavailable_AutomationsUnavailableError(message, code, errorData) {
|
2025
|
-
var
|
2037
|
+
var _this164;
|
2026
2038
|
(0, _classCallCheck2.default)(this, ServiceUnavailable_AutomationsUnavailableError);
|
2027
|
-
|
2028
|
-
|
2029
|
-
return
|
2039
|
+
_this164 = _callSuper(this, ServiceUnavailable_AutomationsUnavailableError, [message, code, errorData]);
|
2040
|
+
_this164.name = 'ServiceUnavailable_AutomationsUnavailableError';
|
2041
|
+
return _this164;
|
2030
2042
|
}
|
2031
2043
|
(0, _inherits2.default)(ServiceUnavailable_AutomationsUnavailableError, _ServiceUnavailableEr2);
|
2032
2044
|
return (0, _createClass2.default)(ServiceUnavailable_AutomationsUnavailableError);
|
@@ -2034,11 +2046,11 @@ var ServiceUnavailable_AutomationsUnavailableError = exports.ServiceUnavailable_
|
|
2034
2046
|
errorClasses.ServiceUnavailable_AutomationsUnavailableError = ServiceUnavailable_AutomationsUnavailableError;
|
2035
2047
|
var ServiceUnavailable_UploadsUnavailableError = exports.ServiceUnavailable_UploadsUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr3) {
|
2036
2048
|
function ServiceUnavailable_UploadsUnavailableError(message, code, errorData) {
|
2037
|
-
var
|
2049
|
+
var _this165;
|
2038
2050
|
(0, _classCallCheck2.default)(this, ServiceUnavailable_UploadsUnavailableError);
|
2039
|
-
|
2040
|
-
|
2041
|
-
return
|
2051
|
+
_this165 = _callSuper(this, ServiceUnavailable_UploadsUnavailableError, [message, code, errorData]);
|
2052
|
+
_this165.name = 'ServiceUnavailable_UploadsUnavailableError';
|
2053
|
+
return _this165;
|
2042
2054
|
}
|
2043
2055
|
(0, _inherits2.default)(ServiceUnavailable_UploadsUnavailableError, _ServiceUnavailableEr3);
|
2044
2056
|
return (0, _createClass2.default)(ServiceUnavailable_UploadsUnavailableError);
|
@@ -2046,11 +2058,11 @@ var ServiceUnavailable_UploadsUnavailableError = exports.ServiceUnavailable_Uplo
|
|
2046
2058
|
errorClasses.ServiceUnavailable_UploadsUnavailableError = ServiceUnavailable_UploadsUnavailableError;
|
2047
2059
|
var SiteConfiguration_AccountAlreadyExistsError = exports.SiteConfiguration_AccountAlreadyExistsError = /*#__PURE__*/function (_SiteConfigurationErr) {
|
2048
2060
|
function SiteConfiguration_AccountAlreadyExistsError(message, code, errorData) {
|
2049
|
-
var
|
2061
|
+
var _this166;
|
2050
2062
|
(0, _classCallCheck2.default)(this, SiteConfiguration_AccountAlreadyExistsError);
|
2051
|
-
|
2052
|
-
|
2053
|
-
return
|
2063
|
+
_this166 = _callSuper(this, SiteConfiguration_AccountAlreadyExistsError, [message, code, errorData]);
|
2064
|
+
_this166.name = 'SiteConfiguration_AccountAlreadyExistsError';
|
2065
|
+
return _this166;
|
2054
2066
|
}
|
2055
2067
|
(0, _inherits2.default)(SiteConfiguration_AccountAlreadyExistsError, _SiteConfigurationErr);
|
2056
2068
|
return (0, _createClass2.default)(SiteConfiguration_AccountAlreadyExistsError);
|
@@ -2058,11 +2070,11 @@ var SiteConfiguration_AccountAlreadyExistsError = exports.SiteConfiguration_Acco
|
|
2058
2070
|
errorClasses.SiteConfiguration_AccountAlreadyExistsError = SiteConfiguration_AccountAlreadyExistsError;
|
2059
2071
|
var SiteConfiguration_AccountOverdueError = exports.SiteConfiguration_AccountOverdueError = /*#__PURE__*/function (_SiteConfigurationErr2) {
|
2060
2072
|
function SiteConfiguration_AccountOverdueError(message, code, errorData) {
|
2061
|
-
var
|
2073
|
+
var _this167;
|
2062
2074
|
(0, _classCallCheck2.default)(this, SiteConfiguration_AccountOverdueError);
|
2063
|
-
|
2064
|
-
|
2065
|
-
return
|
2075
|
+
_this167 = _callSuper(this, SiteConfiguration_AccountOverdueError, [message, code, errorData]);
|
2076
|
+
_this167.name = 'SiteConfiguration_AccountOverdueError';
|
2077
|
+
return _this167;
|
2066
2078
|
}
|
2067
2079
|
(0, _inherits2.default)(SiteConfiguration_AccountOverdueError, _SiteConfigurationErr2);
|
2068
2080
|
return (0, _createClass2.default)(SiteConfiguration_AccountOverdueError);
|
@@ -2070,11 +2082,11 @@ var SiteConfiguration_AccountOverdueError = exports.SiteConfiguration_AccountOve
|
|
2070
2082
|
errorClasses.SiteConfiguration_AccountOverdueError = SiteConfiguration_AccountOverdueError;
|
2071
2083
|
var SiteConfiguration_NoAccountForSiteError = exports.SiteConfiguration_NoAccountForSiteError = /*#__PURE__*/function (_SiteConfigurationErr3) {
|
2072
2084
|
function SiteConfiguration_NoAccountForSiteError(message, code, errorData) {
|
2073
|
-
var
|
2085
|
+
var _this168;
|
2074
2086
|
(0, _classCallCheck2.default)(this, SiteConfiguration_NoAccountForSiteError);
|
2075
|
-
|
2076
|
-
|
2077
|
-
return
|
2087
|
+
_this168 = _callSuper(this, SiteConfiguration_NoAccountForSiteError, [message, code, errorData]);
|
2088
|
+
_this168.name = 'SiteConfiguration_NoAccountForSiteError';
|
2089
|
+
return _this168;
|
2078
2090
|
}
|
2079
2091
|
(0, _inherits2.default)(SiteConfiguration_NoAccountForSiteError, _SiteConfigurationErr3);
|
2080
2092
|
return (0, _createClass2.default)(SiteConfiguration_NoAccountForSiteError);
|
@@ -2082,11 +2094,11 @@ var SiteConfiguration_NoAccountForSiteError = exports.SiteConfiguration_NoAccoun
|
|
2082
2094
|
errorClasses.SiteConfiguration_NoAccountForSiteError = SiteConfiguration_NoAccountForSiteError;
|
2083
2095
|
var SiteConfiguration_SiteWasRemovedError = exports.SiteConfiguration_SiteWasRemovedError = /*#__PURE__*/function (_SiteConfigurationErr4) {
|
2084
2096
|
function SiteConfiguration_SiteWasRemovedError(message, code, errorData) {
|
2085
|
-
var
|
2097
|
+
var _this169;
|
2086
2098
|
(0, _classCallCheck2.default)(this, SiteConfiguration_SiteWasRemovedError);
|
2087
|
-
|
2088
|
-
|
2089
|
-
return
|
2099
|
+
_this169 = _callSuper(this, SiteConfiguration_SiteWasRemovedError, [message, code, errorData]);
|
2100
|
+
_this169.name = 'SiteConfiguration_SiteWasRemovedError';
|
2101
|
+
return _this169;
|
2090
2102
|
}
|
2091
2103
|
(0, _inherits2.default)(SiteConfiguration_SiteWasRemovedError, _SiteConfigurationErr4);
|
2092
2104
|
return (0, _createClass2.default)(SiteConfiguration_SiteWasRemovedError);
|
@@ -2094,11 +2106,11 @@ var SiteConfiguration_SiteWasRemovedError = exports.SiteConfiguration_SiteWasRem
|
|
2094
2106
|
errorClasses.SiteConfiguration_SiteWasRemovedError = SiteConfiguration_SiteWasRemovedError;
|
2095
2107
|
var SiteConfiguration_TrialExpiredError = exports.SiteConfiguration_TrialExpiredError = /*#__PURE__*/function (_SiteConfigurationErr5) {
|
2096
2108
|
function SiteConfiguration_TrialExpiredError(message, code, errorData) {
|
2097
|
-
var
|
2109
|
+
var _this170;
|
2098
2110
|
(0, _classCallCheck2.default)(this, SiteConfiguration_TrialExpiredError);
|
2099
|
-
|
2100
|
-
|
2101
|
-
return
|
2111
|
+
_this170 = _callSuper(this, SiteConfiguration_TrialExpiredError, [message, code, errorData]);
|
2112
|
+
_this170.name = 'SiteConfiguration_TrialExpiredError';
|
2113
|
+
return _this170;
|
2102
2114
|
}
|
2103
2115
|
(0, _inherits2.default)(SiteConfiguration_TrialExpiredError, _SiteConfigurationErr5);
|
2104
2116
|
return (0, _createClass2.default)(SiteConfiguration_TrialExpiredError);
|
@@ -2106,11 +2118,11 @@ var SiteConfiguration_TrialExpiredError = exports.SiteConfiguration_TrialExpired
|
|
2106
2118
|
errorClasses.SiteConfiguration_TrialExpiredError = SiteConfiguration_TrialExpiredError;
|
2107
2119
|
var SiteConfiguration_TrialLockedError = exports.SiteConfiguration_TrialLockedError = /*#__PURE__*/function (_SiteConfigurationErr6) {
|
2108
2120
|
function SiteConfiguration_TrialLockedError(message, code, errorData) {
|
2109
|
-
var
|
2121
|
+
var _this171;
|
2110
2122
|
(0, _classCallCheck2.default)(this, SiteConfiguration_TrialLockedError);
|
2111
|
-
|
2112
|
-
|
2113
|
-
return
|
2123
|
+
_this171 = _callSuper(this, SiteConfiguration_TrialLockedError, [message, code, errorData]);
|
2124
|
+
_this171.name = 'SiteConfiguration_TrialLockedError';
|
2125
|
+
return _this171;
|
2114
2126
|
}
|
2115
2127
|
(0, _inherits2.default)(SiteConfiguration_TrialLockedError, _SiteConfigurationErr6);
|
2116
2128
|
return (0, _createClass2.default)(SiteConfiguration_TrialLockedError);
|
@@ -2118,11 +2130,11 @@ var SiteConfiguration_TrialLockedError = exports.SiteConfiguration_TrialLockedEr
|
|
2118
2130
|
errorClasses.SiteConfiguration_TrialLockedError = SiteConfiguration_TrialLockedError;
|
2119
2131
|
var SiteConfiguration_UserRequestsEnabledRequiredError = exports.SiteConfiguration_UserRequestsEnabledRequiredError = /*#__PURE__*/function (_SiteConfigurationErr7) {
|
2120
2132
|
function SiteConfiguration_UserRequestsEnabledRequiredError(message, code, errorData) {
|
2121
|
-
var
|
2133
|
+
var _this172;
|
2122
2134
|
(0, _classCallCheck2.default)(this, SiteConfiguration_UserRequestsEnabledRequiredError);
|
2123
|
-
|
2124
|
-
|
2125
|
-
return
|
2135
|
+
_this172 = _callSuper(this, SiteConfiguration_UserRequestsEnabledRequiredError, [message, code, errorData]);
|
2136
|
+
_this172.name = 'SiteConfiguration_UserRequestsEnabledRequiredError';
|
2137
|
+
return _this172;
|
2126
2138
|
}
|
2127
2139
|
(0, _inherits2.default)(SiteConfiguration_UserRequestsEnabledRequiredError, _SiteConfigurationErr7);
|
2128
2140
|
return (0, _createClass2.default)(SiteConfiguration_UserRequestsEnabledRequiredError);
|
package/lib/Files.js
CHANGED
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
|
|
11
11
|
var apiKey;
|
12
12
|
var baseUrl = 'https://app.files.com';
|
13
13
|
var sessionId = null;
|
14
|
-
var version = '1.2.
|
14
|
+
var version = '1.2.41';
|
15
15
|
var userAgent = "Files.com JavaScript SDK v".concat(version);
|
16
16
|
var logLevel = _Logger.LogLevel.INFO;
|
17
17
|
var debugRequest = false;
|
package/lib/models/As2Partner.js
CHANGED
@@ -68,7 +68,7 @@ var As2Partner = /*#__PURE__*/(0, _createClass2.default)(function As2Partner() {
|
|
68
68
|
(0, _defineProperty2.default)(this, "setServerCertificate", function (value) {
|
69
69
|
_this.attributes.server_certificate = value;
|
70
70
|
});
|
71
|
-
// string # MDN Validation Level
|
71
|
+
// string # MDN Validation Level controls how to evaluate message transfer success based on a partner's MDN response. NOTE: This setting does not affect MDN storage; all MDNs received from a partner are always stored. `none`: MDN is stored for informational purposes only, a successful HTTPS transfer is a successful AS2 transfer. `weak`: Inspect the MDN for MIC and Disposition only. `normal`: `weak` plus validate MDN signature matches body, `strict`: `normal` but do not allow signatures from self-signed or incorrectly purposed certificates.
|
72
72
|
(0, _defineProperty2.default)(this, "getMdnValidationLevel", function () {
|
73
73
|
return _this.attributes.mdn_validation_level;
|
74
74
|
});
|
package/lib/models/Bundle.js
CHANGED
@@ -296,6 +296,13 @@ var Bundle = /*#__PURE__*/(0, _createClass2.default)(function Bundle() {
|
|
296
296
|
(0, _defineProperty2.default)(this, "setPaths", function (value) {
|
297
297
|
_this.attributes.paths = value;
|
298
298
|
});
|
299
|
+
// BundlePath # A list of bundlepaths in this bundle. For performance reasons, this is not provided when listing bundles.
|
300
|
+
(0, _defineProperty2.default)(this, "getBundlepaths", function () {
|
301
|
+
return _this.attributes.bundlepaths;
|
302
|
+
});
|
303
|
+
(0, _defineProperty2.default)(this, "setBundlepaths", function (value) {
|
304
|
+
_this.attributes.bundlepaths = value;
|
305
|
+
});
|
299
306
|
// string # Password for this bundle.
|
300
307
|
(0, _defineProperty2.default)(this, "getPassword", function () {
|
301
308
|
return _this.attributes.password;
|
@@ -0,0 +1,55 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
var _typeof = require("@babel/runtime/helpers/typeof");
|
5
|
+
exports.__esModule = true;
|
6
|
+
exports.default = void 0;
|
7
|
+
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
8
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
9
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
10
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
11
|
+
var _Api = _interopRequireDefault(require("../Api"));
|
12
|
+
var errors = _interopRequireWildcard(require("../Errors"));
|
13
|
+
var _utils = require("../utils");
|
14
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
15
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
16
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
17
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } /* eslint-disable no-unused-vars */
|
18
|
+
/* eslint-enable no-unused-vars */
|
19
|
+
/**
|
20
|
+
* Class BundlePath
|
21
|
+
*/
|
22
|
+
var BundlePath = /*#__PURE__*/(0, _createClass2.default)(function BundlePath() {
|
23
|
+
var _this = this;
|
24
|
+
var attributes = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
25
|
+
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
26
|
+
(0, _classCallCheck2.default)(this, BundlePath);
|
27
|
+
(0, _defineProperty2.default)(this, "attributes", {});
|
28
|
+
(0, _defineProperty2.default)(this, "options", {});
|
29
|
+
(0, _defineProperty2.default)(this, "isLoaded", function () {
|
30
|
+
return !!_this.attributes.id;
|
31
|
+
});
|
32
|
+
// boolean # Allow access to subfolders content?
|
33
|
+
(0, _defineProperty2.default)(this, "getRecursive", function () {
|
34
|
+
return _this.attributes.recursive;
|
35
|
+
});
|
36
|
+
// string # The path to the resource relative to filesystem. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
37
|
+
(0, _defineProperty2.default)(this, "getPath", function () {
|
38
|
+
return _this.attributes.path;
|
39
|
+
});
|
40
|
+
Object.entries(attributes).forEach(function (_ref) {
|
41
|
+
var _ref2 = (0, _slicedToArray2.default)(_ref, 2),
|
42
|
+
key = _ref2[0],
|
43
|
+
value = _ref2[1];
|
44
|
+
var normalizedKey = key.replace('?', '');
|
45
|
+
_this.attributes[normalizedKey] = value;
|
46
|
+
Object.defineProperty(_this, normalizedKey, {
|
47
|
+
value: value,
|
48
|
+
writable: false
|
49
|
+
});
|
50
|
+
});
|
51
|
+
this.options = _objectSpread({}, options);
|
52
|
+
});
|
53
|
+
var _default = exports.default = BundlePath;
|
54
|
+
module.exports = BundlePath;
|
55
|
+
module.exports.default = BundlePath;
|
package/lib/models/Site.js
CHANGED
@@ -613,6 +613,14 @@ var Site = /*#__PURE__*/(0, _createClass2.default)(function Site() {
|
|
613
613
|
(0, _defineProperty2.default)(this, "getUserRequestsNotifyAdmins", function () {
|
614
614
|
return _this.attributes.user_requests_notify_admins;
|
615
615
|
});
|
616
|
+
// boolean # Allow users to create their own API keys?
|
617
|
+
(0, _defineProperty2.default)(this, "getUsersCanCreateApiKeys", function () {
|
618
|
+
return _this.attributes.users_can_create_api_keys;
|
619
|
+
});
|
620
|
+
// boolean # Allow users to create their own SSH keys?
|
621
|
+
(0, _defineProperty2.default)(this, "getUsersCanCreateSshKeys", function () {
|
622
|
+
return _this.attributes.users_can_create_ssh_keys;
|
623
|
+
});
|
616
624
|
// string # Custom text send in user welcome email
|
617
625
|
(0, _defineProperty2.default)(this, "getWelcomeCustomText", function () {
|
618
626
|
return _this.attributes.welcome_custom_text;
|
@@ -782,6 +790,8 @@ _Site = Site;
|
|
782
790
|
// dav_enabled - boolean - Is WebDAV enabled?
|
783
791
|
// ftp_enabled - boolean - Is FTP enabled?
|
784
792
|
// sftp_enabled - boolean - Is SFTP enabled?
|
793
|
+
// users_can_create_api_keys - boolean - Allow users to create their own API keys?
|
794
|
+
// users_can_create_ssh_keys - boolean - Allow users to create their own SSH keys?
|
785
795
|
// sftp_host_key_type - string - Sftp Host Key Type
|
786
796
|
// active_sftp_host_key_id - int64 - Id of the currently selected custom SFTP Host Key
|
787
797
|
// protocol_access_groups_only - boolean - If true, protocol access permissions on users will be ignored, and only protocol access permissions set on Groups will be honored. Make sure that your current user is a member of a group with API permission when changing this value to avoid locking yourself out of your site.
|
package/package.json
CHANGED
package/src/Errors.js
CHANGED
@@ -219,6 +219,7 @@ export class ProcessingFailure_FilePendingProcessingError extends ProcessingFail
|
|
219
219
|
export class ProcessingFailure_FileTooBigToDecryptError extends ProcessingFailureError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'ProcessingFailure_FileTooBigToDecryptError' } } errorClasses.ProcessingFailure_FileTooBigToDecryptError = ProcessingFailure_FileTooBigToDecryptError
|
220
220
|
export class ProcessingFailure_FileTooBigToEncryptError extends ProcessingFailureError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'ProcessingFailure_FileTooBigToEncryptError' } } errorClasses.ProcessingFailure_FileTooBigToEncryptError = ProcessingFailure_FileTooBigToEncryptError
|
221
221
|
export class ProcessingFailure_FileUploadedToWrongRegionError extends ProcessingFailureError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'ProcessingFailure_FileUploadedToWrongRegionError' } } errorClasses.ProcessingFailure_FileUploadedToWrongRegionError = ProcessingFailure_FileUploadedToWrongRegionError
|
222
|
+
export class ProcessingFailure_FilenameTooLongError extends ProcessingFailureError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'ProcessingFailure_FilenameTooLongError' } } errorClasses.ProcessingFailure_FilenameTooLongError = ProcessingFailure_FilenameTooLongError
|
222
223
|
export class ProcessingFailure_FolderLockedError extends ProcessingFailureError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'ProcessingFailure_FolderLockedError' } } errorClasses.ProcessingFailure_FolderLockedError = ProcessingFailure_FolderLockedError
|
223
224
|
export class ProcessingFailure_FolderNotEmptyError extends ProcessingFailureError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'ProcessingFailure_FolderNotEmptyError' } } errorClasses.ProcessingFailure_FolderNotEmptyError = ProcessingFailure_FolderNotEmptyError
|
224
225
|
export class ProcessingFailure_HistoryUnavailableError extends ProcessingFailureError { constructor(message, code, errorData) { super(message, code, errorData); this.name = 'ProcessingFailure_HistoryUnavailableError' } } errorClasses.ProcessingFailure_HistoryUnavailableError = ProcessingFailure_HistoryUnavailableError
|
package/src/Files.js
CHANGED
package/src/models/As2Partner.js
CHANGED
@@ -63,7 +63,7 @@ class As2Partner {
|
|
63
63
|
this.attributes.server_certificate = value
|
64
64
|
}
|
65
65
|
|
66
|
-
// string # MDN Validation Level
|
66
|
+
// string # MDN Validation Level controls how to evaluate message transfer success based on a partner's MDN response. NOTE: This setting does not affect MDN storage; all MDNs received from a partner are always stored. `none`: MDN is stored for informational purposes only, a successful HTTPS transfer is a successful AS2 transfer. `weak`: Inspect the MDN for MIC and Disposition only. `normal`: `weak` plus validate MDN signature matches body, `strict`: `normal` but do not allow signatures from self-signed or incorrectly purposed certificates.
|
67
67
|
getMdnValidationLevel = () => this.attributes.mdn_validation_level
|
68
68
|
|
69
69
|
setMdnValidationLevel = value => {
|
package/src/models/Bundle.js
CHANGED
@@ -290,6 +290,13 @@ class Bundle {
|
|
290
290
|
this.attributes.paths = value
|
291
291
|
}
|
292
292
|
|
293
|
+
// BundlePath # A list of bundlepaths in this bundle. For performance reasons, this is not provided when listing bundles.
|
294
|
+
getBundlepaths = () => this.attributes.bundlepaths
|
295
|
+
|
296
|
+
setBundlepaths = value => {
|
297
|
+
this.attributes.bundlepaths = value
|
298
|
+
}
|
299
|
+
|
293
300
|
// string # Password for this bundle.
|
294
301
|
getPassword = () => this.attributes.password
|
295
302
|
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/* eslint-disable no-unused-vars */
|
2
|
+
import Api from '../Api'
|
3
|
+
import * as errors from '../Errors'
|
4
|
+
import {
|
5
|
+
getType, isArray, isInt, isObject, isString,
|
6
|
+
} from '../utils'
|
7
|
+
/* eslint-enable no-unused-vars */
|
8
|
+
|
9
|
+
/**
|
10
|
+
* Class BundlePath
|
11
|
+
*/
|
12
|
+
class BundlePath {
|
13
|
+
attributes = {}
|
14
|
+
|
15
|
+
options = {}
|
16
|
+
|
17
|
+
constructor(attributes = {}, options = {}) {
|
18
|
+
Object.entries(attributes).forEach(([key, value]) => {
|
19
|
+
const normalizedKey = key.replace('?', '')
|
20
|
+
|
21
|
+
this.attributes[normalizedKey] = value
|
22
|
+
|
23
|
+
Object.defineProperty(this, normalizedKey, { value, writable: false })
|
24
|
+
})
|
25
|
+
|
26
|
+
this.options = { ...options }
|
27
|
+
}
|
28
|
+
|
29
|
+
isLoaded = () => !!this.attributes.id
|
30
|
+
|
31
|
+
// boolean # Allow access to subfolders content?
|
32
|
+
getRecursive = () => this.attributes.recursive
|
33
|
+
|
34
|
+
// string # The path to the resource relative to filesystem. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
35
|
+
getPath = () => this.attributes.path
|
36
|
+
}
|
37
|
+
|
38
|
+
export default BundlePath
|
39
|
+
|
40
|
+
module.exports = BundlePath
|
41
|
+
module.exports.default = BundlePath
|
package/src/models/Site.js
CHANGED
@@ -463,6 +463,12 @@ class Site {
|
|
463
463
|
// boolean # Send email to site admins when a user request is received?
|
464
464
|
getUserRequestsNotifyAdmins = () => this.attributes.user_requests_notify_admins
|
465
465
|
|
466
|
+
// boolean # Allow users to create their own API keys?
|
467
|
+
getUsersCanCreateApiKeys = () => this.attributes.users_can_create_api_keys
|
468
|
+
|
469
|
+
// boolean # Allow users to create their own SSH keys?
|
470
|
+
getUsersCanCreateSshKeys = () => this.attributes.users_can_create_ssh_keys
|
471
|
+
|
466
472
|
// string # Custom text send in user welcome email
|
467
473
|
getWelcomeCustomText = () => this.attributes.welcome_custom_text
|
468
474
|
|
@@ -583,6 +589,8 @@ class Site {
|
|
583
589
|
// dav_enabled - boolean - Is WebDAV enabled?
|
584
590
|
// ftp_enabled - boolean - Is FTP enabled?
|
585
591
|
// sftp_enabled - boolean - Is SFTP enabled?
|
592
|
+
// users_can_create_api_keys - boolean - Allow users to create their own API keys?
|
593
|
+
// users_can_create_ssh_keys - boolean - Allow users to create their own SSH keys?
|
586
594
|
// sftp_host_key_type - string - Sftp Host Key Type
|
587
595
|
// active_sftp_host_key_id - int64 - Id of the currently selected custom SFTP Host Key
|
588
596
|
// protocol_access_groups_only - boolean - If true, protocol access permissions on users will be ignored, and only protocol access permissions set on Groups will be honored. Make sure that your current user is a member of a group with API permission when changing this value to avoid locking yourself out of your site.
|