expo-backend-types 0.32.0-EXPO-315-Marcelo-Tinelli.3 → 0.33.0-EXPO-308-auth.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 +2 -115
- package/dist/src/event/dto/create-event.dto.js +0 -8
- package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
- package/dist/src/event/dto/event.dto.d.ts +0 -9
- package/dist/src/event/dto/event.dto.js +0 -9
- package/dist/src/event/dto/get-all-event.dto.d.ts +160 -424
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -208
- package/dist/src/event/dto/get-by-id-event.dto.js +0 -2
- package/dist/src/event/dto/update-event.dto.d.ts +22 -193
- package/dist/src/event/dto/update-event.dto.js +0 -9
- package/dist/src/event/exports.d.ts +0 -3
- package/dist/src/event/exports.js +0 -3
- package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
- package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
- package/dist/src/exports.d.ts +3 -2
- package/dist/src/exports.js +3 -2
- package/dist/src/i18n/es.d.ts +20 -88
- package/dist/src/i18n/es.js +20 -88
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/image/constants.d.ts +5 -0
- package/dist/src/image/constants.js +9 -0
- package/dist/src/location/dto/find-all-location.dto.js +2 -2
- package/dist/src/location/exports.d.ts +0 -1
- package/dist/src/location/exports.js +0 -1
- package/dist/src/message/dto/non-read-messages.dto.d.ts +2 -2
- package/dist/src/message/dto/non-read-messages.dto.js +2 -2
- package/dist/src/message/dto/send-message-to-phone.dto.d.ts +2 -2
- package/dist/src/message/dto/send-message-to-phone.dto.js +2 -2
- package/dist/src/message/dto/template.dto.d.ts +2 -2
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +337 -0
- package/dist/src/mi-expo/dto/get-me.dto.js +16 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +311 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.js +29 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +327 -0
- package/dist/src/mi-expo/dto/login.dto.js +31 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +352 -0
- package/dist/src/mi-expo/dto/update-me.dto.js +31 -0
- package/dist/src/mi-expo/exports.d.ts +4 -0
- package/dist/src/{ticket → mi-expo}/exports.js +4 -10
- package/dist/src/otp/constants.d.ts +2 -0
- package/dist/src/otp/constants.js +6 -0
- package/dist/src/otp/dto/send-otp.dto.d.ts +158 -0
- package/dist/src/otp/dto/send-otp.dto.js +35 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +455 -0
- package/dist/src/otp/dto/verify-otp.dto.js +46 -0
- package/dist/src/otp/exports.d.ts +2 -0
- package/dist/src/otp/exports.js +19 -0
- package/dist/src/prisma/constants.d.ts +1 -0
- package/dist/src/prisma/constants.js +5 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +48 -14
- package/dist/src/profile/dto/create-profile.dto.js +9 -7
- package/dist/src/profile/dto/delete-profile.dto.d.ts +30 -6
- package/dist/src/profile/dto/delete-profile.dto.js +2 -2
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +47 -7
- package/dist/src/profile/dto/find-all-profile.dto.js +2 -2
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +75 -11
- package/dist/src/profile/dto/find-by-date-range-profile.dto.js +3 -3
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +32 -13
- package/dist/src/profile/dto/find-by-id-profile.dto.js +7 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +30 -6
- package/dist/src/profile/dto/find-by-phone-number.dto.js +2 -2
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +47 -7
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +2 -2
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +47 -7
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -2
- package/dist/src/profile/dto/find-trash.dto.d.ts +7 -3
- package/dist/src/profile/dto/find-trash.dto.js +2 -2
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +47 -7
- package/dist/src/profile/dto/find-with-active-chat.dto.js +2 -2
- package/dist/src/profile/dto/profile.dto.d.ts +44 -30
- package/dist/src/profile/dto/profile.dto.js +6 -63
- package/dist/src/profile/dto/update-profile.dto.d.ts +54 -12
- package/dist/src/profile/dto/update-profile.dto.js +9 -6
- package/dist/src/schema/exports.d.ts +2 -0
- package/dist/src/schema/exports.js +19 -0
- package/dist/src/{location/dto/location.dto.js → schema/location.schema.js} +2 -2
- package/dist/src/schema/profile.schema.d.ts +74 -0
- package/dist/src/schema/profile.schema.js +133 -0
- package/dist/src/shared/dto-modification/zod-without-dates.d.ts +2 -4
- package/dist/src/shared/dto-modification/zod-without-dates.js +8 -0
- package/dist/src/shared/dto-modification/zod-without-dates.js.map +1 -1
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +47 -7
- package/dist/src/tag/dto/massive-allocation.dto.js +3 -3
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +47 -7
- package/dist/src/tag/dto/massive-deallocation.dto.js +3 -3
- package/dist/src/webhook/constants.d.ts +1 -0
- package/dist/src/webhook/constants.js +5 -0
- package/dist/types/prisma-schema/edge.js +39 -63
- package/dist/types/prisma-schema/index-browser.js +19 -48
- package/dist/types/prisma-schema/index.d.ts +6259 -6808
- package/dist/types/prisma-schema/index.js +39 -63
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +8 -2
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
- package/dist/types/prisma-schema/runtime/edge.js +18 -18
- package/dist/types/prisma-schema/runtime/index-browser.d.ts +3 -1
- package/dist/types/prisma-schema/runtime/index-browser.js +3 -3
- package/dist/types/prisma-schema/runtime/library.d.ts +205 -153
- package/dist/types/prisma-schema/runtime/library.js +55 -55
- package/dist/types/prisma-schema/runtime/react-native.js +26 -26
- package/dist/types/prisma-schema/runtime/wasm.js +17 -17
- package/dist/types/prisma-schema/schema.prisma +27 -58
- package/dist/types/prisma-schema/wasm.js +19 -48
- package/dist/types/schema.d.ts +313 -531
- package/package.json +32 -41
- package/dist/src/event/dto/event-tickets.dto.d.ts +0 -21
- package/dist/src/event/dto/event-tickets.dto.js +0 -21
- package/dist/src/event/dto/get-active-events.dto.d.ts +0 -247
- package/dist/src/event/dto/get-active-events.dto.js +0 -19
- package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -43
- package/dist/src/event/dto/toggle-active-event.dto.js +0 -6
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -134
- package/dist/src/ticket/dto/create-ticket.dto.js +0 -20
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -75
- package/dist/src/ticket/dto/delete-ticket.dto.js +0 -10
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -201
- package/dist/src/ticket/dto/find-all-tickets.dto.js +0 -23
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -201
- package/dist/src/ticket/dto/find-by-event-ticket.dto.js +0 -23
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -201
- package/dist/src/ticket/dto/find-by-id-ticket.dto.js +0 -20
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -201
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +0 -23
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -75
- package/dist/src/ticket/dto/find-ticket.dto.js +0 -10
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +0 -7
- package/dist/src/ticket/dto/generate-pdf.dto.js +0 -13
- package/dist/src/ticket/dto/ticket.dto.d.ts +0 -76
- package/dist/src/ticket/dto/ticket.dto.js +0 -29
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -125
- package/dist/src/ticket/dto/update-ticket.dto.js +0 -21
- package/dist/src/ticket/exports.d.ts +0 -10
- /package/dist/src/{location/dto/location.dto.d.ts → schema/location.schema.d.ts} +0 -0
package/dist/types/schema.d.ts
CHANGED
@@ -8,7 +8,7 @@ export interface paths {
|
|
8
8
|
};
|
9
9
|
get?: never;
|
10
10
|
put?: never;
|
11
|
-
post: operations["
|
11
|
+
post: operations["AuthController_loginAccount"];
|
12
12
|
delete?: never;
|
13
13
|
options?: never;
|
14
14
|
head?: never;
|
@@ -543,22 +543,6 @@ export interface paths {
|
|
543
543
|
patch?: never;
|
544
544
|
trace?: never;
|
545
545
|
};
|
546
|
-
"/event/find-active": {
|
547
|
-
parameters: {
|
548
|
-
query?: never;
|
549
|
-
header?: never;
|
550
|
-
path?: never;
|
551
|
-
cookie?: never;
|
552
|
-
};
|
553
|
-
get: operations["EventController_getActive"];
|
554
|
-
put?: never;
|
555
|
-
post?: never;
|
556
|
-
delete?: never;
|
557
|
-
options?: never;
|
558
|
-
head?: never;
|
559
|
-
patch?: never;
|
560
|
-
trace?: never;
|
561
|
-
};
|
562
546
|
"/event/{id}": {
|
563
547
|
parameters: {
|
564
548
|
query?: never;
|
@@ -575,22 +559,6 @@ export interface paths {
|
|
575
559
|
patch: operations["EventController_update"];
|
576
560
|
trace?: never;
|
577
561
|
};
|
578
|
-
"/event/toggle-active/{id}": {
|
579
|
-
parameters: {
|
580
|
-
query?: never;
|
581
|
-
header?: never;
|
582
|
-
path?: never;
|
583
|
-
cookie?: never;
|
584
|
-
};
|
585
|
-
get?: never;
|
586
|
-
put?: never;
|
587
|
-
post: operations["EventController_toggleActive"];
|
588
|
-
delete?: never;
|
589
|
-
options?: never;
|
590
|
-
head?: never;
|
591
|
-
patch?: never;
|
592
|
-
trace?: never;
|
593
|
-
};
|
594
562
|
"/profile/all": {
|
595
563
|
parameters: {
|
596
564
|
query?: never;
|
@@ -774,9 +742,9 @@ export interface paths {
|
|
774
742
|
path?: never;
|
775
743
|
cookie?: never;
|
776
744
|
};
|
777
|
-
get
|
745
|
+
get: operations["CsvController_downloadProfiles"];
|
778
746
|
put?: never;
|
779
|
-
post
|
747
|
+
post?: never;
|
780
748
|
delete?: never;
|
781
749
|
options?: never;
|
782
750
|
head?: never;
|
@@ -790,9 +758,9 @@ export interface paths {
|
|
790
758
|
path?: never;
|
791
759
|
cookie?: never;
|
792
760
|
};
|
793
|
-
get
|
761
|
+
get: operations["CsvController_downloadAllTables"];
|
794
762
|
put?: never;
|
795
|
-
post
|
763
|
+
post?: never;
|
796
764
|
delete?: never;
|
797
765
|
options?: never;
|
798
766
|
head?: never;
|
@@ -959,87 +927,39 @@ export interface paths {
|
|
959
927
|
patch?: never;
|
960
928
|
trace?: never;
|
961
929
|
};
|
962
|
-
"/
|
963
|
-
parameters: {
|
964
|
-
query?: never;
|
965
|
-
header?: never;
|
966
|
-
path?: never;
|
967
|
-
cookie?: never;
|
968
|
-
};
|
969
|
-
get?: never;
|
970
|
-
put?: never;
|
971
|
-
post: operations["TicketController_create"];
|
972
|
-
delete?: never;
|
973
|
-
options?: never;
|
974
|
-
head?: never;
|
975
|
-
patch?: never;
|
976
|
-
trace?: never;
|
977
|
-
};
|
978
|
-
"/ticket/all": {
|
979
|
-
parameters: {
|
980
|
-
query?: never;
|
981
|
-
header?: never;
|
982
|
-
path?: never;
|
983
|
-
cookie?: never;
|
984
|
-
};
|
985
|
-
get: operations["TicketController_findAll"];
|
986
|
-
put?: never;
|
987
|
-
post?: never;
|
988
|
-
delete?: never;
|
989
|
-
options?: never;
|
990
|
-
head?: never;
|
991
|
-
patch?: never;
|
992
|
-
trace?: never;
|
993
|
-
};
|
994
|
-
"/ticket/find-by-id/{id}": {
|
995
|
-
parameters: {
|
996
|
-
query?: never;
|
997
|
-
header?: never;
|
998
|
-
path?: never;
|
999
|
-
cookie?: never;
|
1000
|
-
};
|
1001
|
-
get: operations["TicketController_findById"];
|
1002
|
-
put?: never;
|
1003
|
-
post?: never;
|
1004
|
-
delete?: never;
|
1005
|
-
options?: never;
|
1006
|
-
head?: never;
|
1007
|
-
patch?: never;
|
1008
|
-
trace?: never;
|
1009
|
-
};
|
1010
|
-
"/ticket/find-by-mail/{mail}": {
|
930
|
+
"/webhook": {
|
1011
931
|
parameters: {
|
1012
932
|
query?: never;
|
1013
933
|
header?: never;
|
1014
934
|
path?: never;
|
1015
935
|
cookie?: never;
|
1016
936
|
};
|
1017
|
-
get: operations["
|
937
|
+
get: operations["WebhookController_verify"];
|
1018
938
|
put?: never;
|
1019
|
-
post
|
939
|
+
post: operations["WebhookController_receiveMessage"];
|
1020
940
|
delete?: never;
|
1021
941
|
options?: never;
|
1022
942
|
head?: never;
|
1023
943
|
patch?: never;
|
1024
944
|
trace?: never;
|
1025
945
|
};
|
1026
|
-
"/
|
946
|
+
"/otp/send": {
|
1027
947
|
parameters: {
|
1028
948
|
query?: never;
|
1029
949
|
header?: never;
|
1030
950
|
path?: never;
|
1031
951
|
cookie?: never;
|
1032
952
|
};
|
1033
|
-
get
|
953
|
+
get?: never;
|
1034
954
|
put?: never;
|
1035
|
-
post
|
955
|
+
post: operations["OtpController_sendOtp"];
|
1036
956
|
delete?: never;
|
1037
957
|
options?: never;
|
1038
958
|
head?: never;
|
1039
959
|
patch?: never;
|
1040
960
|
trace?: never;
|
1041
961
|
};
|
1042
|
-
"/
|
962
|
+
"/otp/verify": {
|
1043
963
|
parameters: {
|
1044
964
|
query?: never;
|
1045
965
|
header?: never;
|
@@ -1048,71 +968,55 @@ export interface paths {
|
|
1048
968
|
};
|
1049
969
|
get?: never;
|
1050
970
|
put?: never;
|
1051
|
-
post
|
971
|
+
post: operations["OtpController_verifyOtp"];
|
1052
972
|
delete?: never;
|
1053
973
|
options?: never;
|
1054
974
|
head?: never;
|
1055
|
-
patch: operations["TicketController_update"];
|
1056
|
-
trace?: never;
|
1057
|
-
};
|
1058
|
-
"/ticket/delete/{id}": {
|
1059
|
-
parameters: {
|
1060
|
-
query?: never;
|
1061
|
-
header?: never;
|
1062
|
-
path?: never;
|
1063
|
-
cookie?: never;
|
1064
|
-
};
|
1065
|
-
get?: never;
|
1066
|
-
put?: never;
|
1067
|
-
post?: never;
|
1068
|
-
delete: operations["TicketController_delete"];
|
1069
|
-
options?: never;
|
1070
|
-
head?: never;
|
1071
975
|
patch?: never;
|
1072
976
|
trace?: never;
|
1073
977
|
};
|
1074
|
-
"/
|
978
|
+
"/mi-expo/login-with-phone": {
|
1075
979
|
parameters: {
|
1076
980
|
query?: never;
|
1077
981
|
header?: never;
|
1078
982
|
path?: never;
|
1079
983
|
cookie?: never;
|
1080
984
|
};
|
1081
|
-
get
|
985
|
+
get?: never;
|
1082
986
|
put?: never;
|
1083
|
-
post
|
987
|
+
post: operations["MiExpoController_loginWithPhone"];
|
1084
988
|
delete?: never;
|
1085
989
|
options?: never;
|
1086
990
|
head?: never;
|
1087
991
|
patch?: never;
|
1088
992
|
trace?: never;
|
1089
993
|
};
|
1090
|
-
"/
|
994
|
+
"/mi-expo/me": {
|
1091
995
|
parameters: {
|
1092
996
|
query?: never;
|
1093
997
|
header?: never;
|
1094
998
|
path?: never;
|
1095
999
|
cookie?: never;
|
1096
1000
|
};
|
1097
|
-
get: operations["
|
1001
|
+
get: operations["MiExpoController_me"];
|
1098
1002
|
put?: never;
|
1099
1003
|
post?: never;
|
1100
1004
|
delete?: never;
|
1101
1005
|
options?: never;
|
1102
1006
|
head?: never;
|
1103
|
-
patch
|
1007
|
+
patch: operations["MiExpoController_updateMe"];
|
1104
1008
|
trace?: never;
|
1105
1009
|
};
|
1106
|
-
"/
|
1010
|
+
"/mi-expo/login": {
|
1107
1011
|
parameters: {
|
1108
1012
|
query?: never;
|
1109
1013
|
header?: never;
|
1110
1014
|
path?: never;
|
1111
1015
|
cookie?: never;
|
1112
1016
|
};
|
1113
|
-
get
|
1017
|
+
get?: never;
|
1114
1018
|
put?: never;
|
1115
|
-
post: operations["
|
1019
|
+
post: operations["MiExpoController_loginUsernamePassword"];
|
1116
1020
|
delete?: never;
|
1117
1021
|
options?: never;
|
1118
1022
|
head?: never;
|
@@ -1243,7 +1147,11 @@ export interface components {
|
|
1243
1147
|
profiles: {
|
1244
1148
|
id: string;
|
1245
1149
|
shortId: number;
|
1150
|
+
firstTimeMiExpo: boolean;
|
1151
|
+
username: string | null;
|
1152
|
+
password: string | null;
|
1246
1153
|
phoneNumber: string;
|
1154
|
+
isPhoneVerified: boolean;
|
1247
1155
|
secondaryPhoneNumber: string | null;
|
1248
1156
|
fullName: string;
|
1249
1157
|
firstName: string | null;
|
@@ -1270,7 +1178,11 @@ export interface components {
|
|
1270
1178
|
profiles: {
|
1271
1179
|
id: string;
|
1272
1180
|
shortId: number;
|
1181
|
+
firstTimeMiExpo: boolean;
|
1182
|
+
username: string | null;
|
1183
|
+
password: string | null;
|
1273
1184
|
phoneNumber: string;
|
1185
|
+
isPhoneVerified: boolean;
|
1274
1186
|
secondaryPhoneNumber: string | null;
|
1275
1187
|
fullName: string;
|
1276
1188
|
firstName: string | null;
|
@@ -1608,13 +1520,10 @@ export interface components {
|
|
1608
1520
|
id: string;
|
1609
1521
|
name: string;
|
1610
1522
|
date: string;
|
1611
|
-
startingDate: string;
|
1612
|
-
endingDate: string;
|
1613
1523
|
location: string;
|
1614
1524
|
folderId: string | null;
|
1615
1525
|
tagAssistedId: string;
|
1616
1526
|
tagConfirmedId: string;
|
1617
|
-
active: boolean;
|
1618
1527
|
supraEventId: string | null;
|
1619
1528
|
created_at: string;
|
1620
1529
|
updated_at: string;
|
@@ -1631,13 +1540,10 @@ export interface components {
|
|
1631
1540
|
id: string;
|
1632
1541
|
name: string;
|
1633
1542
|
date: string;
|
1634
|
-
startingDate: string;
|
1635
|
-
endingDate: string;
|
1636
1543
|
location: string;
|
1637
1544
|
folderId: string | null;
|
1638
1545
|
tagAssistedId: string;
|
1639
1546
|
tagConfirmedId: string;
|
1640
|
-
active: boolean;
|
1641
1547
|
supraEventId: string | null;
|
1642
1548
|
created_at: string;
|
1643
1549
|
updated_at: string;
|
@@ -1664,35 +1570,22 @@ export interface components {
|
|
1664
1570
|
CreateEventDto: {
|
1665
1571
|
name: string;
|
1666
1572
|
date: string;
|
1667
|
-
startingDate: string;
|
1668
|
-
endingDate: string;
|
1669
1573
|
location: string;
|
1670
1574
|
folderId: string | null;
|
1671
1575
|
subEvents?: {
|
1672
1576
|
name: string;
|
1673
1577
|
date: string;
|
1674
|
-
startingDate: string;
|
1675
|
-
endingDate: string;
|
1676
1578
|
location: string;
|
1677
1579
|
}[];
|
1678
|
-
tagsId: string[];
|
1679
|
-
eventTickets: {
|
1680
|
-
amount: number;
|
1681
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1682
|
-
price: number | null;
|
1683
|
-
}[];
|
1684
1580
|
};
|
1685
1581
|
CreateEventResponseDto: {
|
1686
1582
|
id: string;
|
1687
1583
|
name: string;
|
1688
1584
|
date: string;
|
1689
|
-
startingDate: string;
|
1690
|
-
endingDate: string;
|
1691
1585
|
location: string;
|
1692
1586
|
folderId: string | null;
|
1693
1587
|
tagAssistedId: string;
|
1694
1588
|
tagConfirmedId: string;
|
1695
|
-
active: boolean;
|
1696
1589
|
supraEventId: string | null;
|
1697
1590
|
created_at: string;
|
1698
1591
|
updated_at: string;
|
@@ -1708,13 +1601,10 @@ export interface components {
|
|
1708
1601
|
id: string;
|
1709
1602
|
name: string;
|
1710
1603
|
date: string;
|
1711
|
-
startingDate: string;
|
1712
|
-
endingDate: string;
|
1713
1604
|
location: string;
|
1714
1605
|
folderId: string | null;
|
1715
1606
|
tagAssistedId: string;
|
1716
1607
|
tagConfirmedId: string;
|
1717
|
-
active: boolean;
|
1718
1608
|
supraEventId: string | null;
|
1719
1609
|
created_at: string;
|
1720
1610
|
updated_at: string;
|
@@ -1722,13 +1612,10 @@ export interface components {
|
|
1722
1612
|
id: string;
|
1723
1613
|
name: string;
|
1724
1614
|
date: string;
|
1725
|
-
startingDate: string;
|
1726
|
-
endingDate: string;
|
1727
1615
|
location: string;
|
1728
1616
|
folderId: string | null;
|
1729
1617
|
tagAssistedId: string;
|
1730
1618
|
tagConfirmedId: string;
|
1731
|
-
active: boolean;
|
1732
1619
|
supraEventId: string | null;
|
1733
1620
|
created_at: string;
|
1734
1621
|
updated_at: string;
|
@@ -1737,13 +1624,10 @@ export interface components {
|
|
1737
1624
|
id: string;
|
1738
1625
|
name: string;
|
1739
1626
|
date: string;
|
1740
|
-
startingDate: string;
|
1741
|
-
endingDate: string;
|
1742
1627
|
location: string;
|
1743
1628
|
folderId: string | null;
|
1744
1629
|
tagAssistedId: string;
|
1745
1630
|
tagConfirmedId: string;
|
1746
|
-
active: boolean;
|
1747
1631
|
supraEventId: string | null;
|
1748
1632
|
created_at: string;
|
1749
1633
|
updated_at: string;
|
@@ -1754,13 +1638,10 @@ export interface components {
|
|
1754
1638
|
id: string;
|
1755
1639
|
name: string;
|
1756
1640
|
date: string;
|
1757
|
-
startingDate: string;
|
1758
|
-
endingDate: string;
|
1759
1641
|
location: string;
|
1760
1642
|
folderId: string | null;
|
1761
1643
|
tagAssistedId: string;
|
1762
1644
|
tagConfirmedId: string;
|
1763
|
-
active: boolean;
|
1764
1645
|
supraEventId: string | null;
|
1765
1646
|
created_at: string;
|
1766
1647
|
updated_at: string;
|
@@ -1768,13 +1649,10 @@ export interface components {
|
|
1768
1649
|
id: string;
|
1769
1650
|
name: string;
|
1770
1651
|
date: string;
|
1771
|
-
startingDate: string;
|
1772
|
-
endingDate: string;
|
1773
1652
|
location: string;
|
1774
1653
|
folderId: string | null;
|
1775
1654
|
tagAssistedId: string;
|
1776
1655
|
tagConfirmedId: string;
|
1777
|
-
active: boolean;
|
1778
1656
|
supraEventId: string | null;
|
1779
1657
|
created_at: string;
|
1780
1658
|
updated_at: string;
|
@@ -1783,53 +1661,24 @@ export interface components {
|
|
1783
1661
|
id: string;
|
1784
1662
|
name: string;
|
1785
1663
|
date: string;
|
1786
|
-
startingDate: string;
|
1787
|
-
endingDate: string;
|
1788
1664
|
location: string;
|
1789
1665
|
folderId: string | null;
|
1790
1666
|
tagAssistedId: string;
|
1791
1667
|
tagConfirmedId: string;
|
1792
|
-
active: boolean;
|
1793
1668
|
supraEventId: string | null;
|
1794
1669
|
created_at: string;
|
1795
1670
|
updated_at: string;
|
1796
1671
|
}[];
|
1797
1672
|
}[];
|
1798
1673
|
};
|
1799
|
-
GetActiveEventsResponseDto: {
|
1800
|
-
events: {
|
1801
|
-
id: string;
|
1802
|
-
name: string;
|
1803
|
-
date: string;
|
1804
|
-
startingDate: string;
|
1805
|
-
endingDate: string;
|
1806
|
-
location: string;
|
1807
|
-
folderId: string | null;
|
1808
|
-
tagAssistedId: string;
|
1809
|
-
tagConfirmedId: string;
|
1810
|
-
active: boolean;
|
1811
|
-
supraEventId: string | null;
|
1812
|
-
created_at: string;
|
1813
|
-
updated_at: string;
|
1814
|
-
eventTickets: {
|
1815
|
-
id: string;
|
1816
|
-
amount: number;
|
1817
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1818
|
-
price: number | null;
|
1819
|
-
}[];
|
1820
|
-
}[];
|
1821
|
-
};
|
1822
1674
|
GetByIdEventResponseDto: {
|
1823
1675
|
id: string;
|
1824
1676
|
name: string;
|
1825
1677
|
date: string;
|
1826
|
-
startingDate: string;
|
1827
|
-
endingDate: string;
|
1828
1678
|
location: string;
|
1829
1679
|
folderId: string | null;
|
1830
1680
|
tagAssistedId: string;
|
1831
1681
|
tagConfirmedId: string;
|
1832
|
-
active: boolean;
|
1833
1682
|
supraEventId: string | null;
|
1834
1683
|
created_at: string;
|
1835
1684
|
updated_at: string;
|
@@ -1837,13 +1686,10 @@ export interface components {
|
|
1837
1686
|
id: string;
|
1838
1687
|
name: string;
|
1839
1688
|
date: string;
|
1840
|
-
startingDate: string;
|
1841
|
-
endingDate: string;
|
1842
1689
|
location: string;
|
1843
1690
|
folderId: string | null;
|
1844
1691
|
tagAssistedId: string;
|
1845
1692
|
tagConfirmedId: string;
|
1846
|
-
active: boolean;
|
1847
1693
|
supraEventId: string | null;
|
1848
1694
|
created_at: string;
|
1849
1695
|
updated_at: string;
|
@@ -1852,56 +1698,35 @@ export interface components {
|
|
1852
1698
|
id: string;
|
1853
1699
|
name: string;
|
1854
1700
|
date: string;
|
1855
|
-
startingDate: string;
|
1856
|
-
endingDate: string;
|
1857
1701
|
location: string;
|
1858
1702
|
folderId: string | null;
|
1859
1703
|
tagAssistedId: string;
|
1860
1704
|
tagConfirmedId: string;
|
1861
|
-
active: boolean;
|
1862
1705
|
supraEventId: string | null;
|
1863
1706
|
created_at: string;
|
1864
1707
|
updated_at: string;
|
1865
1708
|
} | null;
|
1866
|
-
eventTickets: {
|
1867
|
-
id: string;
|
1868
|
-
amount: number;
|
1869
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1870
|
-
price: number | null;
|
1871
|
-
}[];
|
1872
1709
|
};
|
1873
1710
|
UpdateEventDto: {
|
1874
1711
|
name: string;
|
1875
1712
|
folderId: string | null;
|
1876
1713
|
date: string;
|
1877
1714
|
location: string;
|
1878
|
-
startingDate: string;
|
1879
|
-
endingDate: string;
|
1880
1715
|
subEvents: {
|
1881
1716
|
name: string;
|
1882
1717
|
location: string;
|
1883
1718
|
date: string;
|
1884
|
-
startingDate: string;
|
1885
|
-
endingDate: string;
|
1886
1719
|
id: string | "";
|
1887
1720
|
}[];
|
1888
|
-
eventTickets: {
|
1889
|
-
amount: number;
|
1890
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1891
|
-
price: number | null;
|
1892
|
-
}[];
|
1893
1721
|
};
|
1894
1722
|
UpdateEventResponseDto: {
|
1895
1723
|
id: string;
|
1896
1724
|
name: string;
|
1897
1725
|
date: string;
|
1898
|
-
startingDate: string;
|
1899
|
-
endingDate: string;
|
1900
1726
|
location: string;
|
1901
1727
|
folderId: string | null;
|
1902
1728
|
tagAssistedId: string;
|
1903
1729
|
tagConfirmedId: string;
|
1904
|
-
active: boolean;
|
1905
1730
|
supraEventId: string | null;
|
1906
1731
|
created_at: string;
|
1907
1732
|
updated_at: string;
|
@@ -1921,24 +1746,15 @@ export interface components {
|
|
1921
1746
|
updated_at: string;
|
1922
1747
|
};
|
1923
1748
|
};
|
1924
|
-
eventTickets: {
|
1925
|
-
id: string;
|
1926
|
-
amount: number;
|
1927
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
1928
|
-
price: number | null;
|
1929
|
-
}[];
|
1930
1749
|
};
|
1931
1750
|
DeleteEventResponseDto: {
|
1932
1751
|
id: string;
|
1933
1752
|
name: string;
|
1934
1753
|
date: string;
|
1935
|
-
startingDate: string;
|
1936
|
-
endingDate: string;
|
1937
1754
|
location: string;
|
1938
1755
|
folderId: string | null;
|
1939
1756
|
tagAssistedId: string;
|
1940
1757
|
tagConfirmedId: string;
|
1941
|
-
active: boolean;
|
1942
1758
|
supraEventId: string | null;
|
1943
1759
|
created_at: string;
|
1944
1760
|
updated_at: string;
|
@@ -1947,7 +1763,11 @@ export interface components {
|
|
1947
1763
|
profiles: {
|
1948
1764
|
id: string;
|
1949
1765
|
shortId: number;
|
1766
|
+
firstTimeMiExpo: boolean;
|
1767
|
+
username: string | null;
|
1768
|
+
password: string | null;
|
1950
1769
|
phoneNumber: string;
|
1770
|
+
isPhoneVerified: boolean;
|
1951
1771
|
secondaryPhoneNumber: string | null;
|
1952
1772
|
fullName: string;
|
1953
1773
|
firstName: string | null;
|
@@ -1982,7 +1802,11 @@ export interface components {
|
|
1982
1802
|
profiles: {
|
1983
1803
|
id: string;
|
1984
1804
|
shortId: number;
|
1805
|
+
firstTimeMiExpo: boolean;
|
1806
|
+
username: string | null;
|
1807
|
+
password: string | null;
|
1985
1808
|
phoneNumber: string;
|
1809
|
+
isPhoneVerified: boolean;
|
1986
1810
|
secondaryPhoneNumber: string | null;
|
1987
1811
|
fullName: string;
|
1988
1812
|
firstName: string | null;
|
@@ -2035,7 +1859,11 @@ export interface components {
|
|
2035
1859
|
profiles: {
|
2036
1860
|
id: string;
|
2037
1861
|
shortId: number;
|
1862
|
+
firstTimeMiExpo: boolean;
|
1863
|
+
username: string | null;
|
1864
|
+
password: string | null;
|
2038
1865
|
phoneNumber: string;
|
1866
|
+
isPhoneVerified: boolean;
|
2039
1867
|
secondaryPhoneNumber: string | null;
|
2040
1868
|
fullName: string;
|
2041
1869
|
firstName: string | null;
|
@@ -2069,7 +1897,11 @@ export interface components {
|
|
2069
1897
|
profiles: {
|
2070
1898
|
id: string;
|
2071
1899
|
shortId: number;
|
1900
|
+
firstTimeMiExpo: boolean;
|
1901
|
+
username: string | null;
|
1902
|
+
password: string | null;
|
2072
1903
|
phoneNumber: string;
|
1904
|
+
isPhoneVerified: boolean;
|
2073
1905
|
secondaryPhoneNumber: string | null;
|
2074
1906
|
fullName: string;
|
2075
1907
|
firstName: string | null;
|
@@ -2100,7 +1932,11 @@ export interface components {
|
|
2100
1932
|
[key: string]: {
|
2101
1933
|
id: string;
|
2102
1934
|
shortId: number;
|
1935
|
+
firstTimeMiExpo: boolean;
|
1936
|
+
username: string | null;
|
1937
|
+
password: string | null;
|
2103
1938
|
phoneNumber: string;
|
1939
|
+
isPhoneVerified: boolean;
|
2104
1940
|
secondaryPhoneNumber: string | null;
|
2105
1941
|
fullName: string;
|
2106
1942
|
firstName: string | null;
|
@@ -2133,7 +1969,11 @@ export interface components {
|
|
2133
1969
|
FindByPhoneNumberResponseDto: {
|
2134
1970
|
id: string;
|
2135
1971
|
shortId: number;
|
1972
|
+
firstTimeMiExpo: boolean;
|
1973
|
+
username: string | null;
|
1974
|
+
password: string | null;
|
2136
1975
|
phoneNumber: string;
|
1976
|
+
isPhoneVerified: boolean;
|
2137
1977
|
secondaryPhoneNumber: string | null;
|
2138
1978
|
fullName: string;
|
2139
1979
|
firstName: string | null;
|
@@ -2174,6 +2014,8 @@ export interface components {
|
|
2174
2014
|
phoneNumber: string;
|
2175
2015
|
profilePictureUrl: string | null;
|
2176
2016
|
secondaryPhoneNumber: string | null;
|
2017
|
+
username: string | null;
|
2018
|
+
password: string | null;
|
2177
2019
|
comments?: {
|
2178
2020
|
content: string;
|
2179
2021
|
isSolvable: boolean;
|
@@ -2216,7 +2058,10 @@ export interface components {
|
|
2216
2058
|
FindByIdProfileResponseDto: {
|
2217
2059
|
id: string;
|
2218
2060
|
shortId: number;
|
2061
|
+
firstTimeMiExpo: boolean;
|
2062
|
+
username: string | null;
|
2219
2063
|
phoneNumber: string;
|
2064
|
+
isPhoneVerified: boolean;
|
2220
2065
|
secondaryPhoneNumber: string | null;
|
2221
2066
|
fullName: string;
|
2222
2067
|
firstName: string | null;
|
@@ -2270,7 +2115,11 @@ export interface components {
|
|
2270
2115
|
DeleteProfileResponseDto: {
|
2271
2116
|
id: string;
|
2272
2117
|
shortId: number;
|
2118
|
+
firstTimeMiExpo: boolean;
|
2119
|
+
username: string | null;
|
2120
|
+
password: string | null;
|
2273
2121
|
phoneNumber: string;
|
2122
|
+
isPhoneVerified: boolean;
|
2274
2123
|
secondaryPhoneNumber: string | null;
|
2275
2124
|
fullName: string;
|
2276
2125
|
firstName: string | null;
|
@@ -2301,6 +2150,9 @@ export interface components {
|
|
2301
2150
|
secondaryPhoneNumber?: string | null;
|
2302
2151
|
isInTrash?: boolean;
|
2303
2152
|
movedToTrashDate?: string | null;
|
2153
|
+
username?: string | null;
|
2154
|
+
password?: string | null;
|
2155
|
+
firstTimeMiExpo?: boolean;
|
2304
2156
|
residence?: {
|
2305
2157
|
city: string;
|
2306
2158
|
country: string;
|
@@ -2427,126 +2279,203 @@ export interface components {
|
|
2427
2279
|
GetLastMessageTimestampResponseDto: {
|
2428
2280
|
timestamp: number;
|
2429
2281
|
};
|
2430
|
-
|
2431
|
-
|
2432
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2433
|
-
status: "BOOKED" | "PAID" | "FREE";
|
2434
|
-
fullName: string;
|
2435
|
-
mail: string;
|
2282
|
+
SendOtpDto: {
|
2283
|
+
phoneNumber: string;
|
2436
2284
|
};
|
2437
|
-
|
2438
|
-
|
2439
|
-
|
2440
|
-
|
2441
|
-
|
2442
|
-
|
2443
|
-
|
2444
|
-
|
2445
|
-
|
2285
|
+
SendOtpResponseDto: {
|
2286
|
+
response: {
|
2287
|
+
hasVerified: boolean;
|
2288
|
+
hasUsername: boolean;
|
2289
|
+
success: true;
|
2290
|
+
} | {
|
2291
|
+
hasVerified: boolean;
|
2292
|
+
hasUsername: boolean;
|
2293
|
+
success: false;
|
2294
|
+
message: string;
|
2295
|
+
};
|
2446
2296
|
};
|
2447
|
-
|
2448
|
-
|
2297
|
+
VerifyOtpDto: {
|
2298
|
+
phoneNumber: string;
|
2299
|
+
code: string;
|
2300
|
+
};
|
2301
|
+
VerifyOtpResponseDto: {
|
2302
|
+
success: boolean;
|
2303
|
+
profile: {
|
2449
2304
|
id: string;
|
2450
|
-
|
2451
|
-
|
2452
|
-
|
2305
|
+
shortId: number;
|
2306
|
+
firstTimeMiExpo: boolean;
|
2307
|
+
username: string | null;
|
2308
|
+
password: string | null;
|
2309
|
+
phoneNumber: string;
|
2310
|
+
isPhoneVerified: boolean;
|
2311
|
+
secondaryPhoneNumber: string | null;
|
2453
2312
|
fullName: string;
|
2454
|
-
|
2313
|
+
firstName: string | null;
|
2314
|
+
gender: string | null;
|
2315
|
+
birthDate: string | null;
|
2316
|
+
profilePictureUrl: string | null;
|
2317
|
+
instagram: string | null;
|
2318
|
+
mail: string | null;
|
2319
|
+
dni: string | null;
|
2320
|
+
alternativeNames: string[];
|
2321
|
+
birthLocationId: string | null;
|
2322
|
+
residenceLocationId: string | null;
|
2323
|
+
isInTrash: boolean;
|
2324
|
+
movedToTrashDate: string | null;
|
2455
2325
|
created_at: string;
|
2456
2326
|
updated_at: string;
|
2457
|
-
|
2458
|
-
|
2459
|
-
|
2460
|
-
|
2461
|
-
|
2462
|
-
|
2327
|
+
residenceLocation: {
|
2328
|
+
city: string;
|
2329
|
+
country: string;
|
2330
|
+
latitude: number;
|
2331
|
+
longitude: number;
|
2332
|
+
} | null;
|
2333
|
+
birthLocation: {
|
2334
|
+
city: string;
|
2335
|
+
country: string;
|
2336
|
+
latitude: number;
|
2337
|
+
longitude: number;
|
2338
|
+
} | null;
|
2339
|
+
};
|
2340
|
+
};
|
2341
|
+
LoginWithPhoneDto: {
|
2342
|
+
phoneNumber: string;
|
2463
2343
|
};
|
2464
|
-
|
2465
|
-
|
2344
|
+
LoginWithPhoneResponseDto: {
|
2345
|
+
tokens: {
|
2346
|
+
accessToken: string;
|
2347
|
+
refreshToken: string;
|
2348
|
+
expiresIn: number;
|
2349
|
+
};
|
2350
|
+
profile: {
|
2466
2351
|
id: string;
|
2467
|
-
|
2468
|
-
|
2469
|
-
|
2352
|
+
shortId: number;
|
2353
|
+
firstTimeMiExpo: boolean;
|
2354
|
+
username: string | null;
|
2355
|
+
phoneNumber: string;
|
2356
|
+
isPhoneVerified: boolean;
|
2357
|
+
secondaryPhoneNumber: string | null;
|
2470
2358
|
fullName: string;
|
2471
|
-
|
2359
|
+
firstName: string | null;
|
2360
|
+
gender: string | null;
|
2361
|
+
birthDate: string | null;
|
2362
|
+
profilePictureUrl: string | null;
|
2363
|
+
instagram: string | null;
|
2364
|
+
mail: string | null;
|
2365
|
+
dni: string | null;
|
2366
|
+
alternativeNames: string[];
|
2367
|
+
birthLocationId: string | null;
|
2368
|
+
residenceLocationId: string | null;
|
2369
|
+
isInTrash: boolean;
|
2370
|
+
movedToTrashDate: string | null;
|
2472
2371
|
created_at: string;
|
2473
2372
|
updated_at: string;
|
2474
|
-
event: {
|
2475
|
-
name: string;
|
2476
|
-
date: string;
|
2477
|
-
location: string;
|
2478
|
-
};
|
2479
2373
|
};
|
2480
2374
|
};
|
2481
|
-
|
2482
|
-
|
2375
|
+
GetMiExpoMeResponseDto: {
|
2376
|
+
id: string;
|
2377
|
+
shortId: number;
|
2378
|
+
firstTimeMiExpo: boolean;
|
2379
|
+
username: string | null;
|
2380
|
+
phoneNumber: string;
|
2381
|
+
isPhoneVerified: boolean;
|
2382
|
+
secondaryPhoneNumber: string | null;
|
2383
|
+
fullName: string;
|
2384
|
+
firstName: string | null;
|
2385
|
+
gender: string | null;
|
2386
|
+
birthDate: string | null;
|
2387
|
+
profilePictureUrl: string | null;
|
2388
|
+
instagram: string | null;
|
2389
|
+
mail: string | null;
|
2390
|
+
dni: string | null;
|
2391
|
+
alternativeNames: string[];
|
2392
|
+
birthLocationId: string | null;
|
2393
|
+
residenceLocationId: string | null;
|
2394
|
+
isInTrash: boolean;
|
2395
|
+
movedToTrashDate: string | null;
|
2396
|
+
created_at: string;
|
2397
|
+
updated_at: string;
|
2398
|
+
residenceLocation: {
|
2483
2399
|
id: string;
|
2484
|
-
|
2485
|
-
|
2486
|
-
|
2487
|
-
|
2488
|
-
|
2400
|
+
latitude: number;
|
2401
|
+
longitude: number;
|
2402
|
+
country: string;
|
2403
|
+
state: string;
|
2404
|
+
city: string;
|
2489
2405
|
created_at: string;
|
2490
2406
|
updated_at: string;
|
2491
|
-
|
2492
|
-
|
2493
|
-
date: string;
|
2494
|
-
location: string;
|
2495
|
-
};
|
2496
|
-
}[];
|
2497
|
-
};
|
2498
|
-
FindByEventTicketResponseDto: {
|
2499
|
-
tickets: {
|
2407
|
+
} | null;
|
2408
|
+
birthLocation: {
|
2500
2409
|
id: string;
|
2501
|
-
|
2502
|
-
|
2503
|
-
|
2504
|
-
|
2505
|
-
|
2410
|
+
latitude: number;
|
2411
|
+
longitude: number;
|
2412
|
+
country: string;
|
2413
|
+
state: string;
|
2414
|
+
city: string;
|
2506
2415
|
created_at: string;
|
2507
2416
|
updated_at: string;
|
2508
|
-
|
2509
|
-
name: string;
|
2510
|
-
date: string;
|
2511
|
-
location: string;
|
2512
|
-
};
|
2513
|
-
}[];
|
2514
|
-
};
|
2515
|
-
UpdateTicketDto: {
|
2516
|
-
type?: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2517
|
-
status?: "BOOKED" | "PAID" | "FREE";
|
2518
|
-
fullName?: string;
|
2519
|
-
mail?: string;
|
2417
|
+
} | null;
|
2520
2418
|
};
|
2521
|
-
|
2522
|
-
|
2523
|
-
|
2524
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2525
|
-
status: "BOOKED" | "PAID" | "FREE";
|
2419
|
+
UpdateMiExpoMeDto: {
|
2420
|
+
birthDate: string | null;
|
2421
|
+
dni: string | null;
|
2526
2422
|
fullName: string;
|
2527
|
-
|
2528
|
-
|
2529
|
-
|
2423
|
+
gender: string | null;
|
2424
|
+
instagram: string | null;
|
2425
|
+
mail: string | null;
|
2426
|
+
password: string | null;
|
2427
|
+
phoneNumber: string;
|
2428
|
+
secondaryPhoneNumber: string | null;
|
2429
|
+
username: string | null;
|
2430
|
+
birth: {
|
2431
|
+
city: string;
|
2432
|
+
country: string;
|
2433
|
+
latitude: number;
|
2434
|
+
longitude: number;
|
2435
|
+
state: string;
|
2436
|
+
};
|
2437
|
+
residence: {
|
2438
|
+
city: string;
|
2439
|
+
country: string;
|
2440
|
+
latitude: number;
|
2441
|
+
longitude: number;
|
2442
|
+
state: string;
|
2443
|
+
};
|
2530
2444
|
};
|
2531
|
-
|
2532
|
-
|
2533
|
-
|
2534
|
-
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
2535
|
-
status: "BOOKED" | "PAID" | "FREE";
|
2536
|
-
fullName: string;
|
2537
|
-
mail: string;
|
2538
|
-
created_at: string;
|
2539
|
-
updated_at: string;
|
2445
|
+
LoginMiExpoDto: {
|
2446
|
+
username: string;
|
2447
|
+
password: string;
|
2540
2448
|
};
|
2541
|
-
|
2542
|
-
|
2543
|
-
|
2544
|
-
|
2545
|
-
|
2546
|
-
|
2547
|
-
|
2548
|
-
|
2549
|
-
|
2449
|
+
LoginMiExpoResponseDto: {
|
2450
|
+
user: {
|
2451
|
+
id: string;
|
2452
|
+
shortId: number;
|
2453
|
+
firstTimeMiExpo: boolean;
|
2454
|
+
username: string | null;
|
2455
|
+
phoneNumber: string;
|
2456
|
+
isPhoneVerified: boolean;
|
2457
|
+
secondaryPhoneNumber: string | null;
|
2458
|
+
fullName: string;
|
2459
|
+
firstName: string | null;
|
2460
|
+
gender: string | null;
|
2461
|
+
birthDate: string | null;
|
2462
|
+
profilePictureUrl: string | null;
|
2463
|
+
instagram: string | null;
|
2464
|
+
mail: string | null;
|
2465
|
+
dni: string | null;
|
2466
|
+
alternativeNames: string[];
|
2467
|
+
birthLocationId: string | null;
|
2468
|
+
residenceLocationId: string | null;
|
2469
|
+
isInTrash: boolean;
|
2470
|
+
movedToTrashDate: string | null;
|
2471
|
+
created_at: string;
|
2472
|
+
updated_at: string;
|
2473
|
+
};
|
2474
|
+
backendTokens: {
|
2475
|
+
accessToken: string;
|
2476
|
+
refreshToken: string;
|
2477
|
+
expiresIn: number;
|
2478
|
+
};
|
2550
2479
|
};
|
2551
2480
|
};
|
2552
2481
|
responses: never;
|
@@ -2557,7 +2486,7 @@ export interface components {
|
|
2557
2486
|
}
|
2558
2487
|
export type $defs = Record<string, never>;
|
2559
2488
|
export interface operations {
|
2560
|
-
|
2489
|
+
AuthController_loginAccount: {
|
2561
2490
|
parameters: {
|
2562
2491
|
query?: never;
|
2563
2492
|
header?: never;
|
@@ -3574,25 +3503,6 @@ export interface operations {
|
|
3574
3503
|
};
|
3575
3504
|
};
|
3576
3505
|
};
|
3577
|
-
EventController_getActive: {
|
3578
|
-
parameters: {
|
3579
|
-
query?: never;
|
3580
|
-
header?: never;
|
3581
|
-
path?: never;
|
3582
|
-
cookie?: never;
|
3583
|
-
};
|
3584
|
-
requestBody?: never;
|
3585
|
-
responses: {
|
3586
|
-
200: {
|
3587
|
-
headers: {
|
3588
|
-
[name: string]: unknown;
|
3589
|
-
};
|
3590
|
-
content: {
|
3591
|
-
"application/json": components["schemas"]["GetActiveEventsResponseDto"];
|
3592
|
-
};
|
3593
|
-
};
|
3594
|
-
};
|
3595
|
-
};
|
3596
3506
|
EventController_findById: {
|
3597
3507
|
parameters: {
|
3598
3508
|
query?: never;
|
@@ -3682,51 +3592,6 @@ export interface operations {
|
|
3682
3592
|
"application/json": components["schemas"]["ErrorDto"];
|
3683
3593
|
};
|
3684
3594
|
};
|
3685
|
-
409: {
|
3686
|
-
headers: {
|
3687
|
-
[name: string]: unknown;
|
3688
|
-
};
|
3689
|
-
content: {
|
3690
|
-
"application/json": components["schemas"]["ErrorDto"];
|
3691
|
-
};
|
3692
|
-
};
|
3693
|
-
};
|
3694
|
-
};
|
3695
|
-
EventController_toggleActive: {
|
3696
|
-
parameters: {
|
3697
|
-
query?: never;
|
3698
|
-
header?: never;
|
3699
|
-
path: {
|
3700
|
-
id: string;
|
3701
|
-
};
|
3702
|
-
cookie?: never;
|
3703
|
-
};
|
3704
|
-
requestBody?: never;
|
3705
|
-
responses: {
|
3706
|
-
200: {
|
3707
|
-
headers: {
|
3708
|
-
[name: string]: unknown;
|
3709
|
-
};
|
3710
|
-
content: {
|
3711
|
-
"application/json": components["schemas"]["UpdateEventResponseDto"];
|
3712
|
-
};
|
3713
|
-
};
|
3714
|
-
404: {
|
3715
|
-
headers: {
|
3716
|
-
[name: string]: unknown;
|
3717
|
-
};
|
3718
|
-
content: {
|
3719
|
-
"application/json": components["schemas"]["ErrorDto"];
|
3720
|
-
};
|
3721
|
-
};
|
3722
|
-
409: {
|
3723
|
-
headers: {
|
3724
|
-
[name: string]: unknown;
|
3725
|
-
};
|
3726
|
-
content: {
|
3727
|
-
"application/json": components["schemas"]["ErrorDto"];
|
3728
|
-
};
|
3729
|
-
};
|
3730
3595
|
};
|
3731
3596
|
};
|
3732
3597
|
ProfileController_findAll: {
|
@@ -4474,123 +4339,87 @@ export interface operations {
|
|
4474
4339
|
};
|
4475
4340
|
};
|
4476
4341
|
};
|
4477
|
-
|
4342
|
+
WebhookController_verify: {
|
4478
4343
|
parameters: {
|
4479
|
-
query
|
4344
|
+
query: {
|
4345
|
+
"hub.mode": string;
|
4346
|
+
"hub.verify_token": string;
|
4347
|
+
"hub.challenge": string;
|
4348
|
+
};
|
4480
4349
|
header?: never;
|
4481
4350
|
path?: never;
|
4482
4351
|
cookie?: never;
|
4483
4352
|
};
|
4484
|
-
requestBody
|
4485
|
-
content: {
|
4486
|
-
"application/json": components["schemas"]["CreateTicketDto"];
|
4487
|
-
};
|
4488
|
-
};
|
4353
|
+
requestBody?: never;
|
4489
4354
|
responses: {
|
4490
|
-
|
4355
|
+
200: {
|
4491
4356
|
headers: {
|
4492
4357
|
[name: string]: unknown;
|
4493
4358
|
};
|
4494
4359
|
content: {
|
4495
|
-
"application/json":
|
4360
|
+
"application/json": string;
|
4496
4361
|
};
|
4497
4362
|
};
|
4498
|
-
|
4363
|
+
400: {
|
4499
4364
|
headers: {
|
4500
4365
|
[name: string]: unknown;
|
4501
4366
|
};
|
4502
|
-
content
|
4503
|
-
"application/json": components["schemas"]["ErrorDto"];
|
4504
|
-
};
|
4367
|
+
content?: never;
|
4505
4368
|
};
|
4506
|
-
|
4507
|
-
};
|
4508
|
-
TicketController_findAll: {
|
4509
|
-
parameters: {
|
4510
|
-
query?: never;
|
4511
|
-
header?: never;
|
4512
|
-
path?: never;
|
4513
|
-
cookie?: never;
|
4514
|
-
};
|
4515
|
-
requestBody?: never;
|
4516
|
-
responses: {
|
4517
|
-
200: {
|
4369
|
+
403: {
|
4518
4370
|
headers: {
|
4519
4371
|
[name: string]: unknown;
|
4520
4372
|
};
|
4521
|
-
content
|
4522
|
-
"application/json": components["schemas"]["FindAllTicketsResponseDto"];
|
4523
|
-
};
|
4373
|
+
content?: never;
|
4524
4374
|
};
|
4525
4375
|
};
|
4526
4376
|
};
|
4527
|
-
|
4377
|
+
WebhookController_receiveMessage: {
|
4528
4378
|
parameters: {
|
4529
4379
|
query?: never;
|
4530
|
-
header
|
4531
|
-
|
4532
|
-
id: string;
|
4380
|
+
header: {
|
4381
|
+
"x-hub-signature-256": string;
|
4533
4382
|
};
|
4383
|
+
path?: never;
|
4534
4384
|
cookie?: never;
|
4535
4385
|
};
|
4536
4386
|
requestBody?: never;
|
4537
4387
|
responses: {
|
4538
|
-
|
4539
|
-
headers: {
|
4540
|
-
[name: string]: unknown;
|
4541
|
-
};
|
4542
|
-
content: {
|
4543
|
-
"application/json": components["schemas"]["FindByIdTicketResponseDto"];
|
4544
|
-
};
|
4545
|
-
};
|
4546
|
-
404: {
|
4388
|
+
201: {
|
4547
4389
|
headers: {
|
4548
4390
|
[name: string]: unknown;
|
4549
4391
|
};
|
4550
|
-
content
|
4551
|
-
"application/json": components["schemas"]["ErrorDto"];
|
4552
|
-
};
|
4392
|
+
content?: never;
|
4553
4393
|
};
|
4554
4394
|
};
|
4555
4395
|
};
|
4556
|
-
|
4396
|
+
OtpController_sendOtp: {
|
4557
4397
|
parameters: {
|
4558
4398
|
query?: never;
|
4559
4399
|
header?: never;
|
4560
|
-
path
|
4561
|
-
mail: string;
|
4562
|
-
};
|
4400
|
+
path?: never;
|
4563
4401
|
cookie?: never;
|
4564
4402
|
};
|
4565
|
-
requestBody
|
4403
|
+
requestBody: {
|
4404
|
+
content: {
|
4405
|
+
"application/json": components["schemas"]["SendOtpDto"];
|
4406
|
+
};
|
4407
|
+
};
|
4566
4408
|
responses: {
|
4567
4409
|
200: {
|
4568
4410
|
headers: {
|
4569
4411
|
[name: string]: unknown;
|
4570
4412
|
};
|
4571
4413
|
content: {
|
4572
|
-
"application/json": components["schemas"]["
|
4414
|
+
"application/json": components["schemas"]["SendOtpResponseDto"];
|
4573
4415
|
};
|
4574
4416
|
};
|
4575
|
-
|
4576
|
-
};
|
4577
|
-
TicketController_findByEvent: {
|
4578
|
-
parameters: {
|
4579
|
-
query?: never;
|
4580
|
-
header?: never;
|
4581
|
-
path: {
|
4582
|
-
eventId: string;
|
4583
|
-
};
|
4584
|
-
cookie?: never;
|
4585
|
-
};
|
4586
|
-
requestBody?: never;
|
4587
|
-
responses: {
|
4588
|
-
200: {
|
4417
|
+
400: {
|
4589
4418
|
headers: {
|
4590
4419
|
[name: string]: unknown;
|
4591
4420
|
};
|
4592
4421
|
content: {
|
4593
|
-
"application/json": components["schemas"]["
|
4422
|
+
"application/json": components["schemas"]["ErrorDto"];
|
4594
4423
|
};
|
4595
4424
|
};
|
4596
4425
|
404: {
|
@@ -4603,18 +4432,16 @@ export interface operations {
|
|
4603
4432
|
};
|
4604
4433
|
};
|
4605
4434
|
};
|
4606
|
-
|
4435
|
+
OtpController_verifyOtp: {
|
4607
4436
|
parameters: {
|
4608
4437
|
query?: never;
|
4609
4438
|
header?: never;
|
4610
|
-
path
|
4611
|
-
id: string;
|
4612
|
-
};
|
4439
|
+
path?: never;
|
4613
4440
|
cookie?: never;
|
4614
4441
|
};
|
4615
4442
|
requestBody: {
|
4616
4443
|
content: {
|
4617
|
-
"application/json": components["schemas"]["
|
4444
|
+
"application/json": components["schemas"]["VerifyOtpDto"];
|
4618
4445
|
};
|
4619
4446
|
};
|
4620
4447
|
responses: {
|
@@ -4623,7 +4450,15 @@ export interface operations {
|
|
4623
4450
|
[name: string]: unknown;
|
4624
4451
|
};
|
4625
4452
|
content: {
|
4626
|
-
"application/json": components["schemas"]["
|
4453
|
+
"application/json": components["schemas"]["VerifyOtpResponseDto"];
|
4454
|
+
};
|
4455
|
+
};
|
4456
|
+
400: {
|
4457
|
+
headers: {
|
4458
|
+
[name: string]: unknown;
|
4459
|
+
};
|
4460
|
+
content: {
|
4461
|
+
"application/json": components["schemas"]["ErrorDto"];
|
4627
4462
|
};
|
4628
4463
|
};
|
4629
4464
|
404: {
|
@@ -4636,26 +4471,28 @@ export interface operations {
|
|
4636
4471
|
};
|
4637
4472
|
};
|
4638
4473
|
};
|
4639
|
-
|
4474
|
+
MiExpoController_loginWithPhone: {
|
4640
4475
|
parameters: {
|
4641
4476
|
query?: never;
|
4642
4477
|
header?: never;
|
4643
|
-
path
|
4644
|
-
id: string;
|
4645
|
-
};
|
4478
|
+
path?: never;
|
4646
4479
|
cookie?: never;
|
4647
4480
|
};
|
4648
|
-
requestBody
|
4481
|
+
requestBody: {
|
4482
|
+
content: {
|
4483
|
+
"application/json": components["schemas"]["LoginWithPhoneDto"];
|
4484
|
+
};
|
4485
|
+
};
|
4649
4486
|
responses: {
|
4650
4487
|
200: {
|
4651
4488
|
headers: {
|
4652
4489
|
[name: string]: unknown;
|
4653
4490
|
};
|
4654
4491
|
content: {
|
4655
|
-
"application/json": components["schemas"]["
|
4492
|
+
"application/json": components["schemas"]["LoginWithPhoneResponseDto"];
|
4656
4493
|
};
|
4657
4494
|
};
|
4658
|
-
|
4495
|
+
401: {
|
4659
4496
|
headers: {
|
4660
4497
|
[name: string]: unknown;
|
4661
4498
|
};
|
@@ -4665,13 +4502,11 @@ export interface operations {
|
|
4665
4502
|
};
|
4666
4503
|
};
|
4667
4504
|
};
|
4668
|
-
|
4505
|
+
MiExpoController_me: {
|
4669
4506
|
parameters: {
|
4670
4507
|
query?: never;
|
4671
4508
|
header?: never;
|
4672
|
-
path
|
4673
|
-
id: string;
|
4674
|
-
};
|
4509
|
+
path?: never;
|
4675
4510
|
cookie?: never;
|
4676
4511
|
};
|
4677
4512
|
requestBody?: never;
|
@@ -4681,115 +4516,62 @@ export interface operations {
|
|
4681
4516
|
[name: string]: unknown;
|
4682
4517
|
};
|
4683
4518
|
content: {
|
4684
|
-
"application/json": components["schemas"]["
|
4685
|
-
};
|
4686
|
-
};
|
4687
|
-
404: {
|
4688
|
-
headers: {
|
4689
|
-
[name: string]: unknown;
|
4690
|
-
};
|
4691
|
-
content: {
|
4692
|
-
"application/json": components["schemas"]["ErrorDto"];
|
4519
|
+
"application/json": components["schemas"]["GetMiExpoMeResponseDto"];
|
4693
4520
|
};
|
4694
4521
|
};
|
4695
4522
|
};
|
4696
4523
|
};
|
4697
|
-
|
4524
|
+
MiExpoController_updateMe: {
|
4698
4525
|
parameters: {
|
4699
4526
|
query?: never;
|
4700
4527
|
header?: never;
|
4701
|
-
path
|
4702
|
-
id: string;
|
4703
|
-
};
|
4528
|
+
path?: never;
|
4704
4529
|
cookie?: never;
|
4705
4530
|
};
|
4706
|
-
requestBody
|
4531
|
+
requestBody: {
|
4532
|
+
content: {
|
4533
|
+
"application/json": components["schemas"]["UpdateMiExpoMeDto"];
|
4534
|
+
};
|
4535
|
+
};
|
4707
4536
|
responses: {
|
4708
4537
|
200: {
|
4709
4538
|
headers: {
|
4710
4539
|
[name: string]: unknown;
|
4711
4540
|
};
|
4712
4541
|
content: {
|
4713
|
-
"application/json": components["schemas"]["
|
4714
|
-
};
|
4715
|
-
};
|
4716
|
-
404: {
|
4717
|
-
headers: {
|
4718
|
-
[name: string]: unknown;
|
4719
|
-
};
|
4720
|
-
content: {
|
4721
|
-
"application/json": components["schemas"]["ErrorDto"];
|
4722
|
-
};
|
4723
|
-
};
|
4724
|
-
409: {
|
4725
|
-
headers: {
|
4726
|
-
[name: string]: unknown;
|
4727
|
-
};
|
4728
|
-
content: {
|
4729
|
-
"application/json": components["schemas"]["ErrorDto"];
|
4730
|
-
};
|
4731
|
-
};
|
4732
|
-
500: {
|
4733
|
-
headers: {
|
4734
|
-
[name: string]: unknown;
|
4735
|
-
};
|
4736
|
-
content: {
|
4737
|
-
"application/json": components["schemas"]["ErrorDto"];
|
4542
|
+
"application/json": components["schemas"]["GetMiExpoMeResponseDto"];
|
4738
4543
|
};
|
4739
4544
|
};
|
4740
4545
|
};
|
4741
4546
|
};
|
4742
|
-
|
4547
|
+
MiExpoController_loginUsernamePassword: {
|
4743
4548
|
parameters: {
|
4744
|
-
query
|
4745
|
-
"hub.mode": string;
|
4746
|
-
"hub.verify_token": string;
|
4747
|
-
"hub.challenge": string;
|
4748
|
-
};
|
4549
|
+
query?: never;
|
4749
4550
|
header?: never;
|
4750
4551
|
path?: never;
|
4751
4552
|
cookie?: never;
|
4752
4553
|
};
|
4753
|
-
requestBody
|
4554
|
+
requestBody: {
|
4555
|
+
content: {
|
4556
|
+
"application/json": components["schemas"]["LoginMiExpoDto"];
|
4557
|
+
};
|
4558
|
+
};
|
4754
4559
|
responses: {
|
4755
4560
|
200: {
|
4756
4561
|
headers: {
|
4757
4562
|
[name: string]: unknown;
|
4758
4563
|
};
|
4759
4564
|
content: {
|
4760
|
-
"application/json":
|
4761
|
-
};
|
4762
|
-
};
|
4763
|
-
400: {
|
4764
|
-
headers: {
|
4765
|
-
[name: string]: unknown;
|
4565
|
+
"application/json": components["schemas"]["LoginMiExpoResponseDto"];
|
4766
4566
|
};
|
4767
|
-
content?: never;
|
4768
4567
|
};
|
4769
|
-
|
4568
|
+
401: {
|
4770
4569
|
headers: {
|
4771
4570
|
[name: string]: unknown;
|
4772
4571
|
};
|
4773
|
-
content
|
4774
|
-
|
4775
|
-
};
|
4776
|
-
};
|
4777
|
-
WebhookController_receiveMessage: {
|
4778
|
-
parameters: {
|
4779
|
-
query?: never;
|
4780
|
-
header: {
|
4781
|
-
"x-hub-signature-256": string;
|
4782
|
-
};
|
4783
|
-
path?: never;
|
4784
|
-
cookie?: never;
|
4785
|
-
};
|
4786
|
-
requestBody?: never;
|
4787
|
-
responses: {
|
4788
|
-
201: {
|
4789
|
-
headers: {
|
4790
|
-
[name: string]: unknown;
|
4572
|
+
content: {
|
4573
|
+
"application/json": components["schemas"]["ErrorDto"];
|
4791
4574
|
};
|
4792
|
-
content?: never;
|
4793
4575
|
};
|
4794
4576
|
};
|
4795
4577
|
};
|