expo-backend-types 0.49.0-EXPO-343-Quique-Wolff.1 → 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.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 (51) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +23 -72
  2. package/dist/src/event/dto/create-event.dto.js +1 -7
  3. package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
  4. package/dist/src/event/dto/event-tickets.dto.d.ts +33 -2
  5. package/dist/src/event/dto/event-tickets.dto.js +18 -8
  6. package/dist/src/event/dto/event.dto.d.ts +0 -9
  7. package/dist/src/event/dto/event.dto.js +0 -13
  8. package/dist/src/event/dto/get-active-events.dto.d.ts +23 -33
  9. package/dist/src/event/dto/get-all-event.dto.d.ts +48 -272
  10. package/dist/src/event/dto/get-all-event.dto.js +2 -2
  11. package/dist/src/event/dto/get-by-id-event.dto.d.ts +23 -99
  12. package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +8 -0
  13. package/dist/src/event/dto/get-statistics-by-id-event.dto.js +11 -0
  14. package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -9
  15. package/dist/src/event/dto/update-event.dto.d.ts +46 -75
  16. package/dist/src/event/dto/update-event.dto.js +2 -8
  17. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
  18. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
  19. package/dist/src/i18n/es.d.ts +1 -7
  20. package/dist/src/i18n/es.js +3 -7
  21. package/dist/src/i18n/es.js.map +1 -1
  22. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +0 -3
  23. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -30
  24. package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -30
  25. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -3
  26. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -3
  27. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -42
  28. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -3
  29. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -42
  30. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +0 -30
  31. package/dist/types/prisma-schema/edge.js +3 -6
  32. package/dist/types/prisma-schema/index-browser.js +0 -3
  33. package/dist/types/prisma-schema/index.d.ts +1 -214
  34. package/dist/types/prisma-schema/index.js +3 -6
  35. package/dist/types/prisma-schema/package.json +1 -1
  36. package/dist/types/prisma-schema/schema.prisma +6 -9
  37. package/dist/types/prisma-schema/wasm.js +0 -3
  38. package/dist/types/schema.d.ts +92 -377
  39. package/package.json +2 -1
  40. package/dist/src/event/dto/delete-banner-event.dto.d.ts +0 -18
  41. package/dist/src/event/dto/delete-banner-event.dto.js +0 -12
  42. package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +0 -18
  43. package/dist/src/event/dto/delete-main-picture-event.dto.js +0 -12
  44. package/dist/src/event/dto/update-banner-event.dto.d.ts +0 -33
  45. package/dist/src/event/dto/update-banner-event.dto.js +0 -18
  46. package/dist/src/event/dto/update-main-picture-event.dto.d.ts +0 -33
  47. package/dist/src/event/dto/update-main-picture-event.dto.js +0 -18
  48. package/dist/src/profile/dto/delete-image-profile.dto.d.ts +0 -18
  49. package/dist/src/profile/dto/delete-image-profile.dto.js +0 -12
  50. package/dist/src/profile/dto/update-image-profile.dto.d.ts +0 -33
  51. package/dist/src/profile/dto/update-image-profile.dto.js +0 -18
@@ -527,94 +527,62 @@ export interface paths {
527
527
  patch?: never;
528
528
  trace?: never;
529
529
  };
