expo-backend-types 0.34.0 → 0.35.0-EXPO-323-Enviar-mail-ticket.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.
- package/dist/src/account/dto/account.dto.d.ts +8 -4
- package/dist/src/account/dto/create-account.dto.d.ts +16 -8
- package/dist/src/account/dto/get-global-filter.dto.d.ts +2 -0
- package/dist/src/account/dto/get-me.dto.d.ts +8 -4
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -4
- package/dist/src/auth/dto/login.dto.d.ts +14 -8
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +2 -0
- package/dist/src/event/dto/create-event.dto.d.ts +10 -10
- package/dist/src/event/dto/event-tickets.dto.d.ts +3 -3
- package/dist/src/event/dto/event-tickets.dto.js +5 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +14 -14
- package/dist/src/event/dto/get-all-event.dto.d.ts +616 -0
- package/dist/src/event/dto/get-all-event.dto.js +29 -8
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +317 -10
- package/dist/src/event/dto/get-by-id-event.dto.js +4 -0
- package/dist/src/event/dto/update-event.dto.d.ts +26 -20
- package/dist/src/event/dto/update-event.dto.js +1 -0
- package/dist/src/i18n/es.d.ts +24 -0
- package/dist/src/i18n/es.js +24 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +104 -0
- package/dist/src/mi-expo/dto/get-invitations.dto.js +24 -0
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +18 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +22 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +24 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +18 -0
- package/dist/src/mi-expo/exports.d.ts +1 -0
- package/dist/src/mi-expo/exports.js +1 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +22 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +28 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +22 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +40 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +18 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +22 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +57 -1
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +7 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +22 -0
- package/dist/src/profile/dto/profile.dto.d.ts +9 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +18 -0
- package/dist/src/schema/profile.schema.d.ts +9 -0
- package/dist/src/schema/profile.schema.js +2 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +22 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +22 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +158 -4
- package/dist/src/ticket/dto/create-ticket.dto.js +10 -2
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +372 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +372 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +372 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +331 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.js +19 -0
- package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
- package/dist/src/ticket/dto/send-email.dto.js +15 -0
- package/dist/src/ticket/exports.d.ts +1 -0
- package/dist/src/ticket/exports.js +1 -0
- package/dist/types/prisma-schema/edge.js +8 -4
- package/dist/types/prisma-schema/index-browser.js +5 -1
- package/dist/types/prisma-schema/index.d.ts +630 -90
- package/dist/types/prisma-schema/index.js +8 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +12 -3
- package/dist/types/prisma-schema/wasm.js +5 -1
- package/dist/types/schema.d.ts +398 -10
- package/package.json +3 -2
package/dist/types/schema.d.ts
CHANGED
@@ -1039,6 +1039,22 @@ export interface paths {
|
|
1039
1039
|
patch?: never;
|
1040
1040
|
trace?: never;
|
1041
1041
|
};
|
1042
|
+
"/ticket/find-by-profile-id/{profileId}": {
|
1043
|
+
parameters: {
|
1044
|
+
query?: never;
|
1045
|
+
header?: never;
|
1046
|
+
path?: never;
|
1047
|
+
cookie?: never;
|
1048
|
+
};
|
1049
|
+
get: operations["TicketController_findByProfileId"];
|
1050
|
+
put?: never;
|
1051
|
+
post?: never;
|
1052
|
+
delete?: never;
|
1053
|
+
options?: never;
|
1054
|
+
head?: never;
|
1055
|
+
patch?: never;
|
1056
|
+
trace?: never;
|
1057
|
+
};
|
1042
1058
|
"/ticket/update/{id}": {
|
1043
1059
|
parameters: {
|
1044
1060
|
query?: never;
|
@@ -1103,6 +1119,22 @@ export interface paths {
|
|
1103
1119
|
patch?: never;
|
1104
1120
|
trace?: never;
|
1105
1121
|
};
|
1122
|
+
"/ticket/send-email/{id}": {
|
1123
|
+
parameters: {
|
1124
|
+
query?: never;
|
1125
|
+
header?: never;
|
1126
|
+
path?: never;
|
1127
|
+
cookie?: never;
|
1128
|
+
};
|
1129
|
+
get?: never;
|
1130
|
+
put?: never;
|
1131
|
+
post: operations["TicketController_sendEmail"];
|
1132
|
+
delete?: never;
|
1133
|
+
options?: never;
|
1134
|
+
head?: never;
|
1135
|
+
patch?: never;
|
1136
|
+
trace?: never;
|
1137
|
+
};
|
1106
1138
|
"/webhook": {
|
1107
1139
|
parameters: {
|
1108
1140
|
query?: never;
|
@@ -1183,6 +1215,38 @@ export interface paths {
|
|
1183
1215
|
patch: operations["MiExpoController_updateMe"];
|
1184
1216
|
trace?: never;
|
1185
1217
|
};
|
1218
|
+
"/mi-expo/invitations": {
|
1219
|
+
parameters: {
|
1220
|
+
query?: never;
|
1221
|
+
header?: never;
|
1222
|
+
path?: never;
|
1223
|
+
cookie?: never;
|
1224
|
+
};
|
1225
|
+
get: operations["MiExpoController_invitations"];
|
1226
|
+
put?: never;
|
1227
|
+
post?: never;
|
1228
|
+
delete?: never;
|
1229
|
+
options?: never;
|
1230
|
+
head?: never;
|
1231
|
+
patch?: never;
|
1232
|
+
trace?: never;
|
1233
|
+
};
|
1234
|
+
"/mi-expo/tickets": {
|
1235
|
+
parameters: {
|
1236
|
+
query?: never;
|
1237
|
+
header?: never;
|
1238
|
+
path?: never;
|
1239
|
+
cookie?: never;
|
1240
|
+
};
|
1241
|
+
get: operations["MiExpoController_tickets"];
|
1242
|
+
put?: never;
|
1243
|
+
post?: never;
|
1244
|
+
delete?: never;
|
1245
|
+
options?: never;
|
1246
|
+
head?: never;
|
1247
|
+
patch?: never;
|
1248
|
+
trace?: never;
|
1249
|
+
};
|
1186
1250
|
"/mi-expo/login": {
|
1187
1251
|
parameters: {
|
1188
1252
|
query?: never;
|
@@ -1211,7 +1275,7 @@ export interface components {
|
|
1211
1275
|
user: {
|
1212
1276
|
id: string;
|
1213
1277
|
username: string;
|
1214
|
-
role: "USER" | "ADMIN" | "FORM";
|
1278
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1215
1279
|
isGlobalFilterActive: boolean;
|
1216
1280
|
fcmToken: string[];
|
1217
1281
|
created_at: string;
|
@@ -1323,6 +1387,7 @@ export interface components {
|
|
1323
1387
|
profiles: {
|
1324
1388
|
id: string;
|
1325
1389
|
shortId: number;
|
1390
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1326
1391
|
firstTimeMiExpo: boolean;
|
1327
1392
|
username: string | null;
|
1328
1393
|
password: string | null;
|
@@ -1354,6 +1419,7 @@ export interface components {
|
|
1354
1419
|
profiles: {
|
1355
1420
|
id: string;
|
1356
1421
|
shortId: number;
|
1422
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1357
1423
|
firstTimeMiExpo: boolean;
|
1358
1424
|
username: string | null;
|
1359
1425
|
password: string | null;
|
@@ -1380,12 +1446,12 @@ export interface components {
|
|
1380
1446
|
CreateAccountDto: {
|
1381
1447
|
username: string;
|
1382
1448
|
password: string;
|
1383
|
-
role: "USER" | "ADMIN" | "FORM";
|
1449
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1384
1450
|
};
|
1385
1451
|
CreateAccountResponseDto: {
|
1386
1452
|
id: string;
|
1387
1453
|
username: string;
|
1388
|
-
role: "USER" | "ADMIN" | "FORM";
|
1454
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1389
1455
|
isGlobalFilterActive: boolean;
|
1390
1456
|
fcmToken: string[];
|
1391
1457
|
};
|
@@ -1397,7 +1463,7 @@ export interface components {
|
|
1397
1463
|
id: string;
|
1398
1464
|
username: string;
|
1399
1465
|
password: string;
|
1400
|
-
role: "USER" | "ADMIN" | "FORM";
|
1466
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1401
1467
|
isGlobalFilterActive: boolean;
|
1402
1468
|
fcmToken: string[];
|
1403
1469
|
created_at: string;
|
@@ -1427,7 +1493,7 @@ export interface components {
|
|
1427
1493
|
GetMeResponseDto: {
|
1428
1494
|
id: string;
|
1429
1495
|
username: string;
|
1430
|
-
role: "USER" | "ADMIN" | "FORM";
|
1496
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
1431
1497
|
isGlobalFilterActive: boolean;
|
1432
1498
|
fcmToken: string[];
|
1433
1499
|
created_at: string;
|
@@ -1765,7 +1831,7 @@ export interface components {
|
|
1765
1831
|
}[];
|
1766
1832
|
tagsId: string[];
|
1767
1833
|
eventTickets: {
|
1768
|
-
amount: number;
|
1834
|
+
amount: number | null;
|
1769
1835
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1770
1836
|
price: number | null;
|
1771
1837
|
}[];
|
@@ -1836,6 +1902,23 @@ export interface components {
|
|
1836
1902
|
created_at: string;
|
1837
1903
|
updated_at: string;
|
1838
1904
|
}[];
|
1905
|
+
tags: {
|
1906
|
+
id: string;
|
1907
|
+
name: string;
|
1908
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1909
|
+
group: {
|
1910
|
+
id: string;
|
1911
|
+
color: string;
|
1912
|
+
name: string;
|
1913
|
+
isExclusive: boolean;
|
1914
|
+
};
|
1915
|
+
}[];
|
1916
|
+
eventTickets: {
|
1917
|
+
id: string;
|
1918
|
+
amount: number | null;
|
1919
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1920
|
+
price: number | null;
|
1921
|
+
}[];
|
1839
1922
|
}[];
|
1840
1923
|
}[];
|
1841
1924
|
withoutFolder: {
|
@@ -1882,6 +1965,23 @@ export interface components {
|
|
1882
1965
|
created_at: string;
|
1883
1966
|
updated_at: string;
|
1884
1967
|
}[];
|
1968
|
+
tags: {
|
1969
|
+
id: string;
|
1970
|
+
name: string;
|
1971
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1972
|
+
group: {
|
1973
|
+
id: string;
|
1974
|
+
color: string;
|
1975
|
+
name: string;
|
1976
|
+
isExclusive: boolean;
|
1977
|
+
};
|
1978
|
+
}[];
|
1979
|
+
eventTickets: {
|
1980
|
+
id: string;
|
1981
|
+
amount: number | null;
|
1982
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1983
|
+
price: number | null;
|
1984
|
+
}[];
|
1885
1985
|
}[];
|
1886
1986
|
};
|
1887
1987
|
GetActiveEventsResponseDto: {
|
@@ -1901,7 +2001,7 @@ export interface components {
|
|
1901
2001
|
updated_at: string;
|
1902
2002
|
eventTickets: {
|
1903
2003
|
id: string;
|
1904
|
-
amount: number;
|
2004
|
+
amount: number | null;
|
1905
2005
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1906
2006
|
price: number | null;
|
1907
2007
|
}[];
|
@@ -1953,10 +2053,36 @@ export interface components {
|
|
1953
2053
|
} | null;
|
1954
2054
|
eventTickets: {
|
1955
2055
|
id: string;
|
1956
|
-
amount: number;
|
2056
|
+
amount: number | null;
|
1957
2057
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1958
2058
|
price: number | null;
|
1959
2059
|
}[];
|
2060
|
+
tags: {
|
2061
|
+
id: string;
|
2062
|
+
name: string;
|
2063
|
+
groupId: string;
|
2064
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
2065
|
+
created_at: string;
|
2066
|
+
updated_at: string;
|
2067
|
+
group: {
|
2068
|
+
id: string;
|
2069
|
+
name: string;
|
2070
|
+
color: string;
|
2071
|
+
isExclusive: boolean;
|
2072
|
+
created_at: string;
|
2073
|
+
updated_at: string;
|
2074
|
+
};
|
2075
|
+
}[];
|
2076
|
+
tickets: {
|
2077
|
+
id: string;
|
2078
|
+
eventId: string;
|
2079
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2080
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2081
|
+
fullName: string;
|
2082
|
+
mail: string;
|
2083
|
+
created_at: string;
|
2084
|
+
updated_at: string;
|
2085
|
+
}[];
|
1960
2086
|
};
|
1961
2087
|
UpdateEventDto: {
|
1962
2088
|
name: string;
|
@@ -1965,6 +2091,7 @@ export interface components {
|
|
1965
2091
|
location: string;
|
1966
2092
|
startingDate: string;
|
1967
2093
|
endingDate: string;
|
2094
|
+
tagsId: string[];
|
1968
2095
|
subEvents: {
|
1969
2096
|
name: string;
|
1970
2097
|
location: string;
|
@@ -1974,7 +2101,7 @@ export interface components {
|
|
1974
2101
|
id: string | "";
|
1975
2102
|
}[];
|
1976
2103
|
eventTickets: {
|
1977
|
-
amount: number;
|
2104
|
+
amount: number | null;
|
1978
2105
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1979
2106
|
price: number | null;
|
1980
2107
|
}[];
|
@@ -2011,7 +2138,7 @@ export interface components {
|
|
2011
2138
|
};
|
2012
2139
|
eventTickets: {
|
2013
2140
|
id: string;
|
2014
|
-
amount: number;
|
2141
|
+
amount: number | null;
|
2015
2142
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2016
2143
|
price: number | null;
|
2017
2144
|
}[];
|
@@ -2035,6 +2162,7 @@ export interface components {
|
|
2035
2162
|
profiles: {
|
2036
2163
|
id: string;
|
2037
2164
|
shortId: number;
|
2165
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2038
2166
|
firstTimeMiExpo: boolean;
|
2039
2167
|
username: string | null;
|
2040
2168
|
password: string | null;
|
@@ -2074,6 +2202,7 @@ export interface components {
|
|
2074
2202
|
profiles: {
|
2075
2203
|
id: string;
|
2076
2204
|
shortId: number;
|
2205
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2077
2206
|
firstTimeMiExpo: boolean;
|
2078
2207
|
username: string | null;
|
2079
2208
|
password: string | null;
|
@@ -2131,6 +2260,7 @@ export interface components {
|
|
2131
2260
|
profiles: {
|
2132
2261
|
id: string;
|
2133
2262
|
shortId: number;
|
2263
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2134
2264
|
firstTimeMiExpo: boolean;
|
2135
2265
|
username: string | null;
|
2136
2266
|
password: string | null;
|
@@ -2161,6 +2291,8 @@ export interface components {
|
|
2161
2291
|
updated_at: string;
|
2162
2292
|
group: {
|
2163
2293
|
isExclusive: boolean;
|
2294
|
+
name: string;
|
2295
|
+
color: string;
|
2164
2296
|
};
|
2165
2297
|
}[];
|
2166
2298
|
}[];
|
@@ -2169,6 +2301,7 @@ export interface components {
|
|
2169
2301
|
profiles: {
|
2170
2302
|
id: string;
|
2171
2303
|
shortId: number;
|
2304
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2172
2305
|
firstTimeMiExpo: boolean;
|
2173
2306
|
username: string | null;
|
2174
2307
|
password: string | null;
|
@@ -2204,6 +2337,7 @@ export interface components {
|
|
2204
2337
|
[key: string]: {
|
2205
2338
|
id: string;
|
2206
2339
|
shortId: number;
|
2340
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2207
2341
|
firstTimeMiExpo: boolean;
|
2208
2342
|
username: string | null;
|
2209
2343
|
password: string | null;
|
@@ -2241,6 +2375,7 @@ export interface components {
|
|
2241
2375
|
FindByPhoneNumberResponseDto: {
|
2242
2376
|
id: string;
|
2243
2377
|
shortId: number;
|
2378
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2244
2379
|
firstTimeMiExpo: boolean;
|
2245
2380
|
username: string | null;
|
2246
2381
|
password: string | null;
|
@@ -2330,6 +2465,7 @@ export interface components {
|
|
2330
2465
|
FindByIdProfileResponseDto: {
|
2331
2466
|
id: string;
|
2332
2467
|
shortId: number;
|
2468
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2333
2469
|
firstTimeMiExpo: boolean;
|
2334
2470
|
username: string | null;
|
2335
2471
|
phoneNumber: string;
|
@@ -2387,6 +2523,7 @@ export interface components {
|
|
2387
2523
|
DeleteProfileResponseDto: {
|
2388
2524
|
id: string;
|
2389
2525
|
shortId: number;
|
2526
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2390
2527
|
firstTimeMiExpo: boolean;
|
2391
2528
|
username: string | null;
|
2392
2529
|
password: string | null;
|
@@ -2557,6 +2694,7 @@ export interface components {
|
|
2557
2694
|
status: "BOOKED" | "PAID" | "FREE";
|
2558
2695
|
fullName: string;
|
2559
2696
|
mail: string;
|
2697
|
+
profileId?: string;
|
2560
2698
|
};
|
2561
2699
|
CreateTicketResponseDto: {
|
2562
2700
|
id: string;
|
@@ -2567,6 +2705,21 @@ export interface components {
|
|
2567
2705
|
mail: string;
|
2568
2706
|
created_at: string;
|
2569
2707
|
updated_at: string;
|
2708
|
+
event: {
|
2709
|
+
id: string;
|
2710
|
+
name: string;
|
2711
|
+
date: string;
|
2712
|
+
startingDate: string;
|
2713
|
+
endingDate: string;
|
2714
|
+
location: string;
|
2715
|
+
folderId: string | null;
|
2716
|
+
tagAssistedId: string;
|
2717
|
+
tagConfirmedId: string;
|
2718
|
+
active: boolean;
|
2719
|
+
supraEventId: string | null;
|
2720
|
+
created_at: string;
|
2721
|
+
updated_at: string;
|
2722
|
+
};
|
2570
2723
|
};
|
2571
2724
|
FindAllTicketsResponseDto: {
|
2572
2725
|
tickets: {
|
@@ -2600,6 +2753,32 @@ export interface components {
|
|
2600
2753
|
date: string;
|
2601
2754
|
location: string;
|
2602
2755
|
};
|
2756
|
+
profile: {
|
2757
|
+
id: string;
|
2758
|
+
shortId: number;
|
2759
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2760
|
+
firstTimeMiExpo: boolean;
|
2761
|
+
username: string | null;
|
2762
|
+
password: string | null;
|
2763
|
+
phoneNumber: string;
|
2764
|
+
isPhoneVerified: boolean;
|
2765
|
+
secondaryPhoneNumber: string | null;
|
2766
|
+
fullName: string;
|
2767
|
+
firstName: string | null;
|
2768
|
+
gender: string | null;
|
2769
|
+
birthDate: string | null;
|
2770
|
+
profilePictureUrl: string | null;
|
2771
|
+
instagram: string | null;
|
2772
|
+
mail: string | null;
|
2773
|
+
dni: string | null;
|
2774
|
+
alternativeNames: string[];
|
2775
|
+
birthLocationId: string | null;
|
2776
|
+
residenceLocationId: string | null;
|
2777
|
+
isInTrash: boolean;
|
2778
|
+
movedToTrashDate: string | null;
|
2779
|
+
created_at: string;
|
2780
|
+
updated_at: string;
|
2781
|
+
} | null;
|
2603
2782
|
};
|
2604
2783
|
};
|
2605
2784
|
FindByMailTicketResponseDto: {
|
@@ -2617,6 +2796,32 @@ export interface components {
|
|
2617
2796
|
date: string;
|
2618
2797
|
location: string;
|
2619
2798
|
};
|
2799
|
+
profile: {
|
2800
|
+
id: string;
|
2801
|
+
shortId: number;
|
2802
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2803
|
+
firstTimeMiExpo: boolean;
|
2804
|
+
username: string | null;
|
2805
|
+
password: string | null;
|
2806
|
+
phoneNumber: string;
|
2807
|
+
isPhoneVerified: boolean;
|
2808
|
+
secondaryPhoneNumber: string | null;
|
2809
|
+
fullName: string;
|
2810
|
+
firstName: string | null;
|
2811
|
+
gender: string | null;
|
2812
|
+
birthDate: string | null;
|
2813
|
+
profilePictureUrl: string | null;
|
2814
|
+
instagram: string | null;
|
2815
|
+
mail: string | null;
|
2816
|
+
dni: string | null;
|
2817
|
+
alternativeNames: string[];
|
2818
|
+
birthLocationId: string | null;
|
2819
|
+
residenceLocationId: string | null;
|
2820
|
+
isInTrash: boolean;
|
2821
|
+
movedToTrashDate: string | null;
|
2822
|
+
created_at: string;
|
2823
|
+
updated_at: string;
|
2824
|
+
} | null;
|
2620
2825
|
}[];
|
2621
2826
|
};
|
2622
2827
|
FindByEventTicketResponseDto: {
|
@@ -2634,6 +2839,59 @@ export interface components {
|
|
2634
2839
|
date: string;
|
2635
2840
|
location: string;
|
2636
2841
|
};
|
2842
|
+
profile: {
|
2843
|
+
id: string;
|
2844
|
+
shortId: number;
|
2845
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2846
|
+
firstTimeMiExpo: boolean;
|
2847
|
+
username: string | null;
|
2848
|
+
password: string | null;
|
2849
|
+
phoneNumber: string;
|
2850
|
+
isPhoneVerified: boolean;
|
2851
|
+
secondaryPhoneNumber: string | null;
|
2852
|
+
fullName: string;
|
2853
|
+
firstName: string | null;
|
2854
|
+
gender: string | null;
|
2855
|
+
birthDate: string | null;
|
2856
|
+
profilePictureUrl: string | null;
|
2857
|
+
instagram: string | null;
|
2858
|
+
mail: string | null;
|
2859
|
+
dni: string | null;
|
2860
|
+
alternativeNames: string[];
|
2861
|
+
birthLocationId: string | null;
|
2862
|
+
residenceLocationId: string | null;
|
2863
|
+
isInTrash: boolean;
|
2864
|
+
movedToTrashDate: string | null;
|
2865
|
+
created_at: string;
|
2866
|
+
updated_at: string;
|
2867
|
+
} | null;
|
2868
|
+
}[];
|
2869
|
+
};
|
2870
|
+
FindByProfileIdTicketResponseDto: {
|
2871
|
+
tickets: {
|
2872
|
+
id: string;
|
2873
|
+
eventId: string;
|
2874
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2875
|
+
status: "BOOKED" | "PAID" | "FREE";
|
2876
|
+
fullName: string;
|
2877
|
+
mail: string;
|
2878
|
+
created_at: string;
|
2879
|
+
updated_at: string;
|
2880
|
+
event: {
|
2881
|
+
id: string;
|
2882
|
+
name: string;
|
2883
|
+
date: string;
|
2884
|
+
startingDate: string;
|
2885
|
+
endingDate: string;
|
2886
|
+
location: string;
|
2887
|
+
folderId: string | null;
|
2888
|
+
tagAssistedId: string;
|
2889
|
+
tagConfirmedId: string;
|
2890
|
+
active: boolean;
|
2891
|
+
supraEventId: string | null;
|
2892
|
+
created_at: string;
|
2893
|
+
updated_at: string;
|
2894
|
+
};
|
2637
2895
|
}[];
|
2638
2896
|
};
|
2639
2897
|
UpdateTicketDto: {
|
@@ -2672,6 +2930,9 @@ export interface components {
|
|
2672
2930
|
created_at: string;
|
2673
2931
|
updated_at: string;
|
2674
2932
|
};
|
2933
|
+
SendEmailResponseDto: {
|
2934
|
+
mailId: string;
|
2935
|
+
};
|
2675
2936
|
SendOtpDto: {
|
2676
2937
|
phoneNumber: string;
|
2677
2938
|
};
|
@@ -2696,6 +2957,7 @@ export interface components {
|
|
2696
2957
|
profile: {
|
2697
2958
|
id: string;
|
2698
2959
|
shortId: number;
|
2960
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2699
2961
|
firstTimeMiExpo: boolean;
|
2700
2962
|
username: string | null;
|
2701
2963
|
password: string | null;
|
@@ -2743,6 +3005,7 @@ export interface components {
|
|
2743
3005
|
profile: {
|
2744
3006
|
id: string;
|
2745
3007
|
shortId: number;
|
3008
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2746
3009
|
firstTimeMiExpo: boolean;
|
2747
3010
|
username: string | null;
|
2748
3011
|
phoneNumber: string;
|
@@ -2768,6 +3031,7 @@ export interface components {
|
|
2768
3031
|
GetMiExpoMeResponseDto: {
|
2769
3032
|
id: string;
|
2770
3033
|
shortId: number;
|
3034
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2771
3035
|
firstTimeMiExpo: boolean;
|
2772
3036
|
username: string | null;
|
2773
3037
|
phoneNumber: string;
|
@@ -2835,6 +3099,17 @@ export interface components {
|
|
2835
3099
|
state: string;
|
2836
3100
|
};
|
2837
3101
|
};
|
3102
|
+
GetInvitationsResponseDto: {
|
3103
|
+
events: {
|
3104
|
+
date: string;
|
3105
|
+
startingDate: string;
|
3106
|
+
endingDate: string;
|
3107
|
+
name: string;
|
3108
|
+
location: string;
|
3109
|
+
id: string;
|
3110
|
+
active: boolean;
|
3111
|
+
}[];
|
3112
|
+
};
|
2838
3113
|
LoginMiExpoDto: {
|
2839
3114
|
username: string;
|
2840
3115
|
password: string;
|
@@ -2843,6 +3118,7 @@ export interface components {
|
|
2843
3118
|
user: {
|
2844
3119
|
id: string;
|
2845
3120
|
shortId: number;
|
3121
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
2846
3122
|
firstTimeMiExpo: boolean;
|
2847
3123
|
username: string | null;
|
2848
3124
|
phoneNumber: string;
|
@@ -4825,6 +5101,14 @@ export interface operations {
|
|
4825
5101
|
"application/json": components["schemas"]["ErrorDto"];
|
4826
5102
|
};
|
4827
5103
|
};
|
5104
|
+
409: {
|
5105
|
+
headers: {
|
5106
|
+
[name: string]: unknown;
|
5107
|
+
};
|
5108
|
+
content: {
|
5109
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5110
|
+
};
|
5111
|
+
};
|
4828
5112
|
};
|
4829
5113
|
};
|
4830
5114
|
TicketController_findAll: {
|
@@ -4925,6 +5209,35 @@ export interface operations {
|
|
4925
5209
|
};
|
4926
5210
|
};
|
4927
5211
|
};
|
5212
|
+
TicketController_findByProfileId: {
|
5213
|
+
parameters: {
|
5214
|
+
query?: never;
|
5215
|
+
header?: never;
|
5216
|
+
path: {
|
5217
|
+
profileId: string;
|
5218
|
+
};
|
5219
|
+
cookie?: never;
|
5220
|
+
};
|
5221
|
+
requestBody?: never;
|
5222
|
+
responses: {
|
5223
|
+
200: {
|
5224
|
+
headers: {
|
5225
|
+
[name: string]: unknown;
|
5226
|
+
};
|
5227
|
+
content: {
|
5228
|
+
"application/json": components["schemas"]["FindByProfileIdTicketResponseDto"];
|
5229
|
+
};
|
5230
|
+
};
|
5231
|
+
404: {
|
5232
|
+
headers: {
|
5233
|
+
[name: string]: unknown;
|
5234
|
+
};
|
5235
|
+
content: {
|
5236
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5237
|
+
};
|
5238
|
+
};
|
5239
|
+
};
|
5240
|
+
};
|
4928
5241
|
TicketController_update: {
|
4929
5242
|
parameters: {
|
4930
5243
|
query?: never;
|
@@ -5061,6 +5374,43 @@ export interface operations {
|
|
5061
5374
|
};
|
5062
5375
|
};
|
5063
5376
|
};
|
5377
|
+
TicketController_sendEmail: {
|
5378
|
+
parameters: {
|
5379
|
+
query?: never;
|
5380
|
+
header?: never;
|
5381
|
+
path: {
|
5382
|
+
id: string;
|
5383
|
+
};
|
5384
|
+
cookie?: never;
|
5385
|
+
};
|
5386
|
+
requestBody?: never;
|
5387
|
+
responses: {
|
5388
|
+
200: {
|
5389
|
+
headers: {
|
5390
|
+
[name: string]: unknown;
|
5391
|
+
};
|
5392
|
+
content: {
|
5393
|
+
"application/json": components["schemas"]["SendEmailResponseDto"];
|
5394
|
+
};
|
5395
|
+
};
|
5396
|
+
401: {
|
5397
|
+
headers: {
|
5398
|
+
[name: string]: unknown;
|
5399
|
+
};
|
5400
|
+
content: {
|
5401
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5402
|
+
};
|
5403
|
+
};
|
5404
|
+
404: {
|
5405
|
+
headers: {
|
5406
|
+
[name: string]: unknown;
|
5407
|
+
};
|
5408
|
+
content: {
|
5409
|
+
"application/json": components["schemas"]["ErrorDto"];
|
5410
|
+
};
|
5411
|
+
};
|
5412
|
+
};
|
5413
|
+
};
|
5064
5414
|
WebhookController_verify: {
|
5065
5415
|
parameters: {
|
5066
5416
|
query: {
|
@@ -5266,6 +5616,44 @@ export interface operations {
|
|
5266
5616
|
};
|
5267
5617
|
};
|
5268
5618
|
};
|
5619
|
+
MiExpoController_invitations: {
|
5620
|
+
parameters: {
|
5621
|
+
query?: never;
|
5622
|
+
header?: never;
|
5623
|
+
path?: never;
|
5624
|
+
cookie?: never;
|
5625
|
+
};
|
5626
|
+
requestBody?: never;
|
5627
|
+
responses: {
|
5628
|
+
200: {
|
5629
|
+
headers: {
|
5630
|
+
[name: string]: unknown;
|
5631
|
+
};
|
5632
|
+
content: {
|
5633
|
+
"application/json": components["schemas"]["GetInvitationsResponseDto"];
|
5634
|
+
};
|
5635
|
+
};
|
5636
|
+
};
|
5637
|
+
};
|
5638
|
+
MiExpoController_tickets: {
|
5639
|
+
parameters: {
|
5640
|
+
query?: never;
|
5641
|
+
header?: never;
|
5642
|
+
path?: never;
|
5643
|
+
cookie?: never;
|
5644
|
+
};
|
5645
|
+
requestBody?: never;
|
5646
|
+
responses: {
|
5647
|
+
200: {
|
5648
|
+
headers: {
|
5649
|
+
[name: string]: unknown;
|
5650
|
+
};
|
5651
|
+
content: {
|
5652
|
+
"application/json": components["schemas"]["FindByProfileIdTicketResponseDto"];
|
5653
|
+
};
|
5654
|
+
};
|
5655
|
+
};
|
5656
|
+
};
|
5269
5657
|
MiExpoController_loginUsernamePassword: {
|
5270
5658
|
parameters: {
|
5271
5659
|
query?: never;
|