Этот коммит содержится в:
Conor Macpherson
2023-03-27 13:53:27 -04:00
родитель 7d152b2cd1
Коммит c4f6f21ca0
4 изменённых файлов: 25 добавлений и 28 удалений

Просмотреть файл

@@ -3896,7 +3896,7 @@ export default class Client4 {
confirmSelfHostedExpansion = (setupIntentId: string, expandRequest: SelfHostedExpansionRequest) => {
return this.doFetch<SelfHostedSignupSuccessResponse>(
`${this.getHostedCustomerRoute()}/confirm?expand=true`,
{method: 'post', body: JSON.stringify({stripe_setup_intent_id: setupIntentId, subscription: expandRequest})},
{method: 'post', body: JSON.stringify({stripe_setup_intent_id: setupIntentId, expand_request: expandRequest})},
);
}