expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.9 → 0.36.0-EXPO-323-Enviar-mail-ticket.4
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 -6
- package/dist/src/account/dto/create-account.dto.d.ts +12 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +9 -9
- package/dist/src/account/dto/get-me.dto.d.ts +22 -22
- package/dist/src/account/dto/update-global-filter.dto.d.ts +14 -14
- package/dist/src/auth/dto/login.dto.d.ts +11 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
- package/dist/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
- package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +60 -40
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/i18n/es.d.ts +25 -5
- package/dist/src/i18n/es.js +25 -5
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
- package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
- package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
- package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
- package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +30 -30
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +48 -48
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +19 -19
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +30 -30
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +30 -30
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +30 -30
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
- package/dist/src/schema/profile.schema.d.ts +5 -5
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
- package/dist/src/tag/dto/tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
- package/dist/src/ticket/constants.d.ts +12 -14
- package/dist/src/ticket/constants.js +355 -267
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +28 -9
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +16 -4
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +28 -8
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +54 -34
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +54 -34
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +54 -34
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +28 -8
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +16 -4
- package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
- package/dist/src/ticket/dto/send-email.dto.js +15 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +16 -4
- package/dist/src/ticket/dto/ticket.dto.js +2 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -8
- package/dist/types/prisma-schema/edge.js +7 -5
- package/dist/types/prisma-schema/index-browser.js +4 -2
- package/dist/types/prisma-schema/index.d.ts +193 -65
- package/dist/types/prisma-schema/index.js +7 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +5 -1
- package/dist/types/prisma-schema/wasm.js +4 -2
- package/dist/types/schema.d.ts +99 -118
- package/package.json +8 -8
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -728
- package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -58
package/dist/types/schema.d.ts
CHANGED
@@ -975,22 +975,6 @@ export interface paths {
|
|
975
975
|
patch?: never;
|
976
976
|
trace?: never;
|
977
977
|
};
|
978
|
-
"/ticket/create-many": {
|
979
|
-
parameters: {
|
980
|
-
query?: never;
|
981
|
-
header?: never;
|
982
|
-
path?: never;
|
983
|
-
cookie?: never;
|
984
|
-
};
|
985
|
-
get?: never;
|
986
|
-
put?: never;
|
987
|
-
post: operations["TicketController_createMany"];
|
988
|
-
delete?: never;
|
989
|
-
options?: never;
|
990
|
-
head?: never;
|
991
|
-
patch?: never;
|
992
|
-
trace?: never;
|
993
|
-
};
|
994
978
|
"/ticket/all": {
|
995
979
|
parameters: {
|
996
980
|
query?: never;
|
@@ -1135,6 +1119,22 @@ export interface paths {
|
|
1135
1119
|
patch?: never;
|
1136
1120
|
trace?: never;
|
1137
1121
|
};
|
1122
|
+
"/ticket/send-email/{id}": {
|
1123
|
+
parameters: {
|
1124
|
+
query?: never;
|
1125
|
+
header?: never;
|
1126
|
+
path?: never;
|
1127
|
+
cookie?: never;
|
1128
|
+
};
|
1129
|
+
get?: never;
|
1130
|
+
put?: never;
|
1131
|
+
post: operations["TicketController_sendEmail"];
|
1132
|
+
delete?: never;
|
1133
|
+
options?: never;
|
1134
|
+
head?: never;
|
1135
|
+
patch?: never;
|
1136
|
+
trace?: never;
|
1137
|
+
};
|
1138
1138
|
"/webhook": {
|
1139
1139
|
parameters: {
|
1140
1140
|
query?: never;
|
@@ -1275,7 +1275,7 @@ export interface components {
|
|
1275
1275
|
user: {
|
1276
1276
|
id: string;
|
1277
1277
|
username: string;
|
1278
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1278
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1279
1279
|
isGlobalFilterActive: boolean;
|
1280
1280
|
fcmToken: string[];
|
1281
1281
|
created_at: string;
|
@@ -1387,7 +1387,7 @@ export interface components {
|
|
1387
1387
|
profiles: {
|
1388
1388
|
id: string;
|
1389
1389
|
shortId: number;
|
1390
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1390
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1391
1391
|
firstTimeMiExpo: boolean;
|
1392
1392
|
username: string | null;
|
1393
1393
|
password: string | null;
|
@@ -1419,7 +1419,7 @@ export interface components {
|
|
1419
1419
|
profiles: {
|
1420
1420
|
id: string;
|
1421
1421
|
shortId: number;
|
1422
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1422
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1423
1423
|
firstTimeMiExpo: boolean;
|
1424
1424
|
username: string | null;
|
1425
1425
|
password: string | null;
|
@@ -1446,12 +1446,12 @@ export interface components {
|
|
1446
1446
|
CreateAccountDto: {
|
1447
1447
|
username: string;
|
1448
1448
|
password: string;
|
1449
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1449
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1450
1450
|
};
|
1451
1451
|
CreateAccountResponseDto: {
|
1452
1452
|
id: string;
|
1453
1453
|
username: string;
|
1454
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1454
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1455
1455
|
isGlobalFilterActive: boolean;
|
1456
1456
|
fcmToken: string[];
|
1457
1457
|
};
|
@@ -1463,7 +1463,7 @@ export interface components {
|
|
1463
1463
|
id: string;
|
1464
1464
|
username: string;
|
1465
1465
|
password: string;
|
1466
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1466
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1467
1467
|
isGlobalFilterActive: boolean;
|
1468
1468
|
fcmToken: string[];
|
1469
1469
|
created_at: string;
|
@@ -1493,7 +1493,7 @@ export interface components {
|
|
1493
1493
|
GetMeResponseDto: {
|
1494
1494
|
id: string;
|
1495
1495
|
username: string;
|
1496
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1496
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1497
1497
|
isGlobalFilterActive: boolean;
|
1498
1498
|
fcmToken: string[];
|
1499
1499
|
created_at: string;
|
@@ -2080,6 +2080,8 @@ export interface components {
|
|
2080
2080
|
status: "BOOKED" | "PAID" | "FREE";
|
2081
2081
|
fullName: string;
|
2082
2082
|
mail: string;
|
2083
|
+
dni: string;
|
2084
|
+
seat: number | null;
|
2083
2085
|
created_at: string;
|
2084
2086
|
updated_at: string;
|
2085
2087
|
}[];
|
@@ -2162,7 +2164,7 @@ export interface components {
|
|
2162
2164
|
profiles: {
|
2163
2165
|
id: string;
|
2164
2166
|
shortId: number;
|
2165
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2167
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2166
2168
|
firstTimeMiExpo: boolean;
|
2167
2169
|
username: string | null;
|
2168
2170
|
password: string | null;
|
@@ -2202,7 +2204,7 @@ export interface components {
|
|
2202
2204
|
profiles: {
|
2203
2205
|
id: string;
|
2204
2206
|
shortId: number;
|
2205
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2207
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2206
2208
|
firstTimeMiExpo: boolean;
|
2207
2209
|
username: string | null;
|
2208
2210
|
password: string | null;
|
@@ -2260,7 +2262,7 @@ export interface components {
|
|
2260
2262
|
profiles: {
|
2261
2263
|
id: string;
|
2262
2264
|
shortId: number;
|
2263
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2265
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2264
2266
|
firstTimeMiExpo: boolean;
|
2265
2267
|
username: string | null;
|
2266
2268
|
password: string | null;
|
@@ -2301,7 +2303,7 @@ export interface components {
|
|
2301
2303
|
profiles: {
|
2302
2304
|
id: string;
|
2303
2305
|
shortId: number;
|
2304
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2306
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2305
2307
|
firstTimeMiExpo: boolean;
|
2306
2308
|
username: string | null;
|
2307
2309
|
password: string | null;
|
@@ -2337,7 +2339,7 @@ export interface components {
|
|
2337
2339
|
[key: string]: {
|
2338
2340
|
id: string;
|
2339
2341
|
shortId: number;
|
2340
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2342
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2341
2343
|
firstTimeMiExpo: boolean;
|
2342
2344
|
username: string | null;
|
2343
2345
|
password: string | null;
|
@@ -2375,7 +2377,7 @@ export interface components {
|
|
2375
2377
|
FindByPhoneNumberResponseDto: {
|
2376
2378
|
id: string;
|
2377
2379
|
shortId: number;
|
2378
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2380
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2379
2381
|
firstTimeMiExpo: boolean;
|
2380
2382
|
username: string | null;
|
2381
2383
|
password: string | null;
|
@@ -2465,7 +2467,7 @@ export interface components {
|
|
2465
2467
|
FindByIdProfileResponseDto: {
|
2466
2468
|
id: string;
|
2467
2469
|
shortId: number;
|
2468
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2470
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2469
2471
|
firstTimeMiExpo: boolean;
|
2470
2472
|
username: string | null;
|
2471
2473
|
phoneNumber: string;
|
@@ -2523,7 +2525,7 @@ export interface components {
|
|
2523
2525
|
DeleteProfileResponseDto: {
|
2524
2526
|
id: string;
|
2525
2527
|
shortId: number;
|
2526
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2528
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2527
2529
|
firstTimeMiExpo: boolean;
|
2528
2530
|
username: string | null;
|
2529
2531
|
password: string | null;
|
@@ -2694,6 +2696,7 @@ export interface components {
|
|
2694
2696
|
status: "BOOKED" | "PAID" | "FREE";
|
2695
2697
|
fullName: string;
|
2696
2698
|
mail: string;
|
2699
|
+
dni: string;
|
2697
2700
|
profileId?: string;
|
2698
2701
|
};
|
2699
2702
|
CreateTicketResponseDto: {
|
@@ -2703,6 +2706,8 @@ export interface components {
|
|
2703
2706
|
status: "BOOKED" | "PAID" | "FREE";
|
2704
2707
|
fullName: string;
|
2705
2708
|
mail: string;
|
2709
|
+
dni: string;
|
2710
|
+
seat: number | null;
|
2706
2711
|
created_at: string;
|
2707
2712
|
updated_at: string;
|
2708
2713
|
event: {
|
@@ -2721,47 +2726,6 @@ export interface components {
|
|
2721
2726
|
updated_at: string;
|
2722
2727
|
};
|
2723
2728
|
};
|
2724
|
-
CreateManyTicketDto: {
|
2725
|
-
tickets: {
|
2726
|
-
eventId: string;
|
2727
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2728
|
-
status: "BOOKED" | "PAID" | "FREE";
|
2729
|
-
fullName: string;
|
2730
|
-
mail: string;
|
2731
|
-
profileId?: string;
|
2732
|
-
}[];
|
2733
|
-
};
|
2734
|
-
CreateManyTicketWithPdfsResponseDto: {
|
2735
|
-
tickets: {
|
2736
|
-
id: string;
|
2737
|
-
eventId: string;
|
2738
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2739
|
-
status: "BOOKED" | "PAID" | "FREE";
|
2740
|
-
fullName: string;
|
2741
|
-
mail: string;
|
2742
|
-
created_at: string;
|
2743
|
-
updated_at: string;
|
2744
|
-
event: {
|
2745
|
-
id: string;
|
2746
|
-
name: string;
|
2747
|
-
date: string;
|
2748
|
-
startingDate: string;
|
2749
|
-
endingDate: string;
|
2750
|
-
location: string;
|
2751
|
-
folderId: string | null;
|
2752
|
-
tagAssistedId: string;
|
2753
|
-
tagConfirmedId: string;
|
2754
|
-
active: boolean;
|
2755
|
-
supraEventId: string | null;
|
2756
|
-
created_at: string;
|
2757
|
-
updated_at: string;
|
2758
|
-
};
|
2759
|
-
}[];
|
2760
|
-
pdfs: {
|
2761
|
-
ticketId: string;
|
2762
|
-
pdfBase64: string;
|
2763
|
-
}[];
|
2764
|
-
};
|
2765
2729
|
FindAllTicketsResponseDto: {
|
2766
2730
|
tickets: {
|
2767
2731
|
id: string;
|
@@ -2770,6 +2734,8 @@ export interface components {
|
|
2770
2734
|
status: "BOOKED" | "PAID" | "FREE";
|
2771
2735
|
fullName: string;
|
2772
2736
|
mail: string;
|
2737
|
+
dni: string;
|
2738
|
+
seat: number | null;
|
2773
2739
|
created_at: string;
|
2774
2740
|
updated_at: string;
|
2775
2741
|
event: {
|
@@ -2787,6 +2753,8 @@ export interface components {
|
|
2787
2753
|
status: "BOOKED" | "PAID" | "FREE";
|
2788
2754
|
fullName: string;
|
2789
2755
|
mail: string;
|
2756
|
+
dni: string;
|
2757
|
+
seat: number | null;
|
2790
2758
|
created_at: string;
|
2791
2759
|
updated_at: string;
|
2792
2760
|
event: {
|
@@ -2797,7 +2765,7 @@ export interface components {
|
|
2797
2765
|
profile: {
|
2798
2766
|
id: string;
|
2799
2767
|
shortId: number;
|
2800
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2768
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2801
2769
|
firstTimeMiExpo: boolean;
|
2802
2770
|
username: string | null;
|
2803
2771
|
password: string | null;
|
@@ -2830,6 +2798,8 @@ export interface components {
|
|
2830
2798
|
status: "BOOKED" | "PAID" | "FREE";
|
2831
2799
|
fullName: string;
|
2832
2800
|
mail: string;
|
2801
|
+
dni: string;
|
2802
|
+
seat: number | null;
|
2833
2803
|
created_at: string;
|
2834
2804
|
updated_at: string;
|
2835
2805
|
event: {
|
@@ -2840,7 +2810,7 @@ export interface components {
|
|
2840
2810
|
profile: {
|
2841
2811
|
id: string;
|
2842
2812
|
shortId: number;
|
2843
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2813
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2844
2814
|
firstTimeMiExpo: boolean;
|
2845
2815
|
username: string | null;
|
2846
2816
|
password: string | null;
|
@@ -2873,6 +2843,8 @@ export interface components {
|
|
2873
2843
|
status: "BOOKED" | "PAID" | "FREE";
|
2874
2844
|
fullName: string;
|
2875
2845
|
mail: string;
|
2846
|
+
dni: string;
|
2847
|
+
seat: number | null;
|
2876
2848
|
created_at: string;
|
2877
2849
|
updated_at: string;
|
2878
2850
|
event: {
|
@@ -2883,7 +2855,7 @@ export interface components {
|
|
2883
2855
|
profile: {
|
2884
2856
|
id: string;
|
2885
2857
|
shortId: number;
|
2886
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2858
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2887
2859
|
firstTimeMiExpo: boolean;
|
2888
2860
|
username: string | null;
|
2889
2861
|
password: string | null;
|
@@ -2916,6 +2888,8 @@ export interface components {
|
|
2916
2888
|
status: "BOOKED" | "PAID" | "FREE";
|
2917
2889
|
fullName: string;
|
2918
2890
|
mail: string;
|
2891
|
+
dni: string;
|
2892
|
+
seat: number | null;
|
2919
2893
|
created_at: string;
|
2920
2894
|
updated_at: string;
|
2921
2895
|
event: {
|
@@ -2948,6 +2922,8 @@ export interface components {
|
|
2948
2922
|
status: "BOOKED" | "PAID" | "FREE";
|
2949
2923
|
fullName: string;
|
2950
2924
|
mail: string;
|
2925
|
+
dni: string;
|
2926
|
+
seat: number | null;
|
2951
2927
|
created_at: string;
|
2952
2928
|
updated_at: string;
|
2953
2929
|
};
|
@@ -2958,6 +2934,8 @@ export interface components {
|
|
2958
2934
|
status: "BOOKED" | "PAID" | "FREE";
|
2959
2935
|
fullName: string;
|
2960
2936
|
mail: string;
|
2937
|
+
dni: string;
|
2938
|
+
seat: number | null;
|
2961
2939
|
created_at: string;
|
2962
2940
|
updated_at: string;
|
2963
2941
|
};
|
@@ -2968,9 +2946,14 @@ export interface components {
|
|
2968
2946
|
status: "BOOKED" | "PAID" | "FREE";
|
2969
2947
|
fullName: string;
|
2970
2948
|
mail: string;
|
2949
|
+
dni: string;
|
2950
|
+
seat: number | null;
|
2971
2951
|
created_at: string;
|
2972
2952
|
updated_at: string;
|
2973
2953
|
};
|
2954
|
+
SendEmailResponseDto: {
|
2955
|
+
mailId: string;
|
2956
|
+
};
|
2974
2957
|
SendOtpDto: {
|
2975
2958
|
phoneNumber: string;
|
2976
2959
|
};
|
@@ -2995,7 +2978,7 @@ export interface components {
|
|
2995
2978
|
profile: {
|
2996
2979
|
id: string;
|
2997
2980
|
shortId: number;
|
2998
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2981
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2999
2982
|
firstTimeMiExpo: boolean;
|
3000
2983
|
username: string | null;
|
3001
2984
|
password: string | null;
|
@@ -3043,7 +3026,7 @@ export interface components {
|
|
3043
3026
|
profile: {
|
3044
3027
|
id: string;
|
3045
3028
|
shortId: number;
|
3046
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3029
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3047
3030
|
firstTimeMiExpo: boolean;
|
3048
3031
|
username: string | null;
|
3049
3032
|
phoneNumber: string;
|
@@ -3069,7 +3052,7 @@ export interface components {
|
|
3069
3052
|
GetMiExpoMeResponseDto: {
|
3070
3053
|
id: string;
|
3071
3054
|
shortId: number;
|
3072
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3055
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3073
3056
|
firstTimeMiExpo: boolean;
|
3074
3057
|
username: string | null;
|
3075
3058
|
phoneNumber: string;
|
@@ -3156,7 +3139,7 @@ export interface components {
|
|
3156
3139
|
user: {
|
3157
3140
|
id: string;
|
3158
3141
|
shortId: number;
|
3159
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3142
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3160
3143
|
firstTimeMiExpo: boolean;
|
3161
3144
|
username: string | null;
|
3162
3145
|
phoneNumber: string;
|
@@ -5149,45 +5132,6 @@ export interface operations {
|
|
5149
5132
|
};
|
5150
5133
|
};
|
5151
5134
|
};
|
5152
|
-
TicketController_createMany: {
|
5153
|
-
parameters: {
|
5154
|
-
query?: never;
|
5155
|
-
header?: never;
|
5156
|
-
path?: never;
|
5157
|
-
cookie?: never;
|
5158
|
-
};
|
5159
|
-
requestBody: {
|
5160
|
-
content: {
|
5161
|
-
"application/json": components["schemas"]["CreateManyTicketDto"];
|
5162
|
-
};
|
5163
|
-
};
|
5164
|
-
responses: {
|
5165
|
-
200: {
|
5166
|
-
headers: {
|
5167
|
-
[name: string]: unknown;
|
5168
|
-
};
|
5169
|
-
content: {
|
5170
|
-
"application/json": components["schemas"]["CreateManyTicketWithPdfsResponseDto"];
|
5171
|
-
};
|
5172
|
-
};
|
5173
|
-
404: {
|
5174
|
-
headers: {
|
5175
|
-
[name: string]: unknown;
|
5176
|
-
};
|
5177
|
-
content: {
|
5178
|
-
"application/json": components["schemas"]["ErrorDto"];
|
5179
|
-
};
|
5180
|
-
};
|
5181
|
-
409: {
|
5182
|
-
headers: {
|
5183
|
-
[name: string]: unknown;
|
5184
|
-
};
|
5185
|
-
content: {
|
5186
|
-
"application/json": components["schemas"]["ErrorDto"];
|
5187
|
-
};
|
5188
|
-
};
|
5189
|
-
};
|
5190
|
-
};
|
5191
5135
|
TicketController_findAll: {
|
5192
5136
|
parameters: {
|
5193
5137
|
query?: never;
|
@@ -5451,6 +5395,43 @@ export interface operations {
|
|
5451
5395
|
};
|
5452
5396
|
};
|
5453
5397
|
};
|
5398
|
+
TicketController_sendEmail: {
|
5399
|
+
parameters: {
|
5400
|
+
query?: never;
|
5401
|
+
header?: never;
|
5402
|
+
path: {
|
5403
|
+
id: string;
|
5404
|
+
};
|
5405
|
+
cookie?: never;
|
5406
|
+
};
|
5407
|
+
requestBody?: never;
|
5408
|
+
responses: {
|
5409
|
+
200: {
|
5410
|
+
headers: {
|
5411
|
+
[name: string]: unknown;
|
5412
|
+
};
|
5413
|
+
content: {
|
5414
|
+
"application/json": components["schemas"]["SendEmailResponseDto"];
|
5415
|
+
};
|
5416
|
+
};
|
5417
|
+
401: {
|
5418
|
+
headers: {
|
5419
|
+
[name: string]: unknown;
|
5420
|
+
};
|
5421
|
+
content: {
|
5422
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5423
|
+
};
|
5424
|
+
};
|
5425
|
+
404: {
|
5426
|
+
headers: {
|
5427
|
+
[name: string]: unknown;
|
5428
|
+
};
|
5429
|
+
content: {
|
5430
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5431
|
+
};
|
5432
|
+
};
|
5433
|
+
};
|
5434
|
+
};
|
5454
5435
|
WebhookController_verify: {
|
5455
5436
|
parameters: {
|
5456
5437
|
query: {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "expo-backend-types",
|
3
|
-
"version": "0.36.0-EXPO-
|
3
|
+
"version": "0.36.0-EXPO-323-Enviar-mail-ticket.4",
|
4
4
|
"description": "",
|
5
5
|
"author": "Expo",
|
6
6
|
"private": false,
|
@@ -35,10 +35,7 @@
|
|
35
35
|
"dependencies": {
|
36
36
|
"@anatine/zod-nestjs": "^2.0.9",
|
37
37
|
"@anatine/zod-openapi": "^2.2.6",
|
38
|
-
"class-transformer": "^0.5.1",
|
39
|
-
"class-validator": "^0.14.1",
|
40
38
|
"i18n-js": "^4.4.3",
|
41
|
-
"libphonenumber-js": "^1.12.6",
|
42
39
|
"patch-package": "^8.0.0",
|
43
40
|
"zod": "^3.23.8"
|
44
41
|
},
|
@@ -55,10 +52,10 @@
|
|
55
52
|
"@nestjs/swagger": "^7.3.1",
|
56
53
|
"@nestjs/testing": "^10.0.0",
|
57
54
|
"@openapitools/openapi-generator-cli": "^2.13.4",
|
58
|
-
"@pdfme/common": "^5.3.
|
59
|
-
"@pdfme/generator": "^5.3.
|
60
|
-
"@pdfme/schemas": "^5.3.
|
61
|
-
"@pdfme/ui": "^5.3.
|
55
|
+
"@pdfme/common": "^5.3.13",
|
56
|
+
"@pdfme/generator": "^5.3.13",
|
57
|
+
"@pdfme/schemas": "^5.3.13",
|
58
|
+
"@pdfme/ui": "^5.3.13",
|
62
59
|
"@prisma/client": "^6.4.1",
|
63
60
|
"@types/bcrypt": "^5.0.2",
|
64
61
|
"@types/express": "^4.17.17",
|
@@ -72,6 +69,8 @@
|
|
72
69
|
"@typescript-eslint/parser": "^8.8.0",
|
73
70
|
"bcrypt": "^5.1.1",
|
74
71
|
"body-parser": "^1.20.3",
|
72
|
+
"class-transformer": "^0.5.1",
|
73
|
+
"class-validator": "^0.14.1",
|
75
74
|
"country-state-city": "^3.2.1",
|
76
75
|
"date-fns": "^4.1.0",
|
77
76
|
"eslint": "^9.11.1",
|
@@ -94,6 +93,7 @@
|
|
94
93
|
"prettier": "^3.0.0",
|
95
94
|
"prisma": "^6.3.1",
|
96
95
|
"reflect-metadata": "^0.2.0",
|
96
|
+
"resend": "^4.1.2",
|
97
97
|
"source-map-support": "^0.5.21",
|
98
98
|
"string-comparison": "^1.3.0",
|
99
99
|
"ts-node": "^10.9.2",
|