files.com 1.2.0 → 1.2.1

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