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
 
| 
         @@ -6,15 +6,11 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{ 
     | 
|
| 
       6 
6 
     | 
    
         
             
                    STAFF: "STAFF";
         
     | 
| 
       7 
7 
     | 
    
         
             
                    SPECTATOR: "SPECTATOR";
         
     | 
| 
       8 
8 
     | 
    
         
             
                }>;
         
     | 
| 
       9 
     | 
    
         
            -
                status: import("zod").ZodNativeEnum<{
         
     | 
| 
       10 
     | 
    
         
            -
                    BOOKED: "BOOKED";
         
     | 
| 
       11 
     | 
    
         
            -
                    PAID: "PAID";
         
     | 
| 
       12 
     | 
    
         
            -
                    FREE: "FREE";
         
     | 
| 
       13 
     | 
    
         
            -
                }>;
         
     | 
| 
       14 
9 
     | 
    
         
             
                fullName: import("zod").ZodString;
         
     | 
| 
       15 
10 
     | 
    
         
             
                mail: import("zod").ZodString;
         
     | 
| 
       16 
11 
     | 
    
         
             
                dni: import("zod").ZodString;
         
     | 
| 
       17 
12 
     | 
    
         
             
                seat: import("zod").ZodNullable<import("zod").ZodNumber>;
         
     | 
| 
      
 13 
     | 
    
         
            +
                ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
         
     | 
| 
       18 
14 
     | 
    
         
             
                created_at: import("zod").ZodDate;
         
     | 
| 
       19 
15 
     | 
    
         
             
                updated_at: import("zod").ZodDate;
         
     | 
| 
       20 
16 
     | 
    
         
             
            }, "strip", import("zod").ZodTypeAny, {
         
     | 
| 
         @@ -23,22 +19,22 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{ 
     | 
|
| 
       23 
19 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       24 
20 
     | 
    
         
             
                mail: string;
         
     | 
| 
       25 
21 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       26 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       27 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       28 
22 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 23 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       29 
24 
     | 
    
         
             
                created_at: Date;
         
     | 
| 
       30 
25 
     | 
    
         
             
                updated_at: Date;
         
     | 
| 
      
 26 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       31 
27 
     | 
    
         
             
            }, {
         
     | 
| 
       32 
28 
     | 
    
         
             
                id: string;
         
     | 
| 
       33 
29 
     | 
    
         
             
                type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
         
     | 
| 
       34 
30 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       35 
31 
     | 
    
         
             
                mail: string;
         
     | 
| 
       36 
32 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       37 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       38 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       39 
33 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 34 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       40 
35 
     | 
    
         
             
                created_at: Date;
         
     | 
| 
       41 
36 
     | 
    
         
             
                updated_at: Date;
         
     | 
| 
      
 37 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       42 
38 
     | 
    
         
             
            }>;
         
     | 
| 
       43 
39 
     | 
    
         
             
            declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
         
     | 
| 
       44 
40 
     | 
    
         
             
                id: import("zod").ZodString;
         
     | 
| 
         @@ -48,15 +44,11 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt 
     | 
|
| 
       48 
44 
     | 
    
         
             
                    STAFF: "STAFF";
         
     | 
| 
       49 
45 
     | 
    
         
             
                    SPECTATOR: "SPECTATOR";
         
     | 
| 
       50 
46 
     | 
    
         
             
                }>;
         
     | 
| 
       51 
     | 
    
         
            -
                status: import("zod").ZodNativeEnum<{
         
     | 
| 
       52 
     | 
    
         
            -
                    BOOKED: "BOOKED";
         
     | 
| 
       53 
     | 
    
         
            -
                    PAID: "PAID";
         
     | 
| 
       54 
     | 
    
         
            -
                    FREE: "FREE";
         
     | 
| 
       55 
     | 
    
         
            -
                }>;
         
     | 
| 
       56 
47 
     | 
    
         
             
                fullName: import("zod").ZodString;
         
     | 
| 
       57 