530
- "/event/update-banner/{id}": {
530
+ "/event/all": {
531
531
  parameters: {
532
532
  query?: never;
533
533
  header?: never;
534
534
  path?: never;
535
535
  cookie?: never;
536
536
  };
537
- get?: never;
537
+ get: operations["EventController_findAll"];
538
538
  put?: never;
539
539
  post?: never;
540
540
  delete?: never;
541
541
  options?: never;
542
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
543
  patch?: never;
560
544
  trace?: never;
561
545
  };
562
- "/event/update-main-picture/{id}": {
546
+ "/event/find-active": {
563
547
  parameters: {
564
548
  query?: never;
565
549
  header?: never;
566
550
  path?: never;
567
551
  cookie?: never;
568
552
  };
569
- get?: never;
553
+ get: operations["EventController_getActive"];
570
554
  put?: never;
571
555
  post?: never;
572
556
  delete?: never;
573
557
  options?: never;
574
558
  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
559
  patch?: never;
592
560
  trace?: never;
593
561
  };
594
- "/event/all": {
562
+ "/event/{id}": {
595
563
  parameters: {
596
564
  query?: never;
597
565
  header?: never;
598
566
  path?: never;
599
567
  cookie?: never;
600
568
  };
601
- get: operations["EventController_findAll"];
569
+ get: operations["EventController_findById"];
602
570
  put?: never;
603
571
  post?: never;
604
- delete?: never;
572
+ delete: operations["EventController_remove"];
605
573
  options?: never;
606
574
  head?: never;
607
- patch?: never;
575
+ patch: operations["EventController_update"];
608
576
  trace?: never;
609
577
  };
610
- "/event/find-active": {
578
+ "/event/{id}/statistics": {
611
579
  parameters: {
612
580
  query?: never;
613
581
  header?: never;
614
582
  path?: never;
615
583
  cookie?: never;
616
584
  };
617
- get: operations["EventController_getActive"];
585
+ get: operations["EventController_getStatisticsById"];
618
586
  put?: never;
619
587
  post?: never;
620
588
  delete?: never;
@@ -623,22 +591,6 @@ export interface paths {
623
591
  patch?: never;
624
592
  trace?: never;
625
593
  };
626
- "/event/{id}": {
627
- parameters: {
628
- query?: never;
629
- header?: never;
630
- path?: never;
631
- cookie?: never;
632
- };
633
- get: operations["EventController_findById"];
634
- put?: never;
635
- post?: never;
636
- delete: operations["EventController_remove"];
637
- options?: never;
638
- head?: never;
639
- patch: operations["EventController_update"];
640
- trace?: never;
641
- };
642
594
  "/event/toggle-active/{id}": {
643
595
  parameters: {
644
596
  query?: never;
@@ -783,23 +735,23 @@ export interface paths {
783
735
  patch?: never;
784
736
  trace?: never;
785
737
  };
786
- "/profile/update-image/{id}": {
738
+ "/profile/{id}": {
787
739
  parameters: {
788
740
  query?: never;
789
741
  header?: never;
790
742
  path?: never;
791
743
  cookie?: never;
792
744
  };
793
- get?: never;
745
+ get: operations["ProfileController_findById"];
794
746
  put?: never;
795
747
  post?: never;
796
- delete?: never;
748
+ delete: operations["ProfileController_delete"];
797
749
  options?: never;
798
750
  head?: never;
799
- patch: operations["ProfileController_updateImage"];
751
+ patch: operations["ProfileController_update"];
800
752
  trace?: never;
801
753
  };
802
- "/profile/delete-image/{id}": {
754
+ "/image/update/{id}": {
803
755
  parameters: {
804
756
  query?: never;
805
757
  header?: never;
@@ -809,26 +761,26 @@ export interface paths {
809
761
  get?: never;
810
762
  put?: never;
811
763
  post?: never;
812
- delete: operations["ProfileController_deleteImage"];
764
+ delete?: never;
813
765
  options?: never;
814
766
  head?: never;
815
- patch?: never;
767
+ patch: operations["ImageController_updateImage"];
816
768
  trace?: never;
817
769
  };
818
- "/profile/{id}": {
770
+ "/image/delete/{id}": {
819
771
  parameters: {
820
772
  query?: never;
821
773
  header?: never;
822
774
  path?: never;
823
775
  cookie?: never;
824
776
  };
825
- get: operations["ProfileController_findById"];
777
+ get?: never;
826
778
  put?: never;
827
779
  post?: never;
828
- delete: operations["ProfileController_delete"];
780
+ delete: operations["ImageController_deleteImage"];
829
781
  options?: never;
830
782
  head?: never;
831
- patch: operations["ProfileController_update"];
783
+ patch?: never;
832
784
  trace?: never;
833
785
  };
834
786
  "/csv/download-profiles": {
@@ -1989,9 +1941,6 @@ export interface components {
1989
1941
  startingDate: string;
1990
1942
  endingDate: string;
1991
1943
  location: string;
1992
- mainPictureUrl: string | null;
1993
- bannerUrl: string | null;
1994
- description: string | null;
1995
1944
  folderId: string | null;
1996
1945
  tagAssistedId: string;
1997
1946
  tagConfirmedId: string;
@@ -2015,9 +1964,6 @@ export interface components {
2015
1964
  startingDate: string;
2016
1965
  endingDate: string;
2017
1966
  location: string;
2018
- mainPictureUrl: string | null;
2019
- bannerUrl: string | null;
2020
- description: string | null;
2021
1967
  folderId: string | null;
2022
1968
  tagAssistedId: string;
2023
1969
  tagConfirmedId: string;
@@ -2052,18 +1998,12 @@ export interface components {
2052
1998
  endingDate: string;
2053
1999
  location: string;
2054
2000
  folderId: string | null;
2055
- mainPictureUrl: string | null;
2056
- bannerUrl: string | null;
2057
- description: string | null;
2058
2001
  subEvents?: {
2059
2002
  name: string;
2060
2003
  date: string;
2061
2004
  startingDate: string;
2062
2005
  endingDate: string;
2063
2006
  location: string;
2064
- mainPictureUrl: string | null;
2065
- bannerUrl: string | null;
2066
- description: string | null;
2067
2007
  }[];
2068
2008
  tagsId: string[];
2069
2009
  eventTickets: {
@@ -2079,9 +2019,6 @@ export interface components {
2079
2019
  startingDate: string;
2080
2020
  endingDate: string;
2081
2021
  location: string;
2082
- mainPictureUrl: string | null;
2083
- bannerUrl: string | null;
2084
- description: string | null;
2085
2022
  folderId: string | null;
2086
2023
  tagAssistedId: string;
2087
2024
  tagConfirmedId: string;
@@ -2090,18 +2027,6 @@ export interface components {
2090
2027
  created_at: string;
2091
2028
  updated_at: string;
2092
2029
  };
2093
- UpdateBannerEventDto: {
2094
- image?: Record<string, never>;
2095
- };
2096
- UpdateBannerEventResponseDto: {
2097
- message: string;
2098
- };
2099
- UpdateMainPictureEventResponseDto: {
2100
- message: string;
2101
- };
2102
- UpdateMainPictureEventDto: {
2103
- image?: Record<string, never>;
2104
- };
2105
2030
  GetAllEventsResponseDto: {
2106
2031
  folders: {
2107
2032
  id: string;
@@ -2116,9 +2041,6 @@ export interface components {
2116
2041
  startingDate: string;
2117
2042
  endingDate: string;
2118
2043
  location: string;
2119
- mainPictureUrl: string | null;
2120
- bannerUrl: string | null;
2121
- description: string | null;
2122
2044
  folderId: string | null;
2123
2045
  tagAssistedId: string;
2124
2046
  tagConfirmedId: string;
@@ -2133,9 +2055,6 @@ export interface components {
2133
2055
  startingDate: string;
2134
2056
  endingDate: string;
2135
2057
  location: string;
2136
- mainPictureUrl: string | null;
2137
- bannerUrl: string | null;
2138
- description: string | null;
2139
2058
  folderId: string | null;
2140
2059
  tagAssistedId: string;
2141
2060
  tagConfirmedId: string;
@@ -2151,9 +2070,6 @@ export interface components {
2151
2070
  startingDate: string;
2152
2071
  endingDate: string;
2153
2072
  location: string;
2154
- mainPictureUrl: string | null;
2155
- bannerUrl: string | null;
2156
- description: string | null;
2157
2073
  folderId: string | null;
2158
2074
  tagAssistedId: string;
2159
2075
  tagConfirmedId: string;
@@ -2188,9 +2104,6 @@ export interface components {
2188
2104
  startingDate: string;
2189
2105
  endingDate: string;
2190
2106
  location: string;
2191
- mainPictureUrl: string | null;
2192
- bannerUrl: string | null;
2193
- description: string | null;
2194
2107
  folderId: string | null;
2195
2108
  tagAssistedId: string;
2196
2109
  tagConfirmedId: string;
@@ -2205,9 +2118,6 @@ export interface components {
2205
2118
  startingDate: string;
2206
2119
  endingDate: string;
2207
2120
  location: string;
2208
- mainPictureUrl: string | null;
2209
- bannerUrl: string | null;
2210
- description: string | null;
2211
2121
  folderId: string | null;
2212
2122
  tagAssistedId: string;
2213
2123
  tagConfirmedId: string;
@@ -2223,9 +2133,6 @@ export interface components {
2223
2133
  startingDate: string;
2224
2134
  endingDate: string;
2225
2135
  location: string;
2226
- mainPictureUrl: string | null;
2227
- bannerUrl: string | null;
2228
- description: string | null;
2229
2136
  folderId: string | null;
2230
2137
  tagAssistedId: string;
2231
2138
  tagConfirmedId: string;
@@ -2261,9 +2168,6 @@ export interface components {
2261
2168
  startingDate: string;
2262
2169
  endingDate: string;
2263
2170
  location: string;
2264
- mainPictureUrl: string | null;
2265
- bannerUrl: string | null;
2266
- description: string | null;
2267
2171
  folderId: string | null;
2268
2172
  tagAssistedId: string;
2269
2173
  tagConfirmedId: string;
@@ -2286,9 +2190,6 @@ export interface components {
2286
2190
  startingDate: string;
2287
2191
  endingDate: string;
2288
2192
  location: string;
2289
- mainPictureUrl: string | null;
2290
- bannerUrl: string | null;
2291
- description: string | null;
2292
2193
  folderId: string | null;
2293
2194
  tagAssistedId: string;
2294
2195
  tagConfirmedId: string;
@@ -2303,9 +2204,6 @@ export interface components {
2303
2204
  startingDate: string;
2304
2205
  endingDate: string;
2305
2206
  location: string;
2306
- mainPictureUrl: string | null;
2307
- bannerUrl: string | null;
2308
- description: string | null;
2309
2207
  folderId: string | null;
2310
2208
  tagAssistedId: string;
2311
2209
  tagConfirmedId: string;
@@ -2321,9 +2219,6 @@ export interface components {
2321
2219
  startingDate: string;
2322
2220
  endingDate: string;
2323
2221
  location: string;
2324
- mainPictureUrl: string | null;
2325
- bannerUrl: string | null;
2326
- description: string | null;
2327
2222
  folderId: string | null;
2328
2223
  tagAssistedId: string;
2329
2224
  tagConfirmedId: string;
@@ -2408,9 +2303,6 @@ export interface components {
2408
2303
  location: string;
2409
2304
  startingDate: string;
2410
2305
  endingDate: string;
2411
- bannerUrl: string | null;
2412
- mainPictureUrl: string | null;
2413
- description: string | null;
2414
2306
  tagsId: string[];
2415
2307
  subEvents: {
2416
2308
  name: string;
@@ -2418,9 +2310,6 @@ export interface components {
2418
2310
  date: string;
2419
2311
  startingDate: string;
2420
2312
  endingDate: string;
2421
- bannerUrl: string | null;
2422
- mainPictureUrl: string | null;
2423
- description: string | null;
2424
2313
  id: string | "";
2425
2314
  }[];
2426
2315
  eventTickets: {
@@ -2436,9 +2325,6 @@ export interface components {
2436
2325
  startingDate: string;
2437
2326
  endingDate: string;
2438
2327
  location: string;
2439
- mainPictureUrl: string | null;
2440
- bannerUrl: string | null;
2441
- description: string | null;
2442
2328
  folderId: string | null;
2443
2329
  tagAssistedId: string;
2444
2330
  tagConfirmedId: string;
@@ -2476,9 +2362,6 @@ export interface components {
2476
2362
  startingDate: string;
2477
2363
  endingDate: string;
2478
2364
  location: string;
2479
- mainPictureUrl: string | null;
2480
- bannerUrl: string | null;
2481
- description: string | null;
2482
2365
  folderId: string | null;
2483
2366
  tagAssistedId: string;
2484
2367
  tagConfirmedId: string;
@@ -2791,15 +2674,6 @@ export interface components {
2791
2674
  type: "created";
2792
2675
  };
2793
2676
  };
2794
- UpdateImageProfileDto: {
2795
- image?: Record<string, never>;
2796
- };
2797
- UpdateImageProfileResponseDto: {
2798
- message: string;
2799
- };
2800
- DeleteImageProfileResponseDto: {
2801
- message: string;
2802
- };
2803
2677
  FindByIdProfileResponseDto: {
2804
2678
  id: string;
2805
2679
  shortId: number;
@@ -2916,6 +2790,15 @@ export interface components {
2916
2790
  };
2917
2791
  tags?: string[];
2918
2792
  };
2793
+ UpdateImageDto: {
2794
+ image?: Record<string, never>;
2795
+ };
2796
+ UpdateImageResponseDto: {
2797
+ message: string;
2798
+ };
2799
+ DeleteImageResponseDto: {
2800
+ message: string;
2801
+ };
2919
2802
  DownloadProfilesDto: {
2920
2803
  password: string;
2921
2804
  };
@@ -3046,9 +2929,6 @@ export interface components {
3046
2929
  startingDate: string;
3047
2930
  endingDate: string;
3048
2931
  location: string;
3049
- mainPictureUrl: string | null;
3050
- bannerUrl: string | null;
3051
- description: string | null;
3052
2932
  folderId: string | null;
3053
2933
  tagAssistedId: string;
3054
2934
  tagConfirmedId: string;
@@ -3089,9 +2969,6 @@ export interface components {
3089
2969
  startingDate: string;
3090
2970
  endingDate: string;
3091
2971
  location: string;
3092
- mainPictureUrl: string | null;
3093
- bannerUrl: string | null;
3094
- description: string | null;
3095
2972
  folderId: string | null;
3096
2973
  tagAssistedId: string;
3097
2974
  tagConfirmedId: string;
@@ -3149,9 +3026,6 @@ export interface components {
3149
3026
  startingDate: string;
3150
3027
  endingDate: string;
3151
3028
  location: string;
3152
- mainPictureUrl: string | null;
3153
- bannerUrl: string | null;
3154
- description: string | null;
3155
3029
  folderId: string | null;
3156
3030
  tagAssistedId: string;
3157
3031
  tagConfirmedId: string;
@@ -3304,9 +3178,6 @@ export interface components {
3304
3178
  startingDate: string;
3305
3179
  endingDate: string;
3306
3180
  location: string;
3307
- mainPictureUrl: string | null;
3308
- bannerUrl: string | null;
3309
- description: string | null;
3310
3181
  folderId: string | null;
3311
3182
  tagAssistedId: string;
3312
3183
  tagConfirmedId: string;
@@ -3419,9 +3290,6 @@ export interface components {
3419
3290
  startingDate: string;
3420
3291
  endingDate: string;
3421
3292
  location: string;
3422
- mainPictureUrl: string | null;
3423
- bannerUrl: string | null;
3424
- description: string | null;
3425
3293
  folderId: string | null;
3426
3294
  tagAssistedId: string;
3427
3295
  tagConfirmedId: string;
@@ -4701,178 +4569,6 @@ export interface operations {
4701
4569
  };
4702
4570
  };
4703
4571
  };
4704
- EventController_updateBanner: {
4705
- parameters: {
4706
- query?: never;
4707
- header?: never;
4708
- path: {
4709
- id: string;
4710
- };
4711
- cookie?: never;
4712
- };
4713
- requestBody: {
4714
- content: {
4715
- "multipart/form-data": components["schemas"]["UpdateBannerEventDto"];
4716
- };
4717
- };
4718
- responses: {
4719
- 200: {
4720
- headers: {
4721
- [name: string]: unknown;
4722
- };
4723
- content: {
4724
- "application/json": components["schemas"]["UpdateBannerEventResponseDto"];
4725
- };
4726
- };
4727
- 409: {
4728
- headers: {
4729
- [name: string]: unknown;
4730
- };
4731
- content: {
4732
- "application/json": components["schemas"]["ErrorDto"];
4733
- };
4734
- };
4735
- 422: {
4736
- headers: {
4737
- [name: string]: unknown;
4738
- };
4739
- content: {
4740
- "application/json": components["schemas"]["ErrorDto"];
4741
- };
4742
- };
4743
- 500: {
4744
- headers: {
4745
- [name: string]: unknown;
4746
- };
4747
- content: {
4748
- "application/json": components["schemas"]["ErrorDto"];
4749
- };
4750
- };
4751
- };
4752
- };
4753
- EventController_deleteBanner: {
4754
- parameters: {
4755
- query?: never;
4756
- header?: never;
4757
- path: {
4758
- id: string;
4759
- };
4760
- cookie?: never;
4761
- };
4762
- requestBody?: never;
4763
- responses: {
4764
- 200: {
4765
- headers: {
4766
- [name: string]: unknown;
4767
- };
4768
- content: {
4769
- "application/json": components["schemas"]["UpdateMainPictureEventResponseDto"];
4770
- };
4771
- };
4772
- 404: {
4773
- headers: {
4774
- [name: string]: unknown;
4775
- };
4776
- content: {
4777
- "application/json": components["schemas"]["ErrorDto"];
4778
- };
4779
- };
4780
- 500: {
4781
- headers: {
4782
- [name: string]: unknown;
4783
- };
4784
- content: {
4785
- "application/json": components["schemas"]["ErrorDto"];
4786
- };
4787
- };
4788
- };
4789
- };
4790
- EventController_updateMainPicture: {
4791
- parameters: {
4792
- query?: never;
4793
- header?: never;
4794
- path: {
4795
- id: string;
4796
- };
4797
- cookie?: never;
4798
- };
4799
- requestBody: {
4800
- content: {
4801
- "multipart/form-data": components["schemas"]["UpdateMainPictureEventDto"];
4802
- };
4803
- };
4804
- responses: {
4805
- 200: {
4806
- headers: {
4807
- [name: string]: unknown;
4808
- };
4809
- content: {
4810
- "application/json": components["schemas"]["UpdateMainPictureEventResponseDto"];
4811
- };
4812
- };
4813
- 409: {
4814
- headers: {
4815
- [name: string]: unknown;
4816
- };
4817
- content: {
4818
- "application/json": components["schemas"]["ErrorDto"];
4819
- };
4820
- };
4821
- 422: {
4822
- headers: {
4823
- [name: string]: unknown;
4824
- };
4825
- content: {
4826
- "application/json": components["schemas"]["ErrorDto"];
4827
- };
4828
- };
4829
- 500: {
4830
- headers: {
4831
- [name: string]: unknown;
4832
- };
4833
- content: {
4834
- "application/json": components["schemas"]["ErrorDto"];
4835
- };
4836
- };
4837
- };
4838
- };
4839
- EventController_deleteMainPicture: {
4840
- parameters: {
4841
- query?: never;
4842
- header?: never;
4843
- path: {
4844
- id: string;
4845
- };
4846
- cookie?: never;
4847
- };
4848
- requestBody?: never;
4849
- responses: {
4850
- 200: {
4851
- headers: {
4852
- [name: string]: unknown;
4853
- };
4854
- content: {
4855
- "application/json": components["schemas"]["UpdateMainPictureEventResponseDto"];
4856
- };
4857
- };
4858
- 404: {
4859
- headers: {
4860
- [name: string]: unknown;
4861
- };
4862
- content: {
4863
- "application/json": components["schemas"]["ErrorDto"];
4864
- };
4865
- };
4866
- 500: {
4867
- headers: {
4868
- [name: string]: unknown;
4869
- };
4870
- content: {
4871
- "application/json": components["schemas"]["ErrorDto"];
4872
- };
4873
- };
4874
- };
4875
- };
4876
4572
  EventController_findAll: {
4877
4573
  parameters: {
4878
4574
  query?: never;
@@ -5018,6 +4714,25 @@ export interface operations {
5018
4714
  };
5019
4715
  };
5020
4716
  };
4717
+ EventController_getStatisticsById: {
4718
+ parameters: {
4719
+ query?: never;
4720
+ header?: never;
4721
+ path: {
4722
+ id: string;
4723
+ };
4724
+ cookie?: never;
4725
+ };
4726
+ requestBody?: never;
4727
+ responses: {
4728
+ 200: {
4729
+ headers: {
4730
+ [name: string]: unknown;
4731
+ };
4732
+ content?: never;
4733
+ };
4734
+ };
4735
+ };
5021
4736
  EventController_toggleActive: {
5022
4737
  parameters: {
5023
4738
  query?: never;
@@ -5268,7 +4983,7 @@ export interface operations {
5268
4983
  };
5269
4984
  };
5270
4985
  };
5271
- ProfileController_updateImage: {
4986
+ ProfileController_findById: {
5272
4987
  parameters: {
5273
4988
  query?: never;
5274
4989
  header?: never;
@@ -5277,21 +4992,17 @@ export interface operations {
5277
4992
  };
5278
4993
  cookie?: never;
5279
4994
  };
5280
- requestBody: {
5281
- content: {
5282
- "multipart/form-data": components["schemas"]["UpdateImageProfileDto"];
5283
- };
5284
- };
4995
+ requestBody?: never;
5285
4996
  responses: {
5286
4997
  200: {
5287
4998
  headers: {
5288
4999
  [name: string]: unknown;
5289
5000
  };
5290
5001
  content: {
5291
- "application/json": components["schemas"]["UpdateImageProfileResponseDto"];
5002
+ "application/json": components["schemas"]["FindByIdProfileResponseDto"];
5292
5003
  };
5293
5004
  };
5294
- 409: {
5005
+ 404: {
5295
5006
  headers: {
5296
5007
  [name: string]: unknown;
5297
5008
  };
@@ -5299,15 +5010,28 @@ export interface operations {
5299
5010
  "application/json": components["schemas"]["ErrorDto"];
5300
5011
  };
5301
5012
  };
5302
- 422: {
5013
+ };
5014
+ };
5015
+ ProfileController_delete: {
5016
+ parameters: {
5017
+ query?: never;
5018
+ header?: never;
5019
+ path: {
5020
+ id: string;
5021
+ };
5022
+ cookie?: never;
5023
+ };
5024
+ requestBody?: never;
5025
+ responses: {
5026
+ 200: {
5303
5027
  headers: {
5304
5028
  [name: string]: unknown;
5305
5029
  };
5306
5030
  content: {
5307
- "application/json": components["schemas"]["ErrorDto"];
5031
+ "application/json": components["schemas"]["DeleteProfileResponseDto"];
5308
5032
  };
5309
5033
  };
5310
- 500: {
5034
+ 404: {
5311
5035
  headers: {
5312
5036
  [name: string]: unknown;
5313
5037
  };
@@ -5317,7 +5041,7 @@ export interface operations {
5317
5041
  };
5318
5042
  };
5319
5043
  };
5320
- ProfileController_deleteImage: {
5044
+ ProfileController_update: {
5321
5045
  parameters: {
5322
5046
  query?: never;
5323
5047
  header?: never;
@@ -5326,14 +5050,18 @@ export interface operations {
5326
5050
  };
5327
5051
  cookie?: never;
5328
5052
  };
5329
- requestBody?: never;
5053
+ requestBody: {
5054
+ content: {
5055
+ "application/json": components["schemas"]["UpdateProfileDto"];
5056
+ };
5057
+ };
5330
5058
  responses: {
5331
5059
  200: {
5332
5060
  headers: {
5333
5061
  [name: string]: unknown;
5334
5062
  };
5335
5063
  content: {
5336
- "application/json": components["schemas"]["DeleteImageProfileResponseDto"];
5064
+ "application/json": components["schemas"]["UpdateProfileDto"];
5337
5065
  };
5338
5066
  };
5339
5067
  404: {
@@ -5344,7 +5072,7 @@ export interface operations {
5344
5072
  "application/json": components["schemas"]["ErrorDto"];
5345
5073
  };
5346
5074
  };
5347
- 500: {
5075
+ 409: {
5348
5076
  headers: {
5349
5077
  [name: string]: unknown;
5350
5078
  };
@@ -5354,7 +5082,7 @@ export interface operations {
5354
5082
  };
5355
5083
  };
5356
5084
  };
5357
- ProfileController_findById: {
5085
+ ImageController_updateImage: {
5358
5086
  parameters: {
5359
5087
  query?: never;
5360
5088
  header?: never;
@@ -5363,17 +5091,21 @@ export interface operations {
5363
5091
  };
5364
5092
  cookie?: never;
5365
5093
  };
5366
- requestBody?: never;
5094
+ requestBody: {
5095
+ content: {
5096
+ "multipart/form-data": components["schemas"]["UpdateImageDto"];
5097
+ };
5098
+ };
5367
5099
  responses: {
5368
5100
  200: {
5369
5101
  headers: {
5370
5102
  [name: string]: unknown;
5371
5103
  };
5372
5104
  content: {
5373
- "application/json": components["schemas"]["FindByIdProfileResponseDto"];
5105
+ "application/json": components["schemas"]["UpdateImageResponseDto"];
5374
5106
  };
5375
5107
  };
5376
- 404: {
5108
+ 409: {
5377
5109
  headers: {
5378
5110
  [name: string]: unknown;
5379
5111
  };
@@ -5381,28 +5113,15 @@ export interface operations {
5381
5113
  "application/json": components["schemas"]["ErrorDto"];
5382
5114
  };
5383
5115
  };
5384
- };
5385
- };
5386
- ProfileController_delete: {
5387
- parameters: {
5388
- query?: never;
5389
- header?: never;
5390
- path: {
5391
- id: string;
5392
- };
5393
- cookie?: never;
5394
- };
5395
- requestBody?: never;
5396
- responses: {
5397
- 200: {
5116
+ 422: {
5398
5117
  headers: {
5399
5118
  [name: string]: unknown;
5400
5119
  };
5401
5120
  content: {
5402
- "application/json": components["schemas"]["DeleteProfileResponseDto"];
5121
+ "application/json": components["schemas"]["ErrorDto"];
5403
5122
  };
5404
5123
  };
5405
- 404: {
5124
+ 500: {
5406
5125
  headers: {
5407
5126
  [name: string]: unknown;
5408
5127
  };
@@ -5412,7 +5131,7 @@ export interface operations {
5412
5131
  };
5413
5132
  };
5414
5133
  };
5415
- ProfileController_update: {
5134
+ ImageController_deleteImage: {
5416
5135
  parameters: {
5417
5136
  query?: never;
5418
5137
  header?: never;
@@ -5421,18 +5140,14 @@ export interface operations {
5421
5140
  };
5422
5141
  cookie?: never;
5423
5142
  };
5424
- requestBody: {
5425
- content: {
5426
- "application/json": components["schemas"]["UpdateProfileDto"];
5427
- };
5428
- };
5143
+ requestBody?: never;
5429
5144
  responses: {
5430
5145
  200: {
5431
5146
  headers: {
5432
5147
  [name: string]: unknown;
5433
5148
  };
5434
5149
  content: {
5435
- "application/json": components["schemas"]["UpdateProfileDto"];
5150
+ "application/json": components["schemas"]["DeleteImageResponseDto"];
5436
5151
  };
5437
5152
  };
5438
5153
  404: {
@@ -5443,7 +5158,7 @@ export interface operations {
5443
5158
  "application/json": components["schemas"]["ErrorDto"];
5444
5159
  };
5445
5160
  };
5446
- 409: {
5161
+ 500: {
5447
5162
  headers: {
5448
5163
  [name: string]: unknown;
5449
5164
  };