Skip to content

Commit 08958ca

Browse files
AdyenAutomationBotAdyenAutomationBotDjoykeAbyah
authored
Update all services (#1411)
* [reformat][adyen-sdk-automation] automated change * style(fmt): code formatted * Update transferRoute.ts --------- Co-authored-by: AdyenAutomationBot <Adyen Automation plugins_dev@adyen.com> Co-authored-by: Djoyke Reijans <115019123+DjoykeAbyah@users.noreply.github.com>
1 parent c652ccf commit 08958ca

17 files changed

+46
-18
lines changed

src/services/legalEntityManagement/termsOfServiceApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class TermsOfServiceApi extends Service {
3434

3535
/**
3636
* @summary Accept Terms of Service
37-
* @param id {@link string } The unique identifier of the legal entity. For sole proprietorships, this is the individual legal entity ID of the owner. For organizations, this is the ID of the organization.
37+
* @param id {@link string } The unique identifier of the legal entity. For sole proprietorships, this is the individual legal entity ID of the owner. For organizations, this is the ID of the organization. For legal representatives of individuals, this is the ID of the individual.
3838
* @param termsofservicedocumentid {@link string } The unique identifier of the Terms of Service document.
3939
* @param acceptTermsOfServiceRequest {@link AcceptTermsOfServiceRequest }
4040
* @param requestOptions {@link IRequest.Options }

src/typings/checkout/createCheckoutSessionRequest.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class CreateCheckoutSessionRequest {
9090
*/
9191
'installmentOptions'?: { [key: string]: CheckoutSessionInstallmentOption; };
9292
/**
93-
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, and Zip.
93+
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, Riverty, and Zip.
9494
*/
9595
'lineItems'?: Array<LineItem>;
9696
'mandate'?: Mandate;
@@ -141,7 +141,7 @@ export class CreateCheckoutSessionRequest {
141141
*/
142142
'reference': string;
143143
/**
144-
* The URL to return to in case of a redirection. The format depends on the channel. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
144+
* The URL to return to in case of a redirection. The format depends on the channel. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
145145
*/
146146
'returnUrl': string;
147147
'riskData'?: RiskData;

src/typings/checkout/createCheckoutSessionResponse.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export class CreateCheckoutSessionResponse {
9494
*/
9595
'installmentOptions'?: { [key: string]: CheckoutSessionInstallmentOption; };
9696
/**
97-
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, and Zip.
97+
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, Riverty, and Zip.
9898
*/
9999
'lineItems'?: Array<LineItem>;
100100
'mandate'?: Mandate;
@@ -145,7 +145,7 @@ export class CreateCheckoutSessionResponse {
145145
*/
146146
'reference': string;
147147
/**
148-
* The URL to return to in case of a redirection. The format depends on the channel. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
148+
* The URL to return to in case of a redirection. The format depends on the channel. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
149149
*/
150150
'returnUrl': string;
151151
'riskData'?: RiskData;

src/typings/checkout/donationPaymentRequest.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export class DonationPaymentRequest {
8282
*/
8383
'donationToken'?: string;
8484
/**
85-
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, and Zip.
85+
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, Riverty, and Zip.
8686
*/
8787
'lineItems'?: Array<LineItem>;
8888
/**
@@ -120,7 +120,7 @@ export class DonationPaymentRequest {
120120
*/
121121
'reference': string;
122122
/**
123-
* The URL to return to in case of a redirection. The format depends on the channel. This URL can have a maximum of 1024 characters. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
123+
* The URL to return to in case of a redirection. The format depends on the channel. This URL can have a maximum of 1024 characters. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
124124
*/
125125
'returnUrl': string;
126126
/**

src/typings/checkout/fundRecipient.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class FundRecipient {
4242
*/
4343
'walletIdentifier'?: string;
4444
/**
45-
* Indicates the tax identifier of the fund recepient
45+
* Indicates the tax identifier of the fund recipient
4646
*/
4747
'walletOwnerTaxId'?: string;
4848

src/typings/checkout/mandate.ts

+9
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ export class Mandate {
2626
*/
2727
'billingDay'?: string;
2828
/**
29+
* The number of transactions that can be performed within the given frequency.
30+
*/
31+
'count'?: string;
32+
/**
2933
* End date of the billing plan, in YYYY-MM-DD format.
3034
*/
3135
'endsAt': string;
@@ -65,6 +69,11 @@ export class Mandate {
6569
"baseName": "billingDay",
6670
"type": "string"
6771
},
72+
{
73+
"name": "count",
74+
"baseName": "count",
75+
"type": "string"
76+
},
6877
{
6978
"name": "endsAt",
7079
"baseName": "endsAt",

src/typings/checkout/paymentDetails.ts

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export namespace PaymentDetails {
7474
MolpayEbankingDirectMy = 'molpay_ebanking_direct_MY',
7575
Swish = 'swish',
7676
Pix = 'pix',
77+
Bizum = 'bizum',
7778
Walley = 'walley',
7879
WalleyB2b = 'walley_b2b',
7980
Alma = 'alma',

src/typings/checkout/paymentLinkRequest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export class PaymentLinkRequest {
6464
*/
6565
'installmentOptions'?: { [key: string]: InstallmentOption; };
6666
/**
67-
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. This parameter is required for open invoice (_buy now, pay later_) payment methods such Afterpay, Clearpay, Klarna, RatePay, and Zip.
67+
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. This parameter is required for open invoice (_buy now, pay later_) payment methods such Afterpay, Clearpay, Klarna, RatePay, Riverty, and Zip.
6868
*/
6969
'lineItems'?: Array<LineItem>;
7070
/**

src/typings/checkout/paymentLinkResponse.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class PaymentLinkResponse {
6868
*/
6969
'installmentOptions'?: { [key: string]: InstallmentOption; };
7070
/**
71-
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. This parameter is required for open invoice (_buy now, pay later_) payment methods such Afterpay, Clearpay, Klarna, RatePay, and Zip.
71+
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. This parameter is required for open invoice (_buy now, pay later_) payment methods such Afterpay, Clearpay, Klarna, RatePay, Riverty, and Zip.
7272
*/
7373
'lineItems'?: Array<LineItem>;
7474
/**

src/typings/checkout/paymentRequest.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export class PaymentRequest {
154154
'industryUsage'?: PaymentRequest.IndustryUsageEnum;
155155
'installments'?: Installments;
156156
/**
157-
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, and Zip.
157+
* Price and product information about the purchased items, to be included on the invoice sent to the shopper. > This field is required for 3x 4x Oney, Affirm, Afterpay, Clearpay, Klarna, Ratepay, Riverty, and Zip.
158158
*/
159159
'lineItems'?: Array<LineItem>;
160160
/**
@@ -219,7 +219,7 @@ export class PaymentRequest {
219219
*/
220220
'reference': string;
221221
/**
222-
* The URL to return to in case of a redirection. The format depends on the channel. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
222+
* The URL to return to in case of a redirection. The format depends on the channel. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
223223
*/
224224
'returnUrl': string;
225225
'riskData'?: RiskData;

src/typings/checkout/paymentSetupRequest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ export class PaymentSetupRequest {
139139
*/
140140
'reference': string;
141141
/**
142-
* The URL to return to in case of a redirection. The format depends on the channel. This URL can have a maximum of 1024 characters. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
142+
* The URL to return to in case of a redirection. The format depends on the channel. This URL can have a maximum of 1024 characters. * For web, include the protocol `http://` or `https://`. You can also include your own additional query parameters, for example, shopper ID or order reference number. Example: `https://your-company.com/checkout?shopperOrder=12xy` * For iOS, use the custom URL for your app. To know more about setting custom URL schemes, refer to the [Apple Developer documentation](https://developer.apple.com/documentation/uikit/inter-process_communication/allowing_apps_and_websites_to_link_to_your_content/defining_a_custom_url_scheme_for_your_app). Example: `my-app://` * For Android, use a custom URL handled by an Activity on your app. You can configure it with an [intent filter](https://developer.android.com/guide/components/intents-filters). Example: `my-app://your.package.name` If the URL to return to includes non-ASCII characters, like spaces or special letters, URL encode the value. > The URL must not include personally identifiable information (PII), for example name or email address.
143143
*/
144144
'returnUrl': string;
145145
'riskData'?: RiskData;

src/typings/legalEntityManagement/acceptTermsOfServiceRequest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
export class AcceptTermsOfServiceRequest {
1212
/**
13-
* The legal entity ID of the user accepting the Terms of Service. For organizations, this must be the individual legal entity ID of an authorized signatory for the organization. For sole proprietorships, this must be the individual legal entity ID of the owner.
13+
* The legal entity ID of the user accepting the Terms of Service. For organizations, this must be the individual legal entity ID of an authorized signatory for the organization. For sole proprietorships, this must be the individual legal entity ID of the owner. For individuals, this must be the individual legal entity id of either the individual, parent, or guardian.
1414
*/
1515
'acceptedBy': string;
1616
/**

src/typings/legalEntityManagement/onboardingLinkSettings.ts

+9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export class OnboardingLinkSettings {
1818
*/
1919
'allowBankAccountFormatSelection'?: boolean;
2020
/**
21+
* Default value: **true** Indicates if the user may press a hidden key combination to open the HO debugging UI.
22+
*/
23+
'allowDebugUi'?: boolean;
24+
/**
2125
* Default value: **false** Indicates if the user can select a payout account in a different EU/EEA location (including Switzerland and the UK) than the location of their legal entity.
2226
*/
2327
'allowIntraRegionCrossBorderPayout'?: boolean;
@@ -83,6 +87,11 @@ export class OnboardingLinkSettings {
8387
"baseName": "allowBankAccountFormatSelection",
8488
"type": "boolean"
8589
},
90+
{
91+
"name": "allowDebugUi",
92+
"baseName": "allowDebugUi",
93+
"type": "boolean"
94+
},
8695
{
8796
"name": "allowIntraRegionCrossBorderPayout",
8897
"baseName": "allowIntraRegionCrossBorderPayout",

src/typings/management/additionalSettings.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
export class AdditionalSettings {
1212
/**
13-
* Object containing list of event codes for which the notifcation will be sent.
13+
* Object containing list of event codes for which the notification will be sent.
1414
*/
1515
'includeEventCodes'?: Array<string>;
1616
/**

src/typings/management/additionalSettingsResponse.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
export class AdditionalSettingsResponse {
1212
/**
13-
* Object containing list of event codes for which the notifcation will not be sent.
13+
* Object containing list of event codes for which the notification will not be sent.
1414
*/
1515
'excludeEventCodes'?: Array<string>;
1616
/**
17-
* Object containing list of event codes for which the notifcation will be sent.
17+
* Object containing list of event codes for which the notification will be sent.
1818
*/
1919
'includeEventCodes'?: Array<string>;
2020
/**

0 commit comments

Comments
 (0)