48 
     | 
    
         
             
                mail: import("zod").ZodString;
         
     | 
| 
       58 
49 
     | 
    
         
             
                dni: import("zod").ZodString;
         
     | 
| 
       59 
50 
     | 
    
         
             
                seat: import("zod").ZodNullable<import("zod").ZodNumber>;
         
     | 
| 
      
 51 
     | 
    
         
            +
                ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
         
     | 
| 
       60 
52 
     | 
    
         
             
                created_at: import("zod").ZodString;
         
     | 
| 
       61 
53 
     | 
    
         
             
                updated_at: import("zod").ZodString;
         
     | 
| 
       62 
54 
     | 
    
         
             
            }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
         
     | 
| 
         @@ -65,22 +57,22 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt 
     | 
|
| 
       65 
57 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       66 
58 
     | 
    
         
             
                mail: string;
         
     | 
| 
       67 
59 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       68 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       69 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       70 
60 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 61 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       71 
62 
     | 
    
         
             
                created_at: string;
         
     | 
| 
       72 
63 
     | 
    
         
             
                updated_at: string;
         
     | 
| 
      
 64 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       73 
65 
     | 
    
         
             
            }, {
         
     | 
| 
       74 
66 
     | 
    
         
             
                id: string;
         
     | 
| 
       75 
67 
     | 
    
         
             
                type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
         
     | 
| 
       76 
68 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       77 
69 
     | 
    
         
             
                mail: string;
         
     | 
| 
       78 
70 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       79 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       80 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       81 
71 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 72 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       82 
73 
     | 
    
         
             
                created_at: string;
         
     | 
| 
       83 
74 
     | 
    
         
             
                updated_at: string;
         
     | 
| 
      
 75 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       84 
76 
     | 
    
         
             
            }>>;
         
     | 
| 
       85 
77 
     | 
    
         
             
            export declare class FindTicketResponseDto extends FindTicketResponseDto_base {
         
     | 
| 
       86 
78 
     | 
    
         
             
            }
         
     | 
| 
         @@ -7,15 +7,11 @@ export declare const ticketSchema: z.ZodObject<{ 
     | 
|
| 
       7 
7 
     | 
    
         
             
                    STAFF: "STAFF";
         
     | 
| 
       8 
8 
     | 
    
         
             
                    SPECTATOR: "SPECTATOR";
         
     | 
| 
       9 
9 
     | 
    
         
             
                }>;
         
     | 
| 
       10 
     | 
    
         
            -
                status: z.ZodNativeEnum<{
         
     | 
| 
       11 
     | 
    
         
            -
                    BOOKED: "BOOKED";
         
     | 
| 
       12 
     | 
    
         
            -
                    PAID: "PAID";
         
     | 
| 
       13 
     | 
    
         
            -
                    FREE: "FREE";
         
     | 
| 
       14 
     | 
    
         
            -
                }>;
         
     | 
| 
       15 
10 
     | 
    
         
             
                fullName: z.ZodString;
         
     | 
| 
       16 
11 
     | 
    
         
             
                mail: z.ZodString;
         
     | 
| 
       17 
12 
     | 
    
         
             
                dni: z.ZodString;
         
     | 
| 
       18 
13 
     | 
    
         
             
                seat: z.ZodNullable<z.ZodNumber>;
         
     | 
| 
      
 14 
     | 
    
         
            +
                ticketGroupId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       19 
15 
     | 
    
         
             
                created_at: z.ZodDate;
         
     | 
| 
       20 
16 
     | 
    
         
             
                updated_at: z.ZodDate;
         
     | 
| 
       21 
