files.com 1.1.19 → 1.2.1

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