@valentine-efagene/qshelter-common 2.0.25 → 2.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/generated/client/browser.d.ts +15 -0
  2. package/dist/generated/client/client.d.ts +15 -0
  3. package/dist/generated/client/commonInputTypes.d.ts +200 -0
  4. package/dist/generated/client/enums.d.ts +25 -1
  5. package/dist/generated/client/enums.js +22 -1
  6. package/dist/generated/client/internal/class.d.ts +33 -0
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +352 -1
  9. package/dist/generated/client/internal/prismaNamespace.js +120 -0
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +130 -0
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +120 -0
  12. package/dist/generated/client/models/Contract.d.ts +511 -0
  13. package/dist/generated/client/models/DocumentRequirementRule.d.ts +2069 -0
  14. package/dist/generated/client/models/DocumentRequirementRule.js +1 -0
  15. package/dist/generated/client/models/PaymentMethodChangeRequest.d.ts +2820 -0
  16. package/dist/generated/client/models/PaymentMethodChangeRequest.js +1 -0
  17. package/dist/generated/client/models/Prequalification.d.ts +2339 -0
  18. package/dist/generated/client/models/Prequalification.js +1 -0
  19. package/dist/generated/client/models/Property.d.ts +211 -0
  20. package/dist/generated/client/models/PropertyPaymentMethod.d.ts +1139 -131
  21. package/dist/generated/client/models/Tenant.d.ts +441 -0
  22. package/dist/generated/client/models/User.d.ts +815 -0
  23. package/dist/generated/client/models/index.d.ts +3 -0
  24. package/dist/generated/client/models/index.js +3 -0
  25. package/dist/generated/client/models.d.ts +3 -0
  26. package/package.json +1 -1
  27. package/prisma/migrations/20251230231217_add_prequalification_and_payment_method_change/migration.sql +137 -0
  28. package/prisma/schema.prisma +225 -5
@@ -0,0 +1 @@
1
+ export {};
@@ -308,6 +308,7 @@ export type PropertyWhereInput = {
308
308
  amenities?: Prisma.PropertyAmenityListRelationFilter;
309
309
  paymentMethods?: Prisma.PropertyPaymentMethodLinkListRelationFilter;
310
310
  variants?: Prisma.PropertyVariantListRelationFilter;
311
+ prequalifications?: Prisma.PrequalificationListRelationFilter;
311
312
  };