17 
     | 
    
         
             
            }, "strip", z.ZodTypeAny, {
         
     | 
| 
         @@ -24,22 +20,22 @@ export declare const ticketSchema: z.ZodObject<{ 
     | 
|
| 
       24 
20 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       25 
21 
     | 
    
         
             
                mail: string;
         
     | 
| 
       26 
22 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       27 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       28 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       29 
23 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 24 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       30 
25 
     | 
    
         
             
                created_at: Date;
         
     | 
| 
       31 
26 
     | 
    
         
             
                updated_at: Date;
         
     | 
| 
      
 27 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       32 
28 
     | 
    
         
             
            }, {
         
     | 
| 
       33 
29 
     | 
    
         
             
                id: string;
         
     | 
| 
       34 
30 
     | 
    
         
             
                type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
         
     | 
| 
       35 
31 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       36 
32 
     | 
    
         
             
                mail: string;
         
     | 
| 
       37 
33 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       38 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       39 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       40 
34 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 35 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       41 
36 
     | 
    
         
             
                created_at: Date;
         
     | 
| 
       42 
37 
     | 
    
         
             
                updated_at: Date;
         
     | 
| 
      
 38 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       43 
39 
     | 
    
         
             
            }>;
         
     | 
| 
       44 
40 
     | 
    
         
             
            declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
         
     | 
| 
       45 
41 
     | 
    
         
             
                id: z.ZodString;
         
     | 
| 
         @@ -49,15 +45,11 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb 
     | 
|
| 
       49 
45 
     | 
    
         
             
                    STAFF: "STAFF";
         
     | 
| 
       50 
46 
     | 
    
         
             
                    SPECTATOR: "SPECTATOR";
         
     | 
| 
       51 
47 
     | 
    
         
             
                }>;
         
     | 
| 
       52 
     | 
    
         
            -
                status: z.ZodNativeEnum<{
         
     | 
| 
       53 
     | 
    
         
            -
                    BOOKED: "BOOKED";
         
     | 
| 
       54 
     | 
    
         
            -
                    PAID: "PAID";
         
     | 
| 
       55 
     | 
    
         
            -
                    FREE: "FREE";
         
     | 
| 
       56 
     | 
    
         
            -
                }>;
         
     | 
| 
       57 
48 
     | 
    
         
             
                fullName: z.ZodString;
         
     | 
| 
       58 
49 
     | 
    
         
             
                mail: z.ZodString;
         
     | 
| 
       59 
50 
     | 
    
         
             
                dni: z.ZodString;
         
     | 
| 
       60 
51 
     | 
    
         
             
                seat: z.ZodNullable<z.ZodNumber>;
         
     | 
| 
      
 52 
     | 
    
         
            +
                ticketGroupId: z.ZodNullable<z.ZodString>;
         
     | 
| 
       61 
53 
     | 
    
         
             
                created_at: z.ZodString;
         
     | 
| 
       62 
54 
     | 
    
         
             
                updated_at: z.ZodString;
         
     | 
| 
       63 
55 
     | 
    
         
             
            }, z.UnknownKeysParam, z.ZodTypeAny, {
         
     | 
| 
         @@ -66,22 +58,22 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb 
     | 
|
| 
       66 
58 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       67 
59 
     | 
    
         
             
                mail: string;
         
     | 
| 
       68 
60 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       69 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       70 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       71 
61 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 62 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       72 
63 
     | 
    
         
             
                created_at: string;
         
     | 
| 
       73 
64 
     | 
    
         
             
                updated_at: string;
         
     | 
| 
      
 65 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       74 
66 
     | 
    
         
             
            }, {
         
     | 
| 
       75 
67 
     | 
    
         
             
                id: string;
         
     | 
| 
       76 
68 
     | 
    
         
             
                type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
         
     | 
| 
       77 
69 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       78 
70 
     | 
    
         
             
                mail: string;
         
     | 
| 
       79 
71 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       80 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       81 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       82 
72 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 73 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       83 
74 
     | 
    
         
             
                created_at: string;
         
     | 
| 
       84 
75 
     | 
    
         
             
                updated_at: string;
         
     | 
| 
      
 76 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       85 
77 
     | 
    
         
             
            }>>;
         
     | 
| 
       86 
78 
     | 
    
         
             
            export declare class TicketDto extends TicketDto_base {
         
     | 
| 
       87 
79 
     | 
    
         
             
            }
         
     | 
