@yildizpay/http-adapter 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +186 -9
- package/README.tr.md +221 -44
- package/dist/contracts/http-client.contract.d.ts +0 -9
- package/dist/contracts/http-client.contract.js +0 -17
- package/dist/contracts/http-client.contract.js.map +1 -1
- package/dist/contracts/http-interceptor.contract.d.ts +2 -1
- package/dist/core/default-http-client.js +7 -6
- package/dist/core/default-http-client.js.map +1 -1
- package/dist/core/error.converter.d.ts +5 -0
- package/dist/core/error.converter.js +31 -0
- package/dist/core/error.converter.js.map +1 -0
- package/dist/core/http.adapter.js +11 -4
- package/dist/core/http.adapter.js.map +1 -1
- package/dist/exceptions/base-adapter.exception.d.ts +7 -0
- package/dist/exceptions/base-adapter.exception.js +34 -0
- package/dist/exceptions/base-adapter.exception.js.map +1 -0
- package/dist/exceptions/circuit-breaker-open.exception.d.ts +2 -2
- package/dist/exceptions/circuit-breaker-open.exception.js +3 -3
- package/dist/exceptions/circuit-breaker-open.exception.js.map +1 -1
- package/dist/exceptions/exception.guards.d.ts +15 -0
- package/dist/exceptions/exception.guards.js +48 -0
- package/dist/exceptions/exception.guards.js.map +1 -0
- package/dist/exceptions/http-exception.factory.d.ts +5 -0
- package/dist/exceptions/http-exception.factory.js +59 -0
- package/dist/exceptions/http-exception.factory.js.map +1 -0
- package/dist/exceptions/http-status.exceptions.d.ts +134 -0
- package/dist/exceptions/http-status.exceptions.js +382 -0
- package/dist/exceptions/http-status.exceptions.js.map +1 -0
- package/dist/exceptions/network-exception.factory.d.ts +6 -0
- package/dist/exceptions/network-exception.factory.js +35 -0
- package/dist/exceptions/network-exception.factory.js.map +1 -0
- package/dist/exceptions/network.exceptions.d.ts +25 -0
- package/dist/exceptions/network.exceptions.js +69 -0
- package/dist/exceptions/network.exceptions.js.map +1 -0
- package/dist/exceptions/unknown.exception.d.ts +7 -0
- package/dist/exceptions/unknown.exception.js +20 -0
- package/dist/exceptions/unknown.exception.js.map +1 -0
- package/dist/index.d.ts +9 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/models/request-context.d.ts +5 -0
- package/dist/models/request-context.js +3 -0
- package/dist/models/request-context.js.map +1 -0
- package/dist/models/response.d.ts +8 -5
- package/dist/models/response.js +9 -5
- package/dist/models/response.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/exceptions/http.exception.d.ts +0 -5
- package/dist/exceptions/http.exception.js +0 -12
- package/dist/exceptions/http.exception.js.map +0 -1
|
@@ -0,0 +1,382 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NetworkAuthenticationRequiredException = exports.NotExtendedException = exports.LoopDetectedException = exports.InsufficientStorageException = exports.VariantAlsoNegotiatesException = exports.HTTPVersionNotSupportedException = exports.GatewayTimeoutException = exports.ServiceUnavailableException = exports.BadGatewayException = exports.NotImplementedException = exports.InternalServerErrorException = exports.UnavailableForLegalReasonsException = exports.RequestHeaderFieldsTooLargeException = exports.TooManyRequestsException = exports.PreconditionRequiredException = exports.UpgradeRequiredException = exports.TooEarlyException = exports.FailedDependencyException = exports.LockedException = exports.UnprocessableEntityException = exports.MisdirectedRequestException = exports.ImATeapotException = exports.ExpectationFailedException = exports.RangeNotSatisfiableException = exports.UnsupportedMediaTypeException = exports.URITooLongException = exports.PayloadTooLargeException = exports.PreconditionFailedException = exports.LengthRequiredException = exports.GoneException = exports.ConflictException = exports.RequestTimeoutException = exports.ProxyAuthenticationRequiredException = exports.NotAcceptableException = exports.MethodNotAllowedException = exports.NotFoundException = exports.ForbiddenException = exports.PaymentRequiredException = exports.UnauthorizedException = exports.BadRequestException = exports.HttpException = void 0;
|
|
4
|
+
const base_adapter_exception_1 = require("./base-adapter.exception");
|
|
5
|
+
class HttpException extends base_adapter_exception_1.BaseAdapterException {
|
|
6
|
+
constructor(response, message, code, cause) {
|
|
7
|
+
super(message, code, cause);
|
|
8
|
+
this.name = 'HttpException';
|
|
9
|
+
this.response = response;
|
|
10
|
+
Object.setPrototypeOf(this, HttpException.prototype);
|
|
11
|
+
}
|
|
12
|
+
toJSON() {
|
|
13
|
+
return {
|
|
14
|
+
...super.toJSON(),
|
|
15
|
+
response: {
|
|
16
|
+
status: this.response.status,
|
|
17
|
+
data: this.response.data,
|
|
18
|
+
headers: this.response.headers,
|
|
19
|
+
...(this.response.requestContext && { request: this.response.requestContext }),
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
isClientError() {
|
|
24
|
+
return this.response.status >= 400 && this.response.status < 500;
|
|
25
|
+
}
|
|
26
|
+
isServerError() {
|
|
27
|
+
return this.response.status >= 500 && this.response.status < 600;
|
|
28
|
+
}
|
|
29
|
+
getRetryAfterMs() {
|
|
30
|
+
const headers = this.response.headers;
|
|
31
|
+
if (!headers)
|
|
32
|
+
return undefined;
|
|
33
|
+
const key = Object.keys(headers).find((k) => k.toLowerCase() === 'retry-after');
|
|
34
|
+
const headerValue = key ? headers[key] : undefined;
|
|
35
|
+
if (!headerValue)
|
|
36
|
+
return undefined;
|
|
37
|
+
const asSeconds = Number.parseInt(headerValue, 10);
|
|
38
|
+
if (!Number.isNaN(asSeconds)) {
|
|
39
|
+
return asSeconds * 1000;
|
|
40
|
+
}
|
|
41
|
+
const asDate = Date.parse(headerValue);
|
|
42
|
+
if (!Number.isNaN(asDate)) {
|
|
43
|
+
const delay = asDate - Date.now();
|
|
44
|
+
return Math.max(0, delay);
|
|
45
|
+
}
|
|
46
|
+
return undefined;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
exports.HttpException = HttpException;
|
|
50
|
+
class BadRequestException extends HttpException {
|
|
51
|
+
constructor(response, message = 'Bad Request', code, cause) {
|
|
52
|
+
super(response, message, code, cause);
|
|
53
|
+
this.name = 'BadRequestException';
|
|
54
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.BadRequestException = BadRequestException;
|
|
58
|
+
class UnauthorizedException extends HttpException {
|
|
59
|
+
constructor(response, message = 'Unauthorized', code, cause) {
|
|
60
|
+
super(response, message, code, cause);
|
|
61
|
+
this.name = 'UnauthorizedException';
|
|
62
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
66
|
+
class PaymentRequiredException extends HttpException {
|
|
67
|
+
constructor(response, message = 'Payment Required', code, cause) {
|
|
68
|
+
super(response, message, code, cause);
|
|
69
|
+
this.name = 'PaymentRequiredException';
|
|
70
|
+
Object.setPrototypeOf(this, PaymentRequiredException.prototype);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
exports.PaymentRequiredException = PaymentRequiredException;
|
|
74
|
+
class ForbiddenException extends HttpException {
|
|
75
|
+
constructor(response, message = 'Forbidden', code, cause) {
|
|
76
|
+
super(response, message, code, cause);
|
|
77
|
+
this.name = 'ForbiddenException';
|
|
78
|
+
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
exports.ForbiddenException = ForbiddenException;
|
|
82
|
+
class NotFoundException extends HttpException {
|
|
83
|
+
constructor(response, message = 'Not Found', code, cause) {
|
|
84
|
+
super(response, message, code, cause);
|
|
85
|
+
this.name = 'NotFoundException';
|
|
86
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.NotFoundException = NotFoundException;
|
|
90
|
+
class MethodNotAllowedException extends HttpException {
|
|
91
|
+
constructor(response, message = 'Method Not Allowed', code, cause) {
|
|
92
|
+
super(response, message, code, cause);
|
|
93
|
+
this.name = 'MethodNotAllowedException';
|
|
94
|
+
Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
exports.MethodNotAllowedException = MethodNotAllowedException;
|
|
98
|
+
class NotAcceptableException extends HttpException {
|
|
99
|
+
constructor(response, message = 'Not Acceptable', code, cause) {
|
|
100
|
+
super(response, message, code, cause);
|
|
101
|
+
this.name = 'NotAcceptableException';
|
|
102
|
+
Object.setPrototypeOf(this, NotAcceptableException.prototype);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
exports.NotAcceptableException = NotAcceptableException;
|
|
106
|
+
class ProxyAuthenticationRequiredException extends HttpException {
|
|
107
|
+
constructor(response, message = 'Proxy Authentication Required', code, cause) {
|
|
108
|
+
super(response, message, code, cause);
|
|
109
|
+
this.name = 'ProxyAuthenticationRequiredException';
|
|
110
|
+
Object.setPrototypeOf(this, ProxyAuthenticationRequiredException.prototype);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
exports.ProxyAuthenticationRequiredException = ProxyAuthenticationRequiredException;
|
|
114
|
+
class RequestTimeoutException extends HttpException {
|
|
115
|
+
constructor(response, message = 'Request Timeout', code, cause) {
|
|
116
|
+
super(response, message, code, cause);
|
|
117
|
+
this.name = 'RequestTimeoutException';
|
|
118
|
+
Object.setPrototypeOf(this, RequestTimeoutException.prototype);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
exports.RequestTimeoutException = RequestTimeoutException;
|
|
122
|
+
class ConflictException extends HttpException {
|
|
123
|
+
constructor(response, message = 'Conflict', code, cause) {
|
|
124
|
+
super(response, message, code, cause);
|
|
125
|
+
this.name = 'ConflictException';
|
|
126
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
exports.ConflictException = ConflictException;
|
|
130
|
+
class GoneException extends HttpException {
|
|
131
|
+
constructor(response, message = 'Gone', code, cause) {
|
|
132
|
+
super(response, message, code, cause);
|
|
133
|
+
this.name = 'GoneException';
|
|
134
|
+
Object.setPrototypeOf(this, GoneException.prototype);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
exports.GoneException = GoneException;
|
|
138
|
+
class LengthRequiredException extends HttpException {
|
|
139
|
+
constructor(response, message = 'Length Required', code, cause) {
|
|
140
|
+
super(response, message, code, cause);
|
|
141
|
+
this.name = 'LengthRequiredException';
|
|
142
|
+
Object.setPrototypeOf(this, LengthRequiredException.prototype);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
exports.LengthRequiredException = LengthRequiredException;
|
|
146
|
+
class PreconditionFailedException extends HttpException {
|
|
147
|
+
constructor(response, message = 'Precondition Failed', code, cause) {
|
|
148
|
+
super(response, message, code, cause);
|
|
149
|
+
this.name = 'PreconditionFailedException';
|
|
150
|
+
Object.setPrototypeOf(this, PreconditionFailedException.prototype);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
exports.PreconditionFailedException = PreconditionFailedException;
|
|
154
|
+
class PayloadTooLargeException extends HttpException {
|
|
155
|
+
constructor(response, message = 'Payload Too Large', code, cause) {
|
|
156
|
+
super(response, message, code, cause);
|
|
157
|
+
this.name = 'PayloadTooLargeException';
|
|
158
|
+
Object.setPrototypeOf(this, PayloadTooLargeException.prototype);
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
exports.PayloadTooLargeException = PayloadTooLargeException;
|
|
162
|
+
class URITooLongException extends HttpException {
|
|
163
|
+
constructor(response, message = 'URI Too Long', code, cause) {
|
|
164
|
+
super(response, message, code, cause);
|
|
165
|
+
this.name = 'URITooLongException';
|
|
166
|
+
Object.setPrototypeOf(this, URITooLongException.prototype);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
exports.URITooLongException = URITooLongException;
|
|
170
|
+
class UnsupportedMediaTypeException extends HttpException {
|
|
171
|
+
constructor(response, message = 'Unsupported Media Type', code, cause) {
|
|
172
|
+
super(response, message, code, cause);
|
|
173
|
+
this.name = 'UnsupportedMediaTypeException';
|
|
174
|
+
Object.setPrototypeOf(this, UnsupportedMediaTypeException.prototype);
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
exports.UnsupportedMediaTypeException = UnsupportedMediaTypeException;
|
|
178
|
+
class RangeNotSatisfiableException extends HttpException {
|
|
179
|
+
constructor(response, message = 'Range Not Satisfiable', code, cause) {
|
|
180
|
+
super(response, message, code, cause);
|
|
181
|
+
this.name = 'RangeNotSatisfiableException';
|
|
182
|
+
Object.setPrototypeOf(this, RangeNotSatisfiableException.prototype);
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
exports.RangeNotSatisfiableException = RangeNotSatisfiableException;
|
|
186
|
+
class ExpectationFailedException extends HttpException {
|
|
187
|
+
constructor(response, message = 'Expectation Failed', code, cause) {
|
|
188
|
+
super(response, message, code, cause);
|
|
189
|
+
this.name = 'ExpectationFailedException';
|
|
190
|
+
Object.setPrototypeOf(this, ExpectationFailedException.prototype);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
exports.ExpectationFailedException = ExpectationFailedException;
|
|
194
|
+
class ImATeapotException extends HttpException {
|
|
195
|
+
constructor(response, message = "I'm a teapot", code, cause) {
|
|
196
|
+
super(response, message, code, cause);
|
|
197
|
+
this.name = 'ImATeapotException';
|
|
198
|
+
Object.setPrototypeOf(this, ImATeapotException.prototype);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
exports.ImATeapotException = ImATeapotException;
|
|
202
|
+
class MisdirectedRequestException extends HttpException {
|
|
203
|
+
constructor(response, message = 'Misdirected Request', code, cause) {
|
|
204
|
+
super(response, message, code, cause);
|
|
205
|
+
this.name = 'MisdirectedRequestException';
|
|
206
|
+
Object.setPrototypeOf(this, MisdirectedRequestException.prototype);
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
exports.MisdirectedRequestException = MisdirectedRequestException;
|
|
210
|
+
class UnprocessableEntityException extends HttpException {
|
|
211
|
+
constructor(response, message = 'Unprocessable Entity', code, cause) {
|
|
212
|
+
super(response, message, code, cause);
|
|
213
|
+
this.name = 'UnprocessableEntityException';
|
|
214
|
+
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
218
|
+
class LockedException extends HttpException {
|
|
219
|
+
constructor(response, message = 'Locked', code, cause) {
|
|
220
|
+
super(response, message, code, cause);
|
|
221
|
+
this.name = 'LockedException';
|
|
222
|
+
Object.setPrototypeOf(this, LockedException.prototype);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
exports.LockedException = LockedException;
|
|
226
|
+
class FailedDependencyException extends HttpException {
|
|
227
|
+
constructor(response, message = 'Failed Dependency', code, cause) {
|
|
228
|
+
super(response, message, code, cause);
|
|
229
|
+
this.name = 'FailedDependencyException';
|
|
230
|
+
Object.setPrototypeOf(this, FailedDependencyException.prototype);
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
exports.FailedDependencyException = FailedDependencyException;
|
|
234
|
+
class TooEarlyException extends HttpException {
|
|
235
|
+
constructor(response, message = 'Too Early', code, cause) {
|
|
236
|
+
super(response, message, code, cause);
|
|
237
|
+
this.name = 'TooEarlyException';
|
|
238
|
+
Object.setPrototypeOf(this, TooEarlyException.prototype);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
exports.TooEarlyException = TooEarlyException;
|
|
242
|
+
class UpgradeRequiredException extends HttpException {
|
|
243
|
+
constructor(response, message = 'Upgrade Required', code, cause) {
|
|
244
|
+
super(response, message, code, cause);
|
|
245
|
+
this.name = 'UpgradeRequiredException';
|
|
246
|
+
Object.setPrototypeOf(this, UpgradeRequiredException.prototype);
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
exports.UpgradeRequiredException = UpgradeRequiredException;
|
|
250
|
+
class PreconditionRequiredException extends HttpException {
|
|
251
|
+
constructor(response, message = 'Precondition Required', code, cause) {
|
|
252
|
+
super(response, message, code, cause);
|
|
253
|
+
this.name = 'PreconditionRequiredException';
|
|
254
|
+
Object.setPrototypeOf(this, PreconditionRequiredException.prototype);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
exports.PreconditionRequiredException = PreconditionRequiredException;
|
|
258
|
+
class TooManyRequestsException extends HttpException {
|
|
259
|
+
constructor(response, message = 'Too Many Requests', code, cause) {
|
|
260
|
+
super(response, message, code, cause);
|
|
261
|
+
this.name = 'TooManyRequestsException';
|
|
262
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
263
|
+
}
|
|
264
|
+
isRetryable() {
|
|
265
|
+
return true;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
269
|
+
class RequestHeaderFieldsTooLargeException extends HttpException {
|
|
270
|
+
constructor(response, message = 'Request Header Fields Too Large', code, cause) {
|
|
271
|
+
super(response, message, code, cause);
|
|
272
|
+
this.name = 'RequestHeaderFieldsTooLargeException';
|
|
273
|
+
Object.setPrototypeOf(this, RequestHeaderFieldsTooLargeException.prototype);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
exports.RequestHeaderFieldsTooLargeException = RequestHeaderFieldsTooLargeException;
|
|
277
|
+
class UnavailableForLegalReasonsException extends HttpException {
|
|
278
|
+
constructor(response, message = 'Unavailable For Legal Reasons', code, cause) {
|
|
279
|
+
super(response, message, code, cause);
|
|
280
|
+
this.name = 'UnavailableForLegalReasonsException';
|
|
281
|
+
Object.setPrototypeOf(this, UnavailableForLegalReasonsException.prototype);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
exports.UnavailableForLegalReasonsException = UnavailableForLegalReasonsException;
|
|
285
|
+
class InternalServerErrorException extends HttpException {
|
|
286
|
+
constructor(response, message = 'Internal Server Error', code, cause) {
|
|
287
|
+
super(response, message, code, cause);
|
|
288
|
+
this.name = 'InternalServerErrorException';
|
|
289
|
+
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
exports.InternalServerErrorException = InternalServerErrorException;
|
|
293
|
+
class NotImplementedException extends HttpException {
|
|
294
|
+
constructor(response, message = 'Not Implemented', code, cause) {
|
|
295
|
+
super(response, message, code, cause);
|
|
296
|
+
this.name = 'NotImplementedException';
|
|
297
|
+
Object.setPrototypeOf(this, NotImplementedException.prototype);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
exports.NotImplementedException = NotImplementedException;
|
|
301
|
+
class BadGatewayException extends HttpException {
|
|
302
|
+
constructor(response, message = 'Bad Gateway', code, cause) {
|
|
303
|
+
super(response, message, code, cause);
|
|
304
|
+
this.name = 'BadGatewayException';
|
|
305
|
+
Object.setPrototypeOf(this, BadGatewayException.prototype);
|
|
306
|
+
}
|
|
307
|
+
isRetryable() {
|
|
308
|
+
return true;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
exports.BadGatewayException = BadGatewayException;
|
|
312
|
+
class ServiceUnavailableException extends HttpException {
|
|
313
|
+
constructor(response, message = 'Service Unavailable', code, cause) {
|
|
314
|
+
super(response, message, code, cause);
|
|
315
|
+
this.name = 'ServiceUnavailableException';
|
|
316
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
317
|
+
}
|
|
318
|
+
isRetryable() {
|
|
319
|
+
return true;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
323
|
+
class GatewayTimeoutException extends HttpException {
|
|
324
|
+
constructor(response, message = 'Gateway Timeout', code, cause) {
|
|
325
|
+
super(response, message, code, cause);
|
|
326
|
+
this.name = 'GatewayTimeoutException';
|
|
327
|
+
Object.setPrototypeOf(this, GatewayTimeoutException.prototype);
|
|
328
|
+
}
|
|
329
|
+
isRetryable() {
|
|
330
|
+
return true;
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
exports.GatewayTimeoutException = GatewayTimeoutException;
|
|
334
|
+
class HTTPVersionNotSupportedException extends HttpException {
|
|
335
|
+
constructor(response, message = 'HTTP Version Not Supported', code, cause) {
|
|
336
|
+
super(response, message, code, cause);
|
|
337
|
+
this.name = 'HTTPVersionNotSupportedException';
|
|
338
|
+
Object.setPrototypeOf(this, HTTPVersionNotSupportedException.prototype);
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
exports.HTTPVersionNotSupportedException = HTTPVersionNotSupportedException;
|
|
342
|
+
class VariantAlsoNegotiatesException extends HttpException {
|
|
343
|
+
constructor(response, message = 'Variant Also Negotiates', code, cause) {
|
|
344
|
+
super(response, message, code, cause);
|
|
345
|
+
this.name = 'VariantAlsoNegotiatesException';
|
|
346
|
+
Object.setPrototypeOf(this, VariantAlsoNegotiatesException.prototype);
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
exports.VariantAlsoNegotiatesException = VariantAlsoNegotiatesException;
|
|
350
|
+
class InsufficientStorageException extends HttpException {
|
|
351
|
+
constructor(response, message = 'Insufficient Storage', code, cause) {
|
|
352
|
+
super(response, message, code, cause);
|
|
353
|
+
this.name = 'InsufficientStorageException';
|
|
354
|
+
Object.setPrototypeOf(this, InsufficientStorageException.prototype);
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
exports.InsufficientStorageException = InsufficientStorageException;
|
|
358
|
+
class LoopDetectedException extends HttpException {
|
|
359
|
+
constructor(response, message = 'Loop Detected', code, cause) {
|
|
360
|
+
super(response, message, code, cause);
|
|
361
|
+
this.name = 'LoopDetectedException';
|
|
362
|
+
Object.setPrototypeOf(this, LoopDetectedException.prototype);
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
exports.LoopDetectedException = LoopDetectedException;
|
|
366
|
+
class NotExtendedException extends HttpException {
|
|
367
|
+
constructor(response, message = 'Not Extended', code, cause) {
|
|
368
|
+
super(response, message, code, cause);
|
|
369
|
+
this.name = 'NotExtendedException';
|
|
370
|
+
Object.setPrototypeOf(this, NotExtendedException.prototype);
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
exports.NotExtendedException = NotExtendedException;
|
|
374
|
+
class NetworkAuthenticationRequiredException extends HttpException {
|
|
375
|
+
constructor(response, message = 'Network Authentication Required', code, cause) {
|
|
376
|
+
super(response, message, code, cause);
|
|
377
|
+
this.name = 'NetworkAuthenticationRequiredException';
|
|
378
|
+
Object.setPrototypeOf(this, NetworkAuthenticationRequiredException.prototype);
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
exports.NetworkAuthenticationRequiredException = NetworkAuthenticationRequiredException;
|
|
382
|
+
//# sourceMappingURL=http-status.exceptions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http-status.exceptions.js","sourceRoot":"","sources":["../../src/exceptions/http-status.exceptions.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { NetworkException } from './network.exceptions';
|
|
2
|
+
import { RequestContext } from '../models/request-context';
|
|
3
|
+
export declare class NetworkExceptionFactory {
|
|
4
|
+
static createFromNativeError(error: unknown, requestContext?: RequestContext): NetworkException;
|
|
5
|
+
private static extractMessage;
|
|
6
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.NetworkExceptionFactory = void 0;
|
|
4
|
+
const network_exceptions_1 = require("./network.exceptions");
|
|
5
|
+
class NetworkExceptionFactory {
|
|
6
|
+
static createFromNativeError(error, requestContext) {
|
|
7
|
+
if (error instanceof Error) {
|
|
8
|
+
const code = 'code' in error ? String(error.code) : undefined;
|
|
9
|
+
if (error.name === 'AbortError' || code === 'ECONNABORTED' || code === 'ETIMEDOUT') {
|
|
10
|
+
return new network_exceptions_1.TimeoutException(error.message, code || 'ECONNABORTED', error, requestContext);
|
|
11
|
+
}
|
|
12
|
+
if (code === 'ECONNREFUSED') {
|
|
13
|
+
return new network_exceptions_1.ConnectionRefusedException(error.message, code, error, requestContext);
|
|
14
|
+
}
|
|
15
|
+
if (code === 'ECONNRESET') {
|
|
16
|
+
return new network_exceptions_1.SocketResetException(error.message, code, error, requestContext);
|
|
17
|
+
}
|
|
18
|
+
if (code === 'ENOTFOUND' || code === 'EAI_AGAIN') {
|
|
19
|
+
return new network_exceptions_1.DnsResolutionException(error.message, code, error, requestContext);
|
|
20
|
+
}
|
|
21
|
+
if (code === 'EHOSTUNREACH' || code === 'ENETUNREACH') {
|
|
22
|
+
return new network_exceptions_1.HostUnreachableException(error.message, code, error, requestContext);
|
|
23
|
+
}
|
|
24
|
+
return new network_exceptions_1.NetworkException(error.message, code, error, requestContext);
|
|
25
|
+
}
|
|
26
|
+
const message = this.extractMessage(error);
|
|
27
|
+
return new network_exceptions_1.NetworkException(message, undefined, undefined, requestContext);
|
|
28
|
+
}
|
|
29
|
+
static extractMessage(error) {
|
|
30
|
+
return (error?.message ??
|
|
31
|
+
(typeof error === 'string' ? error : 'Unknown Network Error'));
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.NetworkExceptionFactory = NetworkExceptionFactory;
|
|
35
|
+
//# sourceMappingURL=network-exception.factory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"network-exception.factory.js","sourceRoot":"","sources":["../../src/exceptions/network-exception.factory.ts"],"names":[],"mappings":";;;AAAA,6DAO8B;AAe9B,MAAa,uBAAuB;IAY3B,MAAM,CAAC,qBAAqB,CACjC,KAAc,EACd,cAA+B;QAE/B,IAAI,KAAK,YAAY,KAAK,EAAE,CAAC;YAC3B,MAAM,IAAI,GAAG,MAAM,IAAI,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAE9D,IAAI,KAAK,CAAC,IAAI,KAAK,YAAY,IAAI,IAAI,KAAK,cAAc,IAAI,IAAI,KAAK,WAAW,EAAE,CAAC;gBACnF,OAAO,IAAI,qCAAgB,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,IAAI,cAAc,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;YAC5F,CAAC;YAED,IAAI,IAAI,KAAK,cAAc,EAAE,CAAC;gBAC5B,OAAO,IAAI,+CAA0B,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;YACpF,CAAC;YAED,IAAI,IAAI,KAAK,YAAY,EAAE,CAAC;gBAC1B,OAAO,IAAI,yCAAoB,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;YAC9E,CAAC;YAED,IAAI,IAAI,KAAK,WAAW,IAAI,IAAI,KAAK,WAAW,EAAE,CAAC;gBACjD,OAAO,IAAI,2CAAsB,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;YAChF,CAAC;YAED,IAAI,IAAI,KAAK,cAAc,IAAI,IAAI,KAAK,aAAa,EAAE,CAAC;gBACtD,OAAO,IAAI,6CAAwB,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;YAClF,CAAC;YAED,OAAO,IAAI,qCAAgB,CAAC,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;QAC1E,CAAC;QAED,MAAM,OAAO,GAAG,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC;QAE3C,OAAO,IAAI,qCAAgB,CAAC,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,cAAc,CAAC,CAAC;IAC7E,CAAC;IAaO,MAAM,CAAC,cAAc,CAAC,KAAc;QAC1C,OAAO,CACJ,KAA8B,EAAE,OAAO;YACxC,CAAC,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,uBAAuB,CAAC,CAC9D,CAAC;IACJ,CAAC;CACF;AAhED,0DAgEC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { BaseAdapterException } from './base-adapter.exception';
|
|
2
|
+
import { RequestContext } from '../models/request-context';
|
|
3
|
+
export declare class NetworkException extends BaseAdapterException {
|
|
4
|
+
readonly requestContext?: RequestContext;
|
|
5
|
+
constructor(message?: string, code?: string, cause?: unknown, requestContext?: RequestContext);
|
|
6
|
+
toJSON(): Record<string, unknown>;
|
|
7
|
+
}
|
|
8
|
+
export declare class ConnectionRefusedException extends NetworkException {
|
|
9
|
+
constructor(message?: string, code?: string, cause?: unknown, requestContext?: RequestContext);
|
|
10
|
+
isRetryable(): boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class DnsResolutionException extends NetworkException {
|
|
13
|
+
constructor(message?: string, code?: string, cause?: unknown, requestContext?: RequestContext);
|
|
14
|
+
}
|
|
15
|
+
export declare class TimeoutException extends NetworkException {
|
|
16
|
+
constructor(message?: string, code?: string, cause?: unknown, requestContext?: RequestContext);
|
|
17
|
+
isRetryable(): boolean;
|
|
18
|
+
}
|
|
19
|
+
export declare class SocketResetException extends NetworkException {
|
|
20
|
+
constructor(message?: string, code?: string, cause?: unknown, requestContext?: RequestContext);
|
|
21
|
+
isRetryable(): boolean;
|
|
22
|
+
}
|
|
23
|
+
export declare class HostUnreachableException extends NetworkException {
|
|
24
|
+
constructor(message?: string, code?: string, cause?: unknown, requestContext?: RequestContext);
|
|
25
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HostUnreachableException = exports.SocketResetException = exports.TimeoutException = exports.DnsResolutionException = exports.ConnectionRefusedException = exports.NetworkException = void 0;
|
|
4
|
+
const base_adapter_exception_1 = require("./base-adapter.exception");
|
|
5
|
+
class NetworkException extends base_adapter_exception_1.BaseAdapterException {
|
|
6
|
+
constructor(message = 'Network Error', code, cause, requestContext) {
|
|
7
|
+
super(message, code, cause);
|
|
8
|
+
this.name = 'NetworkException';
|
|
9
|
+
this.requestContext = requestContext;
|
|
10
|
+
Object.setPrototypeOf(this, NetworkException.prototype);
|
|
11
|
+
}
|
|
12
|
+
toJSON() {
|
|
13
|
+
return {
|
|
14
|
+
...super.toJSON(),
|
|
15
|
+
...(this.requestContext && { request: this.requestContext }),
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.NetworkException = NetworkException;
|
|
20
|
+
class ConnectionRefusedException extends NetworkException {
|
|
21
|
+
constructor(message = 'Connection Refused', code = 'ECONNREFUSED', cause, requestContext) {
|
|
22
|
+
super(message, code, cause, requestContext);
|
|
23
|
+
this.name = 'ConnectionRefusedException';
|
|
24
|
+
Object.setPrototypeOf(this, ConnectionRefusedException.prototype);
|
|
25
|
+
}
|
|
26
|
+
isRetryable() {
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
exports.ConnectionRefusedException = ConnectionRefusedException;
|
|
31
|
+
class DnsResolutionException extends NetworkException {
|
|
32
|
+
constructor(message = 'DNS Resolution Failed', code = 'ENOTFOUND', cause, requestContext) {
|
|
33
|
+
super(message, code, cause, requestContext);
|
|
34
|
+
this.name = 'DnsResolutionException';
|
|
35
|
+
Object.setPrototypeOf(this, DnsResolutionException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
exports.DnsResolutionException = DnsResolutionException;
|
|
39
|
+
class TimeoutException extends NetworkException {
|
|
40
|
+
constructor(message = 'Request Timeout', code = 'ECONNABORTED', cause, requestContext) {
|
|
41
|
+
super(message, code, cause, requestContext);
|
|
42
|
+
this.name = 'TimeoutException';
|
|
43
|
+
Object.setPrototypeOf(this, TimeoutException.prototype);
|
|
44
|
+
}
|
|
45
|
+
isRetryable() {
|
|
46
|
+
return true;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
exports.TimeoutException = TimeoutException;
|
|
50
|
+
class SocketResetException extends NetworkException {
|
|
51
|
+
constructor(message = 'Connection Reset', code = 'ECONNRESET', cause, requestContext) {
|
|
52
|
+
super(message, code, cause, requestContext);
|
|
53
|
+
this.name = 'SocketResetException';
|
|
54
|
+
Object.setPrototypeOf(this, SocketResetException.prototype);
|
|
55
|
+
}
|
|
56
|
+
isRetryable() {
|
|
57
|
+
return true;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
exports.SocketResetException = SocketResetException;
|
|
61
|
+
class HostUnreachableException extends NetworkException {
|
|
62
|
+
constructor(message = 'Host Unreachable', code = 'EHOSTUNREACH', cause, requestContext) {
|
|
63
|
+
super(message, code, cause, requestContext);
|
|
64
|
+
this.name = 'HostUnreachableException';
|
|
65
|
+
Object.setPrototypeOf(this, HostUnreachableException.prototype);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
exports.HostUnreachableException = HostUnreachableException;
|
|
69
|
+
//# sourceMappingURL=network.exceptions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"network.exceptions.js","sourceRoot":"","sources":["../../src/exceptions/network.exceptions.ts"],"names":[],"mappings":";;;AAAA,qEAAgE;AAGhE,MAAa,gBAAiB,SAAQ,6CAAoB;IAGxD,YACE,UAAkB,eAAe,EACjC,IAAa,EACb,KAAe,EACf,cAA+B;QAE/B,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;QAC5B,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC;QAC/B,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,gBAAgB,CAAC,SAAS,CAAC,CAAC;IAC1D,CAAC;IAEe,MAAM;QACpB,OAAO;YACL,GAAG,KAAK,CAAC,MAAM,EAAE;YACjB,GAAG,CAAC,IAAI,CAAC,cAAc,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,cAAc,EAAE,CAAC;SAC7D,CAAC;IACJ,CAAC;CACF;AArBD,4CAqBC;AAED,MAAa,0BAA2B,SAAQ,gBAAgB;IAC9D,YACE,UAAkB,oBAAoB,EACtC,OAAe,cAAc,EAC7B,KAAe,EACf,cAA+B;QAE/B,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;QAC5C,IAAI,CAAC,IAAI,GAAG,4BAA4B,CAAC;QACzC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,0BAA0B,CAAC,SAAS,CAAC,CAAC;IACpE,CAAC;IAEe,WAAW;QACzB,OAAO,IAAI,CAAC;IACd,CAAC;CACF;AAfD,gEAeC;AAED,MAAa,sBAAuB,SAAQ,gBAAgB;IAC1D,YACE,UAAkB,uBAAuB,EACzC,OAAe,WAAW,EAC1B,KAAe,EACf,cAA+B;QAE/B,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;QAC5C,IAAI,CAAC,IAAI,GAAG,wBAAwB,CAAC;QACrC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,sBAAsB,CAAC,SAAS,CAAC,CAAC;IAChE,CAAC;CACF;AAXD,wDAWC;AAED,MAAa,gBAAiB,SAAQ,gBAAgB;IACpD,YACE,UAAkB,iBAAiB,EACnC,OAAe,cAAc,EAC7B,KAAe,EACf,cAA+B;QAE/B,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;QAC5C,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC;QAC/B,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,gBAAgB,CAAC,SAAS,CAAC,CAAC;IAC1D,CAAC;IAEe,WAAW;QACzB,OAAO,IAAI,CAAC;IACd,CAAC;CACF;AAfD,4CAeC;AAED,MAAa,oBAAqB,SAAQ,gBAAgB;IACxD,YACE,UAAkB,kBAAkB,EACpC,OAAe,YAAY,EAC3B,KAAe,EACf,cAA+B;QAE/B,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;QAC5C,IAAI,CAAC,IAAI,GAAG,sBAAsB,CAAC;QACnC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,oBAAoB,CAAC,SAAS,CAAC,CAAC;IAC9D,CAAC;IAEe,WAAW;QACzB,OAAO,IAAI,CAAC;IACd,CAAC;CACF;AAfD,oDAeC;AAED,MAAa,wBAAyB,SAAQ,gBAAgB;IAC5D,YACE,UAAkB,kBAAkB,EACpC,OAAe,cAAc,EAC7B,KAAe,EACf,cAA+B;QAE/B,KAAK,CAAC,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;QAC5C,IAAI,CAAC,IAAI,GAAG,0BAA0B,CAAC;QACvC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,wBAAwB,CAAC,SAAS,CAAC,CAAC;IAClE,CAAC;CACF;AAXD,4DAWC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseAdapterException } from './base-adapter.exception';
|
|
2
|
+
import { RequestContext } from '../models/request-context';
|
|
3
|
+
export declare class UnknownException extends BaseAdapterException {
|
|
4
|
+
readonly requestContext?: RequestContext;
|
|
5
|
+
constructor(message?: string, cause?: unknown, requestContext?: RequestContext);
|
|
6
|
+
toJSON(): Record<string, unknown>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UnknownException = void 0;
|
|
4
|
+
const base_adapter_exception_1 = require("./base-adapter.exception");
|
|
5
|
+
class UnknownException extends base_adapter_exception_1.BaseAdapterException {
|
|
6
|
+
constructor(message = 'An unknown error occurred within the adapter', cause, requestContext) {
|
|
7
|
+
super(message, undefined, cause);
|
|
8
|
+
this.name = 'UnknownException';
|
|
9
|
+
this.requestContext = requestContext;
|
|
10
|
+
Object.setPrototypeOf(this, UnknownException.prototype);
|
|
11
|
+
}
|
|
12
|
+
toJSON() {
|
|
13
|
+
return {
|
|
14
|
+
...super.toJSON(),
|
|
15
|
+
...(this.requestContext && { request: this.requestContext }),
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.UnknownException = UnknownException;
|
|
20
|
+
//# sourceMappingURL=unknown.exception.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"unknown.exception.js","sourceRoot":"","sources":["../../src/exceptions/unknown.exception.ts"],"names":[],"mappings":";;;AAAA,qEAAgE;AAOhE,MAAa,gBAAiB,SAAQ,6CAAoB;IAGxD,YACE,UAAkB,8CAA8C,EAChE,KAAe,EACf,cAA+B;QAE/B,KAAK,CAAC,OAAO,EAAE,SAAS,EAAE,KAAK,CAAC,CAAC;QACjC,IAAI,CAAC,IAAI,GAAG,kBAAkB,CAAC;QAC/B,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,MAAM,CAAC,cAAc,CAAC,IAAI,EAAE,gBAAgB,CAAC,SAAS,CAAC,CAAC;IAC1D,CAAC;IAEe,MAAM;QACpB,OAAO;YACL,GAAG,KAAK,CAAC,MAAM,EAAE;YACjB,GAAG,CAAC,IAAI,CAAC,cAAc,IAAI,EAAE,OAAO,EAAE,IAAI,CAAC,cAAc,EAAE,CAAC;SAC7D,CAAC;IACJ,CAAC;CACF;AApBD,4CAoBC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from './builders/request.builder';
|
|
|
4
4
|
export * from './models/request';
|
|
5
5
|
export * from './models/response';
|
|
6
6
|
export * from './models/request-options';
|
|
7
|
+
export * from './models/request-context';
|
|
7
8
|
export * from './contracts/http-interceptor.contract';
|
|
8
9
|
export * from './contracts/retry-policy.contract';
|
|
9
10
|
export * from './resilience/retry.policies';
|
|
@@ -12,5 +13,12 @@ export * from './resilience/circuit-breaker/circuit-breaker-options';
|
|
|
12
13
|
export * from './resilience/circuit-breaker/circuit-breaker';
|
|
13
14
|
export * from './common/enums/http-method.enum';
|
|
14
15
|
export * from './common/types/http.types';
|
|
15
|
-
export * from './exceptions/http.exception';
|
|
16
16
|
export * from './exceptions/circuit-breaker-open.exception';
|
|
17
|
+
export * from './exceptions/base-adapter.exception';
|
|
18
|
+
export * from './exceptions/http-status.exceptions';
|
|
19
|
+
export * from './exceptions/http-exception.factory';
|
|
20
|
+
export * from './exceptions/network.exceptions';
|
|
21
|
+
export * from './exceptions/network-exception.factory';
|
|
22
|
+
export * from './exceptions/unknown.exception';
|
|
23
|
+
export * from './exceptions/exception.guards';
|
|
24
|
+
export * from './core/error.converter';
|
package/dist/index.js
CHANGED
|
@@ -20,6 +20,7 @@ __exportStar(require("./builders/request.builder"), exports);
|
|
|
20
20
|
__exportStar(require("./models/request"), exports);
|
|
21
21
|
__exportStar(require("./models/response"), exports);
|
|
22
22
|
__exportStar(require("./models/request-options"), exports);
|
|
23
|
+
__exportStar(require("./models/request-context"), exports);
|
|
23
24
|
__exportStar(require("./contracts/http-interceptor.contract"), exports);
|
|
24
25
|
__exportStar(require("./contracts/retry-policy.contract"), exports);
|
|
25
26
|
__exportStar(require("./resilience/retry.policies"), exports);
|
|
@@ -28,6 +29,13 @@ __exportStar(require("./resilience/circuit-breaker/circuit-breaker-options"), ex
|
|
|
28
29
|
__exportStar(require("./resilience/circuit-breaker/circuit-breaker"), exports);
|
|
29
30
|
__exportStar(require("./common/enums/http-method.enum"), exports);
|
|
30
31
|
__exportStar(require("./common/types/http.types"), exports);
|
|
31
|
-
__exportStar(require("./exceptions/http.exception"), exports);
|
|
32
32
|
__exportStar(require("./exceptions/circuit-breaker-open.exception"), exports);
|
|
33
|
+
__exportStar(require("./exceptions/base-adapter.exception"), exports);
|
|
34
|
+
__exportStar(require("./exceptions/http-status.exceptions"), exports);
|
|
35
|
+
__exportStar(require("./exceptions/http-exception.factory"), exports);
|
|
36
|
+
__exportStar(require("./exceptions/network.exceptions"), exports);
|
|
37
|
+
__exportStar(require("./exceptions/network-exception.factory"), exports);
|
|
38
|
+
__exportStar(require("./exceptions/unknown.exception"), exports);
|
|
39
|
+
__exportStar(require("./exceptions/exception.guards"), exports);
|
|
40
|
+
__exportStar(require("./core/error.converter"), exports);
|
|
33
41
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,sDAAoC;AACpC,6DAA2C;AAG3C,6DAA2C;AAG3C,mDAAiC;AACjC,oDAAkC;AAClC,2DAAyC;AAGzC,wEAAsD;AACtD,oEAAkD;AAGlD,8DAA4C;AAC5C,kFAAgE;AAChE,uFAAqE;AACrE,+EAA6D;AAG7D,kEAAgD;AAChD,4DAA0C;AAG1C,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AACA,sDAAoC;AACpC,6DAA2C;AAG3C,6DAA2C;AAG3C,mDAAiC;AACjC,oDAAkC;AAClC,2DAAyC;AACzC,2DAAyC;AAGzC,wEAAsD;AACtD,oEAAkD;AAGlD,8DAA4C;AAC5C,kFAAgE;AAChE,uFAAqE;AACrE,+EAA6D;AAG7D,kEAAgD;AAChD,4DAA0C;AAG1C,8EAA4D;AAC5D,sEAAoD;AACpD,sEAAoD;AACpD,sEAAoD;AACpD,kEAAgD;AAChD,yEAAuD;AACvD,iEAA+C;AAC/C,gEAA8C;AAC9C,yDAAuC"}
|