mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
ITOTEAM-609 search event>
This commit is contained in:
@@ -4,7 +4,7 @@ import { z } from 'zod';
|
||||
const eventListSchema = z.array(z.object({
|
||||
HasAttachments: z.boolean(),
|
||||
IsAllDayEvent: z.boolean(),
|
||||
EventId: z.string(),
|
||||
EventId: z.any(),
|
||||
Subject: z.string(),
|
||||
Location: z.string().nullable(),
|
||||
CalendarId: z.string(),
|
||||
@@ -16,7 +16,8 @@ const eventListSchema = z.array(z.object({
|
||||
OptionalAttendees: z.string().nullable(),
|
||||
HumanDate: z.string(),
|
||||
TimeZone: z.string(),
|
||||
IsPrivate: z.boolean()
|
||||
IsPrivate: z.boolean(),
|
||||
createdAt: z.string()
|
||||
}));
|
||||
|
||||
export type EventList = z.infer<typeof eventListSchema>
|
||||
|
||||
@@ -2,9 +2,7 @@ export class SearchList {
|
||||
ApplicationType: number | string;
|
||||
Assunto: string;
|
||||
Data: string;
|
||||
DocTypeDesc: string;
|
||||
EntidadeOrganicaId: number;
|
||||
EntidadeOrganicaNome: string;
|
||||
DocTypeDesc?: 'Acções' | 'Publicações';
|
||||
Id: string;
|
||||
appName?: string;
|
||||
ApplicationName: string;
|
||||
|
||||
Reference in New Issue
Block a user