-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClient.ts
692 lines (649 loc) · 30.3 KB
/
Client.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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as environments from "../../../../environments";
import * as core from "../../../../core";
import * as Stripe from "../../../index";
import urlJoin from "url-join";
import * as errors from "../../../../errors/index";
export declare namespace Subscription {
export interface Options {
environment?: core.Supplier<environments.StripeEnvironment | string>;
/** Specify a custom URL to connect the client to. */
baseUrl?: core.Supplier<string>;
token: core.Supplier<core.BearerToken>;
}
export interface RequestOptions {
/** The maximum time to wait for a response in seconds. */
timeoutInSeconds?: number;
/** The number of times to retry the request. Defaults to 2. */
maxRetries?: number;
/** A hook to abort the request. */
abortSignal?: AbortSignal;
/** Additional headers to include in the request. */
headers?: Record<string, string>;
}
}
export class Subscription {
constructor(protected readonly _options: Subscription.Options) {}
/**
* <p>By default, returns a list of subscriptions that have not been canceled. In order to list canceled subscriptions, specify <code>status=canceled</code>.</p>
*
* @param {Stripe.SubscriptionListRequest} request
* @param {Subscription.RequestOptions} requestOptions - Request-specific configuration.
*
* @example
* await client.subscription.list()
*/
public async list(
request: Stripe.SubscriptionListRequest = {},
requestOptions?: Subscription.RequestOptions,
): Promise<Stripe.SubscriptionListResponse> {
const {
collection_method: collectionMethod,
customer,
ending_before: endingBefore,
expand,
limit,
plan,
price,
starting_after: startingAfter,
status,
test_clock: testClock,
} = request;
const _queryParams: Record<string, string | string[] | object | object[] | null> = {};
if (collectionMethod != null) {
_queryParams["collection_method"] = collectionMethod;
}
if (customer != null) {
_queryParams["customer"] = customer;
}
if (endingBefore != null) {
_queryParams["ending_before"] = endingBefore;
}
if (expand != null) {
if (Array.isArray(expand)) {
_queryParams["expand"] = expand.map((item) => item);
} else {
_queryParams["expand"] = expand;
}
}
if (limit != null) {
_queryParams["limit"] = limit.toString();
}
if (plan != null) {
_queryParams["plan"] = plan;
}
if (price != null) {
_queryParams["price"] = price;
}
if (startingAfter != null) {
_queryParams["starting_after"] = startingAfter;
}
if (status != null) {
_queryParams["status"] = status;
}
if (testClock != null) {
_queryParams["test_clock"] = testClock;
}
const _response = await core.fetcher({
url: urlJoin(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.StripeEnvironment.Default,
"v1/subscriptions",
),
method: "GET",
headers: {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@fern-api/stripe",
"X-Fern-SDK-Version": "1.0.1",
"User-Agent": "@fern-api/stripe/1.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
},
contentType: "application/json",
queryParameters: _queryParams,
requestType: "json",
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
maxRetries: requestOptions?.maxRetries,
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return _response.body as Stripe.SubscriptionListResponse;
}
if (_response.error.reason === "status-code") {
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.body,
});
}
switch (_response.error.reason) {
case "non-json":
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.rawBody,
});
case "timeout":
throw new errors.StripeTimeoutError("Timeout exceeded when calling GET /v1/subscriptions.");
case "unknown":
throw new errors.StripeError({
message: _response.error.errorMessage,
});
}
}
/**
* <p>Creates a new subscription on an existing customer. Each customer can have up to 500 active or scheduled subscriptions.</p>
*
* <p>When you create a subscription with <code>collection_method=charge_automatically</code>, the first invoice is finalized as part of the request.
* The <code>payment_behavior</code> parameter determines the exact behavior of the initial payment.</p>
*
* <p>To start subscriptions where the first invoice always begins in a <code>draft</code> status, use <a href="/docs/billing/subscriptions/subscription-schedules#managing">subscription schedules</a> instead.
* Schedules provide the flexibility to model more complex billing configurations that change over time.</p>
*
* @param {Stripe.SubscriptionCreateRequest} request
* @param {Subscription.RequestOptions} requestOptions - Request-specific configuration.
*
* @example
* await client.subscription.create({
* customer: "customer"
* })
*/
public async create(
request: Stripe.SubscriptionCreateRequest,
requestOptions?: Subscription.RequestOptions,
): Promise<Stripe.Subscription> {
const _response = await core.fetcher({
url: urlJoin(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.StripeEnvironment.Default,
"v1/subscriptions",
),
method: "POST",
headers: {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@fern-api/stripe",
"X-Fern-SDK-Version": "1.0.1",
"User-Agent": "@fern-api/stripe/1.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
},
contentType: "application/x-www-form-urlencoded",
requestType: "json",
body: request,
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
maxRetries: requestOptions?.maxRetries,
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return _response.body as Stripe.Subscription;
}
if (_response.error.reason === "status-code") {
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.body,
});
}
switch (_response.error.reason) {
case "non-json":
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.rawBody,
});
case "timeout":
throw new errors.StripeTimeoutError("Timeout exceeded when calling POST /v1/subscriptions.");
case "unknown":
throw new errors.StripeError({
message: _response.error.errorMessage,
});
}
}
/**
* <p>Search for subscriptions you’ve previously created using Stripe’s <a href="/docs/search#search-query-language">Search Query Language</a>.
* Don’t use search in read-after-write flows where strict consistency is necessary. Under normal operating
* conditions, data is searchable in less than a minute. Occasionally, propagation of new or updated data can be up
* to an hour behind during outages. Search functionality is not available to merchants in India.</p>
*
* @param {Stripe.SubscriptionSearchRequest} request
* @param {Subscription.RequestOptions} requestOptions - Request-specific configuration.
*
* @example
* await client.subscription.search({
* query: "query"
* })
*/
public async search(
request: Stripe.SubscriptionSearchRequest,
requestOptions?: Subscription.RequestOptions,
): Promise<Stripe.SubscriptionSearchResponse> {
const { expand, limit, page, query } = request;
const _queryParams: Record<string, string | string[] | object | object[] | null> = {};
if (expand != null) {
if (Array.isArray(expand)) {
_queryParams["expand"] = expand.map((item) => item);
} else {
_queryParams["expand"] = expand;
}
}
if (limit != null) {
_queryParams["limit"] = limit.toString();
}
if (page != null) {
_queryParams["page"] = page;
}
_queryParams["query"] = query;
const _response = await core.fetcher({
url: urlJoin(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.StripeEnvironment.Default,
"v1/subscriptions/search",
),
method: "GET",
headers: {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@fern-api/stripe",
"X-Fern-SDK-Version": "1.0.1",
"User-Agent": "@fern-api/stripe/1.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
},
contentType: "application/json",
queryParameters: _queryParams,
requestType: "json",
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
maxRetries: requestOptions?.maxRetries,
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return _response.body as Stripe.SubscriptionSearchResponse;
}
if (_response.error.reason === "status-code") {
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.body,
});
}
switch (_response.error.reason) {
case "non-json":
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.rawBody,
});
case "timeout":
throw new errors.StripeTimeoutError("Timeout exceeded when calling GET /v1/subscriptions/search.");
case "unknown":
throw new errors.StripeError({
message: _response.error.errorMessage,
});
}
}
/**
* <p>Retrieves the subscription with the given ID.</p>
*
* @param {string} subscriptionExposedId
* @param {Stripe.SubscriptionRetrieveRequest} request
* @param {Subscription.RequestOptions} requestOptions - Request-specific configuration.
*
* @example
* await client.subscription.retrieve("subscription_exposed_id")
*/
public async retrieve(
subscriptionExposedId: string,
request: Stripe.SubscriptionRetrieveRequest = {},
requestOptions?: Subscription.RequestOptions,
): Promise<Stripe.Subscription> {
const { expand } = request;
const _queryParams: Record<string, string | string[] | object | object[] | null> = {};
if (expand != null) {
if (Array.isArray(expand)) {
_queryParams["expand"] = expand.map((item) => item);
} else {
_queryParams["expand"] = expand;
}
}
const _response = await core.fetcher({
url: urlJoin(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.StripeEnvironment.Default,
`v1/subscriptions/${encodeURIComponent(subscriptionExposedId)}`,
),
method: "GET",
headers: {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@fern-api/stripe",
"X-Fern-SDK-Version": "1.0.1",
"User-Agent": "@fern-api/stripe/1.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
},
contentType: "application/json",
queryParameters: _queryParams,
requestType: "json",
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
maxRetries: requestOptions?.maxRetries,
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return _response.body as Stripe.Subscription;
}
if (_response.error.reason === "status-code") {
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.body,
});
}
switch (_response.error.reason) {
case "non-json":
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.rawBody,
});
case "timeout":
throw new errors.StripeTimeoutError(
"Timeout exceeded when calling GET /v1/subscriptions/{subscription_exposed_id}.",
);
case "unknown":
throw new errors.StripeError({
message: _response.error.errorMessage,
});
}
}
/**
* <p>Updates an existing subscription to match the specified parameters.
* When changing prices or quantities, we optionally prorate the price we charge next month to make up for any price changes.
* To preview how the proration is calculated, use the <a href="/docs/api/invoices/create_preview">create preview</a> endpoint.</p>
*
* <p>By default, we prorate subscription changes. For example, if a customer signs up on May 1 for a <currency>100</currency> price, they’ll be billed <currency>100</currency> immediately. If on May 15 they switch to a <currency>200</currency> price, then on June 1 they’ll be billed <currency>250</currency> (<currency>200</currency> for a renewal of her subscription, plus a <currency>50</currency> prorating adjustment for half of the previous month’s <currency>100</currency> difference). Similarly, a downgrade generates a credit that is applied to the next invoice. We also prorate when you make quantity changes.</p>
*
* <p>Switching prices does not normally change the billing date or generate an immediate charge unless:</p>
*
* <ul>
* <li>The billing interval is changed (for example, from monthly to yearly).</li>
* <li>The subscription moves from free to paid.</li>
* <li>A trial starts or ends.</li>
* </ul>
*
* <p>In these cases, we apply a credit for the unused time on the previous price, immediately charge the customer using the new price, and reset the billing date. Learn about how <a href="/docs/billing/subscriptions/upgrade-downgrade#immediate-payment">Stripe immediately attempts payment for subscription changes</a>.</p>
*
* <p>If you want to charge for an upgrade immediately, pass <code>proration_behavior</code> as <code>always_invoice</code> to create prorations, automatically invoice the customer for those proration adjustments, and attempt to collect payment. If you pass <code>create_prorations</code>, the prorations are created but not automatically invoiced. If you want to bill the customer for the prorations before the subscription’s renewal date, you need to manually <a href="/docs/api/invoices/create">invoice the customer</a>.</p>
*
* <p>If you don’t want to prorate, set the <code>proration_behavior</code> option to <code>none</code>. With this option, the customer is billed <currency>100</currency> on May 1 and <currency>200</currency> on June 1. Similarly, if you set <code>proration_behavior</code> to <code>none</code> when switching between different billing intervals (for example, from monthly to yearly), we don’t generate any credits for the old subscription’s unused time. We still reset the billing date and bill immediately for the new subscription.</p>
*
* <p>Updating the quantity on a subscription many times in an hour may result in <a href="/docs/rate-limits">rate limiting</a>. If you need to bill for a frequently changing quantity, consider integrating <a href="/docs/billing/subscriptions/usage-based">usage-based billing</a> instead.</p>
*
* @param {string} subscriptionExposedId
* @param {Stripe.SubscriptionUpdateRequest} request
* @param {Subscription.RequestOptions} requestOptions - Request-specific configuration.
*
* @example
* await client.subscription.update("subscription_exposed_id")
*/
public async update(
subscriptionExposedId: string,
request: Stripe.SubscriptionUpdateRequest = {},
requestOptions?: Subscription.RequestOptions,
): Promise<Stripe.Subscription> {
const _response = await core.fetcher({
url: urlJoin(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.StripeEnvironment.Default,
`v1/subscriptions/${encodeURIComponent(subscriptionExposedId)}`,
),
method: "POST",
headers: {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@fern-api/stripe",
"X-Fern-SDK-Version": "1.0.1",
"User-Agent": "@fern-api/stripe/1.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
},
contentType: "application/x-www-form-urlencoded",
requestType: "json",
body: request,
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
maxRetries: requestOptions?.maxRetries,
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return _response.body as Stripe.Subscription;
}
if (_response.error.reason === "status-code") {
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.body,
});
}
switch (_response.error.reason) {
case "non-json":
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.rawBody,
});
case "timeout":
throw new errors.StripeTimeoutError(
"Timeout exceeded when calling POST /v1/subscriptions/{subscription_exposed_id}.",
);
case "unknown":
throw new errors.StripeError({
message: _response.error.errorMessage,
});
}
}
/**
* <p>Cancels a customer’s subscription immediately. The customer won’t be charged again for the subscription. After it’s canceled, you can no longer update the subscription or its <a href="/metadata">metadata</a>.</p>
*
* <p>Any pending invoice items that you’ve created are still charged at the end of the period, unless manually <a href="#delete_invoiceitem">deleted</a>. If you’ve set the subscription to cancel at the end of the period, any pending prorations are also left in place and collected at the end of the period. But if the subscription is set to cancel immediately, pending prorations are removed.</p>
*
* <p>By default, upon subscription cancellation, Stripe stops automatic collection of all finalized invoices for the customer. This is intended to prevent unexpected payment attempts after the customer has canceled a subscription. However, you can resume automatic collection of the invoices manually after subscription cancellation to have us proceed. Or, you could check for unpaid invoices before allowing the customer to cancel the subscription at all.</p>
*
* @param {string} subscriptionExposedId
* @param {Stripe.SubscriptionCancelRequest} request
* @param {Subscription.RequestOptions} requestOptions - Request-specific configuration.
*
* @example
* await client.subscription.cancel("subscription_exposed_id")
*/
public async cancel(
subscriptionExposedId: string,
request: Stripe.SubscriptionCancelRequest = {},
requestOptions?: Subscription.RequestOptions,
): Promise<Stripe.Subscription> {
const _response = await core.fetcher({
url: urlJoin(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.StripeEnvironment.Default,
`v1/subscriptions/${encodeURIComponent(subscriptionExposedId)}`,
),
method: "DELETE",
headers: {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@fern-api/stripe",
"X-Fern-SDK-Version": "1.0.1",
"User-Agent": "@fern-api/stripe/1.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
},
contentType: "application/x-www-form-urlencoded",
requestType: "json",
body: request,
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
maxRetries: requestOptions?.maxRetries,
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return _response.body as Stripe.Subscription;
}
if (_response.error.reason === "status-code") {
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.body,
});
}
switch (_response.error.reason) {
case "non-json":
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.rawBody,
});
case "timeout":
throw new errors.StripeTimeoutError(
"Timeout exceeded when calling DELETE /v1/subscriptions/{subscription_exposed_id}.",
);
case "unknown":
throw new errors.StripeError({
message: _response.error.errorMessage,
});
}
}
/**
* <p>Removes the currently applied discount on a subscription.</p>
*
* @param {string} subscriptionExposedId
* @param {Stripe.SubscriptionDeleteDiscountRequest} request
* @param {Subscription.RequestOptions} requestOptions - Request-specific configuration.
*
* @example
* await client.subscription.deleteDiscount("subscription_exposed_id")
*/
public async deleteDiscount(
subscriptionExposedId: string,
request: Stripe.SubscriptionDeleteDiscountRequest = {},
requestOptions?: Subscription.RequestOptions,
): Promise<Stripe.DeletedDiscount> {
const _response = await core.fetcher({
url: urlJoin(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.StripeEnvironment.Default,
`v1/subscriptions/${encodeURIComponent(subscriptionExposedId)}/discount`,
),
method: "DELETE",
headers: {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@fern-api/stripe",
"X-Fern-SDK-Version": "1.0.1",
"User-Agent": "@fern-api/stripe/1.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
},
contentType: "application/x-www-form-urlencoded",
requestType: "json",
body: request,
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
maxRetries: requestOptions?.maxRetries,
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return _response.body as Stripe.DeletedDiscount;
}
if (_response.error.reason === "status-code") {
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.body,
});
}
switch (_response.error.reason) {
case "non-json":
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.rawBody,
});
case "timeout":
throw new errors.StripeTimeoutError(
"Timeout exceeded when calling DELETE /v1/subscriptions/{subscription_exposed_id}/discount.",
);
case "unknown":
throw new errors.StripeError({
message: _response.error.errorMessage,
});
}
}
/**
* <p>Initiates resumption of a paused subscription, optionally resetting the billing cycle anchor and creating prorations. If a resumption invoice is generated, it must be paid or marked uncollectible before the subscription will be unpaused. If payment succeeds the subscription will become <code>active</code>, and if payment fails the subscription will be <code>past_due</code>. The resumption invoice will void automatically if not paid by the expiration date.</p>
*
* @param {string} subscription
* @param {Stripe.SubscriptionResumeRequest} request
* @param {Subscription.RequestOptions} requestOptions - Request-specific configuration.
*
* @example
* await client.subscription.resume("subscription")
*/
public async resume(
subscription: string,
request: Stripe.SubscriptionResumeRequest = {},
requestOptions?: Subscription.RequestOptions,
): Promise<Stripe.Subscription> {
const _response = await core.fetcher({
url: urlJoin(
(await core.Supplier.get(this._options.baseUrl)) ??
(await core.Supplier.get(this._options.environment)) ??
environments.StripeEnvironment.Default,
`v1/subscriptions/${encodeURIComponent(subscription)}/resume`,
),
method: "POST",
headers: {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@fern-api/stripe",
"X-Fern-SDK-Version": "1.0.1",
"User-Agent": "@fern-api/stripe/1.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
},
contentType: "application/x-www-form-urlencoded",
requestType: "json",
body: request,
timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
maxRetries: requestOptions?.maxRetries,
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return _response.body as Stripe.Subscription;
}
if (_response.error.reason === "status-code") {
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.body,
});
}
switch (_response.error.reason) {
case "non-json":
throw new errors.StripeError({
statusCode: _response.error.statusCode,
body: _response.error.rawBody,
});
case "timeout":
throw new errors.StripeTimeoutError(
"Timeout exceeded when calling POST /v1/subscriptions/{subscription}/resume.",
);
case "unknown":
throw new errors.StripeError({
message: _response.error.errorMessage,
});
}
}
protected async _getAuthorizationHeader(): Promise<string> {
return `Bearer ${await core.Supplier.get(this._options.token)}`;
}
}