expo-backend-types 0.35.0 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.2
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/account/dto/account.dto.d.ts +6 -4
- package/dist/src/account/dto/create-account.dto.d.ts +12 -8
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
- package/dist/src/account/dto/get-me.dto.d.ts +6 -4
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
- package/dist/src/auth/dto/login.dto.d.ts +11 -8
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
- package/dist/src/i18n/es.d.ts +5 -0
- package/dist/src/i18n/es.js +5 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -4
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -8
- package/dist/src/mi-expo/dto/login.dto.d.ts +11 -8
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -4
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -4
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -8
- package/dist/src/profile/dto/profile.dto.d.ts +3 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -4
- package/dist/src/schema/profile.schema.d.ts +3 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -8
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +288 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +31 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -12
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -12
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +1 -0
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -0
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +110 -22
- package/package.json +1 -1
@@ -0,0 +1,288 @@
|
|
1
|
+
export declare const createManyTicketSchema: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<Pick<{
|
2
|
+
id: import("zod").ZodString;
|
3
|
+
eventId: import("zod").ZodString;
|
4
|
+
type: import("zod").ZodNativeEnum<{
|
5
|
+
PARTICIPANT: "PARTICIPANT";
|
6
|
+
STAFF: "STAFF";
|
7
|
+
SPECTATOR: "SPECTATOR";
|
8
|
+
}>;
|
9
|
+
status: import("zod").ZodNativeEnum<{
|
10
|
+
BOOKED: "BOOKED";
|
11
|
+
PAID: "PAID";
|
12
|
+
FREE: "FREE";
|
13
|
+
}>;
|
14
|
+
fullName: import("zod").ZodString;
|
15
|
+
mail: import("zod").ZodString;
|
16
|
+
created_at: import("zod").ZodDate;
|
17
|
+
updated_at: import("zod").ZodDate;
|
18
|
+
}, "type" | "fullName" | "mail" | "eventId" | "status">, {
|
19
|
+
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
20
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
21
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
22
|
+
fullName: string;
|
23
|
+
mail: string;
|
24
|
+
eventId: string;
|
25
|
+
status: "BOOKED" | "PAID" | "FREE";
|
26
|
+
profileId?: string | undefined;
|
27
|
+
}, {
|
28
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
29
|
+
fullName: string;
|
30
|
+
mail: string;
|
31
|
+
eventId: string;
|
32
|
+
status: "BOOKED" | "PAID" | "FREE";
|
33
|
+
profileId?: string | undefined;
|
34
|
+
}>, "many">;
|
35
|
+
declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodArray<import("zod").ZodObject<{
|
36
|
+
type: import("zod").ZodNativeEnum<{
|
37
|
+
PARTICIPANT: "PARTICIPANT";
|
38
|
+
STAFF: "STAFF";
|
39
|
+
SPECTATOR: "SPECTATOR";
|
40
|
+
}>;
|
41
|
+
fullName: import("zod").ZodString;
|
42
|
+
mail: import("zod").ZodString;
|
43
|
+
eventId: import("zod").ZodString;
|
44
|
+
status: import("zod").ZodNativeEnum<{
|
45
|
+
BOOKED: "BOOKED";
|
46
|
+
PAID: "PAID";
|
47
|
+
FREE: "FREE";
|
48
|
+
}>;
|
49
|
+
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
50
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
51
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
52
|
+
fullName: string;
|
53
|
+
mail: string;
|
54
|
+
eventId: string;
|
55
|
+
status: "BOOKED" | "PAID" | "FREE";
|
56
|
+
profileId?: string | undefined;
|
57
|
+
}, {
|
58
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
59
|
+
fullName: string;
|
60
|
+
mail: string;
|
61
|
+
eventId: string;
|
62
|
+
status: "BOOKED" | "PAID" | "FREE";
|
63
|
+
profileId?: string | undefined;
|
64
|
+
}>, "many">>;
|
65
|
+
export declare class CreateManyTicketDto extends CreateManyTicketDto_base {
|
66
|
+
}
|
67
|
+
export declare const createManyTicketResponseSchema: import("zod").ZodArray<import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
68
|
+
id: import("zod").ZodString;
|
69
|
+
eventId: import("zod").ZodString;
|
70
|
+
type: import("zod").ZodNativeEnum<{
|
71
|
+
PARTICIPANT: "PARTICIPANT";
|
72
|
+
STAFF: "STAFF";
|
73
|
+
SPECTATOR: "SPECTATOR";
|
74
|
+
}>;
|
75
|
+
status: import("zod").ZodNativeEnum<{
|
76
|
+
BOOKED: "BOOKED";
|
77
|
+
PAID: "PAID";
|
78
|
+
FREE: "FREE";
|
79
|
+
}>;
|
80
|
+
fullName: import("zod").ZodString;
|
81
|
+
mail: import("zod").ZodString;
|
82
|
+
created_at: import("zod").ZodDate;
|
83
|
+
updated_at: import("zod").ZodDate;
|
84
|
+
}, {
|
85
|
+
event: import("zod").ZodObject<{
|
86
|
+
id: import("zod").ZodString;
|
87
|
+
name: import("zod").ZodString;
|
88
|
+
date: import("zod").ZodDate;
|
89
|
+
startingDate: import("zod").ZodDate;
|
90
|
+
endingDate: import("zod").ZodDate;
|
91
|
+
location: import("zod").ZodString;
|
92
|
+
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
93
|
+
tagAssistedId: import("zod").ZodString;
|
94
|
+
tagConfirmedId: import("zod").ZodString;
|
95
|
+
active: import("zod").ZodBoolean;
|
96
|
+
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
97
|
+
created_at: import("zod").ZodDate;
|
98
|
+
updated_at: import("zod").ZodDate;
|
99
|
+
}, "strip", import("zod").ZodTypeAny, {
|
100
|
+
location: string;
|
101
|
+
id: string;
|
102
|
+
name: string;
|
103
|
+
date: Date;
|
104
|
+
startingDate: Date;
|
105
|
+
endingDate: Date;
|
106
|
+
created_at: Date;
|
107
|
+
updated_at: Date;
|
108
|
+
active: boolean;
|
109
|
+
folderId: string | null;
|
110
|
+
tagAssistedId: string;
|
111
|
+
tagConfirmedId: string;
|
112
|
+
supraEventId: string | null;
|
113
|
+
}, {
|
114
|
+
location: string;
|
115
|
+
id: string;
|
116
|
+
name: string;
|
117
|
+
date: Date;
|
118
|
+
startingDate: Date;
|
119
|
+
endingDate: Date;
|
120
|
+
created_at: Date;
|
121
|
+
updated_at: Date;
|
122
|
+
active: boolean;
|
123
|
+
folderId: string | null;
|
124
|
+
tagAssistedId: string;
|
125
|
+
tagConfirmedId: string;
|
126
|
+
supraEventId: string | null;
|
127
|
+
}>;
|
128
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
129
|
+
event: {
|
130
|
+
location: string;
|
131
|
+
id: string;
|
132
|
+
name: string;
|
133
|
+
date: Date;
|
134
|
+
startingDate: Date;
|
135
|
+
endingDate: Date;
|
136
|
+
created_at: Date;
|
137
|
+
updated_at: Date;
|
138
|
+
active: boolean;
|
139
|
+
folderId: string | null;
|
140
|
+
tagAssistedId: string;
|
141
|
+
tagConfirmedId: string;
|
142
|
+
supraEventId: string | null;
|
143
|
+
};
|
144
|
+
id: string;
|
145
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
146
|
+
fullName: string;
|
147
|
+
mail: string;
|
148
|
+
eventId: string;
|
149
|
+
status: "BOOKED" | "PAID" | "FREE";
|
150
|
+
created_at: Date;
|
151
|
+
updated_at: Date;
|
152
|
+
}, {
|
153
|
+
event: {
|
154
|
+
location: string;
|
155
|
+
id: string;
|
156
|
+
name: string;
|
157
|
+
date: Date;
|
158
|
+
startingDate: Date;
|
159
|
+
endingDate: Date;
|
160
|
+
created_at: Date;
|
161
|
+
updated_at: Date;
|
162
|
+
active: boolean;
|
163
|
+
folderId: string | null;
|
164
|
+
tagAssistedId: string;
|
165
|
+
tagConfirmedId: string;
|
166
|
+
supraEventId: string | null;
|
167
|
+
};
|
168
|
+
id: string;
|
169
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
170
|
+
fullName: string;
|
171
|
+
mail: string;
|
172
|
+
eventId: string;
|
173
|
+
status: "BOOKED" | "PAID" | "FREE";
|
174
|
+
created_at: Date;
|
175
|
+
updated_at: Date;
|
176
|
+
}>, "many">;
|
177
|
+
declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodArray<import("zod").ZodObject<{
|
178
|
+
id: import("zod").ZodString;
|
179
|
+
eventId: import("zod").ZodString;
|
180
|
+
type: import("zod").ZodNativeEnum<{
|
181
|
+
PARTICIPANT: "PARTICIPANT";
|
182
|
+
STAFF: "STAFF";
|
183
|
+
SPECTATOR: "SPECTATOR";
|
184
|
+
}>;
|
185
|
+
status: import("zod").ZodNativeEnum<{
|
186
|
+
BOOKED: "BOOKED";
|
187
|
+
PAID: "PAID";
|
188
|
+
FREE: "FREE";
|
189
|
+
}>;
|
190
|
+
fullName: import("zod").ZodString;
|
191
|
+
mail: import("zod").ZodString;
|
192
|
+
created_at: import("zod").ZodString;
|
193
|
+
updated_at: import("zod").ZodString;
|
194
|
+
event: import("zod").ZodObject<{
|
195
|
+
id: import("zod").ZodString;
|
196
|
+
name: import("zod").ZodString;
|
197
|
+
date: import("zod").ZodString;
|
198
|
+
startingDate: import("zod").ZodString;
|
199
|
+
endingDate: import("zod").ZodString;
|
200
|
+
location: import("zod").ZodString;
|
201
|
+
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
202
|
+
tagAssistedId: import("zod").ZodString;
|
203
|
+
tagConfirmedId: import("zod").ZodString;
|
204
|
+
active: import("zod").ZodBoolean;
|
205
|
+
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
206
|
+
created_at: import("zod").ZodString;
|
207
|
+
updated_at: import("zod").ZodString;
|
208
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
209
|
+
location: string;
|
210
|
+
id: string;
|
211
|
+
name: string;
|
212
|
+
date: string;
|
213
|
+
startingDate: string;
|
214
|
+
endingDate: string;
|
215
|
+
created_at: string;
|
216
|
+
updated_at: string;
|
217
|
+
active: boolean;
|
218
|
+
folderId: string | null;
|
219
|
+
tagAssistedId: string;
|
220
|
+
tagConfirmedId: string;
|
221
|
+
supraEventId: string | null;
|
222
|
+
}, {
|
223
|
+
location: string;
|
224
|
+
id: string;
|
225
|
+
name: string;
|
226
|
+
date: string;
|
227
|
+
startingDate: string;
|
228
|
+
endingDate: string;
|
229
|
+
created_at: string;
|
230
|
+
updated_at: string;
|
231
|
+
active: boolean;
|
232
|
+
folderId: string | null;
|
233
|
+
tagAssistedId: string;
|
234
|
+
tagConfirmedId: string;
|
235
|
+
supraEventId: string | null;
|
236
|
+
}>;
|
237
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
238
|
+
event: {
|
239
|
+
location: string;
|
240
|
+
id: string;
|
241
|
+
name: string;
|
242
|
+
date: string;
|
243
|
+
startingDate: string;
|
244
|
+
endingDate: string;
|
245
|
+
created_at: string;
|
246
|
+
updated_at: string;
|
247
|
+
active: boolean;
|
248
|
+
folderId: string | null;
|
249
|
+
tagAssistedId: string;
|
250
|
+
tagConfirmedId: string;
|
251
|
+
supraEventId: string | null;
|
252
|
+
};
|
253
|
+
id: string;
|
254
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
255
|
+
fullName: string;
|
256
|
+
mail: string;
|
257
|
+
eventId: string;
|
258
|
+
status: "BOOKED" | "PAID" | "FREE";
|
259
|
+
created_at: string;
|
260
|
+
updated_at: string;
|
261
|
+
}, {
|
262
|
+
event: {
|
263
|
+
location: string;
|
264
|
+
id: string;
|
265
|
+
name: string;
|
266
|
+
date: string;
|
267
|
+
startingDate: string;
|
268
|
+
endingDate: string;
|
269
|
+
created_at: string;
|
270
|
+
updated_at: string;
|
271
|
+
active: boolean;
|
272
|
+
folderId: string | null;
|
273
|
+
tagAssistedId: string;
|
274
|
+
tagConfirmedId: string;
|
275
|
+
supraEventId: string | null;
|
276
|
+
};
|
277
|
+
id: string;
|
278
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
279
|
+
fullName: string;
|
280
|
+
mail: string;
|
281
|
+
eventId: string;
|
282
|
+
status: "BOOKED" | "PAID" | "FREE";
|
283
|
+
created_at: string;
|
284
|
+
updated_at: string;
|
285
|
+
}>, "many">>;
|
286
|
+
export declare class CreateManyTicketResponseDto extends CreateManyTicketResponseDto_base {
|
287
|
+
}
|
288
|
+
export {};
|
@@ -0,0 +1,31 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.CreateManyTicketResponseDto = exports.createManyTicketResponseSchema = exports.CreateManyTicketDto = exports.createManyTicketSchema = void 0;
|
4
|
+
const event_dto_1 = require("../../event/dto/event.dto");
|
5
|
+
const profile_schema_1 = require("../../schema/profile.schema");
|
6
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
7
|
+
const ticket_dto_1 = require("./ticket.dto");
|
8
|
+
exports.createManyTicketSchema = ticket_dto_1.ticketSchema
|
9
|
+
.pick({
|
10
|
+
eventId: true,
|
11
|
+
type: true,
|
12
|
+
status: true,
|
13
|
+
fullName: true,
|
14
|
+
mail: true,
|
15
|
+
})
|
16
|
+
.extend({
|
17
|
+
profileId: profile_schema_1.profileSchema.shape.id.optional(),
|
18
|
+
})
|
19
|
+
.array();
|
20
|
+
class CreateManyTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketSchema) {
|
21
|
+
}
|
22
|
+
exports.CreateManyTicketDto = CreateManyTicketDto;
|
23
|
+
exports.createManyTicketResponseSchema = ticket_dto_1.ticketSchema
|
24
|
+
.extend({
|
25
|
+
event: event_dto_1.eventSchema,
|
26
|
+
})
|
27
|
+
.array();
|
28
|
+
class CreateManyTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createManyTicketResponseSchema) {
|
29
|
+
}
|
30
|
+
exports.CreateManyTicketResponseDto = CreateManyTicketResponseDto;
|
31
|
+
//# sourceMappingURL=create-many-ticket.dto.js.map
|
@@ -48,6 +48,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
48
48
|
USER: "USER";
|
49
49
|
ADMIN: "ADMIN";
|
50
50
|
FORM: "FORM";
|
51
|
+
TICKETS: "TICKETS";
|
51
52
|
MI_EXPO: "MI_EXPO";
|
52
53
|
}>>;
|
53
54
|
firstTimeMiExpo: z.ZodBoolean;
|
@@ -75,7 +76,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
75
76
|
id: string;
|
76
77
|
username: string | null;
|
77
78
|
password: string | null;
|
78
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
79
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
79
80
|
phoneNumber: string;
|
80
81
|
secondaryPhoneNumber: string | null;
|
81
82
|
fullName: string;
|
@@ -120,7 +121,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
120
121
|
residenceLocationId: string | null;
|
121
122
|
isInTrash: boolean;
|
122
123
|
movedToTrashDate: Date | null;
|
123
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
124
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
124
125
|
}>>;
|
125
126
|
}>, "strip", z.ZodTypeAny, {
|
126
127
|
event: {
|
@@ -132,7 +133,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
132
133
|
id: string;
|
133
134
|
username: string | null;
|
134
135
|
password: string | null;
|
135
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
136
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
136
137
|
phoneNumber: string;
|
137
138
|
secondaryPhoneNumber: string | null;
|
138
139
|
fullName: string;
|
@@ -192,7 +193,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
192
193
|
residenceLocationId: string | null;
|
193
194
|
isInTrash: boolean;
|
194
195
|
movedToTrashDate: Date | null;
|
195
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
196
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
196
197
|
} | null;
|
197
198
|
id: string;
|
198
199
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -214,7 +215,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
214
215
|
id: string;
|
215
216
|
username: string | null;
|
216
217
|
password: string | null;
|
217
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
218
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
218
219
|
phoneNumber: string;
|
219
220
|
secondaryPhoneNumber: string | null;
|
220
221
|
fullName: string;
|
@@ -276,7 +277,7 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
276
277
|
residenceLocationId: string | null;
|
277
278
|
isInTrash: boolean;
|
278
279
|
movedToTrashDate: Date | null;
|
279
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
280
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
280
281
|
} | null;
|
281
282
|
id: string;
|
282
283
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -326,6 +327,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
326
327
|
USER: "USER";
|
327
328
|
ADMIN: "ADMIN";
|
328
329
|
FORM: "FORM";
|
330
|
+
TICKETS: "TICKETS";
|
329
331
|
MI_EXPO: "MI_EXPO";
|
330
332
|
}>>;
|
331
333
|
firstTimeMiExpo: z.ZodBoolean;
|
@@ -353,7 +355,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
353
355
|
id: string;
|
354
356
|
username: string | null;
|
355
357
|
password: string | null;
|
356
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
358
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
357
359
|
phoneNumber: string;
|
358
360
|
secondaryPhoneNumber: string | null;
|
359
361
|
fullName: string;
|
@@ -398,7 +400,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
398
400
|
residenceLocationId: string | null;
|
399
401
|
isInTrash: boolean;
|
400
402
|
movedToTrashDate: string | null;
|
401
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
403
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
402
404
|
}>>;
|
403
405
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
404
406
|
event: {
|
@@ -410,7 +412,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
410
412
|
id: string;
|
411
413
|
username: string | null;
|
412
414
|
password: string | null;
|
413
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
415
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
414
416
|
phoneNumber: string;
|
415
417
|
secondaryPhoneNumber: string | null;
|
416
418
|
fullName: string;
|
@@ -470,7 +472,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
470
472
|
residenceLocationId: string | null;
|
471
473
|
isInTrash: boolean;
|
472
474
|
movedToTrashDate: string | null;
|
473
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
475
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
474
476
|
} | null;
|
475
477
|
id: string;
|
476
478
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -492,7 +494,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
492
494
|
id: string;
|
493
495
|
username: string | null;
|
494
496
|
password: string | null;
|
495
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
497
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
496
498
|
phoneNumber: string;
|
497
499
|
secondaryPhoneNumber: string | null;
|
498
500
|
fullName: string;
|
@@ -554,7 +556,7 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
554
556
|
residenceLocationId: string | null;
|
555
557
|
isInTrash: boolean;
|
556
558
|
movedToTrashDate: string | null;
|
557
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
559
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
558
560
|
} | null;
|
559
561
|
id: string;
|
560
562
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -48,6 +48,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
48
48
|
USER: "USER";
|
49
49
|
ADMIN: "ADMIN";
|
50
50
|
FORM: "FORM";
|
51
|
+
TICKETS: "TICKETS";
|
51
52
|
MI_EXPO: "MI_EXPO";
|
52
53
|
}>>;
|
53
54
|
firstTimeMiExpo: z.ZodBoolean;
|
@@ -75,7 +76,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
75
76
|
id: string;
|
76
77
|
username: string | null;
|
77
78
|
password: string | null;
|
78
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
79
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
79
80
|
phoneNumber: string;
|
80
81
|
secondaryPhoneNumber: string | null;
|
81
82
|
fullName: string;
|
@@ -120,7 +121,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
120
121
|
residenceLocationId: string | null;
|
121
122
|
isInTrash: boolean;
|
122
123
|
movedToTrashDate: Date | null;
|
123
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
124
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
124
125
|
}>>;
|
125
126
|
}>, "strip", z.ZodTypeAny, {
|
126
127
|
event: {
|
@@ -132,7 +133,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
132
133
|
id: string;
|
133
134
|
username: string | null;
|
134
135
|
password: string | null;
|
135
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
136
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
136
137
|
phoneNumber: string;
|
137
138
|
secondaryPhoneNumber: string | null;
|
138
139
|
fullName: string;
|
@@ -192,7 +193,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
192
193
|
residenceLocationId: string | null;
|
193
194
|
isInTrash: boolean;
|
194
195
|
movedToTrashDate: Date | null;
|
195
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
196
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
196
197
|
} | null;
|
197
198
|
id: string;
|
198
199
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -214,7 +215,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
214
215
|
id: string;
|
215
216
|
username: string | null;
|
216
217
|
password: string | null;
|
217
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
218
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
218
219
|
phoneNumber: string;
|
219
220
|
secondaryPhoneNumber: string | null;
|
220
221
|
fullName: string;
|
@@ -276,7 +277,7 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
276
277
|
residenceLocationId: string | null;
|
277
278
|
isInTrash: boolean;
|
278
279
|
movedToTrashDate: Date | null;
|
279
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
280
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
280
281
|
} | null;
|
281
282
|
id: string;
|
282
283
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -326,6 +327,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
326
327
|
USER: "USER";
|
327
328
|
ADMIN: "ADMIN";
|
328
329
|
FORM: "FORM";
|
330
|
+
TICKETS: "TICKETS";
|
329
331
|
MI_EXPO: "MI_EXPO";
|
330
332
|
}>>;
|
331
333
|
firstTimeMiExpo: z.ZodBoolean;
|
@@ -353,7 +355,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
353
355
|
id: string;
|
354
356
|
username: string | null;
|
355
357
|
password: string | null;
|
356
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
358
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
357
359
|
phoneNumber: string;
|
358
360
|
secondaryPhoneNumber: string | null;
|
359
361
|
fullName: string;
|
@@ -398,7 +400,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
398
400
|
residenceLocationId: string | null;
|
399
401
|
isInTrash: boolean;
|
400
402
|
movedToTrashDate: string | null;
|
401
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
403
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
402
404
|
}>>;
|
403
405
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
404
406
|
event: {
|
@@ -410,7 +412,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
410
412
|
id: string;
|
411
413
|
username: string | null;
|
412
414
|
password: string | null;
|
413
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
415
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
414
416
|
phoneNumber: string;
|
415
417
|
secondaryPhoneNumber: string | null;
|
416
418
|
fullName: string;
|
@@ -470,7 +472,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
470
472
|
residenceLocationId: string | null;
|
471
473
|
isInTrash: boolean;
|
472
474
|
movedToTrashDate: string | null;
|
473
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
475
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
474
476
|
} | null;
|
475
477
|
id: string;
|
476
478
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
@@ -492,7 +494,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
492
494
|
id: string;
|
493
495
|
username: string | null;
|
494
496
|
password: string | null;
|
495
|
-
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
497
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
496
498
|
phoneNumber: string;
|
497
499
|
secondaryPhoneNumber: string | null;
|
498
500
|
fullName: string;
|
@@ -554,7 +556,7 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
554
556
|
residenceLocationId: string | null;
|
555
557
|
isInTrash: boolean;
|
556
558
|
movedToTrashDate: string | null;
|
557
|
-
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | undefined;
|
559
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
558
560
|
} | null;
|
559
561
|
id: string;
|
560
562
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|