expo-backend-types 0.37.0 → 0.39.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +408 -26
 - package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
 - package/dist/src/exports.d.ts +1 -0
 - package/dist/src/exports.js +1 -0
 - package/dist/src/i18n/es.d.ts +39 -2
 - package/dist/src/i18n/es.js +39 -2
 - package/dist/src/i18n/es.js.map +1 -1
 - package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +610 -0
 - package/dist/src/ticket/dto/create-many-ticket.dto.js +50 -0
 - package/dist/src/ticket/dto/create-ticket.dto.d.ts +18 -33
 - package/dist/src/ticket/dto/create-ticket.dto.js +2 -1
 - package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -18
 - package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -26
 - package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -26
 - package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +161 -29
 - package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -5
 - package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -26
 - package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -26
 - package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -18
 - package/dist/src/ticket/dto/ticket.dto.d.ts +10 -18
 - package/dist/src/ticket/dto/ticket.dto.js +2 -3
 - package/dist/src/ticket/dto/update-ticket.dto.d.ts +22 -32
 - package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
 - package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +366 -0
 - package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
 - package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
 - package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
 - package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +32 -0
 - package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +20 -0
 - package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
 - package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
 - package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
 - package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
 - package/dist/src/ticket-group/exports.d.ts +5 -0
 - package/dist/src/ticket-group/exports.js +22 -0
 - package/dist/types/prisma-schema/edge.js +15 -5
 - package/dist/types/prisma-schema/index-browser.js +12 -2
 - package/dist/types/prisma-schema/index.d.ts +2178 -167
 - package/dist/types/prisma-schema/index.js +15 -5
 - package/dist/types/prisma-schema/package.json +1 -1
 - package/dist/types/prisma-schema/schema.prisma +22 -3
 - package/dist/types/prisma-schema/wasm.js +12 -2
 - package/dist/types/schema.d.ts +411 -12
 - package/package.json +2 -1
 
| 
         @@ -8,19 +8,15 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       8 
8 
     | 
    
         
             
                        STAFF: "STAFF";
         
     | 
| 
       9 
9 
     | 
    
         
             
                        SPECTATOR: "SPECTATOR";
         
     | 
| 
       10 
10 
     | 
    
         
             
                    }>;
         
     | 
| 
       11 
     | 
    
         
            -
                    status: z.ZodNativeEnum<{
         
     | 
| 
       12 
     | 
    
         
            -
                        BOOKED: "BOOKED";
         
     | 
| 
       13 
     | 
    
         
            -
                        PAID: "PAID";
         
     | 
| 
       14 
     | 
    
         
            -
                        FREE: "FREE";
         
     | 
| 
       15 
     | 
    
         
            -
                    }>;
         
     | 
| 
       16 
11 
     | 
    
         
             
                    fullName: z.ZodString;
         
     | 
| 
       17 
12 
     | 
    
         
             
                    mail: z.ZodString;
         
     | 
| 
       18 
13 
     | 
    
         
             
                    dni: z.ZodString;
         
     | 
| 
       19 
14 
     | 
    
         
             
                    seat: z.ZodNullable<z.ZodNumber>;
         
     | 
| 
      
 15 
     | 
    
         
            +
                    ticketGroupId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       20 
16 
     | 
    
         
             
                    created_at: z.ZodDate;
         
     | 
| 
       21 
17 
     | 
    
         
             
                    updated_at: z.ZodDate;
         
     | 
| 
       22 
18 
     | 
    
         
             
                }, {
         
     | 
| 
       23 
     | 
    
         
            -
                    event: z.ZodObject< 
     | 
| 
      
 19 
     | 
    
         
            +
                    event: z.ZodObject<{
         
     | 
| 
       24 
20 
     | 
    
         
             
                        id: z.ZodString;
         
     | 
| 
       25 
21 
     | 
    
         
             
                        name: z.ZodString;
         
     | 
| 
       26 
22 
     | 
    
         
             
                        date: z.ZodDate;
         
     | 
| 
         @@ -34,14 +30,34 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       34 
30 
     | 
    
         
             
                        supraEventId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       35 
31 
     | 
    
         
             
                        created_at: z.ZodDate;
         
     | 
| 
       36 
32 
     | 
    
         
             
                        updated_at: z.ZodDate;
         
     | 
| 
       37 
     | 
    
         
            -
                    }, " 
     | 
| 
      
 33 
     | 
    
         
            +
                    }, "strip", z.ZodTypeAny, {
         
     | 
| 
       38 
34 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 35 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       39 
36 
     | 
    
         
             
                        name: string;
         
     | 
| 
       40 
37 
     | 
    
         
             
                        date: Date;
         
     | 
| 
      
 38 
     | 
    
         
            +
                        startingDate: Date;
         
     | 
| 
      
 39 
     | 
    
         
            +
                        endingDate: Date;
         
     | 
| 
      
 40 
     | 
    
         
            +
                        created_at: Date;
         
     | 
| 
      
 41 
     | 
    
         
            +
                        updated_at: Date;
         
     | 
| 
      
 42 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 43 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 44 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 45 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 46 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       41 
47 
     | 
    
         
             
                    }, {
         
     | 
| 
       42 
48 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 49 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       43 
50 
     | 
    
         
             
                        name: string;
         
     | 
| 
       44 
51 
     | 
    
         
             
                        date: Date;
         
     | 
| 
      
 52 
     | 
    
         
            +
                        startingDate: Date;
         
     | 
| 
      
 53 
     | 
    
         
            +
                        endingDate: Date;
         
     | 
| 
      
 54 
     | 
    
         
            +
                        created_at: Date;
         
     | 
| 
      
 55 
     | 
    
         
            +
                        updated_at: Date;
         
     | 
| 
      
 56 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 57 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 58 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 59 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 60 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       45 
61 
     | 
    
         
             
                    }>;
         
     | 
