expo-backend-types 0.39.0-EXPO-326-Oscar-Ruggeri.1 → 0.40.0-EXPO-330-ExpoBackend-MercadoPago.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.
Files changed (55) hide show
  1. package/dist/src/csv/dto/download-all-tables.dto.d.ts +2 -2
  2. package/dist/src/event/dto/get-by-id-event.dto.d.ts +408 -26
  3. package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
  4. package/dist/src/exports.d.ts +1 -0
  5. package/dist/src/exports.js +1 -0
  6. package/dist/src/i18n/es.d.ts +39 -2
  7. package/dist/src/i18n/es.js +64 -9
  8. package/dist/src/i18n/es.js.map +1 -1
  9. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +638 -0
  10. package/dist/src/ticket/dto/create-many-ticket.dto.js +50 -0
  11. package/dist/src/ticket/dto/create-ticket.dto.d.ts +18 -33
  12. package/dist/src/ticket/dto/create-ticket.dto.js +2 -1
  13. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -18
  14. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -26
  15. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -26
  16. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +161 -29
  17. package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -5
  18. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -26
  19. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -26
  20. package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -18
  21. package/dist/src/ticket/dto/generate-pdf.dto.d.ts +2 -2
  22. package/dist/src/ticket/dto/ticket.dto.d.ts +10 -18
  23. package/dist/src/ticket/dto/ticket.dto.js +2 -3
  24. package/dist/src/ticket/dto/update-ticket.dto.d.ts +22 -32
  25. package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
  26. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +386 -0
  27. package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
  28. package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
  29. package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
  30. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +32 -0
  31. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +20 -0
  32. package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
  33. package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
  34. package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
  35. package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
  36. package/dist/src/ticket-group/exports.d.ts +5 -0
  37. package/dist/src/ticket-group/exports.js +22 -0
  38. package/dist/types/prisma-schema/edge.js +21 -11
  39. package/dist/types/prisma-schema/index-browser.js +16 -6
  40. package/dist/types/prisma-schema/index.d.ts +2427 -407
  41. package/dist/types/prisma-schema/index.js +21 -11
  42. package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
  43. package/dist/types/prisma-schema/package.json +2 -2
  44. package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
  45. package/dist/types/prisma-schema/runtime/edge.js +18 -18
  46. package/dist/types/prisma-schema/runtime/index-browser.d.ts +2 -2
  47. package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
  48. package/dist/types/prisma-schema/runtime/library.d.ts +105 -123
  49. package/dist/types/prisma-schema/runtime/library.js +56 -56
  50. package/dist/types/prisma-schema/runtime/react-native.js +25 -25
  51. package/dist/types/prisma-schema/runtime/wasm.js +19 -19
  52. package/dist/types/prisma-schema/schema.prisma +22 -3
  53. package/dist/types/prisma-schema/wasm.js +16 -6
  54. package/dist/types/schema.d.ts +416 -13
  55. package/package.json +3 -2
@@ -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;
@@ -1151,6 +1167,70 @@ export interface paths {
1151
1167
  patch?: never;
1152
1168
  trace?: never;
1153
1169
  };
