expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.11 → 0.34.0-EXPO-319-ver-eventos-disponibles.13

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 (45) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -4
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -8
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -4
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -8
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
  8. package/dist/src/i18n/es.d.ts +3 -0
  9. package/dist/src/i18n/es.js +3 -0
  10. package/dist/src/i18n/es.js.map +1 -1
  11. package/dist/src/mi-expo/dto/get-me.dto.d.ts +16 -0
  12. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +20 -0
  13. package/dist/src/mi-expo/dto/login.dto.d.ts +21 -0
  14. package/dist/src/mi-expo/dto/update-me.dto.d.ts +16 -0
  15. package/dist/src/otp/dto/verify-otp.dto.d.ts +20 -0
  16. package/dist/src/profile/dto/create-profile.dto.d.ts +24 -0
  17. package/dist/src/profile/dto/delete-profile.dto.d.ts +16 -0
  18. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
  19. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -0
  20. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +16 -0
  21. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +16 -0
  22. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
  23. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -0
  24. package/dist/src/profile/dto/find-trash.dto.d.ts +6 -0
  25. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
  26. package/dist/src/profile/dto/profile.dto.d.ts +8 -0
  27. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -0
  28. package/dist/src/schema/profile.schema.d.ts +8 -0
  29. package/dist/src/schema/profile.schema.js +2 -0
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
  32. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
  33. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
  34. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
  35. package/dist/types/prisma-schema/edge.js +6 -4
  36. package/dist/types/prisma-schema/index-browser.js +3 -1
  37. package/dist/types/prisma-schema/index.d.ts +66 -2
  38. package/dist/types/prisma-schema/index.js +6 -4
  39. package/dist/types/prisma-schema/package.json +1 -1
  40. package/dist/types/prisma-schema/schema.prisma +3 -0
  41. package/dist/types/prisma-schema/wasm.js +3 -1
  42. package/dist/types/schema.d.ts +30 -76
  43. package/package.json +1 -1
  44. package/dist/src/mi-expo/dto/emit-ticket.dto.d.ts +0 -281
  45. package/dist/src/mi-expo/dto/emit-ticket.dto.js +0 -23
@@ -1231,22 +1231,6 @@ export interface paths {
1231
1231
  patch?: never;
1232
1232
  trace?: never;
1233
1233
  };