| 
         @@ -7,6 +7,7 @@ exports.TicketDto = exports.ticketSchema = void 0; 
     | 
|
| 
       7 
7 
     | 
    
         
             
            const event_dto_1 = require("../../event/dto/event.dto");
         
     | 
| 
       8 
8 
     | 
    
         
             
            const translate_1 = require("../../i18n/translate");
         
     | 
| 
       9 
9 
     | 
    
         
             
            const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
         
     | 
| 
      
 10 
     | 
    
         
            +
            const ticket_group_dto_1 = require("../../ticket-group/dto/ticket-group.dto");
         
     | 
| 
       10 
11 
     | 
    
         
             
            const zod_1 = __importDefault(require("zod"));
         
     | 
| 
       11 
12 
     | 
    
         
             
            const prisma_schema_1 = require("../../../types/prisma-schema/index.js");
         
     | 
| 
       12 
13 
     | 
    
         
             
            exports.ticketSchema = zod_1.default.object({
         
     | 
| 
         @@ -15,13 +16,11 @@ exports.ticketSchema = zod_1.default.object({ 
     | 
|
| 
       15 
16 
     | 
    
         
             
                type: zod_1.default.nativeEnum(prisma_schema_1.TicketType, {
         
     | 
| 
       16 
17 
     | 
    
         
             
                    message: (0, translate_1.translate)('model.ticket.type.invalid'),
         
     | 
| 
       17 
18 
     | 
    
         
             
                }),
         
     | 
| 
       18 
     | 
    
         
            -
                status: zod_1.default.nativeEnum(prisma_schema_1.TicketStatus, {
         
     | 
| 
       19 
     | 
    
         
            -
                    message: (0, translate_1.translate)('model.ticket.status.invalid'),
         
     | 
| 
       20 
     | 
    
         
            -
                }),
         
     | 
| 
       21 
19 
     | 
    
         
             
                fullName: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.fullName.required')),
         
     | 
| 
       22 
20 
     | 
    
         
             
                mail: zod_1.default.string().email((0, translate_1.translate)('model.ticket.mail.email')),
         
     | 
| 
       23 
21 
     | 
    
         
             
                dni: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.dni.required')),
         
     | 
| 
       24 
22 
     | 
    
         
             
                seat: zod_1.default.number().min(1, (0, translate_1.translate)('model.ticket.seat.required')).nullable(),
         
     | 
| 
      
 23 
     | 
    
         
            +
                ticketGroupId: ticket_group_dto_1.ticketGroupSchema.shape.id.nullable(),
         
     | 
| 
       25 
24 
     | 
    
         
             
                created_at: zod_1.default.date(),
         
     | 
| 
       26 
25 
     | 
    
         
             
                updated_at: zod_1.default.date(),
         
     | 
| 
       27 
26 
     | 
    
         
             
            });
         
     | 
| 
         @@ -6,21 +6,20 @@ export declare const updateTicketSchema: import("zod").ZodObject<{ 
     | 
|
| 
       6 
6 
     | 
    
         
             
                }>>;
         
     | 
| 
       7 
7 
     | 
    
         
             
                fullName: import("zod").ZodOptional<import("zod").ZodString>;
         
     | 
| 
       8 
8 
     | 
    
         
             
                mail: import("zod").ZodOptional<import("zod").ZodString>;
         
     | 
| 
       9 
     | 
    
         
            -
                 
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
                    PAID: "PAID";
         
     | 
| 
       12 
     | 
    
         
            -
                    FREE: "FREE";
         
     | 
| 
       13 
     | 
    
         
            -
                }>>;
         
     | 
| 
      
 9 
     | 
    
         
            +
                dni: import("zod").ZodOptional<import("zod").ZodString>;
         
     | 
| 
      
 10 
     | 
    
         
            +
                ticketGroupId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
         
     | 
| 
       14 
11 
     | 
    
         
             
            }, "strip", import("zod").ZodTypeAny, {
         
     | 
| 
       15 
12 
     | 
    
         
             
                type?: "STAFF" | "SPECTATOR" | "PARTICIPANT" | undefined;
         
     | 
| 
       16 
13 
     | 
    
         
             
                fullName?: string | undefined;
         
     | 
| 
       17 
14 
     | 
    
         
             
                mail?: string | undefined;
         
     | 
| 
       18 
     | 
    
         
            -
                 
     | 
| 
      
 15 
     | 
    
         
            +
                dni?: string | undefined;
         
     | 
| 
      
 16 
     | 
    
         
            +
                ticketGroupId?: string | null | undefined;
         
     | 
| 
       19 
17 
     | 
    
         
             
            }, {
         
     | 
| 
       20 
18 
     | 
    
         
             
                type?: "STAFF" | "SPECTATOR" | "PARTICIPANT" | undefined;
         
     | 
| 
       21 
19 
     | 
    
         
             
                fullName?: string | undefined;
         
     | 
| 
       22 
20 
     | 
    
         
             
                mail?: string | undefined;
         
     | 
| 
       23 
     | 
    
         
            -
                 
     | 
| 
      
 21 
     | 
    
         
            +
                dni?: string | undefined;
         
     | 
| 
      
 22 
     | 
    
         
            +
                ticketGroupId?: string | null | undefined;
         
     | 
| 
       24 
23 
     | 
    
         
             
            }>;
         
     | 
