Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Commit ac54353

Browse files
Merge pull request #152 from Salable/fix/pricing-table-type
fix: pricing table plans type
2 parents 1a92ddc + d6cfaae commit ac54353

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ export type PricingTablePlan = {
543543
sortOrder: number;
544544
updatedAt: string;
545545
plan: Plan & {
546-
features: Feature & { featureEnumOptions: FeatureEnumOption[] }[];
546+
features: PlanFeature[];
547547
currencies: PlanCurrency[];
548548
};
549549
};
@@ -602,7 +602,7 @@ export type IOrganisationPaymentIntegration = {
602602
export type ProductPricingTable = {
603603
features: IFeature[];
604604
currencies: ICurrency[];
605-
plans: (Plan & { features: IFeature[]; currencies: ICurrency[]; checkoutUrl: string })[];
605+
plans: PricingTablePlan[];
606606
} & Product;
607607

608608
export type CheckLicensesCapabilitiesResponse = {

0 commit comments

Comments
 (0)