Files
dkala-api/src/seeders/data/shops.data.ts
T
2026-02-12 10:21:25 +03:30

61 lines
1.5 KiB
TypeScript

export interface ShopData {
name: string;
slug: string;
domain: string;
isActive: boolean;
phone: string;
logo?: string;
score: {
purchaseAmount: string;
purchaseScore: string;
scoreAmount: string;
scoreCredit: string;
birthdayScore: string;
registerScore: string;
marriageDateScore: string;
referrerScore: string;
};
subscriptionId: string;
}
export const shopsData: ShopData[] = [
{
name: 'ژیوان',
slug: 'zhivan',
domain: 'https://dkala-front.dev.danakcorp.com/zhivan',
isActive: true,
phone: '',
logo: 'https://dmenu.danakcorp.com/uploads/images/store/store_1638870352717_61a3661f37a0d33354a6d210.png',
score: {
purchaseAmount: '100000',
purchaseScore: '0',
scoreAmount: '0',
scoreCredit: '0',
birthdayScore: '0',
registerScore: '0',
marriageDateScore: '0',
referrerScore: '0',
},
subscriptionId: 'sub_seed_zhivan_001',
},
{
name: 'بوته',
slug: 'boote',
domain: 'https://dkala-front.dev.danakcorp.com/boote',
isActive: true,
phone: '',
logo: 'https://dmenu.danakcorp.com/uploads/images/store/store_1641199914860_61d2b72b2e8bd97126a70b5f.png',
score: {
purchaseAmount: '100000',
purchaseScore: '0',
scoreAmount: '0',
scoreCredit: '0',
birthdayScore: '0',
registerScore: '0',
marriageDateScore: '0',
referrerScore: '0',
},
subscriptionId: 'sub_seed_boote_001',
},
]