| 
       25 
24 
     | 
    
         
             
            declare const UpdateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
         
     | 
| 
       26 
25 
     | 
    
         
             
                type: import("zod").ZodOptional<import("zod").ZodNativeEnum<{
         
     | 
| 
         @@ -30,21 +29,20 @@ declare const UpdateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i 
     | 
|
| 
       30 
29 
     | 
    
         
             
                }>>;
         
     | 
| 
       31 
30 
     | 
    
         
             
                fullName: import("zod").ZodOptional<import("zod").ZodString>;
         
     | 
| 
       32 
31 
     | 
    
         
             
                mail: import("zod").ZodOptional<import("zod").ZodString>;
         
     | 
| 
       33 
     | 
    
         
            -
                 
     | 
| 
       34 
     | 
    
         
            -
             
     | 
| 
       35 
     | 
    
         
            -
                    PAID: "PAID";
         
     | 
| 
       36 
     | 
    
         
            -
                    FREE: "FREE";
         
     | 
| 
       37 
     | 
    
         
            -
                }>>;
         
     | 
| 
      
 32 
     | 
    
         
            +
                dni: import("zod").ZodOptional<import("zod").ZodString>;
         
     | 
| 
      
 33 
     | 
    
         
            +
                ticketGroupId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
         
     | 
| 
       38 
34 
     | 
    
         
             
            }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
         
     | 
| 
       39 
35 
     | 
    
         
             
                type?: "STAFF" | "SPECTATOR" | "PARTICIPANT" | undefined;
         
     | 
| 
       40 
36 
     | 
    
         
             
                fullName?: string | undefined;
         
     | 
| 
       41 
37 
     | 
    
         
             
                mail?: string | undefined;
         
     | 
| 
       42 
     | 
    
         
            -
                 
     | 
| 
      
 38 
     | 
    
         
            +
                dni?: string | undefined;
         
     | 
| 
      
 39 
     | 
    
         
            +
                ticketGroupId?: string | null | undefined;
         
     | 
| 
       43 
40 
     | 
    
         
             
            }, {
         
     | 
| 
       44 
41 
     | 
    
         
             
                type?: "STAFF" | "SPECTATOR" | "PARTICIPANT" | undefined;
         
     | 
| 
       45 
42 
     | 
    
         
             
                fullName?: string | undefined;
         
     | 
| 
       46 
43 
     | 
    
         
             
                mail?: string | undefined;
         
     | 
| 
       47 
     | 
    
         
            -
                 
     | 
| 
      
 44 
     | 
    
         
            +
                dni?: string | undefined;
         
     | 
| 
      
 45 
     | 
    
         
            +
                ticketGroupId?: string | null | undefined;
         
     | 
| 
       48 
46 
     | 
    
         
             
            }>>;
         
     | 