312
313
  export type PropertyOrderByWithRelationInput = {
313
314
  id?: Prisma.SortOrder;
@@ -339,6 +340,7 @@ export type PropertyOrderByWithRelationInput = {
339
340
  amenities?: Prisma.PropertyAmenityOrderByRelationAggregateInput;
340
341
  paymentMethods?: Prisma.PropertyPaymentMethodLinkOrderByRelationAggregateInput;
341
342
  variants?: Prisma.PropertyVariantOrderByRelationAggregateInput;
343
+ prequalifications?: Prisma.PrequalificationOrderByRelationAggregateInput;
342
344
  _relevance?: Prisma.PropertyOrderByRelevanceInput;
343
345
  };
344
346
  export type PropertyWhereUniqueInput = Prisma.AtLeast<{
@@ -374,6 +376,7 @@ export type PropertyWhereUniqueInput = Prisma.AtLeast<{
374
376
  amenities?: Prisma.PropertyAmenityListRelationFilter;
375
377
  paymentMethods?: Prisma.PropertyPaymentMethodLinkListRelationFilter;
376
378
  variants?: Prisma.PropertyVariantListRelationFilter;
379
+ prequalifications?: Prisma.PrequalificationListRelationFilter;
377
380
  }, "id">;
378
381
  export type PropertyOrderByWithAggregationInput = {
379
382
  id?: Prisma.SortOrder;
@@ -456,6 +459,7 @@ export type PropertyCreateInput = {
456
459
  amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
457
460
  paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
458
461
  variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
462
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
459
463
  };
460
464
  export type PropertyUncheckedCreateInput = {
461
465
  id?: string;
@@ -484,6 +488,7 @@ export type PropertyUncheckedCreateInput = {
484
488
  amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
485
489
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
486
490
  variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
491
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
487
492
  };
488
493
  export type PropertyUpdateInput = {
489
494
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -512,6 +517,7 @@ export type PropertyUpdateInput = {
512
517
  amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
513
518
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
514
519
  variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
520
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
515
521
  };
516
522
  export type PropertyUncheckedUpdateInput = {
517
523
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -540,6 +546,7 @@ export type PropertyUncheckedUpdateInput = {
540
546
  amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
541
547
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
542
548
  variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
549
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
543
550
  };
544
551
  export type PropertyCreateManyInput = {
545
552
  id?: string;
@@ -882,6 +889,18 @@ export type PropertyUpdateOneRequiredWithoutPaymentMethodsNestedInput = {
882
889
  connect?: Prisma.PropertyWhereUniqueInput;
883
890
  update?: Prisma.XOR<Prisma.XOR<Prisma.PropertyUpdateToOneWithWhereWithoutPaymentMethodsInput, Prisma.PropertyUpdateWithoutPaymentMethodsInput>, Prisma.PropertyUncheckedUpdateWithoutPaymentMethodsInput>;
884
891
  };
892
+ export type PropertyCreateNestedOneWithoutPrequalificationsInput = {
893
+ create?: Prisma.XOR<Prisma.PropertyCreateWithoutPrequalificationsInput, Prisma.PropertyUncheckedCreateWithoutPrequalificationsInput>;
894
+ connectOrCreate?: Prisma.PropertyCreateOrConnectWithoutPrequalificationsInput;
895
+ connect?: Prisma.PropertyWhereUniqueInput;
896
+ };
897
+ export type PropertyUpdateOneRequiredWithoutPrequalificationsNestedInput = {
898
+ create?: Prisma.XOR<Prisma.PropertyCreateWithoutPrequalificationsInput, Prisma.PropertyUncheckedCreateWithoutPrequalificationsInput>;
899
+ connectOrCreate?: Prisma.PropertyCreateOrConnectWithoutPrequalificationsInput;
900
+ upsert?: Prisma.PropertyUpsertWithoutPrequalificationsInput;
901
+ connect?: Prisma.PropertyWhereUniqueInput;
902
+ update?: Prisma.XOR<Prisma.XOR<Prisma.PropertyUpdateToOneWithWhereWithoutPrequalificationsInput, Prisma.PropertyUpdateWithoutPrequalificationsInput>, Prisma.PropertyUncheckedUpdateWithoutPrequalificationsInput>;
903
+ };
885
904
  export type PropertyCreateWithoutUserInput = {
886
905
  id?: string;
887
906
  title: string;
@@ -908,6 +927,7 @@ export type PropertyCreateWithoutUserInput = {
908
927
  amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
909
928
  paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
910
929
  variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
930
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
911
931
  };
912
932
  export type PropertyUncheckedCreateWithoutUserInput = {
913
933
  id?: string;
@@ -935,6 +955,7 @@ export type PropertyUncheckedCreateWithoutUserInput = {
935
955
  amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
936
956
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
937
957
  variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
958
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
938
959
  };
939
960
  export type PropertyCreateOrConnectWithoutUserInput = {
940
961
  where: Prisma.PropertyWhereUniqueInput;
@@ -1009,6 +1030,7 @@ export type PropertyCreateWithoutTenantInput = {
1009
1030
  amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
1010
1031
  paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
1011
1032
  variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
1033
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
1012
1034
  };
1013
1035
  export type PropertyUncheckedCreateWithoutTenantInput = {
1014
1036
  id?: string;
@@ -1036,6 +1058,7 @@ export type PropertyUncheckedCreateWithoutTenantInput = {
1036
1058
  amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
1037
1059
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
1038
1060
  variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
1061
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
1039
1062
  };
1040
1063
  export type PropertyCreateOrConnectWithoutTenantInput = {
1041
1064
  where: Prisma.PropertyWhereUniqueInput;
@@ -1084,6 +1107,7 @@ export type PropertyCreateWithoutMediaInput = {
1084
1107
  amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
1085
1108
  paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
1086
1109
  variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
1110
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
1087
1111
  };
1088
1112
  export type PropertyUncheckedCreateWithoutMediaInput = {
1089
1113
  id?: string;
@@ -1111,6 +1135,7 @@ export type PropertyUncheckedCreateWithoutMediaInput = {
1111
1135
  amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
1112
1136
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
1113
1137
  variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
1138
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
1114
1139
  };
1115
1140
  export type PropertyCreateOrConnectWithoutMediaInput = {
1116
1141
  where: Prisma.PropertyWhereUniqueInput;
@@ -1142,6 +1167,7 @@ export type PropertyCreateWithoutDisplayImageInput = {
1142
1167
  amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
1143
1168
  paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
1144
1169
  variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
1170
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
1145
1171
  };
1146
1172
  export type PropertyUncheckedCreateWithoutDisplayImageInput = {
1147
1173
  id?: string;
@@ -1169,6 +1195,7 @@ export type PropertyUncheckedCreateWithoutDisplayImageInput = {
1169
1195
  amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
1170
1196
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
1171
1197
  variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
1198
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
1172
1199
  };
1173
1200
  export type PropertyCreateOrConnectWithoutDisplayImageInput = {
1174
1201
  where: Prisma.PropertyWhereUniqueInput;
@@ -1213,6 +1240,7 @@ export type PropertyUpdateWithoutMediaInput = {
1213
1240
  amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
1214
1241
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
1215
1242
  variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
1243
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
1216
1244
  };
1217
1245
  export type PropertyUncheckedUpdateWithoutMediaInput = {
1218
1246
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1240,6 +1268,7 @@ export type PropertyUncheckedUpdateWithoutMediaInput = {
1240
1268
  amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
1241
1269
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
1242
1270
  variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
1271
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
1243
1272
  };
1244
1273
  export type PropertyUpsertWithWhereUniqueWithoutDisplayImageInput = {
1245
1274
  where: Prisma.PropertyWhereUniqueInput;
@@ -1280,6 +1309,7 @@ export type PropertyCreateWithoutDocumentsInput = {
1280
1309
  amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
1281
1310
  paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
1282
1311
  variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
1312
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
1283
1313
  };
1284
1314
  export type PropertyUncheckedCreateWithoutDocumentsInput = {
1285
1315
  id?: string;
@@ -1307,6 +1337,7 @@ export type PropertyUncheckedCreateWithoutDocumentsInput = {
1307
1337
  amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
1308
1338
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
1309
1339
  variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
1340
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
1310
1341
  };
1311
1342
  export type PropertyCreateOrConnectWithoutDocumentsInput = {
1312
1343
  where: Prisma.PropertyWhereUniqueInput;
@@ -1347,6 +1378,7 @@ export type PropertyUpdateWithoutDocumentsInput = {
1347
1378
  amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
1348
1379
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
1349
1380
  variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
1381
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
1350
1382
  };
1351
1383
  export type PropertyUncheckedUpdateWithoutDocumentsInput = {
1352
1384
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1374,6 +1406,7 @@ export type PropertyUncheckedUpdateWithoutDocumentsInput = {
1374
1406
  amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
1375
1407
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
1376
1408
  variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
1409
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
1377
1410
  };
1378
1411
  export type PropertyCreateWithoutVariantsInput = {
1379
1412
  id?: string;
@@ -1401,6 +1434,7 @@ export type PropertyCreateWithoutVariantsInput = {
1401
1434
  media?: Prisma.PropertyMediaCreateNestedManyWithoutPropertyInput;
1402
1435
  amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
1403
1436
  paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
1437
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
1404
1438
  };
1405
1439
  export type PropertyUncheckedCreateWithoutVariantsInput = {
1406
1440
  id?: string;
@@ -1428,6 +1462,7 @@ export type PropertyUncheckedCreateWithoutVariantsInput = {
1428
1462
  media?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutPropertyInput;
1429
1463
  amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
1430
1464
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
1465
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
1431
1466
  };
1432
1467
  export type PropertyCreateOrConnectWithoutVariantsInput = {
1433
1468
  where: Prisma.PropertyWhereUniqueInput;
@@ -1468,6 +1503,7 @@ export type PropertyUpdateWithoutVariantsInput = {
1468
1503
  media?: Prisma.PropertyMediaUpdateManyWithoutPropertyNestedInput;
1469
1504
  amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
1470
1505
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
1506
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
1471
1507
  };
1472
1508
  export type PropertyUncheckedUpdateWithoutVariantsInput = {
1473
1509
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1495,6 +1531,7 @@ export type PropertyUncheckedUpdateWithoutVariantsInput = {
1495
1531
  media?: Prisma.PropertyMediaUncheckedUpdateManyWithoutPropertyNestedInput;
1496
1532
  amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
1497
1533
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
1534
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
1498
1535
  };
1499
1536
  export type PropertyCreateWithoutAmenitiesInput = {
1500
1537
  id?: string;
@@ -1522,6 +1559,7 @@ export type PropertyCreateWithoutAmenitiesInput = {
1522
1559
  media?: Prisma.PropertyMediaCreateNestedManyWithoutPropertyInput;
1523
1560
  paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
1524
1561
  variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
1562
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
1525
1563
  };
1526
1564
  export type PropertyUncheckedCreateWithoutAmenitiesInput = {
1527
1565
  id?: string;
@@ -1549,6 +1587,7 @@ export type PropertyUncheckedCreateWithoutAmenitiesInput = {
1549
1587
  media?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutPropertyInput;
1550
1588
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
1551
1589
  variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
1590
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
1552
1591
  };
1553
1592
  export type PropertyCreateOrConnectWithoutAmenitiesInput = {
1554
1593
  where: Prisma.PropertyWhereUniqueInput;
@@ -1589,6 +1628,7 @@ export type PropertyUpdateWithoutAmenitiesInput = {
1589
1628
  media?: Prisma.PropertyMediaUpdateManyWithoutPropertyNestedInput;
1590
1629
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
1591
1630
  variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
1631
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
1592
1632
  };
1593
1633
  export type PropertyUncheckedUpdateWithoutAmenitiesInput = {
1594
1634
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1616,6 +1656,7 @@ export type PropertyUncheckedUpdateWithoutAmenitiesInput = {
1616
1656
  media?: Prisma.PropertyMediaUncheckedUpdateManyWithoutPropertyNestedInput;
1617
1657
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
1618
1658
  variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
1659
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
1619
1660
  };
1620
1661
  export type PropertyCreateWithoutPaymentMethodsInput = {
1621
1662
  id?: string;
@@ -1643,6 +1684,7 @@ export type PropertyCreateWithoutPaymentMethodsInput = {
1643
1684
  media?: Prisma.PropertyMediaCreateNestedManyWithoutPropertyInput;
1644
1685
  amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
1645
1686
  variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
1687
+ prequalifications?: Prisma.PrequalificationCreateNestedManyWithoutPropertyInput;
1646
1688
  };
1647
1689
  export type PropertyUncheckedCreateWithoutPaymentMethodsInput = {
1648
1690
  id?: string;
@@ -1670,6 +1712,7 @@ export type PropertyUncheckedCreateWithoutPaymentMethodsInput = {
1670
1712
  media?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutPropertyInput;
1671
1713
  amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
1672
1714
  variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
1715
+ prequalifications?: Prisma.PrequalificationUncheckedCreateNestedManyWithoutPropertyInput;
1673
1716
  };
1674
1717
  export type PropertyCreateOrConnectWithoutPaymentMethodsInput = {
1675
1718
  where: Prisma.PropertyWhereUniqueInput;
@@ -1710,6 +1753,7 @@ export type PropertyUpdateWithoutPaymentMethodsInput = {
1710
1753
  media?: Prisma.PropertyMediaUpdateManyWithoutPropertyNestedInput;
1711
1754
  amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
1712
1755
  variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
1756
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
1713
1757
  };
1714
1758
  export type PropertyUncheckedUpdateWithoutPaymentMethodsInput = {
1715
1759
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1737,6 +1781,132 @@ export type PropertyUncheckedUpdateWithoutPaymentMethodsInput = {
1737
1781
  media?: Prisma.PropertyMediaUncheckedUpdateManyWithoutPropertyNestedInput;
1738
1782
  amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
1739
1783
  variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
1784
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
1785
+ };
1786
+ export type PropertyCreateWithoutPrequalificationsInput = {
1787
+ id?: string;
1788
+ title: string;
1789
+ category: string;
1790
+ propertyType: string;
1791
+ country: string;
1792
+ currency: string;
1793
+ city: string;
1794
+ district?: string | null;
1795
+ zipCode?: string | null;
1796
+ streetAddress?: string | null;
1797
+ longitude?: number | null;
1798
+ latitude?: number | null;
1799
+ status?: string;
1800
+ description?: string | null;
1801
+ isPublished?: boolean;
1802
+ publishedAt?: Date | string | null;
1803
+ createdAt?: Date | string;
1804
+ updatedAt?: Date | string;
1805
+ tenant: Prisma.TenantCreateNestedOneWithoutPropertiesInput;
1806
+ user: Prisma.UserCreateNestedOneWithoutPropertiesInput;
1807
+ displayImage?: Prisma.PropertyMediaCreateNestedOneWithoutDisplayForPropertiesInput;
1808
+ documents?: Prisma.PropertyDocumentCreateNestedManyWithoutPropertyInput;
1809
+ media?: Prisma.PropertyMediaCreateNestedManyWithoutPropertyInput;
1810
+ amenities?: Prisma.PropertyAmenityCreateNestedManyWithoutPropertyInput;
1811
+ paymentMethods?: Prisma.PropertyPaymentMethodLinkCreateNestedManyWithoutPropertyInput;
1812
+ variants?: Prisma.PropertyVariantCreateNestedManyWithoutPropertyInput;
1813
+ };
1814
+ export type PropertyUncheckedCreateWithoutPrequalificationsInput = {
1815
+ id?: string;
1816
+ tenantId: string;
1817
+ userId: string;
1818
+ title: string;
1819
+ category: string;
1820
+ propertyType: string;
1821
+ country: string;
1822
+ currency: string;
1823
+ city: string;
1824
+ district?: string | null;
1825
+ zipCode?: string | null;
1826
+ streetAddress?: string | null;
1827
+ longitude?: number | null;
1828
+ latitude?: number | null;
1829
+ status?: string;
1830
+ description?: string | null;
1831
+ displayImageId?: string | null;
1832
+ isPublished?: boolean;
1833
+ publishedAt?: Date | string | null;
1834
+ createdAt?: Date | string;
1835
+ updatedAt?: Date | string;
1836
+ documents?: Prisma.PropertyDocumentUncheckedCreateNestedManyWithoutPropertyInput;
1837
+ media?: Prisma.PropertyMediaUncheckedCreateNestedManyWithoutPropertyInput;
1838
+ amenities?: Prisma.PropertyAmenityUncheckedCreateNestedManyWithoutPropertyInput;
1839
+ paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedCreateNestedManyWithoutPropertyInput;
1840
+ variants?: Prisma.PropertyVariantUncheckedCreateNestedManyWithoutPropertyInput;
1841
+ };
1842
+ export type PropertyCreateOrConnectWithoutPrequalificationsInput = {
1843
+ where: Prisma.PropertyWhereUniqueInput;
1844
+ create: Prisma.XOR<Prisma.PropertyCreateWithoutPrequalificationsInput, Prisma.PropertyUncheckedCreateWithoutPrequalificationsInput>;
1845
+ };
1846
+ export type PropertyUpsertWithoutPrequalificationsInput = {
1847
+ update: Prisma.XOR<Prisma.PropertyUpdateWithoutPrequalificationsInput, Prisma.PropertyUncheckedUpdateWithoutPrequalificationsInput>;
1848
+ create: Prisma.XOR<Prisma.PropertyCreateWithoutPrequalificationsInput, Prisma.PropertyUncheckedCreateWithoutPrequalificationsInput>;
1849
+ where?: Prisma.PropertyWhereInput;
1850
+ };
1851
+ export type PropertyUpdateToOneWithWhereWithoutPrequalificationsInput = {
1852
+ where?: Prisma.PropertyWhereInput;
1853
+ data: Prisma.XOR<Prisma.PropertyUpdateWithoutPrequalificationsInput, Prisma.PropertyUncheckedUpdateWithoutPrequalificationsInput>;
1854
+ };
1855
+ export type PropertyUpdateWithoutPrequalificationsInput = {
1856
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
1857
+ title?: Prisma.StringFieldUpdateOperationsInput | string;
1858
+ category?: Prisma.StringFieldUpdateOperationsInput | string;
1859
+ propertyType?: Prisma.StringFieldUpdateOperationsInput | string;
1860
+ country?: Prisma.StringFieldUpdateOperationsInput | string;
1861
+ currency?: Prisma.StringFieldUpdateOperationsInput | string;
1862
+ city?: Prisma.StringFieldUpdateOperationsInput | string;
1863
+ district?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1864
+ zipCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1865
+ streetAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1866
+ longitude?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
1867
+ latitude?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
1868
+ status?: Prisma.StringFieldUpdateOperationsInput | string;
1869
+ description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1870
+ isPublished?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1871
+ publishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
1872
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1873
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1874
+ tenant?: Prisma.TenantUpdateOneRequiredWithoutPropertiesNestedInput;
1875
+ user?: Prisma.UserUpdateOneRequiredWithoutPropertiesNestedInput;
1876
+ displayImage?: Prisma.PropertyMediaUpdateOneWithoutDisplayForPropertiesNestedInput;
1877
+ documents?: Prisma.PropertyDocumentUpdateManyWithoutPropertyNestedInput;
1878
+ media?: Prisma.PropertyMediaUpdateManyWithoutPropertyNestedInput;
1879
+ amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
1880
+ paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
1881
+ variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
1882
+ };
1883
+ export type PropertyUncheckedUpdateWithoutPrequalificationsInput = {
1884
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
1885
+ tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
1886
+ userId?: Prisma.StringFieldUpdateOperationsInput | string;
1887
+ title?: Prisma.StringFieldUpdateOperationsInput | string;
1888
+ category?: Prisma.StringFieldUpdateOperationsInput | string;
1889
+ propertyType?: Prisma.StringFieldUpdateOperationsInput | string;
1890
+ country?: Prisma.StringFieldUpdateOperationsInput | string;
1891
+ currency?: Prisma.StringFieldUpdateOperationsInput | string;
1892
+ city?: Prisma.StringFieldUpdateOperationsInput | string;
1893
+ district?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1894
+ zipCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1895
+ streetAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1896
+ longitude?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
1897
+ latitude?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
1898
+ status?: Prisma.StringFieldUpdateOperationsInput | string;
1899
+ description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1900
+ displayImageId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
1901
+ isPublished?: Prisma.BoolFieldUpdateOperationsInput | boolean;
1902
+ publishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
1903
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1904
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1905
+ documents?: Prisma.PropertyDocumentUncheckedUpdateManyWithoutPropertyNestedInput;
1906
+ media?: Prisma.PropertyMediaUncheckedUpdateManyWithoutPropertyNestedInput;
1907
+ amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
1908
+ paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
1909
+ variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
1740
1910
  };
1741
1911
  export type PropertyCreateManyUserInput = {
1742
1912
  id?: string;
@@ -1786,6 +1956,7 @@ export type PropertyUpdateWithoutUserInput = {
1786
1956
  amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
1787
1957
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
1788
1958
  variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
1959
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
1789
1960
  };
1790
1961
  export type PropertyUncheckedUpdateWithoutUserInput = {
1791
1962
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1813,6 +1984,7 @@ export type PropertyUncheckedUpdateWithoutUserInput = {
1813
1984
  amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
1814
1985
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
1815
1986
  variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
1987
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
1816
1988
  };
1817
1989
  export type PropertyUncheckedUpdateManyWithoutUserInput = {
1818
1990
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1884,6 +2056,7 @@ export type PropertyUpdateWithoutTenantInput = {
1884
2056
  amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
1885
2057
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
1886
2058
  variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
2059
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
1887
2060
  };
1888
2061
  export type PropertyUncheckedUpdateWithoutTenantInput = {
1889
2062
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1911,6 +2084,7 @@ export type PropertyUncheckedUpdateWithoutTenantInput = {
1911
2084
  amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
1912
2085
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
1913
2086
  variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
2087
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
1914
2088
  };
1915
2089
  export type PropertyUncheckedUpdateManyWithoutTenantInput = {
1916
2090
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1982,6 +2156,7 @@ export type PropertyUpdateWithoutDisplayImageInput = {
1982
2156
  amenities?: Prisma.PropertyAmenityUpdateManyWithoutPropertyNestedInput;
1983
2157
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUpdateManyWithoutPropertyNestedInput;
1984
2158
  variants?: Prisma.PropertyVariantUpdateManyWithoutPropertyNestedInput;
2159
+ prequalifications?: Prisma.PrequalificationUpdateManyWithoutPropertyNestedInput;
1985
2160
  };
1986
2161
  export type PropertyUncheckedUpdateWithoutDisplayImageInput = {
1987
2162
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2009,6 +2184,7 @@ export type PropertyUncheckedUpdateWithoutDisplayImageInput = {
2009
2184
  amenities?: Prisma.PropertyAmenityUncheckedUpdateManyWithoutPropertyNestedInput;
2010
2185
  paymentMethods?: Prisma.PropertyPaymentMethodLinkUncheckedUpdateManyWithoutPropertyNestedInput;
2011
2186
  variants?: Prisma.PropertyVariantUncheckedUpdateManyWithoutPropertyNestedInput;
2187
+ prequalifications?: Prisma.PrequalificationUncheckedUpdateManyWithoutPropertyNestedInput;
2012
2188
  };
2013
2189
  export type PropertyUncheckedUpdateManyWithoutDisplayImageInput = {
2014
2190
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2041,6 +2217,7 @@ export type PropertyCountOutputType = {
2041
2217
  amenities: number;
2042
2218
  paymentMethods: number;
2043
2219
  variants: number;
2220
+ prequalifications: number;
2044
2221
  };
2045
2222
  export type PropertyCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2046
2223
  documents?: boolean | PropertyCountOutputTypeCountDocumentsArgs;
@@ -2048,6 +2225,7 @@ export type PropertyCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensio
2048
2225
  amenities?: boolean | PropertyCountOutputTypeCountAmenitiesArgs;
2049
2226
  paymentMethods?: boolean | PropertyCountOutputTypeCountPaymentMethodsArgs;
2050
2227
  variants?: boolean | PropertyCountOutputTypeCountVariantsArgs;
2228
+ prequalifications?: boolean | PropertyCountOutputTypeCountPrequalificationsArgs;
2051
2229
  };
2052
2230
  /**
2053
2231
  * PropertyCountOutputType without action
@@ -2088,6 +2266,12 @@ export type PropertyCountOutputTypeCountPaymentMethodsArgs<ExtArgs extends runti
2088
2266
  export type PropertyCountOutputTypeCountVariantsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2089
2267
  where?: Prisma.PropertyVariantWhereInput;
2090
2268
  };
2269
+ /**
2270
+ * PropertyCountOutputType without action
2271
+ */
2272
+ export type PropertyCountOutputTypeCountPrequalificationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2273
+ where?: Prisma.PrequalificationWhereInput;
2274
+ };
2091
2275
  export type PropertySelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
2092
2276
  id?: boolean;
2093
2277
  tenantId?: boolean;
@@ -2118,6 +2302,7 @@ export type PropertySelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
2118
2302
  amenities?: boolean | Prisma.Property$amenitiesArgs<ExtArgs>;
2119
2303
  paymentMethods?: boolean | Prisma.Property$paymentMethodsArgs<ExtArgs>;
2120
2304
  variants?: boolean | Prisma.Property$variantsArgs<ExtArgs>;
2305
+ prequalifications?: boolean | Prisma.Property$prequalificationsArgs<ExtArgs>;
2121
2306
  _count?: boolean | Prisma.PropertyCountOutputTypeDefaultArgs<ExtArgs>;
2122
2307
  }, ExtArgs["result"]["property"]>;
2123
2308
  export type PropertySelectScalar = {
@@ -2153,6 +2338,7 @@ export type PropertyInclude<ExtArgs extends runtime.Types.Extensions.InternalArg
2153
2338
  amenities?: boolean | Prisma.Property$amenitiesArgs<ExtArgs>;
2154
2339
  paymentMethods?: boolean | Prisma.Property$paymentMethodsArgs<ExtArgs>;
2155
2340
  variants?: boolean | Prisma.Property$variantsArgs<ExtArgs>;
2341
+ prequalifications?: boolean | Prisma.Property$prequalificationsArgs<ExtArgs>;
2156
2342
  _count?: boolean | Prisma.PropertyCountOutputTypeDefaultArgs<ExtArgs>;
2157
2343
  };
2158
2344
  export type $PropertyPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
@@ -2166,6 +2352,7 @@ export type $PropertyPayload<ExtArgs extends runtime.Types.Extensions.InternalAr
2166
2352
  amenities: Prisma.$PropertyAmenityPayload<ExtArgs>[];
2167
2353
  paymentMethods: Prisma.$PropertyPaymentMethodLinkPayload<ExtArgs>[];
2168
2354
  variants: Prisma.$PropertyVariantPayload<ExtArgs>[];
2355
+ prequalifications: Prisma.$PrequalificationPayload<ExtArgs>[];
2169
2356
  };
2170
2357
  scalars: runtime.Types.Extensions.GetPayloadResult<{
2171
2358
  id: string;
@@ -2474,6 +2661,7 @@ export interface Prisma__PropertyClient<T, Null = never, ExtArgs extends runtime
2474
2661
  amenities<T extends Prisma.Property$amenitiesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Property$amenitiesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyAmenityPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2475
2662
  paymentMethods<T extends Prisma.Property$paymentMethodsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Property$paymentMethodsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyPaymentMethodLinkPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2476
2663
  variants<T extends Prisma.Property$variantsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Property$variantsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyVariantPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2664
+ prequalifications<T extends Prisma.Property$prequalificationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Property$prequalificationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PrequalificationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2477
2665
  /**
2478
2666
  * Attaches callbacks for the resolution and/or rejection of the Promise.
2479
2667
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -2980,6 +3168,29 @@ export type Property$variantsArgs<ExtArgs extends runtime.Types.Extensions.Inter
2980
3168
  skip?: number;
2981
3169
  distinct?: Prisma.PropertyVariantScalarFieldEnum | Prisma.PropertyVariantScalarFieldEnum[];
2982
3170
  };
3171
+ /**
3172
+ * Property.prequalifications
3173
+ */
3174
+ export type Property$prequalificationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
3175
+ /**
3176
+ * Select specific fields to fetch from the Prequalification
3177
+ */
3178
+ select?: Prisma.PrequalificationSelect<ExtArgs> | null;
3179
+ /**
3180
+ * Omit specific fields from the Prequalification
3181
+ */
3182
+ omit?: Prisma.PrequalificationOmit<ExtArgs> | null;
3183
+ /**
3184
+ * Choose, which related nodes to fetch as well
3185
+ */
3186
+ include?: Prisma.PrequalificationInclude<ExtArgs> | null;
3187
+ where?: Prisma.PrequalificationWhereInput;
3188
+ orderBy?: Prisma.PrequalificationOrderByWithRelationInput | Prisma.PrequalificationOrderByWithRelationInput[];
3189
+ cursor?: Prisma.PrequalificationWhereUniqueInput;
3190
+ take?: number;
3191
+ skip?: number;
3192
+ distinct?: Prisma.PrequalificationScalarFieldEnum | Prisma.PrequalificationScalarFieldEnum[];
3193
+ };
2983
3194
  /**
2984
3195
  * Property without action
2985
3196
  */