Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 3b6259e

Browse files
feat: subscription product price (#815)
1 parent 44685ee commit 3b6259e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/types/subscription-products.d.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,15 @@ export interface SubscriptionProductBase {
1818
attributes: {
1919
created_at: string
2020
description: string
21-
main_image: string
21+
main_image: string | null
2222
name: string
2323
sku: string
2424
updated_at: string
25+
price: {
26+
[key: string]: {
27+
amount: number
28+
}
29+
}
2530
},
2631
}
2732

0 commit comments

Comments
 (0)