2026-07-03 01:29:04 +04:00
|
|
|
export interface FeatureFlagsConfig {
|
|
|
|
|
wishlist: boolean;
|
|
|
|
|
compare: boolean;
|
|
|
|
|
reviews: boolean;
|
2026-07-10 13:43:53 +04:00
|
|
|
questions: boolean;
|
|
|
|
|
comments: boolean;
|
|
|
|
|
recommendations: boolean;
|
2026-07-03 01:29:04 +04:00
|
|
|
blog: boolean;
|
|
|
|
|
chat: boolean;
|
|
|
|
|
analytics: boolean;
|
|
|
|
|
notifications: boolean;
|
|
|
|
|
coupons: boolean;
|
|
|
|
|
loyalty: boolean;
|
|
|
|
|
giftCards: boolean;
|
|
|
|
|
invoices: boolean;
|
|
|
|
|
[key: string]: boolean;
|
|
|
|
|
}
|