-
Notifications
You must be signed in to change notification settings - Fork 757
/
Errors.d.ts
280 lines (249 loc) · 9.48 KB
/
Errors.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
declare module 'stripe' {
namespace Stripe {
// rawErrorTypeEnum: The beginning of the section generated from our OpenAPI spec
export type RawErrorType =
| 'card_error'
| 'invalid_request_error'
| 'api_error'
| 'idempotency_error'
| 'rate_limit_error'
| 'authentication_error'
| 'invalid_grant'
| 'temporary_session_expired';
// rawErrorTypeEnum: The end of the section generated from our OpenAPI spec
export type StripeRawError = {
message?: string;
userMessage?: string;
type: RawErrorType;
headers?: {[header: string]: string};
statusCode?: number;
requestId?: string;
code?: string;
doc_code?: string;
decline_code?: string;
param?: string;
detail?: string;
charge?: string;
payment_intent?: Stripe.PaymentIntent;
payment_method?: Stripe.PaymentMethod;
setup_intent?: Stripe.SetupIntent;
source?: Stripe.Source;
};
namespace errors {
/** @deprecated Not for external use. */
function generate(
rawError: StripeRawError & {type: 'card_error'}
): StripeCardError;
/** @deprecated Not for external use. */
function generate(
rawError: StripeRawError & {type: 'invalid_request_error'}
): StripeInvalidRequestError;
/** @deprecated Not for external use. */
function generate(
rawError: StripeRawError & {type: 'api_error'}
): StripeAPIError;
/** @deprecated Not for external use. */
function generate(
rawError: StripeRawError & {type: 'authentication_error'}
): StripeAuthenticationError;
/** @deprecated Not for external use. */
function generate(
rawError: StripeRawError & {type: 'rate_limit_error'}
): StripeRateLimitError;
/** @deprecated Not for external use. */
function generate(
rawError: StripeRawError & {type: 'idempotency_error'}
): StripeIdempotencyError;
/** @deprecated Not for external use. */
function generate(
rawError: StripeRawError & {type: 'invalid_grant'}
): StripeInvalidGrantError;
/** @deprecated Not for external use. */
function generate(
rawError: StripeRawError & {type: RawErrorType}
): StripeError;
class StripeError extends Error {
constructor(rawError: StripeRawError);
/** @deprecated Not for external use. */
static generate(
rawError: StripeRawError & {type: 'card_error'}
): StripeCardError;
/** @deprecated Not for external use. */
static generate(
rawError: StripeRawError & {type: 'invalid_request_error'}
): StripeInvalidRequestError;
/** @deprecated Not for external use. */
static generate(
rawError: StripeRawError & {type: 'api_error'}
): StripeAPIError;
/** @deprecated Not for external use. */
static generate(
rawError: StripeRawError & {type: 'authentication_error'}
): StripeAuthenticationError;
/** @deprecated Not for external use. */
static generate(
rawError: StripeRawError & {type: 'rate_limit_error'}
): StripeRateLimitError;
/** @deprecated Not for external use. */
static generate(
rawError: StripeRawError & {type: 'idempotency_error'}
): StripeIdempotencyError;
/** @deprecated Not for external use. */
static generate(
rawError: StripeRawError & {type: 'invalid_grant'}
): StripeInvalidGrantError;
/** @deprecated Not for external use. */
static generate(
rawError: StripeRawError & {type: RawErrorType}
): StripeError;
/**
* A human-readable message giving more details about the error. For card errors, these messages can
* be shown to your users.
*/
readonly message: string;
// errorClassNameEnum: The beginning of the section generated from our OpenAPI spec
readonly type:
| 'StripeError'
| 'StripeCardError'
| 'StripeInvalidRequestError'
| 'StripeAPIError'
| 'StripeAuthenticationError'
| 'StripePermissionError'
| 'StripeRateLimitError'
| 'StripeConnectionError'
| 'StripeSignatureVerificationError'
| 'StripeIdempotencyError'
| 'StripeInvalidGrantError'
| 'TemporarySessionExpiredError';
// errorClassNameEnum: The end of the section generated from our OpenAPI spec
/**
* See the "error types" section at https://stripe.com/docs/api/errors
*/
readonly rawType: RawErrorType;
/**
* For card errors, a short string describing the kind of card error that occurred.
*
* @docs https://stripe.com/docs/error-codes
*/
readonly code?: string;
/**
* A URL to more information about the error code reported.
*
* @docs https://stripe.com/docs/error-codes
*/
readonly doc_url?: string;
/**
* Typically a 4xx or 5xx.
*/
readonly statusCode?: number;
readonly raw: unknown;
readonly headers: {
[key: string]: string;
};
readonly requestId: string;
/**
* The parameter the error relates to if the error is parameter-specific. You can use this to display a
* message near the correct form field, for example.
*/
readonly param?: string;
readonly charge?: string;
readonly decline_code?: string;
readonly payment_intent?: PaymentIntent;
readonly payment_method?: PaymentMethod;
readonly payment_method_type?: string;
readonly setup_intent?: SetupIntent;
readonly source?: Source;
}
/**
* Card errors are the most common type of error you should expect to handle.
* They result when the user enters a card that can't be charged for some reason.
*/
class StripeCardError extends StripeError {
readonly type: 'StripeCardError';
readonly rawType: 'card_error';
/**
* @docs https://stripe.com/docs/declines/codes
*/
readonly decline_code: string;
}
/**
* Invalid request errors arise when your request has invalid parameters.
*/
class StripeInvalidRequestError extends StripeError {
readonly type: 'StripeInvalidRequestError';
readonly rawType: 'invalid_request_error';
}
/**
* API errors cover any other type of problem (e.g., a temporary problem with Stripe's servers),
* and are extremely uncommon.
*
* It could also be raised in the case that a new error has been introduced in the API,
* but this version of the library doesn't know how to handle it.
*/
class StripeAPIError extends StripeError {
readonly type: 'StripeAPIError';
readonly rawType: 'api_error';
}
/**
* Failure to properly authenticate yourself in the request.
*/
class StripeAuthenticationError extends StripeError {
readonly type: 'StripeAuthenticationError';
readonly rawType: 'authentication_error';
}
/**
* Access was attempted on a resource that wasn't allowed.
*/
class StripePermissionError extends StripeError {
readonly type: 'StripePermissionError';
}
/**
* Too many requests hit the API too quickly.
* @docs https://stripe.com/docs/rate-limits
*/
class StripeRateLimitError extends StripeError {
readonly type: 'StripeRateLimitError';
readonly rawType: 'rate_limit_error';
}
/**
* The library cannot connect to Stripe.
* This can happen for a variety of reasons,
* such as loss of network connectivity or a bad TLS certificate.
*/
class StripeConnectionError extends StripeError {
readonly type: 'StripeConnectionError';
}
/**
* The signature verification for a webhook failed.
* @docs https://stripe.com/docs/webhooks/signatures
*/
class StripeSignatureVerificationError extends StripeError {
readonly type: 'StripeSignatureVerificationError';
}
/**
* Idempotency errors occur when an `Idempotency-Key` is re-used on a request that does not match the first request's API endpoint and parameters.
* @docs https://stripe.com/docs/api/idempotent_requests?lang=node
*/
class StripeIdempotencyError extends StripeError {
readonly type: 'StripeIdempotencyError';
readonly rawType: 'idempotency_error';
}
/**
* InvalidGrantError is raised when a specified code doesn't exist, is
* expired, has been used, or doesn't belong to you; a refresh token doesn't
* exist, or doesn't belong to you; or if an API key's mode (live or test)
* doesn't match the mode of a code or refresh token.
*/
class StripeInvalidGrantError extends StripeError {
readonly type: 'StripeInvalidGrantError';
readonly rawType: 'invalid_grant';
}
// errorClassDefinitions: The beginning of the section generated from our OpenAPI spec
export class TemporarySessionExpiredError extends StripeError {
readonly type: 'TemporarySessionExpiredError';
readonly rawType: 'temporary_session_expired';
}
// errorClassDefinitions: The end of the section generated from our OpenAPI spec
}
}
}