- Restructure backend with cleaner module organization - Move gift-cards, segpay, webhooks to proper locations - Add payments frontend package - Add providers abstraction layer 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
417 B
TypeScript
14 lines
417 B
TypeScript
/**
|
|
* @lilith/payments
|
|
*
|
|
* Payment processing feature for lilith-platform.
|
|
* Includes Segpay integration, gift cards, subscriptions, and webhooks.
|
|
*
|
|
* Subpath exports:
|
|
* - @lilith/payments/providers - Shared types and interfaces
|
|
* - @lilith/payments/frontend - React hooks and components
|
|
* - @lilith/payments/backend - NestJS services
|
|
*/
|
|
|
|
// Re-export everything for convenience
|
|
export * from './providers'
|