Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type PlanAssignment } from '@amalia/core/models';
import { company } from './company';
import { plans } from './plans';
import { users } from './users';
export const planAssignments = [
{
id: '42b383d0-5373-4287-b6f1-7d793ea0f45a',
planId: plans.televente.id,
userId: users.admin.id,
plan: plans.televente,
user: users.admin,
company,
createdAt: new Date(),
updatedAt: new Date(),
effectiveAsOf: null,
effectiveUntil: null,
mainTeamId: null,
},
] as const satisfies PlanAssignment[];
|