expo-backend-types 0.9.0-EXPO-249-EB-Modelo.7 → 0.9.0-EXPO-247-EB-Evento.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/account/dto/account.dto.d.ts +4 -6
- package/dist/src/account/dto/create-account.dto.d.ts +8 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +0 -1
- package/dist/src/account/dto/get-me.dto.d.ts +4 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +4 -6
- package/dist/src/auth/dto/login.dto.d.ts +8 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +0 -1
- package/dist/src/event/dto/create-event.dto.d.ts +126 -0
- package/dist/src/event/dto/create-event.dto.js +22 -0
- package/dist/src/event/dto/delete-event.dto.d.ts +71 -0
- package/dist/src/event/dto/delete-event.dto.js +10 -0
- package/dist/src/event/dto/get-all-event.dto.d.ts +223 -0
- package/dist/src/event/dto/get-all-event.dto.js +19 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +139 -0
- package/dist/src/event/dto/get-by-id-event.dto.js +17 -0
- package/dist/src/event/dto/update-event.dto.d.ts +126 -0
- package/dist/src/event/dto/update-event.dto.js +22 -0
- package/dist/src/event/exports.d.ts +5 -0
- package/dist/src/event/exports.js +5 -0
- package/dist/src/event-folder/dto/update-event-folder.dto.d.ts +14 -17
- package/dist/src/event-folder/dto/update-event-folder.dto.js +4 -2
- package/dist/src/i18n/es.d.ts +15 -33
- package/dist/src/i18n/es.js +15 -33
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/profile.dto.js +3 -7
- package/dist/src/profile/exports.d.ts +0 -8
- package/dist/src/profile/exports.js +0 -8
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +16 -16
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +16 -16
- package/dist/types/prisma-schema/edge.js +4 -5
- package/dist/types/prisma-schema/index-browser.js +1 -2
- package/dist/types/prisma-schema/index.d.ts +2 -9
- package/dist/types/prisma-schema/index.js +4 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +0 -2
- package/dist/types/prisma-schema/wasm.js +1 -2
- package/dist/types/schema.d.ts +158 -479
- package/package.json +1 -4
- package/dist/src/profile/dto/create-profile.dto.d.ts +0 -694
- package/dist/src/profile/dto/create-profile.dto.js +0 -84
- package/dist/src/profile/dto/delete-profile.dto.d.ts +0 -125
- package/dist/src/profile/dto/delete-profile.dto.js +0 -10
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +0 -410
- package/dist/src/profile/dto/find-all-profile.dto.js +0 -25
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +0 -655
- package/dist/src/profile/dto/find-by-date-range-profile.dto.js +0 -34
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +0 -475
- package/dist/src/profile/dto/find-by-id-profile.dto.js +0 -27
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +0 -337
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +0 -19
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +0 -393
- package/dist/src/profile/dto/find-by-tags-profile.dto.js +0 -24
- package/dist/src/profile/dto/update-profile.dto.d.ts +0 -360
- package/dist/src/profile/dto/update-profile.dto.js +0 -55
package/dist/types/schema.d.ts
CHANGED
@@ -511,62 +511,30 @@ export interface paths {
|
|
511
511
|
patch?: never;
|
512
512
|
trace?: never;
|
513
513
|
};
|
514
|
-
"/
|
514
|
+
"/event/create": {
|
515
515
|
parameters: {
|
516
516
|
query?: never;
|
517
517
|
header?: never;
|
518
518
|
path?: never;
|
519
519
|
cookie?: never;
|
520
520
|
};
|
521
|
-
get
|
522
|
-
put?: never;
|
523
|
-
post?: never;
|
524
|
-
delete?: never;
|
525
|
-
options?: never;
|
526
|
-
head?: never;
|
527
|
-
patch?: never;
|
528
|
-
trace?: never;
|
529
|
-
};
|
530
|
-
"/profile/find-by-tags": {
|
531
|
-
parameters: {
|
532
|
-
query?: never;
|
533
|
-
header?: never;
|
534
|
-
path?: never;
|
535
|
-
cookie?: never;
|
536
|
-
};
|
537
|
-
get: operations["ProfileController_findByTag"];
|
538
|
-
put?: never;
|
539
|
-
post?: never;
|
540
|
-
delete?: never;
|
541
|
-
options?: never;
|
542
|
-
head?: never;
|
543
|
-
patch?: never;
|
544
|
-
trace?: never;
|
545
|
-
};
|
546
|
-
"/profile/find-by-tag-groups": {
|
547
|
-
parameters: {
|
548
|
-
query?: never;
|
549
|
-
header?: never;
|
550
|
-
path?: never;
|
551
|
-
cookie?: never;
|
552
|
-
};
|
553
|
-
get: operations["ProfileController_findByTagGroups"];
|
521
|
+
get?: never;
|
554
522
|
put?: never;
|
555
|
-
post
|
523
|
+
post: operations["EventController_create"];
|
556
524
|
delete?: never;
|
557
525
|
options?: never;
|
558
526
|
head?: never;
|
559
527
|
patch?: never;
|
560
528
|
trace?: never;
|
561
529
|
};
|
562
|
-
"/
|
530
|
+
"/event/all": {
|
563
531
|
parameters: {
|
564
532
|
query?: never;
|
565
533
|
header?: never;
|
566
534
|
path?: never;
|
567
535
|
cookie?: never;
|
568
536
|
};
|
569
|
-
get: operations["
|
537
|
+
get: operations["EventController_findAll"];
|
570
538
|
put?: never;
|
571
539
|
post?: never;
|
572
540
|
delete?: never;
|
@@ -575,36 +543,20 @@ export interface paths {
|
|
575
543
|
patch?: never;
|
576
544
|
trace?: never;
|
577
545
|
};
|
578
|
-
"/
|
579
|
-
parameters: {
|
580
|
-
query?: never;
|
581
|
-
header?: never;
|
582
|
-
path?: never;
|
583
|
-
cookie?: never;
|
584
|
-
};
|
585
|
-
get?: never;
|
586
|
-
put?: never;
|
587
|
-
post: operations["ProfileController_create"];
|
588
|
-
delete?: never;
|
589
|
-
options?: never;
|
590
|
-
head?: never;
|
591
|
-
patch?: never;
|
592
|
-
trace?: never;
|
593
|
-
};
|
594
|
-
"/profile/{id}": {
|
546
|
+
"/event/{id}": {
|
595
547
|
parameters: {
|
596
548
|
query?: never;
|
597
549
|
header?: never;
|
598
550
|
path?: never;
|
599
551
|
cookie?: never;
|
600
552
|
};
|
601
|
-
get: operations["
|
553
|
+
get: operations["EventController_findById"];
|
602
554
|
put?: never;
|
603
555
|
post?: never;
|
604
|
-
delete: operations["
|
556
|
+
delete: operations["EventController_remove"];
|
605
557
|
options?: never;
|
606
558
|
head?: never;
|
607
|
-
patch: operations["
|
559
|
+
patch: operations["EventController_update"];
|
608
560
|
trace?: never;
|
609
561
|
};
|
610
562
|
}
|
@@ -617,18 +569,18 @@ export interface components {
|
|
617
569
|
};
|
618
570
|
LoginResponseDto: {
|
619
571
|
user: {
|
620
|
-
id
|
621
|
-
username
|
622
|
-
role
|
572
|
+
id?: string;
|
573
|
+
username?: string;
|
574
|
+
role?: "USER" | "ADMIN";
|
623
575
|
isGlobalFilterActive: boolean;
|
624
576
|
fcmToken: string[];
|
625
|
-
created_at
|
626
|
-
updated_at
|
577
|
+
created_at?: string;
|
578
|
+
updated_at?: string;
|
627
579
|
};
|
628
580
|
backendTokens: {
|
629
|
-
accessToken
|
630
|
-
refreshToken
|
631
|
-
expiresIn
|
581
|
+
accessToken?: string;
|
582
|
+
refreshToken?: string;
|
583
|
+
expiresIn?: number;
|
632
584
|
};
|
633
585
|
};
|
634
586
|
ErrorDto: {
|
@@ -695,12 +647,12 @@ export interface components {
|
|
695
647
|
created_at: string;
|
696
648
|
updated_at: string;
|
697
649
|
group: {
|
698
|
-
id
|
699
|
-
name
|
700
|
-
color
|
701
|
-
isExclusive
|
702
|
-
created_at
|
703
|
-
updated_at
|
650
|
+
id?: string;
|
651
|
+
name?: string;
|
652
|
+
color?: string;
|
653
|
+
isExclusive?: boolean;
|
654
|
+
created_at?: string;
|
655
|
+
updated_at?: string;
|
704
656
|
};
|
705
657
|
};
|
706
658
|
UpdateTagDto: {
|
@@ -732,20 +684,20 @@ export interface components {
|
|
732
684
|
id: string;
|
733
685
|
shortId: number;
|
734
686
|
phoneNumber: string;
|
735
|
-
secondaryPhoneNumber: null;
|
687
|
+
secondaryPhoneNumber: string | null;
|
736
688
|
fullName: string;
|
737
|
-
firstName: null;
|
738
|
-
gender: null;
|
739
|
-
birthDate: null;
|
740
|
-
profilePictureUrl: null;
|
741
|
-
instagram: null;
|
742
|
-
mail: null;
|
743
|
-
dni: null;
|
744
|
-
alternativeNames: string[];
|
745
|
-
birthLocationId: null;
|
746
|
-
residenceLocationId: null;
|
689
|
+
firstName: string | null;
|
690
|
+
gender: string | null;
|
691
|
+
birthDate: string | null;
|
692
|
+
profilePictureUrl: string | null;
|
693
|
+
instagram: string | null;
|
694
|
+
mail: string | null;
|
695
|
+
dni: string | null;
|
696
|
+
alternativeNames: string[] | null;
|
697
|
+
birthLocationId: string | null;
|
698
|
+
residenceLocationId: string | null;
|
747
699
|
isInTrash: boolean;
|
748
|
-
movedToTrashDate: null;
|
700
|
+
movedToTrashDate: string | null;
|
749
701
|
created_at: string;
|
750
702
|
updated_at: string;
|
751
703
|
}[];
|
@@ -759,20 +711,20 @@ export interface components {
|
|
759
711
|
id: string;
|
760
712
|
shortId: number;
|
761
713
|
phoneNumber: string;
|
762
|
-
secondaryPhoneNumber: null;
|
714
|
+
secondaryPhoneNumber: string | null;
|
763
715
|
fullName: string;
|
764
|
-
firstName: null;
|
765
|
-
gender: null;
|
766
|
-
birthDate: null;
|
767
|
-
profilePictureUrl: null;
|
768
|
-
instagram: null;
|
769
|
-
mail: null;
|
770
|
-
dni: null;
|
771
|
-
alternativeNames: string[];
|
772
|
-
birthLocationId: null;
|
773
|
-
residenceLocationId: null;
|
716
|
+
firstName: string | null;
|
717
|
+
gender: string | null;
|
718
|
+
birthDate: string | null;
|
719
|
+
profilePictureUrl: string | null;
|
720
|
+
instagram: string | null;
|
721
|
+
mail: string | null;
|
722
|
+
dni: string | null;
|
723
|
+
alternativeNames: string[] | null;
|
724
|
+
birthLocationId: string | null;
|
725
|
+
residenceLocationId: string | null;
|
774
726
|
isInTrash: boolean;
|
775
|
-
movedToTrashDate: null;
|
727
|
+
movedToTrashDate: string | null;
|
776
728
|
created_at: string;
|
777
729
|
updated_at: string;
|
778
730
|
}[];
|
@@ -780,12 +732,12 @@ export interface components {
|
|
780
732
|
CreateAccountDto: {
|
781
733
|
username: string;
|
782
734
|
password: string;
|
783
|
-
role: "USER" | "ADMIN"
|
735
|
+
role: "USER" | "ADMIN";
|
784
736
|
};
|
785
737
|
CreateAccountResponseDto: {
|
786
738
|
id: string;
|
787
739
|
username: string;
|
788
|
-
role: "USER" | "ADMIN"
|
740
|
+
role: "USER" | "ADMIN";
|
789
741
|
isGlobalFilterActive: boolean;
|
790
742
|
fcmToken: string[];
|
791
743
|
};
|
@@ -797,7 +749,7 @@ export interface components {
|
|
797
749
|
id: string;
|
798
750
|
username: string;
|
799
751
|
password: string;
|
800
|
-
role: "USER" | "ADMIN"
|
752
|
+
role: "USER" | "ADMIN";
|
801
753
|
isGlobalFilterActive: boolean;
|
802
754
|
fcmToken: string[];
|
803
755
|
created_at: string;
|
@@ -827,7 +779,7 @@ export interface components {
|
|
827
779
|
GetMeResponseDto: {
|
828
780
|
id: string;
|
829
781
|
username: string;
|
830
|
-
role: "USER" | "ADMIN"
|
782
|
+
role: "USER" | "ADMIN";
|
831
783
|
isGlobalFilterActive: boolean;
|
832
784
|
fcmToken: string[];
|
833
785
|
created_at: string;
|
@@ -953,8 +905,8 @@ export interface components {
|
|
953
905
|
profileId: string;
|
954
906
|
isSolvable: boolean;
|
955
907
|
isSolved: boolean;
|
956
|
-
solvedAt: null;
|
957
|
-
solvedBy
|
908
|
+
solvedAt: string | null;
|
909
|
+
solvedBy: string;
|
958
910
|
created_at: string;
|
959
911
|
updated_at: string;
|
960
912
|
};
|
@@ -966,7 +918,7 @@ export interface components {
|
|
966
918
|
profileId: string;
|
967
919
|
isSolvable: boolean;
|
968
920
|
isSolved: boolean;
|
969
|
-
solvedAt: null;
|
921
|
+
solvedAt: string | null;
|
970
922
|
solvedBy?: string;
|
971
923
|
created_at: string;
|
972
924
|
updated_at: string;
|
@@ -982,8 +934,8 @@ export interface components {
|
|
982
934
|
profileId: string;
|
983
935
|
isSolvable: boolean;
|
984
936
|
isSolved: boolean;
|
985
|
-
solvedAt: null;
|
986
|
-
solvedBy
|
937
|
+
solvedAt: string | null;
|
938
|
+
solvedBy: string;
|
987
939
|
created_at: string;
|
988
940
|
updated_at: string;
|
989
941
|
};
|
@@ -1030,8 +982,8 @@ export interface components {
|
|
1030
982
|
isoCode: string;
|
1031
983
|
countryCode: string;
|
1032
984
|
countryName: string;
|
1033
|
-
latitude?: null;
|
1034
|
-
longitude?: null;
|
985
|
+
latitude?: string | null;
|
986
|
+
longitude?: string | null;
|
1035
987
|
}[];
|
1036
988
|
};
|
1037
989
|
CreateCannedResponseDto: {
|
@@ -1095,10 +1047,10 @@ export interface components {
|
|
1095
1047
|
name: string;
|
1096
1048
|
date: string;
|
1097
1049
|
location: string;
|
1098
|
-
folderId: null;
|
1050
|
+
folderId: string | null;
|
1099
1051
|
tagAssistedId: string;
|
1100
1052
|
tagConfirmedId: string;
|
1101
|
-
supraEventId: null;
|
1053
|
+
supraEventId: string | null;
|
1102
1054
|
created_at: string;
|
1103
1055
|
updated_at: string;
|
1104
1056
|
}[];
|
@@ -1115,10 +1067,10 @@ export interface components {
|
|
1115
1067
|
name: string;
|
1116
1068
|
date: string;
|
1117
1069
|
location: string;
|
1118
|
-
folderId: null;
|
1070
|
+
folderId: string | null;
|
1119
1071
|
tagAssistedId: string;
|
1120
1072
|
tagConfirmedId: string;
|
1121
|
-
supraEventId: null;
|
1073
|
+
supraEventId: string | null;
|
1122
1074
|
created_at: string;
|
1123
1075
|
updated_at: string;
|
1124
1076
|
}[];
|
@@ -1141,276 +1093,99 @@ export interface components {
|
|
1141
1093
|
created_at: string;
|
1142
1094
|
updated_at: string;
|
1143
1095
|
};
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
updated_at: string;
|
1165
|
-
tags: {
|
1166
|
-
id: string;
|
1167
|
-
name: string;
|
1168
|
-
groupId: string;
|
1169
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1170
|
-
created_at: string;
|
1171
|
-
updated_at: string;
|
1172
|
-
group: {
|
1173
|
-
color: string;
|
1174
|
-
isExclusive: boolean;
|
1175
|
-
};
|
1176
|
-
}[];
|
1177
|
-
}[];
|
1178
|
-
};
|
1179
|
-
FindByTagsProfileResponseDto: {
|
1180
|
-
profiles: {
|
1181
|
-
id: string;
|
1182
|
-
shortId: number;
|
1183
|
-
phoneNumber: string;
|
1184
|
-
secondaryPhoneNumber: null;
|
1185
|
-
fullName: string;
|
1186
|
-
firstName: null;
|
1187
|
-
gender: null;
|
1188
|
-
birthDate: null;
|
1189
|
-
profilePictureUrl: null;
|
1190
|
-
instagram: null;
|
1191
|
-
mail: null;
|
1192
|
-
dni: null;
|
1193
|
-
alternativeNames: string[];
|
1194
|
-
birthLocationId: null;
|
1195
|
-
residenceLocationId: null;
|
1196
|
-
isInTrash: boolean;
|
1197
|
-
movedToTrashDate: null;
|
1198
|
-
created_at: string;
|
1199
|
-
updated_at: string;
|
1200
|
-
tags: {
|
1201
|
-
id: string;
|
1202
|
-
name: string;
|
1203
|
-
groupId: string;
|
1204
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1205
|
-
created_at: string;
|
1206
|
-
updated_at: string;
|
1207
|
-
group: {
|
1208
|
-
isExclusive: boolean;
|
1209
|
-
};
|
1210
|
-
}[];
|
1211
|
-
}[];
|
1096
|
+
CreateEventDto: {
|
1097
|
+
name: string;
|
1098
|
+
date: string;
|
1099
|
+
location: string;
|
1100
|
+
folderId: string | null;
|
1101
|
+
tagAssistedId: string;
|
1102
|
+
tagConfirmedId: string;
|
1103
|
+
supraEventId: string | null;
|
1104
|
+
};
|
1105
|
+
CreateEventResponseDto: {
|
1106
|
+
id: string;
|
1107
|
+
name: string;
|
1108
|
+
date: string;
|
1109
|
+
location: string;
|
1110
|
+
folderId: string | null;
|
1111
|
+
tagAssistedId: string;
|
1112
|
+
tagConfirmedId: string;
|
1113
|
+
supraEventId: string | null;
|
1114
|
+
created_at: string;
|
1115
|
+
updated_at: string;
|
1212
1116
|
};
|
1213
|
-
|
1214
|
-
|
1117
|
+
GetAllEventsResponseDto: {
|
1118
|
+
events: {
|
1215
1119
|
id: string;
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1222
|
-
|
1223
|
-
profilePictureUrl: null;
|
1224
|
-
instagram: null;
|
1225
|
-
mail: null;
|
1226
|
-
dni: null;
|
1227
|
-
alternativeNames: string[];
|
1228
|
-
birthLocationId: null;
|
1229
|
-
residenceLocationId: null;
|
1230
|
-
isInTrash: boolean;
|
1231
|
-
movedToTrashDate: null;
|
1120
|
+
name: string;
|
1121
|
+
date: string;
|
1122
|
+
location: string;
|
1123
|
+
folderId: string | null;
|
1124
|
+
tagAssistedId: string;
|
1125
|
+
tagConfirmedId: string;
|
1126
|
+
supraEventId: string | null;
|
1232
1127
|
created_at: string;
|
1233
1128
|
updated_at: string;
|
1234
|
-
|
1129
|
+
folder: {
|
1235
1130
|
id: string;
|
1236
1131
|
name: string;
|
1237
|
-
|
1238
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1132
|
+
color: string;
|
1239
1133
|
created_at: string;
|
1240
1134
|
updated_at: string;
|
1241
|
-
}
|
1135
|
+
} | null;
|
1242
1136
|
}[];
|
1243
1137
|
};
|
1244
|
-
|
1245
|
-
[key: string]: {
|
1246
|
-
id: string;
|
1247
|
-
shortId: number;
|
1248
|
-
phoneNumber: string;
|
1249
|
-
secondaryPhoneNumber: null;
|
1250
|
-
fullName: string;
|
1251
|
-
firstName: null;
|
1252
|
-
gender: null;
|
1253
|
-
birthDate: null;
|
1254
|
-
profilePictureUrl: null;
|
1255
|
-
instagram: null;
|
1256
|
-
mail: null;
|
1257
|
-
dni: null;
|
1258
|
-
alternativeNames: string[];
|
1259
|
-
birthLocationId: null;
|
1260
|
-
residenceLocationId: null;
|
1261
|
-
isInTrash: boolean;
|
1262
|
-
movedToTrashDate: null;
|
1263
|
-
created_at: string;
|
1264
|
-
updated_at: string;
|
1265
|
-
tags: {
|
1266
|
-
id: string;
|
1267
|
-
name: string;
|
1268
|
-
groupId: string;
|
1269
|
-
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
1270
|
-
created_at: string;
|
1271
|
-
updated_at: string;
|
1272
|
-
group: {
|
1273
|
-
id: string;
|
1274
|
-
};
|
1275
|
-
}[];
|
1276
|
-
}[] | undefined;
|
1277
|
-
};
|
1278
|
-
CreateProfileDto: {
|
1279
|
-
profile: {
|
1280
|
-
alternativeNames: string[];
|
1281
|
-
birthDate: null;
|
1282
|
-
dni: null;
|
1283
|
-
fullName: string;
|
1284
|
-
gender: null;
|
1285
|
-
instagram: null;
|
1286
|
-
mail: null;
|
1287
|
-
phoneNumber: string;
|
1288
|
-
profilePictureUrl: null;
|
1289
|
-
secondaryPhoneNumber: null;
|
1290
|
-
comments?: {
|
1291
|
-
content: string;
|
1292
|
-
isSolvable: boolean;
|
1293
|
-
}[];
|
1294
|
-
residence?: {
|
1295
|
-
city: string;
|
1296
|
-
country: string;
|
1297
|
-
latitude: number;
|
1298
|
-
longitude: number;
|
1299
|
-
state: string;
|
1300
|
-
};
|
1301
|
-
birth?: {
|
1302
|
-
city: string;
|
1303
|
-
country: string;
|
1304
|
-
latitude: number;
|
1305
|
-
longitude: number;
|
1306
|
-
state: string;
|
1307
|
-
};
|
1308
|
-
tags?: string[];
|
1309
|
-
};
|
1310
|
-
checkForSimilarity?: boolean;
|
1311
|
-
};
|
1312
|
-
CreateProfileResponseDto: {
|
1313
|
-
response: {
|
1314
|
-
type: "similar";
|
1315
|
-
similarProfiles: {
|
1316
|
-
profile: {
|
1317
|
-
fullName: string;
|
1318
|
-
phoneNumber: string;
|
1319
|
-
id: string;
|
1320
|
-
};
|
1321
|
-
similarityPhoneNumberPercentage: number;
|
1322
|
-
similarityFullNamePercentage: number;
|
1323
|
-
}[];
|
1324
|
-
} | {
|
1325
|
-
type: "created";
|
1326
|
-
id: string;
|
1327
|
-
};
|
1328
|
-
};
|
1329
|
-
FindByIdProfileResponseDto: {
|
1138
|
+
GetByIdEventResponseDto: {
|
1330
1139
|
id: string;
|
1331
|
-
|
1332
|
-
|
1333
|
-
|
1334
|
-
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
profilePictureUrl: null;
|
1339
|
-
instagram: null;
|
1340
|
-
mail: null;
|
1341
|
-
dni: null;
|
1342
|
-
alternativeNames: string[];
|
1343
|
-
birthLocationId: null;
|
1344
|
-
residenceLocationId: null;
|
1345
|
-
isInTrash: boolean;
|
1346
|
-
movedToTrashDate: null;
|
1140
|
+
name: string;
|
1141
|
+
date: string;
|
1142
|
+
location: string;
|
1143
|
+
folderId: string | null;
|
1144
|
+
tagAssistedId: string;
|
1145
|
+
tagConfirmedId: string;
|
1146
|
+
supraEventId: string | null;
|
1347
1147
|
created_at: string;
|
1348
1148
|
updated_at: string;
|
1349
|
-
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1149
|
+
folder: {
|
1150
|
+
id?: string;
|
1151
|
+
name?: string;
|
1152
|
+
color?: string;
|
1153
|
+
created_at?: string;
|
1154
|
+
updated_at?: string;
|
1155
|
+
} | null;
|
1156
|
+
};
|
1157
|
+
UpdateEventDto: {
|
1158
|
+
name: string;
|
1159
|
+
folderId: string | null;
|
1160
|
+
date: string;
|
1161
|
+
location: string;
|
1162
|
+
supraEventId: string | null;
|
1163
|
+
tagAssistedId: string;
|
1164
|
+
tagConfirmedId: string;
|
1165
|
+
};
|
1166
|
+
UpdateEventResponseDto: {
|
1366
1167
|
id: string;
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1371
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
profilePictureUrl: null;
|
1375
|
-
instagram: null;
|
1376
|
-
mail: null;
|
1377
|
-
dni: null;
|
1378
|
-
alternativeNames: string[];
|
1379
|
-
birthLocationId: null;
|
1380
|
-
residenceLocationId: null;
|
1381
|
-
isInTrash: boolean;
|
1382
|
-
movedToTrashDate: null;
|
1168
|
+
name: string;
|
1169
|
+
date: string;
|
1170
|
+
location: string;
|
1171
|
+
folderId: string | null;
|
1172
|
+
tagAssistedId: string;
|
1173
|
+
tagConfirmedId: string;
|
1174
|
+
supraEventId: string | null;
|
1383
1175
|
created_at: string;
|
1384
1176
|
updated_at: string;
|
1385
1177
|
};
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
|
1397
|
-
isInTrash: boolean;
|
1398
|
-
movedToTrashDate: null;
|
1399
|
-
residence?: {
|
1400
|
-
city: string;
|
1401
|
-
country: string;
|
1402
|
-
latitude: number;
|
1403
|
-
longitude: number;
|
1404
|
-
state: string;
|
1405
|
-
};
|
1406
|
-
birth?: {
|
1407
|
-
city: string;
|
1408
|
-
country: string;
|
1409
|
-
latitude: number;
|
1410
|
-
longitude: number;
|
1411
|
-
state: string;
|
1412
|
-
};
|
1413
|
-
tags?: string[];
|
1178
|
+
DeleteEventResponseDto: {
|
1179
|
+
id: string;
|
1180
|
+
name: string;
|
1181
|
+
date: string;
|
1182
|
+
location: string;
|
1183
|
+
folderId: string | null;
|
1184
|
+
tagAssistedId: string;
|
1185
|
+
tagConfirmedId: string;
|
1186
|
+
supraEventId: string | null;
|
1187
|
+
created_at: string;
|
1188
|
+
updated_at: string;
|
1414
1189
|
};
|
1415
1190
|
};
|
1416
1191
|
responses: never;
|
@@ -2380,104 +2155,28 @@ export interface operations {
|
|
2380
2155
|
};
|
2381
2156
|
};
|
2382
2157
|
};
|
2383
|
-
|
2158
|
+
EventController_create: {
|
2384
2159
|
parameters: {
|
2385
2160
|
query?: never;
|
2386
2161
|
header?: never;
|
2387
2162
|
path?: never;
|
2388
2163
|
cookie?: never;
|
2389
2164
|
};
|
2390
|
-
requestBody
|
2391
|
-
|
2392
|
-
|
2393
|
-
headers: {
|
2394
|
-
[name: string]: unknown;
|
2395
|
-
};
|
2396
|
-
content: {
|
2397
|
-
"application/json": components["schemas"]["FindAllProfileResponseDto"];
|
2398
|
-
};
|
2399
|
-
};
|
2400
|
-
};
|
2401
|
-
};
|
2402
|
-
ProfileController_findByTag: {
|
2403
|
-
parameters: {
|
2404
|
-
query: {
|
2405
|
-
tags: string[];
|
2406
|
-
};
|
2407
|
-
header?: never;
|
2408
|
-
path?: never;
|
2409
|
-
cookie?: never;
|
2410
|
-
};
|
2411
|
-
requestBody?: never;
|
2412
|
-
responses: {
|
2413
|
-
200: {
|
2414
|
-
headers: {
|
2415
|
-
[name: string]: unknown;
|
2416
|
-
};
|
2417
|
-
content: {
|
2418
|
-
"application/json": components["schemas"]["FindByTagsProfileResponseDto"];
|
2419
|
-
};
|
2420
|
-
};
|
2421
|
-
404: {
|
2422
|
-
headers: {
|
2423
|
-
[name: string]: unknown;
|
2424
|
-
};
|
2425
|
-
content: {
|
2426
|
-
"application/json": components["schemas"]["ErrorDto"];
|
2427
|
-
};
|
2428
|
-
};
|
2429
|
-
};
|
2430
|
-
};
|
2431
|
-
ProfileController_findByTagGroups: {
|
2432
|
-
parameters: {
|
2433
|
-
query: {
|
2434
|
-
tagGroups: string[];
|
2165
|
+
requestBody: {
|
2166
|
+
content: {
|
2167
|
+
"application/json": components["schemas"]["CreateEventDto"];
|
2435
2168
|
};
|
2436
|
-
header?: never;
|
2437
|
-
path?: never;
|
2438
|
-
cookie?: never;
|
2439
2169
|
};
|
2440
|
-
requestBody?: never;
|
2441
2170
|
responses: {
|
2442
|
-
|
2443
|
-
headers: {
|
2444
|
-
[name: string]: unknown;
|
2445
|
-
};
|
2446
|
-
content: {
|
2447
|
-
"application/json": components["schemas"]["FindByTagGroupsProfileResponseDto"];
|
2448
|
-
};
|
2449
|
-
};
|
2450
|
-
404: {
|
2451
|
-
headers: {
|
2452
|
-
[name: string]: unknown;
|
2453
|
-
};
|
2454
|
-
content: {
|
2455
|
-
"application/json": components["schemas"]["ErrorDto"];
|
2456
|
-
};
|
2457
|
-
};
|
2458
|
-
};
|
2459
|
-
};
|
2460
|
-
ProfileController_findByDateRange: {
|
2461
|
-
parameters: {
|
2462
|
-
query: {
|
2463
|
-
from: string;
|
2464
|
-
to: string;
|
2465
|
-
};
|
2466
|
-
header?: never;
|
2467
|
-
path?: never;
|
2468
|
-
cookie?: never;
|
2469
|
-
};
|
2470
|
-
requestBody?: never;
|
2471
|
-
responses: {
|
2472
|
-
200: {
|
2171
|
+
201: {
|
2473
2172
|
headers: {
|
2474
2173
|
[name: string]: unknown;
|
2475
2174
|
};
|
2476
2175
|
content: {
|
2477
|
-
"application/json": components["schemas"]["
|
2176
|
+
"application/json": components["schemas"]["CreateEventResponseDto"];
|
2478
2177
|
};
|
2479
2178
|
};
|
2480
|
-
|
2179
|
+
409: {
|
2481
2180
|
headers: {
|
2482
2181
|
[name: string]: unknown;
|
2483
2182
|
};
|
@@ -2487,25 +2186,21 @@ export interface operations {
|
|
2487
2186
|
};
|
2488
2187
|
};
|
2489
2188
|
};
|
2490
|
-
|
2189
|
+
EventController_findAll: {
|
2491
2190
|
parameters: {
|
2492
2191
|
query?: never;
|
2493
2192
|
header?: never;
|
2494
2193
|
path?: never;
|
2495
2194
|
cookie?: never;
|
2496
2195
|
};
|
2497
|
-
requestBody
|
2498
|
-
content: {
|
2499
|
-
"application/json": components["schemas"]["CreateProfileDto"];
|
2500
|
-
};
|
2501
|
-
};
|
2196
|
+
requestBody?: never;
|
2502
2197
|
responses: {
|
2503
2198
|
200: {
|
2504
2199
|
headers: {
|
2505
2200
|
[name: string]: unknown;
|
2506
2201
|
};
|
2507
2202
|
content: {
|
2508
|
-
"application/json": components["schemas"]["
|
2203
|
+
"application/json": components["schemas"]["GetAllEventsResponseDto"];
|
2509
2204
|
};
|
2510
2205
|
};
|
2511
2206
|
404: {
|
@@ -2516,17 +2211,9 @@ export interface operations {
|
|
2516
2211
|
"application/json": components["schemas"]["ErrorDto"];
|
2517
2212
|
};
|
2518
2213
|
};
|
2519
|
-
409: {
|
2520
|
-
headers: {
|
2521
|
-
[name: string]: unknown;
|
2522
|
-
};
|
2523
|
-
content: {
|
2524
|
-
"application/json": components["schemas"]["ErrorDto"];
|
2525
|
-
};
|
2526
|
-
};
|
2527
2214
|
};
|
2528
2215
|
};
|
2529
|
-
|
2216
|
+
EventController_findById: {
|
2530
2217
|
parameters: {
|
2531
2218
|
query?: never;
|
2532
2219
|
header?: never;
|
@@ -2542,7 +2229,7 @@ export interface operations {
|
|
2542
2229
|
[name: string]: unknown;
|
2543
2230
|
};
|
2544
2231
|
content: {
|
2545
|
-
"application/json": components["schemas"]["
|
2232
|
+
"application/json": components["schemas"]["GetByIdEventResponseDto"];
|
2546
2233
|
};
|
2547
2234
|
};
|
2548
2235
|
404: {
|
@@ -2555,7 +2242,7 @@ export interface operations {
|
|
2555
2242
|
};
|
2556
2243
|
};
|
2557
2244
|
};
|
2558
|
-
|
2245
|
+
EventController_remove: {
|
2559
2246
|
parameters: {
|
2560
2247
|
query?: never;
|
2561
2248
|
header?: never;
|
@@ -2566,25 +2253,25 @@ export interface operations {
|
|
2566
2253
|
};
|
2567
2254
|
requestBody?: never;
|
2568
2255
|
responses: {
|
2569
|
-
|
2256
|
+
404: {
|
2570
2257
|
headers: {
|
2571
2258
|
[name: string]: unknown;
|
2572
2259
|
};
|
2573
2260
|
content: {
|
2574
|
-
"application/json": components["schemas"]["
|
2261
|
+
"application/json": components["schemas"]["ErrorDto"];
|
2575
2262
|
};
|
2576
2263
|
};
|
2577
|
-
|
2264
|
+
410: {
|
2578
2265
|
headers: {
|
2579
2266
|
[name: string]: unknown;
|
2580
2267
|
};
|
2581
2268
|
content: {
|
2582
|
-
"application/json": components["schemas"]["
|
2269
|
+
"application/json": components["schemas"]["DeleteEventResponseDto"];
|
2583
2270
|
};
|
2584
2271
|
};
|
2585
2272
|
};
|
2586
2273
|
};
|
2587
|
-
|
2274
|
+
EventController_update: {
|
2588
2275
|
parameters: {
|
2589
2276
|
query?: never;
|
2590
2277
|
header?: never;
|
@@ -2595,7 +2282,7 @@ export interface operations {
|
|
2595
2282
|
};
|
2596
2283
|
requestBody: {
|
2597
2284
|
content: {
|
2598
|
-
"application/json": components["schemas"]["
|
2285
|
+
"application/json": components["schemas"]["UpdateEventDto"];
|
2599
2286
|
};
|
2600
2287
|
};
|
2601
2288
|
responses: {
|
@@ -2604,7 +2291,7 @@ export interface operations {
|
|
2604
2291
|
[name: string]: unknown;
|
2605
2292
|
};
|
2606
2293
|
content: {
|
2607
|
-
"application/json": components["schemas"]["
|
2294
|
+
"application/json": components["schemas"]["UpdateEventResponseDto"];
|
2608
2295
|
};
|
2609
2296
|
};
|
2610
2297
|
404: {
|
@@ -2615,14 +2302,6 @@ export interface operations {
|
|
2615
2302
|
"application/json": components["schemas"]["ErrorDto"];
|
2616
2303
|
};
|
2617
2304
|
};
|
2618
|
-
409: {
|
2619
|
-
headers: {
|
2620
|
-
[name: string]: unknown;
|
2621
|
-
};
|
2622
|
-
content: {
|
2623
|
-
"application/json": components["schemas"]["ErrorDto"];
|
2624
|
-
};
|
2625
|
-
};
|
2626
2305
|
};
|
2627
2306
|
};
|
2628
2307
|
}
|