75 lines
1.4 KiB
TypeScript
75 lines
1.4 KiB
TypeScript
import type { Favorite } from "../types"
|
|
|
|
export const mockFavorites: Favorite[] = [
|
|
{
|
|
id: "9201",
|
|
userId: "1001",
|
|
targetType: "player",
|
|
targetId: "1005",
|
|
createdAt: "2025-01-06T10:30:00Z",
|
|
},
|
|
{
|
|
id: "9202",
|
|
userId: "1001",
|
|
targetType: "shop",
|
|
targetId: "3001",
|
|
createdAt: "2025-01-10T14:00:00Z",
|
|
},
|
|
{
|
|
id: "9203",
|
|
userId: "1001",
|
|
targetType: "player",
|
|
targetId: "1007",
|
|
createdAt: "2025-01-16T20:00:00Z",
|
|
},
|
|
{
|
|
id: "9204",
|
|
userId: "1002",
|
|
targetType: "player",
|
|
targetId: "1006",
|
|
createdAt: "2025-01-09T18:00:00Z",
|
|
},
|
|
{
|
|
id: "9205",
|
|
userId: "1002",
|
|
targetType: "shop",
|
|
targetId: "3002",
|
|
createdAt: "2025-01-12T09:00:00Z",
|
|
},
|
|
{
|
|
id: "9206",
|
|
userId: "1003",
|
|
targetType: "player",
|
|
targetId: "1008",
|
|
createdAt: "2025-01-12T01:00:00Z",
|
|
},
|
|
{
|
|
id: "9207",
|
|
userId: "1004",
|
|
targetType: "player",
|
|
targetId: "1007",
|
|
createdAt: "2025-01-15T22:30:00Z",
|
|
},
|
|
{
|
|
id: "9208",
|
|
userId: "1004",
|
|
targetType: "shop",
|
|
targetId: "3001",
|
|
createdAt: "2025-01-20T11:00:00Z",
|
|
},
|
|
{
|
|
id: "9209",
|
|
userId: "1001",
|
|
targetType: "player",
|
|
targetId: "1009",
|
|
createdAt: "2025-01-18T23:30:00Z",
|
|
},
|
|
{
|
|
id: "9210",
|
|
userId: "1003",
|
|
targetType: "shop",
|
|
targetId: "3003",
|
|
createdAt: "2025-02-09T15:00:00Z",
|
|
},
|
|
]
|