expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.2 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5
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 +0 -20
- package/dist/src/i18n/es.d.ts +5 -19
- package/dist/src/i18n/es.js +5 -19
- 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-many-ticket.dto.d.ts +688 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +57 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +1 -25
- package/dist/src/ticket/dto/create-ticket.dto.js +0 -2
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/ticket.dto.js +0 -2
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -12
- package/dist/types/prisma-schema/edge.js +5 -7
- package/dist/types/prisma-schema/index-browser.js +2 -4
- package/dist/types/prisma-schema/index.d.ts +65 -193
- package/dist/types/prisma-schema/index.js +5 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -5
- package/dist/types/prisma-schema/wasm.js +2 -4
- package/dist/types/schema.d.ts +116 -100
- package/package.json +2 -2
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
package/dist/types/schema.d.ts
CHANGED
@@ -975,6 +975,22 @@ 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
|
+
};
|
978
994
|
"/ticket/all": {
|
979
995
|
parameters: {
|
980
996
|
query?: never;
|
@@ -1119,22 +1135,6 @@ export interface paths {
|
|
1119
1135
|
patch?: never;
|
1120
1136
|
trace?: never;
|
1121
1137
|
};
|
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" | "TICKETS" | "MI_EXPO";
|
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" | "TICKETS" | "MI_EXPO";
|
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" | "TICKETS" | "MI_EXPO";
|
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" | "TICKETS" | "MI_EXPO";
|
1450
1450
|
};
|
1451
1451
|
CreateAccountResponseDto: {
|
1452
1452
|
id: string;
|
1453
1453
|
username: string;
|
1454
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1454
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
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" | "TICKETS" | "MI_EXPO";
|
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" | "TICKETS" | "MI_EXPO";
|
1497
1497
|
isGlobalFilterActive: boolean;
|
1498
1498
|
fcmToken: string[];
|
1499
1499
|
created_at: string;
|
@@ -2080,8 +2080,6 @@ export interface components {
|
|
2080
2080
|
status: "BOOKED" | "PAID" | "FREE";
|
2081
2081
|
fullName: string;
|
2082
2082
|
mail: string;
|
2083
|
-
dni: string;
|
2084
|
-
seat: number | null;
|
2085
2083
|
created_at: string;
|
2086
2084
|
updated_at: string;
|
2087
2085
|
}[];
|
@@ -2164,7 +2162,7 @@ export interface components {
|
|
2164
2162
|
profiles: {
|
2165
2163
|
id: string;
|
2166
2164
|
shortId: number;
|
2167
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2165
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2168
2166
|
firstTimeMiExpo: boolean;
|
2169
2167
|
username: string | null;
|
2170
2168
|
password: string | null;
|
@@ -2204,7 +2202,7 @@ export interface components {
|
|
2204
2202
|
profiles: {
|
2205
2203
|
id: string;
|
2206
2204
|
shortId: number;
|
2207
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2205
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2208
2206
|
firstTimeMiExpo: boolean;
|
2209
2207
|
username: string | null;
|
2210
2208
|
password: string | null;
|
@@ -2262,7 +2260,7 @@ export interface components {
|
|
2262
2260
|
profiles: {
|
2263
2261
|
id: string;
|
2264
2262
|
shortId: number;
|
2265
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2263
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2266
2264
|
firstTimeMiExpo: boolean;
|
2267
2265
|
username: string | null;
|
2268
2266
|
password: string | null;
|
@@ -2303,7 +2301,7 @@ export interface components {
|
|
2303
2301
|
profiles: {
|
2304
2302
|
id: string;
|
2305
2303
|
shortId: number;
|
2306
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2304
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2307
2305
|
firstTimeMiExpo: boolean;
|
2308
2306
|
username: string | null;
|
2309
2307
|
password: string | null;
|
@@ -2339,7 +2337,7 @@ export interface components {
|
|
2339
2337
|
[key: string]: {
|
2340
2338
|
id: string;
|
2341
2339
|
shortId: number;
|
2342
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2340
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2343
2341
|
firstTimeMiExpo: boolean;
|
2344
2342
|
username: string | null;
|
2345
2343
|
password: string | null;
|
@@ -2377,7 +2375,7 @@ export interface components {
|
|
2377
2375
|
FindByPhoneNumberResponseDto: {
|
2378
2376
|
id: string;
|
2379
2377
|
shortId: number;
|
2380
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2378
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2381
2379
|
firstTimeMiExpo: boolean;
|
2382
2380
|
username: string | null;
|
2383
2381
|
password: string | null;
|
@@ -2467,7 +2465,7 @@ export interface components {
|
|
2467
2465
|
FindByIdProfileResponseDto: {
|
2468
2466
|
id: string;
|
2469
2467
|
shortId: number;
|
2470
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2468
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2471
2469
|
firstTimeMiExpo: boolean;
|
2472
2470
|
username: string | null;
|
2473
2471
|
phoneNumber: string;
|
@@ -2525,7 +2523,7 @@ export interface components {
|
|
2525
2523
|
DeleteProfileResponseDto: {
|
2526
2524
|
id: string;
|
2527
2525
|
shortId: number;
|
2528
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2526
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2529
2527
|
firstTimeMiExpo: boolean;
|
2530
2528
|
username: string | null;
|
2531
2529
|
password: string | null;
|
@@ -2696,8 +2694,6 @@ export interface components {
|
|
2696
2694
|
status: "BOOKED" | "PAID" | "FREE";
|
2697
2695
|
fullName: string;
|
2698
2696
|
mail: string;
|
2699
|
-
dni: string;
|
2700
|
-
seat: number | null;
|
2701
2697
|
profileId?: string;
|
2702
2698
|
};
|
2703
2699
|
CreateTicketResponseDto: {
|
@@ -2707,8 +2703,6 @@ export interface components {
|
|
2707
2703
|
status: "BOOKED" | "PAID" | "FREE";
|
2708
2704
|
fullName: string;
|
2709
2705
|
mail: string;
|
2710
|
-
dni: string;
|
2711
|
-
seat: number | null;
|
2712
2706
|
created_at: string;
|
2713
2707
|
updated_at: string;
|
2714
2708
|
event: {
|
@@ -2727,6 +2721,45 @@ export interface components {
|
|
2727
2721
|
updated_at: string;
|
2728
2722
|
};
|
2729
2723
|
};
|
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
|
+
};
|
2730
2763
|
FindAllTicketsResponseDto: {
|
2731
2764
|
tickets: {
|
2732
2765
|
id: string;
|
@@ -2735,8 +2768,6 @@ export interface components {
|
|
2735
2768
|
status: "BOOKED" | "PAID" | "FREE";
|
2736
2769
|
fullName: string;
|
2737
2770
|
mail: string;
|
2738
|
-
dni: string;
|
2739
|
-
seat: number | null;
|
2740
2771
|
created_at: string;
|
2741
2772
|
updated_at: string;
|
2742
2773
|
event: {
|
@@ -2754,8 +2785,6 @@ export interface components {
|
|
2754
2785
|
status: "BOOKED" | "PAID" | "FREE";
|
2755
2786
|
fullName: string;
|
2756
2787
|
mail: string;
|
2757
|
-
dni: string;
|
2758
|
-
seat: number | null;
|
2759
2788
|
created_at: string;
|
2760
2789
|
updated_at: string;
|
2761
2790
|
event: {
|
@@ -2766,7 +2795,7 @@ export interface components {
|
|
2766
2795
|
profile: {
|
2767
2796
|
id: string;
|
2768
2797
|
shortId: number;
|
2769
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2798
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2770
2799
|
firstTimeMiExpo: boolean;
|
2771
2800
|
username: string | null;
|
2772
2801
|
password: string | null;
|
@@ -2799,8 +2828,6 @@ export interface components {
|
|
2799
2828
|
status: "BOOKED" | "PAID" | "FREE";
|
2800
2829
|
fullName: string;
|
2801
2830
|
mail: string;
|
2802
|
-
dni: string;
|
2803
|
-
seat: number | null;
|
2804
2831
|
created_at: string;
|
2805
2832
|
updated_at: string;
|
2806
2833
|
event: {
|
@@ -2811,7 +2838,7 @@ export interface components {
|
|
2811
2838
|
profile: {
|
2812
2839
|
id: string;
|
2813
2840
|
shortId: number;
|
2814
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2841
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2815
2842
|
firstTimeMiExpo: boolean;
|
2816
2843
|
username: string | null;
|
2817
2844
|
password: string | null;
|
@@ -2844,8 +2871,6 @@ export interface components {
|
|
2844
2871
|
status: "BOOKED" | "PAID" | "FREE";
|
2845
2872
|
fullName: string;
|
2846
2873
|
mail: string;
|
2847
|
-
dni: string;
|
2848
|
-
seat: number | null;
|
2849
2874
|
created_at: string;
|
2850
2875
|
updated_at: string;
|
2851
2876
|
event: {
|
@@ -2856,7 +2881,7 @@ export interface components {
|
|
2856
2881
|
profile: {
|
2857
2882
|
id: string;
|
2858
2883
|
shortId: number;
|
2859
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2884
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2860
2885
|
firstTimeMiExpo: boolean;
|
2861
2886
|
username: string | null;
|
2862
2887
|
password: string | null;
|
@@ -2889,8 +2914,6 @@ export interface components {
|
|
2889
2914
|
status: "BOOKED" | "PAID" | "FREE";
|
2890
2915
|
fullName: string;
|
2891
2916
|
mail: string;
|
2892
|
-
dni: string;
|
2893
|
-
seat: number | null;
|
2894
2917
|
created_at: string;
|
2895
2918
|
updated_at: string;
|
2896
2919
|
event: {
|
@@ -2923,8 +2946,6 @@ export interface components {
|
|
2923
2946
|
status: "BOOKED" | "PAID" | "FREE";
|
2924
2947
|
fullName: string;
|
2925
2948
|
mail: string;
|
2926
|
-
dni: string;
|
2927
|
-
seat: number | null;
|
2928
2949
|
created_at: string;
|
2929
2950
|
updated_at: string;
|
2930
2951
|
};
|
@@ -2935,8 +2956,6 @@ export interface components {
|
|
2935
2956
|
status: "BOOKED" | "PAID" | "FREE";
|
2936
2957
|
fullName: string;
|
2937
2958
|
mail: string;
|
2938
|
-
dni: string;
|
2939
|
-
seat: number | null;
|
2940
2959
|
created_at: string;
|
2941
2960
|
updated_at: string;
|
2942
2961
|
};
|
@@ -2947,14 +2966,9 @@ export interface components {
|
|
2947
2966
|
status: "BOOKED" | "PAID" | "FREE";
|
2948
2967
|
fullName: string;
|
2949
2968
|
mail: string;
|
2950
|
-
dni: string;
|
2951
|
-
seat: number | null;
|
2952
2969
|
created_at: string;
|
2953
2970
|
updated_at: string;
|
2954
2971
|
};
|
2955
|
-
SendEmailResponseDto: {
|
2956
|
-
mailId: string;
|
2957
|
-
};
|
2958
2972
|
SendOtpDto: {
|
2959
2973
|
phoneNumber: string;
|
2960
2974
|
};
|
@@ -2979,7 +2993,7 @@ export interface components {
|
|
2979
2993
|
profile: {
|
2980
2994
|
id: string;
|
2981
2995
|
shortId: number;
|
2982
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2996
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2983
2997
|
firstTimeMiExpo: boolean;
|
2984
2998
|
username: string | null;
|
2985
2999
|
password: string | null;
|
@@ -3027,7 +3041,7 @@ export interface components {
|
|
3027
3041
|
profile: {
|
3028
3042
|
id: string;
|
3029
3043
|
shortId: number;
|
3030
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3044
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3031
3045
|
firstTimeMiExpo: boolean;
|
3032
3046
|
username: string | null;
|
3033
3047
|
phoneNumber: string;
|
@@ -3053,7 +3067,7 @@ export interface components {
|
|
3053
3067
|
GetMiExpoMeResponseDto: {
|
3054
3068
|
id: string;
|
3055
3069
|
shortId: number;
|
3056
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3070
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3057
3071
|
firstTimeMiExpo: boolean;
|
3058
3072
|
username: string | null;
|
3059
3073
|
phoneNumber: string;
|
@@ -3140,7 +3154,7 @@ export interface components {
|
|
3140
3154
|
user: {
|
3141
3155
|
id: string;
|
3142
3156
|
shortId: number;
|
3143
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3157
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3144
3158
|
firstTimeMiExpo: boolean;
|
3145
3159
|
username: string | null;
|
3146
3160
|
phoneNumber: string;
|
@@ -5133,6 +5147,45 @@ export interface operations {
|
|
5133
5147
|
};
|
5134
5148
|
};
|
5135
5149
|
};
|
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
|
+
};
|
5136
5189
|
TicketController_findAll: {
|
5137
5190
|
parameters: {
|
5138
5191
|
query?: never;
|
@@ -5396,43 +5449,6 @@ export interface operations {
|
|
5396
5449
|
};
|
5397
5450
|
};
|
5398
5451
|
};
|
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
|
-
};
|
5436
5452
|
WebhookController_verify: {
|
5437
5453
|
parameters: {
|
5438
5454
|
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-325-ExpoBackend-Emision-de-multiples-tickets.5",
|
4
4
|
"description": "",
|
5
5
|
"author": "Expo",
|
6
6
|
"private": false,
|
@@ -36,6 +36,7 @@
|
|
36
36
|
"@anatine/zod-nestjs": "^2.0.9",
|
37
37
|
"@anatine/zod-openapi": "^2.2.6",
|
38
38
|
"i18n-js": "^4.4.3",
|
39
|
+
"libphonenumber-js": "^1.10.53",
|
39
40
|
"patch-package": "^8.0.0",
|
40
41
|
"zod": "^3.23.8"
|
41
42
|
},
|
@@ -93,7 +94,6 @@
|
|
93
94
|
"prettier": "^3.0.0",
|
94
95
|
"prisma": "^6.3.1",
|
95
96
|
"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",
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import z from 'zod';
|
2
|
-
export declare const sendEmailResponseSchema: z.ZodObject<{
|
3
|
-
mailId: z.ZodString;
|
4
|
-
}, "strip", z.ZodTypeAny, {
|
5
|
-
mailId: string;
|
6
|
-
}, {
|
7
|
-
mailId: string;
|
8
|
-
}>;
|
9
|
-
declare const SendEmailResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
10
|
-
mailId: z.ZodString;
|
11
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
12
|
-
mailId: string;
|
13
|
-
}, {
|
14
|
-
mailId: string;
|
15
|
-
}>>;
|
16
|
-
export declare class SendEmailResponseDto extends SendEmailResponseDto_base {
|
17
|
-
}
|
18
|
-
export {};
|
@@ -1,15 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
-
};
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.SendEmailResponseDto = exports.sendEmailResponseSchema = void 0;
|
7
|
-
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
8
|
-
const zod_1 = __importDefault(require("zod"));
|
9
|
-
exports.sendEmailResponseSchema = zod_1.default.object({
|
10
|
-
mailId: zod_1.default.string(),
|
11
|
-
});
|
12
|
-
class SendEmailResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.sendEmailResponseSchema) {
|
13
|
-
}
|
14
|
-
exports.SendEmailResponseDto = SendEmailResponseDto;
|
15
|
-
//# sourceMappingURL=send-email.dto.js.map
|