| 
       46 
62 
     | 
    
         
             
                    profile: z.ZodNullable<z.ZodObject<{
         
     | 
| 
       47 
63 
     | 
    
         
             
                        id: z.ZodString;
         
     | 
| 
         @@ -125,11 +141,22 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       125 
141 
     | 
    
         
             
                        movedToTrashDate: Date | null;
         
     | 
| 
       126 
142 
     | 
    
         
             
                        role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
         
     | 
| 
       127 
143 
     | 
    
         
             
                    }>>;
         
     | 
| 
      
 144 
     | 
    
         
            +
                    profileId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       128 
145 
     | 
    
         
             
                }>, "strip", z.ZodTypeAny, {
         
     | 
| 
       129 
146 
     | 
    
         
             
                    event: {
         
     | 
| 
       130 
147 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 148 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       131 
149 
     | 
    
         
             
                        name: string;
         
     | 
| 
       132 
150 
     | 
    
         
             
                        date: Date;
         
     | 
| 
      
 151 
     | 
    
         
            +
                        startingDate: Date;
         
     | 
| 
      
 152 
     | 
    
         
            +
                        endingDate: Date;
         
     | 
| 
      
 153 
     | 
    
         
            +
                        created_at: Date;
         
     | 
| 
      
 154 
     | 
    
         
            +
                        updated_at: Date;
         
     | 
| 
      
 155 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 156 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 157 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 158 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 159 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       133 
160 
     | 
    
         
             
                    };
         
     | 
| 
       134 
161 
     | 
    
         
             
                    profile: {
         
     | 
| 
       135 
162 
     | 
    
         
             
                        id: string;
         
     | 
| 
         @@ -162,16 +189,27 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       162 
189 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       163 
190 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       164 
191 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       165 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       166 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       167 
192 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 193 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       168 
194 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       169 
195 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 196 
     | 
    
         
            +
                    profileId: string | null;
         
     | 
| 
      
 197 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       170 
198 
     | 
    
         
             
                }, {
         
     | 
| 
       171 
199 
     | 
    
         
             
                    event: {
         
     | 
| 
       172 
200 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 201 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       173 
202 
     | 
    
         
             
                        name: string;
         
     | 
| 
       174 
203 
     | 
    
         
             
                        date: Date;
         
     | 
| 
      
 204 
     | 
    
         
            +
                        startingDate: Date;
         
     | 
| 
      
 205 
     | 
    
         
            +
                        endingDate: Date;
         
     | 
| 
      
 206 
     | 
    
         
            +
                        created_at: Date;
         
     | 
| 
      
 207 
     | 
    
         
            +
                        updated_at: Date;
         
     | 
| 
      
 208 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 209 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 210 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 211 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 212 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       175 
213 
     | 
    
         
             
                    };
         
     | 
| 
       176 
214 
     | 
    
         
             
                    profile: {
         
     | 
| 
       177 
215 
     | 
    
         
             
                        id: string;
         
     | 
| 
         @@ -204,18 +242,29 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       204 
242 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       205 
243 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       206 
244 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       207 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       208 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       209 
245 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 246 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       210 
247 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       211 
248 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 249 
     | 
    
         
            +
                    profileId: string | null;
         
     | 
| 
      
 250 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       212 
251 
     | 
    
         
             
                }>;
         
     | 
| 
       213 
252 
     | 
    
         
             
            }, "strip", z.ZodTypeAny, {
         
     | 
| 
       214 
253 
     | 
    
         
             
                ticket: {
         
     | 
| 
       215 
254 
     | 
    
         
             
                    event: {
         
     | 
| 
       216 
255 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 256 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       217 
257 
     | 
    
         
             
                        name: string;
         
     | 
| 
       218 
258 
     | 
    
         
             
                        date: Date;
         
     | 
| 
      
 259 
     | 
    
         
            +
                        startingDate: Date;
         
     | 
| 
      
 260 
     | 
    
         
            +
                        endingDate: Date;
         
     | 
| 
      
 261 
     | 
    
         
            +
                        created_at: Date;
         
     | 
| 
      
 262 
     | 
    
         
            +
                        updated_at: Date;
         
     | 
| 
      
 263 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 264 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 265 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 266 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 267 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       219 
268 
     | 
    
         
             
                    };
         
     | 
| 
       220 
269 
     | 
    
         
             
                    profile: {
         
     | 
| 
       221 
270 
     | 
    
         
             
                        id: string;
         
     | 
| 
         @@ -248,18 +297,29 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       248 
297 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       249 
298 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       250 
299 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       251 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       252 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       253 
300 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 301 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       254 
302 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       255 
303 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 304 
     | 
    
         
            +
                    profileId: string | null;
         
     | 
| 
      
 305 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       256 
306 
     | 
    
         
             
                };
         
     | 
| 
       257 
307 
     | 
    
         
             
            }, {
         
     | 
| 
       258 
308 
     | 
    
         
             
                ticket: {
         
     | 
| 
       259 
309 
     | 
    
         
             
                    event: {
         
     | 
| 
       260 
310 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 311 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       261 
312 
     | 
    
         
             
                        name: string;
         
     | 
| 
       262 
313 
     | 
    
         
             
                        date: Date;
         
     | 
| 
      
 314 
     | 
    
         
            +
                        startingDate: Date;
         
     | 
| 
      
 315 
     | 
    
         
            +
                        endingDate: Date;
         
     | 
| 
      
 316 
     | 
    
         
            +
                        created_at: Date;
         
     | 
| 
      
 317 
     | 
    
         
            +
                        updated_at: Date;
         
     | 
| 
      
 318 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 319 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 320 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 321 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 322 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       263 
323 
     | 
    
         
             
                    };
         
     | 
| 
       264 
324 
     | 
    
         
             
                    profile: {
         
     | 
| 
       265 
325 
     | 
    
         
             
                        id: string;
         
     | 
| 
         @@ -292,11 +352,12 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       292 
352 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       293 
353 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       294 
354 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       295 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       296 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       297 
355 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 356 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       298 
357 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       299 
358 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 359 
     | 
    
         
            +
                    profileId: string | null;
         
     | 
| 
      
 360 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       300 
361 
     | 
    
         
             
                };
         
     | 
| 
       301 
362 
     | 
    
         
             
            }>;
         
     | 
| 
       302 
363 
     | 
    
         
             
            declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
         
     | 
| 
         @@ -308,29 +369,55 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD 
     | 
|
| 
       308 
369 
     | 
    
         
             
                        STAFF: "STAFF";
         
     | 
| 
       309 
370 
     | 
    
         
             
                        SPECTATOR: "SPECTATOR";
         
     | 
| 
       310 
371 
     | 
    
         
             
                    }>;
         
     | 
| 
       311 
     | 
    
         
            -
                    status: z.ZodNativeEnum<{
         
     | 
| 
       312 
     | 
    
         
            -
                        BOOKED: "BOOKED";
         
     | 
| 
       313 
     | 
    
         
            -
                        PAID: "PAID";
         
     | 
| 
       314 
     | 
    
         
            -
                        FREE: "FREE";
         
     | 
| 
       315 
     | 
    
         
            -
                    }>;
         
     | 
| 
       316 
372 
     | 
    
         
             
                    fullName: z.ZodString;
         
     | 
| 
       317 
373 
     | 
    
         
             
                    mail: z.ZodString;
         
     | 
| 
       318 
374 
     | 
    
         
             
                    dni: z.ZodString;
         
     | 
| 
       319 
375 
     | 
    
         
             
                    seat: z.ZodNullable<z.ZodNumber>;
         
     | 
| 
      
 376 
     | 
    
         
            +
                    ticketGroupId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       320 
377 
     | 
    
         
             
                    created_at: z.ZodString;
         
     | 
| 
       321 
378 
     | 
    
         
             
                    updated_at: z.ZodString;
         
     | 
| 
       322 
379 
     | 
    
         
             
                    event: z.ZodObject<{
         
     | 
| 
       323 
     | 
    
         
            -
                         
     | 
| 
      
 380 
     | 
    
         
            +
                        id: z.ZodString;
         
     | 
| 
       324 
381 
     | 
    
         
             
                        name: z.ZodString;
         
     | 
| 
       325 
382 
     | 
    
         
             
                        date: z.ZodString;
         
     | 
| 
      
 383 
     | 
    
         
            +
                        startingDate: z.ZodString;
         
     | 
| 
      
 384 
     | 
    
         
            +
                        endingDate: z.ZodString;
         
     | 
| 
      
 385 
     | 
    
         
            +
                        location: z.ZodString;
         
     | 
| 
      
 386 
     | 
    
         
            +
                        folderId: z.ZodNullable<z.ZodString>;
         
     | 
| 
      
 387 
     | 
    
         
            +
                        tagAssistedId: z.ZodString;
         
     | 
| 
      
 388 
     | 
    
         
            +
                        tagConfirmedId: z.ZodString;
         
     | 
| 
      
 389 
     | 
    
         
            +
                        active: z.ZodBoolean;
         
     | 
| 
      
 390 
     | 
    
         
            +
                        supraEventId: z.ZodNullable<z.ZodString>;
         
     | 
| 
      
 391 
     | 
    
         
            +
                        created_at: z.ZodString;
         
     | 
| 
      
 392 
     | 
    
         
            +
                        updated_at: z.ZodString;
         
     | 
| 
       326 
393 
     | 
    
         
             
                    }, z.UnknownKeysParam, z.ZodTypeAny, {
         
     | 
| 
       327 
394 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 395 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       328 
396 
     | 
    
         
             
                        name: string;
         
     | 
| 
       329 
397 
     | 
    
         
             
                        date: string;
         
     | 
| 
      
 398 
     | 
    
         
            +
                        startingDate: string;
         
     | 
| 
      
 399 
     | 
    
         
            +
                        endingDate: string;
         
     | 
| 
      
 400 
     | 
    
         
            +
                        created_at: string;
         
     | 
| 
      
 401 
     | 
    
         
            +
                        updated_at: string;
         
     | 
| 
      
 402 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 403 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 404 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 405 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 406 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       330 
407 
     | 
    
         
             
                    }, {
         
     | 
| 
       331 
408 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 409 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       332 
410 
     | 
    
         
             
                        name: string;
         
     | 
| 
       333 
411 
     | 
    
         
             
                        date: string;
         
     | 
| 
      
 412 
     | 
    
         
            +
                        startingDate: string;
         
     | 
| 
      
 413 
     | 
    
         
            +
                        endingDate: string;
         
     | 
| 
      
 414 
     | 
    
         
            +
                        created_at: string;
         
     | 
| 
      
 415 
     | 
    
         
            +
                        updated_at: string;
         
     | 
| 
      
 416 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 417 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 418 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 419 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 420 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       334 
421 
     | 
    
         
             
                    }>;
         
     | 
| 
       335 
422 
     | 
    
         
             
                    profile: z.ZodNullable<z.ZodObject<{
         
     | 
| 
       336 
423 
     | 
    
         
             
                        id: z.ZodString;
         
     | 
| 
         @@ -414,11 +501,22 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD 
     | 
|
| 
       414 
501 
     | 
    
         
             
                        movedToTrashDate: string | null;
         
     | 
| 
       415 
502 
     | 
    
         
             
                        role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
         
     | 
| 
       416 
503 
     | 
    
         
             
                    }>>;
         
     | 
| 
      
 504 
     | 
    
         
            +
                    profileId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       417 
505 
     | 
    
         
             
                }, z.UnknownKeysParam, z.ZodTypeAny, {
         
     | 
| 
       418 
506 
     | 
    
         
             
                    event: {
         
     | 
| 
       419 
507 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 508 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       420 
509 
     | 
    
         
             
                        name: string;
         
     | 
| 
       421 
510 
     | 
    
         
             
                        date: string;
         
     | 
| 
      
 511 
     | 
    
         
            +
                        startingDate: string;
         
     | 
| 
      
 512 
     | 
    
         
            +
                        endingDate: string;
         
     | 
| 
      
 513 
     | 
    
         
            +
                        created_at: string;
         
     | 
| 
      
 514 
     | 
    
         
            +
                        updated_at: string;
         
     | 
| 
      
 515 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 516 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 517 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 518 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 519 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       422 
520 
     | 
    
         
             
                    };
         
     | 
| 
       423 
521 
     | 
    
         
             
                    profile: {
         
     | 
| 
       424 
522 
     | 
    
         
             
                        id: string;
         
     | 
| 
         @@ -451,16 +549,27 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD 
     | 
|
| 
       451 
549 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       452 
550 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       453 
551 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       454 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       455 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       456 
552 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 553 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       457 
554 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       458 
555 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 556 
     | 
    
         
            +
                    profileId: string | null;
         
     | 
| 
      
 557 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       459 
558 
     | 
    
         
             
                }, {
         
     | 
| 
       460 
559 
     | 
    
         
             
                    event: {
         
     | 
| 
       461 
560 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 561 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       462 
562 
     | 
    
         
             
                        name: string;
         
     | 
| 
       463 
563 
     | 
    
         
             
                        date: string;
         
     | 
| 
      
 564 
     | 
    
         
            +
                        startingDate: string;
         
     | 
| 
      
 565 
     | 
    
         
            +
                        endingDate: string;
         
     | 
| 
      
 566 
     | 
    
         
            +
                        created_at: string;
         
     | 
| 
      
 567 
     | 
    
         
            +
                        updated_at: string;
         
     | 
| 
      
 568 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 569 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 570 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 571 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 572 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       464 
573 
     | 
    
         
             
                    };
         
     | 
| 
       465 
574 
     | 
    
         
             
                    profile: {
         
     | 
| 
       466 
575 
     | 
    
         
             
                        id: string;
         
     | 
| 
         @@ -493,18 +602,29 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD 
     | 
|
| 
       493 
602 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       494 
603 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       495 
604 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       496 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       497 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       498 
605 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 606 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       499 
607 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       500 
608 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 609 
     | 
    
         
            +
                    profileId: string | null;
         
     | 
| 
      
 610 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       501 
611 
     | 
    
         
             
                }>;
         
     | 
| 
       502 
612 
     | 
    
         
             
            }, z.UnknownKeysParam, z.ZodTypeAny, {
         
     | 
| 
       503 
613 
     | 
    
         
             
                ticket: {
         
     | 
| 
       504 
614 
     | 
    
         
             
                    event: {
         
     | 
| 
       505 
615 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 616 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       506 
617 
     | 
    
         
             
                        name: string;
         
     | 
| 
       507 
618 
     | 
    
         
             
                        date: string;
         
     | 
| 
      
 619 
     | 
    
         
            +
                        startingDate: string;
         
     | 
| 
      
 620 
     | 
    
         
            +
                        endingDate: string;
         
     | 
| 
      
 621 
     | 
    
         
            +
                        created_at: string;
         
     | 
| 
      
 622 
     | 
    
         
            +
                        updated_at: string;
         
     | 
| 
      
 623 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 624 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 625 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 626 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 627 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       508 
628 
     | 
    
         
             
                    };
         
     | 
| 
       509 
629 
     | 
    
         
             
                    profile: {
         
     | 
| 
       510 
630 
     | 
    
         
             
                        id: string;
         
     | 
| 
         @@ -537,18 +657,29 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD 
     | 
|
| 
       537 
657 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       538 
658 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       539 
659 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       540 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       541 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       542 
660 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 661 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       543 
662 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       544 
663 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 664 
     | 
    
         
            +
                    profileId: string | null;
         
     | 
| 
      
 665 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       545 
666 
     | 
    
         
             
                };
         
     | 
| 
       546 
667 
     | 
    
         
             
            }, {
         
     | 
| 
       547 
668 
     | 
    
         
             
                ticket: {
         
     | 
| 
       548 
669 
     | 
    
         
             
                    event: {
         
     | 
| 
       549 
670 
     | 
    
         
             
                        location: string;
         
     | 
| 
      
 671 
     | 
    
         
            +
                        id: string;
         
     | 
| 
       550 
672 
     | 
    
         
             
                        name: string;
         
     | 
| 
       551 
673 
     | 
    
         
             
                        date: string;
         
     | 
| 
      
 674 
     | 
    
         
            +
                        startingDate: string;
         
     | 
| 
      
 675 
     | 
    
         
            +
                        endingDate: string;
         
     | 
| 
      
 676 
     | 
    
         
            +
                        created_at: string;
         
     | 
| 
      
 677 
     | 
    
         
            +
                        updated_at: string;
         
     | 
| 
      
 678 
     | 
    
         
            +
                        active: boolean;
         
     | 
| 
      
 679 
     | 
    
         
            +
                        folderId: string | null;
         
     | 
| 
      
 680 
     | 
    
         
            +
                        tagAssistedId: string;
         
     | 
| 
      
 681 
     | 
    
         
            +
                        tagConfirmedId: string;
         
     | 
| 
      
 682 
     | 
    
         
            +
                        supraEventId: string | null;
         
     | 
| 
       552 
683 
     | 
    
         
             
                    };
         
     | 
| 
       553 
684 
     | 
    
         
             
                    profile: {
         
     | 
| 
       554 
685 
     | 
    
         
             
                        id: string;
         
     | 
| 
         @@ -581,11 +712,12 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD 
     | 
|
| 
       581 
712 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       582 
713 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       583 
714 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       584 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       585 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       586 
715 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 716 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       587 
717 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       588 
718 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 719 
     | 
    
         
            +
                    profileId: string | null;
         
     | 
| 
      
 720 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       589 
721 
     | 
    
         
             
                };
         
     | 
| 
       590 
722 
     | 
    
         
             
            }>>;
         
     | 
| 
       591 
723 
     | 
    
         
             
            export declare class FindByIdTicketResponseDto extends FindByIdTicketResponseDto_base {
         
     | 
| 
         @@ -8,12 +8,9 @@ const zod_1 = require("zod"); 
     | 
|
| 
       8 
8 
     | 
    
         
             
            const ticket_dto_1 = require("./ticket.dto");
         
     | 
| 
       9 
9 
     | 
    
         
             
            exports.findByIdTicketResponseSchema = zod_1.z.object({
         
     | 
| 
       10 
10 
     | 
    
         
             
                ticket: ticket_dto_1.ticketSchema.merge(zod_1.z.object({
         
     | 
| 
       11 
     | 
    
         
            -
                    event: event_dto_1.eventSchema 
     | 
| 
       12 
     | 
    
         
            -
                        name: true,
         
     | 
| 
       13 
     | 
    
         
            -
                        date: true,
         
     | 
| 
       14 
     | 
    
         
            -
                        location: true,
         
     | 
| 
       15 
     | 
    
         
            -
                    }),
         
     | 
| 
      
 11 
     | 
    
         
            +
                    event: event_dto_1.eventSchema,
         
     | 
| 
       16 
12 
     | 
    
         
             
                    profile: profile_schema_1.profileSchema.nullable(),
         
     | 
| 
      
 13 
     | 
    
         
            +
                    profileId: profile_schema_1.profileSchema.shape.id.nullable(),
         
     | 
| 
       17 
14 
     | 
    
         
             
                })),
         
     | 
| 
       18 
15 
     | 
    
         
             
            });
         
     | 
| 
       19 
16 
     | 
    
         
             
            class FindByIdTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findByIdTicketResponseSchema) {
         
     | 
| 
         @@ -8,15 +8,11 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       8 
8 
     | 
    
         
             
                        STAFF: "STAFF";
         
     | 
| 
       9 
9 
     | 
    
         
             
                        SPECTATOR: "SPECTATOR";
         
     | 
| 
       10 
10 
     | 
    
         
             
                    }>;
         
     | 
| 
       11 
     | 
    
         
            -
                    status: z.ZodNativeEnum<{
         
     | 
| 
       12 
     | 
    
         
            -
                        BOOKED: "BOOKED";
         
     | 
| 
       13 
     | 
    
         
            -
                        PAID: "PAID";
         
     | 
| 
       14 
     | 
    
         
            -
                        FREE: "FREE";
         
     | 
| 
       15 
     | 
    
         
            -
                    }>;
         
     | 
| 
       16 
11 
     | 
    
         
             
                    fullName: z.ZodString;
         
     | 
| 
       17 
12 
     | 
    
         
             
                    mail: z.ZodString;
         
     | 
| 
       18 
13 
     | 
    
         
             
                    dni: z.ZodString;
         
     | 
| 
       19 
14 
     | 
    
         
             
                    seat: z.ZodNullable<z.ZodNumber>;
         
     | 
| 
      
 15 
     | 
    
         
            +
                    ticketGroupId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       20 
16 
     | 
    
         
             
                    created_at: z.ZodDate;
         
     | 
| 
       21 
17 
     | 
    
         
             
                    updated_at: z.ZodDate;
         
     | 
| 
       22 
18 
     | 
    
         
             
                }, {
         
     | 
| 
         @@ -162,11 +158,11 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       162 
158 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       163 
159 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       164 
160 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       165 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       166 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       167 
161 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 162 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       168 
163 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       169 
164 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 165 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       170 
166 
     | 
    
         
             
                }, {
         
     | 
| 
       171 
167 
     | 
    
         
             
                    event: {
         
     | 
| 
       172 
168 
     | 
    
         
             
                        location: string;
         
     | 
| 
         @@ -204,11 +200,11 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       204 
200 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       205 
201 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       206 
202 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       207 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       208 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       209 
203 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 204 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       210 
205 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       211 
206 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 207 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       212 
208 
     | 
    
         
             
                }>, "many">;
         
     | 
| 
       213 
209 
     | 
    
         
             
            }, "strip", z.ZodTypeAny, {
         
     | 
| 
       214 
210 
     | 
    
         
             
                tickets: {
         
     | 
| 
         @@ -248,11 +244,11 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       248 
244 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       249 
245 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       250 
246 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       251 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       252 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       253 
247 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 248 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       254 
249 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       255 
250 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 251 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       256 
252 
     | 
    
         
             
                }[];
         
     | 
| 
       257 
253 
     | 
    
         
             
            }, {
         
     | 
| 
       258 
254 
     | 
    
         
             
                tickets: {
         
     | 
| 
         @@ -292,11 +288,11 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       292 
288 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       293 
289 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       294 
290 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       295 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       296 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       297 
291 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 292 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       298 
293 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       299 
294 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 295 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       300 
296 
     | 
    
         
             
                }[];
         
     | 
| 
       301 
297 
     | 
    
         
             
            }>;
         
     | 
| 
       302 
298 
     | 
    
         
             
            declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
         
     | 
| 
         @@ -308,15 +304,11 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo 
     | 
|
| 
       308 
304 
     | 
    
         
             
                        STAFF: "STAFF";
         
     | 
| 
       309 
305 
     | 
    
         
             
                        SPECTATOR: "SPECTATOR";
         
     | 
| 
       310 
306 
     | 
    
         
             
                    }>;
         
     | 
