Skip to content

Commit 5d9e5b8

Browse files
[create-pull-request] automated change (#1224)
1 parent 9a8c820 commit 5d9e5b8

15 files changed

+80
-88
lines changed

src/services/legalEntityManagement/documentsApi.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ export class DocumentsApi extends Service {
6262
/**
6363
* @summary Update a document
6464
* @param id {@link string } The unique identifier of the document to be updated.
65+
* @param xRequestedVerificationCode {@link string } Use the requested verification code 0_0001 to resolve any suberrors associated with the document. Requested verification codes can only be used in your test environment.
6566
* @param document {@link Document }
6667
* @param requestOptions {@link IRequest.Options}
6768
* @return {@link Document }

src/services/legalEntityManagement/legalEntitiesApi.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export class LegalEntitiesApi extends Service {
6868
/**
6969
* @summary Update a legal entity
7070
* @param id {@link string } The unique identifier of the legal entity.
71+
* @param xRequestedVerificationCode {@link string } Use the requested verification code 0_0001 to resolve any suberrors associated with the legal entity. Requested verification codes can only be used in your test environment.
7172
* @param legalEntityInfo {@link LegalEntityInfo }
7273
* @param requestOptions {@link IRequest.Options}
7374
* @return {@link LegalEntity }

src/services/legalEntityManagement/transferInstrumentsApi.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export class TransferInstrumentsApi extends Service {
6363
/**
6464
* @summary Update a transfer instrument
6565
* @param id {@link string } The unique identifier of the transfer instrument.
66+
* @param xRequestedVerificationCode {@link string } Use the requested verification code 0_0001 to resolve any suberrors associated with the transfer instrument. Requested verification codes can only be used in your test environment.
6667
* @param transferInstrumentInfo {@link TransferInstrumentInfo }
6768
* @param requestOptions {@link IRequest.Options}
6869
* @return {@link TransferInstrument }

src/typings/checkout/cardDetails.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ export namespace CardDetails {
192192
Debit = 'debit'
193193
}
194194
export enum TypeEnum {
195+
Bcmc = 'bcmc',
195196
Scheme = 'scheme',
196197
NetworkToken = 'networkToken',
197198
Giftcard = 'giftcard',

src/typings/checkout/split.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,9 @@ export namespace Split {
6969
Default = 'Default',
7070
MarketPlace = 'MarketPlace',
7171
PaymentFee = 'PaymentFee',
72-
PaymentFeeAcquiring = 'PaymentFeeAcquiring',
73-
PaymentFeeAdyen = 'PaymentFeeAdyen',
74-
PaymentFeeAdyenCommission = 'PaymentFeeAdyenCommission',
75-
PaymentFeeAdyenMarkup = 'PaymentFeeAdyenMarkup',
76-
PaymentFeeInterchange = 'PaymentFeeInterchange',
77-
PaymentFeeSchemeFee = 'PaymentFeeSchemeFee',
7872
Remainder = 'Remainder',
7973
Surcharge = 'Surcharge',
8074
Tip = 'Tip',
81-
TopUp = 'TopUp',
82-
Vat = 'VAT',
83-
Verification = 'Verification'
75+
Vat = 'VAT'
8476
}
8577
}

src/typings/legalEntityManagement/hKLocalAccountIdentification.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010

1111
export class HKLocalAccountIdentification {
1212
/**
13-
* The 6- to 19-character bank account number (alphanumeric), without separators or whitespace.
13+
* The 9- to 12-character bank account number (alphanumeric), without separators or whitespace. Starts with the 3-digit branch code.
1414
*/
1515
'accountNumber': string;
1616
/**
17-
* The 6-digit bank code including the 3-digit bank code and 3-digit branch code, without separators or whitespace.
17+
* The 3-digit clearing code, without separators or whitespace.
1818
*/
19-
'bankCode': string;
19+
'clearingCode': string;
2020
/**
2121
* **hkLocal**
2222
*/
@@ -31,8 +31,8 @@ export class HKLocalAccountIdentification {
3131
"type": "string"
3232
},
3333
{
34-
"name": "bankCode",
35-
"baseName": "bankCode",
34+
"name": "clearingCode",
35+
"baseName": "clearingCode",
3636
"type": "string"
3737
},
3838
{

src/typings/payment/additionalDataAirline.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ export class AdditionalDataAirline {
1818
*/
1919
'airline_agency_plan_name'?: string;
2020
/**
21-
* The [IATA](https://www.iata.org/services/pages/codes.aspx) 3-digit accounting code (PAX) that identifies the carrier. * Format: IATA 3-digit accounting code (PAX) * Example: KLM = 074 * minLength: 3 characters * maxLength: 3 characters * Must not be all spaces * Must not be all zeros
21+
* The [IATA](https://www.iata.org/services/pages/codes.aspx) 3-digit accounting code (PAX) that identifies the carrier. * Format: IATA 3-digit accounting code (PAX) * Example: KLM = 074 * minLength: 3 characters * maxLength: 3 characters * Must not be all spaces *Must not be all zeros.
2222
*/
2323
'airline_airline_code'?: string;
2424
/**
25-
* The [IATA](https://www.iata.org/services/pages/codes.aspx) 2-letter accounting code (PAX) that identifies the carrier. * Encoding: ASCII * Example: KLM = KL * minLength: 2 characters * maxLength: 2 characters * Must not be all spaces * Must not be all zeros
25+
* The [IATA](https://www.iata.org/services/pages/codes.aspx) 2-letter accounting code (PAX) that identifies the carrier. * Encoding: ASCII * Example: KLM = KL * minLength: 2 characters * maxLength: 2 characters * Must not be all spaces *Must not be all zeros.
2626
*/
2727
'airline_airline_designator_code'?: string;
2828
/**
@@ -46,35 +46,35 @@ export class AdditionalDataAirline {
4646
*/
4747
'airline_flight_date'?: string;
4848
/**
49-
* The [IATA](https://www.iata.org/services/pages/codes.aspx) 2-letter accounting code (PAX) that identifies the carrier. This field is required if the airline data includes leg details. * Example: KLM = KL * minLength: 2 characters * maxLength: 2 characters * Must not be all spaces * Must not be all zeros
49+
* The [IATA](https://www.iata.org/services/pages/codes.aspx) 2-letter accounting code (PAX) that identifies the carrier. This field is required if the airline data includes leg details. * Example: KLM = KL * minLength: 2 characters * maxLength: 2 characters * Must not be all spaces *Must not be all zeros.
5050
*/
5151
'airline_leg_carrier_code'?: string;
5252
/**
53-
* A one-letter travel class identifier. The following are common: * F: first class * J: business class * Y: economy class * W: premium economy * Encoding: ASCII * minLength: 1 character * maxLength: 1 character * Must not be all spaces * Must not be all zeros
53+
* A one-letter travel class identifier. The following are common: * F: first class * J: business class * Y: economy class * W: premium economy * Encoding: ASCII * minLength: 1 character * maxLength: 1 character * Must not be all spaces *Must not be all zeros.
5454
*/
5555
'airline_leg_class_of_travel'?: string;
5656
/**
5757
* Date and time of travel in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format `yyyy-MM-dd HH:mm`. * Encoding: ASCII * minLength: 16 characters * maxLength: 16 characters
5858
*/
5959
'airline_leg_date_of_travel'?: string;
6060
/**
61-
* The [IATA](https://www.iata.org/services/pages/codes.aspx) three-letter airport code of the departure airport. This field is required if the airline data includes leg details. * Encoding: ASCII * Example: Amsterdam = AMS * minLength: 3 characters * maxLength: 3 characters * Must not be all spaces * Must not be all zeros
61+
* The [IATA](https://www.iata.org/services/pages/codes.aspx) three-letter airport code of the departure airport. This field is required if the airline data includes leg details. * Encoding: ASCII * Example: Amsterdam = AMS * minLength: 3 characters * maxLength: 3 characters * Must not be all spaces *Must not be all zeros.
6262
*/
6363
'airline_leg_depart_airport'?: string;
6464
/**
65-
* The amount of [departure tax](https://en.wikipedia.org/wiki/Departure_tax) charged, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Encoding: Numeric * minLength: 1 * maxLength: 12 * Must not be all zeros
65+
* The amount of [departure tax](https://en.wikipedia.org/wiki/Departure_tax) charged, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Encoding: Numeric * minLength: 1 * maxLength: 12 *Must not be all zeros.
6666
*/
6767
'airline_leg_depart_tax'?: string;
6868
/**
69-
* The [IATA](https://www.iata.org/services/pages/codes.aspx) 3-letter airport code of the destination airport. This field is required if the airline data includes leg details. * Example: Amsterdam = AMS * Encoding: ASCII * minLength: 3 characters * maxLength: 3 characters * Must not be all spaces * Must not be all zeros
69+
* The [IATA](https://www.iata.org/services/pages/codes.aspx) 3-letter airport code of the destination airport. This field is required if the airline data includes leg details. * Example: Amsterdam = AMS * Encoding: ASCII * minLength: 3 characters * maxLength: 3 characters * Must not be all spaces *Must not be all zeros.
7070
*/
7171
'airline_leg_destination_code'?: string;
7272
/**
73-
* The [fare basis code](https://en.wikipedia.org/wiki/Fare_basis_code), alphanumeric. * minLength: 1 character * maxLength: 6 characters * Must not be all spaces * Must not be all zeros
73+
* The [fare basis code](https://en.wikipedia.org/wiki/Fare_basis_code), alphanumeric. * minLength: 1 character * maxLength: 6 characters * Must not be all spaces *Must not be all zeros.
7474
*/
7575
'airline_leg_fare_base_code'?: string;
7676
/**
77-
* The flight identifier. * minLength: 1 character * maxLength: 5 characters * Must not be all spaces * Must not be all zeros
77+
* The flight identifier. * minLength: 1 character * maxLength: 5 characters * Must not be all spaces *Must not be all zeros.
7878
*/
7979
'airline_leg_flight_number'?: string;
8080
/**
@@ -102,23 +102,23 @@ export class AdditionalDataAirline {
102102
*/
103103
'airline_passenger_traveller_type'?: string;
104104
/**
105-
* The passenger\'s name, initials, and title. * Format: last name + first name or initials + title * Example: *FLYER / MARY MS* * minLength: 1 character * maxLength: 20 characters * If you send more than 20 characters, the name is truncated * Must not be all spaces * Must not be all zeros
105+
* The passenger\'s name, initials, and title. * Format: last name + first name or initials + title * Example: *FLYER / MARY MS* * minLength: 1 character * maxLength: 20 characters * If you send more than 20 characters, the name is truncated * Must not be all spaces *Must not be all zeros.
106106
*/
107107
'airline_passenger_name': string;
108108
/**
109109
* The address of the organization that issued the ticket. * minLength: 0 characters * maxLength: 16 characters
110110
*/
111111
'airline_ticket_issue_address'?: string;
112112
/**
113-
* The ticket\'s unique identifier. * minLength: 1 character * maxLength: 15 characters * Must not be all spaces * Must not be all zeros
113+
* The ticket\'s unique identifier. * minLength: 1 character * maxLength: 15 characters * Must not be all spaces *Must not be all zeros.
114114
*/
115115
'airline_ticket_number'?: string;
116116
/**
117-
* The unique identifier from IATA or ARC for the travel agency that issues the ticket. * Encoding: ASCII * minLength: 1 character * maxLength: 8 characters * Must not be all spaces * Must not be all zeros
117+
* The unique identifier from IATA or ARC for the travel agency that issues the ticket. * Encoding: ASCII * minLength: 1 character * maxLength: 8 characters * Must not be all spaces *Must not be all zeros.
118118
*/
119119
'airline_travel_agency_code'?: string;
120120
/**
121-
* The name of the travel agency. * Encoding: ASCII * minLength: 1 character * maxLength: 25 characters * Must not be all spaces * Must not be all zeros
121+
* The name of the travel agency. * Encoding: ASCII * minLength: 1 character * maxLength: 25 characters * Must not be all spaces *Must not be all zeros.
122122
*/
123123
'airline_travel_agency_name'?: string;
124124

src/typings/payment/additionalDataCarRental.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,31 +14,31 @@ export class AdditionalDataCarRental {
1414
*/
1515
'carRental_checkOutDate'?: string;
1616
/**
17-
* The customer service phone number of the car rental company. * Format: Alphanumeric * maxLength: 17 * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not be all zeros * Must not contain any special characters such as + or -
17+
* The customer service phone number of the car rental company. * Format: Alphanumeric * maxLength: 17 * For US and CA numbers must be 10 characters in length * Must not start with a space * Must not contain any special characters such as + or - *Must not be all zeros.
1818
*/
1919
'carRental_customerServiceTollFreeNumber'?: string;
2020
/**
21-
* Number of days for which the car is being rented. * Format: Numeric * maxLength: 2 * Must not be all spaces
21+
* Number of days for which the car is being rented. * Format: Numeric * maxLength: 4 * Must not be all spaces
2222
*/
2323
'carRental_daysRented'?: string;
2424
/**
2525
* Any fuel charges associated with the rental, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: Numeric * maxLength: 12
2626
*/
2727
'carRental_fuelCharges'?: string;
2828
/**
29-
* Any insurance charges associated with the rental, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: Numeric * maxLength: 12 * Must not be all spaces * Must not be all zeros
29+
* Any insurance charges associated with the rental, in [minor units](https://docs.adyen.com/development-resources/currency-codes). * Format: Numeric * maxLength: 12 * Must not be all spaces *Must not be all zeros.
3030
*/
3131
'carRental_insuranceCharges'?: string;
3232
/**
33-
* The city where the car is rented. * Format: Alphanumeric * maxLength: 18 * Must not start with a space or be all spaces * Must not be all zeros
33+
* The city where the car is rented. * Format: Alphanumeric * maxLength: 18 * Must not start with a space or be all spaces *Must not be all zeros.
3434
*/
3535
'carRental_locationCity'?: string;
3636
/**
3737
* The country where the car is rented, in [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format. * Format: Alphanumeric * maxLength: 2
3838
*/
3939
'carRental_locationCountry'?: string;
4040
/**
41-
* The state or province where the car is rented. * Format: Alphanumeric * maxLength: 2 * Must not start with a space or be all spaces * Must not be all zeros
41+
* The state or province where the car is rented. * Format: Alphanumeric * maxLength: 2 * Must not start with a space or be all spaces *Must not be all zeros.
4242
*/
4343
'carRental_locationStateProvince'?: string;
4444
/**
@@ -58,19 +58,19 @@ export class AdditionalDataCarRental {
5858
*/
5959
'carRental_rateIndicator'?: string;
6060
/**
61-
* The rental agreement number for the car rental. * Format: Alphanumeric * maxLength: 9 * Must not start with a space or be all spaces * Must not be all zeros
61+
* The rental agreement number for the car rental. * Format: Alphanumeric * maxLength: 9 * Must not start with a space or be all spaces *Must not be all zeros.
6262
*/
6363
'carRental_rentalAgreementNumber'?: string;
6464
/**
65-
* The classification of the rental car. * Format: Alphanumeric * maxLength: 4 * Must not start with a space or be all spaces * Must not be all zeros
65+
* The classification of the rental car. * Format: Alphanumeric * maxLength: 4 * Must not start with a space or be all spaces *Must not be all zeros.
6666
*/
6767
'carRental_rentalClassId'?: string;
6868
/**
69-
* The name of the person renting the car. * Format: Alphanumeric * maxLength: 26 * If you send more than 26 characters, the name is truncated * Must not start with a space or be all spaces * Must not be all zeros
69+
* The name of the person renting the car. * Format: Alphanumeric * maxLength: 26 * If you send more than 26 characters, the name is truncated * Must not start with a space or be all spaces *Must not be all zeros.
7070
*/
7171
'carRental_renterName'?: string;
7272
/**
73-
* The city where the car must be returned. * Format: Alphanumeric * maxLength: 18 * Must not start with a space or be all spaces * Must not be all zeros
73+
* The city where the car must be returned. * Format: Alphanumeric * maxLength: 18 * Must not start with a space or be all spaces *Must not be all zeros.
7474
*/
7575
'carRental_returnCity'?: string;
7676
/**
@@ -82,19 +82,19 @@ export class AdditionalDataCarRental {
8282
*/
8383
'carRental_returnDate'?: string;
8484
/**
85-
* The agency code, phone number, or address abbreviation * Format: Alphanumeric * maxLength: 10 * Must not start with a space or be all spaces * Must not be all zeros
85+
* The agency code, phone number, or address abbreviation * Format: Alphanumeric * maxLength: 10 * Must not start with a space or be all spaces *Must not be all zeros.
8686
*/
8787
'carRental_returnLocationId'?: string;
8888
/**
89-
* The state or province where the car must be returned. * Format: Alphanumeric * maxLength: 3 * Must not start with a space or be all spaces * Must not be all zeros
89+
* The state or province where the car must be returned. * Format: Alphanumeric * maxLength: 3 * Must not start with a space or be all spaces *Must not be all zeros.
9090
*/
9191
'carRental_returnStateProvince'?: string;
9292
/**
9393
* Indicates if the goods or services were tax-exempt, or if tax was not paid on them. Values: * Y - Goods or services were tax exempt * N - Tax was not collected
9494
*/
9595
'carRental_taxExemptIndicator'?: string;
9696
/**
97-
* Number of days the car is rented for. This should be included in the auth message. * Format: Numeric * maxLength: 2
97+
* Number of days the car is rented for. This should be included in the auth message. * Format: Numeric * maxLength: 4
9898
*/
9999
'travelEntertainmentAuthData_duration'?: string;
100100
/**

0 commit comments

Comments
 (0)