files.com 1.2.19 → 1.2.21
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/models/User.md +3 -3
- package/lib/Api.js +1 -1
- package/lib/Errors.js +170 -170
- package/lib/Files.js +1 -1
- package/lib/models/AccountLineItem.js +1 -1
- package/lib/models/Action.js +1 -1
- package/lib/models/ActionNotificationExport.js +1 -1
- package/lib/models/ActionNotificationExportResult.js +1 -1
- package/lib/models/ActionWebhookFailure.js +1 -1
- package/lib/models/ApiKey.js +1 -1
- package/lib/models/App.js +1 -1
- package/lib/models/As2IncomingMessage.js +1 -1
- package/lib/models/As2OutgoingMessage.js +1 -1
- package/lib/models/As2Partner.js +1 -1
- package/lib/models/As2Station.js +1 -1
- package/lib/models/Auto.js +1 -1
- package/lib/models/Automation.js +1 -1
- package/lib/models/AutomationRun.js +1 -1
- package/lib/models/BandwidthSnapshot.js +1 -1
- package/lib/models/Behavior.js +1 -1
- package/lib/models/Bundle.js +1 -1
- package/lib/models/BundleDownload.js +1 -1
- package/lib/models/BundleNotification.js +1 -1
- package/lib/models/BundleRecipient.js +1 -1
- package/lib/models/BundleRegistration.js +1 -1
- package/lib/models/Clickwrap.js +1 -1
- package/lib/models/DnsRecord.js +1 -1
- package/lib/models/EmailIncomingMessage.js +1 -1
- package/lib/models/Errors.js +1 -1
- package/lib/models/ExternalEvent.js +1 -1
- package/lib/models/File.js +1 -1
- package/lib/models/FileAction.js +1 -1
- package/lib/models/FileComment.js +1 -1
- package/lib/models/FileCommentReaction.js +1 -1
- package/lib/models/FileMigration.js +1 -1
- package/lib/models/FileUploadPart.js +1 -1
- package/lib/models/Folder.js +1 -1
- package/lib/models/FormField.js +1 -1
- package/lib/models/FormFieldSet.js +1 -1
- package/lib/models/GpgKey.js +1 -1
- package/lib/models/Group.js +1 -1
- package/lib/models/GroupUser.js +1 -1
- package/lib/models/History.js +1 -1
- package/lib/models/HistoryExport.js +1 -1
- package/lib/models/HistoryExportResult.js +1 -1
- package/lib/models/Image.js +1 -1
- package/lib/models/InboxRecipient.js +1 -1
- package/lib/models/InboxRegistration.js +1 -1
- package/lib/models/InboxUpload.js +1 -1
- package/lib/models/Invoice.js +1 -1
- package/lib/models/InvoiceLineItem.js +1 -1
- package/lib/models/IpAddress.js +1 -1
- package/lib/models/Lock.js +1 -1
- package/lib/models/Message.js +1 -1
- package/lib/models/MessageComment.js +1 -1
- package/lib/models/MessageCommentReaction.js +1 -1
- package/lib/models/MessageReaction.js +1 -1
- package/lib/models/Notification.js +1 -1
- package/lib/models/Payment.js +1 -1
- package/lib/models/PaymentLineItem.js +1 -1
- package/lib/models/Permission.js +1 -1
- package/lib/models/Preview.js +1 -1
- package/lib/models/Priority.js +1 -1
- package/lib/models/Project.js +1 -1
- package/lib/models/PublicIpAddress.js +1 -1
- package/lib/models/PublicKey.js +1 -1
- package/lib/models/RemoteBandwidthSnapshot.js +1 -1
- package/lib/models/RemoteServer.js +1 -1
- package/lib/models/RemoteServerConfigurationFile.js +1 -1
- package/lib/models/Request.js +1 -1
- package/lib/models/Session.js +1 -1
- package/lib/models/SettingsChange.js +1 -1
- package/lib/models/SftpHostKey.js +1 -1
- package/lib/models/ShareGroup.js +1 -1
- package/lib/models/ShareGroupMember.js +1 -1
- package/lib/models/Site.js +1 -1
- package/lib/models/Snapshot.js +1 -1
- package/lib/models/SsoStrategy.js +1 -1
- package/lib/models/Status.js +1 -1
- package/lib/models/Style.js +1 -1
- package/lib/models/UsageDailySnapshot.js +1 -1
- package/lib/models/UsageSnapshot.js +1 -1
- package/lib/models/User.js +4 -4
- package/lib/models/UserCipherUse.js +1 -1
- package/lib/models/UserRequest.js +1 -1
- package/lib/models/WebhookTest.js +1 -1
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/User.js +3 -3
package/lib/Errors.js
CHANGED
|
@@ -15,7 +15,6 @@ var _Logger = _interopRequireDefault(require("./Logger"));
|
|
|
15
15
|
function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); }
|
|
16
16
|
function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } /* eslint-disable camelcase, max-classes-per-file */
|
|
17
17
|
var FilesError = exports.FilesError = /*#__PURE__*/function (_Error) {
|
|
18
|
-
(0, _inherits2.default)(FilesError, _Error);
|
|
19
18
|
function FilesError(message, code) {
|
|
20
19
|
var _this;
|
|
21
20
|
(0, _classCallCheck2.default)(this, FilesError);
|
|
@@ -24,10 +23,10 @@ var FilesError = exports.FilesError = /*#__PURE__*/function (_Error) {
|
|
|
24
23
|
_this.code = code;
|
|
25
24
|
return _this;
|
|
26
25
|
}
|
|
26
|
+
(0, _inherits2.default)(FilesError, _Error);
|
|
27
27
|
return (0, _createClass2.default)(FilesError);
|
|
28
28
|
}( /*#__PURE__*/(0, _wrapNativeSuper2.default)(Error));
|
|
29
29
|
var FilesApiError = exports.FilesApiError = /*#__PURE__*/function (_FilesError) {
|
|
30
|
-
(0, _inherits2.default)(FilesApiError, _FilesError);
|
|
31
30
|
function FilesApiError(message, code, errorData) {
|
|
32
31
|
var _this2;
|
|
33
32
|
(0, _classCallCheck2.default)(this, FilesApiError);
|
|
@@ -46,6 +45,7 @@ var FilesApiError = exports.FilesApiError = /*#__PURE__*/function (_FilesError)
|
|
|
46
45
|
}
|
|
47
46
|
return _this2;
|
|
48
47
|
}
|
|
48
|
+
(0, _inherits2.default)(FilesApiError, _FilesError);
|
|
49
49
|
return (0, _createClass2.default)(FilesApiError);
|
|
50
50
|
}(FilesError);
|
|
51
51
|
var errorClasses = {
|
|
@@ -97,7 +97,6 @@ var handleErrorResponse = exports.handleErrorResponse = function handleErrorResp
|
|
|
97
97
|
|
|
98
98
|
// general errors
|
|
99
99
|
var ConfigurationError = exports.ConfigurationError = /*#__PURE__*/function (_FilesError2) {
|
|
100
|
-
(0, _inherits2.default)(ConfigurationError, _FilesError2);
|
|
101
100
|
function ConfigurationError(message) {
|
|
102
101
|
var _this3;
|
|
103
102
|
(0, _classCallCheck2.default)(this, ConfigurationError);
|
|
@@ -105,11 +104,11 @@ var ConfigurationError = exports.ConfigurationError = /*#__PURE__*/function (_Fi
|
|
|
105
104
|
_this3.name = 'ConfigurationError';
|
|
106
105
|
return _this3;
|
|
107
106
|
}
|
|
107
|
+
(0, _inherits2.default)(ConfigurationError, _FilesError2);
|
|
108
108
|
return (0, _createClass2.default)(ConfigurationError);
|
|
109
109
|
}(FilesError);
|
|
110
110
|
errorClasses.ConfigurationError = ConfigurationError;
|
|
111
111
|
var EmptyPropertyError = exports.EmptyPropertyError = /*#__PURE__*/function (_FilesError3) {
|
|
112
|
-
(0, _inherits2.default)(EmptyPropertyError, _FilesError3);
|
|
113
112
|
function EmptyPropertyError(message) {
|
|
114
113
|
var _this4;
|
|
115
114
|
(0, _classCallCheck2.default)(this, EmptyPropertyError);
|
|
@@ -117,11 +116,11 @@ var EmptyPropertyError = exports.EmptyPropertyError = /*#__PURE__*/function (_Fi
|
|
|
117
116
|
_this4.name = 'EmptyPropertyError';
|
|
118
117
|
return _this4;
|
|
119
118
|
}
|
|
119
|
+
(0, _inherits2.default)(EmptyPropertyError, _FilesError3);
|
|
120
120
|
return (0, _createClass2.default)(EmptyPropertyError);
|
|
121
121
|
}(FilesError);
|
|
122
122
|
errorClasses.EmptyPropertyError = EmptyPropertyError;
|
|
123
123
|
var InvalidParameterError = exports.InvalidParameterError = /*#__PURE__*/function (_FilesError4) {
|
|
124
|
-
(0, _inherits2.default)(InvalidParameterError, _FilesError4);
|
|
125
124
|
function InvalidParameterError(message) {
|
|
126
125
|
var _this5;
|
|
127
126
|
(0, _classCallCheck2.default)(this, InvalidParameterError);
|
|
@@ -129,11 +128,11 @@ var InvalidParameterError = exports.InvalidParameterError = /*#__PURE__*/functio
|
|
|
129
128
|
_this5.name = 'InvalidParameterError';
|
|
130
129
|
return _this5;
|
|
131
130
|
}
|
|
131
|
+
(0, _inherits2.default)(InvalidParameterError, _FilesError4);
|
|
132
132
|
return (0, _createClass2.default)(InvalidParameterError);
|
|
133
133
|
}(FilesError);
|
|
134
134
|
errorClasses.InvalidParameterError = InvalidParameterError;
|
|
135
135
|
var MissingParameterError = exports.MissingParameterError = /*#__PURE__*/function (_FilesError5) {
|
|
136
|
-
(0, _inherits2.default)(MissingParameterError, _FilesError5);
|
|
137
136
|
function MissingParameterError(message) {
|
|
138
137
|
var _this6;
|
|
139
138
|
(0, _classCallCheck2.default)(this, MissingParameterError);
|
|
@@ -141,11 +140,11 @@ var MissingParameterError = exports.MissingParameterError = /*#__PURE__*/functio
|
|
|
141
140
|
_this6.name = 'MissingParameterError';
|
|
142
141
|
return _this6;
|
|
143
142
|
}
|
|
143
|
+
(0, _inherits2.default)(MissingParameterError, _FilesError5);
|
|
144
144
|
return (0, _createClass2.default)(MissingParameterError);
|
|
145
145
|
}(FilesError);
|
|
146
146
|
errorClasses.MissingParameterError = MissingParameterError;
|
|
147
147
|
var NotImplementedError = exports.NotImplementedError = /*#__PURE__*/function (_FilesError6) {
|
|
148
|
-
(0, _inherits2.default)(NotImplementedError, _FilesError6);
|
|
149
148
|
function NotImplementedError(message) {
|
|
150
149
|
var _this7;
|
|
151
150
|
(0, _classCallCheck2.default)(this, NotImplementedError);
|
|
@@ -153,13 +152,13 @@ var NotImplementedError = exports.NotImplementedError = /*#__PURE__*/function (_
|
|
|
153
152
|
_this7.name = 'NotImplementedError';
|
|
154
153
|
return _this7;
|
|
155
154
|
}
|
|
155
|
+
(0, _inherits2.default)(NotImplementedError, _FilesError6);
|
|
156
156
|
return (0, _createClass2.default)(NotImplementedError);
|
|
157
157
|
}(FilesError);
|
|
158
158
|
errorClasses.NotImplementedError = NotImplementedError;
|
|
159
159
|
|
|
160
160
|
// api error groups
|
|
161
161
|
var BadRequestError = exports.BadRequestError = /*#__PURE__*/function (_FilesApiError) {
|
|
162
|
-
(0, _inherits2.default)(BadRequestError, _FilesApiError);
|
|
163
162
|
function BadRequestError(message, code, errorData) {
|
|
164
163
|
var _this8;
|
|
165
164
|
(0, _classCallCheck2.default)(this, BadRequestError);
|
|
@@ -167,11 +166,11 @@ var BadRequestError = exports.BadRequestError = /*#__PURE__*/function (_FilesApi
|
|
|
167
166
|
_this8.name = 'BadRequestError';
|
|
168
167
|
return _this8;
|
|
169
168
|
}
|
|
169
|
+
(0, _inherits2.default)(BadRequestError, _FilesApiError);
|
|
170
170
|
return (0, _createClass2.default)(BadRequestError);
|
|
171
171
|
}(FilesApiError);
|
|
172
172
|
errorClasses.BadRequestError = BadRequestError;
|
|
173
173
|
var NotAuthenticatedError = exports.NotAuthenticatedError = /*#__PURE__*/function (_FilesApiError2) {
|
|
174
|
-
(0, _inherits2.default)(NotAuthenticatedError, _FilesApiError2);
|
|
175
174
|
function NotAuthenticatedError(message, code, errorData) {
|
|
176
175
|
var _this9;
|
|
177
176
|
(0, _classCallCheck2.default)(this, NotAuthenticatedError);
|
|
@@ -179,11 +178,11 @@ var NotAuthenticatedError = exports.NotAuthenticatedError = /*#__PURE__*/functio
|
|
|
179
178
|
_this9.name = 'NotAuthenticatedError';
|
|
180
179
|
return _this9;
|
|
181
180
|
}
|
|
181
|
+
(0, _inherits2.default)(NotAuthenticatedError, _FilesApiError2);
|
|
182
182
|
return (0, _createClass2.default)(NotAuthenticatedError);
|
|
183
183
|
}(FilesApiError);
|
|
184
184
|
errorClasses.NotAuthenticatedError = NotAuthenticatedError;
|
|
185
185
|
var NotAuthorizedError = exports.NotAuthorizedError = /*#__PURE__*/function (_FilesApiError3) {
|
|
186
|
-
(0, _inherits2.default)(NotAuthorizedError, _FilesApiError3);
|
|
187
186
|
function NotAuthorizedError(message, code, errorData) {
|
|
188
187
|
var _this10;
|
|
189
188
|
(0, _classCallCheck2.default)(this, NotAuthorizedError);
|
|
@@ -191,11 +190,11 @@ var NotAuthorizedError = exports.NotAuthorizedError = /*#__PURE__*/function (_Fi
|
|
|
191
190
|
_this10.name = 'NotAuthorizedError';
|
|
192
191
|
return _this10;
|
|
193
192
|
}
|
|
193
|
+
(0, _inherits2.default)(NotAuthorizedError, _FilesApiError3);
|
|
194
194
|
return (0, _createClass2.default)(NotAuthorizedError);
|
|
195
195
|
}(FilesApiError);
|
|
196
196
|
errorClasses.NotAuthorizedError = NotAuthorizedError;
|
|
197
197
|
var NotFoundError = exports.NotFoundError = /*#__PURE__*/function (_FilesApiError4) {
|
|
198
|
-
(0, _inherits2.default)(NotFoundError, _FilesApiError4);
|
|
199
198
|
function NotFoundError(message, code, errorData) {
|
|
200
199
|
var _this11;
|
|
201
200
|
(0, _classCallCheck2.default)(this, NotFoundError);
|
|
@@ -203,11 +202,11 @@ var NotFoundError = exports.NotFoundError = /*#__PURE__*/function (_FilesApiErro
|
|
|
203
202
|
_this11.name = 'NotFoundError';
|
|
204
203
|
return _this11;
|
|
205
204
|
}
|
|
205
|
+
(0, _inherits2.default)(NotFoundError, _FilesApiError4);
|
|
206
206
|
return (0, _createClass2.default)(NotFoundError);
|
|
207
207
|
}(FilesApiError);
|
|
208
208
|
errorClasses.NotFoundError = NotFoundError;
|
|
209
209
|
var ProcessingFailureError = exports.ProcessingFailureError = /*#__PURE__*/function (_FilesApiError5) {
|
|
210
|
-
(0, _inherits2.default)(ProcessingFailureError, _FilesApiError5);
|
|
211
210
|
function ProcessingFailureError(message, code, errorData) {
|
|
212
211
|
var _this12;
|
|
213
212
|
(0, _classCallCheck2.default)(this, ProcessingFailureError);
|
|
@@ -215,11 +214,11 @@ var ProcessingFailureError = exports.ProcessingFailureError = /*#__PURE__*/funct
|
|
|
215
214
|
_this12.name = 'ProcessingFailureError';
|
|
216
215
|
return _this12;
|
|
217
216
|
}
|
|
217
|
+
(0, _inherits2.default)(ProcessingFailureError, _FilesApiError5);
|
|
218
218
|
return (0, _createClass2.default)(ProcessingFailureError);
|
|
219
219
|
}(FilesApiError);
|
|
220
220
|
errorClasses.ProcessingFailureError = ProcessingFailureError;
|
|
221
221
|
var RateLimitedError = exports.RateLimitedError = /*#__PURE__*/function (_FilesApiError6) {
|
|
222
|
-
(0, _inherits2.default)(RateLimitedError, _FilesApiError6);
|
|
223
222
|
function RateLimitedError(message, code, errorData) {
|
|
224
223
|
var _this13;
|
|
225
224
|
(0, _classCallCheck2.default)(this, RateLimitedError);
|
|
@@ -227,11 +226,11 @@ var RateLimitedError = exports.RateLimitedError = /*#__PURE__*/function (_FilesA
|
|
|
227
226
|
_this13.name = 'RateLimitedError';
|
|
228
227
|
return _this13;
|
|
229
228
|
}
|
|
229
|
+
(0, _inherits2.default)(RateLimitedError, _FilesApiError6);
|
|
230
230
|
return (0, _createClass2.default)(RateLimitedError);
|
|
231
231
|
}(FilesApiError);
|
|
232
232
|
errorClasses.RateLimitedError = RateLimitedError;
|
|
233
233
|
var ServiceUnavailableError = exports.ServiceUnavailableError = /*#__PURE__*/function (_FilesApiError7) {
|
|
234
|
-
(0, _inherits2.default)(ServiceUnavailableError, _FilesApiError7);
|
|
235
234
|
function ServiceUnavailableError(message, code, errorData) {
|
|
236
235
|
var _this14;
|
|
237
236
|
(0, _classCallCheck2.default)(this, ServiceUnavailableError);
|
|
@@ -239,11 +238,11 @@ var ServiceUnavailableError = exports.ServiceUnavailableError = /*#__PURE__*/fun
|
|
|
239
238
|
_this14.name = 'ServiceUnavailableError';
|
|
240
239
|
return _this14;
|
|
241
240
|
}
|
|
241
|
+
(0, _inherits2.default)(ServiceUnavailableError, _FilesApiError7);
|
|
242
242
|
return (0, _createClass2.default)(ServiceUnavailableError);
|
|
243
243
|
}(FilesApiError);
|
|
244
244
|
errorClasses.ServiceUnavailableError = ServiceUnavailableError;
|
|
245
245
|
var SiteConfigurationError = exports.SiteConfigurationError = /*#__PURE__*/function (_FilesApiError8) {
|
|
246
|
-
(0, _inherits2.default)(SiteConfigurationError, _FilesApiError8);
|
|
247
246
|
function SiteConfigurationError(message, code, errorData) {
|
|
248
247
|
var _this15;
|
|
249
248
|
(0, _classCallCheck2.default)(this, SiteConfigurationError);
|
|
@@ -251,13 +250,13 @@ var SiteConfigurationError = exports.SiteConfigurationError = /*#__PURE__*/funct
|
|
|
251
250
|
_this15.name = 'SiteConfigurationError';
|
|
252
251
|
return _this15;
|
|
253
252
|
}
|
|
253
|
+
(0, _inherits2.default)(SiteConfigurationError, _FilesApiError8);
|
|
254
254
|
return (0, _createClass2.default)(SiteConfigurationError);
|
|
255
255
|
}(FilesApiError);
|
|
256
256
|
errorClasses.SiteConfigurationError = SiteConfigurationError;
|
|
257
257
|
|
|
258
258
|
// grouped api errors
|
|
259
259
|
var BadRequest_AgentUpgradeRequiredError = exports.BadRequest_AgentUpgradeRequiredError = /*#__PURE__*/function (_BadRequestError) {
|
|
260
|
-
(0, _inherits2.default)(BadRequest_AgentUpgradeRequiredError, _BadRequestError);
|
|
261
260
|
function BadRequest_AgentUpgradeRequiredError(message, code, errorData) {
|
|
262
261
|
var _this16;
|
|
263
262
|
(0, _classCallCheck2.default)(this, BadRequest_AgentUpgradeRequiredError);
|
|
@@ -265,11 +264,11 @@ var BadRequest_AgentUpgradeRequiredError = exports.BadRequest_AgentUpgradeRequir
|
|
|
265
264
|
_this16.name = 'BadRequest_AgentUpgradeRequiredError';
|
|
266
265
|
return _this16;
|
|
267
266
|
}
|
|
267
|
+
(0, _inherits2.default)(BadRequest_AgentUpgradeRequiredError, _BadRequestError);
|
|
268
268
|
return (0, _createClass2.default)(BadRequest_AgentUpgradeRequiredError);
|
|
269
269
|
}(BadRequestError);
|
|
270
270
|
errorClasses.BadRequest_AgentUpgradeRequiredError = BadRequest_AgentUpgradeRequiredError;
|
|
271
271
|
var BadRequest_AttachmentTooLargeError = exports.BadRequest_AttachmentTooLargeError = /*#__PURE__*/function (_BadRequestError2) {
|
|
272
|
-
(0, _inherits2.default)(BadRequest_AttachmentTooLargeError, _BadRequestError2);
|
|
273
272
|
function BadRequest_AttachmentTooLargeError(message, code, errorData) {
|
|
274
273
|
var _this17;
|
|
275
274
|
(0, _classCallCheck2.default)(this, BadRequest_AttachmentTooLargeError);
|
|
@@ -277,11 +276,11 @@ var BadRequest_AttachmentTooLargeError = exports.BadRequest_AttachmentTooLargeEr
|
|
|
277
276
|
_this17.name = 'BadRequest_AttachmentTooLargeError';
|
|
278
277
|
return _this17;
|
|
279
278
|
}
|
|
279
|
+
(0, _inherits2.default)(BadRequest_AttachmentTooLargeError, _BadRequestError2);
|
|
280
280
|
return (0, _createClass2.default)(BadRequest_AttachmentTooLargeError);
|
|
281
281
|
}(BadRequestError);
|
|
282
282
|
errorClasses.BadRequest_AttachmentTooLargeError = BadRequest_AttachmentTooLargeError;
|
|
283
283
|
var BadRequest_CannotDownloadDirectoryError = exports.BadRequest_CannotDownloadDirectoryError = /*#__PURE__*/function (_BadRequestError3) {
|
|
284
|
-
(0, _inherits2.default)(BadRequest_CannotDownloadDirectoryError, _BadRequestError3);
|
|
285
284
|
function BadRequest_CannotDownloadDirectoryError(message, code, errorData) {
|
|
286
285
|
var _this18;
|
|
287
286
|
(0, _classCallCheck2.default)(this, BadRequest_CannotDownloadDirectoryError);
|
|
@@ -289,11 +288,11 @@ var BadRequest_CannotDownloadDirectoryError = exports.BadRequest_CannotDownloadD
|
|
|
289
288
|
_this18.name = 'BadRequest_CannotDownloadDirectoryError';
|
|
290
289
|
return _this18;
|
|
291
290
|
}
|
|
291
|
+
(0, _inherits2.default)(BadRequest_CannotDownloadDirectoryError, _BadRequestError3);
|
|
292
292
|
return (0, _createClass2.default)(BadRequest_CannotDownloadDirectoryError);
|
|
293
293
|
}(BadRequestError);
|
|
294
294
|
errorClasses.BadRequest_CannotDownloadDirectoryError = BadRequest_CannotDownloadDirectoryError;
|
|
295
295
|
var BadRequest_CantMoveWithMultipleLocationsError = exports.BadRequest_CantMoveWithMultipleLocationsError = /*#__PURE__*/function (_BadRequestError4) {
|
|
296
|
-
(0, _inherits2.default)(BadRequest_CantMoveWithMultipleLocationsError, _BadRequestError4);
|
|
297
296
|
function BadRequest_CantMoveWithMultipleLocationsError(message, code, errorData) {
|
|
298
297
|
var _this19;
|
|
299
298
|
(0, _classCallCheck2.default)(this, BadRequest_CantMoveWithMultipleLocationsError);
|
|
@@ -301,11 +300,11 @@ var BadRequest_CantMoveWithMultipleLocationsError = exports.BadRequest_CantMoveW
|
|
|
301
300
|
_this19.name = 'BadRequest_CantMoveWithMultipleLocationsError';
|
|
302
301
|
return _this19;
|
|
303
302
|
}
|
|
303
|
+
(0, _inherits2.default)(BadRequest_CantMoveWithMultipleLocationsError, _BadRequestError4);
|
|
304
304
|
return (0, _createClass2.default)(BadRequest_CantMoveWithMultipleLocationsError);
|
|
305
305
|
}(BadRequestError);
|
|
306
306
|
errorClasses.BadRequest_CantMoveWithMultipleLocationsError = BadRequest_CantMoveWithMultipleLocationsError;
|
|
307
307
|
var BadRequest_DatetimeParseError = exports.BadRequest_DatetimeParseError = /*#__PURE__*/function (_BadRequestError5) {
|
|
308
|
-
(0, _inherits2.default)(BadRequest_DatetimeParseError, _BadRequestError5);
|
|
309
308
|
function BadRequest_DatetimeParseError(message, code, errorData) {
|
|
310
309
|
var _this20;
|
|
311
310
|
(0, _classCallCheck2.default)(this, BadRequest_DatetimeParseError);
|
|
@@ -313,11 +312,11 @@ var BadRequest_DatetimeParseError = exports.BadRequest_DatetimeParseError = /*#_
|
|
|
313
312
|
_this20.name = 'BadRequest_DatetimeParseError';
|
|
314
313
|
return _this20;
|
|
315
314
|
}
|
|
315
|
+
(0, _inherits2.default)(BadRequest_DatetimeParseError, _BadRequestError5);
|
|
316
316
|
return (0, _createClass2.default)(BadRequest_DatetimeParseError);
|
|
317
317
|
}(BadRequestError);
|
|
318
318
|
errorClasses.BadRequest_DatetimeParseError = BadRequest_DatetimeParseError;
|
|
319
319
|
var BadRequest_DestinationSameError = exports.BadRequest_DestinationSameError = /*#__PURE__*/function (_BadRequestError6) {
|
|
320
|
-
(0, _inherits2.default)(BadRequest_DestinationSameError, _BadRequestError6);
|
|
321
320
|
function BadRequest_DestinationSameError(message, code, errorData) {
|
|
322
321
|
var _this21;
|
|
323
322
|
(0, _classCallCheck2.default)(this, BadRequest_DestinationSameError);
|
|
@@ -325,11 +324,11 @@ var BadRequest_DestinationSameError = exports.BadRequest_DestinationSameError =
|
|
|
325
324
|
_this21.name = 'BadRequest_DestinationSameError';
|
|
326
325
|
return _this21;
|
|
327
326
|
}
|
|
327
|
+
(0, _inherits2.default)(BadRequest_DestinationSameError, _BadRequestError6);
|
|
328
328
|
return (0, _createClass2.default)(BadRequest_DestinationSameError);
|
|
329
329
|
}(BadRequestError);
|
|
330
330
|
errorClasses.BadRequest_DestinationSameError = BadRequest_DestinationSameError;
|
|
331
331
|
var BadRequest_FolderMustNotBeAFileError = exports.BadRequest_FolderMustNotBeAFileError = /*#__PURE__*/function (_BadRequestError7) {
|
|
332
|
-
(0, _inherits2.default)(BadRequest_FolderMustNotBeAFileError, _BadRequestError7);
|
|
333
332
|
function BadRequest_FolderMustNotBeAFileError(message, code, errorData) {
|
|
334
333
|
var _this22;
|
|
335
334
|
(0, _classCallCheck2.default)(this, BadRequest_FolderMustNotBeAFileError);
|
|
@@ -337,11 +336,11 @@ var BadRequest_FolderMustNotBeAFileError = exports.BadRequest_FolderMustNotBeAFi
|
|
|
337
336
|
_this22.name = 'BadRequest_FolderMustNotBeAFileError';
|
|
338
337
|
return _this22;
|
|
339
338
|
}
|
|
339
|
+
(0, _inherits2.default)(BadRequest_FolderMustNotBeAFileError, _BadRequestError7);
|
|
340
340
|
return (0, _createClass2.default)(BadRequest_FolderMustNotBeAFileError);
|
|
341
341
|
}(BadRequestError);
|
|
342
342
|
errorClasses.BadRequest_FolderMustNotBeAFileError = BadRequest_FolderMustNotBeAFileError;
|
|
343
343
|
var BadRequest_InvalidBodyError = exports.BadRequest_InvalidBodyError = /*#__PURE__*/function (_BadRequestError8) {
|
|
344
|
-
(0, _inherits2.default)(BadRequest_InvalidBodyError, _BadRequestError8);
|
|
345
344
|
function BadRequest_InvalidBodyError(message, code, errorData) {
|
|
346
345
|
var _this23;
|
|
347
346
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidBodyError);
|
|
@@ -349,11 +348,11 @@ var BadRequest_InvalidBodyError = exports.BadRequest_InvalidBodyError = /*#__PUR
|
|
|
349
348
|
_this23.name = 'BadRequest_InvalidBodyError';
|
|
350
349
|
return _this23;
|
|
351
350
|
}
|
|
351
|
+
(0, _inherits2.default)(BadRequest_InvalidBodyError, _BadRequestError8);
|
|
352
352
|
return (0, _createClass2.default)(BadRequest_InvalidBodyError);
|
|
353
353
|
}(BadRequestError);
|
|
354
354
|
errorClasses.BadRequest_InvalidBodyError = BadRequest_InvalidBodyError;
|
|
355
355
|
var BadRequest_InvalidCursorError = exports.BadRequest_InvalidCursorError = /*#__PURE__*/function (_BadRequestError9) {
|
|
356
|
-
(0, _inherits2.default)(BadRequest_InvalidCursorError, _BadRequestError9);
|
|
357
356
|
function BadRequest_InvalidCursorError(message, code, errorData) {
|
|
358
357
|
var _this24;
|
|
359
358
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidCursorError);
|
|
@@ -361,11 +360,11 @@ var BadRequest_InvalidCursorError = exports.BadRequest_InvalidCursorError = /*#_
|
|
|
361
360
|
_this24.name = 'BadRequest_InvalidCursorError';
|
|
362
361
|
return _this24;
|
|
363
362
|
}
|
|
363
|
+
(0, _inherits2.default)(BadRequest_InvalidCursorError, _BadRequestError9);
|
|
364
364
|
return (0, _createClass2.default)(BadRequest_InvalidCursorError);
|
|
365
365
|
}(BadRequestError);
|
|
366
366
|
errorClasses.BadRequest_InvalidCursorError = BadRequest_InvalidCursorError;
|
|
367
367
|
var BadRequest_InvalidCursorTypeForSortError = exports.BadRequest_InvalidCursorTypeForSortError = /*#__PURE__*/function (_BadRequestError10) {
|
|
368
|
-
(0, _inherits2.default)(BadRequest_InvalidCursorTypeForSortError, _BadRequestError10);
|
|
369
368
|
function BadRequest_InvalidCursorTypeForSortError(message, code, errorData) {
|
|
370
369
|
var _this25;
|
|
371
370
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidCursorTypeForSortError);
|
|
@@ -373,11 +372,11 @@ var BadRequest_InvalidCursorTypeForSortError = exports.BadRequest_InvalidCursorT
|
|
|
373
372
|
_this25.name = 'BadRequest_InvalidCursorTypeForSortError';
|
|
374
373
|
return _this25;
|
|
375
374
|
}
|
|
375
|
+
(0, _inherits2.default)(BadRequest_InvalidCursorTypeForSortError, _BadRequestError10);
|
|
376
376
|
return (0, _createClass2.default)(BadRequest_InvalidCursorTypeForSortError);
|
|
377
377
|
}(BadRequestError);
|
|
378
378
|
errorClasses.BadRequest_InvalidCursorTypeForSortError = BadRequest_InvalidCursorTypeForSortError;
|
|
379
379
|
var BadRequest_InvalidEtagsError = exports.BadRequest_InvalidEtagsError = /*#__PURE__*/function (_BadRequestError11) {
|
|
380
|
-
(0, _inherits2.default)(BadRequest_InvalidEtagsError, _BadRequestError11);
|
|
381
380
|
function BadRequest_InvalidEtagsError(message, code, errorData) {
|
|
382
381
|
var _this26;
|
|
383
382
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidEtagsError);
|
|
@@ -385,11 +384,11 @@ var BadRequest_InvalidEtagsError = exports.BadRequest_InvalidEtagsError = /*#__P
|
|
|
385
384
|
_this26.name = 'BadRequest_InvalidEtagsError';
|
|
386
385
|
return _this26;
|
|
387
386
|
}
|
|
387
|
+
(0, _inherits2.default)(BadRequest_InvalidEtagsError, _BadRequestError11);
|
|
388
388
|
return (0, _createClass2.default)(BadRequest_InvalidEtagsError);
|
|
389
389
|
}(BadRequestError);
|
|
390
390
|
errorClasses.BadRequest_InvalidEtagsError = BadRequest_InvalidEtagsError;
|
|
391
391
|
var BadRequest_InvalidFilterAliasCombinationError = exports.BadRequest_InvalidFilterAliasCombinationError = /*#__PURE__*/function (_BadRequestError12) {
|
|
392
|
-
(0, _inherits2.default)(BadRequest_InvalidFilterAliasCombinationError, _BadRequestError12);
|
|
393
392
|
function BadRequest_InvalidFilterAliasCombinationError(message, code, errorData) {
|
|
394
393
|
var _this27;
|
|
395
394
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidFilterAliasCombinationError);
|
|
@@ -397,11 +396,11 @@ var BadRequest_InvalidFilterAliasCombinationError = exports.BadRequest_InvalidFi
|
|
|
397
396
|
_this27.name = 'BadRequest_InvalidFilterAliasCombinationError';
|
|
398
397
|
return _this27;
|
|
399
398
|
}
|
|
399
|
+
(0, _inherits2.default)(BadRequest_InvalidFilterAliasCombinationError, _BadRequestError12);
|
|
400
400
|
return (0, _createClass2.default)(BadRequest_InvalidFilterAliasCombinationError);
|
|
401
401
|
}(BadRequestError);
|
|
402
402
|
errorClasses.BadRequest_InvalidFilterAliasCombinationError = BadRequest_InvalidFilterAliasCombinationError;
|
|
403
403
|
var BadRequest_InvalidFilterCombinationError = exports.BadRequest_InvalidFilterCombinationError = /*#__PURE__*/function (_BadRequestError13) {
|
|
404
|
-
(0, _inherits2.default)(BadRequest_InvalidFilterCombinationError, _BadRequestError13);
|
|
405
404
|
function BadRequest_InvalidFilterCombinationError(message, code, errorData) {
|
|
406
405
|
var _this28;
|
|
407
406
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidFilterCombinationError);
|
|
@@ -409,11 +408,11 @@ var BadRequest_InvalidFilterCombinationError = exports.BadRequest_InvalidFilterC
|
|
|
409
408
|
_this28.name = 'BadRequest_InvalidFilterCombinationError';
|
|
410
409
|
return _this28;
|
|
411
410
|
}
|
|
411
|
+
(0, _inherits2.default)(BadRequest_InvalidFilterCombinationError, _BadRequestError13);
|
|
412
412
|
return (0, _createClass2.default)(BadRequest_InvalidFilterCombinationError);
|
|
413
413
|
}(BadRequestError);
|
|
414
414
|
errorClasses.BadRequest_InvalidFilterCombinationError = BadRequest_InvalidFilterCombinationError;
|
|
415
415
|
var BadRequest_InvalidFilterFieldError = exports.BadRequest_InvalidFilterFieldError = /*#__PURE__*/function (_BadRequestError14) {
|
|
416
|
-
(0, _inherits2.default)(BadRequest_InvalidFilterFieldError, _BadRequestError14);
|
|
417
416
|
function BadRequest_InvalidFilterFieldError(message, code, errorData) {
|
|
418
417
|
var _this29;
|
|
419
418
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidFilterFieldError);
|
|
@@ -421,11 +420,11 @@ var BadRequest_InvalidFilterFieldError = exports.BadRequest_InvalidFilterFieldEr
|
|
|
421
420
|
_this29.name = 'BadRequest_InvalidFilterFieldError';
|
|
422
421
|
return _this29;
|
|
423
422
|
}
|
|
423
|
+
(0, _inherits2.default)(BadRequest_InvalidFilterFieldError, _BadRequestError14);
|
|
424
424
|
return (0, _createClass2.default)(BadRequest_InvalidFilterFieldError);
|
|
425
425
|
}(BadRequestError);
|
|
426
426
|
errorClasses.BadRequest_InvalidFilterFieldError = BadRequest_InvalidFilterFieldError;
|
|
427
427
|
var BadRequest_InvalidFilterParamError = exports.BadRequest_InvalidFilterParamError = /*#__PURE__*/function (_BadRequestError15) {
|
|
428
|
-
(0, _inherits2.default)(BadRequest_InvalidFilterParamError, _BadRequestError15);
|
|
429
428
|
function BadRequest_InvalidFilterParamError(message, code, errorData) {
|
|
430
429
|
var _this30;
|
|
431
430
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidFilterParamError);
|
|
@@ -433,11 +432,11 @@ var BadRequest_InvalidFilterParamError = exports.BadRequest_InvalidFilterParamEr
|
|
|
433
432
|
_this30.name = 'BadRequest_InvalidFilterParamError';
|
|
434
433
|
return _this30;
|
|
435
434
|
}
|
|
435
|
+
(0, _inherits2.default)(BadRequest_InvalidFilterParamError, _BadRequestError15);
|
|
436
436
|
return (0, _createClass2.default)(BadRequest_InvalidFilterParamError);
|
|
437
437
|
}(BadRequestError);
|
|
438
438
|
errorClasses.BadRequest_InvalidFilterParamError = BadRequest_InvalidFilterParamError;
|
|
439
439
|
var BadRequest_InvalidFilterParamValueError = exports.BadRequest_InvalidFilterParamValueError = /*#__PURE__*/function (_BadRequestError16) {
|
|
440
|
-
(0, _inherits2.default)(BadRequest_InvalidFilterParamValueError, _BadRequestError16);
|
|
441
440
|
function BadRequest_InvalidFilterParamValueError(message, code, errorData) {
|
|
442
441
|
var _this31;
|
|
443
442
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidFilterParamValueError);
|
|
@@ -445,11 +444,11 @@ var BadRequest_InvalidFilterParamValueError = exports.BadRequest_InvalidFilterPa
|
|
|
445
444
|
_this31.name = 'BadRequest_InvalidFilterParamValueError';
|
|
446
445
|
return _this31;
|
|
447
446
|
}
|
|
447
|
+
(0, _inherits2.default)(BadRequest_InvalidFilterParamValueError, _BadRequestError16);
|
|
448
448
|
return (0, _createClass2.default)(BadRequest_InvalidFilterParamValueError);
|
|
449
449
|
}(BadRequestError);
|
|
450
450
|
errorClasses.BadRequest_InvalidFilterParamValueError = BadRequest_InvalidFilterParamValueError;
|
|
451
451
|
var BadRequest_InvalidInputEncodingError = exports.BadRequest_InvalidInputEncodingError = /*#__PURE__*/function (_BadRequestError17) {
|
|
452
|
-
(0, _inherits2.default)(BadRequest_InvalidInputEncodingError, _BadRequestError17);
|
|
453
452
|
function BadRequest_InvalidInputEncodingError(message, code, errorData) {
|
|
454
453
|
var _this32;
|
|
455
454
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidInputEncodingError);
|
|
@@ -457,11 +456,11 @@ var BadRequest_InvalidInputEncodingError = exports.BadRequest_InvalidInputEncodi
|
|
|
457
456
|
_this32.name = 'BadRequest_InvalidInputEncodingError';
|
|
458
457
|
return _this32;
|
|
459
458
|
}
|
|
459
|
+
(0, _inherits2.default)(BadRequest_InvalidInputEncodingError, _BadRequestError17);
|
|
460
460
|
return (0, _createClass2.default)(BadRequest_InvalidInputEncodingError);
|
|
461
461
|
}(BadRequestError);
|
|
462
462
|
errorClasses.BadRequest_InvalidInputEncodingError = BadRequest_InvalidInputEncodingError;
|
|
463
463
|
var BadRequest_InvalidInterfaceError = exports.BadRequest_InvalidInterfaceError = /*#__PURE__*/function (_BadRequestError18) {
|
|
464
|
-
(0, _inherits2.default)(BadRequest_InvalidInterfaceError, _BadRequestError18);
|
|
465
464
|
function BadRequest_InvalidInterfaceError(message, code, errorData) {
|
|
466
465
|
var _this33;
|
|
467
466
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidInterfaceError);
|
|
@@ -469,11 +468,11 @@ var BadRequest_InvalidInterfaceError = exports.BadRequest_InvalidInterfaceError
|
|
|
469
468
|
_this33.name = 'BadRequest_InvalidInterfaceError';
|
|
470
469
|
return _this33;
|
|
471
470
|
}
|
|
471
|
+
(0, _inherits2.default)(BadRequest_InvalidInterfaceError, _BadRequestError18);
|
|
472
472
|
return (0, _createClass2.default)(BadRequest_InvalidInterfaceError);
|
|
473
473
|
}(BadRequestError);
|
|
474
474
|
errorClasses.BadRequest_InvalidInterfaceError = BadRequest_InvalidInterfaceError;
|
|
475
475
|
var BadRequest_InvalidOauthProviderError = exports.BadRequest_InvalidOauthProviderError = /*#__PURE__*/function (_BadRequestError19) {
|
|
476
|
-
(0, _inherits2.default)(BadRequest_InvalidOauthProviderError, _BadRequestError19);
|
|
477
476
|
function BadRequest_InvalidOauthProviderError(message, code, errorData) {
|
|
478
477
|
var _this34;
|
|
479
478
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidOauthProviderError);
|
|
@@ -481,11 +480,11 @@ var BadRequest_InvalidOauthProviderError = exports.BadRequest_InvalidOauthProvid
|
|
|
481
480
|
_this34.name = 'BadRequest_InvalidOauthProviderError';
|
|
482
481
|
return _this34;
|
|
483
482
|
}
|
|
483
|
+
(0, _inherits2.default)(BadRequest_InvalidOauthProviderError, _BadRequestError19);
|
|
484
484
|
return (0, _createClass2.default)(BadRequest_InvalidOauthProviderError);
|
|
485
485
|
}(BadRequestError);
|
|
486
486
|
errorClasses.BadRequest_InvalidOauthProviderError = BadRequest_InvalidOauthProviderError;
|
|
487
487
|
var BadRequest_InvalidPathError = exports.BadRequest_InvalidPathError = /*#__PURE__*/function (_BadRequestError20) {
|
|
488
|
-
(0, _inherits2.default)(BadRequest_InvalidPathError, _BadRequestError20);
|
|
489
488
|
function BadRequest_InvalidPathError(message, code, errorData) {
|
|
490
489
|
var _this35;
|
|
491
490
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidPathError);
|
|
@@ -493,11 +492,11 @@ var BadRequest_InvalidPathError = exports.BadRequest_InvalidPathError = /*#__PUR
|
|
|
493
492
|
_this35.name = 'BadRequest_InvalidPathError';
|
|
494
493
|
return _this35;
|
|
495
494
|
}
|
|
495
|
+
(0, _inherits2.default)(BadRequest_InvalidPathError, _BadRequestError20);
|
|
496
496
|
return (0, _createClass2.default)(BadRequest_InvalidPathError);
|
|
497
497
|
}(BadRequestError);
|
|
498
498
|
errorClasses.BadRequest_InvalidPathError = BadRequest_InvalidPathError;
|
|
499
499
|
var BadRequest_InvalidReturnToUrlError = exports.BadRequest_InvalidReturnToUrlError = /*#__PURE__*/function (_BadRequestError21) {
|
|
500
|
-
(0, _inherits2.default)(BadRequest_InvalidReturnToUrlError, _BadRequestError21);
|
|
501
500
|
function BadRequest_InvalidReturnToUrlError(message, code, errorData) {
|
|
502
501
|
var _this36;
|
|
503
502
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidReturnToUrlError);
|
|
@@ -505,11 +504,11 @@ var BadRequest_InvalidReturnToUrlError = exports.BadRequest_InvalidReturnToUrlEr
|
|
|
505
504
|
_this36.name = 'BadRequest_InvalidReturnToUrlError';
|
|
506
505
|
return _this36;
|
|
507
506
|
}
|
|
507
|
+
(0, _inherits2.default)(BadRequest_InvalidReturnToUrlError, _BadRequestError21);
|
|
508
508
|
return (0, _createClass2.default)(BadRequest_InvalidReturnToUrlError);
|
|
509
509
|
}(BadRequestError);
|
|
510
510
|
errorClasses.BadRequest_InvalidReturnToUrlError = BadRequest_InvalidReturnToUrlError;
|
|
511
511
|
var BadRequest_InvalidUploadOffsetError = exports.BadRequest_InvalidUploadOffsetError = /*#__PURE__*/function (_BadRequestError22) {
|
|
512
|
-
(0, _inherits2.default)(BadRequest_InvalidUploadOffsetError, _BadRequestError22);
|
|
513
512
|
function BadRequest_InvalidUploadOffsetError(message, code, errorData) {
|
|
514
513
|
var _this37;
|
|
515
514
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidUploadOffsetError);
|
|
@@ -517,11 +516,11 @@ var BadRequest_InvalidUploadOffsetError = exports.BadRequest_InvalidUploadOffset
|
|
|
517
516
|
_this37.name = 'BadRequest_InvalidUploadOffsetError';
|
|
518
517
|
return _this37;
|
|
519
518
|
}
|
|
519
|
+
(0, _inherits2.default)(BadRequest_InvalidUploadOffsetError, _BadRequestError22);
|
|
520
520
|
return (0, _createClass2.default)(BadRequest_InvalidUploadOffsetError);
|
|
521
521
|
}(BadRequestError);
|
|
522
522
|
errorClasses.BadRequest_InvalidUploadOffsetError = BadRequest_InvalidUploadOffsetError;
|
|
523
523
|
var BadRequest_InvalidUploadPartGapError = exports.BadRequest_InvalidUploadPartGapError = /*#__PURE__*/function (_BadRequestError23) {
|
|
524
|
-
(0, _inherits2.default)(BadRequest_InvalidUploadPartGapError, _BadRequestError23);
|
|
525
524
|
function BadRequest_InvalidUploadPartGapError(message, code, errorData) {
|
|
526
525
|
var _this38;
|
|
527
526
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidUploadPartGapError);
|
|
@@ -529,11 +528,11 @@ var BadRequest_InvalidUploadPartGapError = exports.BadRequest_InvalidUploadPartG
|
|
|
529
528
|
_this38.name = 'BadRequest_InvalidUploadPartGapError';
|
|
530
529
|
return _this38;
|
|
531
530
|
}
|
|
531
|
+
(0, _inherits2.default)(BadRequest_InvalidUploadPartGapError, _BadRequestError23);
|
|
532
532
|
return (0, _createClass2.default)(BadRequest_InvalidUploadPartGapError);
|
|
533
533
|
}(BadRequestError);
|
|
534
534
|
errorClasses.BadRequest_InvalidUploadPartGapError = BadRequest_InvalidUploadPartGapError;
|
|
535
535
|
var BadRequest_InvalidUploadPartSizeError = exports.BadRequest_InvalidUploadPartSizeError = /*#__PURE__*/function (_BadRequestError24) {
|
|
536
|
-
(0, _inherits2.default)(BadRequest_InvalidUploadPartSizeError, _BadRequestError24);
|
|
537
536
|
function BadRequest_InvalidUploadPartSizeError(message, code, errorData) {
|
|
538
537
|
var _this39;
|
|
539
538
|
(0, _classCallCheck2.default)(this, BadRequest_InvalidUploadPartSizeError);
|
|
@@ -541,11 +540,11 @@ var BadRequest_InvalidUploadPartSizeError = exports.BadRequest_InvalidUploadPart
|
|
|
541
540
|
_this39.name = 'BadRequest_InvalidUploadPartSizeError';
|
|
542
541
|
return _this39;
|
|
543
542
|
}
|
|
543
|
+
(0, _inherits2.default)(BadRequest_InvalidUploadPartSizeError, _BadRequestError24);
|
|
544
544
|
return (0, _createClass2.default)(BadRequest_InvalidUploadPartSizeError);
|
|
545
545
|
}(BadRequestError);
|
|
546
546
|
errorClasses.BadRequest_InvalidUploadPartSizeError = BadRequest_InvalidUploadPartSizeError;
|
|
547
547
|
var BadRequest_MethodNotAllowedError = exports.BadRequest_MethodNotAllowedError = /*#__PURE__*/function (_BadRequestError25) {
|
|
548
|
-
(0, _inherits2.default)(BadRequest_MethodNotAllowedError, _BadRequestError25);
|
|
549
548
|
function BadRequest_MethodNotAllowedError(message, code, errorData) {
|
|
550
549
|
var _this40;
|
|
551
550
|
(0, _classCallCheck2.default)(this, BadRequest_MethodNotAllowedError);
|
|
@@ -553,11 +552,11 @@ var BadRequest_MethodNotAllowedError = exports.BadRequest_MethodNotAllowedError
|
|
|
553
552
|
_this40.name = 'BadRequest_MethodNotAllowedError';
|
|
554
553
|
return _this40;
|
|
555
554
|
}
|
|
555
|
+
(0, _inherits2.default)(BadRequest_MethodNotAllowedError, _BadRequestError25);
|
|
556
556
|
return (0, _createClass2.default)(BadRequest_MethodNotAllowedError);
|
|
557
557
|
}(BadRequestError);
|
|
558
558
|
errorClasses.BadRequest_MethodNotAllowedError = BadRequest_MethodNotAllowedError;
|
|
559
559
|
var BadRequest_NoValidInputParamsError = exports.BadRequest_NoValidInputParamsError = /*#__PURE__*/function (_BadRequestError26) {
|
|
560
|
-
(0, _inherits2.default)(BadRequest_NoValidInputParamsError, _BadRequestError26);
|
|
561
560
|
function BadRequest_NoValidInputParamsError(message, code, errorData) {
|
|
562
561
|
var _this41;
|
|
563
562
|
(0, _classCallCheck2.default)(this, BadRequest_NoValidInputParamsError);
|
|
@@ -565,11 +564,11 @@ var BadRequest_NoValidInputParamsError = exports.BadRequest_NoValidInputParamsEr
|
|
|
565
564
|
_this41.name = 'BadRequest_NoValidInputParamsError';
|
|
566
565
|
return _this41;
|
|
567
566
|
}
|
|
567
|
+
(0, _inherits2.default)(BadRequest_NoValidInputParamsError, _BadRequestError26);
|
|
568
568
|
return (0, _createClass2.default)(BadRequest_NoValidInputParamsError);
|
|
569
569
|
}(BadRequestError);
|
|
570
570
|
errorClasses.BadRequest_NoValidInputParamsError = BadRequest_NoValidInputParamsError;
|
|
571
571
|
var BadRequest_OperationOnNonScimResourceError = exports.BadRequest_OperationOnNonScimResourceError = /*#__PURE__*/function (_BadRequestError27) {
|
|
572
|
-
(0, _inherits2.default)(BadRequest_OperationOnNonScimResourceError, _BadRequestError27);
|
|
573
572
|
function BadRequest_OperationOnNonScimResourceError(message, code, errorData) {
|
|
574
573
|
var _this42;
|
|
575
574
|
(0, _classCallCheck2.default)(this, BadRequest_OperationOnNonScimResourceError);
|
|
@@ -577,11 +576,11 @@ var BadRequest_OperationOnNonScimResourceError = exports.BadRequest_OperationOnN
|
|
|
577
576
|
_this42.name = 'BadRequest_OperationOnNonScimResourceError';
|
|
578
577
|
return _this42;
|
|
579
578
|
}
|
|
579
|
+
(0, _inherits2.default)(BadRequest_OperationOnNonScimResourceError, _BadRequestError27);
|
|
580
580
|
return (0, _createClass2.default)(BadRequest_OperationOnNonScimResourceError);
|
|
581
581
|
}(BadRequestError);
|
|
582
582
|
errorClasses.BadRequest_OperationOnNonScimResourceError = BadRequest_OperationOnNonScimResourceError;
|
|
583
583
|
var BadRequest_PartNumberTooLargeError = exports.BadRequest_PartNumberTooLargeError = /*#__PURE__*/function (_BadRequestError28) {
|
|
584
|
-
(0, _inherits2.default)(BadRequest_PartNumberTooLargeError, _BadRequestError28);
|
|
585
584
|
function BadRequest_PartNumberTooLargeError(message, code, errorData) {
|
|
586
585
|
var _this43;
|
|
587
586
|
(0, _classCallCheck2.default)(this, BadRequest_PartNumberTooLargeError);
|
|
@@ -589,11 +588,11 @@ var BadRequest_PartNumberTooLargeError = exports.BadRequest_PartNumberTooLargeEr
|
|
|
589
588
|
_this43.name = 'BadRequest_PartNumberTooLargeError';
|
|
590
589
|
return _this43;
|
|
591
590
|
}
|
|
591
|
+
(0, _inherits2.default)(BadRequest_PartNumberTooLargeError, _BadRequestError28);
|
|
592
592
|
return (0, _createClass2.default)(BadRequest_PartNumberTooLargeError);
|
|
593
593
|
}(BadRequestError);
|
|
594
594
|
errorClasses.BadRequest_PartNumberTooLargeError = BadRequest_PartNumberTooLargeError;
|
|
595
595
|
var BadRequest_ReauthenticationNeededFieldsError = exports.BadRequest_ReauthenticationNeededFieldsError = /*#__PURE__*/function (_BadRequestError29) {
|
|
596
|
-
(0, _inherits2.default)(BadRequest_ReauthenticationNeededFieldsError, _BadRequestError29);
|
|
597
596
|
function BadRequest_ReauthenticationNeededFieldsError(message, code, errorData) {
|
|
598
597
|
var _this44;
|
|
599
598
|
(0, _classCallCheck2.default)(this, BadRequest_ReauthenticationNeededFieldsError);
|
|
@@ -601,11 +600,11 @@ var BadRequest_ReauthenticationNeededFieldsError = exports.BadRequest_Reauthenti
|
|
|
601
600
|
_this44.name = 'BadRequest_ReauthenticationNeededFieldsError';
|
|
602
601
|
return _this44;
|
|
603
602
|
}
|
|
603
|
+
(0, _inherits2.default)(BadRequest_ReauthenticationNeededFieldsError, _BadRequestError29);
|
|
604
604
|
return (0, _createClass2.default)(BadRequest_ReauthenticationNeededFieldsError);
|
|
605
605
|
}(BadRequestError);
|
|
606
606
|
errorClasses.BadRequest_ReauthenticationNeededFieldsError = BadRequest_ReauthenticationNeededFieldsError;
|
|
607
607
|
var BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = exports.BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = /*#__PURE__*/function (_BadRequestError30) {
|
|
608
|
-
(0, _inherits2.default)(BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError, _BadRequestError30);
|
|
609
608
|
function BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError(message, code, errorData) {
|
|
610
609
|
var _this45;
|
|
611
610
|
(0, _classCallCheck2.default)(this, BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError);
|
|
@@ -613,11 +612,11 @@ var BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = exports.BadRe
|
|
|
613
612
|
_this45.name = 'BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError';
|
|
614
613
|
return _this45;
|
|
615
614
|
}
|
|
615
|
+
(0, _inherits2.default)(BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError, _BadRequestError30);
|
|
616
616
|
return (0, _createClass2.default)(BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError);
|
|
617
617
|
}(BadRequestError);
|
|
618
618
|
errorClasses.BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError = BadRequest_RequestParamPathCannotHaveTrailingWhitespaceError;
|
|
619
619
|
var BadRequest_RequestParamsContainInvalidCharacterError = exports.BadRequest_RequestParamsContainInvalidCharacterError = /*#__PURE__*/function (_BadRequestError31) {
|
|
620
|
-
(0, _inherits2.default)(BadRequest_RequestParamsContainInvalidCharacterError, _BadRequestError31);
|
|
621
620
|
function BadRequest_RequestParamsContainInvalidCharacterError(message, code, errorData) {
|
|
622
621
|
var _this46;
|
|
623
622
|
(0, _classCallCheck2.default)(this, BadRequest_RequestParamsContainInvalidCharacterError);
|
|
@@ -625,11 +624,11 @@ var BadRequest_RequestParamsContainInvalidCharacterError = exports.BadRequest_Re
|
|
|
625
624
|
_this46.name = 'BadRequest_RequestParamsContainInvalidCharacterError';
|
|
626
625
|
return _this46;
|
|
627
626
|
}
|
|
627
|
+
(0, _inherits2.default)(BadRequest_RequestParamsContainInvalidCharacterError, _BadRequestError31);
|
|
628
628
|
return (0, _createClass2.default)(BadRequest_RequestParamsContainInvalidCharacterError);
|
|
629
629
|
}(BadRequestError);
|
|
630
630
|
errorClasses.BadRequest_RequestParamsContainInvalidCharacterError = BadRequest_RequestParamsContainInvalidCharacterError;
|
|
631
631
|
var BadRequest_RequestParamsInvalidError = exports.BadRequest_RequestParamsInvalidError = /*#__PURE__*/function (_BadRequestError32) {
|
|
632
|
-
(0, _inherits2.default)(BadRequest_RequestParamsInvalidError, _BadRequestError32);
|
|
633
632
|
function BadRequest_RequestParamsInvalidError(message, code, errorData) {
|
|
634
633
|
var _this47;
|
|
635
634
|
(0, _classCallCheck2.default)(this, BadRequest_RequestParamsInvalidError);
|
|
@@ -637,11 +636,11 @@ var BadRequest_RequestParamsInvalidError = exports.BadRequest_RequestParamsInval
|
|
|
637
636
|
_this47.name = 'BadRequest_RequestParamsInvalidError';
|
|
638
637
|
return _this47;
|
|
639
638
|
}
|
|
639
|
+
(0, _inherits2.default)(BadRequest_RequestParamsInvalidError, _BadRequestError32);
|
|
640
640
|
return (0, _createClass2.default)(BadRequest_RequestParamsInvalidError);
|
|
641
641
|
}(BadRequestError);
|
|
642
642
|
errorClasses.BadRequest_RequestParamsInvalidError = BadRequest_RequestParamsInvalidError;
|
|
643
643
|
var BadRequest_RequestParamsRequiredError = exports.BadRequest_RequestParamsRequiredError = /*#__PURE__*/function (_BadRequestError33) {
|
|
644
|
-
(0, _inherits2.default)(BadRequest_RequestParamsRequiredError, _BadRequestError33);
|
|
645
644
|
function BadRequest_RequestParamsRequiredError(message, code, errorData) {
|
|
646
645
|
var _this48;
|
|
647
646
|
(0, _classCallCheck2.default)(this, BadRequest_RequestParamsRequiredError);
|
|
@@ -649,11 +648,11 @@ var BadRequest_RequestParamsRequiredError = exports.BadRequest_RequestParamsRequ
|
|
|
649
648
|
_this48.name = 'BadRequest_RequestParamsRequiredError';
|
|
650
649
|
return _this48;
|
|
651
650
|
}
|
|
651
|
+
(0, _inherits2.default)(BadRequest_RequestParamsRequiredError, _BadRequestError33);
|
|
652
652
|
return (0, _createClass2.default)(BadRequest_RequestParamsRequiredError);
|
|
653
653
|
}(BadRequestError);
|
|
654
654
|
errorClasses.BadRequest_RequestParamsRequiredError = BadRequest_RequestParamsRequiredError;
|
|
655
655
|
var BadRequest_SearchAllOnChildPathError = exports.BadRequest_SearchAllOnChildPathError = /*#__PURE__*/function (_BadRequestError34) {
|
|
656
|
-
(0, _inherits2.default)(BadRequest_SearchAllOnChildPathError, _BadRequestError34);
|
|
657
656
|
function BadRequest_SearchAllOnChildPathError(message, code, errorData) {
|
|
658
657
|
var _this49;
|
|
659
658
|
(0, _classCallCheck2.default)(this, BadRequest_SearchAllOnChildPathError);
|
|
@@ -661,11 +660,11 @@ var BadRequest_SearchAllOnChildPathError = exports.BadRequest_SearchAllOnChildPa
|
|
|
661
660
|
_this49.name = 'BadRequest_SearchAllOnChildPathError';
|
|
662
661
|
return _this49;
|
|
663
662
|
}
|
|
663
|
+
(0, _inherits2.default)(BadRequest_SearchAllOnChildPathError, _BadRequestError34);
|
|
664
664
|
return (0, _createClass2.default)(BadRequest_SearchAllOnChildPathError);
|
|
665
665
|
}(BadRequestError);
|
|
666
666
|
errorClasses.BadRequest_SearchAllOnChildPathError = BadRequest_SearchAllOnChildPathError;
|
|
667
667
|
var BadRequest_UnsupportedCurrencyError = exports.BadRequest_UnsupportedCurrencyError = /*#__PURE__*/function (_BadRequestError35) {
|
|
668
|
-
(0, _inherits2.default)(BadRequest_UnsupportedCurrencyError, _BadRequestError35);
|
|
669
668
|
function BadRequest_UnsupportedCurrencyError(message, code, errorData) {
|
|
670
669
|
var _this50;
|
|
671
670
|
(0, _classCallCheck2.default)(this, BadRequest_UnsupportedCurrencyError);
|
|
@@ -673,11 +672,11 @@ var BadRequest_UnsupportedCurrencyError = exports.BadRequest_UnsupportedCurrency
|
|
|
673
672
|
_this50.name = 'BadRequest_UnsupportedCurrencyError';
|
|
674
673
|
return _this50;
|
|
675
674
|
}
|
|
675
|
+
(0, _inherits2.default)(BadRequest_UnsupportedCurrencyError, _BadRequestError35);
|
|
676
676
|
return (0, _createClass2.default)(BadRequest_UnsupportedCurrencyError);
|
|
677
677
|
}(BadRequestError);
|
|
678
678
|
errorClasses.BadRequest_UnsupportedCurrencyError = BadRequest_UnsupportedCurrencyError;
|
|
679
679
|
var BadRequest_UnsupportedHttpResponseFormatError = exports.BadRequest_UnsupportedHttpResponseFormatError = /*#__PURE__*/function (_BadRequestError36) {
|
|
680
|
-
(0, _inherits2.default)(BadRequest_UnsupportedHttpResponseFormatError, _BadRequestError36);
|
|
681
680
|
function BadRequest_UnsupportedHttpResponseFormatError(message, code, errorData) {
|
|
682
681
|
var _this51;
|
|
683
682
|
(0, _classCallCheck2.default)(this, BadRequest_UnsupportedHttpResponseFormatError);
|
|
@@ -685,11 +684,11 @@ var BadRequest_UnsupportedHttpResponseFormatError = exports.BadRequest_Unsupport
|
|
|
685
684
|
_this51.name = 'BadRequest_UnsupportedHttpResponseFormatError';
|
|
686
685
|
return _this51;
|
|
687
686
|
}
|
|
687
|
+
(0, _inherits2.default)(BadRequest_UnsupportedHttpResponseFormatError, _BadRequestError36);
|
|
688
688
|
return (0, _createClass2.default)(BadRequest_UnsupportedHttpResponseFormatError);
|
|
689
689
|
}(BadRequestError);
|
|
690
690
|
errorClasses.BadRequest_UnsupportedHttpResponseFormatError = BadRequest_UnsupportedHttpResponseFormatError;
|
|
691
691
|
var BadRequest_UnsupportedMediaTypeError = exports.BadRequest_UnsupportedMediaTypeError = /*#__PURE__*/function (_BadRequestError37) {
|
|
692
|
-
(0, _inherits2.default)(BadRequest_UnsupportedMediaTypeError, _BadRequestError37);
|
|
693
692
|
function BadRequest_UnsupportedMediaTypeError(message, code, errorData) {
|
|
694
693
|
var _this52;
|
|
695
694
|
(0, _classCallCheck2.default)(this, BadRequest_UnsupportedMediaTypeError);
|
|
@@ -697,11 +696,11 @@ var BadRequest_UnsupportedMediaTypeError = exports.BadRequest_UnsupportedMediaTy
|
|
|
697
696
|
_this52.name = 'BadRequest_UnsupportedMediaTypeError';
|
|
698
697
|
return _this52;
|
|
699
698
|
}
|
|
699
|
+
(0, _inherits2.default)(BadRequest_UnsupportedMediaTypeError, _BadRequestError37);
|
|
700
700
|
return (0, _createClass2.default)(BadRequest_UnsupportedMediaTypeError);
|
|
701
701
|
}(BadRequestError);
|
|
702
702
|
errorClasses.BadRequest_UnsupportedMediaTypeError = BadRequest_UnsupportedMediaTypeError;
|
|
703
703
|
var BadRequest_UserIdInvalidError = exports.BadRequest_UserIdInvalidError = /*#__PURE__*/function (_BadRequestError38) {
|
|
704
|
-
(0, _inherits2.default)(BadRequest_UserIdInvalidError, _BadRequestError38);
|
|
705
704
|
function BadRequest_UserIdInvalidError(message, code, errorData) {
|
|
706
705
|
var _this53;
|
|
707
706
|
(0, _classCallCheck2.default)(this, BadRequest_UserIdInvalidError);
|
|
@@ -709,11 +708,11 @@ var BadRequest_UserIdInvalidError = exports.BadRequest_UserIdInvalidError = /*#_
|
|
|
709
708
|
_this53.name = 'BadRequest_UserIdInvalidError';
|
|
710
709
|
return _this53;
|
|
711
710
|
}
|
|
711
|
+
(0, _inherits2.default)(BadRequest_UserIdInvalidError, _BadRequestError38);
|
|
712
712
|
return (0, _createClass2.default)(BadRequest_UserIdInvalidError);
|
|
713
713
|
}(BadRequestError);
|
|
714
714
|
errorClasses.BadRequest_UserIdInvalidError = BadRequest_UserIdInvalidError;
|
|
715
715
|
var BadRequest_UserIdOnUserEndpointError = exports.BadRequest_UserIdOnUserEndpointError = /*#__PURE__*/function (_BadRequestError39) {
|
|
716
|
-
(0, _inherits2.default)(BadRequest_UserIdOnUserEndpointError, _BadRequestError39);
|
|
717
716
|
function BadRequest_UserIdOnUserEndpointError(message, code, errorData) {
|
|
718
717
|
var _this54;
|
|
719
718
|
(0, _classCallCheck2.default)(this, BadRequest_UserIdOnUserEndpointError);
|
|
@@ -721,11 +720,11 @@ var BadRequest_UserIdOnUserEndpointError = exports.BadRequest_UserIdOnUserEndpoi
|
|
|
721
720
|
_this54.name = 'BadRequest_UserIdOnUserEndpointError';
|
|
722
721
|
return _this54;
|
|
723
722
|
}
|
|
723
|
+
(0, _inherits2.default)(BadRequest_UserIdOnUserEndpointError, _BadRequestError39);
|
|
724
724
|
return (0, _createClass2.default)(BadRequest_UserIdOnUserEndpointError);
|
|
725
725
|
}(BadRequestError);
|
|
726
726
|
errorClasses.BadRequest_UserIdOnUserEndpointError = BadRequest_UserIdOnUserEndpointError;
|
|
727
727
|
var BadRequest_UserRequiredError = exports.BadRequest_UserRequiredError = /*#__PURE__*/function (_BadRequestError40) {
|
|
728
|
-
(0, _inherits2.default)(BadRequest_UserRequiredError, _BadRequestError40);
|
|
729
728
|
function BadRequest_UserRequiredError(message, code, errorData) {
|
|
730
729
|
var _this55;
|
|
731
730
|
(0, _classCallCheck2.default)(this, BadRequest_UserRequiredError);
|
|
@@ -733,11 +732,11 @@ var BadRequest_UserRequiredError = exports.BadRequest_UserRequiredError = /*#__P
|
|
|
733
732
|
_this55.name = 'BadRequest_UserRequiredError';
|
|
734
733
|
return _this55;
|
|
735
734
|
}
|
|
735
|
+
(0, _inherits2.default)(BadRequest_UserRequiredError, _BadRequestError40);
|
|
736
736
|
return (0, _createClass2.default)(BadRequest_UserRequiredError);
|
|
737
737
|
}(BadRequestError);
|
|
738
738
|
errorClasses.BadRequest_UserRequiredError = BadRequest_UserRequiredError;
|
|
739
739
|
var NotAuthenticated_AuthenticationRequiredError = exports.NotAuthenticated_AuthenticationRequiredError = /*#__PURE__*/function (_NotAuthenticatedErro) {
|
|
740
|
-
(0, _inherits2.default)(NotAuthenticated_AuthenticationRequiredError, _NotAuthenticatedErro);
|
|
741
740
|
function NotAuthenticated_AuthenticationRequiredError(message, code, errorData) {
|
|
742
741
|
var _this56;
|
|
743
742
|
(0, _classCallCheck2.default)(this, NotAuthenticated_AuthenticationRequiredError);
|
|
@@ -745,11 +744,11 @@ var NotAuthenticated_AuthenticationRequiredError = exports.NotAuthenticated_Auth
|
|
|
745
744
|
_this56.name = 'NotAuthenticated_AuthenticationRequiredError';
|
|
746
745
|
return _this56;
|
|
747
746
|
}
|
|
747
|
+
(0, _inherits2.default)(NotAuthenticated_AuthenticationRequiredError, _NotAuthenticatedErro);
|
|
748
748
|
return (0, _createClass2.default)(NotAuthenticated_AuthenticationRequiredError);
|
|
749
749
|
}(NotAuthenticatedError);
|
|
750
750
|
errorClasses.NotAuthenticated_AuthenticationRequiredError = NotAuthenticated_AuthenticationRequiredError;
|
|
751
751
|
var NotAuthenticated_BundleRegistrationCodeFailedError = exports.NotAuthenticated_BundleRegistrationCodeFailedError = /*#__PURE__*/function (_NotAuthenticatedErro2) {
|
|
752
|
-
(0, _inherits2.default)(NotAuthenticated_BundleRegistrationCodeFailedError, _NotAuthenticatedErro2);
|
|
753
752
|
function NotAuthenticated_BundleRegistrationCodeFailedError(message, code, errorData) {
|
|
754
753
|
var _this57;
|
|
755
754
|
(0, _classCallCheck2.default)(this, NotAuthenticated_BundleRegistrationCodeFailedError);
|
|
@@ -757,11 +756,11 @@ var NotAuthenticated_BundleRegistrationCodeFailedError = exports.NotAuthenticate
|
|
|
757
756
|
_this57.name = 'NotAuthenticated_BundleRegistrationCodeFailedError';
|
|
758
757
|
return _this57;
|
|
759
758
|
}
|
|
759
|
+
(0, _inherits2.default)(NotAuthenticated_BundleRegistrationCodeFailedError, _NotAuthenticatedErro2);
|
|
760
760
|
return (0, _createClass2.default)(NotAuthenticated_BundleRegistrationCodeFailedError);
|
|
761
761
|
}(NotAuthenticatedError);
|
|
762
762
|
errorClasses.NotAuthenticated_BundleRegistrationCodeFailedError = NotAuthenticated_BundleRegistrationCodeFailedError;
|
|
763
763
|
var NotAuthenticated_FilesAgentTokenFailedError = exports.NotAuthenticated_FilesAgentTokenFailedError = /*#__PURE__*/function (_NotAuthenticatedErro3) {
|
|
764
|
-
(0, _inherits2.default)(NotAuthenticated_FilesAgentTokenFailedError, _NotAuthenticatedErro3);
|
|
765
764
|
function NotAuthenticated_FilesAgentTokenFailedError(message, code, errorData) {
|
|
766
765
|
var _this58;
|
|
767
766
|
(0, _classCallCheck2.default)(this, NotAuthenticated_FilesAgentTokenFailedError);
|
|
@@ -769,11 +768,11 @@ var NotAuthenticated_FilesAgentTokenFailedError = exports.NotAuthenticated_Files
|
|
|
769
768
|
_this58.name = 'NotAuthenticated_FilesAgentTokenFailedError';
|
|
770
769
|
return _this58;
|
|
771
770
|
}
|
|
771
|
+
(0, _inherits2.default)(NotAuthenticated_FilesAgentTokenFailedError, _NotAuthenticatedErro3);
|
|
772
772
|
return (0, _createClass2.default)(NotAuthenticated_FilesAgentTokenFailedError);
|
|
773
773
|
}(NotAuthenticatedError);
|
|
774
774
|
errorClasses.NotAuthenticated_FilesAgentTokenFailedError = NotAuthenticated_FilesAgentTokenFailedError;
|
|
775
775
|
var NotAuthenticated_InboxRegistrationCodeFailedError = exports.NotAuthenticated_InboxRegistrationCodeFailedError = /*#__PURE__*/function (_NotAuthenticatedErro4) {
|
|
776
|
-
(0, _inherits2.default)(NotAuthenticated_InboxRegistrationCodeFailedError, _NotAuthenticatedErro4);
|
|
777
776
|
function NotAuthenticated_InboxRegistrationCodeFailedError(message, code, errorData) {
|
|
778
777
|
var _this59;
|
|
779
778
|
(0, _classCallCheck2.default)(this, NotAuthenticated_InboxRegistrationCodeFailedError);
|
|
@@ -781,11 +780,11 @@ var NotAuthenticated_InboxRegistrationCodeFailedError = exports.NotAuthenticated
|
|
|
781
780
|
_this59.name = 'NotAuthenticated_InboxRegistrationCodeFailedError';
|
|
782
781
|
return _this59;
|
|
783
782
|
}
|
|
783
|
+
(0, _inherits2.default)(NotAuthenticated_InboxRegistrationCodeFailedError, _NotAuthenticatedErro4);
|
|
784
784
|
return (0, _createClass2.default)(NotAuthenticated_InboxRegistrationCodeFailedError);
|
|
785
785
|
}(NotAuthenticatedError);
|
|
786
786
|
errorClasses.NotAuthenticated_InboxRegistrationCodeFailedError = NotAuthenticated_InboxRegistrationCodeFailedError;
|
|
787
787
|
var NotAuthenticated_InvalidCredentialsError = exports.NotAuthenticated_InvalidCredentialsError = /*#__PURE__*/function (_NotAuthenticatedErro5) {
|
|
788
|
-
(0, _inherits2.default)(NotAuthenticated_InvalidCredentialsError, _NotAuthenticatedErro5);
|
|
789
788
|
function NotAuthenticated_InvalidCredentialsError(message, code, errorData) {
|
|
790
789
|
var _this60;
|
|
791
790
|
(0, _classCallCheck2.default)(this, NotAuthenticated_InvalidCredentialsError);
|
|
@@ -793,11 +792,11 @@ var NotAuthenticated_InvalidCredentialsError = exports.NotAuthenticated_InvalidC
|
|
|
793
792
|
_this60.name = 'NotAuthenticated_InvalidCredentialsError';
|
|
794
793
|
return _this60;
|
|
795
794
|
}
|
|
795
|
+
(0, _inherits2.default)(NotAuthenticated_InvalidCredentialsError, _NotAuthenticatedErro5);
|
|
796
796
|
return (0, _createClass2.default)(NotAuthenticated_InvalidCredentialsError);
|
|
797
797
|
}(NotAuthenticatedError);
|
|
798
798
|
errorClasses.NotAuthenticated_InvalidCredentialsError = NotAuthenticated_InvalidCredentialsError;
|
|
799
799
|
var NotAuthenticated_InvalidOauthError = exports.NotAuthenticated_InvalidOauthError = /*#__PURE__*/function (_NotAuthenticatedErro6) {
|
|
800
|
-
(0, _inherits2.default)(NotAuthenticated_InvalidOauthError, _NotAuthenticatedErro6);
|
|
801
800
|
function NotAuthenticated_InvalidOauthError(message, code, errorData) {
|
|
802
801
|
var _this61;
|
|
803
802
|
(0, _classCallCheck2.default)(this, NotAuthenticated_InvalidOauthError);
|
|
@@ -805,11 +804,11 @@ var NotAuthenticated_InvalidOauthError = exports.NotAuthenticated_InvalidOauthEr
|
|
|
805
804
|
_this61.name = 'NotAuthenticated_InvalidOauthError';
|
|
806
805
|
return _this61;
|
|
807
806
|
}
|
|
807
|
+
(0, _inherits2.default)(NotAuthenticated_InvalidOauthError, _NotAuthenticatedErro6);
|
|
808
808
|
return (0, _createClass2.default)(NotAuthenticated_InvalidOauthError);
|
|
809
809
|
}(NotAuthenticatedError);
|
|
810
810
|
errorClasses.NotAuthenticated_InvalidOauthError = NotAuthenticated_InvalidOauthError;
|
|
811
811
|
var NotAuthenticated_InvalidOrExpiredCodeError = exports.NotAuthenticated_InvalidOrExpiredCodeError = /*#__PURE__*/function (_NotAuthenticatedErro7) {
|
|
812
|
-
(0, _inherits2.default)(NotAuthenticated_InvalidOrExpiredCodeError, _NotAuthenticatedErro7);
|
|
813
812
|
function NotAuthenticated_InvalidOrExpiredCodeError(message, code, errorData) {
|
|
814
813
|
var _this62;
|
|
815
814
|
(0, _classCallCheck2.default)(this, NotAuthenticated_InvalidOrExpiredCodeError);
|
|
@@ -817,11 +816,11 @@ var NotAuthenticated_InvalidOrExpiredCodeError = exports.NotAuthenticated_Invali
|
|
|
817
816
|
_this62.name = 'NotAuthenticated_InvalidOrExpiredCodeError';
|
|
818
817
|
return _this62;
|
|
819
818
|
}
|
|
819
|
+
(0, _inherits2.default)(NotAuthenticated_InvalidOrExpiredCodeError, _NotAuthenticatedErro7);
|
|
820
820
|
return (0, _createClass2.default)(NotAuthenticated_InvalidOrExpiredCodeError);
|
|
821
821
|
}(NotAuthenticatedError);
|
|
822
822
|
errorClasses.NotAuthenticated_InvalidOrExpiredCodeError = NotAuthenticated_InvalidOrExpiredCodeError;
|
|
823
823
|
var NotAuthenticated_InvalidUsernameOrPasswordError = exports.NotAuthenticated_InvalidUsernameOrPasswordError = /*#__PURE__*/function (_NotAuthenticatedErro8) {
|
|
824
|
-
(0, _inherits2.default)(NotAuthenticated_InvalidUsernameOrPasswordError, _NotAuthenticatedErro8);
|
|
825
824
|
function NotAuthenticated_InvalidUsernameOrPasswordError(message, code, errorData) {
|
|
826
825
|
var _this63;
|
|
827
826
|
(0, _classCallCheck2.default)(this, NotAuthenticated_InvalidUsernameOrPasswordError);
|
|
@@ -829,11 +828,11 @@ var NotAuthenticated_InvalidUsernameOrPasswordError = exports.NotAuthenticated_I
|
|
|
829
828
|
_this63.name = 'NotAuthenticated_InvalidUsernameOrPasswordError';
|
|
830
829
|
return _this63;
|
|
831
830
|
}
|
|
831
|
+
(0, _inherits2.default)(NotAuthenticated_InvalidUsernameOrPasswordError, _NotAuthenticatedErro8);
|
|
832
832
|
return (0, _createClass2.default)(NotAuthenticated_InvalidUsernameOrPasswordError);
|
|
833
833
|
}(NotAuthenticatedError);
|
|
834
834
|
errorClasses.NotAuthenticated_InvalidUsernameOrPasswordError = NotAuthenticated_InvalidUsernameOrPasswordError;
|
|
835
835
|
var NotAuthenticated_LockedOutError = exports.NotAuthenticated_LockedOutError = /*#__PURE__*/function (_NotAuthenticatedErro9) {
|
|
836
|
-
(0, _inherits2.default)(NotAuthenticated_LockedOutError, _NotAuthenticatedErro9);
|
|
837
836
|
function NotAuthenticated_LockedOutError(message, code, errorData) {
|
|
838
837
|
var _this64;
|
|
839
838
|
(0, _classCallCheck2.default)(this, NotAuthenticated_LockedOutError);
|
|
@@ -841,11 +840,11 @@ var NotAuthenticated_LockedOutError = exports.NotAuthenticated_LockedOutError =
|
|
|
841
840
|
_this64.name = 'NotAuthenticated_LockedOutError';
|
|
842
841
|
return _this64;
|
|
843
842
|
}
|
|
843
|
+
(0, _inherits2.default)(NotAuthenticated_LockedOutError, _NotAuthenticatedErro9);
|
|
844
844
|
return (0, _createClass2.default)(NotAuthenticated_LockedOutError);
|
|
845
845
|
}(NotAuthenticatedError);
|
|
846
846
|
errorClasses.NotAuthenticated_LockedOutError = NotAuthenticated_LockedOutError;
|
|
847
847
|
var NotAuthenticated_LockoutRegionMismatchError = exports.NotAuthenticated_LockoutRegionMismatchError = /*#__PURE__*/function (_NotAuthenticatedErro10) {
|
|
848
|
-
(0, _inherits2.default)(NotAuthenticated_LockoutRegionMismatchError, _NotAuthenticatedErro10);
|
|
849
848
|
function NotAuthenticated_LockoutRegionMismatchError(message, code, errorData) {
|
|
850
849
|
var _this65;
|
|
851
850
|
(0, _classCallCheck2.default)(this, NotAuthenticated_LockoutRegionMismatchError);
|
|
@@ -853,11 +852,11 @@ var NotAuthenticated_LockoutRegionMismatchError = exports.NotAuthenticated_Locko
|
|
|
853
852
|
_this65.name = 'NotAuthenticated_LockoutRegionMismatchError';
|
|
854
853
|
return _this65;
|
|
855
854
|
}
|
|
855
|
+
(0, _inherits2.default)(NotAuthenticated_LockoutRegionMismatchError, _NotAuthenticatedErro10);
|
|
856
856
|
return (0, _createClass2.default)(NotAuthenticated_LockoutRegionMismatchError);
|
|
857
857
|
}(NotAuthenticatedError);
|
|
858
858
|
errorClasses.NotAuthenticated_LockoutRegionMismatchError = NotAuthenticated_LockoutRegionMismatchError;
|
|
859
859
|
var NotAuthenticated_OneTimePasswordIncorrectError = exports.NotAuthenticated_OneTimePasswordIncorrectError = /*#__PURE__*/function (_NotAuthenticatedErro11) {
|
|
860
|
-
(0, _inherits2.default)(NotAuthenticated_OneTimePasswordIncorrectError, _NotAuthenticatedErro11);
|
|
861
860
|
function NotAuthenticated_OneTimePasswordIncorrectError(message, code, errorData) {
|
|
862
861
|
var _this66;
|
|
863
862
|
(0, _classCallCheck2.default)(this, NotAuthenticated_OneTimePasswordIncorrectError);
|
|
@@ -865,11 +864,11 @@ var NotAuthenticated_OneTimePasswordIncorrectError = exports.NotAuthenticated_On
|
|
|
865
864
|
_this66.name = 'NotAuthenticated_OneTimePasswordIncorrectError';
|
|
866
865
|
return _this66;
|
|
867
866
|
}
|
|
867
|
+
(0, _inherits2.default)(NotAuthenticated_OneTimePasswordIncorrectError, _NotAuthenticatedErro11);
|
|
868
868
|
return (0, _createClass2.default)(NotAuthenticated_OneTimePasswordIncorrectError);
|
|
869
869
|
}(NotAuthenticatedError);
|
|
870
870
|
errorClasses.NotAuthenticated_OneTimePasswordIncorrectError = NotAuthenticated_OneTimePasswordIncorrectError;
|
|
871
871
|
var NotAuthenticated_TwoFactorAuthenticationErrorError = exports.NotAuthenticated_TwoFactorAuthenticationErrorError = /*#__PURE__*/function (_NotAuthenticatedErro12) {
|
|
872
|
-
(0, _inherits2.default)(NotAuthenticated_TwoFactorAuthenticationErrorError, _NotAuthenticatedErro12);
|
|
873
872
|
function NotAuthenticated_TwoFactorAuthenticationErrorError(message, code, errorData) {
|
|
874
873
|
var _this67;
|
|
875
874
|
(0, _classCallCheck2.default)(this, NotAuthenticated_TwoFactorAuthenticationErrorError);
|
|
@@ -877,11 +876,11 @@ var NotAuthenticated_TwoFactorAuthenticationErrorError = exports.NotAuthenticate
|
|
|
877
876
|
_this67.name = 'NotAuthenticated_TwoFactorAuthenticationErrorError';
|
|
878
877
|
return _this67;
|
|
879
878
|
}
|
|
879
|
+
(0, _inherits2.default)(NotAuthenticated_TwoFactorAuthenticationErrorError, _NotAuthenticatedErro12);
|
|
880
880
|
return (0, _createClass2.default)(NotAuthenticated_TwoFactorAuthenticationErrorError);
|
|
881
881
|
}(NotAuthenticatedError);
|
|
882
882
|
errorClasses.NotAuthenticated_TwoFactorAuthenticationErrorError = NotAuthenticated_TwoFactorAuthenticationErrorError;
|
|
883
883
|
var NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = exports.NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = /*#__PURE__*/function (_NotAuthenticatedErro13) {
|
|
884
|
-
(0, _inherits2.default)(NotAuthenticated_TwoFactorAuthenticationSetupExpiredError, _NotAuthenticatedErro13);
|
|
885
884
|
function NotAuthenticated_TwoFactorAuthenticationSetupExpiredError(message, code, errorData) {
|
|
886
885
|
var _this68;
|
|
887
886
|
(0, _classCallCheck2.default)(this, NotAuthenticated_TwoFactorAuthenticationSetupExpiredError);
|
|
@@ -889,11 +888,11 @@ var NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = exports.NotAuthe
|
|
|
889
888
|
_this68.name = 'NotAuthenticated_TwoFactorAuthenticationSetupExpiredError';
|
|
890
889
|
return _this68;
|
|
891
890
|
}
|
|
891
|
+
(0, _inherits2.default)(NotAuthenticated_TwoFactorAuthenticationSetupExpiredError, _NotAuthenticatedErro13);
|
|
892
892
|
return (0, _createClass2.default)(NotAuthenticated_TwoFactorAuthenticationSetupExpiredError);
|
|
893
893
|
}(NotAuthenticatedError);
|
|
894
894
|
errorClasses.NotAuthenticated_TwoFactorAuthenticationSetupExpiredError = NotAuthenticated_TwoFactorAuthenticationSetupExpiredError;
|
|
895
895
|
var NotAuthorized_ApiKeyIsDisabledError = exports.NotAuthorized_ApiKeyIsDisabledError = /*#__PURE__*/function (_NotAuthorizedError) {
|
|
896
|
-
(0, _inherits2.default)(NotAuthorized_ApiKeyIsDisabledError, _NotAuthorizedError);
|
|
897
896
|
function NotAuthorized_ApiKeyIsDisabledError(message, code, errorData) {
|
|
898
897
|
var _this69;
|
|
899
898
|
(0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyIsDisabledError);
|
|
@@ -901,11 +900,11 @@ var NotAuthorized_ApiKeyIsDisabledError = exports.NotAuthorized_ApiKeyIsDisabled
|
|
|
901
900
|
_this69.name = 'NotAuthorized_ApiKeyIsDisabledError';
|
|
902
901
|
return _this69;
|
|
903
902
|
}
|
|
903
|
+
(0, _inherits2.default)(NotAuthorized_ApiKeyIsDisabledError, _NotAuthorizedError);
|
|
904
904
|
return (0, _createClass2.default)(NotAuthorized_ApiKeyIsDisabledError);
|
|
905
905
|
}(NotAuthorizedError);
|
|
906
906
|
errorClasses.NotAuthorized_ApiKeyIsDisabledError = NotAuthorized_ApiKeyIsDisabledError;
|
|
907
907
|
var NotAuthorized_ApiKeyIsPathRestrictedError = exports.NotAuthorized_ApiKeyIsPathRestrictedError = /*#__PURE__*/function (_NotAuthorizedError2) {
|
|
908
|
-
(0, _inherits2.default)(NotAuthorized_ApiKeyIsPathRestrictedError, _NotAuthorizedError2);
|
|
909
908
|
function NotAuthorized_ApiKeyIsPathRestrictedError(message, code, errorData) {
|
|
910
909
|
var _this70;
|
|
911
910
|
(0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyIsPathRestrictedError);
|
|
@@ -913,11 +912,11 @@ var NotAuthorized_ApiKeyIsPathRestrictedError = exports.NotAuthorized_ApiKeyIsPa
|
|
|
913
912
|
_this70.name = 'NotAuthorized_ApiKeyIsPathRestrictedError';
|
|
914
913
|
return _this70;
|
|
915
914
|
}
|
|
915
|
+
(0, _inherits2.default)(NotAuthorized_ApiKeyIsPathRestrictedError, _NotAuthorizedError2);
|
|
916
916
|
return (0, _createClass2.default)(NotAuthorized_ApiKeyIsPathRestrictedError);
|
|
917
917
|
}(NotAuthorizedError);
|
|
918
918
|
errorClasses.NotAuthorized_ApiKeyIsPathRestrictedError = NotAuthorized_ApiKeyIsPathRestrictedError;
|
|
919
919
|
var NotAuthorized_ApiKeyOnlyForDesktopAppError = exports.NotAuthorized_ApiKeyOnlyForDesktopAppError = /*#__PURE__*/function (_NotAuthorizedError3) {
|
|
920
|
-
(0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForDesktopAppError, _NotAuthorizedError3);
|
|
921
920
|
function NotAuthorized_ApiKeyOnlyForDesktopAppError(message, code, errorData) {
|
|
922
921
|
var _this71;
|
|
923
922
|
(0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForDesktopAppError);
|
|
@@ -925,11 +924,11 @@ var NotAuthorized_ApiKeyOnlyForDesktopAppError = exports.NotAuthorized_ApiKeyOnl
|
|
|
925
924
|
_this71.name = 'NotAuthorized_ApiKeyOnlyForDesktopAppError';
|
|
926
925
|
return _this71;
|
|
927
926
|
}
|
|
927
|
+
(0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForDesktopAppError, _NotAuthorizedError3);
|
|
928
928
|
return (0, _createClass2.default)(NotAuthorized_ApiKeyOnlyForDesktopAppError);
|
|
929
929
|
}(NotAuthorizedError);
|
|
930
930
|
errorClasses.NotAuthorized_ApiKeyOnlyForDesktopAppError = NotAuthorized_ApiKeyOnlyForDesktopAppError;
|
|
931
931
|
var NotAuthorized_ApiKeyOnlyForMobileAppError = exports.NotAuthorized_ApiKeyOnlyForMobileAppError = /*#__PURE__*/function (_NotAuthorizedError4) {
|
|
932
|
-
(0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForMobileAppError, _NotAuthorizedError4);
|
|
933
932
|
function NotAuthorized_ApiKeyOnlyForMobileAppError(message, code, errorData) {
|
|
934
933
|
var _this72;
|
|
935
934
|
(0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForMobileAppError);
|
|
@@ -937,11 +936,11 @@ var NotAuthorized_ApiKeyOnlyForMobileAppError = exports.NotAuthorized_ApiKeyOnly
|
|
|
937
936
|
_this72.name = 'NotAuthorized_ApiKeyOnlyForMobileAppError';
|
|
938
937
|
return _this72;
|
|
939
938
|
}
|
|
939
|
+
(0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForMobileAppError, _NotAuthorizedError4);
|
|
940
940
|
return (0, _createClass2.default)(NotAuthorized_ApiKeyOnlyForMobileAppError);
|
|
941
941
|
}(NotAuthorizedError);
|
|
942
942
|
errorClasses.NotAuthorized_ApiKeyOnlyForMobileAppError = NotAuthorized_ApiKeyOnlyForMobileAppError;
|
|
943
943
|
var NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = exports.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = /*#__PURE__*/function (_NotAuthorizedError5) {
|
|
944
|
-
(0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForOfficeIntegrationError, _NotAuthorizedError5);
|
|
945
944
|
function NotAuthorized_ApiKeyOnlyForOfficeIntegrationError(message, code, errorData) {
|
|
946
945
|
var _this73;
|
|
947
946
|
(0, _classCallCheck2.default)(this, NotAuthorized_ApiKeyOnlyForOfficeIntegrationError);
|
|
@@ -949,11 +948,11 @@ var NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = exports.NotAuthorized_Ap
|
|
|
949
948
|
_this73.name = 'NotAuthorized_ApiKeyOnlyForOfficeIntegrationError';
|
|
950
949
|
return _this73;
|
|
951
950
|
}
|
|
951
|
+
(0, _inherits2.default)(NotAuthorized_ApiKeyOnlyForOfficeIntegrationError, _NotAuthorizedError5);
|
|
952
952
|
return (0, _createClass2.default)(NotAuthorized_ApiKeyOnlyForOfficeIntegrationError);
|
|
953
953
|
}(NotAuthorizedError);
|
|
954
954
|
errorClasses.NotAuthorized_ApiKeyOnlyForOfficeIntegrationError = NotAuthorized_ApiKeyOnlyForOfficeIntegrationError;
|
|
955
955
|
var NotAuthorized_BillingPermissionRequiredError = exports.NotAuthorized_BillingPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError6) {
|
|
956
|
-
(0, _inherits2.default)(NotAuthorized_BillingPermissionRequiredError, _NotAuthorizedError6);
|
|
957
956
|
function NotAuthorized_BillingPermissionRequiredError(message, code, errorData) {
|
|
958
957
|
var _this74;
|
|
959
958
|
(0, _classCallCheck2.default)(this, NotAuthorized_BillingPermissionRequiredError);
|
|
@@ -961,11 +960,11 @@ var NotAuthorized_BillingPermissionRequiredError = exports.NotAuthorized_Billing
|
|
|
961
960
|
_this74.name = 'NotAuthorized_BillingPermissionRequiredError';
|
|
962
961
|
return _this74;
|
|
963
962
|
}
|
|
963
|
+
(0, _inherits2.default)(NotAuthorized_BillingPermissionRequiredError, _NotAuthorizedError6);
|
|
964
964
|
return (0, _createClass2.default)(NotAuthorized_BillingPermissionRequiredError);
|
|
965
965
|
}(NotAuthorizedError);
|
|
966
966
|
errorClasses.NotAuthorized_BillingPermissionRequiredError = NotAuthorized_BillingPermissionRequiredError;
|
|
967
967
|
var NotAuthorized_BundleMaximumUsesReachedError = exports.NotAuthorized_BundleMaximumUsesReachedError = /*#__PURE__*/function (_NotAuthorizedError7) {
|
|
968
|
-
(0, _inherits2.default)(NotAuthorized_BundleMaximumUsesReachedError, _NotAuthorizedError7);
|
|
969
968
|
function NotAuthorized_BundleMaximumUsesReachedError(message, code, errorData) {
|
|
970
969
|
var _this75;
|
|
971
970
|
(0, _classCallCheck2.default)(this, NotAuthorized_BundleMaximumUsesReachedError);
|
|
@@ -973,11 +972,11 @@ var NotAuthorized_BundleMaximumUsesReachedError = exports.NotAuthorized_BundleMa
|
|
|
973
972
|
_this75.name = 'NotAuthorized_BundleMaximumUsesReachedError';
|
|
974
973
|
return _this75;
|
|
975
974
|
}
|
|
975
|
+
(0, _inherits2.default)(NotAuthorized_BundleMaximumUsesReachedError, _NotAuthorizedError7);
|
|
976
976
|
return (0, _createClass2.default)(NotAuthorized_BundleMaximumUsesReachedError);
|
|
977
977
|
}(NotAuthorizedError);
|
|
978
978
|
errorClasses.NotAuthorized_BundleMaximumUsesReachedError = NotAuthorized_BundleMaximumUsesReachedError;
|
|
979
979
|
var NotAuthorized_CannotLoginWhileUsingKeyError = exports.NotAuthorized_CannotLoginWhileUsingKeyError = /*#__PURE__*/function (_NotAuthorizedError8) {
|
|
980
|
-
(0, _inherits2.default)(NotAuthorized_CannotLoginWhileUsingKeyError, _NotAuthorizedError8);
|
|
981
980
|
function NotAuthorized_CannotLoginWhileUsingKeyError(message, code, errorData) {
|
|
982
981
|
var _this76;
|
|
983
982
|
(0, _classCallCheck2.default)(this, NotAuthorized_CannotLoginWhileUsingKeyError);
|
|
@@ -985,11 +984,11 @@ var NotAuthorized_CannotLoginWhileUsingKeyError = exports.NotAuthorized_CannotLo
|
|
|
985
984
|
_this76.name = 'NotAuthorized_CannotLoginWhileUsingKeyError';
|
|
986
985
|
return _this76;
|
|
987
986
|
}
|
|
987
|
+
(0, _inherits2.default)(NotAuthorized_CannotLoginWhileUsingKeyError, _NotAuthorizedError8);
|
|
988
988
|
return (0, _createClass2.default)(NotAuthorized_CannotLoginWhileUsingKeyError);
|
|
989
989
|
}(NotAuthorizedError);
|
|
990
990
|
errorClasses.NotAuthorized_CannotLoginWhileUsingKeyError = NotAuthorized_CannotLoginWhileUsingKeyError;
|
|
991
991
|
var NotAuthorized_CantActForOtherUserError = exports.NotAuthorized_CantActForOtherUserError = /*#__PURE__*/function (_NotAuthorizedError9) {
|
|
992
|
-
(0, _inherits2.default)(NotAuthorized_CantActForOtherUserError, _NotAuthorizedError9);
|
|
993
992
|
function NotAuthorized_CantActForOtherUserError(message, code, errorData) {
|
|
994
993
|
var _this77;
|
|
995
994
|
(0, _classCallCheck2.default)(this, NotAuthorized_CantActForOtherUserError);
|
|
@@ -997,11 +996,11 @@ var NotAuthorized_CantActForOtherUserError = exports.NotAuthorized_CantActForOth
|
|
|
997
996
|
_this77.name = 'NotAuthorized_CantActForOtherUserError';
|
|
998
997
|
return _this77;
|
|
999
998
|
}
|
|
999
|
+
(0, _inherits2.default)(NotAuthorized_CantActForOtherUserError, _NotAuthorizedError9);
|
|
1000
1000
|
return (0, _createClass2.default)(NotAuthorized_CantActForOtherUserError);
|
|
1001
1001
|
}(NotAuthorizedError);
|
|
1002
1002
|
errorClasses.NotAuthorized_CantActForOtherUserError = NotAuthorized_CantActForOtherUserError;
|
|
1003
1003
|
var NotAuthorized_ContactAdminForPasswordChangeHelpError = exports.NotAuthorized_ContactAdminForPasswordChangeHelpError = /*#__PURE__*/function (_NotAuthorizedError10) {
|
|
1004
|
-
(0, _inherits2.default)(NotAuthorized_ContactAdminForPasswordChangeHelpError, _NotAuthorizedError10);
|
|
1005
1004
|
function NotAuthorized_ContactAdminForPasswordChangeHelpError(message, code, errorData) {
|
|
1006
1005
|
var _this78;
|
|
1007
1006
|
(0, _classCallCheck2.default)(this, NotAuthorized_ContactAdminForPasswordChangeHelpError);
|
|
@@ -1009,11 +1008,11 @@ var NotAuthorized_ContactAdminForPasswordChangeHelpError = exports.NotAuthorized
|
|
|
1009
1008
|
_this78.name = 'NotAuthorized_ContactAdminForPasswordChangeHelpError';
|
|
1010
1009
|
return _this78;
|
|
1011
1010
|
}
|
|
1011
|
+
(0, _inherits2.default)(NotAuthorized_ContactAdminForPasswordChangeHelpError, _NotAuthorizedError10);
|
|
1012
1012
|
return (0, _createClass2.default)(NotAuthorized_ContactAdminForPasswordChangeHelpError);
|
|
1013
1013
|
}(NotAuthorizedError);
|
|
1014
1014
|
errorClasses.NotAuthorized_ContactAdminForPasswordChangeHelpError = NotAuthorized_ContactAdminForPasswordChangeHelpError;
|
|
1015
1015
|
var NotAuthorized_FilesAgentFailedAuthorizationError = exports.NotAuthorized_FilesAgentFailedAuthorizationError = /*#__PURE__*/function (_NotAuthorizedError11) {
|
|
1016
|
-
(0, _inherits2.default)(NotAuthorized_FilesAgentFailedAuthorizationError, _NotAuthorizedError11);
|
|
1017
1016
|
function NotAuthorized_FilesAgentFailedAuthorizationError(message, code, errorData) {
|
|
1018
1017
|
var _this79;
|
|
1019
1018
|
(0, _classCallCheck2.default)(this, NotAuthorized_FilesAgentFailedAuthorizationError);
|
|
@@ -1021,11 +1020,11 @@ var NotAuthorized_FilesAgentFailedAuthorizationError = exports.NotAuthorized_Fil
|
|
|
1021
1020
|
_this79.name = 'NotAuthorized_FilesAgentFailedAuthorizationError';
|
|
1022
1021
|
return _this79;
|
|
1023
1022
|
}
|
|
1023
|
+
(0, _inherits2.default)(NotAuthorized_FilesAgentFailedAuthorizationError, _NotAuthorizedError11);
|
|
1024
1024
|
return (0, _createClass2.default)(NotAuthorized_FilesAgentFailedAuthorizationError);
|
|
1025
1025
|
}(NotAuthorizedError);
|
|
1026
1026
|
errorClasses.NotAuthorized_FilesAgentFailedAuthorizationError = NotAuthorized_FilesAgentFailedAuthorizationError;
|
|
1027
1027
|
var NotAuthorized_FolderAdminOrBillingPermissionRequiredError = exports.NotAuthorized_FolderAdminOrBillingPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError12) {
|
|
1028
|
-
(0, _inherits2.default)(NotAuthorized_FolderAdminOrBillingPermissionRequiredError, _NotAuthorizedError12);
|
|
1029
1028
|
function NotAuthorized_FolderAdminOrBillingPermissionRequiredError(message, code, errorData) {
|
|
1030
1029
|
var _this80;
|
|
1031
1030
|
(0, _classCallCheck2.default)(this, NotAuthorized_FolderAdminOrBillingPermissionRequiredError);
|
|
@@ -1033,11 +1032,11 @@ var NotAuthorized_FolderAdminOrBillingPermissionRequiredError = exports.NotAutho
|
|
|
1033
1032
|
_this80.name = 'NotAuthorized_FolderAdminOrBillingPermissionRequiredError';
|
|
1034
1033
|
return _this80;
|
|
1035
1034
|
}
|
|
1035
|
+
(0, _inherits2.default)(NotAuthorized_FolderAdminOrBillingPermissionRequiredError, _NotAuthorizedError12);
|
|
1036
1036
|
return (0, _createClass2.default)(NotAuthorized_FolderAdminOrBillingPermissionRequiredError);
|
|
1037
1037
|
}(NotAuthorizedError);
|
|
1038
1038
|
errorClasses.NotAuthorized_FolderAdminOrBillingPermissionRequiredError = NotAuthorized_FolderAdminOrBillingPermissionRequiredError;
|
|
1039
1039
|
var NotAuthorized_FolderAdminPermissionRequiredError = exports.NotAuthorized_FolderAdminPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError13) {
|
|
1040
|
-
(0, _inherits2.default)(NotAuthorized_FolderAdminPermissionRequiredError, _NotAuthorizedError13);
|
|
1041
1040
|
function NotAuthorized_FolderAdminPermissionRequiredError(message, code, errorData) {
|
|
1042
1041
|
var _this81;
|
|
1043
1042
|
(0, _classCallCheck2.default)(this, NotAuthorized_FolderAdminPermissionRequiredError);
|
|
@@ -1045,11 +1044,11 @@ var NotAuthorized_FolderAdminPermissionRequiredError = exports.NotAuthorized_Fol
|
|
|
1045
1044
|
_this81.name = 'NotAuthorized_FolderAdminPermissionRequiredError';
|
|
1046
1045
|
return _this81;
|
|
1047
1046
|
}
|
|
1047
|
+
(0, _inherits2.default)(NotAuthorized_FolderAdminPermissionRequiredError, _NotAuthorizedError13);
|
|
1048
1048
|
return (0, _createClass2.default)(NotAuthorized_FolderAdminPermissionRequiredError);
|
|
1049
1049
|
}(NotAuthorizedError);
|
|
1050
1050
|
errorClasses.NotAuthorized_FolderAdminPermissionRequiredError = NotAuthorized_FolderAdminPermissionRequiredError;
|
|
1051
1051
|
var NotAuthorized_FullPermissionRequiredError = exports.NotAuthorized_FullPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError14) {
|
|
1052
|
-
(0, _inherits2.default)(NotAuthorized_FullPermissionRequiredError, _NotAuthorizedError14);
|
|
1053
1052
|
function NotAuthorized_FullPermissionRequiredError(message, code, errorData) {
|
|
1054
1053
|
var _this82;
|
|
1055
1054
|
(0, _classCallCheck2.default)(this, NotAuthorized_FullPermissionRequiredError);
|
|
@@ -1057,11 +1056,11 @@ var NotAuthorized_FullPermissionRequiredError = exports.NotAuthorized_FullPermis
|
|
|
1057
1056
|
_this82.name = 'NotAuthorized_FullPermissionRequiredError';
|
|
1058
1057
|
return _this82;
|
|
1059
1058
|
}
|
|
1059
|
+
(0, _inherits2.default)(NotAuthorized_FullPermissionRequiredError, _NotAuthorizedError14);
|
|
1060
1060
|
return (0, _createClass2.default)(NotAuthorized_FullPermissionRequiredError);
|
|
1061
1061
|
}(NotAuthorizedError);
|
|
1062
1062
|
errorClasses.NotAuthorized_FullPermissionRequiredError = NotAuthorized_FullPermissionRequiredError;
|
|
1063
1063
|
var NotAuthorized_HistoryPermissionRequiredError = exports.NotAuthorized_HistoryPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError15) {
|
|
1064
|
-
(0, _inherits2.default)(NotAuthorized_HistoryPermissionRequiredError, _NotAuthorizedError15);
|
|
1065
1064
|
function NotAuthorized_HistoryPermissionRequiredError(message, code, errorData) {
|
|
1066
1065
|
var _this83;
|
|
1067
1066
|
(0, _classCallCheck2.default)(this, NotAuthorized_HistoryPermissionRequiredError);
|
|
@@ -1069,11 +1068,11 @@ var NotAuthorized_HistoryPermissionRequiredError = exports.NotAuthorized_History
|
|
|
1069
1068
|
_this83.name = 'NotAuthorized_HistoryPermissionRequiredError';
|
|
1070
1069
|
return _this83;
|
|
1071
1070
|
}
|
|
1071
|
+
(0, _inherits2.default)(NotAuthorized_HistoryPermissionRequiredError, _NotAuthorizedError15);
|
|
1072
1072
|
return (0, _createClass2.default)(NotAuthorized_HistoryPermissionRequiredError);
|
|
1073
1073
|
}(NotAuthorizedError);
|
|
1074
1074
|
errorClasses.NotAuthorized_HistoryPermissionRequiredError = NotAuthorized_HistoryPermissionRequiredError;
|
|
1075
1075
|
var NotAuthorized_InsufficientPermissionForParamsError = exports.NotAuthorized_InsufficientPermissionForParamsError = /*#__PURE__*/function (_NotAuthorizedError16) {
|
|
1076
|
-
(0, _inherits2.default)(NotAuthorized_InsufficientPermissionForParamsError, _NotAuthorizedError16);
|
|
1077
1076
|
function NotAuthorized_InsufficientPermissionForParamsError(message, code, errorData) {
|
|
1078
1077
|
var _this84;
|
|
1079
1078
|
(0, _classCallCheck2.default)(this, NotAuthorized_InsufficientPermissionForParamsError);
|
|
@@ -1081,11 +1080,11 @@ var NotAuthorized_InsufficientPermissionForParamsError = exports.NotAuthorized_I
|
|
|
1081
1080
|
_this84.name = 'NotAuthorized_InsufficientPermissionForParamsError';
|
|
1082
1081
|
return _this84;
|
|
1083
1082
|
}
|
|
1083
|
+
(0, _inherits2.default)(NotAuthorized_InsufficientPermissionForParamsError, _NotAuthorizedError16);
|
|
1084
1084
|
return (0, _createClass2.default)(NotAuthorized_InsufficientPermissionForParamsError);
|
|
1085
1085
|
}(NotAuthorizedError);
|
|
1086
1086
|
errorClasses.NotAuthorized_InsufficientPermissionForParamsError = NotAuthorized_InsufficientPermissionForParamsError;
|
|
1087
1087
|
var NotAuthorized_MustAuthenticateWithApiKeyError = exports.NotAuthorized_MustAuthenticateWithApiKeyError = /*#__PURE__*/function (_NotAuthorizedError17) {
|
|
1088
|
-
(0, _inherits2.default)(NotAuthorized_MustAuthenticateWithApiKeyError, _NotAuthorizedError17);
|
|
1089
1088
|
function NotAuthorized_MustAuthenticateWithApiKeyError(message, code, errorData) {
|
|
1090
1089
|
var _this85;
|
|
1091
1090
|
(0, _classCallCheck2.default)(this, NotAuthorized_MustAuthenticateWithApiKeyError);
|
|
@@ -1093,11 +1092,11 @@ var NotAuthorized_MustAuthenticateWithApiKeyError = exports.NotAuthorized_MustAu
|
|
|
1093
1092
|
_this85.name = 'NotAuthorized_MustAuthenticateWithApiKeyError';
|
|
1094
1093
|
return _this85;
|
|
1095
1094
|
}
|
|
1095
|
+
(0, _inherits2.default)(NotAuthorized_MustAuthenticateWithApiKeyError, _NotAuthorizedError17);
|
|
1096
1096
|
return (0, _createClass2.default)(NotAuthorized_MustAuthenticateWithApiKeyError);
|
|
1097
1097
|
}(NotAuthorizedError);
|
|
1098
1098
|
errorClasses.NotAuthorized_MustAuthenticateWithApiKeyError = NotAuthorized_MustAuthenticateWithApiKeyError;
|
|
1099
1099
|
var NotAuthorized_NeedAdminPermissionForInboxError = exports.NotAuthorized_NeedAdminPermissionForInboxError = /*#__PURE__*/function (_NotAuthorizedError18) {
|
|
1100
|
-
(0, _inherits2.default)(NotAuthorized_NeedAdminPermissionForInboxError, _NotAuthorizedError18);
|
|
1101
1100
|
function NotAuthorized_NeedAdminPermissionForInboxError(message, code, errorData) {
|
|
1102
1101
|
var _this86;
|
|
1103
1102
|
(0, _classCallCheck2.default)(this, NotAuthorized_NeedAdminPermissionForInboxError);
|
|
@@ -1105,11 +1104,11 @@ var NotAuthorized_NeedAdminPermissionForInboxError = exports.NotAuthorized_NeedA
|
|
|
1105
1104
|
_this86.name = 'NotAuthorized_NeedAdminPermissionForInboxError';
|
|
1106
1105
|
return _this86;
|
|
1107
1106
|
}
|
|
1107
|
+
(0, _inherits2.default)(NotAuthorized_NeedAdminPermissionForInboxError, _NotAuthorizedError18);
|
|
1108
1108
|
return (0, _createClass2.default)(NotAuthorized_NeedAdminPermissionForInboxError);
|
|
1109
1109
|
}(NotAuthorizedError);
|
|
1110
1110
|
errorClasses.NotAuthorized_NeedAdminPermissionForInboxError = NotAuthorized_NeedAdminPermissionForInboxError;
|
|
1111
1111
|
var NotAuthorized_NonAdminsMustQueryByFolderOrPathError = exports.NotAuthorized_NonAdminsMustQueryByFolderOrPathError = /*#__PURE__*/function (_NotAuthorizedError19) {
|
|
1112
|
-
(0, _inherits2.default)(NotAuthorized_NonAdminsMustQueryByFolderOrPathError, _NotAuthorizedError19);
|
|
1113
1112
|
function NotAuthorized_NonAdminsMustQueryByFolderOrPathError(message, code, errorData) {
|
|
1114
1113
|
var _this87;
|
|
1115
1114
|
(0, _classCallCheck2.default)(this, NotAuthorized_NonAdminsMustQueryByFolderOrPathError);
|
|
@@ -1117,11 +1116,11 @@ var NotAuthorized_NonAdminsMustQueryByFolderOrPathError = exports.NotAuthorized_
|
|
|
1117
1116
|
_this87.name = 'NotAuthorized_NonAdminsMustQueryByFolderOrPathError';
|
|
1118
1117
|
return _this87;
|
|
1119
1118
|
}
|
|
1119
|
+
(0, _inherits2.default)(NotAuthorized_NonAdminsMustQueryByFolderOrPathError, _NotAuthorizedError19);
|
|
1120
1120
|
return (0, _createClass2.default)(NotAuthorized_NonAdminsMustQueryByFolderOrPathError);
|
|
1121
1121
|
}(NotAuthorizedError);
|
|
1122
1122
|
errorClasses.NotAuthorized_NonAdminsMustQueryByFolderOrPathError = NotAuthorized_NonAdminsMustQueryByFolderOrPathError;
|
|
1123
1123
|
var NotAuthorized_NotAllowedToCreateBundleError = exports.NotAuthorized_NotAllowedToCreateBundleError = /*#__PURE__*/function (_NotAuthorizedError20) {
|
|
1124
|
-
(0, _inherits2.default)(NotAuthorized_NotAllowedToCreateBundleError, _NotAuthorizedError20);
|
|
1125
1124
|
function NotAuthorized_NotAllowedToCreateBundleError(message, code, errorData) {
|
|
1126
1125
|
var _this88;
|
|
1127
1126
|
(0, _classCallCheck2.default)(this, NotAuthorized_NotAllowedToCreateBundleError);
|
|
@@ -1129,11 +1128,11 @@ var NotAuthorized_NotAllowedToCreateBundleError = exports.NotAuthorized_NotAllow
|
|
|
1129
1128
|
_this88.name = 'NotAuthorized_NotAllowedToCreateBundleError';
|
|
1130
1129
|
return _this88;
|
|
1131
1130
|
}
|
|
1131
|
+
(0, _inherits2.default)(NotAuthorized_NotAllowedToCreateBundleError, _NotAuthorizedError20);
|
|
1132
1132
|
return (0, _createClass2.default)(NotAuthorized_NotAllowedToCreateBundleError);
|
|
1133
1133
|
}(NotAuthorizedError);
|
|
1134
1134
|
errorClasses.NotAuthorized_NotAllowedToCreateBundleError = NotAuthorized_NotAllowedToCreateBundleError;
|
|
1135
1135
|
var NotAuthorized_PasswordChangeNotRequiredError = exports.NotAuthorized_PasswordChangeNotRequiredError = /*#__PURE__*/function (_NotAuthorizedError21) {
|
|
1136
|
-
(0, _inherits2.default)(NotAuthorized_PasswordChangeNotRequiredError, _NotAuthorizedError21);
|
|
1137
1136
|
function NotAuthorized_PasswordChangeNotRequiredError(message, code, errorData) {
|
|
1138
1137
|
var _this89;
|
|
1139
1138
|
(0, _classCallCheck2.default)(this, NotAuthorized_PasswordChangeNotRequiredError);
|
|
@@ -1141,11 +1140,11 @@ var NotAuthorized_PasswordChangeNotRequiredError = exports.NotAuthorized_Passwor
|
|
|
1141
1140
|
_this89.name = 'NotAuthorized_PasswordChangeNotRequiredError';
|
|
1142
1141
|
return _this89;
|
|
1143
1142
|
}
|
|
1143
|
+
(0, _inherits2.default)(NotAuthorized_PasswordChangeNotRequiredError, _NotAuthorizedError21);
|
|
1144
1144
|
return (0, _createClass2.default)(NotAuthorized_PasswordChangeNotRequiredError);
|
|
1145
1145
|
}(NotAuthorizedError);
|
|
1146
1146
|
errorClasses.NotAuthorized_PasswordChangeNotRequiredError = NotAuthorized_PasswordChangeNotRequiredError;
|
|
1147
1147
|
var NotAuthorized_PasswordChangeRequiredError = exports.NotAuthorized_PasswordChangeRequiredError = /*#__PURE__*/function (_NotAuthorizedError22) {
|
|
1148
|
-
(0, _inherits2.default)(NotAuthorized_PasswordChangeRequiredError, _NotAuthorizedError22);
|
|
1149
1148
|
function NotAuthorized_PasswordChangeRequiredError(message, code, errorData) {
|
|
1150
1149
|
var _this90;
|
|
1151
1150
|
(0, _classCallCheck2.default)(this, NotAuthorized_PasswordChangeRequiredError);
|
|
@@ -1153,11 +1152,11 @@ var NotAuthorized_PasswordChangeRequiredError = exports.NotAuthorized_PasswordCh
|
|
|
1153
1152
|
_this90.name = 'NotAuthorized_PasswordChangeRequiredError';
|
|
1154
1153
|
return _this90;
|
|
1155
1154
|
}
|
|
1155
|
+
(0, _inherits2.default)(NotAuthorized_PasswordChangeRequiredError, _NotAuthorizedError22);
|
|
1156
1156
|
return (0, _createClass2.default)(NotAuthorized_PasswordChangeRequiredError);
|
|
1157
1157
|
}(NotAuthorizedError);
|
|
1158
1158
|
errorClasses.NotAuthorized_PasswordChangeRequiredError = NotAuthorized_PasswordChangeRequiredError;
|
|
1159
1159
|
var NotAuthorized_ReadOnlySessionError = exports.NotAuthorized_ReadOnlySessionError = /*#__PURE__*/function (_NotAuthorizedError23) {
|
|
1160
|
-
(0, _inherits2.default)(NotAuthorized_ReadOnlySessionError, _NotAuthorizedError23);
|
|
1161
1160
|
function NotAuthorized_ReadOnlySessionError(message, code, errorData) {
|
|
1162
1161
|
var _this91;
|
|
1163
1162
|
(0, _classCallCheck2.default)(this, NotAuthorized_ReadOnlySessionError);
|
|
@@ -1165,11 +1164,11 @@ var NotAuthorized_ReadOnlySessionError = exports.NotAuthorized_ReadOnlySessionEr
|
|
|
1165
1164
|
_this91.name = 'NotAuthorized_ReadOnlySessionError';
|
|
1166
1165
|
return _this91;
|
|
1167
1166
|
}
|
|
1167
|
+
(0, _inherits2.default)(NotAuthorized_ReadOnlySessionError, _NotAuthorizedError23);
|
|
1168
1168
|
return (0, _createClass2.default)(NotAuthorized_ReadOnlySessionError);
|
|
1169
1169
|
}(NotAuthorizedError);
|
|
1170
1170
|
errorClasses.NotAuthorized_ReadOnlySessionError = NotAuthorized_ReadOnlySessionError;
|
|
1171
1171
|
var NotAuthorized_ReadPermissionRequiredError = exports.NotAuthorized_ReadPermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError24) {
|
|
1172
|
-
(0, _inherits2.default)(NotAuthorized_ReadPermissionRequiredError, _NotAuthorizedError24);
|
|
1173
1172
|
function NotAuthorized_ReadPermissionRequiredError(message, code, errorData) {
|
|
1174
1173
|
var _this92;
|
|
1175
1174
|
(0, _classCallCheck2.default)(this, NotAuthorized_ReadPermissionRequiredError);
|
|
@@ -1177,11 +1176,11 @@ var NotAuthorized_ReadPermissionRequiredError = exports.NotAuthorized_ReadPermis
|
|
|
1177
1176
|
_this92.name = 'NotAuthorized_ReadPermissionRequiredError';
|
|
1178
1177
|
return _this92;
|
|
1179
1178
|
}
|
|
1179
|
+
(0, _inherits2.default)(NotAuthorized_ReadPermissionRequiredError, _NotAuthorizedError24);
|
|
1180
1180
|
return (0, _createClass2.default)(NotAuthorized_ReadPermissionRequiredError);
|
|
1181
1181
|
}(NotAuthorizedError);
|
|
1182
1182
|
errorClasses.NotAuthorized_ReadPermissionRequiredError = NotAuthorized_ReadPermissionRequiredError;
|
|
1183
1183
|
var NotAuthorized_ReauthenticationFailedError = exports.NotAuthorized_ReauthenticationFailedError = /*#__PURE__*/function (_NotAuthorizedError25) {
|
|
1184
|
-
(0, _inherits2.default)(NotAuthorized_ReauthenticationFailedError, _NotAuthorizedError25);
|
|
1185
1184
|
function NotAuthorized_ReauthenticationFailedError(message, code, errorData) {
|
|
1186
1185
|
var _this93;
|
|
1187
1186
|
(0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationFailedError);
|
|
@@ -1189,11 +1188,11 @@ var NotAuthorized_ReauthenticationFailedError = exports.NotAuthorized_Reauthenti
|
|
|
1189
1188
|
_this93.name = 'NotAuthorized_ReauthenticationFailedError';
|
|
1190
1189
|
return _this93;
|
|
1191
1190
|
}
|
|
1191
|
+
(0, _inherits2.default)(NotAuthorized_ReauthenticationFailedError, _NotAuthorizedError25);
|
|
1192
1192
|
return (0, _createClass2.default)(NotAuthorized_ReauthenticationFailedError);
|
|
1193
1193
|
}(NotAuthorizedError);
|
|
1194
1194
|
errorClasses.NotAuthorized_ReauthenticationFailedError = NotAuthorized_ReauthenticationFailedError;
|
|
1195
1195
|
var NotAuthorized_ReauthenticationFailedFinalError = exports.NotAuthorized_ReauthenticationFailedFinalError = /*#__PURE__*/function (_NotAuthorizedError26) {
|
|
1196
|
-
(0, _inherits2.default)(NotAuthorized_ReauthenticationFailedFinalError, _NotAuthorizedError26);
|
|
1197
1196
|
function NotAuthorized_ReauthenticationFailedFinalError(message, code, errorData) {
|
|
1198
1197
|
var _this94;
|
|
1199
1198
|
(0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationFailedFinalError);
|
|
@@ -1201,11 +1200,11 @@ var NotAuthorized_ReauthenticationFailedFinalError = exports.NotAuthorized_Reaut
|
|
|
1201
1200
|
_this94.name = 'NotAuthorized_ReauthenticationFailedFinalError';
|
|
1202
1201
|
return _this94;
|
|
1203
1202
|
}
|
|
1203
|
+
(0, _inherits2.default)(NotAuthorized_ReauthenticationFailedFinalError, _NotAuthorizedError26);
|
|
1204
1204
|
return (0, _createClass2.default)(NotAuthorized_ReauthenticationFailedFinalError);
|
|
1205
1205
|
}(NotAuthorizedError);
|
|
1206
1206
|
errorClasses.NotAuthorized_ReauthenticationFailedFinalError = NotAuthorized_ReauthenticationFailedFinalError;
|
|
1207
1207
|
var NotAuthorized_ReauthenticationNeededActionError = exports.NotAuthorized_ReauthenticationNeededActionError = /*#__PURE__*/function (_NotAuthorizedError27) {
|
|
1208
|
-
(0, _inherits2.default)(NotAuthorized_ReauthenticationNeededActionError, _NotAuthorizedError27);
|
|
1209
1208
|
function NotAuthorized_ReauthenticationNeededActionError(message, code, errorData) {
|
|
1210
1209
|
var _this95;
|
|
1211
1210
|
(0, _classCallCheck2.default)(this, NotAuthorized_ReauthenticationNeededActionError);
|
|
@@ -1213,11 +1212,11 @@ var NotAuthorized_ReauthenticationNeededActionError = exports.NotAuthorized_Reau
|
|
|
1213
1212
|
_this95.name = 'NotAuthorized_ReauthenticationNeededActionError';
|
|
1214
1213
|
return _this95;
|
|
1215
1214
|
}
|
|
1215
|
+
(0, _inherits2.default)(NotAuthorized_ReauthenticationNeededActionError, _NotAuthorizedError27);
|
|
1216
1216
|
return (0, _createClass2.default)(NotAuthorized_ReauthenticationNeededActionError);
|
|
1217
1217
|
}(NotAuthorizedError);
|
|
1218
1218
|
errorClasses.NotAuthorized_ReauthenticationNeededActionError = NotAuthorized_ReauthenticationNeededActionError;
|
|
1219
1219
|
var NotAuthorized_SelfManagedRequiredError = exports.NotAuthorized_SelfManagedRequiredError = /*#__PURE__*/function (_NotAuthorizedError28) {
|
|
1220
|
-
(0, _inherits2.default)(NotAuthorized_SelfManagedRequiredError, _NotAuthorizedError28);
|
|
1221
1220
|
function NotAuthorized_SelfManagedRequiredError(message, code, errorData) {
|
|
1222
1221
|
var _this96;
|
|
1223
1222
|
(0, _classCallCheck2.default)(this, NotAuthorized_SelfManagedRequiredError);
|
|
@@ -1225,11 +1224,11 @@ var NotAuthorized_SelfManagedRequiredError = exports.NotAuthorized_SelfManagedRe
|
|
|
1225
1224
|
_this96.name = 'NotAuthorized_SelfManagedRequiredError';
|
|
1226
1225
|
return _this96;
|
|
1227
1226
|
}
|
|
1227
|
+
(0, _inherits2.default)(NotAuthorized_SelfManagedRequiredError, _NotAuthorizedError28);
|
|
1228
1228
|
return (0, _createClass2.default)(NotAuthorized_SelfManagedRequiredError);
|
|
1229
1229
|
}(NotAuthorizedError);
|
|
1230
1230
|
errorClasses.NotAuthorized_SelfManagedRequiredError = NotAuthorized_SelfManagedRequiredError;
|
|
1231
1231
|
var NotAuthorized_SiteAdminRequiredError = exports.NotAuthorized_SiteAdminRequiredError = /*#__PURE__*/function (_NotAuthorizedError29) {
|
|
1232
|
-
(0, _inherits2.default)(NotAuthorized_SiteAdminRequiredError, _NotAuthorizedError29);
|
|
1233
1232
|
function NotAuthorized_SiteAdminRequiredError(message, code, errorData) {
|
|
1234
1233
|
var _this97;
|
|
1235
1234
|
(0, _classCallCheck2.default)(this, NotAuthorized_SiteAdminRequiredError);
|
|
@@ -1237,11 +1236,11 @@ var NotAuthorized_SiteAdminRequiredError = exports.NotAuthorized_SiteAdminRequir
|
|
|
1237
1236
|
_this97.name = 'NotAuthorized_SiteAdminRequiredError';
|
|
1238
1237
|
return _this97;
|
|
1239
1238
|
}
|
|
1239
|
+
(0, _inherits2.default)(NotAuthorized_SiteAdminRequiredError, _NotAuthorizedError29);
|
|
1240
1240
|
return (0, _createClass2.default)(NotAuthorized_SiteAdminRequiredError);
|
|
1241
1241
|
}(NotAuthorizedError);
|
|
1242
1242
|
errorClasses.NotAuthorized_SiteAdminRequiredError = NotAuthorized_SiteAdminRequiredError;
|
|
1243
1243
|
var NotAuthorized_SiteFilesAreImmutableError = exports.NotAuthorized_SiteFilesAreImmutableError = /*#__PURE__*/function (_NotAuthorizedError30) {
|
|
1244
|
-
(0, _inherits2.default)(NotAuthorized_SiteFilesAreImmutableError, _NotAuthorizedError30);
|
|
1245
1244
|
function NotAuthorized_SiteFilesAreImmutableError(message, code, errorData) {
|
|
1246
1245
|
var _this98;
|
|
1247
1246
|
(0, _classCallCheck2.default)(this, NotAuthorized_SiteFilesAreImmutableError);
|
|
@@ -1249,11 +1248,11 @@ var NotAuthorized_SiteFilesAreImmutableError = exports.NotAuthorized_SiteFilesAr
|
|
|
1249
1248
|
_this98.name = 'NotAuthorized_SiteFilesAreImmutableError';
|
|
1250
1249
|
return _this98;
|
|
1251
1250
|
}
|
|
1251
|
+
(0, _inherits2.default)(NotAuthorized_SiteFilesAreImmutableError, _NotAuthorizedError30);
|
|
1252
1252
|
return (0, _createClass2.default)(NotAuthorized_SiteFilesAreImmutableError);
|
|
1253
1253
|
}(NotAuthorizedError);
|
|
1254
1254
|
errorClasses.NotAuthorized_SiteFilesAreImmutableError = NotAuthorized_SiteFilesAreImmutableError;
|
|
1255
1255
|
var NotAuthorized_TwoFactorAuthenticationRequiredError = exports.NotAuthorized_TwoFactorAuthenticationRequiredError = /*#__PURE__*/function (_NotAuthorizedError31) {
|
|
1256
|
-
(0, _inherits2.default)(NotAuthorized_TwoFactorAuthenticationRequiredError, _NotAuthorizedError31);
|
|
1257
1256
|
function NotAuthorized_TwoFactorAuthenticationRequiredError(message, code, errorData) {
|
|
1258
1257
|
var _this99;
|
|
1259
1258
|
(0, _classCallCheck2.default)(this, NotAuthorized_TwoFactorAuthenticationRequiredError);
|
|
@@ -1261,11 +1260,11 @@ var NotAuthorized_TwoFactorAuthenticationRequiredError = exports.NotAuthorized_T
|
|
|
1261
1260
|
_this99.name = 'NotAuthorized_TwoFactorAuthenticationRequiredError';
|
|
1262
1261
|
return _this99;
|
|
1263
1262
|
}
|
|
1263
|
+
(0, _inherits2.default)(NotAuthorized_TwoFactorAuthenticationRequiredError, _NotAuthorizedError31);
|
|
1264
1264
|
return (0, _createClass2.default)(NotAuthorized_TwoFactorAuthenticationRequiredError);
|
|
1265
1265
|
}(NotAuthorizedError);
|
|
1266
1266
|
errorClasses.NotAuthorized_TwoFactorAuthenticationRequiredError = NotAuthorized_TwoFactorAuthenticationRequiredError;
|
|
1267
1267
|
var NotAuthorized_UserIdWithoutSiteAdminError = exports.NotAuthorized_UserIdWithoutSiteAdminError = /*#__PURE__*/function (_NotAuthorizedError32) {
|
|
1268
|
-
(0, _inherits2.default)(NotAuthorized_UserIdWithoutSiteAdminError, _NotAuthorizedError32);
|
|
1269
1268
|
function NotAuthorized_UserIdWithoutSiteAdminError(message, code, errorData) {
|
|
1270
1269
|
var _this100;
|
|
1271
1270
|
(0, _classCallCheck2.default)(this, NotAuthorized_UserIdWithoutSiteAdminError);
|
|
@@ -1273,11 +1272,11 @@ var NotAuthorized_UserIdWithoutSiteAdminError = exports.NotAuthorized_UserIdWith
|
|
|
1273
1272
|
_this100.name = 'NotAuthorized_UserIdWithoutSiteAdminError';
|
|
1274
1273
|
return _this100;
|
|
1275
1274
|
}
|
|
1275
|
+
(0, _inherits2.default)(NotAuthorized_UserIdWithoutSiteAdminError, _NotAuthorizedError32);
|
|
1276
1276
|
return (0, _createClass2.default)(NotAuthorized_UserIdWithoutSiteAdminError);
|
|
1277
1277
|
}(NotAuthorizedError);
|
|
1278
1278
|
errorClasses.NotAuthorized_UserIdWithoutSiteAdminError = NotAuthorized_UserIdWithoutSiteAdminError;
|
|
1279
1279
|
var NotAuthorized_WriteAndBundlePermissionRequiredError = exports.NotAuthorized_WriteAndBundlePermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError33) {
|
|
1280
|
-
(0, _inherits2.default)(NotAuthorized_WriteAndBundlePermissionRequiredError, _NotAuthorizedError33);
|
|
1281
1280
|
function NotAuthorized_WriteAndBundlePermissionRequiredError(message, code, errorData) {
|
|
1282
1281
|
var _this101;
|
|
1283
1282
|
(0, _classCallCheck2.default)(this, NotAuthorized_WriteAndBundlePermissionRequiredError);
|
|
@@ -1285,11 +1284,11 @@ var NotAuthorized_WriteAndBundlePermissionRequiredError = exports.NotAuthorized_
|
|
|
1285
1284
|
_this101.name = 'NotAuthorized_WriteAndBundlePermissionRequiredError';
|
|
1286
1285
|
return _this101;
|
|
1287
1286
|
}
|
|
1287
|
+
(0, _inherits2.default)(NotAuthorized_WriteAndBundlePermissionRequiredError, _NotAuthorizedError33);
|
|
1288
1288
|
return (0, _createClass2.default)(NotAuthorized_WriteAndBundlePermissionRequiredError);
|
|
1289
1289
|
}(NotAuthorizedError);
|
|
1290
1290
|
errorClasses.NotAuthorized_WriteAndBundlePermissionRequiredError = NotAuthorized_WriteAndBundlePermissionRequiredError;
|
|
1291
1291
|
var NotAuthorized_WritePermissionRequiredError = exports.NotAuthorized_WritePermissionRequiredError = /*#__PURE__*/function (_NotAuthorizedError34) {
|
|
1292
|
-
(0, _inherits2.default)(NotAuthorized_WritePermissionRequiredError, _NotAuthorizedError34);
|
|
1293
1292
|
function NotAuthorized_WritePermissionRequiredError(message, code, errorData) {
|
|
1294
1293
|
var _this102;
|
|
1295
1294
|
(0, _classCallCheck2.default)(this, NotAuthorized_WritePermissionRequiredError);
|
|
@@ -1297,11 +1296,11 @@ var NotAuthorized_WritePermissionRequiredError = exports.NotAuthorized_WritePerm
|
|
|
1297
1296
|
_this102.name = 'NotAuthorized_WritePermissionRequiredError';
|
|
1298
1297
|
return _this102;
|
|
1299
1298
|
}
|
|
1299
|
+
(0, _inherits2.default)(NotAuthorized_WritePermissionRequiredError, _NotAuthorizedError34);
|
|
1300
1300
|
return (0, _createClass2.default)(NotAuthorized_WritePermissionRequiredError);
|
|
1301
1301
|
}(NotAuthorizedError);
|
|
1302
1302
|
errorClasses.NotAuthorized_WritePermissionRequiredError = NotAuthorized_WritePermissionRequiredError;
|
|
1303
1303
|
var NotAuthorized_ZipDownloadIpMismatchError = exports.NotAuthorized_ZipDownloadIpMismatchError = /*#__PURE__*/function (_NotAuthorizedError35) {
|
|
1304
|
-
(0, _inherits2.default)(NotAuthorized_ZipDownloadIpMismatchError, _NotAuthorizedError35);
|
|
1305
1304
|
function NotAuthorized_ZipDownloadIpMismatchError(message, code, errorData) {
|
|
1306
1305
|
var _this103;
|
|
1307
1306
|
(0, _classCallCheck2.default)(this, NotAuthorized_ZipDownloadIpMismatchError);
|
|
@@ -1309,11 +1308,11 @@ var NotAuthorized_ZipDownloadIpMismatchError = exports.NotAuthorized_ZipDownload
|
|
|
1309
1308
|
_this103.name = 'NotAuthorized_ZipDownloadIpMismatchError';
|
|
1310
1309
|
return _this103;
|
|
1311
1310
|
}
|
|
1311
|
+
(0, _inherits2.default)(NotAuthorized_ZipDownloadIpMismatchError, _NotAuthorizedError35);
|
|
1312
1312
|
return (0, _createClass2.default)(NotAuthorized_ZipDownloadIpMismatchError);
|
|
1313
1313
|
}(NotAuthorizedError);
|
|
1314
1314
|
errorClasses.NotAuthorized_ZipDownloadIpMismatchError = NotAuthorized_ZipDownloadIpMismatchError;
|
|
1315
1315
|
var NotFound_ApiKeyNotFoundError = exports.NotFound_ApiKeyNotFoundError = /*#__PURE__*/function (_NotFoundError) {
|
|
1316
|
-
(0, _inherits2.default)(NotFound_ApiKeyNotFoundError, _NotFoundError);
|
|
1317
1316
|
function NotFound_ApiKeyNotFoundError(message, code, errorData) {
|
|
1318
1317
|
var _this104;
|
|
1319
1318
|
(0, _classCallCheck2.default)(this, NotFound_ApiKeyNotFoundError);
|
|
@@ -1321,11 +1320,11 @@ var NotFound_ApiKeyNotFoundError = exports.NotFound_ApiKeyNotFoundError = /*#__P
|
|
|
1321
1320
|
_this104.name = 'NotFound_ApiKeyNotFoundError';
|
|
1322
1321
|
return _this104;
|
|
1323
1322
|
}
|
|
1323
|
+
(0, _inherits2.default)(NotFound_ApiKeyNotFoundError, _NotFoundError);
|
|
1324
1324
|
return (0, _createClass2.default)(NotFound_ApiKeyNotFoundError);
|
|
1325
1325
|
}(NotFoundError);
|
|
1326
1326
|
errorClasses.NotFound_ApiKeyNotFoundError = NotFound_ApiKeyNotFoundError;
|
|
1327
1327
|
var NotFound_BundlePathNotFoundError = exports.NotFound_BundlePathNotFoundError = /*#__PURE__*/function (_NotFoundError2) {
|
|
1328
|
-
(0, _inherits2.default)(NotFound_BundlePathNotFoundError, _NotFoundError2);
|
|
1329
1328
|
function NotFound_BundlePathNotFoundError(message, code, errorData) {
|
|
1330
1329
|
var _this105;
|
|
1331
1330
|
(0, _classCallCheck2.default)(this, NotFound_BundlePathNotFoundError);
|
|
@@ -1333,11 +1332,11 @@ var NotFound_BundlePathNotFoundError = exports.NotFound_BundlePathNotFoundError
|
|
|
1333
1332
|
_this105.name = 'NotFound_BundlePathNotFoundError';
|
|
1334
1333
|
return _this105;
|
|
1335
1334
|
}
|
|
1335
|
+
(0, _inherits2.default)(NotFound_BundlePathNotFoundError, _NotFoundError2);
|
|
1336
1336
|
return (0, _createClass2.default)(NotFound_BundlePathNotFoundError);
|
|
1337
1337
|
}(NotFoundError);
|
|
1338
1338
|
errorClasses.NotFound_BundlePathNotFoundError = NotFound_BundlePathNotFoundError;
|
|
1339
1339
|
var NotFound_BundleRegistrationNotFoundError = exports.NotFound_BundleRegistrationNotFoundError = /*#__PURE__*/function (_NotFoundError3) {
|
|
1340
|
-
(0, _inherits2.default)(NotFound_BundleRegistrationNotFoundError, _NotFoundError3);
|
|
1341
1340
|
function NotFound_BundleRegistrationNotFoundError(message, code, errorData) {
|
|
1342
1341
|
var _this106;
|
|
1343
1342
|
(0, _classCallCheck2.default)(this, NotFound_BundleRegistrationNotFoundError);
|
|
@@ -1345,11 +1344,11 @@ var NotFound_BundleRegistrationNotFoundError = exports.NotFound_BundleRegistrati
|
|
|
1345
1344
|
_this106.name = 'NotFound_BundleRegistrationNotFoundError';
|
|
1346
1345
|
return _this106;
|
|
1347
1346
|
}
|
|
1347
|
+
(0, _inherits2.default)(NotFound_BundleRegistrationNotFoundError, _NotFoundError3);
|
|
1348
1348
|
return (0, _createClass2.default)(NotFound_BundleRegistrationNotFoundError);
|
|
1349
1349
|
}(NotFoundError);
|
|
1350
1350
|
errorClasses.NotFound_BundleRegistrationNotFoundError = NotFound_BundleRegistrationNotFoundError;
|
|
1351
1351
|
var NotFound_CodeNotFoundError = exports.NotFound_CodeNotFoundError = /*#__PURE__*/function (_NotFoundError4) {
|
|
1352
|
-
(0, _inherits2.default)(NotFound_CodeNotFoundError, _NotFoundError4);
|
|
1353
1352
|
function NotFound_CodeNotFoundError(message, code, errorData) {
|
|
1354
1353
|
var _this107;
|
|
1355
1354
|
(0, _classCallCheck2.default)(this, NotFound_CodeNotFoundError);
|
|
@@ -1357,11 +1356,11 @@ var NotFound_CodeNotFoundError = exports.NotFound_CodeNotFoundError = /*#__PURE_
|
|
|
1357
1356
|
_this107.name = 'NotFound_CodeNotFoundError';
|
|
1358
1357
|
return _this107;
|
|
1359
1358
|
}
|
|
1359
|
+
(0, _inherits2.default)(NotFound_CodeNotFoundError, _NotFoundError4);
|
|
1360
1360
|
return (0, _createClass2.default)(NotFound_CodeNotFoundError);
|
|
1361
1361
|
}(NotFoundError);
|
|
1362
1362
|
errorClasses.NotFound_CodeNotFoundError = NotFound_CodeNotFoundError;
|
|
1363
1363
|
var NotFound_FileNotFoundError = exports.NotFound_FileNotFoundError = /*#__PURE__*/function (_NotFoundError5) {
|
|
1364
|
-
(0, _inherits2.default)(NotFound_FileNotFoundError, _NotFoundError5);
|
|
1365
1364
|
function NotFound_FileNotFoundError(message, code, errorData) {
|
|
1366
1365
|
var _this108;
|
|
1367
1366
|
(0, _classCallCheck2.default)(this, NotFound_FileNotFoundError);
|
|
@@ -1369,11 +1368,11 @@ var NotFound_FileNotFoundError = exports.NotFound_FileNotFoundError = /*#__PURE_
|
|
|
1369
1368
|
_this108.name = 'NotFound_FileNotFoundError';
|
|
1370
1369
|
return _this108;
|
|
1371
1370
|
}
|
|
1371
|
+
(0, _inherits2.default)(NotFound_FileNotFoundError, _NotFoundError5);
|
|
1372
1372
|
return (0, _createClass2.default)(NotFound_FileNotFoundError);
|
|
1373
1373
|
}(NotFoundError);
|
|
1374
1374
|
errorClasses.NotFound_FileNotFoundError = NotFound_FileNotFoundError;
|
|
1375
1375
|
var NotFound_FileUploadNotFoundError = exports.NotFound_FileUploadNotFoundError = /*#__PURE__*/function (_NotFoundError6) {
|
|
1376
|
-
(0, _inherits2.default)(NotFound_FileUploadNotFoundError, _NotFoundError6);
|
|
1377
1376
|
function NotFound_FileUploadNotFoundError(message, code, errorData) {
|
|
1378
1377
|
var _this109;
|
|
1379
1378
|
(0, _classCallCheck2.default)(this, NotFound_FileUploadNotFoundError);
|
|
@@ -1381,11 +1380,11 @@ var NotFound_FileUploadNotFoundError = exports.NotFound_FileUploadNotFoundError
|
|
|
1381
1380
|
_this109.name = 'NotFound_FileUploadNotFoundError';
|
|
1382
1381
|
return _this109;
|
|
1383
1382
|
}
|
|
1383
|
+
(0, _inherits2.default)(NotFound_FileUploadNotFoundError, _NotFoundError6);
|
|
1384
1384
|
return (0, _createClass2.default)(NotFound_FileUploadNotFoundError);
|
|
1385
1385
|
}(NotFoundError);
|
|
1386
1386
|
errorClasses.NotFound_FileUploadNotFoundError = NotFound_FileUploadNotFoundError;
|
|
1387
1387
|
var NotFound_FolderNotFoundError = exports.NotFound_FolderNotFoundError = /*#__PURE__*/function (_NotFoundError7) {
|
|
1388
|
-
(0, _inherits2.default)(NotFound_FolderNotFoundError, _NotFoundError7);
|
|
1389
1388
|
function NotFound_FolderNotFoundError(message, code, errorData) {
|
|
1390
1389
|
var _this110;
|
|
1391
1390
|
(0, _classCallCheck2.default)(this, NotFound_FolderNotFoundError);
|
|
@@ -1393,11 +1392,11 @@ var NotFound_FolderNotFoundError = exports.NotFound_FolderNotFoundError = /*#__P
|
|
|
1393
1392
|
_this110.name = 'NotFound_FolderNotFoundError';
|
|
1394
1393
|
return _this110;
|
|
1395
1394
|
}
|
|
1395
|
+
(0, _inherits2.default)(NotFound_FolderNotFoundError, _NotFoundError7);
|
|
1396
1396
|
return (0, _createClass2.default)(NotFound_FolderNotFoundError);
|
|
1397
1397
|
}(NotFoundError);
|
|
1398
1398
|
errorClasses.NotFound_FolderNotFoundError = NotFound_FolderNotFoundError;
|
|
1399
1399
|
var NotFound_GroupNotFoundError = exports.NotFound_GroupNotFoundError = /*#__PURE__*/function (_NotFoundError8) {
|
|
1400
|
-
(0, _inherits2.default)(NotFound_GroupNotFoundError, _NotFoundError8);
|
|
1401
1400
|
function NotFound_GroupNotFoundError(message, code, errorData) {
|
|
1402
1401
|
var _this111;
|
|
1403
1402
|
(0, _classCallCheck2.default)(this, NotFound_GroupNotFoundError);
|
|
@@ -1405,11 +1404,11 @@ var NotFound_GroupNotFoundError = exports.NotFound_GroupNotFoundError = /*#__PUR
|
|
|
1405
1404
|
_this111.name = 'NotFound_GroupNotFoundError';
|
|
1406
1405
|
return _this111;
|
|
1407
1406
|
}
|
|
1407
|
+
(0, _inherits2.default)(NotFound_GroupNotFoundError, _NotFoundError8);
|
|
1408
1408
|
return (0, _createClass2.default)(NotFound_GroupNotFoundError);
|
|
1409
1409
|
}(NotFoundError);
|
|
1410
1410
|
errorClasses.NotFound_GroupNotFoundError = NotFound_GroupNotFoundError;
|
|
1411
1411
|
var NotFound_InboxNotFoundError = exports.NotFound_InboxNotFoundError = /*#__PURE__*/function (_NotFoundError9) {
|
|
1412
|
-
(0, _inherits2.default)(NotFound_InboxNotFoundError, _NotFoundError9);
|
|
1413
1412
|
function NotFound_InboxNotFoundError(message, code, errorData) {
|
|
1414
1413
|
var _this112;
|
|
1415
1414
|
(0, _classCallCheck2.default)(this, NotFound_InboxNotFoundError);
|
|
@@ -1417,11 +1416,11 @@ var NotFound_InboxNotFoundError = exports.NotFound_InboxNotFoundError = /*#__PUR
|
|
|
1417
1416
|
_this112.name = 'NotFound_InboxNotFoundError';
|
|
1418
1417
|
return _this112;
|
|
1419
1418
|
}
|
|
1419
|
+
(0, _inherits2.default)(NotFound_InboxNotFoundError, _NotFoundError9);
|
|
1420
1420
|
return (0, _createClass2.default)(NotFound_InboxNotFoundError);
|
|
1421
1421
|
}(NotFoundError);
|
|
1422
1422
|
errorClasses.NotFound_InboxNotFoundError = NotFound_InboxNotFoundError;
|
|
1423
1423
|
var NotFound_NestedNotFoundError = exports.NotFound_NestedNotFoundError = /*#__PURE__*/function (_NotFoundError10) {
|
|
1424
|
-
(0, _inherits2.default)(NotFound_NestedNotFoundError, _NotFoundError10);
|
|
1425
1424
|
function NotFound_NestedNotFoundError(message, code, errorData) {
|
|
1426
1425
|
var _this113;
|
|
1427
1426
|
(0, _classCallCheck2.default)(this, NotFound_NestedNotFoundError);
|
|
@@ -1429,11 +1428,11 @@ var NotFound_NestedNotFoundError = exports.NotFound_NestedNotFoundError = /*#__P
|
|
|
1429
1428
|
_this113.name = 'NotFound_NestedNotFoundError';
|
|
1430
1429
|
return _this113;
|
|
1431
1430
|
}
|
|
1431
|
+
(0, _inherits2.default)(NotFound_NestedNotFoundError, _NotFoundError10);
|
|
1432
1432
|
return (0, _createClass2.default)(NotFound_NestedNotFoundError);
|
|
1433
1433
|
}(NotFoundError);
|
|
1434
1434
|
errorClasses.NotFound_NestedNotFoundError = NotFound_NestedNotFoundError;
|
|
1435
1435
|
var NotFound_PlanNotFoundError = exports.NotFound_PlanNotFoundError = /*#__PURE__*/function (_NotFoundError11) {
|
|
1436
|
-
(0, _inherits2.default)(NotFound_PlanNotFoundError, _NotFoundError11);
|
|
1437
1436
|
function NotFound_PlanNotFoundError(message, code, errorData) {
|
|
1438
1437
|
var _this114;
|
|
1439
1438
|
(0, _classCallCheck2.default)(this, NotFound_PlanNotFoundError);
|
|
@@ -1441,11 +1440,11 @@ var NotFound_PlanNotFoundError = exports.NotFound_PlanNotFoundError = /*#__PURE_
|
|
|
1441
1440
|
_this114.name = 'NotFound_PlanNotFoundError';
|
|
1442
1441
|
return _this114;
|
|
1443
1442
|
}
|
|
1443
|
+
(0, _inherits2.default)(NotFound_PlanNotFoundError, _NotFoundError11);
|
|
1444
1444
|
return (0, _createClass2.default)(NotFound_PlanNotFoundError);
|
|
1445
1445
|
}(NotFoundError);
|
|
1446
1446
|
errorClasses.NotFound_PlanNotFoundError = NotFound_PlanNotFoundError;
|
|
1447
1447
|
var NotFound_SiteNotFoundError = exports.NotFound_SiteNotFoundError = /*#__PURE__*/function (_NotFoundError12) {
|
|
1448
|
-
(0, _inherits2.default)(NotFound_SiteNotFoundError, _NotFoundError12);
|
|
1449
1448
|
function NotFound_SiteNotFoundError(message, code, errorData) {
|
|
1450
1449
|
var _this115;
|
|
1451
1450
|
(0, _classCallCheck2.default)(this, NotFound_SiteNotFoundError);
|
|
@@ -1453,11 +1452,11 @@ var NotFound_SiteNotFoundError = exports.NotFound_SiteNotFoundError = /*#__PURE_
|
|
|
1453
1452
|
_this115.name = 'NotFound_SiteNotFoundError';
|
|
1454
1453
|
return _this115;
|
|
1455
1454
|
}
|
|
1455
|
+
(0, _inherits2.default)(NotFound_SiteNotFoundError, _NotFoundError12);
|
|
1456
1456
|
return (0, _createClass2.default)(NotFound_SiteNotFoundError);
|
|
1457
1457
|
}(NotFoundError);
|
|
1458
1458
|
errorClasses.NotFound_SiteNotFoundError = NotFound_SiteNotFoundError;
|
|
1459
1459
|
var NotFound_UserNotFoundError = exports.NotFound_UserNotFoundError = /*#__PURE__*/function (_NotFoundError13) {
|
|
1460
|
-
(0, _inherits2.default)(NotFound_UserNotFoundError, _NotFoundError13);
|
|
1461
1460
|
function NotFound_UserNotFoundError(message, code, errorData) {
|
|
1462
1461
|
var _this116;
|
|
1463
1462
|
(0, _classCallCheck2.default)(this, NotFound_UserNotFoundError);
|
|
@@ -1465,11 +1464,11 @@ var NotFound_UserNotFoundError = exports.NotFound_UserNotFoundError = /*#__PURE_
|
|
|
1465
1464
|
_this116.name = 'NotFound_UserNotFoundError';
|
|
1466
1465
|
return _this116;
|
|
1467
1466
|
}
|
|
1467
|
+
(0, _inherits2.default)(NotFound_UserNotFoundError, _NotFoundError13);
|
|
1468
1468
|
return (0, _createClass2.default)(NotFound_UserNotFoundError);
|
|
1469
1469
|
}(NotFoundError);
|
|
1470
1470
|
errorClasses.NotFound_UserNotFoundError = NotFound_UserNotFoundError;
|
|
1471
1471
|
var ProcessingFailure_AutomationCannotBeRunManuallyError = exports.ProcessingFailure_AutomationCannotBeRunManuallyError = /*#__PURE__*/function (_ProcessingFailureErr) {
|
|
1472
|
-
(0, _inherits2.default)(ProcessingFailure_AutomationCannotBeRunManuallyError, _ProcessingFailureErr);
|
|
1473
1472
|
function ProcessingFailure_AutomationCannotBeRunManuallyError(message, code, errorData) {
|
|
1474
1473
|
var _this117;
|
|
1475
1474
|
(0, _classCallCheck2.default)(this, ProcessingFailure_AutomationCannotBeRunManuallyError);
|
|
@@ -1477,11 +1476,11 @@ var ProcessingFailure_AutomationCannotBeRunManuallyError = exports.ProcessingFai
|
|
|
1477
1476
|
_this117.name = 'ProcessingFailure_AutomationCannotBeRunManuallyError';
|
|
1478
1477
|
return _this117;
|
|
1479
1478
|
}
|
|
1479
|
+
(0, _inherits2.default)(ProcessingFailure_AutomationCannotBeRunManuallyError, _ProcessingFailureErr);
|
|
1480
1480
|
return (0, _createClass2.default)(ProcessingFailure_AutomationCannotBeRunManuallyError);
|
|
1481
1481
|
}(ProcessingFailureError);
|
|
1482
1482
|
errorClasses.ProcessingFailure_AutomationCannotBeRunManuallyError = ProcessingFailure_AutomationCannotBeRunManuallyError;
|
|
1483
1483
|
var ProcessingFailure_BundleOnlyAllowsPreviewsError = exports.ProcessingFailure_BundleOnlyAllowsPreviewsError = /*#__PURE__*/function (_ProcessingFailureErr2) {
|
|
1484
|
-
(0, _inherits2.default)(ProcessingFailure_BundleOnlyAllowsPreviewsError, _ProcessingFailureErr2);
|
|
1485
1484
|
function ProcessingFailure_BundleOnlyAllowsPreviewsError(message, code, errorData) {
|
|
1486
1485
|
var _this118;
|
|
1487
1486
|
(0, _classCallCheck2.default)(this, ProcessingFailure_BundleOnlyAllowsPreviewsError);
|
|
@@ -1489,11 +1488,11 @@ var ProcessingFailure_BundleOnlyAllowsPreviewsError = exports.ProcessingFailure_
|
|
|
1489
1488
|
_this118.name = 'ProcessingFailure_BundleOnlyAllowsPreviewsError';
|
|
1490
1489
|
return _this118;
|
|
1491
1490
|
}
|
|
1491
|
+
(0, _inherits2.default)(ProcessingFailure_BundleOnlyAllowsPreviewsError, _ProcessingFailureErr2);
|
|
1492
1492
|
return (0, _createClass2.default)(ProcessingFailure_BundleOnlyAllowsPreviewsError);
|
|
1493
1493
|
}(ProcessingFailureError);
|
|
1494
1494
|
errorClasses.ProcessingFailure_BundleOnlyAllowsPreviewsError = ProcessingFailure_BundleOnlyAllowsPreviewsError;
|
|
1495
1495
|
var ProcessingFailure_BundleOperationRequiresSubfolderError = exports.ProcessingFailure_BundleOperationRequiresSubfolderError = /*#__PURE__*/function (_ProcessingFailureErr3) {
|
|
1496
|
-
(0, _inherits2.default)(ProcessingFailure_BundleOperationRequiresSubfolderError, _ProcessingFailureErr3);
|
|
1497
1496
|
function ProcessingFailure_BundleOperationRequiresSubfolderError(message, code, errorData) {
|
|
1498
1497
|
var _this119;
|
|
1499
1498
|
(0, _classCallCheck2.default)(this, ProcessingFailure_BundleOperationRequiresSubfolderError);
|
|
@@ -1501,11 +1500,11 @@ var ProcessingFailure_BundleOperationRequiresSubfolderError = exports.Processing
|
|
|
1501
1500
|
_this119.name = 'ProcessingFailure_BundleOperationRequiresSubfolderError';
|
|
1502
1501
|
return _this119;
|
|
1503
1502
|
}
|
|
1503
|
+
(0, _inherits2.default)(ProcessingFailure_BundleOperationRequiresSubfolderError, _ProcessingFailureErr3);
|
|
1504
1504
|
return (0, _createClass2.default)(ProcessingFailure_BundleOperationRequiresSubfolderError);
|
|
1505
1505
|
}(ProcessingFailureError);
|
|
1506
1506
|
errorClasses.ProcessingFailure_BundleOperationRequiresSubfolderError = ProcessingFailure_BundleOperationRequiresSubfolderError;
|
|
1507
1507
|
var ProcessingFailure_CouldNotCreateParentError = exports.ProcessingFailure_CouldNotCreateParentError = /*#__PURE__*/function (_ProcessingFailureErr4) {
|
|
1508
|
-
(0, _inherits2.default)(ProcessingFailure_CouldNotCreateParentError, _ProcessingFailureErr4);
|
|
1509
1508
|
function ProcessingFailure_CouldNotCreateParentError(message, code, errorData) {
|
|
1510
1509
|
var _this120;
|
|
1511
1510
|
(0, _classCallCheck2.default)(this, ProcessingFailure_CouldNotCreateParentError);
|
|
@@ -1513,11 +1512,11 @@ var ProcessingFailure_CouldNotCreateParentError = exports.ProcessingFailure_Coul
|
|
|
1513
1512
|
_this120.name = 'ProcessingFailure_CouldNotCreateParentError';
|
|
1514
1513
|
return _this120;
|
|
1515
1514
|
}
|
|
1515
|
+
(0, _inherits2.default)(ProcessingFailure_CouldNotCreateParentError, _ProcessingFailureErr4);
|
|
1516
1516
|
return (0, _createClass2.default)(ProcessingFailure_CouldNotCreateParentError);
|
|
1517
1517
|
}(ProcessingFailureError);
|
|
1518
1518
|
errorClasses.ProcessingFailure_CouldNotCreateParentError = ProcessingFailure_CouldNotCreateParentError;
|
|
1519
1519
|
var ProcessingFailure_DestinationExistsError = exports.ProcessingFailure_DestinationExistsError = /*#__PURE__*/function (_ProcessingFailureErr5) {
|
|
1520
|
-
(0, _inherits2.default)(ProcessingFailure_DestinationExistsError, _ProcessingFailureErr5);
|
|
1521
1520
|
function ProcessingFailure_DestinationExistsError(message, code, errorData) {
|
|
1522
1521
|
var _this121;
|
|
1523
1522
|
(0, _classCallCheck2.default)(this, ProcessingFailure_DestinationExistsError);
|
|
@@ -1525,11 +1524,11 @@ var ProcessingFailure_DestinationExistsError = exports.ProcessingFailure_Destina
|
|
|
1525
1524
|
_this121.name = 'ProcessingFailure_DestinationExistsError';
|
|
1526
1525
|
return _this121;
|
|
1527
1526
|
}
|
|
1527
|
+
(0, _inherits2.default)(ProcessingFailure_DestinationExistsError, _ProcessingFailureErr5);
|
|
1528
1528
|
return (0, _createClass2.default)(ProcessingFailure_DestinationExistsError);
|
|
1529
1529
|
}(ProcessingFailureError);
|
|
1530
1530
|
errorClasses.ProcessingFailure_DestinationExistsError = ProcessingFailure_DestinationExistsError;
|
|
1531
1531
|
var ProcessingFailure_DestinationFolderLimitedError = exports.ProcessingFailure_DestinationFolderLimitedError = /*#__PURE__*/function (_ProcessingFailureErr6) {
|
|
1532
|
-
(0, _inherits2.default)(ProcessingFailure_DestinationFolderLimitedError, _ProcessingFailureErr6);
|
|
1533
1532
|
function ProcessingFailure_DestinationFolderLimitedError(message, code, errorData) {
|
|
1534
1533
|
var _this122;
|
|
1535
1534
|
(0, _classCallCheck2.default)(this, ProcessingFailure_DestinationFolderLimitedError);
|
|
@@ -1537,11 +1536,11 @@ var ProcessingFailure_DestinationFolderLimitedError = exports.ProcessingFailure_
|
|
|
1537
1536
|
_this122.name = 'ProcessingFailure_DestinationFolderLimitedError';
|
|
1538
1537
|
return _this122;
|
|
1539
1538
|
}
|
|
1539
|
+
(0, _inherits2.default)(ProcessingFailure_DestinationFolderLimitedError, _ProcessingFailureErr6);
|
|
1540
1540
|
return (0, _createClass2.default)(ProcessingFailure_DestinationFolderLimitedError);
|
|
1541
1541
|
}(ProcessingFailureError);
|
|
1542
1542
|
errorClasses.ProcessingFailure_DestinationFolderLimitedError = ProcessingFailure_DestinationFolderLimitedError;
|
|
1543
1543
|
var ProcessingFailure_DestinationParentConflictError = exports.ProcessingFailure_DestinationParentConflictError = /*#__PURE__*/function (_ProcessingFailureErr7) {
|
|
1544
|
-
(0, _inherits2.default)(ProcessingFailure_DestinationParentConflictError, _ProcessingFailureErr7);
|
|
1545
1544
|
function ProcessingFailure_DestinationParentConflictError(message, code, errorData) {
|
|
1546
1545
|
var _this123;
|
|
1547
1546
|
(0, _classCallCheck2.default)(this, ProcessingFailure_DestinationParentConflictError);
|
|
@@ -1549,11 +1548,11 @@ var ProcessingFailure_DestinationParentConflictError = exports.ProcessingFailure
|
|
|
1549
1548
|
_this123.name = 'ProcessingFailure_DestinationParentConflictError';
|
|
1550
1549
|
return _this123;
|
|
1551
1550
|
}
|
|
1551
|
+
(0, _inherits2.default)(ProcessingFailure_DestinationParentConflictError, _ProcessingFailureErr7);
|
|
1552
1552
|
return (0, _createClass2.default)(ProcessingFailure_DestinationParentConflictError);
|
|
1553
1553
|
}(ProcessingFailureError);
|
|
1554
1554
|
errorClasses.ProcessingFailure_DestinationParentConflictError = ProcessingFailure_DestinationParentConflictError;
|
|
1555
1555
|
var ProcessingFailure_DestinationParentDoesNotExistError = exports.ProcessingFailure_DestinationParentDoesNotExistError = /*#__PURE__*/function (_ProcessingFailureErr8) {
|
|
1556
|
-
(0, _inherits2.default)(ProcessingFailure_DestinationParentDoesNotExistError, _ProcessingFailureErr8);
|
|
1557
1556
|
function ProcessingFailure_DestinationParentDoesNotExistError(message, code, errorData) {
|
|
1558
1557
|
var _this124;
|
|
1559
1558
|
(0, _classCallCheck2.default)(this, ProcessingFailure_DestinationParentDoesNotExistError);
|
|
@@ -1561,11 +1560,11 @@ var ProcessingFailure_DestinationParentDoesNotExistError = exports.ProcessingFai
|
|
|
1561
1560
|
_this124.name = 'ProcessingFailure_DestinationParentDoesNotExistError';
|
|
1562
1561
|
return _this124;
|
|
1563
1562
|
}
|
|
1563
|
+
(0, _inherits2.default)(ProcessingFailure_DestinationParentDoesNotExistError, _ProcessingFailureErr8);
|
|
1564
1564
|
return (0, _createClass2.default)(ProcessingFailure_DestinationParentDoesNotExistError);
|
|
1565
1565
|
}(ProcessingFailureError);
|
|
1566
1566
|
errorClasses.ProcessingFailure_DestinationParentDoesNotExistError = ProcessingFailure_DestinationParentDoesNotExistError;
|
|
1567
1567
|
var ProcessingFailure_ExpiredPrivateKeyError = exports.ProcessingFailure_ExpiredPrivateKeyError = /*#__PURE__*/function (_ProcessingFailureErr9) {
|
|
1568
|
-
(0, _inherits2.default)(ProcessingFailure_ExpiredPrivateKeyError, _ProcessingFailureErr9);
|
|
1569
1568
|
function ProcessingFailure_ExpiredPrivateKeyError(message, code, errorData) {
|
|
1570
1569
|
var _this125;
|
|
1571
1570
|
(0, _classCallCheck2.default)(this, ProcessingFailure_ExpiredPrivateKeyError);
|
|
@@ -1573,11 +1572,11 @@ var ProcessingFailure_ExpiredPrivateKeyError = exports.ProcessingFailure_Expired
|
|
|
1573
1572
|
_this125.name = 'ProcessingFailure_ExpiredPrivateKeyError';
|
|
1574
1573
|
return _this125;
|
|
1575
1574
|
}
|
|
1575
|
+
(0, _inherits2.default)(ProcessingFailure_ExpiredPrivateKeyError, _ProcessingFailureErr9);
|
|
1576
1576
|
return (0, _createClass2.default)(ProcessingFailure_ExpiredPrivateKeyError);
|
|
1577
1577
|
}(ProcessingFailureError);
|
|
1578
1578
|
errorClasses.ProcessingFailure_ExpiredPrivateKeyError = ProcessingFailure_ExpiredPrivateKeyError;
|
|
1579
1579
|
var ProcessingFailure_ExpiredPublicKeyError = exports.ProcessingFailure_ExpiredPublicKeyError = /*#__PURE__*/function (_ProcessingFailureErr10) {
|
|
1580
|
-
(0, _inherits2.default)(ProcessingFailure_ExpiredPublicKeyError, _ProcessingFailureErr10);
|
|
1581
1580
|
function ProcessingFailure_ExpiredPublicKeyError(message, code, errorData) {
|
|
1582
1581
|
var _this126;
|
|
1583
1582
|
(0, _classCallCheck2.default)(this, ProcessingFailure_ExpiredPublicKeyError);
|
|
@@ -1585,11 +1584,11 @@ var ProcessingFailure_ExpiredPublicKeyError = exports.ProcessingFailure_ExpiredP
|
|
|
1585
1584
|
_this126.name = 'ProcessingFailure_ExpiredPublicKeyError';
|
|
1586
1585
|
return _this126;
|
|
1587
1586
|
}
|
|
1587
|
+
(0, _inherits2.default)(ProcessingFailure_ExpiredPublicKeyError, _ProcessingFailureErr10);
|
|
1588
1588
|
return (0, _createClass2.default)(ProcessingFailure_ExpiredPublicKeyError);
|
|
1589
1589
|
}(ProcessingFailureError);
|
|
1590
1590
|
errorClasses.ProcessingFailure_ExpiredPublicKeyError = ProcessingFailure_ExpiredPublicKeyError;
|
|
1591
1591
|
var ProcessingFailure_ExportFailureError = exports.ProcessingFailure_ExportFailureError = /*#__PURE__*/function (_ProcessingFailureErr11) {
|
|
1592
|
-
(0, _inherits2.default)(ProcessingFailure_ExportFailureError, _ProcessingFailureErr11);
|
|
1593
1592
|
function ProcessingFailure_ExportFailureError(message, code, errorData) {
|
|
1594
1593
|
var _this127;
|
|
1595
1594
|
(0, _classCallCheck2.default)(this, ProcessingFailure_ExportFailureError);
|
|
@@ -1597,11 +1596,11 @@ var ProcessingFailure_ExportFailureError = exports.ProcessingFailure_ExportFailu
|
|
|
1597
1596
|
_this127.name = 'ProcessingFailure_ExportFailureError';
|
|
1598
1597
|
return _this127;
|
|
1599
1598
|
}
|
|
1599
|
+
(0, _inherits2.default)(ProcessingFailure_ExportFailureError, _ProcessingFailureErr11);
|
|
1600
1600
|
return (0, _createClass2.default)(ProcessingFailure_ExportFailureError);
|
|
1601
1601
|
}(ProcessingFailureError);
|
|
1602
1602
|
errorClasses.ProcessingFailure_ExportFailureError = ProcessingFailure_ExportFailureError;
|
|
1603
1603
|
var ProcessingFailure_ExportNotReadyError = exports.ProcessingFailure_ExportNotReadyError = /*#__PURE__*/function (_ProcessingFailureErr12) {
|
|
1604
|
-
(0, _inherits2.default)(ProcessingFailure_ExportNotReadyError, _ProcessingFailureErr12);
|
|
1605
1604
|
function ProcessingFailure_ExportNotReadyError(message, code, errorData) {
|
|
1606
1605
|
var _this128;
|
|
1607
1606
|
(0, _classCallCheck2.default)(this, ProcessingFailure_ExportNotReadyError);
|
|
@@ -1609,11 +1608,11 @@ var ProcessingFailure_ExportNotReadyError = exports.ProcessingFailure_ExportNotR
|
|
|
1609
1608
|
_this128.name = 'ProcessingFailure_ExportNotReadyError';
|
|
1610
1609
|
return _this128;
|
|
1611
1610
|
}
|
|
1611
|
+
(0, _inherits2.default)(ProcessingFailure_ExportNotReadyError, _ProcessingFailureErr12);
|
|
1612
1612
|
return (0, _createClass2.default)(ProcessingFailure_ExportNotReadyError);
|
|
1613
1613
|
}(ProcessingFailureError);
|
|
1614
1614
|
errorClasses.ProcessingFailure_ExportNotReadyError = ProcessingFailure_ExportNotReadyError;
|
|
1615
1615
|
var ProcessingFailure_FailedToChangePasswordError = exports.ProcessingFailure_FailedToChangePasswordError = /*#__PURE__*/function (_ProcessingFailureErr13) {
|
|
1616
|
-
(0, _inherits2.default)(ProcessingFailure_FailedToChangePasswordError, _ProcessingFailureErr13);
|
|
1617
1616
|
function ProcessingFailure_FailedToChangePasswordError(message, code, errorData) {
|
|
1618
1617
|
var _this129;
|
|
1619
1618
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FailedToChangePasswordError);
|
|
@@ -1621,11 +1620,11 @@ var ProcessingFailure_FailedToChangePasswordError = exports.ProcessingFailure_Fa
|
|
|
1621
1620
|
_this129.name = 'ProcessingFailure_FailedToChangePasswordError';
|
|
1622
1621
|
return _this129;
|
|
1623
1622
|
}
|
|
1623
|
+
(0, _inherits2.default)(ProcessingFailure_FailedToChangePasswordError, _ProcessingFailureErr13);
|
|
1624
1624
|
return (0, _createClass2.default)(ProcessingFailure_FailedToChangePasswordError);
|
|
1625
1625
|
}(ProcessingFailureError);
|
|
1626
1626
|
errorClasses.ProcessingFailure_FailedToChangePasswordError = ProcessingFailure_FailedToChangePasswordError;
|
|
1627
1627
|
var ProcessingFailure_FileLockedError = exports.ProcessingFailure_FileLockedError = /*#__PURE__*/function (_ProcessingFailureErr14) {
|
|
1628
|
-
(0, _inherits2.default)(ProcessingFailure_FileLockedError, _ProcessingFailureErr14);
|
|
1629
1628
|
function ProcessingFailure_FileLockedError(message, code, errorData) {
|
|
1630
1629
|
var _this130;
|
|
1631
1630
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FileLockedError);
|
|
@@ -1633,11 +1632,11 @@ var ProcessingFailure_FileLockedError = exports.ProcessingFailure_FileLockedErro
|
|
|
1633
1632
|
_this130.name = 'ProcessingFailure_FileLockedError';
|
|
1634
1633
|
return _this130;
|
|
1635
1634
|
}
|
|
1635
|
+
(0, _inherits2.default)(ProcessingFailure_FileLockedError, _ProcessingFailureErr14);
|
|
1636
1636
|
return (0, _createClass2.default)(ProcessingFailure_FileLockedError);
|
|
1637
1637
|
}(ProcessingFailureError);
|
|
1638
1638
|
errorClasses.ProcessingFailure_FileLockedError = ProcessingFailure_FileLockedError;
|
|
1639
1639
|
var ProcessingFailure_FileNotUploadedError = exports.ProcessingFailure_FileNotUploadedError = /*#__PURE__*/function (_ProcessingFailureErr15) {
|
|
1640
|
-
(0, _inherits2.default)(ProcessingFailure_FileNotUploadedError, _ProcessingFailureErr15);
|
|
1641
1640
|
function ProcessingFailure_FileNotUploadedError(message, code, errorData) {
|
|
1642
1641
|
var _this131;
|
|
1643
1642
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FileNotUploadedError);
|
|
@@ -1645,11 +1644,11 @@ var ProcessingFailure_FileNotUploadedError = exports.ProcessingFailure_FileNotUp
|
|
|
1645
1644
|
_this131.name = 'ProcessingFailure_FileNotUploadedError';
|
|
1646
1645
|
return _this131;
|
|
1647
1646
|
}
|
|
1647
|
+
(0, _inherits2.default)(ProcessingFailure_FileNotUploadedError, _ProcessingFailureErr15);
|
|
1648
1648
|
return (0, _createClass2.default)(ProcessingFailure_FileNotUploadedError);
|
|
1649
1649
|
}(ProcessingFailureError);
|
|
1650
1650
|
errorClasses.ProcessingFailure_FileNotUploadedError = ProcessingFailure_FileNotUploadedError;
|
|
1651
1651
|
var ProcessingFailure_FilePendingProcessingError = exports.ProcessingFailure_FilePendingProcessingError = /*#__PURE__*/function (_ProcessingFailureErr16) {
|
|
1652
|
-
(0, _inherits2.default)(ProcessingFailure_FilePendingProcessingError, _ProcessingFailureErr16);
|
|
1653
1652
|
function ProcessingFailure_FilePendingProcessingError(message, code, errorData) {
|
|
1654
1653
|
var _this132;
|
|
1655
1654
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FilePendingProcessingError);
|
|
@@ -1657,11 +1656,11 @@ var ProcessingFailure_FilePendingProcessingError = exports.ProcessingFailure_Fil
|
|
|
1657
1656
|
_this132.name = 'ProcessingFailure_FilePendingProcessingError';
|
|
1658
1657
|
return _this132;
|
|
1659
1658
|
}
|
|
1659
|
+
(0, _inherits2.default)(ProcessingFailure_FilePendingProcessingError, _ProcessingFailureErr16);
|
|
1660
1660
|
return (0, _createClass2.default)(ProcessingFailure_FilePendingProcessingError);
|
|
1661
1661
|
}(ProcessingFailureError);
|
|
1662
1662
|
errorClasses.ProcessingFailure_FilePendingProcessingError = ProcessingFailure_FilePendingProcessingError;
|
|
1663
1663
|
var ProcessingFailure_FileTooBigToDecryptError = exports.ProcessingFailure_FileTooBigToDecryptError = /*#__PURE__*/function (_ProcessingFailureErr17) {
|
|
1664
|
-
(0, _inherits2.default)(ProcessingFailure_FileTooBigToDecryptError, _ProcessingFailureErr17);
|
|
1665
1664
|
function ProcessingFailure_FileTooBigToDecryptError(message, code, errorData) {
|
|
1666
1665
|
var _this133;
|
|
1667
1666
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FileTooBigToDecryptError);
|
|
@@ -1669,11 +1668,11 @@ var ProcessingFailure_FileTooBigToDecryptError = exports.ProcessingFailure_FileT
|
|
|
1669
1668
|
_this133.name = 'ProcessingFailure_FileTooBigToDecryptError';
|
|
1670
1669
|
return _this133;
|
|
1671
1670
|
}
|
|
1671
|
+
(0, _inherits2.default)(ProcessingFailure_FileTooBigToDecryptError, _ProcessingFailureErr17);
|
|
1672
1672
|
return (0, _createClass2.default)(ProcessingFailure_FileTooBigToDecryptError);
|
|
1673
1673
|
}(ProcessingFailureError);
|
|
1674
1674
|
errorClasses.ProcessingFailure_FileTooBigToDecryptError = ProcessingFailure_FileTooBigToDecryptError;
|
|
1675
1675
|
var ProcessingFailure_FileTooBigToEncryptError = exports.ProcessingFailure_FileTooBigToEncryptError = /*#__PURE__*/function (_ProcessingFailureErr18) {
|
|
1676
|
-
(0, _inherits2.default)(ProcessingFailure_FileTooBigToEncryptError, _ProcessingFailureErr18);
|
|
1677
1676
|
function ProcessingFailure_FileTooBigToEncryptError(message, code, errorData) {
|
|
1678
1677
|
var _this134;
|
|
1679
1678
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FileTooBigToEncryptError);
|
|
@@ -1681,11 +1680,11 @@ var ProcessingFailure_FileTooBigToEncryptError = exports.ProcessingFailure_FileT
|
|
|
1681
1680
|
_this134.name = 'ProcessingFailure_FileTooBigToEncryptError';
|
|
1682
1681
|
return _this134;
|
|
1683
1682
|
}
|
|
1683
|
+
(0, _inherits2.default)(ProcessingFailure_FileTooBigToEncryptError, _ProcessingFailureErr18);
|
|
1684
1684
|
return (0, _createClass2.default)(ProcessingFailure_FileTooBigToEncryptError);
|
|
1685
1685
|
}(ProcessingFailureError);
|
|
1686
1686
|
errorClasses.ProcessingFailure_FileTooBigToEncryptError = ProcessingFailure_FileTooBigToEncryptError;
|
|
1687
1687
|
var ProcessingFailure_FileUploadedToWrongRegionError = exports.ProcessingFailure_FileUploadedToWrongRegionError = /*#__PURE__*/function (_ProcessingFailureErr19) {
|
|
1688
|
-
(0, _inherits2.default)(ProcessingFailure_FileUploadedToWrongRegionError, _ProcessingFailureErr19);
|
|
1689
1688
|
function ProcessingFailure_FileUploadedToWrongRegionError(message, code, errorData) {
|
|
1690
1689
|
var _this135;
|
|
1691
1690
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FileUploadedToWrongRegionError);
|
|
@@ -1693,11 +1692,11 @@ var ProcessingFailure_FileUploadedToWrongRegionError = exports.ProcessingFailure
|
|
|
1693
1692
|
_this135.name = 'ProcessingFailure_FileUploadedToWrongRegionError';
|
|
1694
1693
|
return _this135;
|
|
1695
1694
|
}
|
|
1695
|
+
(0, _inherits2.default)(ProcessingFailure_FileUploadedToWrongRegionError, _ProcessingFailureErr19);
|
|
1696
1696
|
return (0, _createClass2.default)(ProcessingFailure_FileUploadedToWrongRegionError);
|
|
1697
1697
|
}(ProcessingFailureError);
|
|
1698
1698
|
errorClasses.ProcessingFailure_FileUploadedToWrongRegionError = ProcessingFailure_FileUploadedToWrongRegionError;
|
|
1699
1699
|
var ProcessingFailure_FolderLockedError = exports.ProcessingFailure_FolderLockedError = /*#__PURE__*/function (_ProcessingFailureErr20) {
|
|
1700
|
-
(0, _inherits2.default)(ProcessingFailure_FolderLockedError, _ProcessingFailureErr20);
|
|
1701
1700
|
function ProcessingFailure_FolderLockedError(message, code, errorData) {
|
|
1702
1701
|
var _this136;
|
|
1703
1702
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FolderLockedError);
|
|
@@ -1705,11 +1704,11 @@ var ProcessingFailure_FolderLockedError = exports.ProcessingFailure_FolderLocked
|
|
|
1705
1704
|
_this136.name = 'ProcessingFailure_FolderLockedError';
|
|
1706
1705
|
return _this136;
|
|
1707
1706
|
}
|
|
1707
|
+
(0, _inherits2.default)(ProcessingFailure_FolderLockedError, _ProcessingFailureErr20);
|
|
1708
1708
|
return (0, _createClass2.default)(ProcessingFailure_FolderLockedError);
|
|
1709
1709
|
}(ProcessingFailureError);
|
|
1710
1710
|
errorClasses.ProcessingFailure_FolderLockedError = ProcessingFailure_FolderLockedError;
|
|
1711
1711
|
var ProcessingFailure_FolderNotEmptyError = exports.ProcessingFailure_FolderNotEmptyError = /*#__PURE__*/function (_ProcessingFailureErr21) {
|
|
1712
|
-
(0, _inherits2.default)(ProcessingFailure_FolderNotEmptyError, _ProcessingFailureErr21);
|
|
1713
1712
|
function ProcessingFailure_FolderNotEmptyError(message, code, errorData) {
|
|
1714
1713
|
var _this137;
|
|
1715
1714
|
(0, _classCallCheck2.default)(this, ProcessingFailure_FolderNotEmptyError);
|
|
@@ -1717,11 +1716,11 @@ var ProcessingFailure_FolderNotEmptyError = exports.ProcessingFailure_FolderNotE
|
|
|
1717
1716
|
_this137.name = 'ProcessingFailure_FolderNotEmptyError';
|
|
1718
1717
|
return _this137;
|
|
1719
1718
|
}
|
|
1719
|
+
(0, _inherits2.default)(ProcessingFailure_FolderNotEmptyError, _ProcessingFailureErr21);
|
|
1720
1720
|
return (0, _createClass2.default)(ProcessingFailure_FolderNotEmptyError);
|
|
1721
1721
|
}(ProcessingFailureError);
|
|
1722
1722
|
errorClasses.ProcessingFailure_FolderNotEmptyError = ProcessingFailure_FolderNotEmptyError;
|
|
1723
1723
|
var ProcessingFailure_HistoryUnavailableError = exports.ProcessingFailure_HistoryUnavailableError = /*#__PURE__*/function (_ProcessingFailureErr22) {
|
|
1724
|
-
(0, _inherits2.default)(ProcessingFailure_HistoryUnavailableError, _ProcessingFailureErr22);
|
|
1725
1724
|
function ProcessingFailure_HistoryUnavailableError(message, code, errorData) {
|
|
1726
1725
|
var _this138;
|
|
1727
1726
|
(0, _classCallCheck2.default)(this, ProcessingFailure_HistoryUnavailableError);
|
|
@@ -1729,11 +1728,11 @@ var ProcessingFailure_HistoryUnavailableError = exports.ProcessingFailure_Histor
|
|
|
1729
1728
|
_this138.name = 'ProcessingFailure_HistoryUnavailableError';
|
|
1730
1729
|
return _this138;
|
|
1731
1730
|
}
|
|
1731
|
+
(0, _inherits2.default)(ProcessingFailure_HistoryUnavailableError, _ProcessingFailureErr22);
|
|
1732
1732
|
return (0, _createClass2.default)(ProcessingFailure_HistoryUnavailableError);
|
|
1733
1733
|
}(ProcessingFailureError);
|
|
1734
1734
|
errorClasses.ProcessingFailure_HistoryUnavailableError = ProcessingFailure_HistoryUnavailableError;
|
|
1735
1735
|
var ProcessingFailure_InvalidBundleCodeError = exports.ProcessingFailure_InvalidBundleCodeError = /*#__PURE__*/function (_ProcessingFailureErr23) {
|
|
1736
|
-
(0, _inherits2.default)(ProcessingFailure_InvalidBundleCodeError, _ProcessingFailureErr23);
|
|
1737
1736
|
function ProcessingFailure_InvalidBundleCodeError(message, code, errorData) {
|
|
1738
1737
|
var _this139;
|
|
1739
1738
|
(0, _classCallCheck2.default)(this, ProcessingFailure_InvalidBundleCodeError);
|
|
@@ -1741,11 +1740,11 @@ var ProcessingFailure_InvalidBundleCodeError = exports.ProcessingFailure_Invalid
|
|
|
1741
1740
|
_this139.name = 'ProcessingFailure_InvalidBundleCodeError';
|
|
1742
1741
|
return _this139;
|
|
1743
1742
|
}
|
|
1743
|
+
(0, _inherits2.default)(ProcessingFailure_InvalidBundleCodeError, _ProcessingFailureErr23);
|
|
1744
1744
|
return (0, _createClass2.default)(ProcessingFailure_InvalidBundleCodeError);
|
|
1745
1745
|
}(ProcessingFailureError);
|
|
1746
1746
|
errorClasses.ProcessingFailure_InvalidBundleCodeError = ProcessingFailure_InvalidBundleCodeError;
|
|
1747
1747
|
var ProcessingFailure_InvalidFileTypeError = exports.ProcessingFailure_InvalidFileTypeError = /*#__PURE__*/function (_ProcessingFailureErr24) {
|
|
1748
|
-
(0, _inherits2.default)(ProcessingFailure_InvalidFileTypeError, _ProcessingFailureErr24);
|
|
1749
1748
|
function ProcessingFailure_InvalidFileTypeError(message, code, errorData) {
|
|
1750
1749
|
var _this140;
|
|
1751
1750
|
(0, _classCallCheck2.default)(this, ProcessingFailure_InvalidFileTypeError);
|
|
@@ -1753,11 +1752,11 @@ var ProcessingFailure_InvalidFileTypeError = exports.ProcessingFailure_InvalidFi
|
|
|
1753
1752
|
_this140.name = 'ProcessingFailure_InvalidFileTypeError';
|
|
1754
1753
|
return _this140;
|
|
1755
1754
|
}
|
|
1755
|
+
(0, _inherits2.default)(ProcessingFailure_InvalidFileTypeError, _ProcessingFailureErr24);
|
|
1756
1756
|
return (0, _createClass2.default)(ProcessingFailure_InvalidFileTypeError);
|
|
1757
1757
|
}(ProcessingFailureError);
|
|
1758
1758
|
errorClasses.ProcessingFailure_InvalidFileTypeError = ProcessingFailure_InvalidFileTypeError;
|
|
1759
1759
|
var ProcessingFailure_InvalidFilenameError = exports.ProcessingFailure_InvalidFilenameError = /*#__PURE__*/function (_ProcessingFailureErr25) {
|
|
1760
|
-
(0, _inherits2.default)(ProcessingFailure_InvalidFilenameError, _ProcessingFailureErr25);
|
|
1761
1760
|
function ProcessingFailure_InvalidFilenameError(message, code, errorData) {
|
|
1762
1761
|
var _this141;
|
|
1763
1762
|
(0, _classCallCheck2.default)(this, ProcessingFailure_InvalidFilenameError);
|
|
@@ -1765,11 +1764,11 @@ var ProcessingFailure_InvalidFilenameError = exports.ProcessingFailure_InvalidFi
|
|
|
1765
1764
|
_this141.name = 'ProcessingFailure_InvalidFilenameError';
|
|
1766
1765
|
return _this141;
|
|
1767
1766
|
}
|
|
1767
|
+
(0, _inherits2.default)(ProcessingFailure_InvalidFilenameError, _ProcessingFailureErr25);
|
|
1768
1768
|
return (0, _createClass2.default)(ProcessingFailure_InvalidFilenameError);
|
|
1769
1769
|
}(ProcessingFailureError);
|
|
1770
1770
|
errorClasses.ProcessingFailure_InvalidFilenameError = ProcessingFailure_InvalidFilenameError;
|
|
1771
1771
|
var ProcessingFailure_InvalidRangeError = exports.ProcessingFailure_InvalidRangeError = /*#__PURE__*/function (_ProcessingFailureErr26) {
|
|
1772
|
-
(0, _inherits2.default)(ProcessingFailure_InvalidRangeError, _ProcessingFailureErr26);
|
|
1773
1772
|
function ProcessingFailure_InvalidRangeError(message, code, errorData) {
|
|
1774
1773
|
var _this142;
|
|
1775
1774
|
(0, _classCallCheck2.default)(this, ProcessingFailure_InvalidRangeError);
|
|
@@ -1777,11 +1776,11 @@ var ProcessingFailure_InvalidRangeError = exports.ProcessingFailure_InvalidRange
|
|
|
1777
1776
|
_this142.name = 'ProcessingFailure_InvalidRangeError';
|
|
1778
1777
|
return _this142;
|
|
1779
1778
|
}
|
|
1779
|
+
(0, _inherits2.default)(ProcessingFailure_InvalidRangeError, _ProcessingFailureErr26);
|
|
1780
1780
|
return (0, _createClass2.default)(ProcessingFailure_InvalidRangeError);
|
|
1781
1781
|
}(ProcessingFailureError);
|
|
1782
1782
|
errorClasses.ProcessingFailure_InvalidRangeError = ProcessingFailure_InvalidRangeError;
|
|
1783
1783
|
var ProcessingFailure_ModelSaveErrorError = exports.ProcessingFailure_ModelSaveErrorError = /*#__PURE__*/function (_ProcessingFailureErr27) {
|
|
1784
|
-
(0, _inherits2.default)(ProcessingFailure_ModelSaveErrorError, _ProcessingFailureErr27);
|
|
1785
1784
|
function ProcessingFailure_ModelSaveErrorError(message, code, errorData) {
|
|
1786
1785
|
var _this143;
|
|
1787
1786
|
(0, _classCallCheck2.default)(this, ProcessingFailure_ModelSaveErrorError);
|
|
@@ -1789,11 +1788,11 @@ var ProcessingFailure_ModelSaveErrorError = exports.ProcessingFailure_ModelSaveE
|
|
|
1789
1788
|
_this143.name = 'ProcessingFailure_ModelSaveErrorError';
|
|
1790
1789
|
return _this143;
|
|
1791
1790
|
}
|
|
1791
|
+
(0, _inherits2.default)(ProcessingFailure_ModelSaveErrorError, _ProcessingFailureErr27);
|
|
1792
1792
|
return (0, _createClass2.default)(ProcessingFailure_ModelSaveErrorError);
|
|
1793
1793
|
}(ProcessingFailureError);
|
|
1794
1794
|
errorClasses.ProcessingFailure_ModelSaveErrorError = ProcessingFailure_ModelSaveErrorError;
|
|
1795
1795
|
var ProcessingFailure_MultipleProcessingErrorsError = exports.ProcessingFailure_MultipleProcessingErrorsError = /*#__PURE__*/function (_ProcessingFailureErr28) {
|
|
1796
|
-
(0, _inherits2.default)(ProcessingFailure_MultipleProcessingErrorsError, _ProcessingFailureErr28);
|
|
1797
1796
|
function ProcessingFailure_MultipleProcessingErrorsError(message, code, errorData) {
|
|
1798
1797
|
var _this144;
|
|
1799
1798
|
(0, _classCallCheck2.default)(this, ProcessingFailure_MultipleProcessingErrorsError);
|
|
@@ -1801,11 +1800,11 @@ var ProcessingFailure_MultipleProcessingErrorsError = exports.ProcessingFailure_
|
|
|
1801
1800
|
_this144.name = 'ProcessingFailure_MultipleProcessingErrorsError';
|
|
1802
1801
|
return _this144;
|
|
1803
1802
|
}
|
|
1803
|
+
(0, _inherits2.default)(ProcessingFailure_MultipleProcessingErrorsError, _ProcessingFailureErr28);
|
|
1804
1804
|
return (0, _createClass2.default)(ProcessingFailure_MultipleProcessingErrorsError);
|
|
1805
1805
|
}(ProcessingFailureError);
|
|
1806
1806
|
errorClasses.ProcessingFailure_MultipleProcessingErrorsError = ProcessingFailure_MultipleProcessingErrorsError;
|
|
1807
1807
|
var ProcessingFailure_PathTooLongError = exports.ProcessingFailure_PathTooLongError = /*#__PURE__*/function (_ProcessingFailureErr29) {
|
|
1808
|
-
(0, _inherits2.default)(ProcessingFailure_PathTooLongError, _ProcessingFailureErr29);
|
|
1809
1808
|
function ProcessingFailure_PathTooLongError(message, code, errorData) {
|
|
1810
1809
|
var _this145;
|
|
1811
1810
|
(0, _classCallCheck2.default)(this, ProcessingFailure_PathTooLongError);
|
|
@@ -1813,11 +1812,11 @@ var ProcessingFailure_PathTooLongError = exports.ProcessingFailure_PathTooLongEr
|
|
|
1813
1812
|
_this145.name = 'ProcessingFailure_PathTooLongError';
|
|
1814
1813
|
return _this145;
|
|
1815
1814
|
}
|
|
1815
|
+
(0, _inherits2.default)(ProcessingFailure_PathTooLongError, _ProcessingFailureErr29);
|
|
1816
1816
|
return (0, _createClass2.default)(ProcessingFailure_PathTooLongError);
|
|
1817
1817
|
}(ProcessingFailureError);
|
|
1818
1818
|
errorClasses.ProcessingFailure_PathTooLongError = ProcessingFailure_PathTooLongError;
|
|
1819
1819
|
var ProcessingFailure_RecipientAlreadySharedError = exports.ProcessingFailure_RecipientAlreadySharedError = /*#__PURE__*/function (_ProcessingFailureErr30) {
|
|
1820
|
-
(0, _inherits2.default)(ProcessingFailure_RecipientAlreadySharedError, _ProcessingFailureErr30);
|
|
1821
1820
|
function ProcessingFailure_RecipientAlreadySharedError(message, code, errorData) {
|
|
1822
1821
|
var _this146;
|
|
1823
1822
|
(0, _classCallCheck2.default)(this, ProcessingFailure_RecipientAlreadySharedError);
|
|
@@ -1825,11 +1824,11 @@ var ProcessingFailure_RecipientAlreadySharedError = exports.ProcessingFailure_Re
|
|
|
1825
1824
|
_this146.name = 'ProcessingFailure_RecipientAlreadySharedError';
|
|
1826
1825
|
return _this146;
|
|
1827
1826
|
}
|
|
1827
|
+
(0, _inherits2.default)(ProcessingFailure_RecipientAlreadySharedError, _ProcessingFailureErr30);
|
|
1828
1828
|
return (0, _createClass2.default)(ProcessingFailure_RecipientAlreadySharedError);
|
|
1829
1829
|
}(ProcessingFailureError);
|
|
1830
1830
|
errorClasses.ProcessingFailure_RecipientAlreadySharedError = ProcessingFailure_RecipientAlreadySharedError;
|
|
1831
1831
|
var ProcessingFailure_RemoteServerErrorError = exports.ProcessingFailure_RemoteServerErrorError = /*#__PURE__*/function (_ProcessingFailureErr31) {
|
|
1832
|
-
(0, _inherits2.default)(ProcessingFailure_RemoteServerErrorError, _ProcessingFailureErr31);
|
|
1833
1832
|
function ProcessingFailure_RemoteServerErrorError(message, code, errorData) {
|
|
1834
1833
|
var _this147;
|
|
1835
1834
|
(0, _classCallCheck2.default)(this, ProcessingFailure_RemoteServerErrorError);
|
|
@@ -1837,11 +1836,11 @@ var ProcessingFailure_RemoteServerErrorError = exports.ProcessingFailure_RemoteS
|
|
|
1837
1836
|
_this147.name = 'ProcessingFailure_RemoteServerErrorError';
|
|
1838
1837
|
return _this147;
|
|
1839
1838
|
}
|
|
1839
|
+
(0, _inherits2.default)(ProcessingFailure_RemoteServerErrorError, _ProcessingFailureErr31);
|
|
1840
1840
|
return (0, _createClass2.default)(ProcessingFailure_RemoteServerErrorError);
|
|
1841
1841
|
}(ProcessingFailureError);
|
|
1842
1842
|
errorClasses.ProcessingFailure_RemoteServerErrorError = ProcessingFailure_RemoteServerErrorError;
|
|
1843
1843
|
var ProcessingFailure_ResourceLockedError = exports.ProcessingFailure_ResourceLockedError = /*#__PURE__*/function (_ProcessingFailureErr32) {
|
|
1844
|
-
(0, _inherits2.default)(ProcessingFailure_ResourceLockedError, _ProcessingFailureErr32);
|
|
1845
1844
|
function ProcessingFailure_ResourceLockedError(message, code, errorData) {
|
|
1846
1845
|
var _this148;
|
|
1847
1846
|
(0, _classCallCheck2.default)(this, ProcessingFailure_ResourceLockedError);
|
|
@@ -1849,11 +1848,11 @@ var ProcessingFailure_ResourceLockedError = exports.ProcessingFailure_ResourceLo
|
|
|
1849
1848
|
_this148.name = 'ProcessingFailure_ResourceLockedError';
|
|
1850
1849
|
return _this148;
|
|
1851
1850
|
}
|
|
1851
|
+
(0, _inherits2.default)(ProcessingFailure_ResourceLockedError, _ProcessingFailureErr32);
|
|
1852
1852
|
return (0, _createClass2.default)(ProcessingFailure_ResourceLockedError);
|
|
1853
1853
|
}(ProcessingFailureError);
|
|
1854
1854
|
errorClasses.ProcessingFailure_ResourceLockedError = ProcessingFailure_ResourceLockedError;
|
|
1855
1855
|
var ProcessingFailure_SubfolderLockedError = exports.ProcessingFailure_SubfolderLockedError = /*#__PURE__*/function (_ProcessingFailureErr33) {
|
|
1856
|
-
(0, _inherits2.default)(ProcessingFailure_SubfolderLockedError, _ProcessingFailureErr33);
|
|
1857
1856
|
function ProcessingFailure_SubfolderLockedError(message, code, errorData) {
|
|
1858
1857
|
var _this149;
|
|
1859
1858
|
(0, _classCallCheck2.default)(this, ProcessingFailure_SubfolderLockedError);
|
|
@@ -1861,11 +1860,11 @@ var ProcessingFailure_SubfolderLockedError = exports.ProcessingFailure_Subfolder
|
|
|
1861
1860
|
_this149.name = 'ProcessingFailure_SubfolderLockedError';
|
|
1862
1861
|
return _this149;
|
|
1863
1862
|
}
|
|
1863
|
+
(0, _inherits2.default)(ProcessingFailure_SubfolderLockedError, _ProcessingFailureErr33);
|
|
1864
1864
|
return (0, _createClass2.default)(ProcessingFailure_SubfolderLockedError);
|
|
1865
1865
|
}(ProcessingFailureError);
|
|
1866
1866
|
errorClasses.ProcessingFailure_SubfolderLockedError = ProcessingFailure_SubfolderLockedError;
|
|
1867
1867
|
var ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = exports.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = /*#__PURE__*/function (_ProcessingFailureErr34) {
|
|
1868
|
-
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError, _ProcessingFailureErr34);
|
|
1869
1868
|
function ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError(message, code, errorData) {
|
|
1870
1869
|
var _this150;
|
|
1871
1870
|
(0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
|
|
@@ -1873,11 +1872,11 @@ var ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = exports.Proc
|
|
|
1873
1872
|
_this150.name = 'ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError';
|
|
1874
1873
|
return _this150;
|
|
1875
1874
|
}
|
|
1875
|
+
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError, _ProcessingFailureErr34);
|
|
1876
1876
|
return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError);
|
|
1877
1877
|
}(ProcessingFailureError);
|
|
1878
1878
|
errorClasses.ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError = ProcessingFailure_TwoFactorAuthenticationCodeAlreadySentError;
|
|
1879
1879
|
var ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = exports.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = /*#__PURE__*/function (_ProcessingFailureErr35) {
|
|
1880
|
-
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError, _ProcessingFailureErr35);
|
|
1881
1880
|
function ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError(message, code, errorData) {
|
|
1882
1881
|
var _this151;
|
|
1883
1882
|
(0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError);
|
|
@@ -1885,11 +1884,11 @@ var ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = exports.P
|
|
|
1885
1884
|
_this151.name = 'ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError';
|
|
1886
1885
|
return _this151;
|
|
1887
1886
|
}
|
|
1887
|
+
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError, _ProcessingFailureErr35);
|
|
1888
1888
|
return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError);
|
|
1889
1889
|
}(ProcessingFailureError);
|
|
1890
1890
|
errorClasses.ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError = ProcessingFailure_TwoFactorAuthenticationCountryBlacklistedError;
|
|
1891
1891
|
var ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = exports.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = /*#__PURE__*/function (_ProcessingFailureErr36) {
|
|
1892
|
-
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationGeneralErrorError, _ProcessingFailureErr36);
|
|
1893
1892
|
function ProcessingFailure_TwoFactorAuthenticationGeneralErrorError(message, code, errorData) {
|
|
1894
1893
|
var _this152;
|
|
1895
1894
|
(0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationGeneralErrorError);
|
|
@@ -1897,11 +1896,11 @@ var ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = exports.Process
|
|
|
1897
1896
|
_this152.name = 'ProcessingFailure_TwoFactorAuthenticationGeneralErrorError';
|
|
1898
1897
|
return _this152;
|
|
1899
1898
|
}
|
|
1899
|
+
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationGeneralErrorError, _ProcessingFailureErr36);
|
|
1900
1900
|
return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationGeneralErrorError);
|
|
1901
1901
|
}(ProcessingFailureError);
|
|
1902
1902
|
errorClasses.ProcessingFailure_TwoFactorAuthenticationGeneralErrorError = ProcessingFailure_TwoFactorAuthenticationGeneralErrorError;
|
|
1903
1903
|
var ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = exports.ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = /*#__PURE__*/function (_ProcessingFailureErr37) {
|
|
1904
|
-
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError, _ProcessingFailureErr37);
|
|
1905
1904
|
function ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError(message, code, errorData) {
|
|
1906
1905
|
var _this153;
|
|
1907
1906
|
(0, _classCallCheck2.default)(this, ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError);
|
|
@@ -1909,11 +1908,11 @@ var ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = export
|
|
|
1909
1908
|
_this153.name = 'ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError';
|
|
1910
1909
|
return _this153;
|
|
1911
1910
|
}
|
|
1911
|
+
(0, _inherits2.default)(ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError, _ProcessingFailureErr37);
|
|
1912
1912
|
return (0, _createClass2.default)(ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError);
|
|
1913
1913
|
}(ProcessingFailureError);
|
|
1914
1914
|
errorClasses.ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError = ProcessingFailure_TwoFactorAuthenticationUnsubscribedRecipientError;
|
|
1915
1915
|
var ProcessingFailure_UpdatesNotAllowedForRemotesError = exports.ProcessingFailure_UpdatesNotAllowedForRemotesError = /*#__PURE__*/function (_ProcessingFailureErr38) {
|
|
1916
|
-
(0, _inherits2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError, _ProcessingFailureErr38);
|
|
1917
1916
|
function ProcessingFailure_UpdatesNotAllowedForRemotesError(message, code, errorData) {
|
|
1918
1917
|
var _this154;
|
|
1919
1918
|
(0, _classCallCheck2.default)(this, ProcessingFailure_UpdatesNotAllowedForRemotesError);
|
|
@@ -1921,11 +1920,11 @@ var ProcessingFailure_UpdatesNotAllowedForRemotesError = exports.ProcessingFailu
|
|
|
1921
1920
|
_this154.name = 'ProcessingFailure_UpdatesNotAllowedForRemotesError';
|
|
1922
1921
|
return _this154;
|
|
1923
1922
|
}
|
|
1923
|
+
(0, _inherits2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError, _ProcessingFailureErr38);
|
|
1924
1924
|
return (0, _createClass2.default)(ProcessingFailure_UpdatesNotAllowedForRemotesError);
|
|
1925
1925
|
}(ProcessingFailureError);
|
|
1926
1926
|
errorClasses.ProcessingFailure_UpdatesNotAllowedForRemotesError = ProcessingFailure_UpdatesNotAllowedForRemotesError;
|
|
1927
1927
|
var RateLimited_DuplicateShareRecipientError = exports.RateLimited_DuplicateShareRecipientError = /*#__PURE__*/function (_RateLimitedError) {
|
|
1928
|
-
(0, _inherits2.default)(RateLimited_DuplicateShareRecipientError, _RateLimitedError);
|
|
1929
1928
|
function RateLimited_DuplicateShareRecipientError(message, code, errorData) {
|
|
1930
1929
|
var _this155;
|
|
1931
1930
|
(0, _classCallCheck2.default)(this, RateLimited_DuplicateShareRecipientError);
|
|
@@ -1933,11 +1932,11 @@ var RateLimited_DuplicateShareRecipientError = exports.RateLimited_DuplicateShar
|
|
|
1933
1932
|
_this155.name = 'RateLimited_DuplicateShareRecipientError';
|
|
1934
1933
|
return _this155;
|
|
1935
1934
|
}
|
|
1935
|
+
(0, _inherits2.default)(RateLimited_DuplicateShareRecipientError, _RateLimitedError);
|
|
1936
1936
|
return (0, _createClass2.default)(RateLimited_DuplicateShareRecipientError);
|
|
1937
1937
|
}(RateLimitedError);
|
|
1938
1938
|
errorClasses.RateLimited_DuplicateShareRecipientError = RateLimited_DuplicateShareRecipientError;
|
|
1939
1939
|
var RateLimited_ReauthenticationRateLimitedError = exports.RateLimited_ReauthenticationRateLimitedError = /*#__PURE__*/function (_RateLimitedError2) {
|
|
1940
|
-
(0, _inherits2.default)(RateLimited_ReauthenticationRateLimitedError, _RateLimitedError2);
|
|
1941
1940
|
function RateLimited_ReauthenticationRateLimitedError(message, code, errorData) {
|
|
1942
1941
|
var _this156;
|
|
1943
1942
|
(0, _classCallCheck2.default)(this, RateLimited_ReauthenticationRateLimitedError);
|
|
@@ -1945,11 +1944,11 @@ var RateLimited_ReauthenticationRateLimitedError = exports.RateLimited_Reauthent
|
|
|
1945
1944
|
_this156.name = 'RateLimited_ReauthenticationRateLimitedError';
|
|
1946
1945
|
return _this156;
|
|
1947
1946
|
}
|
|
1947
|
+
(0, _inherits2.default)(RateLimited_ReauthenticationRateLimitedError, _RateLimitedError2);
|
|
1948
1948
|
return (0, _createClass2.default)(RateLimited_ReauthenticationRateLimitedError);
|
|
1949
1949
|
}(RateLimitedError);
|
|
1950
1950
|
errorClasses.RateLimited_ReauthenticationRateLimitedError = RateLimited_ReauthenticationRateLimitedError;
|
|
1951
1951
|
var RateLimited_TooManyConcurrentRequestsError = exports.RateLimited_TooManyConcurrentRequestsError = /*#__PURE__*/function (_RateLimitedError3) {
|
|
1952
|
-
(0, _inherits2.default)(RateLimited_TooManyConcurrentRequestsError, _RateLimitedError3);
|
|
1953
1952
|
function RateLimited_TooManyConcurrentRequestsError(message, code, errorData) {
|
|
1954
1953
|
var _this157;
|
|
1955
1954
|
(0, _classCallCheck2.default)(this, RateLimited_TooManyConcurrentRequestsError);
|
|
@@ -1957,11 +1956,11 @@ var RateLimited_TooManyConcurrentRequestsError = exports.RateLimited_TooManyConc
|
|
|
1957
1956
|
_this157.name = 'RateLimited_TooManyConcurrentRequestsError';
|
|
1958
1957
|
return _this157;
|
|
1959
1958
|
}
|
|
1959
|
+
(0, _inherits2.default)(RateLimited_TooManyConcurrentRequestsError, _RateLimitedError3);
|
|
1960
1960
|
return (0, _createClass2.default)(RateLimited_TooManyConcurrentRequestsError);
|
|
1961
1961
|
}(RateLimitedError);
|
|
1962
1962
|
errorClasses.RateLimited_TooManyConcurrentRequestsError = RateLimited_TooManyConcurrentRequestsError;
|
|
1963
1963
|
var RateLimited_TooManyLoginAttemptsError = exports.RateLimited_TooManyLoginAttemptsError = /*#__PURE__*/function (_RateLimitedError4) {
|
|
1964
|
-
(0, _inherits2.default)(RateLimited_TooManyLoginAttemptsError, _RateLimitedError4);
|
|
1965
1964
|
function RateLimited_TooManyLoginAttemptsError(message, code, errorData) {
|
|
1966
1965
|
var _this158;
|
|
1967
1966
|
(0, _classCallCheck2.default)(this, RateLimited_TooManyLoginAttemptsError);
|
|
@@ -1969,11 +1968,11 @@ var RateLimited_TooManyLoginAttemptsError = exports.RateLimited_TooManyLoginAtte
|
|
|
1969
1968
|
_this158.name = 'RateLimited_TooManyLoginAttemptsError';
|
|
1970
1969
|
return _this158;
|
|
1971
1970
|
}
|
|
1971
|
+
(0, _inherits2.default)(RateLimited_TooManyLoginAttemptsError, _RateLimitedError4);
|
|
1972
1972
|
return (0, _createClass2.default)(RateLimited_TooManyLoginAttemptsError);
|
|
1973
1973
|
}(RateLimitedError);
|
|
1974
1974
|
errorClasses.RateLimited_TooManyLoginAttemptsError = RateLimited_TooManyLoginAttemptsError;
|
|
1975
1975
|
var RateLimited_TooManyRequestsError = exports.RateLimited_TooManyRequestsError = /*#__PURE__*/function (_RateLimitedError5) {
|
|
1976
|
-
(0, _inherits2.default)(RateLimited_TooManyRequestsError, _RateLimitedError5);
|
|
1977
1976
|
function RateLimited_TooManyRequestsError(message, code, errorData) {
|
|
1978
1977
|
var _this159;
|
|
1979
1978
|
(0, _classCallCheck2.default)(this, RateLimited_TooManyRequestsError);
|
|
@@ -1981,11 +1980,11 @@ var RateLimited_TooManyRequestsError = exports.RateLimited_TooManyRequestsError
|
|
|
1981
1980
|
_this159.name = 'RateLimited_TooManyRequestsError';
|
|
1982
1981
|
return _this159;
|
|
1983
1982
|
}
|
|
1983
|
+
(0, _inherits2.default)(RateLimited_TooManyRequestsError, _RateLimitedError5);
|
|
1984
1984
|
return (0, _createClass2.default)(RateLimited_TooManyRequestsError);
|
|
1985
1985
|
}(RateLimitedError);
|
|
1986
1986
|
errorClasses.RateLimited_TooManyRequestsError = RateLimited_TooManyRequestsError;
|
|
1987
1987
|
var RateLimited_TooManySharesError = exports.RateLimited_TooManySharesError = /*#__PURE__*/function (_RateLimitedError6) {
|
|
1988
|
-
(0, _inherits2.default)(RateLimited_TooManySharesError, _RateLimitedError6);
|
|
1989
1988
|
function RateLimited_TooManySharesError(message, code, errorData) {
|
|
1990
1989
|
var _this160;
|
|
1991
1990
|
(0, _classCallCheck2.default)(this, RateLimited_TooManySharesError);
|
|
@@ -1993,11 +1992,11 @@ var RateLimited_TooManySharesError = exports.RateLimited_TooManySharesError = /*
|
|
|
1993
1992
|
_this160.name = 'RateLimited_TooManySharesError';
|
|
1994
1993
|
return _this160;
|
|
1995
1994
|
}
|
|
1995
|
+
(0, _inherits2.default)(RateLimited_TooManySharesError, _RateLimitedError6);
|
|
1996
1996
|
return (0, _createClass2.default)(RateLimited_TooManySharesError);
|
|
1997
1997
|
}(RateLimitedError);
|
|
1998
1998
|
errorClasses.RateLimited_TooManySharesError = RateLimited_TooManySharesError;
|
|
1999
1999
|
var ServiceUnavailable_AgentUnavailableError = exports.ServiceUnavailable_AgentUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr) {
|
|
2000
|
-
(0, _inherits2.default)(ServiceUnavailable_AgentUnavailableError, _ServiceUnavailableEr);
|
|
2001
2000
|
function ServiceUnavailable_AgentUnavailableError(message, code, errorData) {
|
|
2002
2001
|
var _this161;
|
|
2003
2002
|
(0, _classCallCheck2.default)(this, ServiceUnavailable_AgentUnavailableError);
|
|
@@ -2005,11 +2004,11 @@ var ServiceUnavailable_AgentUnavailableError = exports.ServiceUnavailable_AgentU
|
|
|
2005
2004
|
_this161.name = 'ServiceUnavailable_AgentUnavailableError';
|
|
2006
2005
|
return _this161;
|
|
2007
2006
|
}
|
|
2007
|
+
(0, _inherits2.default)(ServiceUnavailable_AgentUnavailableError, _ServiceUnavailableEr);
|
|
2008
2008
|
return (0, _createClass2.default)(ServiceUnavailable_AgentUnavailableError);
|
|
2009
2009
|
}(ServiceUnavailableError);
|
|
2010
2010
|
errorClasses.ServiceUnavailable_AgentUnavailableError = ServiceUnavailable_AgentUnavailableError;
|
|
2011
2011
|
var ServiceUnavailable_AutomationsUnavailableError = exports.ServiceUnavailable_AutomationsUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr2) {
|
|
2012
|
-
(0, _inherits2.default)(ServiceUnavailable_AutomationsUnavailableError, _ServiceUnavailableEr2);
|
|
2013
2012
|
function ServiceUnavailable_AutomationsUnavailableError(message, code, errorData) {
|
|
2014
2013
|
var _this162;
|
|
2015
2014
|
(0, _classCallCheck2.default)(this, ServiceUnavailable_AutomationsUnavailableError);
|
|
@@ -2017,11 +2016,11 @@ var ServiceUnavailable_AutomationsUnavailableError = exports.ServiceUnavailable_
|
|
|
2017
2016
|
_this162.name = 'ServiceUnavailable_AutomationsUnavailableError';
|
|
2018
2017
|
return _this162;
|
|
2019
2018
|
}
|
|
2019
|
+
(0, _inherits2.default)(ServiceUnavailable_AutomationsUnavailableError, _ServiceUnavailableEr2);
|
|
2020
2020
|
return (0, _createClass2.default)(ServiceUnavailable_AutomationsUnavailableError);
|
|
2021
2021
|
}(ServiceUnavailableError);
|
|
2022
2022
|
errorClasses.ServiceUnavailable_AutomationsUnavailableError = ServiceUnavailable_AutomationsUnavailableError;
|
|
2023
2023
|
var ServiceUnavailable_UploadsUnavailableError = exports.ServiceUnavailable_UploadsUnavailableError = /*#__PURE__*/function (_ServiceUnavailableEr3) {
|
|
2024
|
-
(0, _inherits2.default)(ServiceUnavailable_UploadsUnavailableError, _ServiceUnavailableEr3);
|
|
2025
2024
|
function ServiceUnavailable_UploadsUnavailableError(message, code, errorData) {
|
|
2026
2025
|
var _this163;
|
|
2027
2026
|
(0, _classCallCheck2.default)(this, ServiceUnavailable_UploadsUnavailableError);
|
|
@@ -2029,11 +2028,11 @@ var ServiceUnavailable_UploadsUnavailableError = exports.ServiceUnavailable_Uplo
|
|
|
2029
2028
|
_this163.name = 'ServiceUnavailable_UploadsUnavailableError';
|
|
2030
2029
|
return _this163;
|
|
2031
2030
|
}
|
|
2031
|
+
(0, _inherits2.default)(ServiceUnavailable_UploadsUnavailableError, _ServiceUnavailableEr3);
|
|
2032
2032
|
return (0, _createClass2.default)(ServiceUnavailable_UploadsUnavailableError);
|
|
2033
2033
|
}(ServiceUnavailableError);
|
|
2034
2034
|
errorClasses.ServiceUnavailable_UploadsUnavailableError = ServiceUnavailable_UploadsUnavailableError;
|
|
2035
2035
|
var SiteConfiguration_AccountAlreadyExistsError = exports.SiteConfiguration_AccountAlreadyExistsError = /*#__PURE__*/function (_SiteConfigurationErr) {
|
|
2036
|
-
(0, _inherits2.default)(SiteConfiguration_AccountAlreadyExistsError, _SiteConfigurationErr);
|
|
2037
2036
|
function SiteConfiguration_AccountAlreadyExistsError(message, code, errorData) {
|
|
2038
2037
|
var _this164;
|
|
2039
2038
|
(0, _classCallCheck2.default)(this, SiteConfiguration_AccountAlreadyExistsError);
|
|
@@ -2041,11 +2040,11 @@ var SiteConfiguration_AccountAlreadyExistsError = exports.SiteConfiguration_Acco
|
|
|
2041
2040
|
_this164.name = 'SiteConfiguration_AccountAlreadyExistsError';
|
|
2042
2041
|
return _this164;
|
|
2043
2042
|
}
|
|
2043
|
+
(0, _inherits2.default)(SiteConfiguration_AccountAlreadyExistsError, _SiteConfigurationErr);
|
|
2044
2044
|
return (0, _createClass2.default)(SiteConfiguration_AccountAlreadyExistsError);
|
|
2045
2045
|
}(SiteConfigurationError);
|
|
2046
2046
|
errorClasses.SiteConfiguration_AccountAlreadyExistsError = SiteConfiguration_AccountAlreadyExistsError;
|
|
2047
2047
|
var SiteConfiguration_AccountOverdueError = exports.SiteConfiguration_AccountOverdueError = /*#__PURE__*/function (_SiteConfigurationErr2) {
|
|
2048
|
-
(0, _inherits2.default)(SiteConfiguration_AccountOverdueError, _SiteConfigurationErr2);
|
|
2049
2048
|
function SiteConfiguration_AccountOverdueError(message, code, errorData) {
|
|
2050
2049
|
var _this165;
|
|
2051
2050
|
(0, _classCallCheck2.default)(this, SiteConfiguration_AccountOverdueError);
|
|
@@ -2053,11 +2052,11 @@ var SiteConfiguration_AccountOverdueError = exports.SiteConfiguration_AccountOve
|
|
|
2053
2052
|
_this165.name = 'SiteConfiguration_AccountOverdueError';
|
|
2054
2053
|
return _this165;
|
|
2055
2054
|
}
|
|
2055
|
+
(0, _inherits2.default)(SiteConfiguration_AccountOverdueError, _SiteConfigurationErr2);
|
|
2056
2056
|
return (0, _createClass2.default)(SiteConfiguration_AccountOverdueError);
|
|
2057
2057
|
}(SiteConfigurationError);
|
|
2058
2058
|
errorClasses.SiteConfiguration_AccountOverdueError = SiteConfiguration_AccountOverdueError;
|
|
2059
2059
|
var SiteConfiguration_NoAccountForSiteError = exports.SiteConfiguration_NoAccountForSiteError = /*#__PURE__*/function (_SiteConfigurationErr3) {
|
|
2060
|
-
(0, _inherits2.default)(SiteConfiguration_NoAccountForSiteError, _SiteConfigurationErr3);
|
|
2061
2060
|
function SiteConfiguration_NoAccountForSiteError(message, code, errorData) {
|
|
2062
2061
|
var _this166;
|
|
2063
2062
|
(0, _classCallCheck2.default)(this, SiteConfiguration_NoAccountForSiteError);
|
|
@@ -2065,11 +2064,11 @@ var SiteConfiguration_NoAccountForSiteError = exports.SiteConfiguration_NoAccoun
|
|
|
2065
2064
|
_this166.name = 'SiteConfiguration_NoAccountForSiteError';
|
|
2066
2065
|
return _this166;
|
|
2067
2066
|
}
|
|
2067
|
+
(0, _inherits2.default)(SiteConfiguration_NoAccountForSiteError, _SiteConfigurationErr3);
|
|
2068
2068
|
return (0, _createClass2.default)(SiteConfiguration_NoAccountForSiteError);
|
|
2069
2069
|
}(SiteConfigurationError);
|
|
2070
2070
|
errorClasses.SiteConfiguration_NoAccountForSiteError = SiteConfiguration_NoAccountForSiteError;
|
|
2071
2071
|
var SiteConfiguration_SiteWasRemovedError = exports.SiteConfiguration_SiteWasRemovedError = /*#__PURE__*/function (_SiteConfigurationErr4) {
|
|
2072
|
-
(0, _inherits2.default)(SiteConfiguration_SiteWasRemovedError, _SiteConfigurationErr4);
|
|
2073
2072
|
function SiteConfiguration_SiteWasRemovedError(message, code, errorData) {
|
|
2074
2073
|
var _this167;
|
|
2075
2074
|
(0, _classCallCheck2.default)(this, SiteConfiguration_SiteWasRemovedError);
|
|
@@ -2077,11 +2076,11 @@ var SiteConfiguration_SiteWasRemovedError = exports.SiteConfiguration_SiteWasRem
|
|
|
2077
2076
|
_this167.name = 'SiteConfiguration_SiteWasRemovedError';
|
|
2078
2077
|
return _this167;
|
|
2079
2078
|
}
|
|
2079
|
+
(0, _inherits2.default)(SiteConfiguration_SiteWasRemovedError, _SiteConfigurationErr4);
|
|
2080
2080
|
return (0, _createClass2.default)(SiteConfiguration_SiteWasRemovedError);
|
|
2081
2081
|
}(SiteConfigurationError);
|
|
2082
2082
|
errorClasses.SiteConfiguration_SiteWasRemovedError = SiteConfiguration_SiteWasRemovedError;
|
|
2083
2083
|
var SiteConfiguration_TrialExpiredError = exports.SiteConfiguration_TrialExpiredError = /*#__PURE__*/function (_SiteConfigurationErr5) {
|
|
2084
|
-
(0, _inherits2.default)(SiteConfiguration_TrialExpiredError, _SiteConfigurationErr5);
|
|
2085
2084
|
function SiteConfiguration_TrialExpiredError(message, code, errorData) {
|
|
2086
2085
|
var _this168;
|
|
2087
2086
|
(0, _classCallCheck2.default)(this, SiteConfiguration_TrialExpiredError);
|
|
@@ -2089,11 +2088,11 @@ var SiteConfiguration_TrialExpiredError = exports.SiteConfiguration_TrialExpired
|
|
|
2089
2088
|
_this168.name = 'SiteConfiguration_TrialExpiredError';
|
|
2090
2089
|
return _this168;
|
|
2091
2090
|
}
|
|
2091
|
+
(0, _inherits2.default)(SiteConfiguration_TrialExpiredError, _SiteConfigurationErr5);
|
|
2092
2092
|
return (0, _createClass2.default)(SiteConfiguration_TrialExpiredError);
|
|
2093
2093
|
}(SiteConfigurationError);
|
|
2094
2094
|
errorClasses.SiteConfiguration_TrialExpiredError = SiteConfiguration_TrialExpiredError;
|
|
2095
2095
|
var SiteConfiguration_TrialLockedError = exports.SiteConfiguration_TrialLockedError = /*#__PURE__*/function (_SiteConfigurationErr6) {
|
|
2096
|
-
(0, _inherits2.default)(SiteConfiguration_TrialLockedError, _SiteConfigurationErr6);
|
|
2097
2096
|
function SiteConfiguration_TrialLockedError(message, code, errorData) {
|
|
2098
2097
|
var _this169;
|
|
2099
2098
|
(0, _classCallCheck2.default)(this, SiteConfiguration_TrialLockedError);
|
|
@@ -2101,11 +2100,11 @@ var SiteConfiguration_TrialLockedError = exports.SiteConfiguration_TrialLockedEr
|
|
|
2101
2100
|
_this169.name = 'SiteConfiguration_TrialLockedError';
|
|
2102
2101
|
return _this169;
|
|
2103
2102
|
}
|
|
2103
|
+
(0, _inherits2.default)(SiteConfiguration_TrialLockedError, _SiteConfigurationErr6);
|
|
2104
2104
|
return (0, _createClass2.default)(SiteConfiguration_TrialLockedError);
|
|
2105
2105
|
}(SiteConfigurationError);
|
|
2106
2106
|
errorClasses.SiteConfiguration_TrialLockedError = SiteConfiguration_TrialLockedError;
|
|
2107
2107
|
var SiteConfiguration_UserRequestsEnabledRequiredError = exports.SiteConfiguration_UserRequestsEnabledRequiredError = /*#__PURE__*/function (_SiteConfigurationErr7) {
|
|
2108
|
-
(0, _inherits2.default)(SiteConfiguration_UserRequestsEnabledRequiredError, _SiteConfigurationErr7);
|
|
2109
2108
|
function SiteConfiguration_UserRequestsEnabledRequiredError(message, code, errorData) {
|
|
2110
2109
|
var _this170;
|
|
2111
2110
|
(0, _classCallCheck2.default)(this, SiteConfiguration_UserRequestsEnabledRequiredError);
|
|
@@ -2113,6 +2112,7 @@ var SiteConfiguration_UserRequestsEnabledRequiredError = exports.SiteConfigurati
|
|
|
2113
2112
|
_this170.name = 'SiteConfiguration_UserRequestsEnabledRequiredError';
|
|
2114
2113
|
return _this170;
|
|
2115
2114
|
}
|
|
2115
|
+
(0, _inherits2.default)(SiteConfiguration_UserRequestsEnabledRequiredError, _SiteConfigurationErr7);
|
|
2116
2116
|
return (0, _createClass2.default)(SiteConfiguration_UserRequestsEnabledRequiredError);
|
|
2117
2117
|
}(SiteConfigurationError);
|
|
2118
2118
|
errorClasses.SiteConfiguration_UserRequestsEnabledRequiredError = SiteConfiguration_UserRequestsEnabledRequiredError;
|