| 
       311 
     | 
    
         
            -
                    status: z.ZodNativeEnum<{
         
     | 
| 
       312 
     | 
    
         
            -
                        BOOKED: "BOOKED";
         
     | 
| 
       313 
     | 
    
         
            -
                        PAID: "PAID";
         
     | 
| 
       314 
     | 
    
         
            -
                        FREE: "FREE";
         
     | 
| 
       315 
     | 
    
         
            -
                    }>;
         
     | 
| 
       316 
307 
     | 
    
         
             
                    fullName: z.ZodString;
         
     | 
| 
       317 
308 
     | 
    
         
             
                    mail: z.ZodString;
         
     | 
| 
       318 
309 
     | 
    
         
             
                    dni: z.ZodString;
         
     | 
| 
       319 
310 
     | 
    
         
             
                    seat: z.ZodNullable<z.ZodNumber>;
         
     | 
| 
      
 311 
     | 
    
         
            +
                    ticketGroupId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       320 
312 
     | 
    
         
             
                    created_at: z.ZodString;
         
     | 
| 
       321 
313 
     | 
    
         
             
                    updated_at: z.ZodString;
         
     | 
| 
       322 
314 
     | 
    
         
             
                    event: z.ZodObject<{
         
     | 
| 
         @@ -451,11 +443,11 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo 
     | 
|
| 
       451 
443 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       452 
444 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       453 
445 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       454 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       455 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       456 
446 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 447 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       457 
448 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       458 
449 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 450 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       459 
451 
     | 
    
         
             
                }, {
         
     | 
| 
       460 
452 
     | 
    
         
             
                    event: {
         
     | 
| 
       461 
453 
     | 
    
         
             
                        location: string;
         
     | 
| 
         @@ -493,11 +485,11 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo 
     | 
|
| 
       493 
485 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       494 
486 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       495 
487 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       496 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       497 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       498 
488 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 489 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       499 
490 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       500 
491 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 492 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       501 
493 
     | 
    
         
             
                }>, "many">;
         
     | 
| 
       502 
494 
     | 
    
         
             
            }, z.UnknownKeysParam, z.ZodTypeAny, {
         
     | 
| 
       503 
495 
     | 
    
         
             
                tickets: {
         
     | 
| 
         @@ -537,11 +529,11 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo 
     | 
|
| 
       537 
529 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       538 
530 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       539 
531 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       540 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       541 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       542 
532 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 533 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       543 
534 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       544 
535 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 536 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       545 
537 
     | 
    
         
             
                }[];
         
     | 
| 
       546 
538 
     | 
    
         
             
            }, {
         
     | 
| 
       547 
539 
     | 
    
         
             
                tickets: {
         
     | 
| 
         @@ -581,11 +573,11 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo 
     | 
|
| 
       581 
573 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       582 
574 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       583 
575 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       584 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       585 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       586 
576 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 577 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       587 
578 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       588 
579 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 580 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       589 
581 
     | 
    
         
             
                }[];
         
     | 
| 
       590 
582 
     | 
    
         
             
            }>>;
         
     | 