| 
       49 
47 
     | 
    
         
             
            export declare class UpdateTicketDto extends UpdateTicketDto_base {
         
     | 
| 
       50 
48 
     | 
    
         
             
            }
         
     | 
| 
         @@ -56,15 +54,11 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{ 
     | 
|
| 
       56 
54 
     | 
    
         
             
                    STAFF: "STAFF";
         
     | 
| 
       57 
55 
     | 
    
         
             
                    SPECTATOR: "SPECTATOR";
         
     | 
| 
       58 
56 
     | 
    
         
             
                }>;
         
     | 
| 
       59 
     | 
    
         
            -
                status: import("zod").ZodNativeEnum<{
         
     | 
| 
       60 
     | 
    
         
            -
                    BOOKED: "BOOKED";
         
     | 
| 
       61 
     | 
    
         
            -
                    PAID: "PAID";
         
     | 
| 
       62 
     | 
    
         
            -
                    FREE: "FREE";
         
     | 
| 
       63 
     | 
    
         
            -
                }>;
         
     | 
| 
       64 
57 
     | 
    
         
             
                fullName: import("zod").ZodString;
         
     | 
| 
       65 
58 
     | 
    
         
             
                mail: import("zod").ZodString;
         
     | 
| 
       66 
59 
     | 
    
         
             
                dni: import("zod").ZodString;
         
     | 
| 
       67 
60 
     | 
    
         
             
                seat: import("zod").ZodNullable<import("zod").ZodNumber>;
         
     | 
| 
      
 61 
     | 
    
         
            +
                ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
         
     | 
| 
       68 
62 
     | 
    
         
             
                created_at: import("zod").ZodDate;
         
     | 
| 
       69 
63 
     | 
    
         
             
                updated_at: import("zod").ZodDate;
         
     | 
| 
       70 
64 
     | 
    
         
             
            }, "strip", import("zod").ZodTypeAny, {
         
     | 
| 
         @@ -73,22 +67,22 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{ 
     | 
|
| 
       73 
67 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       74 
68 
     | 
    
         
             
                mail: string;
         
     | 
| 
       75 
69 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       76 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       77 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       78 
70 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 71 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       79 
72 
     | 
    
         
             
                created_at: Date;
         
     | 
| 
       80 
73 
     | 
    
         
             
                updated_at: Date;
         
     | 
| 
      
 74 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       81 
75 
     | 
    
         
             
            }, {
         
     | 
| 
       82 
76 
     | 
    
         
             
                id: string;
         
     | 
| 
       83 
77 
     | 
    
         
             
                type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
         
     | 
| 
       84 
78 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       85 
79 
     | 
    
         
             
                mail: string;
         
     | 
| 
       86 
80 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       87 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       88 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       89 
81 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 82 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       90 
83 
     | 
    
         
             
                created_at: Date;
         
     | 
| 
       91 
84 
     | 
    
         
             
                updated_at: Date;
         
     | 
| 
      
 85 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       92 
86 
     | 
    
         
             
            }>;
         
     | 
| 
       93 
87 
     | 
    
         
             
            declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
         
     | 
| 
       94 
88 
     | 
    
         
             
                id: import("zod").ZodString;
         
     | 
| 
         @@ -98,15 +92,11 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto 
     | 
|
| 
       98 
92 
     | 
    
         
             
                    STAFF: "STAFF";
         
     | 
| 
       99 
93 
     | 
    
         
             
                    SPECTATOR: "SPECTATOR";
         
     | 
| 
       100 
94 
     | 
    
         
             
                }>;
         
     | 
| 
       101 
     | 
    
         
            -
                status: import("zod").ZodNativeEnum<{
         
     | 
| 
       102 
     | 
    
         
            -
                    BOOKED: "BOOKED";
         
     | 
| 
       103 
     | 
    
         
            -
                    PAID: "PAID";
         
     | 
| 
       104 
     | 
    
         
            -
                    FREE: "FREE";
         
     | 
| 
       105 
     | 
    
         
            -
                }>;
         
     | 
