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

OBG API clean up #1270

Merged
merged 7 commits into from
Jul 1, 2021
Merged
Show file tree
Hide file tree
Changes from 3 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
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ paths:
- $ref: "#/components/parameters/withBalance"
- $ref: "#/components/parameters/online"

security:
- BearerAuthOAuth: []
responses:
"200":
$ref: "#/components/responses/200_AccountList"
Expand Down Expand Up @@ -93,8 +91,6 @@ paths:
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/pageSize"

security:
- BearerAuthOAuth: []
responses:
"200":
$ref: "#/components/responses/200_AccountsTransactions"
Expand Down Expand Up @@ -133,8 +129,6 @@ paths:
- $ref: "#/components/parameters/deltaList"
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/pageSize"
security:
- BearerAuthOAuth: []
responses:
"200":
$ref: "#/components/responses/200_AccountsTransactions"
Expand Down Expand Up @@ -165,8 +159,6 @@ paths:
- $ref: "./tpp_banking_api_commons.yml#/components/parameters/ServiceSessionPassword"
- $ref: "./tpp_banking_api_commons.yml#/components/parameters/X-Request-ID"

security:
- BearerAuthOAuth: [ ]
responses:
"200":
$ref: "#/components/responses/204_NoContent"
Expand Down Expand Up @@ -1096,19 +1088,3 @@ components:
type: string
maxLength: 70
example: "Ultimate Debtor"

securitySchemes:
BearerAuthOAuth:
description: |
Bearer Token.
type: http
scheme: bearer
accessCode:
type: oauth2
flows:
authorizationCode:
authorizationUrl: "http://example.com/oauth/auth"
tokenUrl: "http://example.com/oauth/token"
scopes:
write: allows modifying resources
read: allows reading resources
Original file line number Diff line number Diff line change
Expand Up @@ -165,19 +165,3 @@ components:
type: object
additionalProperties:
type: string

securitySchemes:
BearerAuthOAuth:
description: |
Bearer Token.
type: http
scheme: bearer
accessCode:
type: oauth2
flows:
authorizationCode:
authorizationUrl: 'http://example.com/oauth/auth'
tokenUrl: 'http://example.com/oauth/token'
scopes:
write: allows modifying resources
read: allows reading resources
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ paths:
responses:
202:
$ref: "#/components/responses/202_PaymentInitiationResponse"
security:
- {}
- BearerAuthOAuth: []
x-codegen-request-body-name: body

get:
Expand All @@ -45,9 +42,6 @@ paths:
operationId: getPaymentInformation
tags:
- TPP Banking API Payment Status (PIS)
security:
- {}
- BearerAuthOAuth: []
parameters:
#header
- $ref: "./tpp_banking_api_commons.yml#/components/parameters/X-Timestamp-UTC"
Expand All @@ -71,9 +65,6 @@ paths:
operationId: getPaymentStatus
tags:
- TPP Banking API Payment Status (PIS)
security:
- {}
- BearerAuthOAuth: []
parameters:
#header
- $ref: "./tpp_banking_api_commons.yml#/components/parameters/X-Timestamp-UTC"
Expand Down Expand Up @@ -262,19 +253,3 @@ components:
description: Text to be displayed to the PSU.
type: string
maxLength: 500

securitySchemes:
BearerAuthOAuth:
description: |
Bearer Token.
type: http
scheme: bearer
accessCode:
type: oauth2
flows:
authorizationCode:
authorizationUrl: "http://example.com/oauth/auth"
tokenUrl: "http://example.com/oauth/token"
scopes:
write: allows modifying resources
read: allows reading resources
Original file line number Diff line number Diff line change
Expand Up @@ -91,22 +91,6 @@ components:
schema:
$ref: '#/components/schemas/PsuPaymentSessionResponse'

securitySchemes:
BearerAuthOAuth:
description: |
Bearer Token.
type: http
scheme: bearer
accessCode:
type: oauth2
flows:
authorizationCode:
authorizationUrl: 'http://example.com/oauth/auth'
tokenUrl: 'http://example.com/oauth/token'
scopes:
write: allows modifying resources
read: allows reading resources

schemas:
PsuConsentSessionResponse:
type: object
Expand Down
Loading