Skip to content

Commit c4876aa

Browse files
authored
Merge pull request #1440 from Adyen/sdk-automation/models
Update all services
2 parents 38696c1 + 12e423b commit c4876aa

File tree

278 files changed

+1499
-1499
lines changed

Some content is hidden

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

278 files changed

+1499
-1499
lines changed

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
format:
10-
if: ${{ ! startsWith(github.event.head_commit.message, 'style(fmt)') }}
10+
if: ${{ github.event.commits != null && !startsWith(github.event.head_commit.message, 'style(fmt)') }}
1111
permissions:
1212
contents: write
1313
runs-on: ubuntu-latest
@@ -26,4 +26,4 @@ jobs:
2626
git config user.email "${{ secrets.ADYEN_AUTOMATION_BOT_EMAIL }}"
2727
git add .
2828
git commit -m "style(fmt): code formatted"
29-
git push
29+
git push

src/typings/acsWebhooks/authenticationInfo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export class AuthenticationInfo {
1414
* Universally unique transaction identifier assigned by the Access Control Server (ACS) to identify a single transaction.
1515
*/
1616
'acsTransId': string;
17-
'challenge'?: ChallengeInfo;
17+
'challenge'?: ChallengeInfo | null;
1818
/**
1919
* Specifies a preference for receiving a challenge. Possible values: * **01**: No preference * **02**: No challenge requested * **03**: Challenge requested (preference) * **04**: Challenge requested (mandate) * **05**: No challenge requested (transactional risk analysis is already performed) * **07**: No challenge requested (SCA is already performed) * **08**: No challenge requested (trusted beneficiaries exemption of no challenge required) * **09**: Challenge requested (trusted beneficiaries prompt requested if challenge required) * **80**: No challenge requested (secure corporate payment with Mastercard) * **82**: No challenge requested (secure corporate payment with Visa)
2020
*/
@@ -79,7 +79,7 @@ export class AuthenticationInfo {
7979
{
8080
"name": "challenge",
8181
"baseName": "challenge",
82-
"type": "ChallengeInfo"
82+
"type": "ChallengeInfo | null"
8383
},
8484
{
8585
"name": "challengeIndicator",

src/typings/balancePlatform/accountHolder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class AccountHolder {
2323
/**
2424
* @deprecated
2525
*/
26-
'contactDetails'?: ContactDetails;
26+
'contactDetails'?: ContactDetails | null;
2727
/**
2828
* Your description for the account holder.
2929
*/
@@ -81,7 +81,7 @@ export class AccountHolder {
8181
{
8282
"name": "contactDetails",
8383
"baseName": "contactDetails",
84-
"type": "ContactDetails"
84+
"type": "ContactDetails | null"
8585
},
8686
{
8787
"name": "description",

src/typings/balancePlatform/accountHolderCapability.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class AccountHolderCapability {
2020
* The capability level that is allowed for the account holder. Possible values: **notApplicable**, **low**, **medium**, **high**.
2121
*/
2222
'allowedLevel'?: AccountHolderCapability.AllowedLevelEnum;
23-
'allowedSettings'?: CapabilitySettings;
23+
'allowedSettings'?: CapabilitySettings | null;
2424
/**
2525
* Indicates whether the capability is enabled. If **false**, the capability is temporarily disabled for the account holder.
2626
*/
@@ -37,7 +37,7 @@ export class AccountHolderCapability {
3737
* The requested level of the capability. Some capabilities, such as those used in [card issuing](https://docs.adyen.com/issuing/add-capabilities#capability-levels), have different levels. Levels increase the capability, but also require additional checks and increased monitoring. Possible values: **notApplicable**, **low**, **medium**, **high**.
3838
*/
3939
'requestedLevel'?: AccountHolderCapability.RequestedLevelEnum;
40-
'requestedSettings'?: CapabilitySettings;
40+
'requestedSettings'?: CapabilitySettings | null;
4141
/**
4242
* Contains the status of the transfer instruments associated with this capability.
4343
*/
@@ -63,7 +63,7 @@ export class AccountHolderCapability {
6363
{
6464
"name": "allowedSettings",
6565
"baseName": "allowedSettings",
66-
"type": "CapabilitySettings"
66+
"type": "CapabilitySettings | null"
6767
},
6868
{
6969
"name": "enabled",
@@ -88,7 +88,7 @@ export class AccountHolderCapability {
8888
{
8989
"name": "requestedSettings",
9090
"baseName": "requestedSettings",
91-
"type": "CapabilitySettings"
91+
"type": "CapabilitySettings | null"
9292
},
9393
{
9494
"name": "transferInstruments",

src/typings/balancePlatform/accountHolderInfo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class AccountHolderInfo {
2222
/**
2323
* @deprecated
2424
*/
25-
'contactDetails'?: ContactDetails;
25+
'contactDetails'?: ContactDetails | null;
2626
/**
2727
* Your description for the account holder.
2828
*/
@@ -64,7 +64,7 @@ export class AccountHolderInfo {
6464
{
6565
"name": "contactDetails",
6666
"baseName": "contactDetails",
67-
"type": "ContactDetails"
67+
"type": "ContactDetails | null"
6868
},
6969
{
7070
"name": "description",

src/typings/balancePlatform/accountHolderUpdateRequest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class AccountHolderUpdateRequest {
2323
/**
2424
* @deprecated
2525
*/
26-
'contactDetails'?: ContactDetails;
26+
'contactDetails'?: ContactDetails | null;
2727
/**
2828
* Your description for the account holder.
2929
*/
@@ -73,7 +73,7 @@ export class AccountHolderUpdateRequest {
7373
{
7474
"name": "contactDetails",
7575
"baseName": "contactDetails",
76-
"type": "ContactDetails"
76+
"type": "ContactDetails | null"
7777
},
7878
{
7979
"name": "description",

src/typings/balancePlatform/authentication.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class Authentication {
1818
* The password used for 3D Secure password-based authentication. The value must be between 1 to 30 characters and must only contain the following supported characters. * Characters between **a-z**, **A-Z**, and **0-9** * Special characters: **äöüßÄÖÜ+-*_/ç%()=?!~#\'\",;:$&àùòâôûáúó**
1919
*/
2020
'password'?: string;
21-
'phone'?: Phone;
21+
'phone'?: Phone | null;
2222

2323
static discriminator: string | undefined = undefined;
2424

@@ -36,7 +36,7 @@ export class Authentication {
3636
{
3737
"name": "phone",
3838
"baseName": "phone",
39-
"type": "Phone"
39+
"type": "Phone | null"
4040
} ];
4141

4242
static getAttributeTypeMap() {

src/typings/balancePlatform/balanceAccount.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class BalanceAccount {
3939
* The unique identifier of the account of the migrated account holder in the classic integration.
4040
*/
4141
'migratedAccountCode'?: string;
42-
'platformPaymentConfiguration'?: PlatformPaymentConfiguration;
42+
'platformPaymentConfiguration'?: PlatformPaymentConfiguration | null;
4343
/**
4444
* Your reference for the balance account, maximum 150 characters.
4545
*/
@@ -94,7 +94,7 @@ export class BalanceAccount {
9494
{
9595
"name": "platformPaymentConfiguration",
9696
"baseName": "platformPaymentConfiguration",
97-
"type": "PlatformPaymentConfiguration"
97+
"type": "PlatformPaymentConfiguration | null"
9898
},
9999
{
100100
"name": "reference",

src/typings/balancePlatform/balanceAccountBase.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class BalanceAccountBase {
3434
* The unique identifier of the account of the migrated account holder in the classic integration.
3535
*/
3636
'migratedAccountCode'?: string;
37-
'platformPaymentConfiguration'?: PlatformPaymentConfiguration;
37+
'platformPaymentConfiguration'?: PlatformPaymentConfiguration | null;
3838
/**
3939
* Your reference for the balance account, maximum 150 characters.
4040
*/
@@ -84,7 +84,7 @@ export class BalanceAccountBase {
8484
{
8585
"name": "platformPaymentConfiguration",
8686
"baseName": "platformPaymentConfiguration",
87-
"type": "PlatformPaymentConfiguration"
87+
"type": "PlatformPaymentConfiguration | null"
8888
},
8989
{
9090
"name": "reference",

src/typings/balancePlatform/balanceAccountInfo.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class BalanceAccountInfo {
3030
* The unique identifier of the account of the migrated account holder in the classic integration.
3131
*/
3232
'migratedAccountCode'?: string;
33-
'platformPaymentConfiguration'?: PlatformPaymentConfiguration;
33+
'platformPaymentConfiguration'?: PlatformPaymentConfiguration | null;
3434
/**
3535
* Your reference for the balance account, maximum 150 characters.
3636
*/
@@ -71,7 +71,7 @@ export class BalanceAccountInfo {
7171
{
7272
"name": "platformPaymentConfiguration",
7373
"baseName": "platformPaymentConfiguration",
74-
"type": "PlatformPaymentConfiguration"
74+
"type": "PlatformPaymentConfiguration | null"
7575
},
7676
{
7777
"name": "reference",

0 commit comments

Comments
 (0)