1170
+ "/ticket-group/create": {
1171
+ parameters: {
1172
+ query?: never;
1173
+ header?: never;
1174
+ path?: never;
1175
+ cookie?: never;
1176
+ };
1177
+ get?: never;
1178
+ put?: never;
1179
+ post: operations["TicketGroupController_create"];
1180
+ delete?: never;
1181
+ options?: never;
1182
+ head?: never;
1183
+ patch?: never;
1184
+ trace?: never;
1185
+ };
1186
+ "/ticket-group/find-tickets-by-event/{id}": {
1187
+ parameters: {
1188
+ query?: never;
1189
+ header?: never;
1190
+ path?: never;
1191
+ cookie?: never;
1192
+ };
1193
+ get: operations["TicketGroupController_findTicketsByEvent"];
1194
+ put?: never;
1195
+ post?: never;
1196
+ delete?: never;
1197
+ options?: never;
1198
+ head?: never;
1199
+ patch?: never;
1200
+ trace?: never;
1201
+ };
1202
+ "/ticket-group/update/{id}": {
1203
+ parameters: {
1204
+ query?: never;
1205
+ header?: never;
1206
+ path?: never;
1207
+ cookie?: never;
1208
+ };
1209
+ get?: never;
1210
+ put?: never;
1211
+ post?: never;
1212
+ delete?: never;
1213
+ options?: never;
1214
+ head?: never;
1215
+ patch: operations["TicketGroupController_update"];
1216
+ trace?: never;
1217
+ };
1218
+ "/ticket-group/delete/{id}": {
1219
+ parameters: {
1220
+ query?: never;
1221
+ header?: never;
1222
+ path?: never;
1223
+ cookie?: never;
1224
+ };
1225
+ get?: never;
1226
+ put?: never;
1227
+ post?: never;
1228
+ delete: operations["TicketGroupController_delete"];
1229
+ options?: never;
1230
+ head?: never;
1231
+ patch?: never;
1232
+ trace?: never;
1233
+ };
1154
1234
  "/webhook": {
1155
1235
  parameters: {
1156
1236
  query?: never;
@@ -2093,16 +2173,48 @@ export interface components {
2093
2173
  id: string;
2094
2174
  eventId: string;
2095
2175
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2096
- status: "BOOKED" | "PAID" | "FREE";
2097
2176
  fullName: string;
2098
2177
  mail: string;
2099
2178
  dni: string;
2100
2179
  seat: number | null;
2101
2180
  scanned: boolean;
2102
2181
  scannedAt: string | null;
2182
+ ticketGroupId: string | null;
2103
2183
  created_at: string;
2104
2184
  updated_at: string;
2105
2185
  }[];
2186
+ tagAssisted: {
2187
+ id: string;
2188
+ name: string;
2189
+ groupId: string;
2190
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
2191
+ created_at: string;
2192
+ updated_at: string;
2193
+ group: {
2194
+ id: string;
2195
+ name: string;
2196
+ color: string;
2197
+ isExclusive: boolean;
2198
+ created_at: string;
2199
+ updated_at: string;
2200
+ };
2201
+ };
2202
+ tagConfirmed: {
2203
+ id: string;
2204
+ name: string;
2205
+ groupId: string;
2206
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
2207
+ created_at: string;
2208
+ updated_at: string;
2209
+ group: {
2210
+ id: string;
2211
+ name: string;
2212
+ color: string;
2213
+ isExclusive: boolean;
2214
+ created_at: string;
2215
+ updated_at: string;
2216
+ };
2217
+ };
2106
2218
  };
2107
2219
  UpdateEventDto: {
2108
2220
  name: string;
@@ -2390,7 +2502,7 @@ export interface components {
2390
2502
  id: string;
2391
2503
  };
2392
2504
  }[];
2393
- }[];
2505
+ }[] | undefined;
2394
2506
  };
