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

refactor: 2060 design change post thridpartyrequests transactions #65

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
571 changes: 269 additions & 302 deletions docs/thirdparty-openapi3-snippets.yaml

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions src/thirdparty/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ export namespace Schemas {
export type AuthorizationChannelType = components['schemas']['AuthorizationChannelType']
export type AuthorizationResponseType = components['schemas']['AuthorizationResponseType']
export type AuthorizationsPostRequest = components['schemas']['AuthorizationsPostRequest']
export type BalanceOfPayments = components['schemas']['BalanceOfPayments']
export type BinaryString = components['schemas']['BinaryString']
export type ConsentRequestChannelType = components['schemas']['ConsentRequestChannelType']
export type ConsentRequestChannelTypeOTP = components['schemas']['ConsentRequestChannelTypeOTP']
export type ConsentRequestChannelTypeWeb = components['schemas']['ConsentRequestChannelTypeWeb']
export type ConsentRequestsIDPatchRequest = components['schemas']['ConsentRequestsIDPatchRequest']
export type AuthorizationsIDPutResponse = components['schemas']['AuthorizationsIDPutResponse']
export type ConsentRequestsIDPutResponseOTP = components['schemas']['ConsentRequestsIDPutResponseOTP']
export type ConsentRequestsIDPutResponseOTPAuth = components['schemas']['ConsentRequestsIDPutResponseOTPAuth']
export type ConsentRequestsIDPutResponseWeb = components['schemas']['ConsentRequestsIDPutResponseWeb']
Expand All @@ -42,6 +44,7 @@ export namespace Schemas {
export type ErrorCode = components['schemas']['ErrorCode']
export type ErrorDescription = components['schemas']['ErrorDescription']
export type ErrorInformation = components['schemas']['ErrorInformation']
export type ErrorInformationResponse = components['schemas']['ErrorInformationResponse']
export type Extension = components['schemas']['Extension']
export type ExtensionKey = components['schemas']['ExtensionKey']
export type ExtensionList = components['schemas']['ExtensionList']
Expand All @@ -64,25 +67,34 @@ export namespace Schemas {
export type ParticipantsPostRequest = components['schemas']['ParticipantsPostRequest']
export type PartiesTypeIDPutResponse = components['schemas']['PartiesTypeIDPutResponse']
export type Party = components['schemas']['Party']
export type PartyTPLink = components['schemas']['PartyTPLink']
export type PartyComplexName = components['schemas']['PartyComplexName']
export type PartyIdentifier = components['schemas']['PartyIdentifier']
export type PartyIdInfo = components['schemas']['PartyIdInfo']
export type PartyIdInfoTPLink = components['schemas']['PartyIdInfoTPLink']
export type PartyIdType = components['schemas']['PartyIdType']
export type PartyIdTypeTPLink = components['schemas']['PartyIdTypeTPLink']
export type PartyName = components['schemas']['PartyName']
export type PartyPersonalInfo = components['schemas']['PartyPersonalInfo']
export type PartyResult = components['schemas']['PartyResult']
export type PartySubIdOrType = components['schemas']['PartySubIdOrType']
export type QuotesIDPutResponse = components['schemas']['QuotesIDPutResponse']
export type Refund = components['schemas']['Refund']
export type RefundReason = components['schemas']['RefundReason']
export type Scope = components['schemas']['Scope']
export type SignedCredential = components['schemas']['SignedCredential']
export type ThirdpartyRequestsTransactionsIDAuthorizationsPostRequest = components['schemas']['ThirdpartyRequestsTransactionsIDAuthorizationsPostRequest']
export type ThirdpartyRequestsTransactionsIDAuthorizationsPutResponse = components['schemas']['ThirdpartyRequestsTransactionsIDAuthorizationsPutResponse']
export type ThirdpartyRequestsTransactionsIDPatchResponse = components['schemas']['ThirdpartyRequestsTransactionsIDPatchResponse']
export type ThirdpartyRequestsTransactionsIDPutResponse = components['schemas']['ThirdpartyRequestsTransactionsIDPutResponse']
export type ThirdpartyRequestsTransactionsPostRequest = components['schemas']['ThirdpartyRequestsTransactionsPostRequest']
export type TransactionInitiator = components['schemas']['TransactionInitiator']
export type TransactionInitiatorType = components['schemas']['TransactionInitiatorType']
export type TransactionRequestsPostRequest = components['schemas']['TransactionRequestsPostRequest']
export type TransactionRequestState = components['schemas']['TransactionRequestState']
export type TransactionScenario = components['schemas']['TransactionScenario']
export type TransactionState = components['schemas']['TransactionState']
export type TransactionSubScenario = components['schemas']['TransactionSubScenario']
export type TransactionType = components['schemas']['TransactionType']
export type UnsignedCredential = components['schemas']['UnsignedCredential']
export type VerifiedCredential = components['schemas']['VerifiedCredential']
Expand Down
Loading