expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.12 → 0.34.0-EXPO-322-ExpoBackend-Rol-de-expoTickets.1
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 +4 -6
- package/dist/src/account/dto/create-account.dto.d.ts +8 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +0 -1
- package/dist/src/account/dto/get-me.dto.d.ts +4 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +4 -6
- package/dist/src/auth/dto/login.dto.d.ts +8 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +0 -1
- package/dist/src/event/dto/get-all-event.dto.d.ts +0 -616
- package/dist/src/event/dto/get-all-event.dto.js +8 -29
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -307
- package/dist/src/event/dto/get-by-id-event.dto.js +0 -4
- package/dist/src/event/dto/update-event.dto.d.ts +0 -6
- package/dist/src/event/dto/update-event.dto.js +0 -1
- package/dist/src/i18n/es.d.ts +0 -13
- package/dist/src/i18n/es.js +0 -13
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +0 -16
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +0 -20
- package/dist/src/mi-expo/dto/login.dto.d.ts +0 -21
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +0 -16
- package/dist/src/mi-expo/exports.d.ts +0 -2
- package/dist/src/mi-expo/exports.js +0 -2
- package/dist/src/otp/dto/verify-otp.dto.d.ts +0 -20
- package/dist/src/profile/dto/create-profile.dto.d.ts +0 -24
- package/dist/src/profile/dto/delete-profile.dto.d.ts +0 -16
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +0 -20
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +0 -36
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +0 -16
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +0 -16
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +0 -20
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +1 -55
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +0 -2
- package/dist/src/profile/dto/find-trash.dto.d.ts +0 -6
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +0 -20
- package/dist/src/profile/dto/profile.dto.d.ts +0 -8
- package/dist/src/profile/dto/update-profile.dto.d.ts +0 -16
- package/dist/src/schema/profile.schema.d.ts +0 -8
- package/dist/src/schema/profile.schema.js +0 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +0 -20
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +0 -20
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +4 -158
- package/dist/src/ticket/dto/create-ticket.dto.js +2 -10
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -370
- package/dist/src/ticket/dto/find-by-event-ticket.dto.js +0 -2
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -370
- package/dist/src/ticket/dto/find-by-id-ticket.dto.js +0 -2
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -370
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +0 -2
- package/dist/src/ticket/exports.d.ts +0 -1
- package/dist/src/ticket/exports.js +0 -1
- package/dist/types/prisma-schema/edge.js +4 -7
- package/dist/types/prisma-schema/index-browser.js +1 -4
- package/dist/types/prisma-schema/index.d.ts +69 -557
- package/dist/types/prisma-schema/index.js +4 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +2 -10
- package/dist/types/prisma-schema/wasm.js +1 -4
- package/dist/types/schema.d.ts +5 -400
- package/package.json +1 -1
- package/dist/src/mi-expo/dto/emit-ticket.dto.d.ts +0 -281
- package/dist/src/mi-expo/dto/emit-ticket.dto.js +0 -23
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -104
- package/dist/src/mi-expo/dto/get-invitations.dto.js +0 -24
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -331
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.js +0 -19
@@ -1,281 +0,0 @@
|
|
1
|
-
export declare const emitTicketSchema: import("zod").ZodObject<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">, "strip", import("zod").ZodTypeAny, {
|
19
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
20
|
-
fullName: string;
|
21
|
-
mail: string;
|
22
|
-
eventId: string;
|
23
|
-
status: "BOOKED" | "PAID" | "FREE";
|
24
|
-
}, {
|
25
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
26
|
-
fullName: string;
|
27
|
-
mail: string;
|
28
|
-
eventId: string;
|
29
|
-
status: "BOOKED" | "PAID" | "FREE";
|
30
|
-
}>;
|
31
|
-
declare const EmitTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
32
|
-
type: import("zod").ZodNativeEnum<{
|
33
|
-
PARTICIPANT: "PARTICIPANT";
|
34
|
-
STAFF: "STAFF";
|
35
|
-
SPECTATOR: "SPECTATOR";
|
36
|
-
}>;
|
37
|
-
fullName: import("zod").ZodString;
|
38
|
-
mail: import("zod").ZodString;
|
39
|
-
eventId: import("zod").ZodString;
|
40
|
-
status: import("zod").ZodNativeEnum<{
|
41
|
-
BOOKED: "BOOKED";
|
42
|
-
PAID: "PAID";
|
43
|
-
FREE: "FREE";
|
44
|
-
}>;
|
45
|
-
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
46
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
47
|
-
fullName: string;
|
48
|
-
mail: string;
|
49
|
-
eventId: string;
|
50
|
-
status: "BOOKED" | "PAID" | "FREE";
|
51
|
-
}, {
|
52
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
53
|
-
fullName: string;
|
54
|
-
mail: string;
|
55
|
-
eventId: string;
|
56
|
-
status: "BOOKED" | "PAID" | "FREE";
|
57
|
-
}>>;
|
58
|
-
export declare class EmitTicketDto extends EmitTicketDto_base {
|
59
|
-
}
|
60
|
-
export declare const emitTicketResponseSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
61
|
-
id: import("zod").ZodString;
|
62
|
-
eventId: import("zod").ZodString;
|
63
|
-
type: import("zod").ZodNativeEnum<{
|
64
|
-
PARTICIPANT: "PARTICIPANT";
|
65
|
-
STAFF: "STAFF";
|
66
|
-
SPECTATOR: "SPECTATOR";
|
67
|
-
}>;
|
68
|
-
status: import("zod").ZodNativeEnum<{
|
69
|
-
BOOKED: "BOOKED";
|
70
|
-
PAID: "PAID";
|
71
|
-
FREE: "FREE";
|
72
|
-
}>;
|
73
|
-
fullName: import("zod").ZodString;
|
74
|
-
mail: import("zod").ZodString;
|
75
|
-
created_at: import("zod").ZodDate;
|
76
|
-
updated_at: import("zod").ZodDate;
|
77
|
-
}, {
|
78
|
-
event: import("zod").ZodObject<{
|
79
|
-
id: import("zod").ZodString;
|
80
|
-
name: import("zod").ZodString;
|
81
|
-
date: import("zod").ZodDate;
|
82
|
-
startingDate: import("zod").ZodDate;
|
83
|
-
endingDate: import("zod").ZodDate;
|
84
|
-
location: import("zod").ZodString;
|
85
|
-
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
86
|
-
tagAssistedId: import("zod").ZodString;
|
87
|
-
tagConfirmedId: import("zod").ZodString;
|
88
|
-
active: import("zod").ZodBoolean;
|
89
|
-
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
90
|
-
created_at: import("zod").ZodDate;
|
91
|
-
updated_at: import("zod").ZodDate;
|
92
|
-
}, "strip", import("zod").ZodTypeAny, {
|
93
|
-
location: string;
|
94
|
-
id: string;
|
95
|
-
name: string;
|
96
|
-
date: Date;
|
97
|
-
startingDate: Date;
|
98
|
-
endingDate: Date;
|
99
|
-
created_at: Date;
|
100
|
-
updated_at: Date;
|
101
|
-
active: boolean;
|
102
|
-
folderId: string | null;
|
103
|
-
tagAssistedId: string;
|
104
|
-
tagConfirmedId: string;
|
105
|
-
supraEventId: string | null;
|
106
|
-
}, {
|
107
|
-
location: string;
|
108
|
-
id: string;
|
109
|
-
name: string;
|
110
|
-
date: Date;
|
111
|
-
startingDate: Date;
|
112
|
-
endingDate: Date;
|
113
|
-
created_at: Date;
|
114
|
-
updated_at: Date;
|
115
|
-
active: boolean;
|
116
|
-
folderId: string | null;
|
117
|
-
tagAssistedId: string;
|
118
|
-
tagConfirmedId: string;
|
119
|
-
supraEventId: string | null;
|
120
|
-
}>;
|
121
|
-
}>, "strip", import("zod").ZodTypeAny, {
|
122
|
-
event: {
|
123
|
-
location: string;
|
124
|
-
id: string;
|
125
|
-
name: string;
|
126
|
-
date: Date;
|
127
|
-
startingDate: Date;
|
128
|
-
endingDate: Date;
|
129
|
-
created_at: Date;
|
130
|
-
updated_at: Date;
|
131
|
-
active: boolean;
|
132
|
-
folderId: string | null;
|
133
|
-
tagAssistedId: string;
|
134
|
-
tagConfirmedId: string;
|
135
|
-
supraEventId: string | null;
|
136
|
-
};
|
137
|
-
id: string;
|
138
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
139
|
-
fullName: string;
|
140
|
-
mail: string;
|
141
|
-
eventId: string;
|
142
|
-
status: "BOOKED" | "PAID" | "FREE";
|
143
|
-
created_at: Date;
|
144
|
-
updated_at: Date;
|
145
|
-
}, {
|
146
|
-
event: {
|
147
|
-
location: string;
|
148
|
-
id: string;
|
149
|
-
name: string;
|
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;
|
160
|
-
};
|
161
|
-
id: string;
|
162
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
163
|
-
fullName: string;
|
164
|
-
mail: string;
|
165
|
-
eventId: string;
|
166
|
-
status: "BOOKED" | "PAID" | "FREE";
|
167
|
-
created_at: Date;
|
168
|
-
updated_at: Date;
|
169
|
-
}>;
|
170
|
-
declare const EmitTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
171
|
-
id: import("zod").ZodString;
|
172
|
-
eventId: import("zod").ZodString;
|
173
|
-
type: import("zod").ZodNativeEnum<{
|
174
|
-
PARTICIPANT: "PARTICIPANT";
|
175
|
-
STAFF: "STAFF";
|
176
|
-
SPECTATOR: "SPECTATOR";
|
177
|
-
}>;
|
178
|
-
status: import("zod").ZodNativeEnum<{
|
179
|
-
BOOKED: "BOOKED";
|
180
|
-
PAID: "PAID";
|
181
|
-
FREE: "FREE";
|
182
|
-
}>;
|
183
|
-
fullName: import("zod").ZodString;
|
184
|
-
mail: import("zod").ZodString;
|
185
|
-
created_at: import("zod").ZodString;
|
186
|
-
updated_at: import("zod").ZodString;
|
187
|
-
event: import("zod").ZodObject<{
|
188
|
-
id: import("zod").ZodString;
|
189
|
-
name: import("zod").ZodString;
|
190
|
-
date: import("zod").ZodString;
|
191
|
-
startingDate: import("zod").ZodString;
|
192
|
-
endingDate: import("zod").ZodString;
|
193
|
-
location: import("zod").ZodString;
|
194
|
-
folderId: import("zod").ZodNullable<import("zod").ZodString>;
|
195
|
-
tagAssistedId: import("zod").ZodString;
|
196
|
-
tagConfirmedId: import("zod").ZodString;
|
197
|
-
active: import("zod").ZodBoolean;
|
198
|
-
supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
|
199
|
-
created_at: import("zod").ZodString;
|
200
|
-
updated_at: import("zod").ZodString;
|
201
|
-
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
202
|
-
location: string;
|
203
|
-
id: string;
|
204
|
-
name: string;
|
205
|
-
date: string;
|
206
|
-
startingDate: string;
|
207
|
-
endingDate: string;
|
208
|
-
created_at: string;
|
209
|
-
updated_at: string;
|
210
|
-
active: boolean;
|
211
|
-
folderId: string | null;
|
212
|
-
tagAssistedId: string;
|
213
|
-
tagConfirmedId: string;
|
214
|
-
supraEventId: string | null;
|
215
|
-
}, {
|
216
|
-
location: string;
|
217
|
-
id: string;
|
218
|
-
name: string;
|
219
|
-
date: string;
|
220
|
-
startingDate: string;
|
221
|
-
endingDate: string;
|
222
|
-
created_at: string;
|
223
|
-
updated_at: string;
|
224
|
-
active: boolean;
|
225
|
-
folderId: string | null;
|
226
|
-
tagAssistedId: string;
|
227
|
-
tagConfirmedId: string;
|
228
|
-
supraEventId: string | null;
|
229
|
-
}>;
|
230
|
-
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
231
|
-
event: {
|
232
|
-
location: string;
|
233
|
-
id: string;
|
234
|
-
name: string;
|
235
|
-
date: string;
|
236
|
-
startingDate: string;
|
237
|
-
endingDate: string;
|
238
|
-
created_at: string;
|
239
|
-
updated_at: string;
|
240
|
-
active: boolean;
|
241
|
-
folderId: string | null;
|
242
|
-
tagAssistedId: string;
|
243
|
-
tagConfirmedId: string;
|
244
|
-
supraEventId: string | null;
|
245
|
-
};
|
246
|
-
id: string;
|
247
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
248
|
-
fullName: string;
|
249
|
-
mail: string;
|
250
|
-
eventId: string;
|
251
|
-
status: "BOOKED" | "PAID" | "FREE";
|
252
|
-
created_at: string;
|
253
|
-
updated_at: string;
|
254
|
-
}, {
|
255
|
-
event: {
|
256
|
-
location: string;
|
257
|
-
id: string;
|
258
|
-
name: string;
|
259
|
-
date: string;
|
260
|
-
startingDate: string;
|
261
|
-
endingDate: string;
|
262
|
-
created_at: string;
|
263
|
-
updated_at: string;
|
264
|
-
active: boolean;
|
265
|
-
folderId: string | null;
|
266
|
-
tagAssistedId: string;
|
267
|
-
tagConfirmedId: string;
|
268
|
-
supraEventId: string | null;
|
269
|
-
};
|
270
|
-
id: string;
|
271
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
272
|
-
fullName: string;
|
273
|
-
mail: string;
|
274
|
-
eventId: string;
|
275
|
-
status: "BOOKED" | "PAID" | "FREE";
|
276
|
-
created_at: string;
|
277
|
-
updated_at: string;
|
278
|
-
}>>;
|
279
|
-
export declare class EmitTicketResponseDto extends EmitTicketResponseDto_base {
|
280
|
-
}
|
281
|
-
export {};
|
@@ -1,23 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.EmitTicketResponseDto = exports.emitTicketResponseSchema = exports.EmitTicketDto = exports.emitTicketSchema = void 0;
|
4
|
-
const event_dto_1 = require("../../event/dto/event.dto");
|
5
|
-
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
6
|
-
const ticket_dto_1 = require("../../ticket/dto/ticket.dto");
|
7
|
-
exports.emitTicketSchema = ticket_dto_1.ticketSchema.pick({
|
8
|
-
mail: true,
|
9
|
-
type: true,
|
10
|
-
fullName: true,
|
11
|
-
eventId: true,
|
12
|
-
status: true,
|
13
|
-
});
|
14
|
-
class EmitTicketDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.emitTicketSchema) {
|
15
|
-
}
|
16
|
-
exports.EmitTicketDto = EmitTicketDto;
|
17
|
-
exports.emitTicketResponseSchema = ticket_dto_1.ticketSchema.extend({
|
18
|
-
event: event_dto_1.eventSchema,
|
19
|
-
});
|
20
|
-
class EmitTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.emitTicketResponseSchema) {
|
21
|
-
}
|
22
|
-
exports.EmitTicketResponseDto = EmitTicketResponseDto;
|
23
|
-
//# sourceMappingURL=emit-ticket.dto.js.map
|
@@ -1,104 +0,0 @@
|
|
1
|
-
import z from 'zod';
|
2
|
-
export declare const getInvitationsResponseSchema: z.ZodObject<{
|
3
|
-
events: z.ZodArray<z.ZodObject<Pick<{
|
4
|
-
id: z.ZodString;
|
5
|
-
name: z.ZodString;
|
6
|
-
date: z.ZodDate;
|
7
|
-
startingDate: z.ZodDate;
|
8
|
-
endingDate: z.ZodDate;
|
9
|
-
location: z.ZodString;
|
10
|
-
folderId: z.ZodNullable<z.ZodString>;
|
11
|
-
tagAssistedId: z.ZodString;
|
12
|
-
tagConfirmedId: z.ZodString;
|
13
|
-
active: z.ZodBoolean;
|
14
|
-
supraEventId: z.ZodNullable<z.ZodString>;
|
15
|
-
created_at: z.ZodDate;
|
16
|
-
updated_at: z.ZodDate;
|
17
|
-
}, "location" | "id" | "name" | "date" | "startingDate" | "endingDate" | "active">, "strip", z.ZodTypeAny, {
|
18
|
-
location: string;
|
19
|
-
id: string;
|
20
|
-
name: string;
|
21
|
-
date: Date;
|
22
|
-
startingDate: Date;
|
23
|
-
endingDate: Date;
|
24
|
-
active: boolean;
|
25
|
-
}, {
|
26
|
-
location: string;
|
27
|
-
id: string;
|
28
|
-
name: string;
|
29
|
-
date: Date;
|
30
|
-
startingDate: Date;
|
31
|
-
endingDate: Date;
|
32
|
-
active: boolean;
|
33
|
-
}>, "many">;
|
34
|
-
}, "strip", z.ZodTypeAny, {
|
35
|
-
events: {
|
36
|
-
location: string;
|
37
|
-
id: string;
|
38
|
-
name: string;
|
39
|
-
date: Date;
|
40
|
-
startingDate: Date;
|
41
|
-
endingDate: Date;
|
42
|
-
active: boolean;
|
43
|
-
}[];
|
44
|
-
}, {
|
45
|
-
events: {
|
46
|
-
location: string;
|
47
|
-
id: string;
|
48
|
-
name: string;
|
49
|
-
date: Date;
|
50
|
-
startingDate: Date;
|
51
|
-
endingDate: Date;
|
52
|
-
active: boolean;
|
53
|
-
}[];
|
54
|
-
}>;
|
55
|
-
declare const GetInvitationsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
56
|
-
events: z.ZodArray<z.ZodObject<{
|
57
|
-
location: z.ZodString;
|
58
|
-
id: z.ZodString;
|
59
|
-
name: z.ZodString;
|
60
|
-
date: z.ZodString;
|
61
|
-
startingDate: z.ZodString;
|
62
|
-
endingDate: z.ZodString;
|
63
|
-
active: z.ZodBoolean;
|
64
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
65
|
-
location: string;
|
66
|
-
id: string;
|
67
|
-
name: string;
|
68
|
-
date: string;
|
69
|
-
startingDate: string;
|
70
|
-
endingDate: string;
|
71
|
-
active: boolean;
|
72
|
-
}, {
|
73
|
-
location: string;
|
74
|
-
id: string;
|
75
|
-
name: string;
|
76
|
-
date: string;
|
77
|
-
startingDate: string;
|
78
|
-
endingDate: string;
|
79
|
-
active: boolean;
|
80
|
-
}>, "many">;
|
81
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
82
|
-
events: {
|
83
|
-
location: string;
|
84
|
-
id: string;
|
85
|
-
name: string;
|
86
|
-
date: string;
|
87
|
-
startingDate: string;
|
88
|
-
endingDate: string;
|
89
|
-
active: boolean;
|
90
|
-
}[];
|
91
|
-
}, {
|
92
|
-
events: {
|
93
|
-
location: string;
|
94
|
-
id: string;
|
95
|
-
name: string;
|
96
|
-
date: string;
|
97
|
-
startingDate: string;
|
98
|
-
endingDate: string;
|
99
|
-
active: boolean;
|
100
|
-
}[];
|
101
|
-
}>>;
|
102
|
-
export declare class GetInvitationsResponseDto extends GetInvitationsResponseDto_base {
|
103
|
-
}
|
104
|
-
export {};
|
@@ -1,24 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.GetInvitationsResponseDto = exports.getInvitationsResponseSchema = void 0;
|
7
|
-
const event_dto_1 = require("../../event/dto/event.dto");
|
8
|
-
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
9
|
-
const zod_1 = __importDefault(require("zod"));
|
10
|
-
exports.getInvitationsResponseSchema = zod_1.default.object({
|
11
|
-
events: zod_1.default.array(event_dto_1.eventSchema.pick({
|
12
|
-
date: true,
|
13
|
-
startingDate: true,
|
14
|
-
endingDate: true,
|
15
|
-
name: true,
|
16
|
-
location: true,
|
17
|
-
id: true,
|
18
|
-
active: true,
|
19
|
-
})),
|
20
|
-
});
|
21
|
-
class GetInvitationsResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getInvitationsResponseSchema) {
|
22
|
-
}
|
23
|
-
exports.GetInvitationsResponseDto = GetInvitationsResponseDto;
|
24
|
-
//# sourceMappingURL=get-invitations.dto.js.map
|