Skip to content

Commit 5303359

Browse files
committed
library now return accounts listing
1 parent c0c987b commit 5303359

File tree

74 files changed

+5391
-1402
lines changed

Some content is hidden

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

74 files changed

+5391
-1402
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
composer.phar
55
/vendor/
6+
/node_modules/
67

78
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
89
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file

.openapi-generator/FILES

Lines changed: 59 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,22 @@ docs/Api/DefaultApi.md
88
docs/Model/Account.md
99
docs/Model/AccountBalance.md
1010
docs/Model/AccountCurrencyExchange.md
11+
docs/Model/AccountIdentification.md
1112
docs/Model/AccountRelatedAgents.md
12-
docs/Model/GetAccounts400Response.md
13+
docs/Model/AccountRelationship.md
14+
docs/Model/AccountServicer.md
15+
docs/Model/AccountSuitableScope.md
16+
docs/Model/GetAccountBalance400Response.md
17+
docs/Model/GetAccountBalance403Response.md
18+
docs/Model/GetAccountBalance404Response.md
19+
docs/Model/GetAccountBalance405Response.md
20+
docs/Model/GetAccountBalance412Response.md
21+
docs/Model/GetAccountBalance429Response.md
22+
docs/Model/GetAccountBalance500Response.md
23+
docs/Model/GetAccountBalance503Response.md
24+
docs/Model/GetAccounts200Response.md
1325
docs/Model/GetAccounts403Response.md
14-
docs/Model/GetAccounts404Response.md
15-
docs/Model/GetAccounts405Response.md
16-
docs/Model/GetAccounts412Response.md
17-
docs/Model/GetAccounts429Response.md
18-
docs/Model/GetAccounts500Response.md
19-
docs/Model/GetAccounts503Response.md
26+
docs/Model/GetAccounts403ResponseErrorsInner.md
2027
docs/Model/GetStatements400Response.md
2128
docs/Model/GetStatements403Response.md
2229
docs/Model/GetStatements404Response.md
@@ -37,15 +44,22 @@ lib/HeaderSelector.php
3744
lib/Model/Account.php
3845
lib/Model/AccountBalance.php
3946
lib/Model/AccountCurrencyExchange.php
47+
lib/Model/AccountIdentification.php
4048
lib/Model/AccountRelatedAgents.php
41-
lib/Model/GetAccounts400Response.php
49+
lib/Model/AccountRelationship.php
50+
lib/Model/AccountServicer.php
51+
lib/Model/AccountSuitableScope.php
52+
lib/Model/GetAccountBalance400Response.php
53+
lib/Model/GetAccountBalance403Response.php
54+
lib/Model/GetAccountBalance404Response.php
55+
lib/Model/GetAccountBalance405Response.php
56+
lib/Model/GetAccountBalance412Response.php
57+
lib/Model/GetAccountBalance429Response.php
58+
lib/Model/GetAccountBalance500Response.php
59+
lib/Model/GetAccountBalance503Response.php
60+
lib/Model/GetAccounts200Response.php
4261
lib/Model/GetAccounts403Response.php
43-
lib/Model/GetAccounts404Response.php
44-
lib/Model/GetAccounts405Response.php
45-
lib/Model/GetAccounts412Response.php
46-
lib/Model/GetAccounts429Response.php
47-
lib/Model/GetAccounts500Response.php
48-
lib/Model/GetAccounts503Response.php
62+
lib/Model/GetAccounts403ResponseErrorsInner.php
4963
lib/Model/GetStatements400Response.php
5064
lib/Model/GetStatements403Response.php
5165
lib/Model/GetStatements404Response.php
@@ -60,3 +74,34 @@ lib/Model/TransactionList.php
6074
lib/Model/TransactionListTransactionsInner.php
6175
lib/ObjectSerializer.php
6276
phpunit.xml.dist
77+
test/Api/DefaultApiTest.php
78+
test/Model/AccountBalanceTest.php
79+
test/Model/AccountCurrencyExchangeTest.php
80+
test/Model/AccountIdentificationTest.php
81+
test/Model/AccountRelatedAgentsTest.php
82+
test/Model/AccountRelationshipTest.php
83+
test/Model/AccountServicerTest.php
84+
test/Model/AccountSuitableScopeTest.php
85+
test/Model/AccountTest.php
86+
test/Model/GetAccountBalance400ResponseTest.php
87+
test/Model/GetAccountBalance403ResponseTest.php
88+
test/Model/GetAccountBalance404ResponseTest.php
89+
test/Model/GetAccountBalance405ResponseTest.php
90+
test/Model/GetAccountBalance412ResponseTest.php
91+
test/Model/GetAccountBalance429ResponseTest.php
92+
test/Model/GetAccountBalance500ResponseTest.php
93+
test/Model/GetAccountBalance503ResponseTest.php
94+
test/Model/GetAccounts200ResponseTest.php
95+
test/Model/GetAccounts403ResponseErrorsInnerTest.php
96+
test/Model/GetAccounts403ResponseTest.php
97+
test/Model/GetStatements400ResponseTest.php
98+
test/Model/GetStatements403ResponseTest.php
99+
test/Model/GetStatements404ResponseTest.php
100+
test/Model/GetTransactions400ResponseTest.php
101+
test/Model/GetTransactions401ResponseTest.php
102+
test/Model/GetTransactions404ResponseTest.php
103+
test/Model/StatementListAccountStatementsInnerPeriodTest.php
104+
test/Model/StatementListAccountStatementsInnerTest.php
105+
test/Model/StatementListTest.php
106+
test/Model/TransactionListTest.php
107+
test/Model/TransactionListTransactionsInnerTest.php