| 
       591 
583 
     | 
    
         
             
            export declare class FindByMailTicketResponseDto extends FindByMailTicketResponseDto_base {
         
     | 
| 
         @@ -8,15 +8,11 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       8 
8 
     | 
    
         
             
                        STAFF: "STAFF";
         
     | 
| 
       9 
9 
     | 
    
         
             
                        SPECTATOR: "SPECTATOR";
         
     | 
| 
       10 
10 
     | 
    
         
             
                    }>;
         
     | 
| 
       11 
     | 
    
         
            -
                    status: z.ZodNativeEnum<{
         
     | 
| 
       12 
     | 
    
         
            -
                        BOOKED: "BOOKED";
         
     | 
| 
       13 
     | 
    
         
            -
                        PAID: "PAID";
         
     | 
| 
       14 
     | 
    
         
            -
                        FREE: "FREE";
         
     | 
| 
       15 
     | 
    
         
            -
                    }>;
         
     | 
| 
       16 
11 
     | 
    
         
             
                    fullName: z.ZodString;
         
     | 
| 
       17 
12 
     | 
    
         
             
                    mail: z.ZodString;
         
     | 
| 
       18 
13 
     | 
    
         
             
                    dni: z.ZodString;
         
     | 
| 
       19 
14 
     | 
    
         
             
                    seat: z.ZodNullable<z.ZodNumber>;
         
     | 
