Skip to content

Commit 8ded370

Browse files
AdyenAutomationBotAdyenAutomationBot
authored andcommitted
style(fmt): code formatted
1 parent 43f4923 commit 8ded370

72 files changed

Lines changed: 10 additions & 82 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Service {
5151
throw new Error("Please provide your unique live url prefix on the setEnvironment() call on the Client.");
5252
}
5353

54-
if (url.includes('/possdk/v68')) {
54+
if (url.includes("/possdk/v68")) {
5555
return url.replace("https://checkout-test.adyen.com/",
5656
`https://${this.client.liveEndpointUrlPrefix}-checkout-live.adyenpayments.com/`);
5757
}

src/services/balancePlatform/accountHoldersApi.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import {
1616
AccountHolderUpdateRequest,
1717
GetTaxFormResponse,
1818
PaginatedBalanceAccountsResponse,
19-
RestServiceError,
2019
TransactionRulesResponse,
2120
ObjectSerializer
2221
} from "../../typings/balancePlatform/models";
@@ -122,7 +121,7 @@ export class AccountHoldersApi extends Service {
122121
* @param year {@link number } The tax year in YYYY format for the tax form you want to retrieve
123122
* @return {@link GetTaxFormResponse }
124123
*/
125-
public async getTaxForm(id: string, formType?: 'US1099k' | 'US1099nec', year?: number, requestOptions?: IRequest.Options): Promise<GetTaxFormResponse> {
124+
public async getTaxForm(id: string, formType?: "US1099k" | "US1099nec", year?: number, requestOptions?: IRequest.Options): Promise<GetTaxFormResponse> {
126125
const endpoint = `${this.baseUrl}/accountHolders/{id}/taxForms`
127126
.replace("{" + "id" + "}", encodeURIComponent(String(id)));
128127
const resource = new Resource(this, endpoint);

src/services/balancePlatform/balanceAccountsApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import {
1717
BalanceSweepConfigurationsResponse,
1818
CreateSweepConfigurationV2,
1919
PaginatedPaymentInstrumentsResponse,
20-
RestServiceError,
2120
SweepConfigurationV2,
2221
TransactionRulesResponse,
2322
UpdateSweepConfigurationV2,

src/services/balancePlatform/balancesApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import Client from "../../client";
1313
import {
1414
BalanceWebhookSettingInfo,
1515
BalanceWebhookSettingInfoUpdate,
16-
DefaultErrorResponseEntity,
1716
WebhookSetting,
1817
WebhookSettings,
1918
ObjectSerializer

src/services/balancePlatform/bankAccountValidationApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import Service from "../../service";
1212
import Client from "../../client";
1313
import {
1414
BankAccountIdentificationValidationRequest,
15-
RestServiceError,
1615
ObjectSerializer
1716
} from "../../typings/balancePlatform/models";
1817
import { IRequest } from "../../typings/requestOptions";

src/services/balancePlatform/cardOrdersApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import Client from "../../client";
1313
import {
1414
PaginatedGetCardOrderItemResponse,
1515
PaginatedGetCardOrderResponse,
16-
RestServiceError,
1716
ObjectSerializer
1817
} from "../../typings/balancePlatform/models";
1918
import { IRequest } from "../../typings/requestOptions";

src/services/balancePlatform/grantAccountsApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import Service from "../../service";
1212
import Client from "../../client";
1313
import {
1414
CapitalGrantAccount,
15-
RestServiceError,
1615
ObjectSerializer
1716
} from "../../typings/balancePlatform/models";
1817
import { IRequest } from "../../typings/requestOptions";

src/services/balancePlatform/grantOffersApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import Client from "../../client";
1313
import {
1414
GrantOffer,
1515
GrantOffers,
16-
RestServiceError,
1716
ObjectSerializer
1817
} from "../../typings/balancePlatform/models";
1918
import { IRequest } from "../../typings/requestOptions";

src/services/balancePlatform/manageCardPINApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import {
1414
PinChangeRequest,
1515
PinChangeResponse,
1616
PublicKeyResponse,
17-
RestServiceError,
1817
RevealPinRequest,
1918
RevealPinResponse,
2019
ObjectSerializer

src/services/balancePlatform/manageSCADevicesApi.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import {
1818
RegisterSCAFinalResponse,
1919
RegisterSCARequest,
2020
RegisterSCAResponse,
21-
RestServiceError,
2221
SearchRegisteredDevicesResponse,
2322
ObjectSerializer
2423
} from "../../typings/balancePlatform/models";

0 commit comments

Comments
 (0)