platform-codebase/@packages/@plugins/src/index.ts

20 lines
581 B
TypeScript
Raw Normal View History

/**
* @lilith/plugin-payment
*
* @deprecated This package has been moved to @lilith/payments
*
* Please update imports to use the new location:
*
* Before: import { ... } from '@lilith/plugin-payment'
* After: import { ... } from '@lilith/payments/frontend'
* import { ... } from '@lilith/payments/providers'
*
* This re-export exists for backwards compatibility only.
*/
// Re-export types from providers
export * from '../../../features/payments/providers'
// Re-export frontend (hooks, components, api)
export * from '../../../features/payments/frontend'