| 
      
 15 
     | 
    
         
            +
                    ticketGroupId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       20 
16 
     | 
    
         
             
                    created_at: z.ZodDate;
         
     | 
| 
       21 
17 
     | 
    
         
             
                    updated_at: z.ZodDate;
         
     | 
| 
       22 
18 
     | 
    
         
             
                }, {
         
     | 
| 
         @@ -84,11 +80,11 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       84 
80 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       85 
81 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       86 
82 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       87 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       88 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       89 
83 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 84 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       90 
85 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       91 
86 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 87 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       92 
88 
     | 
    
         
             
                }, {
         
     | 
| 
       93 
89 
     | 
    
         
             
                    event: {
         
     | 
| 
       94 
90 
     | 
    
         
             
                        location: string;
         
     | 
| 
         @@ -110,11 +106,11 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       110 
106 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       111 
107 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       112 
108 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       113 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       114 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       115 
109 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 110 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       116 
111 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       117 
112 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 113 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       118 
114 
     | 
    
         
             
                }>, "many">;
         
     | 
| 
       119 
115 
     | 
    
         
             
            }, "strip", z.ZodTypeAny, {
         
     | 
| 
       120 
116 
     | 
    
         
             
                tickets: {
         
     | 
| 
         @@ -138,11 +134,11 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       138 
134 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       139 
135 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       140 
136 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       141 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       142 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       143 
137 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 138 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       144 
139 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       145 
140 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 141 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       146 
142 
     | 
    
         
             
                }[];
         
     | 
| 
       147 
143 
     | 
    
         
             
            }, {
         
     | 
| 
       148 
144 
     | 
    
         
             
                tickets: {
         
     | 
| 
         @@ -166,11 +162,11 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{ 
     | 
|
| 
       166 
162 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       167 
163 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       168 
164 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       169 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       170 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       171 
165 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 166 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       172 
167 
     | 
    
         
             
                    created_at: Date;
         
     | 
| 
       173 
168 
     | 
    
         
             
                    updated_at: Date;
         
     | 
| 
      
 169 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       174 
170 
     | 
    
         
             
                }[];
         
     | 
| 
       175 
171 
     | 
    
         
             
            }>;
         
     | 
| 
       176 
172 
     | 
    
         
             
            declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
         
     | 
| 
         @@ -182,15 +178,11 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs 
     | 
|
| 
       182 
178 
     | 
    
         
             
                        STAFF: "STAFF";
         
     | 
| 
       183 
179 
     | 
    
         
             
                        SPECTATOR: "SPECTATOR";
         
     | 
| 
       184 
180 
     | 
    
         
             
                    }>;
         
     | 
