files.com 1.0.141 → 1.0.142
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.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/lib/files.com/errors.rb +28 -34
- data/lib/files.com/sizable_io.rb +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e5b5b8a2424d0f434c1a041c43ab509e962bb3f1a58f56d0a7224ed81e58238
|
|
4
|
+
data.tar.gz: 7b3278205740e66a30b64d9f644912268196bda61b2871342e77e40817b47aac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 00bae40de0edd8febf4deab8f54984d101e5bd0a84e4458983969a1cdeee434a612f1b0c117ca3d76b3482e55a1fdcae5b4bb10b9304f665293e187d8f688b53
|
|
7
|
+
data.tar.gz: 2b9165ddd0b1b9e2a5511f6046a2767cd5a86e334e5b0b02bf213dc41e6d7a4f42084579535e1053ae0247abe9a8dfc9cf753a00c9d1146743752b28a7437440
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.142
|
data/lib/files.com/errors.rb
CHANGED
|
@@ -56,10 +56,6 @@ module Files
|
|
|
56
56
|
end
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
class ProcessingPendingError < APIError; end
|
|
60
|
-
|
|
61
|
-
class AccountInBadStandingError < APIError; end
|
|
62
|
-
class AccountOverdueError < AccountInBadStandingError; end
|
|
63
59
|
|
|
64
60
|
class BadRequestError < APIError; end
|
|
65
61
|
class AttachmentTooLargeError < BadRequestError; end
|
|
@@ -68,42 +64,40 @@ module Files
|
|
|
68
64
|
class DatetimeParseError < BadRequestError; end
|
|
69
65
|
class DestinationSameError < BadRequestError; end
|
|
70
66
|
class FolderMustNotBeAFileError < BadRequestError; end
|
|
67
|
+
class InvalidCursorError < BadRequestError; end
|
|
71
68
|
class InvalidFilterCombinationError < BadRequestError; end
|
|
72
69
|
class InvalidFilterFieldError < BadRequestError; end
|
|
73
70
|
class InvalidInputEncodingError < BadRequestError; end
|
|
74
71
|
class InvalidInterfaceError < BadRequestError; end
|
|
75
|
-
class InvalidOauthError < BadRequestError; end
|
|
76
72
|
class InvalidOauthProviderError < BadRequestError; end
|
|
77
73
|
class InvalidReturnToUrlError < BadRequestError; end
|
|
78
74
|
class InvalidUploadOffsetError < BadRequestError; end
|
|
79
|
-
class
|
|
75
|
+
class NoValidInputParamsError < BadRequestError; end
|
|
80
76
|
class OperationOnNonScimResourceError < BadRequestError; end
|
|
77
|
+
class ReauthenticationNeededFieldsError < BadRequestError; end
|
|
78
|
+
class RequestParamPathCannotHaveTrailingWhitespaceError < BadRequestError; end
|
|
79
|
+
class RequestParamsContainInvalidCharacterError < BadRequestError; end
|
|
80
|
+
class RequestParamsInvalidError < BadRequestError; end
|
|
81
|
+
class RequestParamsRequiredError < BadRequestError; end
|
|
82
|
+
class UnsupportedCurrencyError < BadRequestError; end
|
|
81
83
|
class UnsupportedHttpResponseFormatError < BadRequestError; end
|
|
82
84
|
class UnsupportedMediaTypeError < BadRequestError; end
|
|
83
85
|
class UserIdInvalidError < BadRequestError; end
|
|
84
86
|
class UserIdOnUserEndpointError < BadRequestError; end
|
|
85
87
|
class UserRequiredError < BadRequestError; end
|
|
86
88
|
|
|
87
|
-
class InvalidParamsError < APIError; end
|
|
88
|
-
class InvalidCursorError < InvalidParamsError; end
|
|
89
|
-
class NoValidInputParamsError < InvalidParamsError; end
|
|
90
|
-
class ReauthenticationNeededFieldsError < InvalidParamsError; end
|
|
91
|
-
class RequestParamPathCannotHaveTrailingWhitespaceError < InvalidParamsError; end
|
|
92
|
-
class RequestParamsContainInvalidCharacterError < InvalidParamsError; end
|
|
93
|
-
class RequestParamsInvalidError < InvalidParamsError; end
|
|
94
|
-
class RequestParamsRequiredError < InvalidParamsError; end
|
|
95
|
-
class UnsupportedCurrencyError < InvalidParamsError; end
|
|
96
|
-
|
|
97
|
-
class LockedError < APIError; end
|
|
98
|
-
class FileLockedError < LockedError; end
|
|
99
|
-
class FolderLockedError < LockedError; end
|
|
100
|
-
class ResourceLockedError < LockedError; end
|
|
101
|
-
class SubfolderLockedError < LockedError; end
|
|
102
|
-
|
|
103
89
|
class NotAuthenticatedError < APIError; end
|
|
90
|
+
class AuthenticationRequiredError < NotAuthenticatedError; end
|
|
91
|
+
class BundleRegistrationCodeFailedError < NotAuthenticatedError; end
|
|
92
|
+
class InboxRegistrationCodeFailedError < NotAuthenticatedError; end
|
|
93
|
+
class InvalidCredentialsError < NotAuthenticatedError; end
|
|
94
|
+
class InvalidOauthError < NotAuthenticatedError; end
|
|
95
|
+
class InvalidOrExpiredCodeError < NotAuthenticatedError; end
|
|
96
|
+
class InvalidUsernameOrPasswordError < NotAuthenticatedError; end
|
|
97
|
+
class LockedOutError < NotAuthenticatedError; end
|
|
98
|
+
class LockoutRegionMismatchError < NotAuthenticatedError; end
|
|
104
99
|
class OneTimePasswordIncorrectError < NotAuthenticatedError; end
|
|
105
100
|
class TwoFactorAuthenticationErrorError < NotAuthenticatedError; end
|
|
106
|
-
class TwoFactorAuthenticationRequiredError < NotAuthenticatedError; end
|
|
107
101
|
class TwoFactorAuthenticationSetupExpiredError < NotAuthenticatedError; end
|
|
108
102
|
|
|
109
103
|
class NotAuthorizedError < APIError; end
|
|
@@ -111,20 +105,17 @@ module Files
|
|
|
111
105
|
class ApiKeyIsPathRestrictedError < NotAuthorizedError; end
|
|
112
106
|
class ApiKeyOnlyForDesktopAppError < NotAuthorizedError; end
|
|
113
107
|
class ApiKeyOnlyForOfficeIntegrationError < NotAuthorizedError; end
|
|
114
|
-
class
|
|
108
|
+
class BillingPermissionRequiredError < NotAuthorizedError; end
|
|
115
109
|
class CannotLoginWhileUsingKeyError < NotAuthorizedError; end
|
|
116
110
|
class CantActForOtherUserError < NotAuthorizedError; end
|
|
117
111
|
class ContactAdminForPasswordChangeHelpError < NotAuthorizedError; end
|
|
118
|
-
class
|
|
112
|
+
class FolderAdminOrBillingPermissionRequiredError < NotAuthorizedError; end
|
|
119
113
|
class FolderAdminPermissionRequiredError < NotAuthorizedError; end
|
|
120
114
|
class HistoryExportNonAdminsMustQueryByFolderOrPathError < NotAuthorizedError; end
|
|
121
115
|
class HistoryPermissionRequiredError < NotAuthorizedError; end
|
|
122
116
|
class InsufficientPermissionForParamsError < NotAuthorizedError; end
|
|
123
|
-
class LockedOutError < NotAuthorizedError; end
|
|
124
|
-
class LockoutRegionMismatchError < NotAuthorizedError; end
|
|
125
117
|
class MustAuthenticateWithApiKeyError < NotAuthorizedError; end
|
|
126
118
|
class NeedAdminPermissionForInboxError < NotAuthorizedError; end
|
|
127
|
-
class NoBillingPermissionError < NotAuthorizedError; end
|
|
128
119
|
class NotAllowedToCreateBundleError < NotAuthorizedError; end
|
|
129
120
|
class PasswordChangeNotRequiredError < NotAuthorizedError; end
|
|
130
121
|
class PasswordChangeRequiredError < NotAuthorizedError; end
|
|
@@ -134,7 +125,8 @@ module Files
|
|
|
134
125
|
class ReauthenticationFailedFinalError < NotAuthorizedError; end
|
|
135
126
|
class ReauthenticationNeededActionError < NotAuthorizedError; end
|
|
136
127
|
class SelfManagedRequiredError < NotAuthorizedError; end
|
|
137
|
-
class
|
|
128
|
+
class SiteAdminRequiredError < NotAuthorizedError; end
|
|
129
|
+
class TwoFactorAuthenticationRequiredError < NotAuthorizedError; end
|
|
138
130
|
class UserIdWithoutSiteAdminError < NotAuthorizedError; end
|
|
139
131
|
class WritePermissionRequiredError < NotAuthorizedError; end
|
|
140
132
|
class ZipDownloadIpMismatchError < NotAuthorizedError; end
|
|
@@ -147,7 +139,6 @@ module Files
|
|
|
147
139
|
class FileUploadNotFoundError < NotFoundError; end
|
|
148
140
|
class FolderNotFoundError < NotFoundError; end
|
|
149
141
|
class GroupNotFoundError < NotFoundError; end
|
|
150
|
-
class HistoryExportNotReadyError < NotFoundError; end
|
|
151
142
|
class InboxNotFoundError < NotFoundError; end
|
|
152
143
|
class NestedNotFoundError < NotFoundError; end
|
|
153
144
|
class PlanNotFoundError < NotFoundError; end
|
|
@@ -155,20 +146,23 @@ module Files
|
|
|
155
146
|
class UserNotFoundError < NotFoundError; end
|
|
156
147
|
|
|
157
148
|
class ProcessingFailureError < APIError; end
|
|
158
|
-
class BundleRegistrationCodeFailedError < ProcessingFailureError; end
|
|
159
149
|
class DestinationExistsError < ProcessingFailureError; end
|
|
160
150
|
class DestinationParentConflictError < ProcessingFailureError; end
|
|
161
151
|
class DestinationParentDoesNotExistError < ProcessingFailureError; end
|
|
162
152
|
class FailedToChangePasswordError < ProcessingFailureError; end
|
|
153
|
+
class FileLockedError < ProcessingFailureError; end
|
|
163
154
|
class FileNotUploadedError < ProcessingFailureError; end
|
|
155
|
+
class FilePendingProcessingError < ProcessingFailureError; end
|
|
156
|
+
class FolderLockedError < ProcessingFailureError; end
|
|
164
157
|
class FolderNotEmptyError < ProcessingFailureError; end
|
|
165
158
|
class HistoryExportFailureError < ProcessingFailureError; end
|
|
159
|
+
class HistoryExportNotReadyError < ProcessingFailureError; end
|
|
166
160
|
class HistoryUnavailableError < ProcessingFailureError; end
|
|
167
|
-
class InboxRegistrationCodeFailedError < ProcessingFailureError; end
|
|
168
161
|
class InvalidBundleCodeError < ProcessingFailureError; end
|
|
169
|
-
class InvalidOrExpiredCodeError < ProcessingFailureError; end
|
|
170
162
|
class ModelSaveErrorError < ProcessingFailureError; end
|
|
171
163
|
class RemoteServerErrorError < ProcessingFailureError; end
|
|
164
|
+
class ResourceLockedError < ProcessingFailureError; end
|
|
165
|
+
class SubfolderLockedError < ProcessingFailureError; end
|
|
172
166
|
class TwoFactorAuthenticationCodeAlreadySentError < ProcessingFailureError; end
|
|
173
167
|
class UnprocessableEntityError < ProcessingFailureError; end
|
|
174
168
|
|
|
@@ -179,8 +173,8 @@ module Files
|
|
|
179
173
|
|
|
180
174
|
class SiteConfigurationError < APIError; end
|
|
181
175
|
class AccountAlreadyExistsError < SiteConfigurationError; end
|
|
176
|
+
class AccountOverdueError < SiteConfigurationError; end
|
|
182
177
|
class NoAccountForSiteError < SiteConfigurationError; end
|
|
183
|
-
class SiteAdminRequiredError < SiteConfigurationError; end
|
|
184
178
|
class SiteWasRemovedError < SiteConfigurationError; end
|
|
185
179
|
class TrialExpiredError < SiteConfigurationError; end
|
|
186
180
|
class TrialLockedError < SiteConfigurationError; end
|
data/lib/files.com/sizable_io.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: files.com
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.142
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-02-
|
|
11
|
+
date: 2021-02-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|