expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.2 → 0.36.0-EXPO-323-Enviar-mail-ticket.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.
Files changed (56) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
  9. package/dist/src/i18n/es.d.ts +19 -5
  10. package/dist/src/i18n/es.js +19 -5
  11. package/dist/src/i18n/es.js.map +1 -1
  12. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  13. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  14. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  15. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  16. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  17. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  18. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
  20. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
  21. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
  22. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  23. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
  24. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
  25. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
  27. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  28. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  29. package/dist/src/schema/profile.schema.d.ts +5 -5
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  32. package/dist/src/ticket/dto/create-ticket.dto.d.ts +25 -1
  33. package/dist/src/ticket/dto/create-ticket.dto.js +2 -0
  34. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
  35. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
  36. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +46 -26
  37. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +46 -26
  38. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +46 -26
  39. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
  40. package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
  41. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  42. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  43. package/dist/src/ticket/dto/ticket.dto.d.ts +12 -0
  44. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  45. package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
  46. package/dist/types/prisma-schema/edge.js +7 -5
  47. package/dist/types/prisma-schema/index-browser.js +4 -2
  48. package/dist/types/prisma-schema/index.d.ts +131 -3
  49. package/dist/types/prisma-schema/index.js +7 -5
  50. package/dist/types/prisma-schema/package.json +1 -1
  51. package/dist/types/prisma-schema/schema.prisma +4 -1
  52. package/dist/types/prisma-schema/wasm.js +4 -2
  53. package/dist/types/schema.d.ts +100 -110
  54. package/package.json +3 -2
  55. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -288
  56. package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -31
@@ -1,288 +0,0 @@
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 {};
@@ -1,31 +0,0 @@
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