| 
       185 
     | 
    
         
            -
                    status: z.ZodNativeEnum<{
         
     | 
| 
       186 
     | 
    
         
            -
                        BOOKED: "BOOKED";
         
     | 
| 
       187 
     | 
    
         
            -
                        PAID: "PAID";
         
     | 
| 
       188 
     | 
    
         
            -
                        FREE: "FREE";
         
     | 
| 
       189 
     | 
    
         
            -
                    }>;
         
     | 
| 
       190 
181 
     | 
    
         
             
                    fullName: z.ZodString;
         
     | 
| 
       191 
182 
     | 
    
         
             
                    mail: z.ZodString;
         
     | 
| 
       192 
183 
     | 
    
         
             
                    dni: z.ZodString;
         
     | 
| 
       193 
184 
     | 
    
         
             
                    seat: z.ZodNullable<z.ZodNumber>;
         
     | 
| 
      
 185 
     | 
    
         
            +
                    ticketGroupId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       194 
186 
     | 
    
         
             
                    created_at: z.ZodString;
         
     | 
| 
       195 
187 
     | 
    
         
             
                    updated_at: z.ZodString;
         
     | 
| 
       196 
188 
     | 
    
         
             
                    event: z.ZodObject<{
         
     | 
| 
         @@ -257,11 +249,11 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs 
     | 
|
| 
       257 
249 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       258 
250 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       259 
251 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       260 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       261 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       262 
252 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 253 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       263 
254 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       264 
255 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 256 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       265 
257 
     | 
    
         
             
                }, {
         
     | 
| 
       266 
258 
     | 
    
         
             
                    event: {
         
     | 
| 
       267 
259 
     | 
    
         
             
                        location: string;
         
     | 
| 
         @@ -283,11 +275,11 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs 
     | 
|
| 
       283 
275 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       284 
276 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       285 
277 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       286 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       287 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       288 
278 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 279 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       289 
280 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       290 
281 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 282 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       291 
283 
     | 
    
         
             
                }>, "many">;
         
     | 
| 
       292 
284 
     | 
    
         
             
            }, z.UnknownKeysParam, z.ZodTypeAny, {
         
     | 
| 
       293 
285 
     | 
    
         
             
                tickets: {
         
     | 
| 
         @@ -311,11 +303,11 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs 
     | 
|
| 
       311 
303 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       312 
304 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       313 
305 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       314 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       315 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       316 
306 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 307 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       317 
308 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       318 
309 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 310 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       319 
311 
     | 
    
         
             
                }[];
         
     | 
| 
       320 
312 
     | 
    
         
             
            }, {
         
     | 
| 
       321 
313 
     | 
    
         
             
                tickets: {
         
     | 
| 
         @@ -339,11 +331,11 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs 
     | 
|
| 
       339 
331 
     | 
    
         
             
                    fullName: string;
         
     | 
| 
       340 
332 
     | 
    
         
             
                    mail: string;
         
     | 
| 
       341 
333 
     | 
    
         
             
                    eventId: string;
         
     | 
| 
       342 
     | 
    
         
            -
                    status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       343 
     | 
    
         
            -
                    seat: number | null;
         
     | 
| 
       344 
334 
     | 
    
         
             
                    dni: string;
         
     | 
| 
      
 335 
     | 
    
         
            +
                    seat: number | null;
         
     | 
| 
       345 
336 
     | 
    
         
             
                    created_at: string;
         
     | 
| 
       346 
337 
     | 
    
         
             
                    updated_at: string;
         
     | 
| 
      
 338 
     | 
    
         
            +
                    ticketGroupId: string | null;
         
     | 
| 
       347 
339 
     | 
    
         
             
                }[];
         
     | 
| 
       348 
340 
     | 
    
         
             
            }>>;
         
     | 
| 
       349 
341 
     | 
    
         
             
            export declare class FindByProfileIdTicketResponseDto extends FindByProfileIdTicketResponseDto_base {
         
     |