2395
2507
  FindByPhoneNumberResponseDto: {
2396
2508
  id: string;
@@ -2711,23 +2823,23 @@ export interface components {
2711
2823
  CreateTicketDto: {
2712
2824
  eventId: string;
2713
2825
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2714
- status: "BOOKED" | "PAID" | "FREE";
2715
2826
  fullName: string;
2716
2827
  mail: string;
2717
2828
  dni: string;
2718
2829
  profileId?: string;
2830
+ ticketGroupId?: string;
2719
2831
  };
2720
2832
  CreateTicketResponseDto: {
2721
2833
  id: string;
2722
2834
  eventId: string;
2723
2835
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2724
- status: "BOOKED" | "PAID" | "FREE";
2725
2836
  fullName: string;
2726
2837
  mail: string;
2727
2838
  dni: string;
2728
2839
  seat: number | null;
2729
2840
  scanned: boolean;
2730
2841
  scannedAt: string | null;
2842
+ ticketGroupId: string | null;
2731
2843
  created_at: string;
2732
2844
  updated_at: string;
2733
2845
  event: {
@@ -2746,18 +2858,64 @@ export interface components {
2746
2858
  updated_at: string;
2747
2859
  };
2748
2860
  };
2861
+ CreateManyTicketDto: {
2862
+ tickets: {
2863
+ eventId: string;
2864
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2865
+ fullName: string;
2866
+ mail: string;
2867
+ dni: string;
2868
+ ticketGroupId: string | null;
2869
+ profileId?: string;
2870
+ }[];
2871
+ };
2872
+ CreateManyTicketWithPdfsResponseDto: {
2873
+ tickets: {
2874
+ id: string;
2875
+ eventId: string;
2876
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2877
+ fullName: string;
2878
+ mail: string;
2879
+ dni: string;
2880
+ seat: number | null;
2881
+ scanned: boolean;
2882
+ scannedAt: string | null;
2883
+ ticketGroupId: string | null;
2884
+ created_at: string;
2885
+ updated_at: string;
2886
+ event: {
2887
+ id: string;
2888
+ name: string;
2889
+ date: string;
2890
+ startingDate: string;
2891
+ endingDate: string;
2892
+ location: string;
2893
+ folderId: string | null;
2894
+ tagAssistedId: string;
2895
+ tagConfirmedId: string;
2896
+ active: boolean;
2897
+ supraEventId: string | null;
2898
+ created_at: string;
2899
+ updated_at: string;
2900
+ };
2901
+ }[];
2902
+ pdfs: {
2903
+ ticketId: string;
2904
+ pdfBase64: string;
2905
+ }[];
2906
+ };
2749
2907
  FindAllTicketsResponseDto: {
2750
2908
  tickets: {
2751
2909
  id: string;
2752
2910
  eventId: string;
2753
2911
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2754
- status: "BOOKED" | "PAID" | "FREE";
2755
2912
  fullName: string;
2756
2913
  mail: string;
2757
2914
  dni: string;
2758
2915
  seat: number | null;
2759
2916
  scanned: boolean;
2760
2917
  scannedAt: string | null;
2918
+ ticketGroupId: string | null;
2761
2919
  created_at: string;
2762
2920
  updated_at: string;
2763
2921
  event: {
@@ -2772,19 +2930,29 @@ export interface components {
2772
2930
  id: string;
2773
2931
  eventId: string;
2774
2932
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2775
- status: "BOOKED" | "PAID" | "FREE";
2776
2933
  fullName: string;
2777
2934
  mail: string;
2778
2935
  dni: string;
2779
2936
  seat: number | null;
2780
2937
  scanned: boolean;
2781
2938
  scannedAt: string | null;
2939
+ ticketGroupId: string | null;
2782
2940
  created_at: string;
2783
2941
  updated_at: string;
2784
2942
  event: {
2943
+ id: string;
2785
2944
  name: string;
2786
2945
  date: string;
2946
+ startingDate: string;
2947
+ endingDate: string;
2787
2948
  location: string;
2949
+ folderId: string | null;
2950
+ tagAssistedId: string;
2951
+ tagConfirmedId: string;
2952
+ active: boolean;
2953
+ supraEventId: string | null;
2954
+ created_at: string;
2955
+ updated_at: string;
2788
2956
  };
2789
2957
  profile: {
2790
2958
  id: string;
@@ -2812,6 +2980,7 @@ export interface components {
2812
2980
  created_at: string;
2813
2981
  updated_at: string;
2814
2982
  } | null;
2983
+ profileId: string | null;
2815
2984
  };
2816
2985
  };
2817
2986
  FindByMailTicketResponseDto: {
@@ -2819,13 +2988,13 @@ export interface components {
2819
2988
  id: string;
2820
2989
  eventId: string;
2821
2990
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2822
- status: "BOOKED" | "PAID" | "FREE";
2823
2991
  fullName: string;
2824
2992
  mail: string;
2825
2993
  dni: string;
2826
2994
  seat: number | null;
2827
2995
  scanned: boolean;
2828
2996
  scannedAt: string | null;
2997
+ ticketGroupId: string | null;
2829
2998
  created_at: string;
2830
2999
  updated_at: string;
2831
3000
  event: {
@@ -2866,13 +3035,13 @@ export interface components {
2866
3035
  id: string;
2867
3036
  eventId: string;
2868
3037
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2869
- status: "BOOKED" | "PAID" | "FREE";
2870
3038
  fullName: string;
2871
3039
  mail: string;
2872
3040
  dni: string;
2873
3041
  seat: number | null;
2874
3042
  scanned: boolean;
2875
3043
  scannedAt: string | null;
3044
+ ticketGroupId: string | null;
2876
3045
  created_at: string;
2877
3046
  updated_at: string;
2878
3047
  event: {
@@ -2913,13 +3082,13 @@ export interface components {
2913
3082
  id: string;
2914
3083
  eventId: string;
2915
3084
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2916
- status: "BOOKED" | "PAID" | "FREE";
2917
3085
  fullName: string;
2918
3086
  mail: string;
2919
3087
  dni: string;
2920
3088
  seat: number | null;
2921
3089
  scanned: boolean;
2922
3090
  scannedAt: string | null;
3091
+ ticketGroupId: string | null;
2923
3092
  created_at: string;
2924
3093
  updated_at: string;
2925
3094
  event: {
@@ -2941,21 +3110,22 @@ export interface components {
2941
3110
  };
2942
3111
  UpdateTicketDto: {
2943
3112
  type?: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2944
- status?: "BOOKED" | "PAID" | "FREE";
2945
3113
  fullName?: string;
2946
3114
  mail?: string;
3115
+ dni?: string;
3116
+ ticketGroupId?: string | null;
2947
3117
  };
2948
3118
  UpdateTicketResponseDto: {
2949
3119
  id: string;
2950
3120
  eventId: string;
2951
3121
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2952
- status: "BOOKED" | "PAID" | "FREE";
2953
3122
  fullName: string;
2954
3123
  mail: string;
2955
3124
  dni: string;
2956
3125
  seat: number | null;
2957
3126
  scanned: boolean;
2958
3127
  scannedAt: string | null;
3128
+ ticketGroupId: string | null;
2959
3129
  created_at: string;
2960
3130
  updated_at: string;
2961
3131
  };
@@ -2963,13 +3133,13 @@ export interface components {
2963
3133
  id: string;
2964
3134
  eventId: string;
2965
3135
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2966
- status: "BOOKED" | "PAID" | "FREE";
2967
3136
  fullName: string;
2968
3137
  mail: string;
2969
3138
  dni: string;
2970
3139
  seat: number | null;
2971
3140
  scanned: boolean;
2972
3141
  scannedAt: string | null;
3142
+ ticketGroupId: string | null;
2973
3143
  created_at: string;
2974
3144
  updated_at: string;
2975
3145
  };
@@ -2977,13 +3147,13 @@ export interface components {
2977
3147
  id: string;
2978
3148
  eventId: string;
2979
3149
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2980
- status: "BOOKED" | "PAID" | "FREE";
2981
3150
  fullName: string;
2982
3151
  mail: string;
2983
3152
  dni: string;
2984
3153
  seat: number | null;
2985
3154
  scanned: boolean;
2986
3155
  scannedAt: string | null;
3156
+ ticketGroupId: string | null;
2987
3157
  created_at: string;
2988
3158
  updated_at: string;
2989
3159
  };
@@ -2996,6 +3166,70 @@ export interface components {
2996
3166
  SendEmailResponseDto: {
2997
3167
  mailId: string;
2998
3168
  };
3169
+ CreateTicketGroupDto: {
3170
+ eventId: string;
3171
+ amountTickets: number;
3172
+ status: "BOOKED" | "PAID" | "FREE";
3173
+ };
3174
+ CreateTicketGroupResponseDto: {
3175
+ id: string;
3176
+ amountTickets: number;
3177
+ status: "BOOKED" | "PAID" | "FREE";
3178
+ eventId: string;
3179
+ created_at: string;
3180
+ updated_at: string;
3181
+ tickets: {
3182
+ id: string;
3183
+ eventId: string;
3184
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
3185
+ fullName: string;
3186
+ mail: string;
3187
+ dni: string;
3188
+ seat: number | null;
3189
+ scanned: boolean;
3190
+ scannedAt: string | null;
3191
+ ticketGroupId: string | null;
3192
+ created_at: string;
3193
+ updated_at: string;
3194
+ }[];
3195
+ event: {
3196
+ id: string;
3197
+ name: string;
3198
+ date: string;
3199
+ startingDate: string;
3200
+ endingDate: string;
3201
+ location: string;
3202
+ folderId: string | null;
3203
+ tagAssistedId: string;
3204
+ tagConfirmedId: string;
3205
+ active: boolean;
3206
+ supraEventId: string | null;
3207
+ created_at: string;
3208
+ updated_at: string;
3209
+ };
3210
+ };
3211
+ FindTicketsByEventDto: {
3212
+ tickets: number;
3213
+ };
3214
+ UpdateTicketGroupDto: {
3215
+ status?: "BOOKED" | "PAID" | "FREE";
3216
+ };
3217
+ UpdateTicketGroupResponseDto: {
3218
+ id: string;
3219
+ amountTickets: number;
3220
+ status: "BOOKED" | "PAID" | "FREE";
3221
+ eventId: string;
3222
+ created_at: string;
3223
+ updated_at: string;
3224
+ };
3225
+ DeleteTicketGroupResponseDto: {
3226
+ id: string;
3227
+ amountTickets: number;
3228
+ status: "BOOKED" | "PAID" | "FREE";
3229
+ eventId: string;
3230
+ created_at: string;
3231
+ updated_at: string;
3232
+ };
2999
3233
  SendOtpDto: {
3000
3234
  phoneNumber: string;
3001
3235
  };
@@ -5174,6 +5408,45 @@ export interface operations {
5174
5408
  };
5175
5409
  };
5176
5410
  };
5411
+ TicketController_createMany: {
5412
+ parameters: {
5413
+ query?: never;
5414
+ header?: never;
5415
+ path?: never;
5416
+ cookie?: never;
5417
+ };
5418
+ requestBody: {
5419
+ content: {
5420
+ "application/json": components["schemas"]["CreateManyTicketDto"];
5421
+ };
5422
+ };
5423
+ responses: {
5424
+ 200: {
5425
+ headers: {
5426
+ [name: string]: unknown;
5427
+ };
5428
+ content: {
5429
+ "application/json": components["schemas"]["CreateManyTicketWithPdfsResponseDto"];
5430
+ };
5431
+ };
5432
+ 404: {
5433
+ headers: {
5434
+ [name: string]: unknown;
5435
+ };
5436
+ content: {
5437
+ "application/json": components["schemas"]["ErrorDto"];
5438
+ };
5439
+ };
5440
+ 409: {
5441
+ headers: {
5442
+ [name: string]: unknown;
5443
+ };
5444
+ content: {
5445
+ "application/json": components["schemas"]["ErrorDto"];
5446
+ };
5447
+ };
5448
+ };
5449
+ };
5177
5450
  TicketController_findAll: {
5178
5451
  parameters: {
5179
5452
  query?: never;
@@ -5513,6 +5786,136 @@ export interface operations {
5513
5786
  };
5514
5787
  };
5515
5788
  };
5789
+ TicketGroupController_create: {
5790
+ parameters: {
5791
+ query?: never;
5792
+ header?: never;
5793
+ path?: never;
5794
+ cookie?: never;
5795
+ };
5796
+ requestBody: {
5797
+ content: {
5798
+ "application/json": components["schemas"]["CreateTicketGroupDto"];
5799
+ };
5800
+ };
5801
+ responses: {
5802
+ 200: {
5803
+ headers: {
5804
+ [name: string]: unknown;
5805
+ };
5806
+ content: {
5807
+ "application/json": components["schemas"]["CreateTicketGroupResponseDto"];
5808
+ };
5809
+ };
5810
+ 404: {
5811
+ headers: {
5812
+ [name: string]: unknown;
5813
+ };
5814
+ content: {
5815
+ "application/json": components["schemas"]["ErrorDto"];
5816
+ };
5817
+ };
5818
+ 409: {
5819
+ headers: {
5820
+ [name: string]: unknown;
5821
+ };
5822
+ content: {
5823
+ "application/json": components["schemas"]["ErrorDto"];
5824
+ };
5825
+ };
5826
+ };
5827
+ };
5828
+ TicketGroupController_findTicketsByEvent: {
5829
+ parameters: {
5830
+ query?: never;
5831
+ header?: never;
5832
+ path: {
5833
+ id: string;
5834
+ };
5835
+ cookie?: never;
5836
+ };
5837
+ requestBody?: never;
5838
+ responses: {
5839
+ 200: {
5840
+ headers: {
5841
+ [name: string]: unknown;
5842
+ };
5843
+ content: {
5844
+ "application/json": components["schemas"]["FindTicketsByEventDto"];
5845
+ };
5846
+ };
5847
+ 404: {
5848
+ headers: {
5849
+ [name: string]: unknown;
5850
+ };
5851
+ content: {
5852
+ "application/json": components["schemas"]["ErrorDto"];
5853
+ };
5854
+ };
5855
+ };
5856
+ };
5857
+ TicketGroupController_update: {
5858
+ parameters: {
5859
+ query?: never;
5860
+ header?: never;
5861
+ path: {
5862
+ id: string;
5863
+ };
5864
+ cookie?: never;
5865
+ };
5866
+ requestBody: {
5867
+ content: {
5868
+ "application/json": components["schemas"]["UpdateTicketGroupDto"];
5869
+ };
5870
+ };
5871
+ responses: {
5872
+ 200: {
5873
+ headers: {
5874
+ [name: string]: unknown;
5875
+ };
5876
+ content: {
5877
+ "application/json": components["schemas"]["UpdateTicketGroupResponseDto"];
5878
+ };
5879
+ };
5880
+ 404: {
5881
+ headers: {
5882
+ [name: string]: unknown;
5883
+ };
5884
+ content: {
5885
+ "application/json": components["schemas"]["ErrorDto"];
5886
+ };
5887
+ };
5888
+ };
5889
+ };
5890
+ TicketGroupController_delete: {
5891
+ parameters: {
5892
+ query?: never;
5893
+ header?: never;
5894
+ path: {
5895
+ id: string;
5896
+ };
5897
+ cookie?: never;
5898
+ };
5899
+ requestBody?: never;
5900
+ responses: {
5901
+ 200: {
5902
+ headers: {
5903
+ [name: string]: unknown;
5904
+ };
5905
+ content: {
5906
+ "application/json": components["schemas"]["DeleteTicketGroupResponseDto"];
5907
+ };
5908
+ };
5909
+ 404: {
5910
+ headers: {
5911
+ [name: string]: unknown;
5912
+ };
5913
+ content: {
5914
+ "application/json": components["schemas"]["ErrorDto"];
5915
+ };
5916
+ };
5917
+ };
5918
+ };
5516
5919
  WebhookController_verify: {
5517
5920
  parameters: {
5518
5921
  query: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.39.0-EXPO-326-Oscar-Ruggeri.1",
3
+ "version": "0.40.0-EXPO-330-ExpoBackend-MercadoPago.1",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
@@ -36,6 +36,7 @@
36
36
  "@anatine/zod-nestjs": "^2.0.10",
37
37
  "@anatine/zod-openapi": "^2.2.6",
38
38
  "i18n-js": "^4.4.3",
39
+ "libphonenumber-js": "^1.12.6",
39
40
  "patch-package": "^8.0.0",
40
41
  "zod": "^3.23.8"
41
42
  },
@@ -51,7 +52,7 @@
51
52
  "@nestjs/schematics": "^11.0.2",
52
53
  "@nestjs/swagger": "^11.1.0",
53
54
  "@nestjs/testing": "^11.0.12",
54
- "@openapitools/openapi-generator-cli": "^2.13.4",
55
+ "@openapitools/openapi-generator-cli": "^2.18.4",
55
56
  "@pdfme/common": "^5.3.13",
56
57
  "@pdfme/generator": "^5.3.13",
57
58
  "@pdfme/schemas": "^5.3.13",