expo-backend-types 0.9.0-EXPO-249-EB-Modelo.5 → 0.9.0-EXPO-249-EB-Modelo.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -4
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -8
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -4
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -8
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
  8. package/dist/src/i18n/es.d.ts +21 -0
  9. package/dist/src/i18n/es.js +21 -0
  10. package/dist/src/i18n/es.js.map +1 -1
  11. package/dist/src/profile/dto/create-profile.dto.d.ts +694 -0
  12. package/dist/src/profile/dto/create-profile.dto.js +84 -0
  13. package/dist/src/profile/dto/delete-profile.dto.d.ts +125 -0
  14. package/dist/src/profile/dto/delete-profile.dto.js +10 -0
  15. package/dist/src/profile/dto/find-all-profile.dto.d.ts +16 -16
  16. package/dist/src/profile/dto/find-all-profile.dto.js +4 -4
  17. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +655 -0
  18. package/dist/src/profile/dto/find-by-date-range-profile.dto.js +34 -0
  19. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +10 -10
  20. package/dist/src/profile/dto/find-by-id-profile.dto.js +4 -4
  21. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +16 -16
  22. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +2 -2
  23. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +16 -16
  24. package/dist/src/profile/dto/find-by-tags-profile.dto.js +4 -4
  25. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  26. package/dist/src/profile/dto/profile.dto.js +7 -3
  27. package/dist/src/profile/dto/update-profile.dto.d.ts +360 -0
  28. package/dist/src/profile/dto/update-profile.dto.js +55 -0
  29. package/dist/src/profile/exports.d.ts +4 -0
  30. package/dist/src/profile/exports.js +4 -0
  31. package/dist/src/tag/dto/massive-allocation.dto.d.ts +16 -16
  32. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +16 -16
  33. package/dist/types/prisma-schema/edge.js +5 -4
  34. package/dist/types/prisma-schema/index-browser.js +2 -1
  35. package/dist/types/prisma-schema/index.d.ts +9 -2
  36. package/dist/types/prisma-schema/index.js +5 -4
  37. package/dist/types/prisma-schema/package.json +1 -1
  38. package/dist/types/prisma-schema/schema.prisma +2 -0
  39. package/dist/types/prisma-schema/wasm.js +2 -1
  40. package/dist/types/schema.d.ts +411 -123
  41. package/package.json +4 -1
@@ -559,14 +559,14 @@ export interface paths {
559
559
  patch?: never;
560
560
  trace?: never;
561
561
  };
562
- "/profile/{id}": {
562
+ "/profile/find-by-date-range": {
563
563
  parameters: {
564
564
  query?: never;
565
565
  header?: never;
566
566
  path?: never;
567
567
  cookie?: never;
568
568
  };
569
- get: operations["ProfileController_findById"];
569
+ get: operations["ProfileController_findByDateRange"];
570
570
  put?: never;
571
571
  post?: never;
572
572
  delete?: never;
@@ -575,6 +575,38 @@ export interface paths {
575
575
  patch?: never;
576
576
  trace?: never;
577
577
  };
578
+ "/profile/create": {
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}": {
595
+ parameters: {
596
+ query?: never;
597
+ header?: never;
598
+ path?: never;
599
+ cookie?: never;
600
+ };
601
+ get: operations["ProfileController_findById"];
602
+ put?: never;
603
+ post?: never;
604
+ delete: operations["ProfileController_delete"];
605
+ options?: never;
606
+ head?: never;
607
+ patch: operations["ProfileController_update"];
608
+ trace?: never;
609
+ };
578
610
  }
579
611
  export type webhooks = Record<string, never>;
