setup restuarant

This commit is contained in:
2025-12-27 10:40:15 +03:30
parent 21da5d52f8
commit c8e00f9e1a
6 changed files with 83 additions and 34 deletions
+3 -3
View File
@@ -20,7 +20,7 @@ export interface RestaurantData {
marriageDateScore: string;
referrerScore: string;
};
plan: PlanEnum.Premium;
plan: PlanEnum;
subscriptionId: string;
}
@@ -84,7 +84,7 @@ export const restaurantsData: RestaurantData[] = [
marriageDateScore: '10000',
referrerScore: '10000',
},
plan: PlanEnum.Premium,
plan: PlanEnum.Base,
subscriptionId: 'sub_seed_boote_001',
},
{
@@ -115,7 +115,7 @@ export const restaurantsData: RestaurantData[] = [
marriageDateScore: '10000',
referrerScore: '10000',
},
plan: PlanEnum.Premium,
plan: PlanEnum.Base,
subscriptionId: 'sub_seed_honar_001',
},
];