Skip to content

Commit

Permalink
Merge pull request #9 from ConsumerDataStandardsAustralia/feature/v1.…
Browse files Browse the repository at this point in the history
…26.0

Feature/v1.26.0
  • Loading branch information
tom-schier authored Oct 4, 2023
2 parents 06f689b + a91c2a9 commit 6c38694
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 68 deletions.
65 changes: 31 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cds-au/holder-sdk",
"version": "1.1.0",
"version": "1.2.0",
"description": "NodeJS middleware to handle error generation in line with Australian Consumer Data Standards technical specifications",
"main": "dist/index.js",
"scripts": {
Expand All @@ -17,7 +17,7 @@
"author": "Tomas Schier",
"license": "ISC",
"devDependencies": {
"@types/consumer-data-standards": "^6.0.0",
"@types/consumer-data-standards": "^7.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/uuid": "^8.3.1",
Expand Down
2 changes: 1 addition & 1 deletion src/data/cdr-energy-endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"requestType": "GET",
"requestPath": "/energy/accounts/{accountId}/balance",
"requiresXFAPIAuthdate": false,
"authScopesRequired": " energy:billing:read",
"authScopesRequired": "energy:billing:read",
"requiresCDSClientHeader": false,
"requiresXv": true,
"requiresCDSArrangementID": false
Expand Down
36 changes: 18 additions & 18 deletions src/data/default-banking.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
{
"requestType": "GET",
"requestPath": "/banking/accounts/{accountId}/balance",
"minSupportedVersion": 3,
"maxSupportedVersion": 5
"minSupportedVersion": 1,
"maxSupportedVersion": 1
},
{
"requestType": "GET",
"requestPath": "/banking/accounts/{accountId}",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 3,
"maxSupportedVersion": 3
},
{
"requestType": "GET",
Expand Down Expand Up @@ -62,44 +62,44 @@
{
"requestType": "GET",
"requestPath": "/banking/accounts/{accountId}/payments/scheduled",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 2,
"maxSupportedVersion": 2
},
{
"requestType": "GET",
"requestPath": "/banking/payments/scheduled",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 2,
"maxSupportedVersion": 2
},
{
"requestType": "POST",
"requestPath": "/banking/payments/scheduled",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 2,
"maxSupportedVersion": 2
},
{
"requestType": "GET",
"requestPath": "/banking/payees",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 2,
"maxSupportedVersion": 2
},
{
"requestType": "GET",
"requestPath": "/banking/payees/{payeeId}",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 2,
"maxSupportedVersion": 2
} ,
{
"requestType": "GET",
"requestPath": "/banking/products",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 3,
"maxSupportedVersion": 3
} ,
{
"requestType": "GET",
"requestPath": "/banking/products/{productId}",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 4,
"maxSupportedVersion": 4
}

]
2 changes: 1 addition & 1 deletion src/data/default-common.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
{
"requestType": "GET",
"requestPath": "/common/customer/detail",
"minSupportedVersion": 1,
"minSupportedVersion": 2,
"maxSupportedVersion": 2
},
{
Expand Down
19 changes: 7 additions & 12 deletions src/data/default-energy.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
[
{
"requestType": "GET",
"requestPath": "/banking/payments/scheduled",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
},
{
"requestType": "GET",
"requestPath": "/energy/plans",
Expand Down Expand Up @@ -128,18 +122,19 @@
{
"requestType": "GET",
"requestPath": "/energy/accounts/{accountId}/billing",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 2,
"maxSupportedVersion": 2
},
{
"requestType": "GET",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"requestPath": "/energy/accounts/billing",
"minSupportedVersion": 2,
"maxSupportedVersion": 2
},
{
"requestType": "POST",
"requestPath": "/energy/accounts/billing",
"minSupportedVersion": 1,
"maxSupportedVersion": 1
"minSupportedVersion": 2,
"maxSupportedVersion": 2
}
]

0 comments on commit 6c38694

Please sign in to comment.