expo-backend-types 0.52.0 → 0.53.0-EXPO-360-Tato-Bores.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 (48) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +68 -2
  2. package/dist/src/event/dto/create-event.dto.js +6 -0
  3. package/dist/src/event/dto/delete-banner-event.dto.d.ts +18 -0
  4. package/dist/src/event/dto/delete-banner-event.dto.js +12 -0
  5. package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
  6. package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +18 -0
  7. package/dist/src/event/dto/delete-main-picture-event.dto.js +12 -0
  8. package/dist/src/event/dto/event.dto.d.ts +9 -0
  9. package/dist/src/event/dto/event.dto.js +13 -0
  10. package/dist/src/event/dto/get-active-events.dto.d.ts +30 -0
  11. package/dist/src/event/dto/get-all-event.dto.d.ts +264 -0
  12. package/dist/src/event/dto/get-all-statistics.dto.d.ts +9 -0
  13. package/dist/src/event/dto/get-by-id-event.dto.d.ts +96 -0
  14. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +9 -0
  15. package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
  16. package/dist/src/event/dto/update-banner-event.dto.d.ts +33 -0
  17. package/dist/src/event/dto/update-banner-event.dto.js +18 -0
  18. package/dist/src/event/dto/update-event.dto.d.ts +185 -135
  19. package/dist/src/event/dto/update-event.dto.js +9 -1
  20. package/dist/src/event/dto/update-main-picture-event.dto.d.ts +33 -0
  21. package/dist/src/event/dto/update-main-picture-event.dto.js +18 -0
  22. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
  23. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
  24. package/dist/src/i18n/es.d.ts +7 -0
  25. package/dist/src/i18n/es.js +7 -0
  26. package/dist/src/i18n/es.js.map +1 -1
  27. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
  28. package/dist/src/profile/dto/delete-image-profile.dto.d.ts +18 -0
  29. package/dist/src/profile/dto/delete-image-profile.dto.js +12 -0
  30. package/dist/src/profile/dto/update-image-profile.dto.d.ts +33 -0
  31. package/dist/src/profile/dto/update-image-profile.dto.js +18 -0
  32. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
  33. package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
  34. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
  35. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
  36. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
  37. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
  38. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
  39. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  40. package/dist/types/prisma-schema/edge.js +6 -3
  41. package/dist/types/prisma-schema/index-browser.js +3 -0
  42. package/dist/types/prisma-schema/index.d.ts +244 -1
  43. package/dist/types/prisma-schema/index.js +6 -3
  44. package/dist/types/prisma-schema/package.json +1 -1
  45. package/dist/types/prisma-schema/schema.prisma +9 -6
  46. package/dist/types/prisma-schema/wasm.js +3 -0
  47. package/dist/types/schema.d.ts +397 -77
  48. package/package.json +1 -1
@@ -527,6 +527,70 @@ export interface paths {
527
527
  patch?: never;
528
528
  trace?: never;
529
529
  };