1234
- "/mi-expo/emit-ticket": {
1235
- parameters: {
1236
- query?: never;
1237
- header?: never;
1238
- path?: never;
1239
- cookie?: never;
1240
- };
1241
- get?: never;
1242
- put?: never;
1243
- post: operations["MiExpoController_emitTicket"];
1244
- delete?: never;
1245
- options?: never;
1246
- head?: never;
1247
- patch?: never;
1248
- trace?: never;
1249
- };
1250
1234
  "/mi-expo/login": {
1251
1235
  parameters: {
1252
1236
  query?: never;
@@ -1275,7 +1259,7 @@ export interface components {
1275
1259
  user: {
1276
1260
  id: string;
1277
1261
  username: string;
1278
- role: "USER" | "ADMIN" | "FORM";
1262
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1279
1263
  isGlobalFilterActive: boolean;
1280
1264
  fcmToken: string[];
1281
1265
  created_at: string;
@@ -1387,6 +1371,7 @@ export interface components {
1387
1371
  profiles: {
1388
1372
  id: string;
1389
1373
  shortId: number;
1374
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1390
1375
  firstTimeMiExpo: boolean;
1391
1376
  username: string | null;
1392
1377
  password: string | null;
@@ -1418,6 +1403,7 @@ export interface components {
1418
1403
  profiles: {
1419
1404
  id: string;
1420
1405
  shortId: number;
1406
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1421
1407
  firstTimeMiExpo: boolean;
1422
1408
  username: string | null;
1423
1409
  password: string | null;
@@ -1444,12 +1430,12 @@ export interface components {
1444
1430
  CreateAccountDto: {
1445
1431
  username: string;
1446
1432
  password: string;
1447
- role: "USER" | "ADMIN" | "FORM";
1433
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1448
1434
  };
1449
1435
  CreateAccountResponseDto: {
1450
1436
  id: string;
1451
1437
  username: string;
1452
- role: "USER" | "ADMIN" | "FORM";
1438
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1453
1439
  isGlobalFilterActive: boolean;
1454
1440
  fcmToken: string[];
1455
1441
  };
@@ -1461,7 +1447,7 @@ export interface components {
1461
1447
  id: string;
1462
1448
  username: string;
1463
1449
  password: string;
1464
- role: "USER" | "ADMIN" | "FORM";
1450
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1465
1451
  isGlobalFilterActive: boolean;
1466
1452
  fcmToken: string[];
1467
1453
  created_at: string;
@@ -1491,7 +1477,7 @@ export interface components {
1491
1477
  GetMeResponseDto: {
1492
1478
  id: string;
1493
1479
  username: string;
1494
- role: "USER" | "ADMIN" | "FORM";
1480
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1495
1481
  isGlobalFilterActive: boolean;
1496
1482
  fcmToken: string[];
1497
1483
  created_at: string;
@@ -2160,6 +2146,7 @@ export interface components {
2160
2146
  profiles: {
2161
2147
  id: string;
2162
2148
  shortId: number;
2149
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2163
2150
  firstTimeMiExpo: boolean;
2164
2151
  username: string | null;
2165
2152
  password: string | null;
@@ -2199,6 +2186,7 @@ export interface components {
2199
2186
  profiles: {
2200
2187
  id: string;
2201
2188
  shortId: number;
2189
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2202
2190
  firstTimeMiExpo: boolean;
2203
2191
  username: string | null;
2204
2192
  password: string | null;
@@ -2256,6 +2244,7 @@ export interface components {
2256
2244
  profiles: {
2257
2245
  id: string;
2258
2246
  shortId: number;
2247
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2259
2248
  firstTimeMiExpo: boolean;
2260
2249
  username: string | null;
2261
2250
  password: string | null;
@@ -2296,6 +2285,7 @@ export interface components {
2296
2285
  profiles: {
2297
2286
  id: string;
2298
2287
  shortId: number;
2288
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2299
2289
  firstTimeMiExpo: boolean;
2300
2290
  username: string | null;
2301
2291
  password: string | null;
@@ -2331,6 +2321,7 @@ export interface components {
2331
2321
  [key: string]: {
2332
2322
  id: string;
2333
2323
  shortId: number;
2324
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2334
2325
  firstTimeMiExpo: boolean;
2335
2326
  username: string | null;
2336
2327
  password: string | null;
@@ -2368,6 +2359,7 @@ export interface components {
2368
2359
  FindByPhoneNumberResponseDto: {
2369
2360
  id: string;
2370
2361
  shortId: number;
2362
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2371
2363
  firstTimeMiExpo: boolean;
2372
2364
  username: string | null;
2373
2365
  password: string | null;
@@ -2457,6 +2449,7 @@ export interface components {
2457
2449
  FindByIdProfileResponseDto: {
2458
2450
  id: string;
2459
2451
  shortId: number;
2452
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2460
2453
  firstTimeMiExpo: boolean;
2461
2454
  username: string | null;
2462
2455
  phoneNumber: string;
@@ -2514,6 +2507,7 @@ export interface components {
2514
2507
  DeleteProfileResponseDto: {
2515
2508
  id: string;
2516
2509
  shortId: number;
2510
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2517
2511
  firstTimeMiExpo: boolean;
2518
2512
  username: string | null;
2519
2513
  password: string | null;
@@ -2746,6 +2740,7 @@ export interface components {
2746
2740
  profile: {
2747
2741
  id: string;
2748
2742
  shortId: number;
2743
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2749
2744
  firstTimeMiExpo: boolean;
2750
2745
  username: string | null;
2751
2746
  password: string | null;
@@ -2788,6 +2783,7 @@ export interface components {
2788
2783
  profile: {
2789
2784
  id: string;
2790
2785
  shortId: number;
2786
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2791
2787
  firstTimeMiExpo: boolean;
2792
2788
  username: string | null;
2793
2789
  password: string | null;
@@ -2830,6 +2826,7 @@ export interface components {
2830
2826
  profile: {
2831
2827
  id: string;
2832
2828
  shortId: number;
2829
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2833
2830
  firstTimeMiExpo: boolean;
2834
2831
  username: string | null;
2835
2832
  password: string | null;
@@ -2941,6 +2938,7 @@ export interface components {
2941
2938
  profile: {
2942
2939
  id: string;
2943
2940
  shortId: number;
2941
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2944
2942
  firstTimeMiExpo: boolean;
2945
2943
  username: string | null;
2946
2944
  password: string | null;
@@ -2988,6 +2986,7 @@ export interface components {
2988
2986
  profile: {
2989
2987
  id: string;
2990
2988
  shortId: number;
2989
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2991
2990
  firstTimeMiExpo: boolean;
2992
2991
  username: string | null;
2993
2992
  phoneNumber: string;
@@ -3013,6 +3012,7 @@ export interface components {
3013
3012
  GetMiExpoMeResponseDto: {
3014
3013
  id: string;
3015
3014
  shortId: number;
3015
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
3016
3016
  firstTimeMiExpo: boolean;
3017
3017
  username: string | null;
3018
3018
  phoneNumber: string;
@@ -3091,38 +3091,6 @@ export interface components {
3091
3091
  active: boolean;
3092
3092
  }[];
3093
3093
  };
3094
- EmitTicketDto: {
3095
- mail: string;
3096
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
3097
- fullName: string;
3098
- eventId: string;
3099
- status: "BOOKED" | "PAID" | "FREE";
3100
- };
3101
- EmitTicketResponseDto: {
3102
- id: string;
3103
- eventId: string;
3104
- type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
3105
- status: "BOOKED" | "PAID" | "FREE";
3106
- fullName: string;
3107
- mail: string;
3108
- created_at: string;
3109
- updated_at: string;
3110
- event: {
3111
- id: string;
3112
- name: string;
3113
- date: string;
3114
- startingDate: string;
3115
- endingDate: string;
3116
- location: string;
3117
- folderId: string | null;
3118
- tagAssistedId: string;
3119
- tagConfirmedId: string;
3120
- active: boolean;
3121
- supraEventId: string | null;
3122
- created_at: string;
3123
- updated_at: string;
3124
- };
3125
- };
3126
3094
  LoginMiExpoDto: {
3127
3095
  username: string;
3128
3096
  password: string;
@@ -3131,6 +3099,7 @@ export interface components {
3131
3099
  user: {
3132
3100
  id: string;
3133
3101
  shortId: number;
3102
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
3134
3103
  firstTimeMiExpo: boolean;
3135
3104
  username: string | null;
3136
3105
  phoneNumber: string;
@@ -5113,6 +5082,14 @@ export interface operations {
5113
5082
  "application/json": components["schemas"]["ErrorDto"];
5114
5083
  };
5115
5084
  };
5085
+ 409: {
5086
+ headers: {
5087
+ [name: string]: unknown;
5088
+ };
5089
+ content: {
5090
+ "application/json": components["schemas"]["ErrorDto"];
5091
+ };
5092
+ };
5116
5093
  };
5117
5094
  };
5118
5095
  TicketController_findAll: {
@@ -5621,29 +5598,6 @@ export interface operations {
5621
5598
  };
5622
5599
  };
5623
5600
  };
5624
- MiExpoController_emitTicket: {
5625
- parameters: {
5626
- query?: never;
5627
- header?: never;
5628
- path?: never;
5629
- cookie?: never;
5630
- };
5631
- requestBody: {
5632
- content: {
5633
- "application/json": components["schemas"]["EmitTicketDto"];
5634
- };
5635
- };
5636
- responses: {
5637
- 201: {
5638
- headers: {
5639
- [name: string]: unknown;
5640
- };
5641
- content: {
5642
- "application/json": components["schemas"]["EmitTicketResponseDto"];
5643
- };
5644
- };
5645
- };
5646
- };
5647
5601
  MiExpoController_loginUsernamePassword: {
5648
5602
  parameters: {
5649
5603
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.34.0-EXPO-319-ver-eventos-disponibles.11",
3
+ "version": "0.34.0-EXPO-319-ver-eventos-disponibles.13",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
@@ -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