Skip to content

Commit a6e1374

Browse files
author
Lewis Daly
authored
feat(thirdparty)!: changes for latest API draft (#113)
* feat: update definitions based on latest api draft * feat: update definitions based on latest api draft * feat: tidy up consent object and payloads * feat: tidy up consent object and payloads * feat: tidy up consent object and payloads * feat(thirdparty)!: remove deprecated resources from tp def * feat(thirdparty): rebuild api * feat(thirdparty): rebuild api * feat(test): fix tests for updated data models * feat(test): fix tests for updated data models * fix(ci): fix pr tools * fix(ci): fix pr tools * feat: add pisp and dfsp templates * feat: add pisp and dfsp api rendering
1 parent f77881d commit a6e1374

File tree

57 files changed

+11218
-7432
lines changed

Some content is hidden

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

57 files changed

+11218
-7432
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ version: 2.1
99
orbs:
1010
slack: circleci/[email protected]
1111
github-release: h-matsuo/[email protected]
12-
pr-tools: mojaloop/[email protected].8
12+
pr-tools: mojaloop/[email protected].10
1313

1414
##
1515
# defaults

docs/thirdparty-openapi3-snippets.yaml

+879-1,135
Large diffs are not rendered by default.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
"build:v1.0": "openapi bundle --output docs/fspiop-rest-v1.0-openapi3-snippets.yaml --ext yaml fspiop/v1_0/openapi3/openapi.yaml && swagger-cli validate docs/fspiop-rest-v1.0-openapi3-snippets.yaml",
1717
"build:v1.1": "openapi bundle --output docs/fspiop-rest-v1.1-openapi3-snippets.yaml --ext yaml fspiop/v1_1/openapi3/openapi.yaml && swagger-cli validate docs/fspiop-rest-v1.1-openapi3-snippets.yaml",
1818
"build:thirdparty": "openapi bundle --dereferenced --output docs/thirdparty-openapi3-snippets.yaml --ext yaml thirdparty/openapi3/openapi.yaml && swagger-cli validate docs/thirdparty-openapi3-snippets.yaml",
19+
"build:thirdparty-dfsp": "swagger-cli bundle -o ./thirdparty/openapi3/thirdparty-dfsp-api.yaml -t yaml ./thirdparty/openapi3/thirdparty-dfsp-api.template.yaml",
20+
"build:thirdparty-pisp": "swagger-cli bundle -o ./thirdparty/openapi3/thirdparty-pisp-api.yaml -t yaml ./thirdparty/openapi3/thirdparty-pisp-api.template.yaml",
1921
"lint": "eslint ./src/**/*.ts *.js",
2022
"prepare": "npm run build",
2123
"release": "standard-version --releaseCommitMessageFormat 'chore(release): {{currentTag}} [skip ci]'",

src/thirdparty/index.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export * as openapi from './openapi'
55

66
export namespace Schemas {
77
export type Account = components['schemas']['Account']
8-
export type AccountId = components['schemas']['AccountId']
8+
export type AccountAddress = components['schemas']['AccountAddress']
99
export type AccountsIDPutResponse = components['schemas']['AccountsIDPutResponse']
1010
export type Amount = components['schemas']['Amount']
1111
export type AmountType = components['schemas']['AmountType']
@@ -19,20 +19,22 @@ export namespace Schemas {
1919
export type ConsentRequestChannelTypeOTP = components['schemas']['ConsentRequestChannelTypeOTP']
2020
export type ConsentRequestChannelTypeWeb = components['schemas']['ConsentRequestChannelTypeWeb']
2121
export type ConsentRequestsIDPatchRequest = components['schemas']['ConsentRequestsIDPatchRequest']
22-
export type AuthorizationsIDPutResponse = components['schemas']['AuthorizationsIDPutResponse']
2322
export type ConsentRequestsIDPutResponseOTP = components['schemas']['ConsentRequestsIDPutResponseOTP']
2423
export type ConsentRequestsIDPutResponseWeb = components['schemas']['ConsentRequestsIDPutResponseWeb']
2524
export type ConsentRequestsPostRequest = components['schemas']['ConsentRequestsPostRequest']
26-
export type ConsentScopeType = components['schemas']['ConsentScopeType']
2725
export type ConsentsIDPatchResponseRevoked = components['schemas']['ConsentsIDPatchResponseRevoked']
2826
export type ConsentsIDPatchResponseVerified = components['schemas']['ConsentsIDPatchResponseVerified']
2927
export type ConsentsIDPutResponseSigned = components['schemas']['ConsentsIDPutResponseSigned']
3028
export type ConsentsIDPutResponseVerified = components['schemas']['ConsentsIDPutResponseVerified']
3129
export type ConsentsPostRequestAUTH = components['schemas']['ConsentsPostRequestAUTH']
3230
export type ConsentsPostRequestPISP = components['schemas']['ConsentsPostRequestPISP']
33-
export type ConsentStatusTypeRevoked = components['schemas']['ConsentStatusTypeRevoked']
34-
export type ConsentStatusTypeVerified = components['schemas']['ConsentStatusTypeVerified']
31+
export type ConsentStatusRevoked = components['schemas']['ConsentStatusRevoked']
32+
export type ConsentStatusIssued = components['schemas']['ConsentStatusIssued']
33+
export type ConsentStatus = ConsentStatusRevoked | ConsentStatusIssued
3534
export type CorrelationId = components['schemas']['CorrelationId']
35+
export type CredentialStatusVerified = components['schemas']['CredentialStatusVerified']
36+
export type CredentialStatusPending = components['schemas']['CredentialStatusPending']
37+
export type CredentialStatus = CredentialStatusVerified | CredentialStatusPending
3638
export type CredentialType = components['schemas']['CredentialType']
3739
export type Currency = components['schemas']['Currency']
3840
export type DateOfBirth = components['schemas']['DateOfBirth']
@@ -83,6 +85,7 @@ export namespace Schemas {
8385
export type Refund = components['schemas']['Refund']
8486
export type RefundReason = components['schemas']['RefundReason']
8587
export type Scope = components['schemas']['Scope']
88+
export type ScopeAction = components['schemas']['ScopeAction']
8689
export type ServicesServiceTypePutResponse = components['schemas']['ServicesServiceTypePutResponse']
8790
export type ServiceType = components['schemas']['ServiceType']
8891
export type SignedCredential = components['schemas']['SignedCredential']

0 commit comments

Comments
 (0)