Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: adding currencies xxx and xts which are part of iso 4217 #115

Merged
merged 8 commits into from
Oct 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/fspiop-rest-v1.0-openapi3-snippets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2452,6 +2452,8 @@ components:
- XDR
- XOF
- XPF
- XTS
- XXX
- YER
- ZAR
- ZMW
Expand Down
2 changes: 2 additions & 0 deletions docs/fspiop-rest-v1.1-openapi3-snippets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2654,6 +2654,8 @@ components:
- XDR
- XOF
- XPF
- XTS
- XXX
- YER
- ZAR
- ZMW
Expand Down
2 changes: 2 additions & 0 deletions docs/thirdparty-openapi3-snippets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,8 @@ paths:
- XDR
- XOF
- XPF
- XTS
- XXX
- YER
- ZAR
- ZMW
Expand Down
2 changes: 2 additions & 0 deletions fspiop/v1_0/openapi3/components/schemas/Currency.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ enum:
- XDR
- XOF
- XPF
- XTS
- XXX
- YER
- ZAR
- ZMW
Expand Down
2 changes: 2 additions & 0 deletions fspiop/v1_1/openapi3/components/schemas/Currency.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ enum:
- XDR
- XOF
- XPF
- XTS
- XXX
- YER
- ZAR
- ZMW
Expand Down
517 changes: 283 additions & 234 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.6",
"jest": "^26.5.3",
"jest-junit": "12.0.0",
"jest-junit": "^12.0.0",
"lint-staged": "^10.5.3",
"npm-audit-resolver": "2.2.0",
"standard-version": "^9.3.1",
Expand Down
2 changes: 2 additions & 0 deletions src/fspiop/v1_0/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1958,6 +1958,8 @@ export interface components {
| "XDR"
| "XOF"
| "XPF"
| "XTS"
| "XXX"
| "YER"
| "ZAR"
| "ZMW"
Expand Down
2 changes: 2 additions & 0 deletions src/fspiop/v1_1/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2030,6 +2030,8 @@ export interface components {
| "XDR"
| "XOF"
| "XPF"
| "XTS"
| "XXX"
| "YER"
| "ZAR"
| "ZMW"
Expand Down
Loading