580
612
  export interface components {
@@ -585,18 +617,18 @@ export interface components {
585
617
  };
586
618
  LoginResponseDto: {
587
619
  user: {
588
- id?: string;
589
- username?: string;
590
- role?: "USER" | "ADMIN";
620
+ id: string;
621
+ username: string;
622
+ role: "USER" | "ADMIN" | "FORM";
591
623
  isGlobalFilterActive: boolean;
592
624
  fcmToken: string[];
593
- created_at?: string;
594
- updated_at?: string;
625
+ created_at: string;
626
+ updated_at: string;
595
627
  };
596
628
  backendTokens: {
597
- accessToken?: string;
598
- refreshToken?: string;
599
- expiresIn?: number;
629
+ accessToken: string;
630
+ refreshToken: string;
631
+ expiresIn: number;
600
632
  };
601
633
  };
602
634
  ErrorDto: {
@@ -663,12 +695,12 @@ export interface components {
663
695
  created_at: string;
664
696
  updated_at: string;
665
697
  group: {
666
- id?: string;
667
- name?: string;
668
- color?: string;
669
- isExclusive?: boolean;
670
- created_at?: string;
671
- updated_at?: string;
698
+ id: string;
699
+ name: string;
700
+ color: string;
701
+ isExclusive: boolean;
702
+ created_at: string;
703
+ updated_at: string;
672
704
  };
673
705
  };
674
706
  UpdateTagDto: {
@@ -700,20 +732,20 @@ export interface components {
700
732
  id: string;
701
733
  shortId: number;
702
734
  phoneNumber: string;
703
- secondaryPhoneNumber: string | null;
735
+ secondaryPhoneNumber: null;
704
736
  fullName: string;
705
- firstName: string | null;
706
- gender: string | null;
707
- birthDate: string | null;
708
- profilePictureUrl: string | null;
709
- instagram: string | null;
710
- mail: string | null;
711
- dni: string | null;
712
- alternativeNames: string[] | null;
713
- birthLocationId: string | null;
714
- residenceLocationId: string | null;
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;
715
747
  isInTrash: boolean;
716
- movedToTrashDate: string | null;
748
+ movedToTrashDate: null;
717
749
  created_at: string;
718
750
  updated_at: string;
719
751
  }[];
@@ -727,20 +759,20 @@ export interface components {
727
759
  id: string;
728
760
  shortId: number;
729
761
  phoneNumber: string;
730
- secondaryPhoneNumber: string | null;
762
+ secondaryPhoneNumber: null;
731
763
  fullName: string;
732
- firstName: string | null;
733
- gender: string | null;
734
- birthDate: string | null;
735
- profilePictureUrl: string | null;
736
- instagram: string | null;
737
- mail: string | null;
738
- dni: string | null;
739
- alternativeNames: string[] | null;
740
- birthLocationId: string | null;
741
- residenceLocationId: string | null;
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;
742
774
  isInTrash: boolean;
743
- movedToTrashDate: string | null;
775
+ movedToTrashDate: null;
744
776
  created_at: string;
745
777
  updated_at: string;
746
778
  }[];
@@ -748,12 +780,12 @@ export interface components {
748
780
  CreateAccountDto: {
749
781
  username: string;
750
782
  password: string;
751
- role: "USER" | "ADMIN";
783
+ role: "USER" | "ADMIN" | "FORM";
752
784
  };
753
785
  CreateAccountResponseDto: {
754
786
  id: string;
755
787
  username: string;
756
- role: "USER" | "ADMIN";
788
+ role: "USER" | "ADMIN" | "FORM";
757
789
  isGlobalFilterActive: boolean;
758
790
  fcmToken: string[];
759
791
  };
@@ -765,7 +797,7 @@ export interface components {
765
797
  id: string;
766
798
  username: string;
767
799
  password: string;
768
- role: "USER" | "ADMIN";
800
+ role: "USER" | "ADMIN" | "FORM";
769
801
  isGlobalFilterActive: boolean;
770
802
  fcmToken: string[];
771
803
  created_at: string;
@@ -795,7 +827,7 @@ export interface components {
795
827
  GetMeResponseDto: {
796
828
  id: string;
797
829
  username: string;
798
- role: "USER" | "ADMIN";
830
+ role: "USER" | "ADMIN" | "FORM";
799
831
  isGlobalFilterActive: boolean;
800
832
  fcmToken: string[];
801
833
  created_at: string;
@@ -921,8 +953,8 @@ export interface components {
921
953
  profileId: string;
922
954
  isSolvable: boolean;
923
955
  isSolved: boolean;
924
- solvedAt: string | null;
925
- solvedBy: string;
956
+ solvedAt: null;
957
+ solvedBy?: string;
926
958
  created_at: string;
927
959
  updated_at: string;
928
960
  };
@@ -934,7 +966,7 @@ export interface components {
934
966
  profileId: string;
935
967
  isSolvable: boolean;
936
968
  isSolved: boolean;
937
- solvedAt: string | null;
969
+ solvedAt: null;
938
970
  solvedBy?: string;
939
971
  created_at: string;
940
972
  updated_at: string;
@@ -950,8 +982,8 @@ export interface components {
950
982
  profileId: string;
951
983
  isSolvable: boolean;
952
984
  isSolved: boolean;
953
- solvedAt: string | null;
954
- solvedBy: string;
985
+ solvedAt: null;
986
+ solvedBy?: string;
955
987
  created_at: string;
956
988
  updated_at: string;
957
989
  };
@@ -998,8 +1030,8 @@ export interface components {
998
1030
  isoCode: string;
999
1031
  countryCode: string;
1000
1032
  countryName: string;
1001
- latitude?: string | null;
1002
- longitude?: string | null;
1033
+ latitude?: null;
1034
+ longitude?: null;
1003
1035
  }[];
1004
1036
  };
1005
1037
  CreateCannedResponseDto: {
@@ -1063,10 +1095,10 @@ export interface components {
1063
1095
  name: string;
1064
1096
  date: string;
1065
1097
  location: string;
1066
- folderId: string | null;
1098
+ folderId: null;
1067
1099
  tagAssistedId: string;
1068
1100
  tagConfirmedId: string;
1069
- supraEventId: string | null;
1101
+ supraEventId: null;
1070
1102
  created_at: string;
1071
1103
  updated_at: string;
1072
1104
  }[];
@@ -1083,10 +1115,10 @@ export interface components {
1083
1115
  name: string;
1084
1116
  date: string;
1085
1117
  location: string;
1086
- folderId: string | null;
1118
+ folderId: null;
1087
1119
  tagAssistedId: string;
1088
1120
  tagConfirmedId: string;
1089
- supraEventId: string | null;
1121
+ supraEventId: null;
1090
1122
  created_at: string;
1091
1123
  updated_at: string;
1092
1124
  }[];
@@ -1114,20 +1146,20 @@ export interface components {
1114
1146
  id: string;
1115
1147
  shortId: number;
1116
1148
  phoneNumber: string;
1117
- secondaryPhoneNumber: string | null;
1149
+ secondaryPhoneNumber: null;
1118
1150
  fullName: string;
1119
- firstName: string | null;
1120
- gender: string | null;
1121
- birthDate: string | null;
1122
- profilePictureUrl: string | null;
1123
- instagram: string | null;
1124
- mail: string | null;
1125
- dni: string | null;
1126
- alternativeNames: string[] | null;
1127
- birthLocationId: string | null;
1128
- residenceLocationId: string | null;
1151
+ firstName: null;
1152
+ gender: null;
1153
+ birthDate: null;
1154
+ profilePictureUrl: null;
1155
+ instagram: null;
1156
+ mail: null;
1157
+ dni: null;
1158
+ alternativeNames: string[];
1159
+ birthLocationId: null;
1160
+ residenceLocationId: null;
1129
1161
  isInTrash: boolean;
1130
- movedToTrashDate: string | null;
1162
+ movedToTrashDate: null;
1131
1163
  created_at: string;
1132
1164
  updated_at: string;
1133
1165
  tags: {
@@ -1149,20 +1181,20 @@ export interface components {
1149
1181
  id: string;
1150
1182
  shortId: number;
1151
1183
  phoneNumber: string;
1152
- secondaryPhoneNumber: string | null;
1184
+ secondaryPhoneNumber: null;
1153
1185
  fullName: string;
1154
- firstName: string | null;
1155
- gender: string | null;
1156
- birthDate: string | null;
1157
- profilePictureUrl: string | null;
1158
- instagram: string | null;
1159
- mail: string | null;
1160
- dni: string | null;
1161
- alternativeNames: string[] | null;
1162
- birthLocationId: string | null;
1163
- residenceLocationId: string | null;
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;
1164
1196
  isInTrash: boolean;
1165
- movedToTrashDate: string | null;
1197
+ movedToTrashDate: null;
1166
1198
  created_at: string;
1167
1199
  updated_at: string;
1168
1200
  tags: {
@@ -1183,20 +1215,20 @@ export interface components {
1183
1215
  id: string;
1184
1216
  shortId: number;
1185
1217
  phoneNumber: string;
1186
- secondaryPhoneNumber: string | null;
1218
+ secondaryPhoneNumber: null;
1187
1219
  fullName: string;
1188
- firstName: string | null;
1189
- gender: string | null;
1190
- birthDate: string | null;
1191
- profilePictureUrl: string | null;
1192
- instagram: string | null;
1193
- mail: string | null;
1194
- dni: string | null;
1195
- alternativeNames: string[] | null;
1196
- birthLocationId: string | null;
1197
- residenceLocationId: string | null;
1220
+ firstName: null;
1221
+ gender: null;
1222
+ birthDate: null;
1223
+ profilePictureUrl: null;
1224
+ instagram: null;
1225
+ mail: null;
1226
+ dni: null;
1227
+ alternativeNames: string[];
1228
+ birthLocationId: null;
1229
+ residenceLocationId: null;
1198
1230
  isInTrash: boolean;
1199
- movedToTrashDate: string | null;
1231
+ movedToTrashDate: null;
1200
1232
  created_at: string;
1201
1233
  updated_at: string;
1202
1234
  tags: {
@@ -1209,46 +1241,113 @@ export interface components {
1209
1241
  }[];
1210
1242
  }[];
1211
1243
  };
1244
+ FindByDateRangeResponseDto: {
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
+ };
1212
1329
  FindByIdProfileResponseDto: {
1213
1330
  id: string;
1214
1331
  shortId: number;
1215
1332
  phoneNumber: string;
1216
- secondaryPhoneNumber: string | null;
1333
+ secondaryPhoneNumber: null;
1217
1334
  fullName: string;
1218
- firstName: string | null;
1219
- gender: string | null;
1220
- birthDate: string | null;
1221
- profilePictureUrl: string | null;
1222
- instagram: string | null;
1223
- mail: string | null;
1224
- dni: string | null;
1225
- alternativeNames: string[] | null;
1226
- birthLocationId: string | null;
1227
- residenceLocationId: string | null;
1335
+ firstName: null;
1336
+ gender: null;
1337
+ birthDate: null;
1338
+ profilePictureUrl: null;
1339
+ instagram: null;
1340
+ mail: null;
1341
+ dni: null;
1342
+ alternativeNames: string[];
1343
+ birthLocationId: null;
1344
+ residenceLocationId: null;
1228
1345
  isInTrash: boolean;
1229
- movedToTrashDate: string | null;
1346
+ movedToTrashDate: null;
1230
1347
  created_at: string;
1231
1348
  updated_at: string;
1232
- residenceLocation: {
1233
- id?: string;
1234
- latitude?: number;
1235
- longitude?: number;
1236
- country?: string;
1237
- state?: string;
1238
- city?: string;
1239
- created_at?: string;
1240
- updated_at?: string;
1241
- } | null;
1242
- birthLocation: {
1243
- id?: string;
1244
- latitude?: number;
1245
- longitude?: number;
1246
- country?: string;
1247
- state?: string;
1248
- city?: string;
1249
- created_at?: string;
1250
- updated_at?: string;
1251
- } | null;
1349
+ residenceLocation: null;
1350
+ birthLocation: null;
1252
1351
  tags: {
1253
1352
  id: string;
1254
1353
  name: string;
@@ -1263,6 +1362,56 @@ export interface components {
1263
1362
  };
1264
1363
  }[];
1265
1364
  };
1365
+ DeleteProfileResponseDto: {
1366
+ id: string;
1367
+ shortId: number;
1368
+ phoneNumber: string;
1369
+ secondaryPhoneNumber: null;
1370
+ fullName: string;
1371
+ firstName: null;
1372
+ gender: null;
1373
+ birthDate: null;
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;
1383
+ created_at: string;
1384
+ updated_at: string;
1385
+ };
1386
+ UpdateProfileDto: {
1387
+ alternativeNames: string[];
1388
+ birthDate: null;
1389
+ dni: null;
1390
+ fullName: string;
1391
+ gender: null;
1392
+ instagram: null;
1393
+ mail: null;
1394
+ phoneNumber: string;
1395
+ profilePictureUrl: null;
1396
+ secondaryPhoneNumber: null;
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[];
1414
+ };
1266
1415
  };
1267
1416
  responses: never;
1268
1417
  parameters: never;
@@ -2308,6 +2457,75 @@ export interface operations {
2308
2457
  };
2309
2458
  };
2310
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: {
2473
+ headers: {
2474
+ [name: string]: unknown;
2475
+ };
2476
+ content: {
2477
+ "application/json": components["schemas"]["FindByDateRangeResponseDto"];
2478
+ };
2479
+ };
2480
+ 412: {
2481
+ headers: {
2482
+ [name: string]: unknown;
2483
+ };
2484
+ content: {
2485
+ "application/json": components["schemas"]["ErrorDto"];
2486
+ };
2487
+ };
2488
+ };
2489
+ };
2490
+ ProfileController_create: {
2491
+ parameters: {
2492
+ query?: never;
2493
+ header?: never;
2494
+ path?: never;
2495
+ cookie?: never;
2496
+ };
2497
+ requestBody: {
2498
+ content: {
2499
+ "application/json": components["schemas"]["CreateProfileDto"];
2500
+ };
2501
+ };
2502
+ responses: {
2503
+ 200: {
2504
+ headers: {
2505
+ [name: string]: unknown;
2506
+ };
2507
+ content: {
2508
+ "application/json": components["schemas"]["CreateProfileResponseDto"];
2509
+ };
2510
+ };
2511
+ 404: {
2512
+ headers: {
2513
+ [name: string]: unknown;
2514
+ };
2515
+ content: {
2516
+ "application/json": components["schemas"]["ErrorDto"];
2517
+ };
2518
+ };
2519
+ 409: {
2520
+ headers: {
2521
+ [name: string]: unknown;
2522
+ };
2523
+ content: {
2524
+ "application/json": components["schemas"]["ErrorDto"];
2525
+ };
2526
+ };
2527
+ };
2528
+ };
2311
2529
  ProfileController_findById: {
2312
2530
  parameters: {
2313
2531
  query?: never;
@@ -2337,4 +2555,74 @@ export interface operations {
2337
2555
  };
2338
2556
  };
2339
2557
  };
2558
+ ProfileController_delete: {
2559
+ parameters: {
2560
+ query?: never;
2561
+ header?: never;
2562
+ path: {
2563
+ id: string;
2564
+ };
2565
+ cookie?: never;
2566
+ };
2567
+ requestBody?: never;
2568
+ responses: {
2569
+ 200: {
2570
+ headers: {
2571
+ [name: string]: unknown;
2572
+ };
2573
+ content: {
2574
+ "application/json": components["schemas"]["DeleteProfileResponseDto"];
2575
+ };
2576
+ };
2577
+ 404: {
2578
+ headers: {
2579
+ [name: string]: unknown;
2580
+ };
2581
+ content: {
2582
+ "application/json": components["schemas"]["ErrorDto"];
2583
+ };
2584
+ };
2585
+ };
2586
+ };
2587
+ ProfileController_update: {
2588
+ parameters: {
2589
+ query?: never;
2590
+ header?: never;
2591
+ path: {
2592
+ id: string;
2593
+ };
2594
+ cookie?: never;
2595
+ };
2596
+ requestBody: {
2597
+ content: {
2598
+ "application/json": components["schemas"]["UpdateProfileDto"];
2599
+ };
2600
+ };
2601
+ responses: {
2602
+ 200: {
2603
+ headers: {
2604
+ [name: string]: unknown;
2605
+ };
2606
+ content: {
2607
+ "application/json": components["schemas"]["UpdateProfileDto"];
2608
+ };
2609
+ };
2610
+ 404: {
2611
+ headers: {
2612
+ [name: string]: unknown;
2613
+ };
2614
+ content: {
2615
+ "application/json": components["schemas"]["ErrorDto"];
2616
+ };
2617
+ };
2618
+ 409: {
2619
+ headers: {
2620
+ [name: string]: unknown;
2621
+ };
2622
+ content: {
2623
+ "application/json": components["schemas"]["ErrorDto"];
2624
+ };
2625
+ };
2626
+ };
2627
+ };
2340
2628
  }