expo-backend-types 0.49.0-EXPO-350-ExpoBackend-Estadisticas-de-evento.10 → 0.49.0-EXPO-343-Quique-Wolff.3
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 +140 -119
- package/dist/src/event/dto/update-event.dto.js +10 -3
- 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 +8 -8
- package/dist/src/i18n/es.js +8 -10
- 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 +9 -6
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +358 -162
- package/package.json +1 -2
- package/dist/src/event/dto/get-all-statistics.dto.d.ts +0 -364
- package/dist/src/event/dto/get-all-statistics.dto.js +0 -40
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +0 -264
- package/dist/src/event/dto/get-statistics-by-id-event.dto.js +0 -35
package/dist/types/schema.d.ts
CHANGED
@@ -527,78 +527,94 @@ export interface paths {
|
|
527
527
|
patch?: never;
|
528
528
|
trace?: never;
|
529
529
|
};
|
530
|
-
"/event/
|
530
|
+
"/event/update-banner/{id}": {
|
531
531
|
parameters: {
|
532
532
|
query?: never;
|
533
533
|
header?: never;
|
534
534
|
path?: never;
|
535
535
|
cookie?: never;
|
536
536
|
};
|
537
|
-
get
|
537
|
+
get?: never;
|
538
538
|
put?: never;
|
539
539
|
post?: never;
|
540
540
|
delete?: never;
|
541
541
|
options?: never;
|
542
542
|
head?: never;
|
543
|
-
patch
|
543
|
+
patch: operations["EventController_updateBanner"];
|
544
544
|
trace?: never;
|
545
545
|
};
|
546
|
-
"/event/
|
546
|
+
"/event/delete-banner/{id}": {
|
547
547
|
parameters: {
|
548
548
|
query?: never;
|
549
549
|
header?: never;
|
550
550
|
path?: never;
|
551
551
|
cookie?: never;
|
552
552
|
};
|
553
|
-
get
|
553
|
+
get?: never;
|
554
554
|
put?: never;
|
555
555
|
post?: never;
|
556
|
-
delete
|
556
|
+
delete: operations["EventController_deleteBanner"];
|
557
557
|
options?: never;
|
558
558
|
head?: never;
|
559
559
|
patch?: never;
|
560
560
|
trace?: never;
|
561
561
|
};
|
562
|
-
"/event/
|
562
|
+
"/event/update-main-picture/{id}": {
|
563
563
|
parameters: {
|
564
564
|
query?: never;
|
565
565
|
header?: never;
|
566
566
|
path?: never;
|
567
567
|
cookie?: never;
|
568
568
|
};
|
569
|
-
get
|
569
|
+
get?: never;
|
570
570
|
put?: never;
|
571
571
|
post?: never;
|
572
572
|
delete?: never;
|
573
573
|
options?: never;
|
574
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;
|
575
591
|
patch?: never;
|
576
592
|
trace?: never;
|
577
593
|
};
|
578
|
-
"/event/
|
594
|
+
"/event/all": {
|
579
595
|
parameters: {
|
580
596
|
query?: never;
|
581
597
|
header?: never;
|
582
598
|
path?: never;
|
583
599
|
cookie?: never;
|
584
600
|
};
|
585
|
-
get: operations["
|
601
|
+
get: operations["EventController_findAll"];
|
586
602
|
put?: never;
|
587
603
|
post?: never;
|
588
|
-
delete
|
604
|
+
delete?: never;
|
589
605
|
options?: never;
|
590
606
|
head?: never;
|
591
|
-
patch
|
607
|
+
patch?: never;
|
592
608
|
trace?: never;
|
593
609
|
};
|
594
|
-
"/event/
|
610
|
+
"/event/find-active": {
|
595
611
|
parameters: {
|
596
612
|
query?: never;
|
597
613
|
header?: never;
|
598
614
|
path?: never;
|
599
615
|
cookie?: never;
|
600
616
|
};
|
601
|
-
get: operations["
|
617
|
+
get: operations["EventController_getActive"];
|
602
618
|
put?: never;
|
603
619
|
post?: never;
|
604
620
|
delete?: never;
|
@@ -607,6 +623,22 @@ export interface paths {
|
|
607
623
|
patch?: never;
|
608
624
|
trace?: never;
|
609
625
|
};
|
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
|
+
};
|
610
642
|
"/event/toggle-active/{id}": {
|
611
643
|
parameters: {
|
612
644
|
query?: never;
|
@@ -751,23 +783,23 @@ export interface paths {
|
|
751
783
|
patch?: never;
|
752
784
|
trace?: never;
|
753
785
|
};
|
754
|
-
"/profile/{id}": {
|
786
|
+
"/profile/update-image/{id}": {
|
755
787
|
parameters: {
|
756
788
|
query?: never;
|
757
789
|
header?: never;
|
758
790
|
path?: never;
|
759
791
|
cookie?: never;
|
760
792
|
};
|
761
|
-
get
|
793
|
+
get?: never;
|
762
794
|
put?: never;
|
763
795
|
post?: never;
|
764
|
-
delete
|
796
|
+
delete?: never;
|
765
797
|
options?: never;
|
766
798
|
head?: never;
|
767
|
-
patch: operations["
|
799
|
+
patch: operations["ProfileController_updateImage"];
|
768
800
|
trace?: never;
|
769
801
|
};
|
770
|
-
"/image/
|
802
|
+
"/profile/delete-image/{id}": {
|
771
803
|
parameters: {
|
772
804
|
query?: never;
|
773
805
|
header?: never;
|
@@ -777,26 +809,26 @@ export interface paths {
|
|
777
809
|
get?: never;
|
778
810
|
put?: never;
|
779
811
|
post?: never;
|
780
|
-
delete
|
812
|
+
delete: operations["ProfileController_deleteImage"];
|
781
813
|
options?: never;
|
782
814
|
head?: never;
|
783
|
-
patch
|
815
|
+
patch?: never;
|
784
816
|
trace?: never;
|
785
817
|
};
|
786
|
-
"/
|
818
|
+
"/profile/{id}": {
|
787
819
|
parameters: {
|
788
820
|
query?: never;
|
789
821
|
header?: never;
|
790
822
|
path?: never;
|
791
823
|
cookie?: never;
|
792
824
|
};
|
793
|
-
get
|
825
|
+
get: operations["ProfileController_findById"];
|
794
826
|
put?: never;
|
795
827
|
post?: never;
|
796
|
-
delete: operations["
|
828
|
+
delete: operations["ProfileController_delete"];
|
797
829
|
options?: never;
|
798
830
|
head?: never;
|
799
|
-
patch
|
831
|
+
patch: operations["ProfileController_update"];
|
800
832
|
trace?: never;
|
801
833
|
};
|
802
834
|
"/csv/download-profiles": {
|
@@ -1957,6 +1989,9 @@ export interface components {
|
|
1957
1989
|
startingDate: string;
|
1958
1990
|
endingDate: string;
|
1959
1991
|
location: string;
|
1992
|
+
mainPictureUrl: string | null;
|
1993
|
+
bannerUrl: string | null;
|
1994
|
+
description: string | null;
|
1960
1995
|
folderId: string | null;
|
1961
1996
|
tagAssistedId: string;
|
1962
1997
|
tagConfirmedId: string;
|
@@ -1980,6 +2015,9 @@ export interface components {
|
|
1980
2015
|
startingDate: string;
|
1981
2016
|
endingDate: string;
|
1982
2017
|
location: string;
|
2018
|
+
mainPictureUrl: string | null;
|
2019
|
+
bannerUrl: string | null;
|
2020
|
+
description: string | null;
|
1983
2021
|
folderId: string | null;
|
1984
2022
|
tagAssistedId: string;
|
1985
2023
|
tagConfirmedId: string;
|
@@ -2014,12 +2052,18 @@ export interface components {
|
|
2014
2052
|
endingDate: string;
|
2015
2053
|
location: string;
|
2016
2054
|
folderId: string | null;
|
2055
|
+
mainPictureUrl: string | null;
|
2056
|
+
bannerUrl: string | null;
|
2057
|
+
description: string | null;
|
2017
2058
|
subEvents?: {
|
2018
2059
|
name: string;
|
2019
2060
|
date: string;
|
2020
2061
|
startingDate: string;
|
2021
2062
|
endingDate: string;
|
2022
2063
|
location: string;
|
2064
|
+
mainPictureUrl: string | null;
|
2065
|
+
bannerUrl: string | null;
|
2066
|
+
description: string | null;
|
2023
2067
|
}[];
|
2024
2068
|
tagsId: string[];
|
2025
2069
|
eventTickets: {
|
@@ -2035,6 +2079,9 @@ export interface components {
|
|
2035
2079
|
startingDate: string;
|
2036
2080
|
endingDate: string;
|
2037
2081
|
location: string;
|
2082
|
+
mainPictureUrl: string | null;
|
2083
|
+
bannerUrl: string | null;
|
2084
|
+
description: string | null;
|
2038
2085
|
folderId: string | null;
|
2039
2086
|
tagAssistedId: string;
|
2040
2087
|
tagConfirmedId: string;
|
@@ -2043,6 +2090,18 @@ export interface components {
|
|
2043
2090
|
created_at: string;
|
2044
2091
|
updated_at: string;
|
2045
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
|
+
};
|
2046
2105
|
GetAllEventsResponseDto: {
|
2047
2106
|
folders: {
|
2048
2107
|
id: string;
|
@@ -2057,6 +2116,9 @@ export interface components {
|
|
2057
2116
|
startingDate: string;
|
2058
2117
|
endingDate: string;
|
2059
2118
|
location: string;
|
2119
|
+
mainPictureUrl: string | null;
|
2120
|
+
bannerUrl: string | null;
|
2121
|
+
description: string | null;
|
2060
2122
|
folderId: string | null;
|
2061
2123
|
tagAssistedId: string;
|
2062
2124
|
tagConfirmedId: string;
|
@@ -2071,6 +2133,9 @@ export interface components {
|
|
2071
2133
|
startingDate: string;
|
2072
2134
|
endingDate: string;
|
2073
2135
|
location: string;
|
2136
|
+
mainPictureUrl: string | null;
|
2137
|
+
bannerUrl: string | null;
|
2138
|
+
description: string | null;
|
2074
2139
|
folderId: string | null;
|
2075
2140
|
tagAssistedId: string;
|
2076
2141
|
tagConfirmedId: string;
|
@@ -2086,6 +2151,9 @@ export interface components {
|
|
2086
2151
|
startingDate: string;
|
2087
2152
|
endingDate: string;
|
2088
2153
|
location: string;
|
2154
|
+
mainPictureUrl: string | null;
|
2155
|
+
bannerUrl: string | null;
|
2156
|
+
description: string | null;
|
2089
2157
|
folderId: string | null;
|
2090
2158
|
tagAssistedId: string;
|
2091
2159
|
tagConfirmedId: string;
|
@@ -2120,6 +2188,9 @@ export interface components {
|
|
2120
2188
|
startingDate: string;
|
2121
2189
|
endingDate: string;
|
2122
2190
|
location: string;
|
2191
|
+
mainPictureUrl: string | null;
|
2192
|
+
bannerUrl: string | null;
|
2193
|
+
description: string | null;
|
2123
2194
|
folderId: string | null;
|
2124
2195
|
tagAssistedId: string;
|
2125
2196
|
tagConfirmedId: string;
|
@@ -2134,6 +2205,9 @@ export interface components {
|
|
2134
2205
|
startingDate: string;
|
2135
2206
|
endingDate: string;
|
2136
2207
|
location: string;
|
2208
|
+
mainPictureUrl: string | null;
|
2209
|
+
bannerUrl: string | null;
|
2210
|
+
description: string | null;
|
2137
2211
|
folderId: string | null;
|
2138
2212
|
tagAssistedId: string;
|
2139
2213
|
tagConfirmedId: string;
|
@@ -2149,6 +2223,9 @@ export interface components {
|
|
2149
2223
|
startingDate: string;
|
2150
2224
|
endingDate: string;
|
2151
2225
|
location: string;
|
2226
|
+
mainPictureUrl: string | null;
|
2227
|
+
bannerUrl: string | null;
|
2228
|
+
description: string | null;
|
2152
2229
|
folderId: string | null;
|
2153
2230
|
tagAssistedId: string;
|
2154
2231
|
tagConfirmedId: string;
|
@@ -2184,6 +2261,9 @@ export interface components {
|
|
2184
2261
|
startingDate: string;
|
2185
2262
|
endingDate: string;
|
2186
2263
|
location: string;
|
2264
|
+
mainPictureUrl: string | null;
|
2265
|
+
bannerUrl: string | null;
|
2266
|
+
description: string | null;
|
2187
2267
|
folderId: string | null;
|
2188
2268
|
tagAssistedId: string;
|
2189
2269
|
tagConfirmedId: string;
|
@@ -2199,28 +2279,6 @@ export interface components {
|
|
2199
2279
|
}[];
|
2200
2280
|
}[];
|
2201
2281
|
};
|
2202
|
-
GetAllStatisticsResponseDto: {
|
2203
|
-
totalIncome: number;
|
2204
|
-
emailByPurchasedTickets: {
|
2205
|
-
mail: string;
|
2206
|
-
ticketsPurchased: number;
|
2207
|
-
}[];
|
2208
|
-
attendancePercent: number;
|
2209
|
-
maxTicketPerTypeAll: {
|
2210
|
-
[key: string]: number | undefined;
|
2211
|
-
};
|
2212
|
-
emmitedticketPerTypeAll: {
|
2213
|
-
[key: string]: number | undefined;
|
2214
|
-
};
|
2215
|
-
eventDataIndividual: {
|
2216
|
-
id: string;
|
2217
|
-
name: string;
|
2218
|
-
price: number | null;
|
2219
|
-
purchasePercent: number;
|
2220
|
-
spectatorEventTicket: number | null;
|
2221
|
-
spectatorTicketsSold: number;
|
2222
|
-
}[];
|
2223
|
-
};
|
2224
2282
|
GetByIdEventResponseDto: {
|
2225
2283
|
id: string;
|
2226
2284
|
name: string;
|
@@ -2228,6 +2286,9 @@ export interface components {
|
|
2228
2286
|
startingDate: string;
|
2229
2287
|
endingDate: string;
|
2230
2288
|
location: string;
|
2289
|
+
mainPictureUrl: string | null;
|
2290
|
+
bannerUrl: string | null;
|
2291
|
+
description: string | null;
|
2231
2292
|
folderId: string | null;
|
2232
2293
|
tagAssistedId: string;
|
2233
2294
|
tagConfirmedId: string;
|
@@ -2242,6 +2303,9 @@ export interface components {
|
|
2242
2303
|
startingDate: string;
|
2243
2304
|
endingDate: string;
|
2244
2305
|
location: string;
|
2306
|
+
mainPictureUrl: string | null;
|
2307
|
+
bannerUrl: string | null;
|
2308
|
+
description: string | null;
|
2245
2309
|
folderId: string | null;
|
2246
2310
|
tagAssistedId: string;
|
2247
2311
|
tagConfirmedId: string;
|
@@ -2257,6 +2321,9 @@ export interface components {
|
|
2257
2321
|
startingDate: string;
|
2258
2322
|
endingDate: string;
|
2259
2323
|
location: string;
|
2324
|
+
mainPictureUrl: string | null;
|
2325
|
+
bannerUrl: string | null;
|
2326
|
+
description: string | null;
|
2260
2327
|
folderId: string | null;
|
2261
2328
|
tagAssistedId: string;
|
2262
2329
|
tagConfirmedId: string;
|
@@ -2334,42 +2401,29 @@ export interface components {
|
|
2334
2401
|
};
|
2335
2402
|
};
|
2336
2403
|
};
|
2337
|
-
GetStatisticsByIdResponseDto: {
|
2338
|
-
maxTickets: number;
|
2339
|
-
emmitedTickets: number;
|
2340
|
-
emittedTicketsPercent: number;
|
2341
|
-
emmitedticketPerType: {
|
2342
|
-
[key: string]: number | undefined;
|
2343
|
-
};
|
2344
|
-
totalIncome: number;
|
2345
|
-
maxTotalIncome: number;
|
2346
|
-
maxTicketPerType: {
|
2347
|
-
[key: string]: number | undefined;
|
2348
|
-
};
|
2349
|
-
totalTicketsScanned: number;
|
2350
|
-
notScanned: number;
|
2351
|
-
attendancePercent: number;
|
2352
|
-
attendancePerHour: (string | null)[];
|
2353
|
-
avgAmountPerTicketGroup: number | null;
|
2354
|
-
heatMapDates: string[];
|
2355
|
-
};
|
2356
2404
|
UpdateEventDto: {
|
2357
|
-
name
|
2358
|
-
folderId
|
2359
|
-
date
|
2360
|
-
location
|
2361
|
-
startingDate
|
2362
|
-
endingDate
|
2363
|
-
|
2364
|
-
|
2405
|
+
name?: string;
|
2406
|
+
folderId?: string | null;
|
2407
|
+
date?: string;
|
2408
|
+
location?: string;
|
2409
|
+
startingDate?: string;
|
2410
|
+
endingDate?: string;
|
2411
|
+
bannerUrl?: string | null;
|
2412
|
+
mainPictureUrl?: string | null;
|
2413
|
+
description?: string | null;
|
2414
|
+
tagsId?: string[];
|
2415
|
+
subEvents?: {
|
2365
2416
|
name: string;
|
2366
2417
|
location: string;
|
2367
2418
|
date: string;
|
2368
2419
|
startingDate: string;
|
2369
2420
|
endingDate: string;
|
2421
|
+
bannerUrl: string | null;
|
2422
|
+
mainPictureUrl: string | null;
|
2423
|
+
description: string | null;
|
2370
2424
|
id: string | "";
|
2371
2425
|
}[];
|
2372
|
-
eventTickets
|
2426
|
+
eventTickets?: {
|
2373
2427
|
amount: number | null;
|
2374
2428
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2375
2429
|
price: number | null;
|
@@ -2382,6 +2436,9 @@ export interface components {
|
|
2382
2436
|
startingDate: string;
|
2383
2437
|
endingDate: string;
|
2384
2438
|
location: string;
|
2439
|
+
mainPictureUrl: string | null;
|
2440
|
+
bannerUrl: string | null;
|
2441
|
+
description: string | null;
|
2385
2442
|
folderId: string | null;
|
2386
2443
|
tagAssistedId: string;
|
2387
2444
|
tagConfirmedId: string;
|
@@ -2419,6 +2476,9 @@ export interface components {
|
|
2419
2476
|
startingDate: string;
|
2420
2477
|
endingDate: string;
|
2421
2478
|
location: string;
|
2479
|
+
mainPictureUrl: string | null;
|
2480
|
+
bannerUrl: string | null;
|
2481
|
+
description: string | null;
|
2422
2482
|
folderId: string | null;
|
2423
2483
|
tagAssistedId: string;
|
2424
2484
|
tagConfirmedId: string;
|
@@ -2731,6 +2791,15 @@ export interface components {
|
|
2731
2791
|
type: "created";
|
2732
2792
|
};
|
2733
2793
|
};
|
2794
|
+
UpdateImageProfileDto: {
|
2795
|
+
image?: Record<string, never>;
|
2796
|
+
};
|
2797
|
+
UpdateImageProfileResponseDto: {
|
2798
|
+
message: string;
|
2799
|
+
};
|
2800
|
+
DeleteImageProfileResponseDto: {
|
2801
|
+
message: string;
|
2802
|
+
};
|
2734
2803
|
FindByIdProfileResponseDto: {
|
2735
2804
|
id: string;
|
2736
2805
|
shortId: number;
|
@@ -2847,15 +2916,6 @@ export interface components {
|
|
2847
2916
|
};
|
2848
2917
|
tags?: string[];
|
2849
2918
|
};
|
2850
|
-
UpdateImageDto: {
|
2851
|
-
image?: Record<string, never>;
|
2852
|
-
};
|
2853
|
-
UpdateImageResponseDto: {
|
2854
|
-
message: string;
|
2855
|
-
};
|
2856
|
-
DeleteImageResponseDto: {
|
2857
|
-
message: string;
|
2858
|
-
};
|
2859
2919
|
DownloadProfilesDto: {
|
2860
2920
|
password: string;
|
2861
2921
|
};
|
@@ -2986,6 +3046,9 @@ export interface components {
|
|
2986
3046
|
startingDate: string;
|
2987
3047
|
endingDate: string;
|
2988
3048
|
location: string;
|
3049
|
+
mainPictureUrl: string | null;
|
3050
|
+
bannerUrl: string | null;
|
3051
|
+
description: string | null;
|
2989
3052
|
folderId: string | null;
|
2990
3053
|
tagAssistedId: string;
|
2991
3054
|
tagConfirmedId: string;
|
@@ -3026,6 +3089,9 @@ export interface components {
|
|
3026
3089
|
startingDate: string;
|
3027
3090
|
endingDate: string;
|
3028
3091
|
location: string;
|
3092
|
+
mainPictureUrl: string | null;
|
3093
|
+
bannerUrl: string | null;
|
3094
|
+
description: string | null;
|
3029
3095
|
folderId: string | null;
|
3030
3096
|
tagAssistedId: string;
|
3031
3097
|
tagConfirmedId: string;
|
@@ -3083,6 +3149,9 @@ export interface components {
|
|
3083
3149
|
startingDate: string;
|
3084
3150
|
endingDate: string;
|
3085
3151
|
location: string;
|
3152
|
+
mainPictureUrl: string | null;
|
3153
|
+
bannerUrl: string | null;
|
3154
|
+
description: string | null;
|
3086
3155
|
folderId: string | null;
|
3087
3156
|
tagAssistedId: string;
|
3088
3157
|
tagConfirmedId: string;
|
@@ -3235,6 +3304,9 @@ export interface components {
|
|
3235
3304
|
startingDate: string;
|
3236
3305
|
endingDate: string;
|
3237
3306
|
location: string;
|
3307
|
+
mainPictureUrl: string | null;
|
3308
|
+
bannerUrl: string | null;
|
3309
|
+
description: string | null;
|
3238
3310
|
folderId: string | null;
|
3239
3311
|
tagAssistedId: string;
|
3240
3312
|
tagConfirmedId: string;
|
@@ -3347,6 +3419,9 @@ export interface components {
|
|
3347
3419
|
startingDate: string;
|
3348
3420
|
endingDate: string;
|
3349
3421
|
location: string;
|
3422
|
+
mainPictureUrl: string | null;
|
3423
|
+
bannerUrl: string | null;
|
3424
|
+
description: string | null;
|
3350
3425
|
folderId: string | null;
|
3351
3426
|
tagAssistedId: string;
|
3352
3427
|
tagConfirmedId: string;
|
@@ -4626,24 +4701,46 @@ export interface operations {
|
|
4626
4701
|
};
|
4627
4702
|
};
|
4628
4703
|
};
|
4629
|
-
|
4704
|
+
EventController_updateBanner: {
|
4630
4705
|
parameters: {
|
4631
4706
|
query?: never;
|
4632
4707
|
header?: never;
|
4633
|
-
path
|
4708
|
+
path: {
|
4709
|
+
id: string;
|
4710
|
+
};
|
4634
4711
|
cookie?: never;
|
4635
4712
|
};
|
4636
|
-
requestBody
|
4713
|
+
requestBody: {
|
4714
|
+
content: {
|
4715
|
+
"multipart/form-data": components["schemas"]["UpdateBannerEventDto"];
|
4716
|
+
};
|
4717
|
+
};
|
4637
4718
|
responses: {
|
4638
4719
|
200: {
|
4639
4720
|
headers: {
|
4640
4721
|
[name: string]: unknown;
|
4641
4722
|
};
|
4642
4723
|
content: {
|
4643
|
-
"application/json": components["schemas"]["
|
4724
|
+
"application/json": components["schemas"]["UpdateBannerEventResponseDto"];
|
4644
4725
|
};
|
4645
4726
|
};
|
4646
|
-
|
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: {
|
4647
4744
|
headers: {
|
4648
4745
|
[name: string]: unknown;
|
4649
4746
|
};
|
@@ -4653,11 +4750,13 @@ export interface operations {
|
|
4653
4750
|
};
|
4654
4751
|
};
|
4655
4752
|
};
|
4656
|
-
|
4753
|
+
EventController_deleteBanner: {
|
4657
4754
|
parameters: {
|
4658
4755
|
query?: never;
|
4659
4756
|
header?: never;
|
4660
|
-
path
|
4757
|
+
path: {
|
4758
|
+
id: string;
|
4759
|
+
};
|
4661
4760
|
cookie?: never;
|
4662
4761
|
};
|
4663
4762
|
requestBody?: never;
|
@@ -4667,31 +4766,77 @@ export interface operations {
|
|
4667
4766
|
[name: string]: unknown;
|
4668
4767
|
};
|
4669
4768
|
content: {
|
4670
|
-
"application/json": components["schemas"]["
|
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"];
|
4671
4786
|
};
|
4672
4787
|
};
|
4673
4788
|
};
|
4674
4789
|
};
|
4675
|
-
|
4790
|
+
EventController_updateMainPicture: {
|
4676
4791
|
parameters: {
|
4677
4792
|
query?: never;
|
4678
4793
|
header?: never;
|
4679
|
-
path
|
4794
|
+
path: {
|
4795
|
+
id: string;
|
4796
|
+
};
|
4680
4797
|
cookie?: never;
|
4681
4798
|
};
|
4682
|
-
requestBody
|
4799
|
+
requestBody: {
|
4800
|
+
content: {
|
4801
|
+
"multipart/form-data": components["schemas"]["UpdateMainPictureEventDto"];
|
4802
|
+
};
|
4803
|
+
};
|
4683
4804
|
responses: {
|
4684
4805
|
200: {
|
4685
4806
|
headers: {
|
4686
4807
|
[name: string]: unknown;
|
4687
4808
|
};
|
4688
4809
|
content: {
|
4689
|
-
"application/json": components["schemas"]["
|
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"];
|
4690
4835
|
};
|
4691
4836
|
};
|
4692
4837
|
};
|
4693
4838
|
};
|
4694
|
-
|
4839
|
+
EventController_deleteMainPicture: {
|
4695
4840
|
parameters: {
|
4696
4841
|
query?: never;
|
4697
4842
|
header?: never;
|
@@ -4707,7 +4852,7 @@ export interface operations {
|
|
4707
4852
|
[name: string]: unknown;
|
4708
4853
|
};
|
4709
4854
|
content: {
|
4710
|
-
"application/json": components["schemas"]["
|
4855
|
+
"application/json": components["schemas"]["UpdateMainPictureEventResponseDto"];
|
4711
4856
|
};
|
4712
4857
|
};
|
4713
4858
|
404: {
|
@@ -4718,19 +4863,33 @@ export interface operations {
|
|
4718
4863
|
"application/json": components["schemas"]["ErrorDto"];
|
4719
4864
|
};
|
4720
4865
|
};
|
4866
|
+
500: {
|
4867
|
+
headers: {
|
4868
|
+
[name: string]: unknown;
|
4869
|
+
};
|
4870
|
+
content: {
|
4871
|
+
"application/json": components["schemas"]["ErrorDto"];
|
4872
|
+
};
|
4873
|
+
};
|
4721
4874
|
};
|
4722
4875
|
};
|
4723
|
-
|
4876
|
+
EventController_findAll: {
|
4724
4877
|
parameters: {
|
4725
4878
|
query?: never;
|
4726
4879
|
header?: never;
|
4727
|
-
path
|
4728
|
-
id: string;
|
4729
|
-
};
|
4880
|
+
path?: never;
|
4730
4881
|
cookie?: never;
|
4731
4882
|
};
|
4732
4883
|
requestBody?: never;
|
4733
4884
|
responses: {
|
4885
|
+
200: {
|
4886
|
+
headers: {
|
4887
|
+
[name: string]: unknown;
|
4888
|
+
};
|
4889
|
+
content: {
|
4890
|
+
"application/json": components["schemas"]["GetAllEventsResponseDto"];
|
4891
|
+
};
|
4892
|
+
};
|
4734
4893
|
404: {
|
4735
4894
|
headers: {
|
4736
4895
|
[name: string]: unknown;
|
@@ -4739,17 +4898,28 @@ export interface operations {
|
|
4739
4898
|
"application/json": components["schemas"]["ErrorDto"];
|
4740
4899
|
};
|
4741
4900
|
};
|
4742
|
-
|
4901
|
+
};
|
4902
|
+
};
|
4903
|
+
EventController_getActive: {
|
4904
|
+
parameters: {
|
4905
|
+
query?: never;
|
4906
|
+
header?: never;
|
4907
|
+
path?: never;
|
4908
|
+
cookie?: never;
|
4909
|
+
};
|
4910
|
+
requestBody?: never;
|
4911
|
+
responses: {
|
4912
|
+
200: {
|
4743
4913
|
headers: {
|
4744
4914
|
[name: string]: unknown;
|
4745
4915
|
};
|
4746
4916
|
content: {
|
4747
|
-
"application/json": components["schemas"]["
|
4917
|
+
"application/json": components["schemas"]["GetActiveEventsResponseDto"];
|
4748
4918
|
};
|
4749
4919
|
};
|
4750
4920
|
};
|
4751
4921
|
};
|
4752
|
-
|
4922
|
+
EventController_findById: {
|
4753
4923
|
parameters: {
|
4754
4924
|
query?: never;
|
4755
4925
|
header?: never;
|
@@ -4758,18 +4928,14 @@ export interface operations {
|
|
4758
4928
|
};
|
4759
4929
|
cookie?: never;
|
4760
4930
|
};
|
4761
|
-
requestBody
|
4762
|
-
content: {
|
4763
|
-
"application/json": components["schemas"]["UpdateEventDto"];
|
4764
|
-
};
|
4765
|
-
};
|
4931
|
+
requestBody?: never;
|
4766
4932
|
responses: {
|
4767
4933
|
200: {
|
4768
4934
|
headers: {
|
4769
4935
|
[name: string]: unknown;
|
4770
4936
|
};
|
4771
4937
|
content: {
|
4772
|
-
"application/json": components["schemas"]["
|
4938
|
+
"application/json": components["schemas"]["GetByIdEventResponseDto"];
|
4773
4939
|
};
|
4774
4940
|
};
|
4775
4941
|
404: {
|
@@ -4780,7 +4946,20 @@ export interface operations {
|
|
4780
4946
|
"application/json": components["schemas"]["ErrorDto"];
|
4781
4947
|
};
|
4782
4948
|
};
|
4783
|
-
|
4949
|
+
};
|
4950
|
+
};
|
4951
|
+
EventController_remove: {
|
4952
|
+
parameters: {
|
4953
|
+
query?: never;
|
4954
|
+
header?: never;
|
4955
|
+
path: {
|
4956
|
+
id: string;
|
4957
|
+
};
|
4958
|
+
cookie?: never;
|
4959
|
+
};
|
4960
|
+
requestBody?: never;
|
4961
|
+
responses: {
|
4962
|
+
404: {
|
4784
4963
|
headers: {
|
4785
4964
|
[name: string]: unknown;
|
4786
4965
|
};
|
@@ -4788,28 +4967,37 @@ export interface operations {
|
|
4788
4967
|
"application/json": components["schemas"]["ErrorDto"];
|
4789
4968
|
};
|
4790
4969
|
};
|
4970
|
+
410: {
|
4971
|
+
headers: {
|
4972
|
+
[name: string]: unknown;
|
4973
|
+
};
|
4974
|
+
content: {
|
4975
|
+
"application/json": components["schemas"]["DeleteEventResponseDto"];
|
4976
|
+
};
|
4977
|
+
};
|
4791
4978
|
};
|
4792
4979
|
};
|
4793
|
-
|
4980
|
+
EventController_update: {
|
4794
4981
|
parameters: {
|
4795
|
-
query
|
4796
|
-
gte: string;
|
4797
|
-
lte: string;
|
4798
|
-
};
|
4982
|
+
query?: never;
|
4799
4983
|
header?: never;
|
4800
4984
|
path: {
|
4801
4985
|
id: string;
|
4802
4986
|
};
|
4803
4987
|
cookie?: never;
|
4804
4988
|
};
|
4805
|
-
requestBody
|
4989
|
+
requestBody: {
|
4990
|
+
content: {
|
4991
|
+
"application/json": components["schemas"]["UpdateEventDto"];
|
4992
|
+
};
|
4993
|
+
};
|
4806
4994
|
responses: {
|
4807
4995
|
200: {
|
4808
4996
|
headers: {
|
4809
4997
|
[name: string]: unknown;
|
4810
4998
|
};
|
4811
4999
|
content: {
|
4812
|
-
"application/json": components["schemas"]["
|
5000
|
+
"application/json": components["schemas"]["UpdateEventResponseDto"];
|
4813
5001
|
};
|
4814
5002
|
};
|
4815
5003
|
404: {
|
@@ -4820,6 +5008,14 @@ export interface operations {
|
|
4820
5008
|
"application/json": components["schemas"]["ErrorDto"];
|
4821
5009
|
};
|
4822
5010
|
};
|
5011
|
+
409: {
|
5012
|
+
headers: {
|
5013
|
+
[name: string]: unknown;
|
5014
|
+
};
|
5015
|
+
content: {
|
5016
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5017
|
+
};
|
5018
|
+
};
|
4823
5019
|
};
|
4824
5020
|
};
|
4825
5021
|
EventController_toggleActive: {
|
@@ -5072,7 +5268,7 @@ export interface operations {
|
|
5072
5268
|
};
|
5073
5269
|
};
|
5074
5270
|
};
|
5075
|
-
|
5271
|
+
ProfileController_updateImage: {
|
5076
5272
|
parameters: {
|
5077
5273
|
query?: never;
|
5078
5274
|
header?: never;
|
@@ -5081,17 +5277,21 @@ export interface operations {
|
|
5081
5277
|
};
|
5082
5278
|
cookie?: never;
|
5083
5279
|
};
|
5084
|
-
requestBody
|
5280
|
+
requestBody: {
|
5281
|
+
content: {
|
5282
|
+
"multipart/form-data": components["schemas"]["UpdateImageProfileDto"];
|
5283
|
+
};
|
5284
|
+
};
|
5085
5285
|
responses: {
|
5086
5286
|
200: {
|
5087
5287
|
headers: {
|
5088
5288
|
[name: string]: unknown;
|
5089
5289
|
};
|
5090
5290
|
content: {
|
5091
|
-
"application/json": components["schemas"]["
|
5291
|
+
"application/json": components["schemas"]["UpdateImageProfileResponseDto"];
|
5092
5292
|
};
|
5093
5293
|
};
|
5094
|
-
|
5294
|
+
409: {
|
5095
5295
|
headers: {
|
5096
5296
|
[name: string]: unknown;
|
5097
5297
|
};
|
@@ -5099,28 +5299,15 @@ export interface operations {
|
|
5099
5299
|
"application/json": components["schemas"]["ErrorDto"];
|
5100
5300
|
};
|
5101
5301
|
};
|
5102
|
-
|
5103
|
-
};
|
5104
|
-
ProfileController_delete: {
|
5105
|
-
parameters: {
|
5106
|
-
query?: never;
|
5107
|
-
header?: never;
|
5108
|
-
path: {
|
5109
|
-
id: string;
|
5110
|
-
};
|
5111
|
-
cookie?: never;
|
5112
|
-
};
|
5113
|
-
requestBody?: never;
|
5114
|
-
responses: {
|
5115
|
-
200: {
|
5302
|
+
422: {
|
5116
5303
|
headers: {
|
5117
5304
|
[name: string]: unknown;
|
5118
5305
|
};
|
5119
5306
|
content: {
|
5120
|
-
"application/json": components["schemas"]["
|
5307
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5121
5308
|
};
|
5122
5309
|
};
|
5123
|
-
|
5310
|
+
500: {
|
5124
5311
|
headers: {
|
5125
5312
|
[name: string]: unknown;
|
5126
5313
|
};
|
@@ -5130,7 +5317,7 @@ export interface operations {
|
|
5130
5317
|
};
|
5131
5318
|
};
|
5132
5319
|
};
|
5133
|
-
|
5320
|
+
ProfileController_deleteImage: {
|
5134
5321
|
parameters: {
|
5135
5322
|
query?: never;
|
5136
5323
|
header?: never;
|
@@ -5139,18 +5326,14 @@ export interface operations {
|
|
5139
5326
|
};
|
5140
5327
|
cookie?: never;
|
5141
5328
|
};
|
5142
|
-
requestBody
|
5143
|
-
content: {
|
5144
|
-
"application/json": components["schemas"]["UpdateProfileDto"];
|
5145
|
-
};
|
5146
|
-
};
|
5329
|
+
requestBody?: never;
|
5147
5330
|
responses: {
|
5148
5331
|
200: {
|
5149
5332
|
headers: {
|
5150
5333
|
[name: string]: unknown;
|
5151
5334
|
};
|
5152
5335
|
content: {
|
5153
|
-
"application/json": components["schemas"]["
|
5336
|
+
"application/json": components["schemas"]["DeleteImageProfileResponseDto"];
|
5154
5337
|
};
|
5155
5338
|
};
|
5156
5339
|
404: {
|
@@ -5161,7 +5344,7 @@ export interface operations {
|
|
5161
5344
|
"application/json": components["schemas"]["ErrorDto"];
|
5162
5345
|
};
|
5163
5346
|
};
|
5164
|
-
|
5347
|
+
500: {
|
5165
5348
|
headers: {
|
5166
5349
|
[name: string]: unknown;
|
5167
5350
|
};
|
@@ -5171,7 +5354,7 @@ export interface operations {
|
|
5171
5354
|
};
|
5172
5355
|
};
|
5173
5356
|
};
|
5174
|
-
|
5357
|
+
ProfileController_findById: {
|
5175
5358
|
parameters: {
|
5176
5359
|
query?: never;
|
5177
5360
|
header?: never;
|
@@ -5180,21 +5363,17 @@ export interface operations {
|
|
5180
5363
|
};
|
5181
5364
|
cookie?: never;
|
5182
5365
|
};
|
5183
|
-
requestBody
|
5184
|
-
content: {
|
5185
|
-
"multipart/form-data": components["schemas"]["UpdateImageDto"];
|
5186
|
-
};
|
5187
|
-
};
|
5366
|
+
requestBody?: never;
|
5188
5367
|
responses: {
|
5189
5368
|
200: {
|
5190
5369
|
headers: {
|
5191
5370
|
[name: string]: unknown;
|
5192
5371
|
};
|
5193
5372
|
content: {
|
5194
|
-
"application/json": components["schemas"]["
|
5373
|
+
"application/json": components["schemas"]["FindByIdProfileResponseDto"];
|
5195
5374
|
};
|
5196
5375
|
};
|
5197
|
-
|
5376
|
+
404: {
|
5198
5377
|
headers: {
|
5199
5378
|
[name: string]: unknown;
|
5200
5379
|
};
|
@@ -5202,15 +5381,28 @@ export interface operations {
|
|
5202
5381
|
"application/json": components["schemas"]["ErrorDto"];
|
5203
5382
|
};
|
5204
5383
|
};
|
5205
|
-
|
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: {
|
5206
5398
|
headers: {
|
5207
5399
|
[name: string]: unknown;
|
5208
5400
|
};
|
5209
5401
|
content: {
|
5210
|
-
"application/json": components["schemas"]["
|
5402
|
+
"application/json": components["schemas"]["DeleteProfileResponseDto"];
|
5211
5403
|
};
|
5212
5404
|
};
|
5213
|
-
|
5405
|
+
404: {
|
5214
5406
|
headers: {
|
5215
5407
|
[name: string]: unknown;
|
5216
5408
|
};
|
@@ -5220,7 +5412,7 @@ export interface operations {
|
|
5220
5412
|
};
|
5221
5413
|
};
|
5222
5414
|
};
|
5223
|
-
|
5415
|
+
ProfileController_update: {
|
5224
5416
|
parameters: {
|
5225
5417
|
query?: never;
|
5226
5418
|
header?: never;
|
@@ -5229,14 +5421,18 @@ export interface operations {
|
|
5229
5421
|
};
|
5230
5422
|
cookie?: never;
|
5231
5423
|
};
|
5232
|
-
requestBody
|
5424
|
+
requestBody: {
|
5425
|
+
content: {
|
5426
|
+
"application/json": components["schemas"]["UpdateProfileDto"];
|
5427
|
+
};
|
5428
|
+
};
|
5233
5429
|
responses: {
|
5234
5430
|
200: {
|
5235
5431
|
headers: {
|
5236
5432
|
[name: string]: unknown;
|
5237
5433
|
};
|
5238
5434
|
content: {
|
5239
|
-
"application/json": components["schemas"]["
|
5435
|
+
"application/json": components["schemas"]["UpdateProfileDto"];
|
5240
5436
|
};
|
5241
5437
|
};
|
5242
5438
|
404: {
|
@@ -5247,7 +5443,7 @@ export interface operations {
|
|
5247
5443
|
"application/json": components["schemas"]["ErrorDto"];
|
5248
5444
|
};
|
5249
5445
|
};
|
5250
|
-
|
5446
|
+
409: {
|
5251
5447
|
headers: {
|
5252
5448
|
[name: string]: unknown;
|
5253
5449
|
};
|