Spaces:
Runtime error
Runtime error
File size: 64,365 Bytes
9551db2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 |
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
/* eslint-disable */
// biome-ignore-all lint: generated file
// @ts-nocheck
/*
* This file exports the `Users` model and its related types.
*
* 🟢 You can import this file directly.
*/
import type * as runtime from "@prisma/client/runtime/client"
import type * as $Enums from "../enums.js"
import type * as Prisma from "../internal/prismaNamespace.js"
/**
* Model Users
*
*/
export type UsersModel = runtime.Types.Result.DefaultSelection<Prisma.$UsersPayload>
export type AggregateUsers = {
_count: UsersCountAggregateOutputType | null
_min: UsersMinAggregateOutputType | null
_max: UsersMaxAggregateOutputType | null
}
export type UsersMinAggregateOutputType = {
id: string | null
name: string | null
email: string | null
emailVerified: boolean | null
image: string | null
createdAt: Date | null
updatedAt: Date | null
role: string | null
phoneNumber: string | null
deletedAt: Date | null
}
export type UsersMaxAggregateOutputType = {
id: string | null
name: string | null
email: string | null
emailVerified: boolean | null
image: string | null
createdAt: Date | null
updatedAt: Date | null
role: string | null
phoneNumber: string | null
deletedAt: Date | null
}
export type UsersCountAggregateOutputType = {
id: number
name: number
email: number
emailVerified: number
image: number
createdAt: number
updatedAt: number
role: number
phoneNumber: number
deletedAt: number
_all: number
}
export type UsersMinAggregateInputType = {
id?: true
name?: true
email?: true
emailVerified?: true
image?: true
createdAt?: true
updatedAt?: true
role?: true
phoneNumber?: true
deletedAt?: true
}
export type UsersMaxAggregateInputType = {
id?: true
name?: true
email?: true
emailVerified?: true
image?: true
createdAt?: true
updatedAt?: true
role?: true
phoneNumber?: true
deletedAt?: true
}
export type UsersCountAggregateInputType = {
id?: true
name?: true
email?: true
emailVerified?: true
image?: true
createdAt?: true
updatedAt?: true
role?: true
phoneNumber?: true
deletedAt?: true
_all?: true
}
export type UsersAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Filter which Users to aggregate.
*/
where?: Prisma.UsersWhereInput
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
*
* Determine the order of Users to fetch.
*/
orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[]
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
*
* Sets the start position
*/
cursor?: Prisma.UsersWhereUniqueInput
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Take `±n` Users from the position of the cursor.
*/
take?: number
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Skip the first `n` Users.
*/
skip?: number
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
*
* Count returned Users
**/
_count?: true | UsersCountAggregateInputType
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
*
* Select which fields to find the minimum value
**/
_min?: UsersMinAggregateInputType
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
*
* Select which fields to find the maximum value
**/
_max?: UsersMaxAggregateInputType
}
export type GetUsersAggregateType<T extends UsersAggregateArgs> = {
[P in keyof T & keyof AggregateUsers]: P extends '_count' | 'count'
? T[P] extends true
? number
: Prisma.GetScalarType<T[P], AggregateUsers[P]>
: Prisma.GetScalarType<T[P], AggregateUsers[P]>
}
export type UsersGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
where?: Prisma.UsersWhereInput
orderBy?: Prisma.UsersOrderByWithAggregationInput | Prisma.UsersOrderByWithAggregationInput[]
by: Prisma.UsersScalarFieldEnum[] | Prisma.UsersScalarFieldEnum
having?: Prisma.UsersScalarWhereWithAggregatesInput
take?: number
skip?: number
_count?: UsersCountAggregateInputType | true
_min?: UsersMinAggregateInputType
_max?: UsersMaxAggregateInputType
}
export type UsersGroupByOutputType = {
id: string
name: string
email: string
emailVerified: boolean
image: string | null
createdAt: Date
updatedAt: Date
role: string
phoneNumber: string | null
deletedAt: Date | null
_count: UsersCountAggregateOutputType | null
_min: UsersMinAggregateOutputType | null
_max: UsersMaxAggregateOutputType | null
}
type GetUsersGroupByPayload<T extends UsersGroupByArgs> = Prisma.PrismaPromise<
Array<
Prisma.PickEnumerable<UsersGroupByOutputType, T['by']> &
{
[P in ((keyof T) & (keyof UsersGroupByOutputType))]: P extends '_count'
? T[P] extends boolean
? number
: Prisma.GetScalarType<T[P], UsersGroupByOutputType[P]>
: Prisma.GetScalarType<T[P], UsersGroupByOutputType[P]>
}
>
>
export type UsersWhereInput = {
AND?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[]
OR?: Prisma.UsersWhereInput[]
NOT?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[]
id?: Prisma.StringFilter<"Users"> | string
name?: Prisma.StringFilter<"Users"> | string
email?: Prisma.StringFilter<"Users"> | string
emailVerified?: Prisma.BoolFilter<"Users"> | boolean
image?: Prisma.StringNullableFilter<"Users"> | string | null
createdAt?: Prisma.DateTimeFilter<"Users"> | Date | string
updatedAt?: Prisma.DateTimeFilter<"Users"> | Date | string
role?: Prisma.StringFilter<"Users"> | string
phoneNumber?: Prisma.StringNullableFilter<"Users"> | string | null
deletedAt?: Prisma.DateTimeNullableFilter<"Users"> | Date | string | null
sessions?: Prisma.SessionsListRelationFilter
accounts?: Prisma.AccountsListRelationFilter
mentorApplication?: Prisma.XOR<Prisma.MentorApplicationsNullableScalarRelationFilter, Prisma.MentorApplicationsWhereInput> | null
}
export type UsersOrderByWithRelationInput = {
id?: Prisma.SortOrder
name?: Prisma.SortOrder
email?: Prisma.SortOrder
emailVerified?: Prisma.SortOrder
image?: Prisma.SortOrderInput | Prisma.SortOrder
createdAt?: Prisma.SortOrder
updatedAt?: Prisma.SortOrder
role?: Prisma.SortOrder
phoneNumber?: Prisma.SortOrderInput | Prisma.SortOrder
deletedAt?: Prisma.SortOrderInput | Prisma.SortOrder
sessions?: Prisma.SessionsOrderByRelationAggregateInput
accounts?: Prisma.AccountsOrderByRelationAggregateInput
mentorApplication?: Prisma.MentorApplicationsOrderByWithRelationInput
}
export type UsersWhereUniqueInput = Prisma.AtLeast<{
id?: string
email?: string
AND?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[]
OR?: Prisma.UsersWhereInput[]
NOT?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[]
name?: Prisma.StringFilter<"Users"> | string
emailVerified?: Prisma.BoolFilter<"Users"> | boolean
image?: Prisma.StringNullableFilter<"Users"> | string | null
createdAt?: Prisma.DateTimeFilter<"Users"> | Date | string
updatedAt?: Prisma.DateTimeFilter<"Users"> | Date | string
role?: Prisma.StringFilter<"Users"> | string
phoneNumber?: Prisma.StringNullableFilter<"Users"> | string | null
deletedAt?: Prisma.DateTimeNullableFilter<"Users"> | Date | string | null
sessions?: Prisma.SessionsListRelationFilter
accounts?: Prisma.AccountsListRelationFilter
mentorApplication?: Prisma.XOR<Prisma.MentorApplicationsNullableScalarRelationFilter, Prisma.MentorApplicationsWhereInput> | null
}, "id" | "email">
export type UsersOrderByWithAggregationInput = {
id?: Prisma.SortOrder
name?: Prisma.SortOrder
email?: Prisma.SortOrder
emailVerified?: Prisma.SortOrder
image?: Prisma.SortOrderInput | Prisma.SortOrder
createdAt?: Prisma.SortOrder
updatedAt?: Prisma.SortOrder
role?: Prisma.SortOrder
phoneNumber?: Prisma.SortOrderInput | Prisma.SortOrder
deletedAt?: Prisma.SortOrderInput | Prisma.SortOrder
_count?: Prisma.UsersCountOrderByAggregateInput
_max?: Prisma.UsersMaxOrderByAggregateInput
_min?: Prisma.UsersMinOrderByAggregateInput
}
export type UsersScalarWhereWithAggregatesInput = {
AND?: Prisma.UsersScalarWhereWithAggregatesInput | Prisma.UsersScalarWhereWithAggregatesInput[]
OR?: Prisma.UsersScalarWhereWithAggregatesInput[]
NOT?: Prisma.UsersScalarWhereWithAggregatesInput | Prisma.UsersScalarWhereWithAggregatesInput[]
id?: Prisma.StringWithAggregatesFilter<"Users"> | string
name?: Prisma.StringWithAggregatesFilter<"Users"> | string
email?: Prisma.StringWithAggregatesFilter<"Users"> | string
emailVerified?: Prisma.BoolWithAggregatesFilter<"Users"> | boolean
image?: Prisma.StringNullableWithAggregatesFilter<"Users"> | string | null
createdAt?: Prisma.DateTimeWithAggregatesFilter<"Users"> | Date | string
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"Users"> | Date | string
role?: Prisma.StringWithAggregatesFilter<"Users"> | string
phoneNumber?: Prisma.StringNullableWithAggregatesFilter<"Users"> | string | null
deletedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Users"> | Date | string | null
}
export type UsersCreateInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
sessions?: Prisma.SessionsCreateNestedManyWithoutUsersInput
accounts?: Prisma.AccountsCreateNestedManyWithoutUsersInput
mentorApplication?: Prisma.MentorApplicationsCreateNestedOneWithoutUserInput
}
export type UsersUncheckedCreateInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
sessions?: Prisma.SessionsUncheckedCreateNestedManyWithoutUsersInput
accounts?: Prisma.AccountsUncheckedCreateNestedManyWithoutUsersInput
mentorApplication?: Prisma.MentorApplicationsUncheckedCreateNestedOneWithoutUserInput
}
export type UsersUpdateInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
sessions?: Prisma.SessionsUpdateManyWithoutUsersNestedInput
accounts?: Prisma.AccountsUpdateManyWithoutUsersNestedInput
mentorApplication?: Prisma.MentorApplicationsUpdateOneWithoutUserNestedInput
}
export type UsersUncheckedUpdateInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
sessions?: Prisma.SessionsUncheckedUpdateManyWithoutUsersNestedInput
accounts?: Prisma.AccountsUncheckedUpdateManyWithoutUsersNestedInput
mentorApplication?: Prisma.MentorApplicationsUncheckedUpdateOneWithoutUserNestedInput
}
export type UsersCreateManyInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
}
export type UsersUpdateManyMutationInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}
export type UsersUncheckedUpdateManyInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}
export type UsersCountOrderByAggregateInput = {
id?: Prisma.SortOrder
name?: Prisma.SortOrder
email?: Prisma.SortOrder
emailVerified?: Prisma.SortOrder
image?: Prisma.SortOrder
createdAt?: Prisma.SortOrder
updatedAt?: Prisma.SortOrder
role?: Prisma.SortOrder
phoneNumber?: Prisma.SortOrder
deletedAt?: Prisma.SortOrder
}
export type UsersMaxOrderByAggregateInput = {
id?: Prisma.SortOrder
name?: Prisma.SortOrder
email?: Prisma.SortOrder
emailVerified?: Prisma.SortOrder
image?: Prisma.SortOrder
createdAt?: Prisma.SortOrder
updatedAt?: Prisma.SortOrder
role?: Prisma.SortOrder
phoneNumber?: Prisma.SortOrder
deletedAt?: Prisma.SortOrder
}
export type UsersMinOrderByAggregateInput = {
id?: Prisma.SortOrder
name?: Prisma.SortOrder
email?: Prisma.SortOrder
emailVerified?: Prisma.SortOrder
image?: Prisma.SortOrder
createdAt?: Prisma.SortOrder
updatedAt?: Prisma.SortOrder
role?: Prisma.SortOrder
phoneNumber?: Prisma.SortOrder
deletedAt?: Prisma.SortOrder
}
export type UsersScalarRelationFilter = {
is?: Prisma.UsersWhereInput
isNot?: Prisma.UsersWhereInput
}
export type StringFieldUpdateOperationsInput = {
set?: string
}
export type BoolFieldUpdateOperationsInput = {
set?: boolean
}
export type NullableStringFieldUpdateOperationsInput = {
set?: string | null
}
export type DateTimeFieldUpdateOperationsInput = {
set?: Date | string
}
export type NullableDateTimeFieldUpdateOperationsInput = {
set?: Date | string | null
}
export type UsersCreateNestedOneWithoutSessionsInput = {
create?: Prisma.XOR<Prisma.UsersCreateWithoutSessionsInput, Prisma.UsersUncheckedCreateWithoutSessionsInput>
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutSessionsInput
connect?: Prisma.UsersWhereUniqueInput
}
export type UsersUpdateOneRequiredWithoutSessionsNestedInput = {
create?: Prisma.XOR<Prisma.UsersCreateWithoutSessionsInput, Prisma.UsersUncheckedCreateWithoutSessionsInput>
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutSessionsInput
upsert?: Prisma.UsersUpsertWithoutSessionsInput
connect?: Prisma.UsersWhereUniqueInput
update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutSessionsInput, Prisma.UsersUpdateWithoutSessionsInput>, Prisma.UsersUncheckedUpdateWithoutSessionsInput>
}
export type UsersCreateNestedOneWithoutAccountsInput = {
create?: Prisma.XOR<Prisma.UsersCreateWithoutAccountsInput, Prisma.UsersUncheckedCreateWithoutAccountsInput>
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutAccountsInput
connect?: Prisma.UsersWhereUniqueInput
}
export type UsersUpdateOneRequiredWithoutAccountsNestedInput = {
create?: Prisma.XOR<Prisma.UsersCreateWithoutAccountsInput, Prisma.UsersUncheckedCreateWithoutAccountsInput>
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutAccountsInput
upsert?: Prisma.UsersUpsertWithoutAccountsInput
connect?: Prisma.UsersWhereUniqueInput
update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutAccountsInput, Prisma.UsersUpdateWithoutAccountsInput>, Prisma.UsersUncheckedUpdateWithoutAccountsInput>
}
export type UsersCreateNestedOneWithoutMentorApplicationInput = {
create?: Prisma.XOR<Prisma.UsersCreateWithoutMentorApplicationInput, Prisma.UsersUncheckedCreateWithoutMentorApplicationInput>
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutMentorApplicationInput
connect?: Prisma.UsersWhereUniqueInput
}
export type UsersUpdateOneRequiredWithoutMentorApplicationNestedInput = {
create?: Prisma.XOR<Prisma.UsersCreateWithoutMentorApplicationInput, Prisma.UsersUncheckedCreateWithoutMentorApplicationInput>
connectOrCreate?: Prisma.UsersCreateOrConnectWithoutMentorApplicationInput
upsert?: Prisma.UsersUpsertWithoutMentorApplicationInput
connect?: Prisma.UsersWhereUniqueInput
update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutMentorApplicationInput, Prisma.UsersUpdateWithoutMentorApplicationInput>, Prisma.UsersUncheckedUpdateWithoutMentorApplicationInput>
}
export type UsersCreateWithoutSessionsInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
accounts?: Prisma.AccountsCreateNestedManyWithoutUsersInput
mentorApplication?: Prisma.MentorApplicationsCreateNestedOneWithoutUserInput
}
export type UsersUncheckedCreateWithoutSessionsInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
accounts?: Prisma.AccountsUncheckedCreateNestedManyWithoutUsersInput
mentorApplication?: Prisma.MentorApplicationsUncheckedCreateNestedOneWithoutUserInput
}
export type UsersCreateOrConnectWithoutSessionsInput = {
where: Prisma.UsersWhereUniqueInput
create: Prisma.XOR<Prisma.UsersCreateWithoutSessionsInput, Prisma.UsersUncheckedCreateWithoutSessionsInput>
}
export type UsersUpsertWithoutSessionsInput = {
update: Prisma.XOR<Prisma.UsersUpdateWithoutSessionsInput, Prisma.UsersUncheckedUpdateWithoutSessionsInput>
create: Prisma.XOR<Prisma.UsersCreateWithoutSessionsInput, Prisma.UsersUncheckedCreateWithoutSessionsInput>
where?: Prisma.UsersWhereInput
}
export type UsersUpdateToOneWithWhereWithoutSessionsInput = {
where?: Prisma.UsersWhereInput
data: Prisma.XOR<Prisma.UsersUpdateWithoutSessionsInput, Prisma.UsersUncheckedUpdateWithoutSessionsInput>
}
export type UsersUpdateWithoutSessionsInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
accounts?: Prisma.AccountsUpdateManyWithoutUsersNestedInput
mentorApplication?: Prisma.MentorApplicationsUpdateOneWithoutUserNestedInput
}
export type UsersUncheckedUpdateWithoutSessionsInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
accounts?: Prisma.AccountsUncheckedUpdateManyWithoutUsersNestedInput
mentorApplication?: Prisma.MentorApplicationsUncheckedUpdateOneWithoutUserNestedInput
}
export type UsersCreateWithoutAccountsInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
sessions?: Prisma.SessionsCreateNestedManyWithoutUsersInput
mentorApplication?: Prisma.MentorApplicationsCreateNestedOneWithoutUserInput
}
export type UsersUncheckedCreateWithoutAccountsInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
sessions?: Prisma.SessionsUncheckedCreateNestedManyWithoutUsersInput
mentorApplication?: Prisma.MentorApplicationsUncheckedCreateNestedOneWithoutUserInput
}
export type UsersCreateOrConnectWithoutAccountsInput = {
where: Prisma.UsersWhereUniqueInput
create: Prisma.XOR<Prisma.UsersCreateWithoutAccountsInput, Prisma.UsersUncheckedCreateWithoutAccountsInput>
}
export type UsersUpsertWithoutAccountsInput = {
update: Prisma.XOR<Prisma.UsersUpdateWithoutAccountsInput, Prisma.UsersUncheckedUpdateWithoutAccountsInput>
create: Prisma.XOR<Prisma.UsersCreateWithoutAccountsInput, Prisma.UsersUncheckedCreateWithoutAccountsInput>
where?: Prisma.UsersWhereInput
}
export type UsersUpdateToOneWithWhereWithoutAccountsInput = {
where?: Prisma.UsersWhereInput
data: Prisma.XOR<Prisma.UsersUpdateWithoutAccountsInput, Prisma.UsersUncheckedUpdateWithoutAccountsInput>
}
export type UsersUpdateWithoutAccountsInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
sessions?: Prisma.SessionsUpdateManyWithoutUsersNestedInput
mentorApplication?: Prisma.MentorApplicationsUpdateOneWithoutUserNestedInput
}
export type UsersUncheckedUpdateWithoutAccountsInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
sessions?: Prisma.SessionsUncheckedUpdateManyWithoutUsersNestedInput
mentorApplication?: Prisma.MentorApplicationsUncheckedUpdateOneWithoutUserNestedInput
}
export type UsersCreateWithoutMentorApplicationInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
sessions?: Prisma.SessionsCreateNestedManyWithoutUsersInput
accounts?: Prisma.AccountsCreateNestedManyWithoutUsersInput
}
export type UsersUncheckedCreateWithoutMentorApplicationInput = {
id: string
name: string
email: string
emailVerified?: boolean
image?: string | null
createdAt?: Date | string
updatedAt?: Date | string
role?: string
phoneNumber?: string | null
deletedAt?: Date | string | null
sessions?: Prisma.SessionsUncheckedCreateNestedManyWithoutUsersInput
accounts?: Prisma.AccountsUncheckedCreateNestedManyWithoutUsersInput
}
export type UsersCreateOrConnectWithoutMentorApplicationInput = {
where: Prisma.UsersWhereUniqueInput
create: Prisma.XOR<Prisma.UsersCreateWithoutMentorApplicationInput, Prisma.UsersUncheckedCreateWithoutMentorApplicationInput>
}
export type UsersUpsertWithoutMentorApplicationInput = {
update: Prisma.XOR<Prisma.UsersUpdateWithoutMentorApplicationInput, Prisma.UsersUncheckedUpdateWithoutMentorApplicationInput>
create: Prisma.XOR<Prisma.UsersCreateWithoutMentorApplicationInput, Prisma.UsersUncheckedCreateWithoutMentorApplicationInput>
where?: Prisma.UsersWhereInput
}
export type UsersUpdateToOneWithWhereWithoutMentorApplicationInput = {
where?: Prisma.UsersWhereInput
data: Prisma.XOR<Prisma.UsersUpdateWithoutMentorApplicationInput, Prisma.UsersUncheckedUpdateWithoutMentorApplicationInput>
}
export type UsersUpdateWithoutMentorApplicationInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
sessions?: Prisma.SessionsUpdateManyWithoutUsersNestedInput
accounts?: Prisma.AccountsUpdateManyWithoutUsersNestedInput
}
export type UsersUncheckedUpdateWithoutMentorApplicationInput = {
id?: Prisma.StringFieldUpdateOperationsInput | string
name?: Prisma.StringFieldUpdateOperationsInput | string
email?: Prisma.StringFieldUpdateOperationsInput | string
emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
role?: Prisma.StringFieldUpdateOperationsInput | string
phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
sessions?: Prisma.SessionsUncheckedUpdateManyWithoutUsersNestedInput
accounts?: Prisma.AccountsUncheckedUpdateManyWithoutUsersNestedInput
}
/**
* Count Type UsersCountOutputType
*/
export type UsersCountOutputType = {
sessions: number
accounts: number
}
export type UsersCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
sessions?: boolean | UsersCountOutputTypeCountSessionsArgs
accounts?: boolean | UsersCountOutputTypeCountAccountsArgs
}
/**
* UsersCountOutputType without action
*/
export type UsersCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the UsersCountOutputType
*/
select?: Prisma.UsersCountOutputTypeSelect<ExtArgs> | null
}
/**
* UsersCountOutputType without action
*/
export type UsersCountOutputTypeCountSessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
where?: Prisma.SessionsWhereInput
}
/**
* UsersCountOutputType without action
*/
export type UsersCountOutputTypeCountAccountsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
where?: Prisma.AccountsWhereInput
}
export type UsersSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
id?: boolean
name?: boolean
email?: boolean
emailVerified?: boolean
image?: boolean
createdAt?: boolean
updatedAt?: boolean
role?: boolean
phoneNumber?: boolean
deletedAt?: boolean
sessions?: boolean | Prisma.Users$sessionsArgs<ExtArgs>
accounts?: boolean | Prisma.Users$accountsArgs<ExtArgs>
mentorApplication?: boolean | Prisma.Users$mentorApplicationArgs<ExtArgs>
_count?: boolean | Prisma.UsersCountOutputTypeDefaultArgs<ExtArgs>
}, ExtArgs["result"]["users"]>
export type UsersSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
id?: boolean
name?: boolean
email?: boolean
emailVerified?: boolean
image?: boolean
createdAt?: boolean
updatedAt?: boolean
role?: boolean
phoneNumber?: boolean
deletedAt?: boolean
}, ExtArgs["result"]["users"]>
export type UsersSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
id?: boolean
name?: boolean
email?: boolean
emailVerified?: boolean
image?: boolean
createdAt?: boolean
updatedAt?: boolean
role?: boolean
phoneNumber?: boolean
deletedAt?: boolean
}, ExtArgs["result"]["users"]>
export type UsersSelectScalar = {
id?: boolean
name?: boolean
email?: boolean
emailVerified?: boolean
image?: boolean
createdAt?: boolean
updatedAt?: boolean
role?: boolean
phoneNumber?: boolean
deletedAt?: boolean
}
export type UsersOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "role" | "phoneNumber" | "deletedAt", ExtArgs["result"]["users"]>
export type UsersInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
sessions?: boolean | Prisma.Users$sessionsArgs<ExtArgs>
accounts?: boolean | Prisma.Users$accountsArgs<ExtArgs>
mentorApplication?: boolean | Prisma.Users$mentorApplicationArgs<ExtArgs>
_count?: boolean | Prisma.UsersCountOutputTypeDefaultArgs<ExtArgs>
}
export type UsersIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
export type UsersIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
export type $UsersPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
name: "Users"
objects: {
sessions: Prisma.$SessionsPayload<ExtArgs>[]
accounts: Prisma.$AccountsPayload<ExtArgs>[]
mentorApplication: Prisma.$MentorApplicationsPayload<ExtArgs> | null
}
scalars: runtime.Types.Extensions.GetPayloadResult<{
id: string
name: string
email: string
emailVerified: boolean
image: string | null
createdAt: Date
updatedAt: Date
role: string
phoneNumber: string | null
deletedAt: Date | null
}, ExtArgs["result"]["users"]>
composites: {}
}
export type UsersGetPayload<S extends boolean | null | undefined | UsersDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$UsersPayload, S>
export type UsersCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
Omit<UsersFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
select?: UsersCountAggregateInputType | true
}
export interface UsersDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['Users'], meta: { name: 'Users' } }
/**
* Find zero or one Users that matches the filter.
* @param {UsersFindUniqueArgs} args - Arguments to find a Users
* @example
* // Get one Users
* const users = await prisma.users.findUnique({
* where: {
* // ... provide filter here
* }
* })
*/
findUnique<T extends UsersFindUniqueArgs>(args: Prisma.SelectSubset<T, UsersFindUniqueArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
/**
* Find one Users that matches the filter or throw an error with `error.code='P2025'`
* if no matches were found.
* @param {UsersFindUniqueOrThrowArgs} args - Arguments to find a Users
* @example
* // Get one Users
* const users = await prisma.users.findUniqueOrThrow({
* where: {
* // ... provide filter here
* }
* })
*/
findUniqueOrThrow<T extends UsersFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, UsersFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
/**
* Find the first Users that matches the filter.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UsersFindFirstArgs} args - Arguments to find a Users
* @example
* // Get one Users
* const users = await prisma.users.findFirst({
* where: {
* // ... provide filter here
* }
* })
*/
findFirst<T extends UsersFindFirstArgs>(args?: Prisma.SelectSubset<T, UsersFindFirstArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
/**
* Find the first Users that matches the filter or
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UsersFindFirstOrThrowArgs} args - Arguments to find a Users
* @example
* // Get one Users
* const users = await prisma.users.findFirstOrThrow({
* where: {
* // ... provide filter here
* }
* })
*/
findFirstOrThrow<T extends UsersFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, UsersFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
/**
* Find zero or more Users that matches the filter.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UsersFindManyArgs} args - Arguments to filter and select certain fields only.
* @example
* // Get all Users
* const users = await prisma.users.findMany()
*
* // Get first 10 Users
* const users = await prisma.users.findMany({ take: 10 })
*
* // Only select the `id`
* const usersWithIdOnly = await prisma.users.findMany({ select: { id: true } })
*
*/
findMany<T extends UsersFindManyArgs>(args?: Prisma.SelectSubset<T, UsersFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
/**
* Create a Users.
* @param {UsersCreateArgs} args - Arguments to create a Users.
* @example
* // Create one Users
* const Users = await prisma.users.create({
* data: {
* // ... data to create a Users
* }
* })
*
*/
create<T extends UsersCreateArgs>(args: Prisma.SelectSubset<T, UsersCreateArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
/**
* Create many Users.
* @param {UsersCreateManyArgs} args - Arguments to create many Users.
* @example
* // Create many Users
* const users = await prisma.users.createMany({
* data: [
* // ... provide data here
* ]
* })
*
*/
createMany<T extends UsersCreateManyArgs>(args?: Prisma.SelectSubset<T, UsersCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
/**
* Create many Users and returns the data saved in the database.
* @param {UsersCreateManyAndReturnArgs} args - Arguments to create many Users.
* @example
* // Create many Users
* const users = await prisma.users.createManyAndReturn({
* data: [
* // ... provide data here
* ]
* })
*
* // Create many Users and only return the `id`
* const usersWithIdOnly = await prisma.users.createManyAndReturn({
* select: { id: true },
* data: [
* // ... provide data here
* ]
* })
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
*
*/
createManyAndReturn<T extends UsersCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, UsersCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
/**
* Delete a Users.
* @param {UsersDeleteArgs} args - Arguments to delete one Users.
* @example
* // Delete one Users
* const Users = await prisma.users.delete({
* where: {
* // ... filter to delete one Users
* }
* })
*
*/
delete<T extends UsersDeleteArgs>(args: Prisma.SelectSubset<T, UsersDeleteArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
/**
* Update one Users.
* @param {UsersUpdateArgs} args - Arguments to update one Users.
* @example
* // Update one Users
* const users = await prisma.users.update({
* where: {
* // ... provide filter here
* },
* data: {
* // ... provide data here
* }
* })
*
*/
update<T extends UsersUpdateArgs>(args: Prisma.SelectSubset<T, UsersUpdateArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
/**
* Delete zero or more Users.
* @param {UsersDeleteManyArgs} args - Arguments to filter Users to delete.
* @example
* // Delete a few Users
* const { count } = await prisma.users.deleteMany({
* where: {
* // ... provide filter here
* }
* })
*
*/
deleteMany<T extends UsersDeleteManyArgs>(args?: Prisma.SelectSubset<T, UsersDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
/**
* Update zero or more Users.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UsersUpdateManyArgs} args - Arguments to update one or more rows.
* @example
* // Update many Users
* const users = await prisma.users.updateMany({
* where: {
* // ... provide filter here
* },
* data: {
* // ... provide data here
* }
* })
*
*/
updateMany<T extends UsersUpdateManyArgs>(args: Prisma.SelectSubset<T, UsersUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>
/**
* Update zero or more Users and returns the data updated in the database.
* @param {UsersUpdateManyAndReturnArgs} args - Arguments to update many Users.
* @example
* // Update many Users
* const users = await prisma.users.updateManyAndReturn({
* where: {
* // ... provide filter here
* },
* data: [
* // ... provide data here
* ]
* })
*
* // Update zero or more Users and only return the `id`
* const usersWithIdOnly = await prisma.users.updateManyAndReturn({
* select: { id: true },
* where: {
* // ... provide filter here
* },
* data: [
* // ... provide data here
* ]
* })
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
*
*/
updateManyAndReturn<T extends UsersUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, UsersUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
/**
* Create or update one Users.
* @param {UsersUpsertArgs} args - Arguments to update or create a Users.
* @example
* // Update or create a Users
* const users = await prisma.users.upsert({
* create: {
* // ... data to create a Users
* },
* update: {
* // ... in case it already exists, update
* },
* where: {
* // ... the filter for the Users we want to update
* }
* })
*/
upsert<T extends UsersUpsertArgs>(args: Prisma.SelectSubset<T, UsersUpsertArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
/**
* Count the number of Users.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UsersCountArgs} args - Arguments to filter Users to count.
* @example
* // Count the number of Users
* const count = await prisma.users.count({
* where: {
* // ... the filter for the Users we want to count
* }
* })
**/
count<T extends UsersCountArgs>(
args?: Prisma.Subset<T, UsersCountArgs>,
): Prisma.PrismaPromise<
T extends runtime.Types.Utils.Record<'select', any>
? T['select'] extends true
? number
: Prisma.GetScalarType<T['select'], UsersCountAggregateOutputType>
: number
>
/**
* Allows you to perform aggregations operations on a Users.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UsersAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
* @example
* // Ordered by age ascending
* // Where email contains prisma.io
* // Limited to the 10 users
* const aggregations = await prisma.user.aggregate({
* _avg: {
* age: true,
* },
* where: {
* email: {
* contains: "prisma.io",
* },
* },
* orderBy: {
* age: "asc",
* },
* take: 10,
* })
**/
aggregate<T extends UsersAggregateArgs>(args: Prisma.Subset<T, UsersAggregateArgs>): Prisma.PrismaPromise<GetUsersAggregateType<T>>
/**
* Group by Users.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UsersGroupByArgs} args - Group by arguments.
* @example
* // Group by city, order by createdAt, get count
* const result = await prisma.user.groupBy({
* by: ['city', 'createdAt'],
* orderBy: {
* createdAt: true
* },
* _count: {
* _all: true
* },
* })
*
**/
groupBy<
T extends UsersGroupByArgs,
HasSelectOrTake extends Prisma.Or<
Prisma.Extends<'skip', Prisma.Keys<T>>,
Prisma.Extends<'take', Prisma.Keys<T>>
>,
OrderByArg extends Prisma.True extends HasSelectOrTake
? { orderBy: UsersGroupByArgs['orderBy'] }
: { orderBy?: UsersGroupByArgs['orderBy'] },
OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
ByValid extends Prisma.Has<ByFields, OrderFields>,
HavingFields extends Prisma.GetHavingFields<T['having']>,
HavingValid extends Prisma.Has<ByFields, HavingFields>,
ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
InputErrors extends ByEmpty extends Prisma.True
? `Error: "by" must not be empty.`
: HavingValid extends Prisma.False
? {
[P in HavingFields]: P extends ByFields
? never
: P extends string
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
: [
Error,
'Field ',
P,
` in "having" needs to be provided in "by"`,
]
}[HavingFields]
: 'take' extends Prisma.Keys<T>
? 'orderBy' extends Prisma.Keys<T>
? ByValid extends Prisma.True
? {}
: {
[P in OrderFields]: P extends ByFields
? never
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
}[OrderFields]
: 'Error: If you provide "take", you also need to provide "orderBy"'
: 'skip' extends Prisma.Keys<T>
? 'orderBy' extends Prisma.Keys<T>
? ByValid extends Prisma.True
? {}
: {
[P in OrderFields]: P extends ByFields
? never
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
}[OrderFields]
: 'Error: If you provide "skip", you also need to provide "orderBy"'
: ByValid extends Prisma.True
? {}
: {
[P in OrderFields]: P extends ByFields
? never
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
}[OrderFields]
>(args: Prisma.SubsetIntersection<T, UsersGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetUsersGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
/**
* Fields of the Users model
*/
readonly fields: UsersFieldRefs;
}
/**
* The delegate class that acts as a "Promise-like" for Users.
* Why is this prefixed with `Prisma__`?
* Because we want to prevent naming conflicts as mentioned in
* https://github.com/prisma/prisma-client-js/issues/707
*/
export interface Prisma__UsersClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
readonly [Symbol.toStringTag]: "PrismaPromise"
sessions<T extends Prisma.Users$sessionsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$sessionsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SessionsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
accounts<T extends Prisma.Users$accountsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$accountsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$AccountsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
mentorApplication<T extends Prisma.Users$mentorApplicationArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$mentorApplicationArgs<ExtArgs>>): Prisma.Prisma__MentorApplicationsClient<runtime.Types.Result.GetResult<Prisma.$MentorApplicationsPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
/**
* Attaches callbacks for the resolution and/or rejection of the Promise.
* @param onfulfilled The callback to execute when the Promise is resolved.
* @param onrejected The callback to execute when the Promise is rejected.
* @returns A Promise for the completion of which ever callback is executed.
*/
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
/**
* Attaches a callback for only the rejection of the Promise.
* @param onrejected The callback to execute when the Promise is rejected.
* @returns A Promise for the completion of the callback.
*/
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
/**
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
* resolved value cannot be modified from the callback.
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
* @returns A Promise for the completion of the callback.
*/
finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise<T>
}
/**
* Fields of the Users model
*/
export interface UsersFieldRefs {
readonly id: Prisma.FieldRef<"Users", 'String'>
readonly name: Prisma.FieldRef<"Users", 'String'>
readonly email: Prisma.FieldRef<"Users", 'String'>
readonly emailVerified: Prisma.FieldRef<"Users", 'Boolean'>
readonly image: Prisma.FieldRef<"Users", 'String'>
readonly createdAt: Prisma.FieldRef<"Users", 'DateTime'>
readonly updatedAt: Prisma.FieldRef<"Users", 'DateTime'>
readonly role: Prisma.FieldRef<"Users", 'String'>
readonly phoneNumber: Prisma.FieldRef<"Users", 'String'>
readonly deletedAt: Prisma.FieldRef<"Users", 'DateTime'>
}
// Custom InputTypes
/**
* Users findUnique
*/
export type UsersFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* Filter, which Users to fetch.
*/
where: Prisma.UsersWhereUniqueInput
}
/**
* Users findUniqueOrThrow
*/
export type UsersFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* Filter, which Users to fetch.
*/
where: Prisma.UsersWhereUniqueInput
}
/**
* Users findFirst
*/
export type UsersFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* Filter, which Users to fetch.
*/
where?: Prisma.UsersWhereInput
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
*
* Determine the order of Users to fetch.
*/
orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[]
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
*
* Sets the position for searching for Users.
*/
cursor?: Prisma.UsersWhereUniqueInput
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Take `±n` Users from the position of the cursor.
*/
take?: number
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Skip the first `n` Users.
*/
skip?: number
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
*
* Filter by unique combinations of Users.
*/
distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[]
}
/**
* Users findFirstOrThrow
*/
export type UsersFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* Filter, which Users to fetch.
*/
where?: Prisma.UsersWhereInput
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
*
* Determine the order of Users to fetch.
*/
orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[]
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
*
* Sets the position for searching for Users.
*/
cursor?: Prisma.UsersWhereUniqueInput
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Take `±n` Users from the position of the cursor.
*/
take?: number
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Skip the first `n` Users.
*/
skip?: number
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
*
* Filter by unique combinations of Users.
*/
distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[]
}
/**
* Users findMany
*/
export type UsersFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* Filter, which Users to fetch.
*/
where?: Prisma.UsersWhereInput
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
*
* Determine the order of Users to fetch.
*/
orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[]
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
*
* Sets the position for listing Users.
*/
cursor?: Prisma.UsersWhereUniqueInput
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Take `±n` Users from the position of the cursor.
*/
take?: number
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Skip the first `n` Users.
*/
skip?: number
distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[]
}
/**
* Users create
*/
export type UsersCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* The data needed to create a Users.
*/
data: Prisma.XOR<Prisma.UsersCreateInput, Prisma.UsersUncheckedCreateInput>
}
/**
* Users createMany
*/
export type UsersCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* The data used to create many Users.
*/
data: Prisma.UsersCreateManyInput | Prisma.UsersCreateManyInput[]
skipDuplicates?: boolean
}
/**
* Users createManyAndReturn
*/
export type UsersCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelectCreateManyAndReturn<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* The data used to create many Users.
*/
data: Prisma.UsersCreateManyInput | Prisma.UsersCreateManyInput[]
skipDuplicates?: boolean
}
/**
* Users update
*/
export type UsersUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* The data needed to update a Users.
*/
data: Prisma.XOR<Prisma.UsersUpdateInput, Prisma.UsersUncheckedUpdateInput>
/**
* Choose, which Users to update.
*/
where: Prisma.UsersWhereUniqueInput
}
/**
* Users updateMany
*/
export type UsersUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* The data used to update Users.
*/
data: Prisma.XOR<Prisma.UsersUpdateManyMutationInput, Prisma.UsersUncheckedUpdateManyInput>
/**
* Filter which Users to update
*/
where?: Prisma.UsersWhereInput
/**
* Limit how many Users to update.
*/
limit?: number
}
/**
* Users updateManyAndReturn
*/
export type UsersUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelectUpdateManyAndReturn<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* The data used to update Users.
*/
data: Prisma.XOR<Prisma.UsersUpdateManyMutationInput, Prisma.UsersUncheckedUpdateManyInput>
/**
* Filter which Users to update
*/
where?: Prisma.UsersWhereInput
/**
* Limit how many Users to update.
*/
limit?: number
}
/**
* Users upsert
*/
export type UsersUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* The filter to search for the Users to update in case it exists.
*/
where: Prisma.UsersWhereUniqueInput
/**
* In case the Users found by the `where` argument doesn't exist, create a new Users with this data.
*/
create: Prisma.XOR<Prisma.UsersCreateInput, Prisma.UsersUncheckedCreateInput>
/**
* In case the Users was found with the provided `where` argument, update it with this data.
*/
update: Prisma.XOR<Prisma.UsersUpdateInput, Prisma.UsersUncheckedUpdateInput>
}
/**
* Users delete
*/
export type UsersDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
/**
* Filter which Users to delete.
*/
where: Prisma.UsersWhereUniqueInput
}
/**
* Users deleteMany
*/
export type UsersDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Filter which Users to delete
*/
where?: Prisma.UsersWhereInput
/**
* Limit how many Users to delete.
*/
limit?: number
}
/**
* Users.sessions
*/
export type Users$sessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Sessions
*/
select?: Prisma.SessionsSelect<ExtArgs> | null
/**
* Omit specific fields from the Sessions
*/
omit?: Prisma.SessionsOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.SessionsInclude<ExtArgs> | null
where?: Prisma.SessionsWhereInput
orderBy?: Prisma.SessionsOrderByWithRelationInput | Prisma.SessionsOrderByWithRelationInput[]
cursor?: Prisma.SessionsWhereUniqueInput
take?: number
skip?: number
distinct?: Prisma.SessionsScalarFieldEnum | Prisma.SessionsScalarFieldEnum[]
}
/**
* Users.accounts
*/
export type Users$accountsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Accounts
*/
select?: Prisma.AccountsSelect<ExtArgs> | null
/**
* Omit specific fields from the Accounts
*/
omit?: Prisma.AccountsOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.AccountsInclude<ExtArgs> | null
where?: Prisma.AccountsWhereInput
orderBy?: Prisma.AccountsOrderByWithRelationInput | Prisma.AccountsOrderByWithRelationInput[]
cursor?: Prisma.AccountsWhereUniqueInput
take?: number
skip?: number
distinct?: Prisma.AccountsScalarFieldEnum | Prisma.AccountsScalarFieldEnum[]
}
/**
* Users.mentorApplication
*/
export type Users$mentorApplicationArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the MentorApplications
*/
select?: Prisma.MentorApplicationsSelect<ExtArgs> | null
/**
* Omit specific fields from the MentorApplications
*/
omit?: Prisma.MentorApplicationsOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.MentorApplicationsInclude<ExtArgs> | null
where?: Prisma.MentorApplicationsWhereInput
}
/**
* Users without action
*/
export type UsersDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
/**
* Select specific fields to fetch from the Users
*/
select?: Prisma.UsersSelect<ExtArgs> | null
/**
* Omit specific fields from the Users
*/
omit?: Prisma.UsersOmit<ExtArgs> | null
/**
* Choose, which related nodes to fetch as well
*/
include?: Prisma.UsersInclude<ExtArgs> | null
}
|