feat(libertepay): Added initial setups of the libertepay provider#7
Merged
Conversation
…es and new transaction verification endpoint.
…pdating action buttons, and restructuring key sections for conciseness.
…examples with corresponding API routes, UI pages, and environment variables.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for the LibertePay payment provider, adding all necessary types, schemas, and an adapter to integrate with the LibertePay API. The changes include validation schemas, type definitions, and a fully implemented adapter class for initiating and verifying payments.
LibertePay integration:
LibertePayPaymentSchemaandLibertePayOptionsSchemausingzodfor validating payment payloads, along with their TypeScript types. (packages/node/src/core/provider-schemas/libertepay.schema.ts)packages/node/src/providers/libertepay/types.ts)LibertePayAdapterclass to handle payment initiation, transaction verification, and status mapping, including error handling and schema validation. (packages/node/src/providers/libertepay/libertepay.adapter.ts)