Skip to content

Commit b278fd3

Browse files
[sessionauthentication] Automated update from Adyen/adyen-openapi@9a8c347
1 parent ecc0f79 commit b278fd3

8 files changed

Lines changed: 18 additions & 98 deletions

File tree

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"service": "sessionauthentication",
3+
"project": "node",
4+
"generatedAt": "2026-05-01T14:12:31Z",
5+
"openapiCommitSha": "9a8c34765a5349d0436d2ca79cfe3df7606ef4f5",
6+
"automationCommitSha": "4c065f4314ebb286f05dc38fd80f19058281c63c",
7+
"libraryCommitSha": "ecc0f79b39a3c2103d00600e00aec9cade27ddaf"
8+
}

src/typings/sessionAuthentication/balanceAccountResource.ts

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/typings/sessionAuthentication/invalidField.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99

1010

1111
export class InvalidField {
12+
/**
13+
* Description of the validation error.
14+
*/
15+
"message": string;
1216
/**
1317
* The field that has an invalid value.
1418
*/
@@ -17,31 +21,27 @@ export class InvalidField {
1721
* The invalid value.
1822
*/
1923
"value": string;
20-
/**
21-
* Description of the validation error.
22-
*/
23-
"message": string;
2424

2525
static readonly discriminator: string | undefined = undefined;
2626

2727
static readonly mapping: {[index: string]: string} | undefined = undefined;
2828

2929
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
3030
{
31-
"name": "name",
32-
"baseName": "name",
31+
"name": "message",
32+
"baseName": "message",
3333
"type": "string",
3434
"format": ""
3535
},
3636
{
37-
"name": "value",
38-
"baseName": "value",
37+
"name": "name",
38+
"baseName": "name",
3939
"type": "string",
4040
"format": ""
4141
},
4242
{
43-
"name": "message",
44-
"baseName": "message",
43+
"name": "value",
44+
"baseName": "value",
4545
"type": "string",
4646
"format": ""
4747
} ];

src/typings/sessionAuthentication/merchantAccountResource.ts

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/typings/sessionAuthentication/models.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
export * from "./accountHolderResource"
22
export * from "./authenticationSessionRequest"
33
export * from "./authenticationSessionResponse"
4-
export * from "./balanceAccountResource"
54
export * from "./defaultErrorResponseEntity"
65
export * from "./invalidField"
76
export * from "./legalEntityResource"
8-
export * from "./merchantAccountResource"
97
export * from "./paymentInstrumentResource"
108
export * from "./policy"
119
export * from "./productType"

src/typings/sessionAuthentication/objectSerializer.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,9 @@ export * from "./models";
33
import { AccountHolderResource } from "./accountHolderResource";
44
import { AuthenticationSessionRequest } from "./authenticationSessionRequest";
55
import { AuthenticationSessionResponse } from "./authenticationSessionResponse";
6-
import { BalanceAccountResource } from "./balanceAccountResource";
76
import { DefaultErrorResponseEntity } from "./defaultErrorResponseEntity";
87
import { InvalidField } from "./invalidField";
98
import { LegalEntityResource } from "./legalEntityResource";
10-
import { MerchantAccountResource } from "./merchantAccountResource";
119
import { PaymentInstrumentResource } from "./paymentInstrumentResource";
1210
import { Policy } from "./policy";
1311
import { ProductType } from "./productType";
@@ -31,21 +29,17 @@ let enumsMap: Set<string> = new Set<string>([
3129
ProductType.Platform,
3230
ProductType.Bank,
3331
ResourceType.LegalEntity,
34-
ResourceType.BalanceAccount,
3532
ResourceType.AccountHolder,
36-
ResourceType.MerchantAccount,
3733
ResourceType.PaymentInstrument,
3834
]);
3935

4036
let typeMap: {[index: string]: any} = {
4137
"AccountHolderResource": AccountHolderResource,
4238
"AuthenticationSessionRequest": AuthenticationSessionRequest,
4339
"AuthenticationSessionResponse": AuthenticationSessionResponse,
44-
"BalanceAccountResource": BalanceAccountResource,
4540
"DefaultErrorResponseEntity": DefaultErrorResponseEntity,
4641
"InvalidField": InvalidField,
4742
"LegalEntityResource": LegalEntityResource,
48-
"MerchantAccountResource": MerchantAccountResource,
4943
"PaymentInstrumentResource": PaymentInstrumentResource,
5044
"Policy": Policy,
5145
"Resource": Resource,

src/typings/sessionAuthentication/resource.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ export class Resource {
1717

1818
static readonly mapping: {[index: string]: string} | undefined = {
1919
"accountHolder": "AccountHolderResource",
20-
"balanceAccount": "BalanceAccountResource",
2120
"legalEntity": "LegalEntityResource",
22-
"merchantAccount": "MerchantAccountResource",
2321
"paymentInstrument": "PaymentInstrumentResource",
2422
};
2523

src/typings/sessionAuthentication/resourceType.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99

1010
export enum ResourceType {
1111
LegalEntity = 'legalEntity',
12-
BalanceAccount = 'balanceAccount',
1312
AccountHolder = 'accountHolder',
14-
MerchantAccount = 'merchantAccount',
1513
PaymentInstrument = 'paymentInstrument'
1614
}

0 commit comments

Comments
 (0)