expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.3 → 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 -116
- package/package.json +3 -2
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -688
- package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -57
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,45 +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
|
-
CreateManyTicketWithPdfsResponseDto: {
|
2733
|
-
tickets: {
|
2734
|
-
id: string;
|
2735
|
-
eventId: string;
|
2736
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2737
|
-
status: "BOOKED" | "PAID" | "FREE";
|
2738
|
-
fullName: string;
|
2739
|
-
mail: string;
|
2740
|
-
created_at: string;
|
2741
|
-
updated_at: string;
|
2742
|
-
event: {
|
2743
|
-
id: string;
|
2744
|
-
name: string;
|
2745
|
-
date: string;
|
2746
|
-
startingDate: string;
|
2747
|
-
endingDate: string;
|
2748
|
-
location: string;
|
2749
|
-
folderId: string | null;
|
2750
|
-
tagAssistedId: string;
|
2751
|
-
tagConfirmedId: string;
|
2752
|
-
active: boolean;
|
2753
|
-
supraEventId: string | null;
|
2754
|
-
created_at: string;
|
2755
|
-
updated_at: string;
|
2756
|
-
};
|
2757
|
-
}[];
|
2758
|
-
pdfs: {
|
2759
|
-
ticketId: string;
|
2760
|
-
pdfBase64: string;
|
2761
|
-
}[];
|
2762
|
-
};
|
2763
2730
|
FindAllTicketsResponseDto: {
|
2764
2731
|
tickets: {
|
2765
2732
|
id: string;
|
@@ -2768,6 +2735,8 @@ export interface components {
|
|
2768
2735
|
status: "BOOKED" | "PAID" | "FREE";
|
2769
2736
|
fullName: string;
|
2770
2737
|
mail: string;
|
2738
|
+
dni: string;
|
2739
|
+
seat: number;
|
2771
2740
|
created_at: string;
|
2772
2741
|
updated_at: string;
|
2773
2742
|
event: {
|
@@ -2785,6 +2754,8 @@ export interface components {
|
|
2785
2754
|
status: "BOOKED" | "PAID" | "FREE";
|
2786
2755
|
fullName: string;
|
2787
2756
|
mail: string;
|
2757
|
+
dni: string;
|
2758
|
+
seat: number;
|
2788
2759
|
created_at: string;
|
2789
2760
|
updated_at: string;
|
2790
2761
|
event: {
|
@@ -2795,7 +2766,7 @@ export interface components {
|
|
2795
2766
|
profile: {
|
2796
2767
|
id: string;
|
2797
2768
|
shortId: number;
|
2798
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2769
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2799
2770
|
firstTimeMiExpo: boolean;
|
2800
2771
|
username: string | null;
|
2801
2772
|
password: string | null;
|
@@ -2828,6 +2799,8 @@ export interface components {
|
|
2828
2799
|
status: "BOOKED" | "PAID" | "FREE";
|
2829
2800
|
fullName: string;
|
2830
2801
|
mail: string;
|
2802
|
+
dni: string;
|
2803
|
+
seat: number;
|
2831
2804
|
created_at: string;
|
2832
2805
|
updated_at: string;
|
2833
2806
|
event: {
|
@@ -2838,7 +2811,7 @@ export interface components {
|
|
2838
2811
|
profile: {
|
2839
2812
|
id: string;
|
2840
2813
|
shortId: number;
|
2841
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2814
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2842
2815
|
firstTimeMiExpo: boolean;
|
2843
2816
|
username: string | null;
|
2844
2817
|
password: string | null;
|
@@ -2871,6 +2844,8 @@ export interface components {
|
|
2871
2844
|
status: "BOOKED" | "PAID" | "FREE";
|
2872
2845
|
fullName: string;
|
2873
2846
|
mail: string;
|
2847
|
+
dni: string;
|
2848
|
+
seat: number;
|
2874
2849
|
created_at: string;
|
2875
2850
|
updated_at: string;
|
2876
2851
|
event: {
|
@@ -2881,7 +2856,7 @@ export interface components {
|
|
2881
2856
|
profile: {
|
2882
2857
|
id: string;
|
2883
2858
|
shortId: number;
|
2884
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2859
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2885
2860
|
firstTimeMiExpo: boolean;
|
2886
2861
|
username: string | null;
|
2887
2862
|
password: string | null;
|
@@ -2914,6 +2889,8 @@ export interface components {
|
|
2914
2889
|
status: "BOOKED" | "PAID" | "FREE";
|
2915
2890
|
fullName: string;
|
2916
2891
|
mail: string;
|
2892
|
+
dni: string;
|
2893
|
+
seat: number;
|
2917
2894
|
created_at: string;
|
2918
2895
|
updated_at: string;
|
2919
2896
|
event: {
|
@@ -2946,6 +2923,8 @@ export interface components {
|
|
2946
2923
|
status: "BOOKED" | "PAID" | "FREE";
|
2947
2924
|
fullName: string;
|
2948
2925
|
mail: string;
|
2926
|
+
dni: string;
|
2927
|
+
seat: number;
|
2949
2928
|
created_at: string;
|
2950
2929
|
updated_at: string;
|
2951
2930
|
};
|
@@ -2956,6 +2935,8 @@ export interface components {
|
|
2956
2935
|
status: "BOOKED" | "PAID" | "FREE";
|
2957
2936
|
fullName: string;
|
2958
2937
|
mail: string;
|
2938
|
+
dni: string;
|
2939
|
+
seat: number;
|
2959
2940
|
created_at: string;
|
2960
2941
|
updated_at: string;
|
2961
2942
|
};
|
@@ -2966,9 +2947,14 @@ export interface components {
|
|
2966
2947
|
status: "BOOKED" | "PAID" | "FREE";
|
2967
2948
|
fullName: string;
|
2968
2949
|
mail: string;
|
2950
|
+
dni: string;
|
2951
|
+
seat: number;
|
2969
2952
|
created_at: string;
|
2970
2953
|
updated_at: string;
|
2971
2954
|
};
|
2955
|
+
SendEmailResponseDto: {
|
2956
|
+
mailId: string;
|
2957
|
+
};
|
2972
2958
|
SendOtpDto: {
|
2973
2959
|
phoneNumber: string;
|
2974
2960
|
};
|
@@ -2993,7 +2979,7 @@ export interface components {
|
|
2993
2979
|
profile: {
|
2994
2980
|
id: string;
|
2995
2981
|
shortId: number;
|
2996
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2982
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2997
2983
|
firstTimeMiExpo: boolean;
|
2998
2984
|
username: string | null;
|
2999
2985
|
password: string | null;
|
@@ -3041,7 +3027,7 @@ export interface components {
|
|
3041
3027
|
profile: {
|
3042
3028
|
id: string;
|
3043
3029
|
shortId: number;
|
3044
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3030
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3045
3031
|
firstTimeMiExpo: boolean;
|
3046
3032
|
username: string | null;
|
3047
3033
|
phoneNumber: string;
|
@@ -3067,7 +3053,7 @@ export interface components {
|
|
3067
3053
|
GetMiExpoMeResponseDto: {
|
3068
3054
|
id: string;
|
3069
3055
|
shortId: number;
|
3070
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3056
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3071
3057
|
firstTimeMiExpo: boolean;
|
3072
3058
|
username: string | null;
|
3073
3059
|
phoneNumber: string;
|
@@ -3154,7 +3140,7 @@ export interface components {
|
|
3154
3140
|
user: {
|
3155
3141
|
id: string;
|
3156
3142
|
shortId: number;
|
3157
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3143
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
3158
3144
|
firstTimeMiExpo: boolean;
|
3159
3145
|
username: string | null;
|
3160
3146
|
phoneNumber: string;
|
@@ -5147,45 +5133,6 @@ export interface operations {
|
|
5147
5133
|
};
|
5148
5134
|
};
|
5149
5135
|
};
|
5150
|
-
TicketController_createMany: {
|
5151
|
-
parameters: {
|
5152
|
-
query?: never;
|
5153
|
-
header?: never;
|
5154
|
-
path?: never;
|
5155
|
-
cookie?: never;
|
5156
|
-
};
|
5157
|
-
requestBody: {
|
5158
|
-
content: {
|
5159
|
-
"application/json": components["schemas"]["CreateManyTicketDto"];
|
5160
|
-
};
|
5161
|
-
};
|
5162
|
-
responses: {
|
5163
|
-
200: {
|
5164
|
-
headers: {
|
5165
|
-
[name: string]: unknown;
|
5166
|
-
};
|
5167
|
-
content: {
|
5168
|
-
"application/json": components["schemas"]["CreateManyTicketWithPdfsResponseDto"];
|
5169
|
-
};
|
5170
|
-
};
|
5171
|
-
404: {
|
5172
|
-
headers: {
|
5173
|
-
[name: string]: unknown;
|
5174
|
-
};
|
5175
|
-
content: {
|
5176
|
-
"application/json": components["schemas"]["ErrorDto"];
|
5177
|
-
};
|
5178
|
-
};
|
5179
|
-
409: {
|
5180
|
-
headers: {
|
5181
|
-
[name: string]: unknown;
|
5182
|
-
};
|
5183
|
-
content: {
|
5184
|
-
"application/json": components["schemas"]["ErrorDto"];
|
5185
|
-
};
|
5186
|
-
};
|
5187
|
-
};
|
5188
|
-
};
|
5189
5136
|
TicketController_findAll: {
|
5190
5137
|
parameters: {
|
5191
5138
|
query?: never;
|
@@ -5449,6 +5396,43 @@ export interface operations {
|
|
5449
5396
|
};
|
5450
5397
|
};
|
5451
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
|
+
};
|
5452
5436
|
WebhookController_verify: {
|
5453
5437
|
parameters: {
|
5454
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",
|