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.
- 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 +1 -1
- package/dist/src/account/dto/get-me.dto.d.ts +6 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
- 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/get-by-id-event.dto.d.ts +20 -0
- package/dist/src/i18n/es.d.ts +19 -5
- package/dist/src/i18n/es.js +19 -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 +18 -18
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
- 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 +18 -18
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
- 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/massive-allocation.dto.d.ts +18 -18
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +25 -1
- package/dist/src/ticket/dto/create-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
- 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 +12 -0
- package/dist/src/ticket/dto/ticket.dto.js +2 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
- 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 +131 -3
- 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 +4 -1
- package/dist/types/prisma-schema/wasm.js +4 -2
- package/dist/types/schema.d.ts +100 -110
- package/package.json +3 -2
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -288
- package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -31
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;
|
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,8 @@ export interface components {
|
|
2694
2696
|
status: "BOOKED" | "PAID" | "FREE";
|
2695
2697
|
fullName: string;
|
2696
2698
|
mail: string;
|
2699
|
+
dni: string;
|
2700
|
+
seat: number;
|
2697
2701
|
profileId?: string;
|
2698
2702
|
};
|
2699
2703
|
CreateTicketResponseDto: {
|
@@ -2703,6 +2707,8 @@ export interface components {
|
|
2703
2707
|
status: "BOOKED" | "PAID" | "FREE";
|
2704
2708
|
fullName: string;
|
2705
2709
|
mail: string;
|
2710
|
+
dni: string;
|
2711
|
+
seat: number;
|
2706
2712
|
created_at: string;
|
2707
2713
|
updated_at: string;
|
2708
2714
|
event: {
|
@@ -2721,39 +2727,6 @@ export interface components {
|
|
2721
2727
|
updated_at: string;
|
2722
2728
|
};
|
2723
2729
|
};
|
2724
|
-
CreateManyTicketDto: {
|
2725
|
-
eventId: string;
|
2726
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2727
|
-
status: "BOOKED" | "PAID" | "FREE";
|
2728
|
-
fullName: string;
|
2729
|
-
mail: string;
|
2730
|
-
profileId?: string;
|
2731
|
-
}[];
|
2732
|
-
CreateManyTicketResponseDto: {
|
2733
|
-
id: string;
|
2734
|
-
eventId: string;
|
2735
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2736
|
-
status: "BOOKED" | "PAID" | "FREE";
|
2737
|
-
fullName: string;
|
2738
|
-
mail: string;
|
2739
|
-
created_at: string;
|
2740
|
-
updated_at: string;
|
2741
|
-
event: {
|
2742
|
-
id: string;
|
2743
|
-
name: string;
|
2744
|
-
date: string;
|
2745
|
-
startingDate: string;
|
2746
|
-
endingDate: string;
|
2747
|
-
location: string;
|
2748
|
-
folderId: string | null;
|
2749
|
-
tagAssistedId: string;
|
2750
|
-
tagConfirmedId: string;
|
2751
|
-
active: boolean;
|
2752
|
-
supraEventId: string | null;
|
2753
|
-
created_at: string;
|
2754
|
-
updated_at: string;
|
2755
|
-
};
|
2756
|
-
}[];
|
2757
2730
|
FindAllTicketsResponseDto: {
|
2758
2731
|
tickets: {
|
2759
2732
|
id: string;
|
@@ -2762,6 +2735,8 @@ export interface components {
|
|
2762
2735
|
status: "BOOKED" | "PAID" | "FREE";
|
2763
2736
|
fullName: string;
|
2764
2737
|
mail: string;
|
2738
|
+
dni: string;
|
2739
|
+
seat: number;
|
2765
2740
|
created_at: string;
|
2766
2741
|
updated_at: string;
|
2767
2742
|
event: {
|
@@ -2779,6 +2754,8 @@ export interface components {
|
|
2779
2754
|
status: "BOOKED" | "PAID" | "FREE";
|
2780
2755
|
fullName: string;
|
2781
2756
|
mail: string;
|
2757
|
+
dni: string;
|
2758
|
+
seat: number;
|
2782
2759
|
created_at: string;
|
2783
2760
|
updated_at: string;
|
2784
2761
|
event: {
|
@@ -2789,7 +2766,7 @@ export interface components {
|
|
2789
2766
|
profile: {
|
2790
2767
|
id: string;
|
2791
2768
|
shortId: number;
|
2792
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2769
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2793
2770
|
firstTimeMiExpo: boolean;
|
2794
2771
|
username: string | null;
|
2795
2772
|
password: string | null;
|
@@ -2822,6 +2799,8 @@ export interface components {
|
|
2822
2799
|
status: "BOOKED" | "PAID" | "FREE";
|
2823
2800
|
fullName: string;
|
2824
2801
|
mail: string;
|
2802
|
+
dni: string;
|
2803
|
+
seat: number;
|
2825
2804
|
created_at: string;
|
2826
2805
|
updated_at: string;
|
2827
2806
|
event: {
|
@@ -2832,7 +2811,7 @@ export interface components {
|
|
2832
2811
|
profile: {
|
2833
2812
|
id: string;
|
2834
2813
|
shortId: number;
|
2835
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2814
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2836
2815
|
firstTimeMiExpo: boolean;
|
2837
2816
|
username: string | null;
|
2838
2817
|
password: string | null;
|
@@ -2865,6 +2844,8 @@ export interface components {
|
|
2865
2844
|
status: "BOOKED" | "PAID" | "FREE";
|
2866
2845
|
fullName: string;
|
2867
2846
|
mail: string;
|
2847
|
+
dni: string;
|
2848
|
+
seat: number;
|
2868
2849
|
created_at: string;
|
2869
2850
|
updated_at: string;
|
2870
2851
|
event: {
|
@@ -2875,7 +2856,7 @@ export interface components {
|
|
2875
2856
|
profile: {
|
2876
2857
|
id: string;
|
2877
2858
|
shortId: number;
|
2878
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2859
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2879
2860
|
firstTimeMiExpo: boolean;
|
2880
2861
|
username: string | null;
|
2881
2862
|
password: string | null;
|
@@ -2908,6 +2889,8 @@ export interface components {
|
|
2908
2889
|
status: "BOOKED" | "PAID" | "FREE";
|
2909
2890
|
fullName: string;
|
2910
2891
|
mail: string;
|
2892
|
+
dni: string;
|
2893
|
+
seat: number;
|
2911
2894
|
created_at: string;
|
2912
2895
|
updated_at: string;
|
2913
2896
|
event: {
|
@@ -2940,6 +2923,8 @@ export interface components {
|
|
2940
2923
|
status: "BOOKED" | "PAID" | "FREE";
|
2941
2924
|
fullName: string;
|
2942
2925
|
mail: string;
|
2926
|
+
dni: string;
|
2927
|
+
seat: number;
|
2943
2928
|
created_at: string;
|
2944
2929
|
updated_at: string;
|
2945
2930
|
};
|
@@ -2950,6 +2935,8 @@ export interface components {
|
|
2950
2935
|
status: "BOOKED" | "PAID" | "FREE";
|
2951
2936
|
fullName: string;
|
2952
2937
|
mail: string;
|
2938
|
+
dni: string;
|
2939
|
+
seat: number;
|
2953
2940
|
created_at: string;
|
2954
2941
|
updated_at: string;
|
2955
2942
|
};
|
@@ -2960,9 +2947,14 @@ export interface components {
|
|
2960
2947
|
status: "BOOKED" | "PAID" | "FREE";
|
2961
2948
|
fullName: string;
|
2962
2949
|
mail: string;
|
2950
|
+
dni: string;
|
2951
|
+
seat: number;
|
2963
2952
|
created_at: string;
|
2964
2953
|
updated_at: string;
|
2965
2954
|
};
|
2955
|
+
SendEmailResponseDto: {
|
2956
|
+
mailId: string;
|
2957
|
+
};
|
2966
2958
|
SendOtpDto: {
|
2967
2959
|
phoneNumber: string;
|
2968
2960
|
};
|
@@ -2987,7 +2979,7 @@ export interface components {
|
|
2987
2979
|
profile: {
|
2988
2980
|
id: string;
|
2989
2981
|
shortId: number;
|
2990
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2982
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2991
2983
|
firstTimeMiExpo: boolean;
|
2992
2984
|
username: string | null;
|
2993
2985
|
password: string | null;
|
@@ -3035,7 +3027,7 @@ export interface components {
|
|
3035
3027
|
profile: {
|
3036
3028
|
id: string;
|
3037
3029
|
shortId: number;
|
3038
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3030
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3039
3031
|
firstTimeMiExpo: boolean;
|
3040
3032
|
username: string | null;
|
3041
3033
|
phoneNumber: string;
|
@@ -3061,7 +3053,7 @@ export interface components {
|
|
3061
3053
|
GetMiExpoMeResponseDto: {
|
3062
3054
|
id: string;
|
3063
3055
|
shortId: number;
|
3064
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3056
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3065
3057
|
firstTimeMiExpo: boolean;
|
3066
3058
|
username: string | null;
|
3067
3059
|
phoneNumber: string;
|
@@ -3148,7 +3140,7 @@ export interface components {
|
|
3148
3140
|
user: {
|
3149
3141
|
id: string;
|
3150
3142
|
shortId: number;
|
3151
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3143
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3152
3144
|
firstTimeMiExpo: boolean;
|
3153
3145
|
username: string | null;
|
3154
3146
|
phoneNumber: string;
|
@@ -5141,45 +5133,6 @@ export interface operations {
|
|
5141
5133
|
};
|
5142
5134
|
};
|
5143
5135
|
};
|
5144
|
-
TicketController_createMany: {
|
5145
|
-
parameters: {
|
5146
|
-
query?: never;
|
5147
|
-
header?: never;
|
5148
|
-
path?: never;
|
5149
|
-
cookie?: never;
|
5150
|
-
};
|
5151
|
-
requestBody: {
|
5152
|
-
content: {
|
5153
|
-
"application/json": components["schemas"]["CreateManyTicketDto"];
|
5154
|
-
};
|
5155
|
-
};
|
5156
|
-
responses: {
|
5157
|
-
200: {
|
5158
|
-
headers: {
|
5159
|
-
[name: string]: unknown;
|
5160
|
-
};
|
5161
|
-
content: {
|
5162
|
-
"application/json": components["schemas"]["CreateManyTicketResponseDto"];
|
5163
|
-
};
|
5164
|
-
};
|
5165
|
-
404: {
|
5166
|
-
headers: {
|
5167
|
-
[name: string]: unknown;
|
5168
|
-
};
|
5169
|
-
content: {
|
5170
|
-
"application/json": components["schemas"]["ErrorDto"];
|
5171
|
-
};
|
5172
|
-
};
|
5173
|
-
409: {
|
5174
|
-
headers: {
|
5175
|
-
[name: string]: unknown;
|
5176
|
-
};
|
5177
|
-
content: {
|
5178
|
-
"application/json": components["schemas"]["ErrorDto"];
|
5179
|
-
};
|
5180
|
-
};
|
5181
|
-
};
|
5182
|
-
};
|
5183
5136
|
TicketController_findAll: {
|
5184
5137
|
parameters: {
|
5185
5138
|
query?: never;
|
@@ -5443,6 +5396,43 @@ export interface operations {
|
|
5443
5396
|
};
|
5444
5397
|
};
|
5445
5398
|
};
|
5399
|
+
TicketController_sendEmail: {
|
5400
|
+
parameters: {
|
5401
|
+
query?: never;
|
5402
|
+
header?: never;
|
5403
|
+
path: {
|
5404
|
+
id: string;
|
5405
|
+
};
|
5406
|
+
cookie?: never;
|
5407
|
+
};
|
5408
|
+
requestBody?: never;
|
5409
|
+
responses: {
|
5410
|
+
200: {
|
5411
|
+
headers: {
|
5412
|
+
[name: string]: unknown;
|
5413
|
+
};
|
5414
|
+
content: {
|
5415
|
+
"application/json": components["schemas"]["SendEmailResponseDto"];
|
5416
|
+
};
|
5417
|
+
};
|
5418
|
+
401: {
|
5419
|
+
headers: {
|
5420
|
+
[name: string]: unknown;
|
5421
|
+
};
|
5422
|
+
content: {
|
5423
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5424
|
+
};
|
5425
|
+
};
|
5426
|
+
404: {
|
5427
|
+
headers: {
|
5428
|
+
[name: string]: unknown;
|
5429
|
+
};
|
5430
|
+
content: {
|
5431
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5432
|
+
};
|
5433
|
+
};
|
5434
|
+
};
|
5435
|
+
};
|
5446
5436
|
WebhookController_verify: {
|
5447
5437
|
parameters: {
|
5448
5438
|
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.1",
|
4
4
|
"description": "",
|
5
5
|
"author": "Expo",
|
6
6
|
"private": false,
|
@@ -73,10 +73,10 @@
|
|
73
73
|
"class-validator": "^0.14.1",
|
74
74
|
"country-state-city": "^3.2.1",
|
75
75
|
"date-fns": "^4.1.0",
|
76
|
+
"eslint": "^9.11.1",
|
76
77
|
"eslint-config-prettier": "^9.0.0",
|
77
78
|
"eslint-plugin-prettier": "^5.0.0",
|
78
79
|
"eslint-plugin-unused-imports": "^4.1.4",
|
79
|
-
"eslint": "^9.11.1",
|
80
80
|
"exceljs": "^4.4.0",
|
81
81
|
"fast-csv": "^5.0.2",
|
82
82
|
"globals": "^15.10.0",
|
@@ -93,6 +93,7 @@
|
|
93
93
|
"prettier": "^3.0.0",
|
94
94
|
"prisma": "^6.3.1",
|
95
95
|
"reflect-metadata": "^0.2.0",
|
96
|
+
"resend": "^4.1.2",
|
96
97
|
"source-map-support": "^0.5.21",
|
97
98
|
"string-comparison": "^1.3.0",
|
98
99
|
"ts-node": "^10.9.2",
|