This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/modelSchema/teamShareBase.ts

19 lines
509 B
TypeScript

import { type TypeOf, nativeEnum } from 'zod'
import { AbstractSchema } from './abstract'
import { DateSchema } from './common/date'
import { IdSchema } from './common/id'
import { RIGHTS } from '@/constants/rights'
export const TeamShareBaseSchema = AbstractSchema.extend({
teamId: IdSchema.default(0), // ITeam['id']
right: nativeEnum(RIGHTS).default(RIGHTS.READ),
created: DateSchema.nullable(),
updated: DateSchema.nullable(),
})
export type ITeamShareBase = TypeOf<typeof TeamShareBaseSchema>