Files
tgex-frontend/lib/mocks/data/external-channels.ts
2025-11-19 12:56:04 +03:00

49 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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: "Экспертиза в продажах",
},
];