feat: add billing_interval to products supporting one-time, monthly and yearly subscription pricing
This commit is contained in:
@@ -4,6 +4,7 @@ export type Product = {
|
||||
description?: string | null | undefined;
|
||||
base_price: number;
|
||||
is_active: boolean;
|
||||
billing_interval: 'one_time' | 'monthly' | 'yearly';
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
category_id?: string | null;
|
||||
|
||||
Reference in New Issue
Block a user