49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import { ExternalChannel } from "@/lib/types/api";
|
||
|
||
// ============================================================================
|
||
// Mock External Channels Data
|
||
// ============================================================================
|
||
|
||
export const mockExternalChannels: ExternalChannel[] = [
|
||
{
|
||
id: "550e8400-e29b-41d4-a716-446655440020",
|
||
telegram_id: -1001111111111,
|
||
title: "Канал о Маркетинге",
|
||
username: "marketing_pro",
|
||
subscribers_count: 50000,
|
||
description: "Лучшие практики маркетинга",
|
||
},
|
||
{
|
||
id: "550e8400-e29b-41d4-a716-446655440021",
|
||
telegram_id: -1002222222222,
|
||
title: "Бизнес и Стартапы",
|
||
username: "business_startups",
|
||
subscribers_count: 120000,
|
||
description: "Новости мира бизнеса",
|
||
},
|
||
{
|
||
id: "550e8400-e29b-41d4-a716-446655440022",
|
||
telegram_id: -1003333333333,
|
||
title: "IT и Технологии",
|
||
username: "it_tech_news",
|
||
subscribers_count: 85000,
|
||
description: "Все о новых технологиях",
|
||
},
|
||
{
|
||
id: "550e8400-e29b-41d4-a716-446655440023",
|
||
telegram_id: -1004444444444,
|
||
title: "Крипто Инвестиции",
|
||
username: "crypto_invest",
|
||
subscribers_count: 200000,
|
||
description: null,
|
||
},
|
||
{
|
||
id: "550e8400-e29b-41d4-a716-446655440024",
|
||
telegram_id: -1005555555555,
|
||
title: "Продажи и Переговоры",
|
||
username: "sales_expert",
|
||
subscribers_count: 35000,
|
||
description: "Экспертиза в продажах",
|
||
},
|
||
];
|