expo-backend-types 0.48.0-EXPO-339-Testing-y-bugfixing.1 → 0.49.0-EXPO-345-ExpoBackend-Agregar-los-nuevos-requerimientos-a-las-rutas.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.
- package/dist/src/event/dto/create-event.dto.d.ts +72 -23
- package/dist/src/event/dto/create-event.dto.js +7 -1
- package/dist/src/event/dto/delete-banner-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-banner-event.dto.js +12 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-main-picture-event.dto.d.ts +18 -0
- package/dist/src/event/dto/delete-main-picture-event.dto.js +12 -0
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -33
- package/dist/src/event/dto/event-tickets.dto.js +8 -18
- package/dist/src/event/dto/event.dto.d.ts +9 -0
- package/dist/src/event/dto/event.dto.js +13 -0
- package/dist/src/event/dto/get-active-events.dto.d.ts +33 -23
- package/dist/src/event/dto/get-all-event.dto.d.ts +272 -48
- package/dist/src/event/dto/get-all-event.dto.js +2 -2
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +99 -23
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
- package/dist/src/event/dto/update-banner-event.dto.d.ts +33 -0
- package/dist/src/event/dto/update-banner-event.dto.js +18 -0
- package/dist/src/event/dto/update-event.dto.d.ts +75 -46
- package/dist/src/event/dto/update-event.dto.js +8 -2
- package/dist/src/event/dto/update-main-picture-event.dto.d.ts +33 -0
- package/dist/src/event/dto/update-main-picture-event.dto.js +18 -0
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
- package/dist/src/i18n/es.d.ts +7 -1
- package/dist/src/i18n/es.js +7 -3
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
- package/dist/src/profile/dto/delete-image-profile.dto.d.ts +18 -0
- package/dist/src/profile/dto/delete-image-profile.dto.js +12 -0
- package/dist/src/profile/dto/update-image-profile.dto.d.ts +33 -0
- package/dist/src/profile/dto/update-image-profile.dto.js +18 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +214 -1
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +10 -7
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +383 -63
- package/package.json +1 -2
package/dist/types/schema.d.ts
CHANGED
@@ -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;
|
@@ -719,23 +783,23 @@ export interface paths {
|
|
719
783
|
patch?: never;
|
720
784
|
trace?: never;
|
721
785
|
};
|
722
|
-
"/profile/{id}": {
|
786
|
+
"/profile/update-image/{id}": {
|
723
787
|
parameters: {
|
724
788
|
query?: never;
|
725
789
|
header?: never;
|
726
790
|
path?: never;
|
727
791
|
cookie?: never;
|
728
792
|
};
|
729
|
-
get
|
793
|
+
get?: never;
|
730
794
|
put?: never;
|
731
795
|
post?: never;
|
732
|
-
delete
|
796
|
+
delete?: never;
|
733
797
|
options?: never;
|
734
798
|
head?: never;
|
735
|
-
patch: operations["
|
799
|
+
patch: operations["ProfileController_updateImage"];
|
736
800
|
trace?: never;
|
737
801
|
};
|
738
|
-
"/image/
|
802
|
+
"/profile/delete-image/{id}": {
|
739
803
|
parameters: {
|
740
804
|
query?: never;
|
741
805
|
header?: never;
|
@@ -745,26 +809,26 @@ export interface paths {
|
|
745
809
|
get?: never;
|
746
810
|
put?: never;
|
747
811
|
post?: never;
|
748
|
-
delete
|
812
|
+
delete: operations["ProfileController_deleteImage"];
|
749
813
|
options?: never;
|
750
814
|
head?: never;
|
751
|
-
patch
|
815
|
+
patch?: never;
|
752
816
|
trace?: never;
|
753
817
|
};
|
754
|
-
"/
|
818
|
+
"/profile/{id}": {
|
755
819
|
parameters: {
|
756
820
|
query?: never;
|
757
821
|
header?: never;
|
758
822
|
path?: never;
|
759
823
|
cookie?: never;
|
760
824
|
};
|
761
|
-
get
|
825
|
+
get: operations["ProfileController_findById"];
|
762
826
|
put?: never;
|
763
827
|
post?: never;
|
764
|
-
delete: operations["
|
828
|
+
delete: operations["ProfileController_delete"];
|
765
829
|
options?: never;
|
766
830
|
head?: never;
|
767
|
-
patch
|
831
|
+
patch: operations["ProfileController_update"];
|
768
832
|
trace?: never;
|
769
833
|
};
|
770
834
|
"/csv/download-profiles": {
|
@@ -1925,6 +1989,9 @@ export interface components {
|
|
1925
1989
|
startingDate: string;
|
1926
1990
|
endingDate: string;
|
1927
1991
|
location: string;
|
1992
|
+
mainPictureUrl: string | null;
|
1993
|
+
bannerUrl: string | null;
|
1994
|
+
description: string | null;
|
1928
1995
|
folderId: string | null;
|
1929
1996
|
tagAssistedId: string;
|
1930
1997
|
tagConfirmedId: string;
|
@@ -1948,6 +2015,9 @@ export interface components {
|
|
1948
2015
|
startingDate: string;
|
1949
2016
|
endingDate: string;
|
1950
2017
|
location: string;
|
2018
|
+
mainPictureUrl: string | null;
|
2019
|
+
bannerUrl: string | null;
|
2020
|
+
description: string | null;
|
1951
2021
|
folderId: string | null;
|
1952
2022
|
tagAssistedId: string;
|
1953
2023
|
tagConfirmedId: string;
|
@@ -1982,12 +2052,18 @@ export interface components {
|
|
1982
2052
|
endingDate: string;
|
1983
2053
|
location: string;
|
1984
2054
|
folderId: string | null;
|
2055
|
+
mainPictureUrl: string | null;
|
2056
|
+
bannerUrl: string | null;
|
2057
|
+
description: string | null;
|
1985
2058
|
subEvents?: {
|
1986
2059
|
name: string;
|
1987
2060
|
date: string;
|
1988
2061
|
startingDate: string;
|
1989
2062
|
endingDate: string;
|
1990
2063
|
location: string;
|
2064
|
+
mainPictureUrl: string | null;
|
2065
|
+
bannerUrl: string | null;
|
2066
|
+
description: string | null;
|
1991
2067
|
}[];
|
1992
2068
|
tagsId: string[];
|
1993
2069
|
eventTickets: {
|
@@ -2003,6 +2079,9 @@ export interface components {
|
|
2003
2079
|
startingDate: string;
|
2004
2080
|
endingDate: string;
|
2005
2081
|
location: string;
|
2082
|
+
mainPictureUrl: string | null;
|
2083
|
+
bannerUrl: string | null;
|
2084
|
+
description: string | null;
|
2006
2085
|
folderId: string | null;
|
2007
2086
|
tagAssistedId: string;
|
2008
2087
|
tagConfirmedId: string;
|
@@ -2011,6 +2090,18 @@ export interface components {
|
|
2011
2090
|
created_at: string;
|
2012
2091
|
updated_at: string;
|
2013
2092
|
};
|
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
|
+
};
|
2014
2105
|
GetAllEventsResponseDto: {
|
2015
2106
|
folders: {
|
2016
2107
|
id: string;
|
@@ -2025,6 +2116,9 @@ export interface components {
|
|
2025
2116
|
startingDate: string;
|
2026
2117
|
endingDate: string;
|
2027
2118
|
location: string;
|
2119
|
+
mainPictureUrl: string | null;
|
2120
|
+
bannerUrl: string | null;
|
2121
|
+
description: string | null;
|
2028
2122
|
folderId: string | null;
|
2029
2123
|
tagAssistedId: string;
|
2030
2124
|
tagConfirmedId: string;
|
@@ -2039,6 +2133,9 @@ export interface components {
|
|
2039
2133
|
startingDate: string;
|
2040
2134
|
endingDate: string;
|
2041
2135
|
location: string;
|
2136
|
+
mainPictureUrl: string | null;
|
2137
|
+
bannerUrl: string | null;
|
2138
|
+
description: string | null;
|
2042
2139
|
folderId: string | null;
|
2043
2140
|
tagAssistedId: string;
|
2044
2141
|
tagConfirmedId: string;
|
@@ -2054,6 +2151,9 @@ export interface components {
|
|
2054
2151
|
startingDate: string;
|
2055
2152
|
endingDate: string;
|
2056
2153
|
location: string;
|
2154
|
+
mainPictureUrl: string | null;
|
2155
|
+
bannerUrl: string | null;
|
2156
|
+
description: string | null;
|
2057
2157
|
folderId: string | null;
|
2058
2158
|
tagAssistedId: string;
|
2059
2159
|
tagConfirmedId: string;
|
@@ -2088,6 +2188,9 @@ export interface components {
|
|
2088
2188
|
startingDate: string;
|
2089
2189
|
endingDate: string;
|
2090
2190
|
location: string;
|
2191
|
+
mainPictureUrl: string | null;
|
2192
|
+
bannerUrl: string | null;
|
2193
|
+
description: string | null;
|
2091
2194
|
folderId: string | null;
|
2092
2195
|
tagAssistedId: string;
|
2093
2196
|
tagConfirmedId: string;
|
@@ -2102,6 +2205,9 @@ export interface components {
|
|
2102
2205
|
startingDate: string;
|
2103
2206
|
endingDate: string;
|
2104
2207
|
location: string;
|
2208
|
+
mainPictureUrl: string | null;
|
2209
|
+
bannerUrl: string | null;
|
2210
|
+
description: string | null;
|
2105
2211
|
folderId: string | null;
|
2106
2212
|
tagAssistedId: string;
|
2107
2213
|
tagConfirmedId: string;
|
@@ -2117,6 +2223,9 @@ export interface components {
|
|
2117
2223
|
startingDate: string;
|
2118
2224
|
endingDate: string;
|
2119
2225
|
location: string;
|
2226
|
+
mainPictureUrl: string | null;
|
2227
|
+
bannerUrl: string | null;
|
2228
|
+
description: string | null;
|
2120
2229
|
folderId: string | null;
|
2121
2230
|
tagAssistedId: string;
|
2122
2231
|
tagConfirmedId: string;
|
@@ -2152,6 +2261,9 @@ export interface components {
|
|
2152
2261
|
startingDate: string;
|
2153
2262
|
endingDate: string;
|
2154
2263
|
location: string;
|
2264
|
+
mainPictureUrl: string | null;
|
2265
|
+
bannerUrl: string | null;
|
2266
|
+
description: string | null;
|
2155
2267
|
folderId: string | null;
|
2156
2268
|
tagAssistedId: string;
|
2157
2269
|
tagConfirmedId: string;
|
@@ -2174,6 +2286,9 @@ export interface components {
|
|
2174
2286
|
startingDate: string;
|
2175
2287
|
endingDate: string;
|
2176
2288
|
location: string;
|
2289
|
+
mainPictureUrl: string | null;
|
2290
|
+
bannerUrl: string | null;
|
2291
|
+
description: string | null;
|
2177
2292
|
folderId: string | null;
|
2178
2293
|
tagAssistedId: string;
|
2179
2294
|
tagConfirmedId: string;
|
@@ -2188,6 +2303,9 @@ export interface components {
|
|
2188
2303
|
startingDate: string;
|
2189
2304
|
endingDate: string;
|
2190
2305
|
location: string;
|
2306
|
+
mainPictureUrl: string | null;
|
2307
|
+
bannerUrl: string | null;
|
2308
|
+
description: string | null;
|
2191
2309
|
folderId: string | null;
|
2192
2310
|
tagAssistedId: string;
|
2193
2311
|
tagConfirmedId: string;
|
@@ -2203,6 +2321,9 @@ export interface components {
|
|
2203
2321
|
startingDate: string;
|
2204
2322
|
endingDate: string;
|
2205
2323
|
location: string;
|
2324
|
+
mainPictureUrl: string | null;
|
2325
|
+
bannerUrl: string | null;
|
2326
|
+
description: string | null;
|
2206
2327
|
folderId: string | null;
|
2207
2328
|
tagAssistedId: string;
|
2208
2329
|
tagConfirmedId: string;
|
@@ -2287,6 +2408,9 @@ export interface components {
|
|
2287
2408
|
location: string;
|
2288
2409
|
startingDate: string;
|
2289
2410
|
endingDate: string;
|
2411
|
+
bannerUrl: string | null;
|
2412
|
+
mainPictureUrl: string | null;
|
2413
|
+
description: string | null;
|
2290
2414
|
tagsId: string[];
|
2291
2415
|
subEvents: {
|
2292
2416
|
name: string;
|
@@ -2294,6 +2418,9 @@ export interface components {
|
|
2294
2418
|
date: string;
|
2295
2419
|
startingDate: string;
|
2296
2420
|
endingDate: string;
|
2421
|
+
bannerUrl: string | null;
|
2422
|
+
mainPictureUrl: string | null;
|
2423
|
+
description: string | null;
|
2297
2424
|
id: string | "";
|
2298
2425
|
}[];
|
2299
2426
|
eventTickets: {
|
@@ -2309,6 +2436,9 @@ export interface components {
|
|
2309
2436
|
startingDate: string;
|
2310
2437
|
endingDate: string;
|
2311
2438
|
location: string;
|
2439
|
+
mainPictureUrl: string | null;
|
2440
|
+
bannerUrl: string | null;
|
2441
|
+
description: string | null;
|
2312
2442
|
folderId: string | null;
|
2313
2443
|
tagAssistedId: string;
|
2314
2444
|
tagConfirmedId: string;
|
@@ -2346,6 +2476,9 @@ export interface components {
|
|
2346
2476
|
startingDate: string;
|
2347
2477
|
endingDate: string;
|
2348
2478
|
location: string;
|
2479
|
+
mainPictureUrl: string | null;
|
2480
|
+
bannerUrl: string | null;
|
2481
|
+
description: string | null;
|
2349
2482
|
folderId: string | null;
|
2350
2483
|
tagAssistedId: string;
|
2351
2484
|
tagConfirmedId: string;
|
@@ -2658,6 +2791,15 @@ export interface components {
|
|
2658
2791
|
type: "created";
|
2659
2792
|
};
|
2660
2793
|
};
|
2794
|
+
UpdateImageProfileDto: {
|
2795
|
+
image?: Record<string, never>;
|
2796
|
+
};
|
2797
|
+
UpdateImageProfileResponseDto: {
|
2798
|
+
message: string;
|
2799
|
+
};
|
2800
|
+
DeleteImageProfileResponseDto: {
|
2801
|
+
message: string;
|
2802
|
+
};
|
2661
2803
|
FindByIdProfileResponseDto: {
|
2662
2804
|
id: string;
|
2663
2805
|
shortId: number;
|
@@ -2774,15 +2916,6 @@ export interface components {
|
|
2774
2916
|
};
|
2775
2917
|
tags?: string[];
|
2776
2918
|
};
|
2777
|
-
UpdateImageDto: {
|
2778
|
-
image?: Record<string, never>;
|
2779
|
-
};
|
2780
|
-
UpdateImageResponseDto: {
|
2781
|
-
message: string;
|
2782
|
-
};
|
2783
|
-
DeleteImageResponseDto: {
|
2784
|
-
message: string;
|
2785
|
-
};
|
2786
2919
|
DownloadProfilesDto: {
|
2787
2920
|
password: string;
|
2788
2921
|
};
|
@@ -2913,6 +3046,9 @@ export interface components {
|
|
2913
3046
|
startingDate: string;
|
2914
3047
|
endingDate: string;
|
2915
3048
|
location: string;
|
3049
|
+
mainPictureUrl: string | null;
|
3050
|
+
bannerUrl: string | null;
|
3051
|
+
description: string | null;
|
2916
3052
|
folderId: string | null;
|
2917
3053
|
tagAssistedId: string;
|
2918
3054
|
tagConfirmedId: string;
|
@@ -2953,6 +3089,9 @@ export interface components {
|
|
2953
3089
|
startingDate: string;
|
2954
3090
|
endingDate: string;
|
2955
3091
|
location: string;
|
3092
|
+
mainPictureUrl: string | null;
|
3093
|
+
bannerUrl: string | null;
|
3094
|
+
description: string | null;
|
2956
3095
|
folderId: string | null;
|
2957
3096
|
tagAssistedId: string;
|
2958
3097
|
tagConfirmedId: string;
|
@@ -3010,6 +3149,9 @@ export interface components {
|
|
3010
3149
|
startingDate: string;
|
3011
3150
|
endingDate: string;
|
3012
3151
|
location: string;
|
3152
|
+
mainPictureUrl: string | null;
|
3153
|
+
bannerUrl: string | null;
|
3154
|
+
description: string | null;
|
3013
3155
|
folderId: string | null;
|
3014
3156
|
tagAssistedId: string;
|
3015
3157
|
tagConfirmedId: string;
|
@@ -3162,6 +3304,9 @@ export interface components {
|
|
3162
3304
|
startingDate: string;
|
3163
3305
|
endingDate: string;
|
3164
3306
|
location: string;
|
3307
|
+
mainPictureUrl: string | null;
|
3308
|
+
bannerUrl: string | null;
|
3309
|
+
description: string | null;
|
3165
3310
|
folderId: string | null;
|
3166
3311
|
tagAssistedId: string;
|
3167
3312
|
tagConfirmedId: string;
|
@@ -3274,6 +3419,9 @@ export interface components {
|
|
3274
3419
|
startingDate: string;
|
3275
3420
|
endingDate: string;
|
3276
3421
|
location: string;
|
3422
|
+
mainPictureUrl: string | null;
|
3423
|
+
bannerUrl: string | null;
|
3424
|
+
description: string | null;
|
3277
3425
|
folderId: string | null;
|
3278
3426
|
tagAssistedId: string;
|
3279
3427
|
tagConfirmedId: string;
|
@@ -4553,6 +4701,178 @@ export interface operations {
|
|
4553
4701
|
};
|
4554
4702
|
};
|
4555
4703
|
};
|
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
|
+
};
|
4556
4876
|
EventController_findAll: {
|
4557
4877
|
parameters: {
|
4558
4878
|
query?: never;
|
@@ -4948,7 +5268,7 @@ export interface operations {
|
|
4948
5268
|
};
|
4949
5269
|
};
|
4950
5270
|
};
|
4951
|
-
|
5271
|
+
ProfileController_updateImage: {
|
4952
5272
|
parameters: {
|
4953
5273
|
query?: never;
|
4954
5274
|
header?: never;
|
@@ -4957,17 +5277,21 @@ export interface operations {
|
|
4957
5277
|
};
|
4958
5278
|
cookie?: never;
|
4959
5279
|
};
|
4960
|
-
requestBody
|
5280
|
+
requestBody: {
|
5281
|
+
content: {
|
5282
|
+
"multipart/form-data": components["schemas"]["UpdateImageProfileDto"];
|
5283
|
+
};
|
5284
|
+
};
|
4961
5285
|
responses: {
|
4962
5286
|
200: {
|
4963
5287
|
headers: {
|
4964
5288
|
[name: string]: unknown;
|
4965
5289
|
};
|
4966
5290
|
content: {
|
4967
|
-
"application/json": components["schemas"]["
|
5291
|
+
"application/json": components["schemas"]["UpdateImageProfileResponseDto"];
|
4968
5292
|
};
|
4969
5293
|
};
|
4970
|
-
|
5294
|
+
409: {
|
4971
5295
|
headers: {
|
4972
5296
|
[name: string]: unknown;
|
4973
5297
|
};
|
@@ -4975,28 +5299,15 @@ export interface operations {
|
|
4975
5299
|
"application/json": components["schemas"]["ErrorDto"];
|
4976
5300
|
};
|
4977
5301
|
};
|
4978
|
-
|
4979
|
-
};
|
4980
|
-
ProfileController_delete: {
|
4981
|
-
parameters: {
|
4982
|
-
query?: never;
|
4983
|
-
header?: never;
|
4984
|
-
path: {
|
4985
|
-
id: string;
|
4986
|
-
};
|
4987
|
-
cookie?: never;
|
4988
|
-
};
|
4989
|
-
requestBody?: never;
|
4990
|
-
responses: {
|
4991
|
-
200: {
|
5302
|
+
422: {
|
4992
5303
|
headers: {
|
4993
5304
|
[name: string]: unknown;
|
4994
5305
|
};
|
4995
5306
|
content: {
|
4996
|
-
"application/json": components["schemas"]["
|
5307
|
+
"application/json": components["schemas"]["ErrorDto"];
|
4997
5308
|
};
|
4998
5309
|
};
|
4999
|
-
|
5310
|
+
500: {
|
5000
5311
|
headers: {
|
5001
5312
|
[name: string]: unknown;
|
5002
5313
|
};
|
@@ -5006,7 +5317,7 @@ export interface operations {
|
|
5006
5317
|
};
|
5007
5318
|
};
|
5008
5319
|
};
|
5009
|
-
|
5320
|
+
ProfileController_deleteImage: {
|
5010
5321
|
parameters: {
|
5011
5322
|
query?: never;
|
5012
5323
|
header?: never;
|
@@ -5015,18 +5326,14 @@ export interface operations {
|
|
5015
5326
|
};
|
5016
5327
|
cookie?: never;
|
5017
5328
|
};
|
5018
|
-
requestBody
|
5019
|
-
content: {
|
5020
|
-
"application/json": components["schemas"]["UpdateProfileDto"];
|
5021
|
-
};
|
5022
|
-
};
|
5329
|
+
requestBody?: never;
|
5023
5330
|
responses: {
|
5024
5331
|
200: {
|
5025
5332
|
headers: {
|
5026
5333
|
[name: string]: unknown;
|
5027
5334
|
};
|
5028
5335
|
content: {
|
5029
|
-
"application/json": components["schemas"]["
|
5336
|
+
"application/json": components["schemas"]["DeleteImageProfileResponseDto"];
|
5030
5337
|
};
|
5031
5338
|
};
|
5032
5339
|
404: {
|
@@ -5037,7 +5344,7 @@ export interface operations {
|
|
5037
5344
|
"application/json": components["schemas"]["ErrorDto"];
|
5038
5345
|
};
|
5039
5346
|
};
|
5040
|
-
|
5347
|
+
500: {
|
5041
5348
|
headers: {
|
5042
5349
|
[name: string]: unknown;
|
5043
5350
|
};
|
@@ -5047,7 +5354,7 @@ export interface operations {
|
|
5047
5354
|
};
|
5048
5355
|
};
|
5049
5356
|
};
|
5050
|
-
|
5357
|
+
ProfileController_findById: {
|
5051
5358
|
parameters: {
|
5052
5359
|
query?: never;
|
5053
5360
|
header?: never;
|
@@ -5056,21 +5363,17 @@ export interface operations {
|
|
5056
5363
|
};
|
5057
5364
|
cookie?: never;
|
5058
5365
|
};
|
5059
|
-
requestBody
|
5060
|
-
content: {
|
5061
|
-
"multipart/form-data": components["schemas"]["UpdateImageDto"];
|
5062
|
-
};
|
5063
|
-
};
|
5366
|
+
requestBody?: never;
|
5064
5367
|
responses: {
|
5065
5368
|
200: {
|
5066
5369
|
headers: {
|
5067
5370
|
[name: string]: unknown;
|
5068
5371
|
};
|
5069
5372
|
content: {
|
5070
|
-
"application/json": components["schemas"]["
|
5373
|
+
"application/json": components["schemas"]["FindByIdProfileResponseDto"];
|
5071
5374
|
};
|
5072
5375
|
};
|
5073
|
-
|
5376
|
+
404: {
|
5074
5377
|
headers: {
|
5075
5378
|
[name: string]: unknown;
|
5076
5379
|
};
|
@@ -5078,15 +5381,28 @@ export interface operations {
|
|
5078
5381
|
"application/json": components["schemas"]["ErrorDto"];
|
5079
5382
|
};
|
5080
5383
|
};
|
5081
|
-
|
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: {
|
5082
5398
|
headers: {
|
5083
5399
|
[name: string]: unknown;
|
5084
5400
|
};
|
5085
5401
|
content: {
|
5086
|
-
"application/json": components["schemas"]["
|
5402
|
+
"application/json": components["schemas"]["DeleteProfileResponseDto"];
|
5087
5403
|
};
|
5088
5404
|
};
|
5089
|
-
|
5405
|
+
404: {
|
5090
5406
|
headers: {
|
5091
5407
|
[name: string]: unknown;
|
5092
5408
|
};
|
@@ -5096,7 +5412,7 @@ export interface operations {
|
|
5096
5412
|
};
|
5097
5413
|
};
|
5098
5414
|
};
|
5099
|
-
|
5415
|
+
ProfileController_update: {
|
5100
5416
|
parameters: {
|
5101
5417
|
query?: never;
|
5102
5418
|
header?: never;
|
@@ -5105,14 +5421,18 @@ export interface operations {
|
|
5105
5421
|
};
|
5106
5422
|
cookie?: never;
|
5107
5423
|
};
|
5108
|
-
requestBody
|
5424
|
+
requestBody: {
|
5425
|
+
content: {
|
5426
|
+
"application/json": components["schemas"]["UpdateProfileDto"];
|
5427
|
+
};
|
5428
|
+
};
|
5109
5429
|
responses: {
|
5110
5430
|
200: {
|
5111
5431
|
headers: {
|
5112
5432
|
[name: string]: unknown;
|
5113
5433
|
};
|
5114
5434
|
content: {
|
5115
|
-
"application/json": components["schemas"]["
|
5435
|
+
"application/json": components["schemas"]["UpdateProfileDto"];
|
5116
5436
|
};
|
5117
5437
|
};
|
5118
5438
|
404: {
|
@@ -5123,7 +5443,7 @@ export interface operations {
|
|
5123
5443
|
"application/json": components["schemas"]["ErrorDto"];
|
5124
5444
|
};
|
5125
5445
|
};
|
5126
|
-
|
5446
|
+
409: {
|
5127
5447
|
headers: {
|
5128
5448
|
[name: string]: unknown;
|
5129
5449
|
};
|