.openapi-generator/templates/ObjectSerializer.mustache

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ class ObjectSerializer
5050
* Serialize data
5151
*
5252
* @param mixed $data the data to serialize
53-
* @param string $type the OpenAPIToolsType of the data
54-
* @param string $format the format of the OpenAPITools type of the data
53+
* @param string|null $type the OpenAPIToolsType of the data
54+
* @param string|null $format the format of the OpenAPITools type of the data
5555
*
5656
* @return scalar|object|array|null serialized form of $data
5757
*/
@@ -294,7 +294,7 @@ class ObjectSerializer
294294
*/
295295
public static function convertBoolToQueryStringFormat(bool $value)
296296
{
297-
if (Configuration::BOOLEAN_FORMAT_STRING === Configuration::getDefaultConfiguration()->getBooleanFormatForQueryString()) {
297+
if (Configuration::BOOLEAN_FORMAT_STRING == Configuration::getDefaultConfiguration()->getBooleanFormatForQueryString()) {
298298
return $value ? 'true' : 'false';
299299
}
300300
@@ -401,7 +401,7 @@ class ObjectSerializer
401401
*
402402
* @param mixed $data object or primitive to be deserialized
403403
* @param string $class class name is passed as a string
404-
* @param string[] $httpHeaders HTTP headers
404+
* @param string[]|null $httpHeaders HTTP headers
405405
*
406406
* @return object|array|null a single or an array of $class instances
407407
*/

.openapi-generator/templates/gitignore.mustache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
composer.phar
55
/vendor/
6+
/node_modules/
67

78
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
89
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file

Examples/auth.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
'redirect_uri' => Shr::cfg('REDIRECT_URI'),
3636
'state' => Fnc::randomString(),
3737
'access_type' => 'offline',
38-
// 'scope' => implode('%20', [
39-
// 'siblings.accounts',
40-
// // 'siblings.payments',
41-
// // 'AISP',
42-
// // 'PISP'
43-
// ]),
38+
// 'scope' => implode('%20', [
39+
// 'siblings.accounts',
40+
// // 'siblings.payments',
41+
// // 'AISP',
42+
// // 'PISP'
43+
// ]),
4444
];
4545

4646
session_start();
@@ -53,4 +53,3 @@
5353
} else {
5454
echo '<a href='.$idpUri.'>'.$idpUri.'</a>';
5555
}
56-

0 commit comments

Comments
 (0)