add list to catalog

This commit is contained in:
2025-12-21 00:30:29 -03:00
parent fed47b09ea
commit f35253a8d4
10 changed files with 510 additions and 172 deletions

View File

@@ -0,0 +1,16 @@
export type Cert = {
exp_interval: number
}
export type Course = {
id: string
name: string
access_period: string
cert: Cert
metadata__unit_price?: number
}
export type CustomPricing = {
sk: string
unit_price: number
}