| 
       106 
95 
     | 
    
         
             
                fullName: import("zod").ZodString;
         
     | 
| 
       107 
96 
     | 
    
         
             
                mail: import("zod").ZodString;
         
     | 
| 
       108 
97 
     | 
    
         
             
                dni: import("zod").ZodString;
         
     | 
| 
       109 
98 
     | 
    
         
             
                seat: import("zod").ZodNullable<import("zod").ZodNumber>;
         
     | 
| 
      
 99 
     | 
    
         
            +
                ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
         
     | 
| 
       110 
100 
     | 
    
         
             
                created_at: import("zod").ZodString;
         
     | 
| 
       111 
101 
     | 
    
         
             
                updated_at: import("zod").ZodString;
         
     | 
| 
       112 
102 
     | 
    
         
             
            }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
         
     | 
| 
         @@ -115,22 +105,22 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto 
     | 
|
| 
       115 
105 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       116 
106 
     | 
    
         
             
                mail: string;
         
     | 
| 
       117 
107 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       118 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       119 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       120 
108 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 109 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       121 
110 
     | 
    
         
             
                created_at: string;
         
     | 
| 
       122 
111 
     | 
    
         
             
                updated_at: string;
         
     | 
| 
      
 112 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       123 
113 
     | 
    
         
             
            }, {
         
     | 
| 
       124 
114 
     | 
    
         
             
                id: string;
         
     | 
| 
       125 
115 
     | 
    
         
             
                type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
         
     | 
| 
       126 
116 
     | 
    
         
             
                fullName: string;
         
     | 
| 
       127 
117 
     | 
    
         
             
                mail: string;
         
     | 
| 
       128 
118 
     | 
    
         
             
                eventId: string;
         
     | 
| 
       129 
     | 
    
         
            -
                status: "BOOKED" | "PAID" | "FREE";
         
     | 
| 
       130 
     | 
    
         
            -
                seat: number | null;
         
     | 
| 
       131 
119 
     | 
    
         
             
                dni: string;
         
     | 
| 
      
 120 
     | 
    
         
            +
                seat: number | null;
         
     | 
| 
       132 
121 
     | 
    
         
             
                created_at: string;
         
     | 
| 
       133 
122 
     | 
    
         
             
                updated_at: string;
         
     | 
| 
      
 123 
     | 
    
         
            +
                ticketGroupId: string | null;
         
     | 
| 
       134 
124 
     | 
    
         
             
            }>>;
         
     | 
| 
       135 
125 
     | 
    
         
             
            export declare class UpdateTicketResponseDto extends UpdateTicketResponseDto_base {
         
     | 
| 
       136 
126 
     | 
    
         
             
            }
         
     | 
| 
         @@ -6,9 +6,10 @@ const ticket_dto_1 = require("./ticket.dto"); 
     | 
|
| 
       6 
6 
     | 
    
         
             
            exports.updateTicketSchema = ticket_dto_1.ticketSchema
         
     | 
| 
       7 
7 
     | 
    
         
             
                .pick({
         
     | 
| 
       8 
8 
     | 
    
         
             
                type: true,
         
     | 
| 
       9 
     | 
    
         
            -
                status: true,
         
     | 
| 
       10 
9 
     | 
    
         
             
                fullName: true,
         
     | 
| 
       11 
10 
     | 
    
         
             
                mail: true,
         
     | 
| 
      
 11 
     | 
    
         
            +
                dni: true,
         
     | 
| 
      
 12 
     | 
    
         
            +
                ticketGroupId: true,
         
     | 
| 
       12 
13 
     | 
    
         
             
            })
         
     | 
| 
       13 
14 
     | 
    
         
             
                .partial();
         
     | 
| 
       14 
15 
     | 
    
         
             
            class UpdateTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateTicketSchema) {
         
     |