530
+ "/event/update-banner/{id}": {
531
+ parameters: {
532
+ query?: never;
533
+ header?: never;
534
+ path?: never;
535
+ cookie?: never;
536
+ };
537
+ get?: never;
538
+ put?: never;
539
+ post?: never;
540
+ delete?: never;
541
+ options?: never;
542
+ head?: never;
543
+ patch: operations["EventController_updateBanner"];
544
+ trace?: never;
545
+ };
546
+ "/event/delete-banner/{id}": {
547
+ parameters: {
548
+ query?: never;
549
+ header?: never;
550
+ path?: never;
551
+ cookie?: never;
552
+ };
553
+ get?: never;
554
+ put?: never;
555
+ post?: never;
556
+ delete: operations["EventController_deleteBanner"];
557
+ options?: never;
558
+ head?: never;
559
+ patch?: never;
560
+ trace?: never;
561
+ };
562
+ "/event/update-main-picture/{id}": {
563
+ parameters: {
564
+ query?: never;
565
+ header?: never;
566
+ path?: never;
567
+ cookie?: never;
568
+ };
569
+ get?: never;
570
+ put?: never;
571
+ post?: never;
572
+ delete?: never;
573
+ options?: never;
574
+ head?: never;
575
+ patch: operations["EventController_updateMainPicture"];
576
+ trace?: never;
577
+ };
578
+ "/event/delete-main-picture/{id}": {
579
+ parameters: {
580
+ query?: never;
581
+ header?: never;
582
+ path?: never;
583
+ cookie?: never;
584
+ };
585
+ get?: never;
586
+ put?: never;
587
+ post?: never;
588
+ delete: operations["EventController_deleteMainPicture"];
589
+ options?: never;
590
+ head?: never;
591
+ patch?: never;
592
+ trace?: never;
593
+ };
530
594
  "/event/all": {
531
595
  parameters: {
532
596
  query?: never;
@@ -751,23 +815,23 @@ export interface paths {
751
815
  patch?: never;
752
816
  trace?: never;
753
817
  };
754
- "/profile/{id}": {
818
+ "/profile/update-image/{id}": {
755
819
  parameters: {
756
820
  query?: never;
757
821
  header?: never;
758
822
  path?: never;
759
823
  cookie?: never;
760
824
  };
761
- get: operations["ProfileController_findById"];
825
+ get?: never;
762
826
  put?: never;
763
827
  post?: never;
764
- delete: operations["ProfileController_delete"];
828
+ delete?: never;
765
829
  options?: never;
766
830
  head?: never;
767
- patch: operations["ProfileController_update"];
831
+ patch: operations["ProfileController_updateImage"];
768
832
  trace?: never;
769
833
  };
770
- "/image/update/{id}": {
834
+ "/profile/delete-image/{id}": {
771
835
  parameters: {
772
836
  query?: never;
773
837
  header?: never;
@@ -777,26 +841,26 @@ export interface paths {
777
841
  get?: never;
778
842
  put?: never;
779
843
  post?: never;
780
- delete?: never;
844
+ delete: operations["ProfileController_deleteImage"];
781
845
  options?: never;
782
846
  head?: never;
783
- patch: operations["ImageController_updateImage"];
847
+ patch?: never;
784
848
  trace?: never;
785
849
  };
786
- "/image/delete/{id}": {
850
+ "/profile/{id}": {
787
851
  parameters: {
788
852
  query?: never;
789
853
  header?: never;
790
854
  path?: never;
791
855
  cookie?: never;
792
856
  };
793
- get?: never;
857
+ get: operations["ProfileController_findById"];
794
858
  put?: never;
795
859
  post?: never;
796
- delete: operations["ImageController_deleteImage"];
860
+ delete: operations["ProfileController_delete"];
797
861
  options?: never;
798
862
  head?: never;
799
- patch?: never;
863
+ patch: operations["ProfileController_update"];
800
864
  trace?: never;
801
865
  };
802
866
  "/csv/download-profiles": {
@@ -2104,6 +2168,9 @@ export interface components {
2104
2168
  startingDate: string;
2105
2169
  endingDate: string;
2106
2170
  location: string;
2171
+ mainPictureUrl: string | null;
2172
+ bannerUrl: string | null;
2173
+ description: string | null;
2107
2174
  folderId: string | null;
2108
2175
  tagAssistedId: string;
2109
2176
  tagConfirmedId: string;
@@ -2127,6 +2194,9 @@ export interface components {
2127
2194
  startingDate: string;
2128
2195
  endingDate: string;
2129
2196
  location: string;
2197
+ mainPictureUrl: string | null;
2198
+ bannerUrl: string | null;
2199
+ description: string | null;
2130
2200
  folderId: string | null;
2131
2201
  tagAssistedId: string;
2132
2202
  tagConfirmedId: string;
@@ -2161,12 +2231,18 @@ export interface components {
2161
2231
  endingDate: string;
2162
2232
  location: string;
2163
2233
  folderId: string | null;
2234
+ mainPictureUrl: string | null;
2235
+ bannerUrl: string | null;
2236
+ description: string | null;
2164
2237
  subEvents?: {
2165
2238
  name: string;
2166
2239
  date: string;
2167
2240
  startingDate: string;
2168
2241
  endingDate: string;
2169
2242
  location: string;
2243
+ mainPictureUrl: string | null;
2244
+ bannerUrl: string | null;
2245
+ description: string | null;
2170
2246
  }[];
2171
2247
  tagsId: string[];
2172
2248
  eventTickets: {
@@ -2182,6 +2258,9 @@ export interface components {
2182
2258
  startingDate: string;
2183
2259
  endingDate: string;
2184
2260
  location: string;
2261
+ mainPictureUrl: string | null;
2262
+ bannerUrl: string | null;
2263
+ description: string | null;
2185
2264
  folderId: string | null;
2186
2265
  tagAssistedId: string;
2187
2266
  tagConfirmedId: string;
@@ -2190,6 +2269,18 @@ export interface components {
2190
2269
  created_at: string;
2191
2270
  updated_at: string;
2192
2271
  };
2272
+ UpdateBannerEventDto: {
2273
+ image?: Record<string, never>;
2274
+ };
2275
+ UpdateBannerEventResponseDto: {
2276
+ message: string;
2277
+ };
2278
+ UpdateMainPictureEventResponseDto: {
2279
+ message: string;
2280
+ };
2281
+ UpdateMainPictureEventDto: {
2282
+ image?: Record<string, never>;
2283
+ };
2193
2284
  GetAllEventsResponseDto: {
2194
2285
  folders: {
2195
2286
  id: string;
@@ -2204,6 +2295,9 @@ export interface components {
2204
2295
  startingDate: string;
2205
2296
  endingDate: string;
2206
2297
  location: string;
2298
+ mainPictureUrl: string | null;
2299
+ bannerUrl: string | null;
2300
+ description: string | null;
2207
2301
  folderId: string | null;
2208
2302
  tagAssistedId: string;
2209
2303
  tagConfirmedId: string;
@@ -2218,6 +2312,9 @@ export interface components {
2218
2312
  startingDate: string;
2219
2313
  endingDate: string;
2220
2314
  location: string;
2315
+ mainPictureUrl: string | null;
2316
+ bannerUrl: string | null;
2317
+ description: string | null;
2221
2318
  folderId: string | null;
2222
2319
  tagAssistedId: string;
2223
2320
  tagConfirmedId: string;
@@ -2233,6 +2330,9 @@ export interface components {
2233
2330
  startingDate: string;
2234
2331
  endingDate: string;
2235
2332
  location: string;
2333
+ mainPictureUrl: string | null;
2334
+ bannerUrl: string | null;
2335
+ description: string | null;
2236
2336
  folderId: string | null;
2237
2337
  tagAssistedId: string;
2238
2338
  tagConfirmedId: string;
@@ -2267,6 +2367,9 @@ export interface components {
2267
2367
  startingDate: string;
2268
2368
  endingDate: string;
2269
2369
  location: string;
2370
+ mainPictureUrl: string | null;
2371
+ bannerUrl: string | null;
2372
+ description: string | null;
2270
2373
  folderId: string | null;
2271
2374
  tagAssistedId: string;
2272
2375
  tagConfirmedId: string;
@@ -2281,6 +2384,9 @@ export interface components {
2281
2384
  startingDate: string;
2282
2385
  endingDate: string;
2283
2386
  location: string;
2387
+ mainPictureUrl: string | null;
2388
+ bannerUrl: string | null;
2389
+ description: string | null;
2284
2390
  folderId: string | null;
2285
2391
  tagAssistedId: string;
2286
2392
  tagConfirmedId: string;
@@ -2296,6 +2402,9 @@ export interface components {
2296
2402
  startingDate: string;
2297
2403
  endingDate: string;
2298
2404
  location: string;
2405
+ mainPictureUrl: string | null;
2406
+ bannerUrl: string | null;
2407
+ description: string | null;
2299
2408
  folderId: string | null;
2300
2409
  tagAssistedId: string;
2301
2410
  tagConfirmedId: string;
@@ -2331,6 +2440,9 @@ export interface components {
2331
2440
  startingDate: string;
2332
2441
  endingDate: string;
2333
2442
  location: string;
2443
+ mainPictureUrl: string | null;
2444
+ bannerUrl: string | null;
2445
+ description: string | null;
2334
2446
  folderId: string | null;
2335
2447
  tagAssistedId: string;
2336
2448
  tagConfirmedId: string;
@@ -2375,6 +2487,9 @@ export interface components {
2375
2487
  startingDate: string;
2376
2488
  endingDate: string;
2377
2489
  location: string;
2490
+ mainPictureUrl: string | null;
2491
+ bannerUrl: string | null;
2492
+ description: string | null;
2378
2493
  folderId: string | null;
2379
2494
  tagAssistedId: string;
2380
2495
  tagConfirmedId: string;
@@ -2389,6 +2504,9 @@ export interface components {
2389
2504
  startingDate: string;
2390
2505
  endingDate: string;
2391
2506
  location: string;
2507
+ mainPictureUrl: string | null;
2508
+ bannerUrl: string | null;
2509
+ description: string | null;
2392
2510
  folderId: string | null;
2393
2511
  tagAssistedId: string;
2394
2512
  tagConfirmedId: string;
@@ -2404,6 +2522,9 @@ export interface components {
2404
2522
  startingDate: string;
2405
2523
  endingDate: string;
2406
2524
  location: string;
2525
+ mainPictureUrl: string | null;
2526
+ bannerUrl: string | null;
2527
+ description: string | null;
2407
2528
  folderId: string | null;
2408
2529
  tagAssistedId: string;
2409
2530
  tagConfirmedId: string;
@@ -2504,22 +2625,28 @@ export interface components {
2504
2625
  }[];
2505
2626
  };
2506
2627
  UpdateEventDto: {
2507
- name: string;
2508
- folderId: string | null;
2509
- date: string;
2510
- location: string;
2511
- startingDate: string;
2512
- endingDate: string;
2513
- tagsId: string[];
2514
- subEvents: {
2515
- name: string;
2516
- location: string;
2517
- date: string;
2518
- startingDate: string;
2519
- endingDate: string;
2628
+ name?: string;
2629
+ folderId?: string | null;
2630
+ date?: string;
2631
+ location?: string;
2632
+ startingDate?: string;
2633
+ endingDate?: string;
2634
+ bannerUrl?: string | null;
2635
+ mainPictureUrl?: string | null;
2636
+ description?: string | null;
2637
+ tagsId?: string[];
2638
+ subEvents?: {
2639
+ name?: string;
2640
+ location?: string;
2641
+ date?: string;
2642
+ startingDate?: string;
2643
+ endingDate?: string;
2644
+ bannerUrl?: string | null;
2645
+ mainPictureUrl?: string | null;
2646
+ description?: string | null;
2520
2647
  id: string | "";
2521
2648
  }[];
2522
- eventTickets: {
2649
+ eventTickets?: {
2523
2650
  amount: number | null;
2524
2651
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2525
2652
  price: number | null;
@@ -2532,6 +2659,9 @@ export interface components {
2532
2659
  startingDate: string;
2533
2660
  endingDate: string;
2534
2661
  location: string;
2662
+ mainPictureUrl: string | null;
2663
+ bannerUrl: string | null;
2664
+ description: string | null;
2535
2665
  folderId: string | null;
2536
2666
  tagAssistedId: string;
2537
2667
  tagConfirmedId: string;
@@ -2569,6 +2699,9 @@ export interface components {
2569
2699
  startingDate: string;
2570
2700
  endingDate: string;
2571
2701
  location: string;
2702
+ mainPictureUrl: string | null;
2703
+ bannerUrl: string | null;
2704
+ description: string | null;
2572
2705
  folderId: string | null;
2573
2706
  tagAssistedId: string;
2574
2707
  tagConfirmedId: string;
@@ -2881,6 +3014,15 @@ export interface components {
2881
3014
  type: "created";
2882
3015
  };
2883
3016
  };
3017
+ UpdateImageProfileDto: {
3018
+ image?: Record<string, never>;
3019
+ };
3020
+ UpdateImageProfileResponseDto: {
3021
+ message: string;
3022
+ };
3023
+ DeleteImageProfileResponseDto: {
3024
+ message: string;
3025
+ };
2884
3026
  FindByIdProfileResponseDto: {
2885
3027
  id: string;
2886
3028
  shortId: number;
@@ -2997,15 +3139,6 @@ export interface components {
2997
3139
  };
2998
3140
  tags?: string[];
2999
3141
  };
3000
- UpdateImageDto: {
3001
- image?: Record<string, never>;
3002
- };
3003
- UpdateImageResponseDto: {
3004
- message: string;
3005
- };
3006
- DeleteImageResponseDto: {
3007
- message: string;
3008
- };
3009
3142
  DownloadProfilesDto: {
3010
3143
  password: string;
3011
3144
  };
@@ -3136,6 +3269,9 @@ export interface components {
3136
3269
  startingDate: string;
3137
3270
  endingDate: string;
3138
3271
  location: string;
3272
+ mainPictureUrl: string | null;
3273
+ bannerUrl: string | null;
3274
+ description: string | null;
3139
3275
  folderId: string | null;
3140
3276
  tagAssistedId: string;
3141
3277
  tagConfirmedId: string;
@@ -3176,6 +3312,9 @@ export interface components {
3176
3312
  startingDate: string;
3177
3313
  endingDate: string;
3178
3314
  location: string;
3315
+ mainPictureUrl: string | null;
3316
+ bannerUrl: string | null;
3317
+ description: string | null;
3179
3318
  folderId: string | null;
3180
3319
  tagAssistedId: string;
3181
3320
  tagConfirmedId: string;
@@ -3233,6 +3372,9 @@ export interface components {
3233
3372
  startingDate: string;
3234
3373
  endingDate: string;
3235
3374
  location: string;
3375
+ mainPictureUrl: string | null;
3376
+ bannerUrl: string | null;
3377
+ description: string | null;
3236
3378
  folderId: string | null;
3237
3379
  tagAssistedId: string;
3238
3380
  tagConfirmedId: string;
@@ -3385,6 +3527,9 @@ export interface components {
3385
3527
  startingDate: string;
3386
3528
  endingDate: string;
3387
3529
  location: string;
3530
+ mainPictureUrl: string | null;
3531
+ bannerUrl: string | null;
3532
+ description: string | null;
3388
3533
  folderId: string | null;
3389
3534
  tagAssistedId: string;
3390
3535
  tagConfirmedId: string;
@@ -3497,6 +3642,9 @@ export interface components {
3497
3642
  startingDate: string;
3498
3643
  endingDate: string;
3499
3644
  location: string;
3645
+ mainPictureUrl: string | null;
3646
+ bannerUrl: string | null;
3647
+ description: string | null;
3500
3648
  folderId: string | null;
3501
3649
  tagAssistedId: string;
3502
3650
  tagConfirmedId: string;
@@ -4923,6 +5071,178 @@ export interface operations {
4923
5071
  };
4924
5072
  };
4925
5073
  };
5074
+ EventController_updateBanner: {
5075
+ parameters: {
5076
+ query?: never;
5077
+ header?: never;
5078
+ path: {
5079
+ id: string;
5080
+ };
5081
+ cookie?: never;
5082
+ };
5083
+ requestBody: {
5084
+ content: {
5085
+ "multipart/form-data": components["schemas"]["UpdateBannerEventDto"];
5086
+ };
5087
+ };
5088
+ responses: {
5089
+ 200: {
5090
+ headers: {
5091
+ [name: string]: unknown;
5092
+ };
5093
+ content: {
5094
+ "application/json": components["schemas"]["UpdateBannerEventResponseDto"];
5095
+ };
5096
+ };
5097
+ 409: {
5098
+ headers: {
5099
+ [name: string]: unknown;
5100
+ };
5101
+ content: {
5102
+ "application/json": components["schemas"]["ErrorDto"];
5103
+ };
5104
+ };
5105
+ 422: {
5106
+ headers: {
5107
+ [name: string]: unknown;
5108
+ };
5109
+ content: {
5110
+ "application/json": components["schemas"]["ErrorDto"];
5111
+ };
5112
+ };
5113
+ 500: {
5114
+ headers: {
5115
+ [name: string]: unknown;
5116
+ };
5117
+ content: {
5118
+ "application/json": components["schemas"]["ErrorDto"];
5119
+ };
5120
+ };
5121
+ };
5122
+ };
5123
+ EventController_deleteBanner: {
5124
+ parameters: {
5125
+ query?: never;
5126
+ header?: never;
5127
+ path: {
5128
+ id: string;
5129
+ };
5130
+ cookie?: never;
5131
+ };
5132
+ requestBody?: never;
5133
+ responses: {
5134
+ 200: {
5135
+ headers: {
5136
+ [name: string]: unknown;
5137
+ };
5138
+ content: {
5139
+ "application/json": components["schemas"]["UpdateMainPictureEventResponseDto"];
5140
+ };
5141
+ };
5142
+ 404: {
5143
+ headers: {
5144
+ [name: string]: unknown;
5145
+ };
5146
+ content: {
5147
+ "application/json": components["schemas"]["ErrorDto"];
5148
+ };
5149
+ };
5150
+ 500: {
5151
+ headers: {
5152
+ [name: string]: unknown;
5153
+ };
5154
+ content: {
5155
+ "application/json": components["schemas"]["ErrorDto"];
5156
+ };
5157
+ };
5158
+ };
5159
+ };
5160
+ EventController_updateMainPicture: {
5161
+ parameters: {
5162
+ query?: never;
5163
+ header?: never;
5164
+ path: {
5165
+ id: string;
5166
+ };
5167
+ cookie?: never;
5168
+ };
5169
+ requestBody: {
5170
+ content: {
5171
+ "multipart/form-data": components["schemas"]["UpdateMainPictureEventDto"];
5172
+ };
5173
+ };
5174
+ responses: {
5175
+ 200: {
5176
+ headers: {
5177
+ [name: string]: unknown;
5178
+ };
5179
+ content: {
5180
+ "application/json": components["schemas"]["UpdateMainPictureEventResponseDto"];
5181
+ };
5182
+ };
5183
+ 409: {
5184
+ headers: {
5185
+ [name: string]: unknown;
5186
+ };
5187
+ content: {
5188
+ "application/json": components["schemas"]["ErrorDto"];
5189
+ };
5190
+ };
5191
+ 422: {
5192
+ headers: {
5193
+ [name: string]: unknown;
5194
+ };
5195
+ content: {
5196
+ "application/json": components["schemas"]["ErrorDto"];
5197
+ };
5198
+ };
5199
+ 500: {
5200
+ headers: {
5201
+ [name: string]: unknown;
5202
+ };
5203
+ content: {
5204
+ "application/json": components["schemas"]["ErrorDto"];
5205
+ };
5206
+ };
5207
+ };
5208
+ };
5209
+ EventController_deleteMainPicture: {
5210
+ parameters: {
5211
+ query?: never;
5212
+ header?: never;
5213
+ path: {
5214
+ id: string;
5215
+ };
5216
+ cookie?: never;
5217
+ };
5218
+ requestBody?: never;
5219
+ responses: {
5220
+ 200: {
5221
+ headers: {
5222
+ [name: string]: unknown;
5223
+ };
5224
+ content: {
5225
+ "application/json": components["schemas"]["UpdateMainPictureEventResponseDto"];
5226
+ };
5227
+ };
5228
+ 404: {
5229
+ headers: {
5230
+ [name: string]: unknown;
5231
+ };
5232
+ content: {
5233
+ "application/json": components["schemas"]["ErrorDto"];
5234
+ };
5235
+ };
5236
+ 500: {
5237
+ headers: {
5238
+ [name: string]: unknown;
5239
+ };
5240
+ content: {
5241
+ "application/json": components["schemas"]["ErrorDto"];
5242
+ };
5243
+ };
5244
+ };
5245
+ };
4926
5246
  EventController_findAll: {
4927
5247
  parameters: {
4928
5248
  query?: never;
@@ -5369,7 +5689,7 @@ export interface operations {
5369
5689
  };
5370
5690
  };
5371
5691
  };
5372
- ProfileController_findById: {
5692
+ ProfileController_updateImage: {
5373
5693
  parameters: {
5374
5694
  query?: never;
5375
5695
  header?: never;
@@ -5378,17 +5698,21 @@ export interface operations {
5378
5698
  };
5379
5699
  cookie?: never;
5380
5700
  };
5381
- requestBody?: never;
5701
+ requestBody: {
5702
+ content: {
5703
+ "multipart/form-data": components["schemas"]["UpdateImageProfileDto"];
5704
+ };
5705
+ };
5382
5706
  responses: {
5383
5707
  200: {
5384
5708
  headers: {
5385
5709
  [name: string]: unknown;
5386
5710
  };
5387
5711
  content: {
5388
- "application/json": components["schemas"]["FindByIdProfileResponseDto"];
5712
+ "application/json": components["schemas"]["UpdateImageProfileResponseDto"];
5389
5713
  };
5390
5714
  };
5391
- 404: {
5715
+ 409: {
5392
5716
  headers: {
5393
5717
  [name: string]: unknown;
5394
5718
  };
@@ -5396,28 +5720,15 @@ export interface operations {
5396
5720
  "application/json": components["schemas"]["ErrorDto"];
5397
5721
  };
5398
5722
  };
5399
- };
5400
- };
5401
- ProfileController_delete: {
5402
- parameters: {
5403
- query?: never;
5404
- header?: never;
5405
- path: {
5406
- id: string;
5407
- };
5408
- cookie?: never;
5409
- };
5410
- requestBody?: never;
5411
- responses: {
5412
- 200: {
5723
+ 422: {
5413
5724
  headers: {
5414
5725
  [name: string]: unknown;
5415
5726
  };
5416
5727
  content: {
5417
- "application/json": components["schemas"]["DeleteProfileResponseDto"];
5728
+ "application/json": components["schemas"]["ErrorDto"];
5418
5729
  };
5419
5730
  };
5420
- 404: {
5731
+ 500: {
5421
5732
  headers: {
5422
5733
  [name: string]: unknown;
5423
5734
  };
@@ -5427,7 +5738,7 @@ export interface operations {
5427
5738
  };
5428
5739
  };
5429
5740
  };
5430
- ProfileController_update: {
5741
+ ProfileController_deleteImage: {
5431
5742
  parameters: {
5432
5743
  query?: never;
5433
5744
  header?: never;
@@ -5436,18 +5747,14 @@ export interface operations {
5436
5747
  };
5437
5748
  cookie?: never;
5438
5749
  };
5439
- requestBody: {
5440
- content: {
5441
- "application/json": components["schemas"]["UpdateProfileDto"];
5442
- };
5443
- };
5750
+ requestBody?: never;
5444
5751
  responses: {
5445
5752
  200: {
5446
5753
  headers: {
5447
5754
  [name: string]: unknown;
5448
5755
  };
5449
5756
  content: {
5450
- "application/json": components["schemas"]["UpdateProfileDto"];
5757
+ "application/json": components["schemas"]["DeleteImageProfileResponseDto"];
5451
5758
  };
5452
5759
  };
5453
5760
  404: {
@@ -5458,7 +5765,7 @@ export interface operations {
5458
5765
  "application/json": components["schemas"]["ErrorDto"];
5459
5766
  };
5460
5767
  };
5461
- 409: {
5768
+ 500: {
5462
5769
  headers: {
5463
5770
  [name: string]: unknown;
5464
5771
  };
@@ -5468,7 +5775,7 @@ export interface operations {
5468
5775
  };
5469
5776
  };
5470
5777
  };
5471
- ImageController_updateImage: {
5778
+ ProfileController_findById: {
5472
5779
  parameters: {
5473
5780
  query?: never;
5474
5781
  header?: never;
@@ -5477,21 +5784,17 @@ export interface operations {
5477
5784
  };
5478
5785
  cookie?: never;
5479
5786
  };
5480
- requestBody: {
5481
- content: {
5482
- "multipart/form-data": components["schemas"]["UpdateImageDto"];
5483
- };
5484
- };
5787
+ requestBody?: never;
5485
5788
  responses: {
5486
5789
  200: {
5487
5790
  headers: {
5488
5791
  [name: string]: unknown;
5489
5792
  };
5490
5793
  content: {
5491
- "application/json": components["schemas"]["UpdateImageResponseDto"];
5794
+ "application/json": components["schemas"]["FindByIdProfileResponseDto"];
5492
5795
  };
5493
5796
  };
5494
- 409: {
5797
+ 404: {
5495
5798
  headers: {
5496
5799
  [name: string]: unknown;
5497
5800
  };
@@ -5499,15 +5802,28 @@ export interface operations {
5499
5802
  "application/json": components["schemas"]["ErrorDto"];
5500
5803
  };
5501
5804
  };
5502
- 422: {
5805
+ };
5806
+ };
5807
+ ProfileController_delete: {
5808
+ parameters: {
5809
+ query?: never;
5810
+ header?: never;
5811
+ path: {
5812
+ id: string;
5813
+ };
5814
+ cookie?: never;
5815
+ };
5816
+ requestBody?: never;
5817
+ responses: {
5818
+ 200: {
5503
5819
  headers: {
5504
5820
  [name: string]: unknown;
5505
5821
  };
5506
5822
  content: {
5507
- "application/json": components["schemas"]["ErrorDto"];
5823
+ "application/json": components["schemas"]["DeleteProfileResponseDto"];
5508
5824
  };
5509
5825
  };
5510
- 500: {
5826
+ 404: {
5511
5827
  headers: {
5512
5828
  [name: string]: unknown;
5513
5829
  };
@@ -5517,7 +5833,7 @@ export interface operations {
5517
5833
  };
5518
5834
  };
5519
5835
  };
5520
- ImageController_deleteImage: {
5836
+ ProfileController_update: {
5521
5837
  parameters: {
5522
5838
  query?: never;
5523
5839
  header?: never;
@@ -5526,14 +5842,18 @@ export interface operations {
5526
5842
  };
5527
5843
  cookie?: never;
5528
5844
  };
5529
- requestBody?: never;
5845
+ requestBody: {
5846
+ content: {
5847
+ "application/json": components["schemas"]["UpdateProfileDto"];
5848
+ };
5849
+ };
5530
5850
  responses: {
5531
5851
  200: {
5532
5852
  headers: {
5533
5853
  [name: string]: unknown;
5534
5854
  };
5535
5855
  content: {
5536
- "application/json": components["schemas"]["DeleteImageResponseDto"];
5856
+ "application/json": components["schemas"]["UpdateProfileDto"];
5537
5857
  };
5538
5858
  };
5539
5859
  404: {
@@ -5544,7 +5864,7 @@ export interface operations {
5544
5864
  "application/json": components["schemas"]["ErrorDto"];
5545
5865
  };
5546
5866
  };
5547
- 500: {
5867
+ 409: {
5548
5868
  headers: {
5549
5869
  [name: string]: unknown;
5550
5870
  };