expo-backend-types 0.49.0-EXPO-343-Quique-Wolff.2 → 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.2

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 -8
  20. package/dist/src/i18n/es.js +3 -8
  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 +103 -355
  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,78 +527,46 @@ 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/statistics": {
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_getStatistics"];
602
570
  put?: never;
603
571
  post?: never;
604
572
  delete?: never;
@@ -607,36 +575,36 @@ export interface paths {
607
575
  patch?: never;
608
576
  trace?: never;
609
577
  };
610
- "/event/find-active": {
578
+ "/event/{id}": {
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_findById"];
618
586
  put?: never;
619
587
  post?: never;
620
- delete?: never;
588
+ delete: operations["EventController_remove"];
621
589
  options?: never;
622
590
  head?: never;
623
- patch?: never;
591
+ patch: operations["EventController_update"];
624
592
  trace?: never;
625
593
  };
626
- "/event/{id}": {
594
+ "/event/{id}/statistics": {
627
595
  parameters: {
628
596
  query?: never;
629
597
  header?: never;
630
598
  path?: never;
631
599
  cookie?: never;
632
600
  };
633
- get: operations["EventController_findById"];
601
+ get: operations["EventController_getStatisticsById"];
634
602
  put?: never;
635
603
  post?: never;
636
- delete: operations["EventController_remove"];
604
+ delete?: never;
637
605
  options?: never;
638
606
  head?: never;
639
- patch: operations["EventController_update"];
607
+ patch?: never;
640
608
  trace?: never;
641
609
  };
642
610
  "/event/toggle-active/{id}": {
@@ -783,23 +751,23 @@ export interface paths {
783
751
  patch?: never;
784
752
  trace?: never;
785
753
  };
786
- "/profile/update-image/{id}": {
754
+ "/profile/{id}": {
787
755
  parameters: {
788
756
  query?: never;
789
757
  header?: never;
790
758
  path?: never;
791
759
  cookie?: never;
792
760
  };
793
- get?: never;
761
+ get: operations["ProfileController_findById"];
794
762
  put?: never;
795
763
  post?: never;
796
- delete?: never;
764
+ delete: operations["ProfileController_delete"];
797
765
  options?: never;
798
766
  head?: never;
799
- patch: operations["ProfileController_updateImage"];
767
+ patch: operations["ProfileController_update"];
800
768
  trace?: never;
801
769
  };
802
- "/profile/delete-image/{id}": {
770
+ "/image/update/{id}": {
803
771
  parameters: {
804
772
  query?: never;
805
773
  header?: never;
@@ -809,26 +777,26 @@ export interface paths {
809
777
  get?: never;
810
778
  put?: never;
811
779
  post?: never;
812
- delete: operations["ProfileController_deleteImage"];
780
+ delete?: never;
813
781
  options?: never;
814
782
  head?: never;
815
- patch?: never;
783
+ patch: operations["ImageController_updateImage"];
816
784
  trace?: never;
817
785
  };
818
- "/profile/{id}": {
786
+ "/image/delete/{id}": {
819
787
  parameters: {
820
788
  query?: never;
821
789
  header?: never;
822
790
  path?: never;
823
791
  cookie?: never;
824
792
  };
825
- get: operations["ProfileController_findById"];
793
+ get?: never;
826
794
  put?: never;
827
795
  post?: never;
828
- delete: operations["ProfileController_delete"];
796
+ delete: operations["ImageController_deleteImage"];
829
797
  options?: never;
830
798
  head?: never;
831
- patch: operations["ProfileController_update"];
799
+ patch?: never;
832
800
  trace?: never;
833
801
  };
834
802
  "/csv/download-profiles": {
@@ -1989,9 +1957,6 @@ export interface components {
1989
1957
  startingDate: string;
1990
1958
  endingDate: string;
1991
1959
  location: string;
1992
- mainPictureUrl: string | null;
1993
- bannerUrl: string | null;
1994
- description: string | null;
1995
1960
  folderId: string | null;
1996
1961
  tagAssistedId: string;
1997
1962
  tagConfirmedId: string;
@@ -2015,9 +1980,6 @@ export interface components {
2015
1980
  startingDate: string;
2016
1981
  endingDate: string;
2017
1982
  location: string;
2018
- mainPictureUrl: string | null;
2019
- bannerUrl: string | null;
2020
- description: string | null;
2021
1983
  folderId: string | null;
2022
1984
  tagAssistedId: string;
2023
1985
  tagConfirmedId: string;
@@ -2052,18 +2014,12 @@ export interface components {
2052
2014
  endingDate: string;
2053
2015
  location: string;
2054
2016
  folderId: string | null;
2055
- mainPictureUrl: string | null;
2056
- bannerUrl: string | null;
2057
- description: string | null;
2058
2017
  subEvents?: {
2059
2018
  name: string;
2060
2019
  date: string;
2061
2020
  startingDate: string;
2062
2021
  endingDate: string;
2063
2022
  location: string;
2064
- mainPictureUrl: string | null;
2065
- bannerUrl: string | null;
2066
- description: string | null;
2067
2023
  }[];
2068
2024
  tagsId: string[];
2069
2025
  eventTickets: {
@@ -2079,9 +2035,6 @@ export interface components {
2079
2035
  startingDate: string;
2080
2036
  endingDate: string;
2081
2037
  location: string;
2082
- mainPictureUrl: string | null;
2083
- bannerUrl: string | null;
2084
- description: string | null;
2085
2038
  folderId: string | null;
2086
2039
  tagAssistedId: string;
2087
2040
  tagConfirmedId: string;
@@ -2090,18 +2043,6 @@ export interface components {
2090
2043
  created_at: string;
2091
2044
  updated_at: string;
2092
2045
  };
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
2046
  GetAllEventsResponseDto: {
2106
2047
  folders: {
2107
2048
  id: string;
@@ -2116,9 +2057,6 @@ export interface components {
2116
2057
  startingDate: string;
2117
2058
  endingDate: string;
2118
2059
  location: string;
2119
- mainPictureUrl: string | null;
2120
- bannerUrl: string | null;
2121
- description: string | null;
2122
2060
  folderId: string | null;
2123
2061
  tagAssistedId: string;
2124
2062
  tagConfirmedId: string;
@@ -2133,9 +2071,6 @@ export interface components {
2133
2071
  startingDate: string;
2134
2072
  endingDate: string;
2135
2073
  location: string;
2136
- mainPictureUrl: string | null;
2137
- bannerUrl: string | null;
2138
- description: string | null;
2139
2074
  folderId: string | null;
2140
2075
  tagAssistedId: string;
2141
2076
  tagConfirmedId: string;
@@ -2151,9 +2086,6 @@ export interface components {
2151
2086
  startingDate: string;
2152
2087
  endingDate: string;
2153
2088
  location: string;
2154
- mainPictureUrl: string | null;
2155
- bannerUrl: string | null;
2156
- description: string | null;
2157
2089
  folderId: string | null;
2158
2090
  tagAssistedId: string;
2159
2091
  tagConfirmedId: string;
@@ -2188,9 +2120,6 @@ export interface components {
2188
2120
  startingDate: string;
2189
2121
  endingDate: string;
2190
2122
  location: string;
2191
- mainPictureUrl: string | null;
2192
- bannerUrl: string | null;
2193
- description: string | null;
2194
2123
  folderId: string | null;
2195
2124
  tagAssistedId: string;
2196
2125
  tagConfirmedId: string;
@@ -2205,9 +2134,6 @@ export interface components {
2205
2134
  startingDate: string;
2206
2135
  endingDate: string;
2207
2136
  location: string;
2208
- mainPictureUrl: string | null;
2209
- bannerUrl: string | null;
2210
- description: string | null;
2211
2137
  folderId: string | null;
2212
2138
  tagAssistedId: string;
2213
2139
  tagConfirmedId: string;
@@ -2223,9 +2149,6 @@ export interface components {
2223
2149
  startingDate: string;
2224
2150
  endingDate: string;
2225
2151
  location: string;
2226
- mainPictureUrl: string | null;
2227
- bannerUrl: string | null;
2228
- description: string | null;
2229
2152
  folderId: string | null;
2230
2153
  tagAssistedId: string;
2231
2154
  tagConfirmedId: string;
@@ -2261,9 +2184,6 @@ export interface components {
2261
2184
  startingDate: string;
2262
2185
  endingDate: string;
2263
2186
  location: string;
2264
- mainPictureUrl: string | null;
2265
- bannerUrl: string | null;
2266
- description: string | null;
2267
2187
  folderId: string | null;
2268
2188
  tagAssistedId: string;
2269
2189
  tagConfirmedId: string;
@@ -2286,9 +2206,6 @@ export interface components {
2286
2206
  startingDate: string;
2287
2207
  endingDate: string;
2288
2208
  location: string;
2289
- mainPictureUrl: string | null;
2290
- bannerUrl: string | null;
2291
- description: string | null;
2292
2209
  folderId: string | null;
2293
2210
  tagAssistedId: string;
2294
2211
  tagConfirmedId: string;
@@ -2303,9 +2220,6 @@ export interface components {
2303
2220
  startingDate: string;
2304
2221
  endingDate: string;
2305
2222
  location: string;
2306
- mainPictureUrl: string | null;
2307
- bannerUrl: string | null;
2308
- description: string | null;
2309
2223
  folderId: string | null;
2310
2224
  tagAssistedId: string;
2311
2225
  tagConfirmedId: string;
@@ -2321,9 +2235,6 @@ export interface components {
2321
2235
  startingDate: string;
2322
2236
  endingDate: string;
2323
2237
  location: string;
2324
- mainPictureUrl: string | null;
2325
- bannerUrl: string | null;
2326
- description: string | null;
2327
2238
  folderId: string | null;
2328
2239
  tagAssistedId: string;
2329
2240
  tagConfirmedId: string;
@@ -2408,9 +2319,6 @@ export interface components {
2408
2319
  location: string;
2409
2320
  startingDate: string;
2410
2321
  endingDate: string;
2411
- bannerUrl: string | null;
2412
- mainPictureUrl: string | null;
2413
- description: string | null;
2414
2322
  tagsId: string[];
2415
2323
  subEvents: {
2416
2324
  name: string;
@@ -2418,9 +2326,6 @@ export interface components {
2418
2326
  date: string;
2419
2327
  startingDate: string;
2420
2328
  endingDate: string;
2421
- bannerUrl: string | null;
2422
- mainPictureUrl: string | null;
2423
- description: string | null;
2424
2329
  id: string | "";
2425
2330
  }[];
2426
2331
  eventTickets: {
@@ -2436,9 +2341,6 @@ export interface components {
2436
2341
  startingDate: string;
2437
2342
  endingDate: string;
2438
2343
  location: string;
2439
- mainPictureUrl: string | null;
2440
- bannerUrl: string | null;
2441
- description: string | null;
2442
2344
  folderId: string | null;
2443
2345
  tagAssistedId: string;
2444
2346
  tagConfirmedId: string;
@@ -2476,9 +2378,6 @@ export interface components {
2476
2378
  startingDate: string;
2477
2379
  endingDate: string;
2478
2380
  location: string;
2479
- mainPictureUrl: string | null;
2480
- bannerUrl: string | null;
2481
- description: string | null;
2482
2381
  folderId: string | null;
2483
2382
  tagAssistedId: string;
2484
2383
  tagConfirmedId: string;
@@ -2791,15 +2690,6 @@ export interface components {
2791
2690
  type: "created";
2792
2691
  };
2793
2692
  };
2794
- UpdateImageProfileDto: {
2795
- image?: Record<string, never>;
2796
- };
2797
- UpdateImageProfileResponseDto: {
2798
- message: string;
2799
- };
2800
- DeleteImageProfileResponseDto: {
2801
- message: string;
2802
- };
2803
2693
  FindByIdProfileResponseDto: {
2804
2694
  id: string;
2805
2695
  shortId: number;
@@ -2916,6 +2806,15 @@ export interface components {
2916
2806
  };
2917
2807
  tags?: string[];
2918
2808
  };
2809
+ UpdateImageDto: {
2810
+ image?: Record<string, never>;
2811
+ };
2812
+ UpdateImageResponseDto: {
2813
+ message: string;
2814
+ };
2815
+ DeleteImageResponseDto: {
2816
+ message: string;
2817
+ };
2919
2818
  DownloadProfilesDto: {
2920
2819
  password: string;
2921
2820
  };
@@ -3046,9 +2945,6 @@ export interface components {
3046
2945
  startingDate: string;
3047
2946
  endingDate: string;
3048
2947
  location: string;
3049
- mainPictureUrl: string | null;
3050
- bannerUrl: string | null;
3051
- description: string | null;
3052
2948
  folderId: string | null;
3053
2949
  tagAssistedId: string;
3054
2950
  tagConfirmedId: string;
@@ -3089,9 +2985,6 @@ export interface components {
3089
2985
  startingDate: string;
3090
2986
  endingDate: string;
3091
2987
  location: string;
3092
- mainPictureUrl: string | null;
3093
- bannerUrl: string | null;
3094
- description: string | null;
3095
2988
  folderId: string | null;
3096
2989
  tagAssistedId: string;
3097
2990
  tagConfirmedId: string;
@@ -3149,9 +3042,6 @@ export interface components {
3149
3042
  startingDate: string;
3150
3043
  endingDate: string;
3151
3044
  location: string;
3152
- mainPictureUrl: string | null;
3153
- bannerUrl: string | null;
3154
- description: string | null;
3155
3045
  folderId: string | null;
3156
3046
  tagAssistedId: string;
3157
3047
  tagConfirmedId: string;
@@ -3304,9 +3194,6 @@ export interface components {
3304
3194
  startingDate: string;
3305
3195
  endingDate: string;
3306
3196
  location: string;
3307
- mainPictureUrl: string | null;
3308
- bannerUrl: string | null;
3309
- description: string | null;
3310
3197
  folderId: string | null;
3311
3198
  tagAssistedId: string;
3312
3199
  tagConfirmedId: string;
@@ -3419,9 +3306,6 @@ export interface components {
3419
3306
  startingDate: string;
3420
3307
  endingDate: string;
3421
3308
  location: string;
3422
- mainPictureUrl: string | null;
3423
- bannerUrl: string | null;
3424
- description: string | null;
3425
3309
  folderId: string | null;
3426
3310
  tagAssistedId: string;
3427
3311
  tagConfirmedId: string;
@@ -4701,148 +4585,11 @@ export interface operations {
4701
4585
  };
4702
4586
  };
4703
4587
  };
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: {
4588
+ EventController_findAll: {
4840
4589
  parameters: {
4841
4590
  query?: never;
4842
4591
  header?: never;
4843
- path: {
4844
- id: string;
4845
- };
4592
+ path?: never;
4846
4593
  cookie?: never;
4847
4594
  };
4848
4595
  requestBody?: never;
@@ -4852,7 +4599,7 @@ export interface operations {
4852
4599
  [name: string]: unknown;
4853
4600
  };
4854
4601
  content: {
4855
- "application/json": components["schemas"]["UpdateMainPictureEventResponseDto"];
4602
+ "application/json": components["schemas"]["GetAllEventsResponseDto"];
4856
4603
  };
4857
4604
  };
4858
4605
  404: {
@@ -4863,17 +4610,9 @@ export interface operations {
4863
4610
  "application/json": components["schemas"]["ErrorDto"];
4864
4611
  };
4865
4612
  };
4866
- 500: {
4867
- headers: {
4868
- [name: string]: unknown;
4869
- };
4870
- content: {
4871
- "application/json": components["schemas"]["ErrorDto"];
4872
- };
4873
- };
4874
4613
  };
4875
4614
  };
4876
- EventController_findAll: {
4615
+ EventController_getActive: {
4877
4616
  parameters: {
4878
4617
  query?: never;
4879
4618
  header?: never;
@@ -4887,20 +4626,12 @@ export interface operations {
4887
4626
  [name: string]: unknown;
4888
4627
  };
4889
4628
  content: {
4890
- "application/json": components["schemas"]["GetAllEventsResponseDto"];
4891
- };
4892
- };
4893
- 404: {
4894
- headers: {
4895
- [name: string]: unknown;
4896
- };
4897
- content: {
4898
- "application/json": components["schemas"]["ErrorDto"];
4629
+ "application/json": components["schemas"]["GetActiveEventsResponseDto"];
4899
4630
  };
4900
4631
  };
4901
4632
  };
4902
4633
  };
4903
- EventController_getActive: {
4634
+ EventController_getStatistics: {
4904
4635
  parameters: {
4905
4636
  query?: never;
4906
4637
  header?: never;
@@ -4913,9 +4644,7 @@ export interface operations {
4913
4644
  headers: {
4914
4645
  [name: string]: unknown;
4915
4646
  };
4916
- content: {
4917
- "application/json": components["schemas"]["GetActiveEventsResponseDto"];
4918
- };
4647
+ content?: never;
4919
4648
  };
4920
4649
  };
4921
4650
  };
@@ -5018,6 +4747,25 @@ export interface operations {
5018
4747
  };
5019
4748
  };
5020
4749
  };
4750
+ EventController_getStatisticsById: {
4751
+ parameters: {
4752
+ query?: never;
4753
+ header?: never;
4754
+ path: {
4755
+ id: string;
4756
+ };
4757
+ cookie?: never;
4758
+ };
4759
+ requestBody?: never;
4760
+ responses: {
4761
+ 200: {
4762
+ headers: {
4763
+ [name: string]: unknown;
4764
+ };
4765
+ content?: never;
4766
+ };
4767
+ };
4768
+ };
5021
4769
  EventController_toggleActive: {
5022
4770
  parameters: {
5023
4771
  query?: never;
@@ -5268,7 +5016,7 @@ export interface operations {
5268
5016
  };
5269
5017
  };
5270
5018
  };
5271
- ProfileController_updateImage: {
5019
+ ProfileController_findById: {
5272
5020
  parameters: {
5273
5021
  query?: never;
5274
5022
  header?: never;
@@ -5277,21 +5025,17 @@ export interface operations {
5277
5025
  };
5278
5026
  cookie?: never;
5279
5027
  };
5280
- requestBody: {
5281
- content: {
5282
- "multipart/form-data": components["schemas"]["UpdateImageProfileDto"];
5283
- };
5284
- };
5028
+ requestBody?: never;
5285
5029
  responses: {
5286
5030
  200: {
5287
5031
  headers: {
5288
5032
  [name: string]: unknown;
5289
5033
  };
5290
5034
  content: {
5291
- "application/json": components["schemas"]["UpdateImageProfileResponseDto"];
5035
+ "application/json": components["schemas"]["FindByIdProfileResponseDto"];
5292
5036
  };
5293
5037
  };
5294
- 409: {
5038
+ 404: {
5295
5039
  headers: {
5296
5040
  [name: string]: unknown;
5297
5041
  };
@@ -5299,15 +5043,28 @@ export interface operations {
5299
5043
  "application/json": components["schemas"]["ErrorDto"];
5300
5044
  };
5301
5045
  };
5302
- 422: {
5046
+ };
5047
+ };
5048
+ ProfileController_delete: {
5049
+ parameters: {
5050
+ query?: never;
5051
+ header?: never;
5052
+ path: {
5053
+ id: string;
5054
+ };
5055
+ cookie?: never;
5056
+ };
5057
+ requestBody?: never;
5058
+ responses: {
5059
+ 200: {
5303
5060
  headers: {
5304
5061
  [name: string]: unknown;
5305
5062
  };
5306
5063
  content: {
5307
- "application/json": components["schemas"]["ErrorDto"];
5064
+ "application/json": components["schemas"]["DeleteProfileResponseDto"];
5308
5065
  };
5309
5066
  };
5310
- 500: {
5067
+ 404: {
5311
5068
  headers: {
5312
5069
  [name: string]: unknown;
5313
5070
  };
@@ -5317,7 +5074,7 @@ export interface operations {
5317
5074
  };
5318
5075
  };
5319
5076
  };
5320
- ProfileController_deleteImage: {
5077
+ ProfileController_update: {
5321
5078
  parameters: {
5322
5079
  query?: never;
5323
5080
  header?: never;
@@ -5326,14 +5083,18 @@ export interface operations {
5326
5083
  };
5327
5084
  cookie?: never;
5328
5085
  };
5329
- requestBody?: never;
5086
+ requestBody: {
5087
+ content: {
5088
+ "application/json": components["schemas"]["UpdateProfileDto"];
5089
+ };
5090
+ };
5330
5091
  responses: {
5331
5092
  200: {
5332
5093
  headers: {
5333
5094
  [name: string]: unknown;
5334
5095
  };
5335
5096
  content: {
5336
- "application/json": components["schemas"]["DeleteImageProfileResponseDto"];
5097
+ "application/json": components["schemas"]["UpdateProfileDto"];
5337
5098
  };
5338
5099
  };
5339
5100
  404: {
@@ -5344,7 +5105,7 @@ export interface operations {
5344
5105
  "application/json": components["schemas"]["ErrorDto"];
5345
5106
  };
5346
5107
  };
5347
- 500: {
5108
+ 409: {
5348
5109
  headers: {
5349
5110
  [name: string]: unknown;
5350
5111
  };
@@ -5354,7 +5115,7 @@ export interface operations {
5354
5115
  };
5355
5116
  };
5356
5117
  };
5357
- ProfileController_findById: {
5118
+ ImageController_updateImage: {
5358
5119
  parameters: {
5359
5120
  query?: never;
5360
5121
  header?: never;
@@ -5363,17 +5124,21 @@ export interface operations {
5363
5124
  };
5364
5125
  cookie?: never;
5365
5126
  };
5366
- requestBody?: never;
5127
+ requestBody: {
5128
+ content: {
5129
+ "multipart/form-data": components["schemas"]["UpdateImageDto"];
5130
+ };
5131
+ };
5367
5132
  responses: {
5368
5133
  200: {
5369
5134
  headers: {
5370
5135
  [name: string]: unknown;
5371
5136
  };
5372
5137
  content: {
5373
- "application/json": components["schemas"]["FindByIdProfileResponseDto"];
5138
+ "application/json": components["schemas"]["UpdateImageResponseDto"];
5374
5139
  };
5375
5140
  };
5376
- 404: {
5141
+ 409: {
5377
5142
  headers: {
5378
5143
  [name: string]: unknown;
5379
5144
  };
@@ -5381,28 +5146,15 @@ export interface operations {
5381
5146
  "application/json": components["schemas"]["ErrorDto"];
5382
5147
  };
5383
5148
  };
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: {
5149
+ 422: {
5398
5150
  headers: {
5399
5151
  [name: string]: unknown;
5400
5152
  };
5401
5153
  content: {
5402
- "application/json": components["schemas"]["DeleteProfileResponseDto"];
5154
+ "application/json": components["schemas"]["ErrorDto"];
5403
5155
  };
5404
5156
  };
5405
- 404: {
5157
+ 500: {
5406
5158
  headers: {
5407
5159
  [name: string]: unknown;
5408
5160
  };
@@ -5412,7 +5164,7 @@ export interface operations {
5412
5164
  };
5413
5165
  };
5414
5166
  };
5415
- ProfileController_update: {
5167
+ ImageController_deleteImage: {
5416
5168
  parameters: {
5417
5169
  query?: never;
5418
5170
  header?: never;
@@ -5421,18 +5173,14 @@ export interface operations {
5421
5173
  };
5422
5174
  cookie?: never;
5423
5175
  };
5424
- requestBody: {
5425
- content: {
5426
- "application/json": components["schemas"]["UpdateProfileDto"];
5427
- };
5428
- };
5176
+ requestBody?: never;
5429
5177
  responses: {
5430
5178
  200: {
5431
5179
  headers: {
5432
5180
  [name: string]: unknown;
5433
5181
  };
5434
5182
  content: {
5435
- "application/json": components["schemas"]["UpdateProfileDto"];
5183
+ "application/json": components["schemas"]["DeleteImageResponseDto"];
5436
5184
  };
5437
5185
  };
5438
5186
  404: {
@@ -5443,7 +5191,7 @@ export interface operations {
5443
5191
  "application/json": components["schemas"]["ErrorDto"];
5444
5192
  };
5445
5193
  };
5446
- 409: {
5194
+ 500: {
5447
5195
  headers: {
5448
5196
  [name: string]: unknown;
5449
5197
  };