@valentine-efagene/qshelter-common 2.0.71 → 2.0.73

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 (27) hide show
  1. package/dist/generated/client/browser.d.ts +11 -0
  2. package/dist/generated/client/client.d.ts +11 -0
  3. package/dist/generated/client/commonInputTypes.d.ts +60 -0
  4. package/dist/generated/client/enums.d.ts +18 -0
  5. package/dist/generated/client/enums.js +17 -1
  6. package/dist/generated/client/internal/class.d.ts +22 -0
  7. package/dist/generated/client/internal/class.js +2 -2
  8. package/dist/generated/client/internal/prismaNamespace.d.ts +199 -1
  9. package/dist/generated/client/internal/prismaNamespace.js +55 -3
  10. package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +56 -0
  11. package/dist/generated/client/internal/prismaNamespaceBrowser.js +55 -3
  12. package/dist/generated/client/models/Contract.d.ts +1522 -280
  13. package/dist/generated/client/models/EventHandler.d.ts +154 -4
  14. package/dist/generated/client/models/PaymentMethodPhaseStep.d.ts +133 -0
  15. package/dist/generated/client/models/PropertyTransferRequest.d.ts +2535 -0
  16. package/dist/generated/client/models/PropertyTransferRequest.js +1 -0
  17. package/dist/generated/client/models/PropertyUnit.d.ts +147 -0
  18. package/dist/generated/client/models/StepEventAttachment.d.ts +1331 -0
  19. package/dist/generated/client/models/StepEventAttachment.js +1 -0
  20. package/dist/generated/client/models/Tenant.d.ts +219 -0
  21. package/dist/generated/client/models/User.d.ts +632 -0
  22. package/dist/generated/client/models.d.ts +2 -0
  23. package/dist/src/events/workflow-event.service.d.ts +1 -1
  24. package/package.json +1 -1
  25. package/prisma/migrations/20260106062140_add_step_event_attachments/migration.sql +22 -0
  26. package/prisma/migrations/20260107121844_add_property_transfer_requests/migration.sql +64 -0
  27. package/prisma/schema.prisma +134 -0
@@ -161,6 +161,7 @@ export type TenantWhereInput = {
161
161
  eventTypes?: Prisma.EventTypeListRelationFilter;
162
162
  eventHandlers?: Prisma.EventHandlerListRelationFilter;
163
163
  workflowEvents?: Prisma.WorkflowEventListRelationFilter;
164
+ propertyTransferRequests?: Prisma.PropertyTransferRequestListRelationFilter;
164
165
  };
165
166
  export type TenantOrderByWithRelationInput = {
166
167
  id?: Prisma.SortOrder;
@@ -184,6 +185,7 @@ export type TenantOrderByWithRelationInput = {
184
185
  eventTypes?: Prisma.EventTypeOrderByRelationAggregateInput;
185
186
  eventHandlers?: Prisma.EventHandlerOrderByRelationAggregateInput;
186
187
  workflowEvents?: Prisma.WorkflowEventOrderByRelationAggregateInput;
188
+ propertyTransferRequests?: Prisma.PropertyTransferRequestOrderByRelationAggregateInput;
187
189
  _relevance?: Prisma.TenantOrderByRelevanceInput;
188
190
  };
189
191
  export type TenantWhereUniqueInput = Prisma.AtLeast<{
@@ -211,6 +213,7 @@ export type TenantWhereUniqueInput = Prisma.AtLeast<{
211
213
  eventTypes?: Prisma.EventTypeListRelationFilter;
212
214
  eventHandlers?: Prisma.EventHandlerListRelationFilter;
213
215
  workflowEvents?: Prisma.WorkflowEventListRelationFilter;
216
+ propertyTransferRequests?: Prisma.PropertyTransferRequestListRelationFilter;
214
217
  }, "id" | "subdomain">;
215
218
  export type TenantOrderByWithAggregationInput = {
216
219
  id?: Prisma.SortOrder;
@@ -256,6 +259,7 @@ export type TenantCreateInput = {
256
259
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
257
260
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
258
261
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
262
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
259
263
  };
260
264
  export type TenantUncheckedCreateInput = {
261
265
  id?: string;
@@ -279,6 +283,7 @@ export type TenantUncheckedCreateInput = {
279
283
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
280
284
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
281
285
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
286
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
282
287
  };
283
288
  export type TenantUpdateInput = {
284
289
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -302,6 +307,7 @@ export type TenantUpdateInput = {
302
307
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
303
308
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
304
309
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
310
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
305
311
  };
306
312
  export type TenantUncheckedUpdateInput = {
307
313
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -325,6 +331,7 @@ export type TenantUncheckedUpdateInput = {
325
331
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
326
332
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
327
333
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
334
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
328
335
  };
329
336
  export type TenantCreateManyInput = {
330
337
  id?: string;
@@ -571,6 +578,18 @@ export type TenantUpdateOneRequiredWithoutWorkflowEventsNestedInput = {
571
578
  connect?: Prisma.TenantWhereUniqueInput;
572
579
  update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutWorkflowEventsInput, Prisma.TenantUpdateWithoutWorkflowEventsInput>, Prisma.TenantUncheckedUpdateWithoutWorkflowEventsInput>;
573
580
  };
581
+ export type TenantCreateNestedOneWithoutPropertyTransferRequestsInput = {
582
+ create?: Prisma.XOR<Prisma.TenantCreateWithoutPropertyTransferRequestsInput, Prisma.TenantUncheckedCreateWithoutPropertyTransferRequestsInput>;
583
+ connectOrCreate?: Prisma.TenantCreateOrConnectWithoutPropertyTransferRequestsInput;
584
+ connect?: Prisma.TenantWhereUniqueInput;
585
+ };
586
+ export type TenantUpdateOneRequiredWithoutPropertyTransferRequestsNestedInput = {
587
+ create?: Prisma.XOR<Prisma.TenantCreateWithoutPropertyTransferRequestsInput, Prisma.TenantUncheckedCreateWithoutPropertyTransferRequestsInput>;
588
+ connectOrCreate?: Prisma.TenantCreateOrConnectWithoutPropertyTransferRequestsInput;
589
+ upsert?: Prisma.TenantUpsertWithoutPropertyTransferRequestsInput;
590
+ connect?: Prisma.TenantWhereUniqueInput;
591
+ update?: Prisma.XOR<Prisma.XOR<Prisma.TenantUpdateToOneWithWhereWithoutPropertyTransferRequestsInput, Prisma.TenantUpdateWithoutPropertyTransferRequestsInput>, Prisma.TenantUncheckedUpdateWithoutPropertyTransferRequestsInput>;
592
+ };
574
593
  export type TenantCreateWithoutUsersInput = {
575
594
  id?: string;
576
595
  name: string;
@@ -592,6 +611,7 @@ export type TenantCreateWithoutUsersInput = {
592
611
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
593
612
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
594
613
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
614
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
595
615
  };
596
616
  export type TenantUncheckedCreateWithoutUsersInput = {
597
617
  id?: string;
@@ -614,6 +634,7 @@ export type TenantUncheckedCreateWithoutUsersInput = {
614
634
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
615
635
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
616
636
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
637
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
617
638
  };
618
639
  export type TenantCreateOrConnectWithoutUsersInput = {
619
640
  where: Prisma.TenantWhereUniqueInput;
@@ -649,6 +670,7 @@ export type TenantUpdateWithoutUsersInput = {
649
670
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
650
671
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
651
672
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
673
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
652
674
  };
653
675
  export type TenantUncheckedUpdateWithoutUsersInput = {
654
676
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -671,6 +693,7 @@ export type TenantUncheckedUpdateWithoutUsersInput = {
671
693
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
672
694
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
673
695
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
696
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
674
697
  };
675
698
  export type TenantCreateWithoutApiKeysInput = {
676
699
  id?: string;
@@ -693,6 +716,7 @@ export type TenantCreateWithoutApiKeysInput = {
693
716
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
694
717
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
695
718
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
719
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
696
720
  };
697
721
  export type TenantUncheckedCreateWithoutApiKeysInput = {
698
722
  id?: string;
@@ -715,6 +739,7 @@ export type TenantUncheckedCreateWithoutApiKeysInput = {
715
739
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
716
740
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
717
741
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
742
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
718
743
  };
719
744
  export type TenantCreateOrConnectWithoutApiKeysInput = {
720
745
  where: Prisma.TenantWhereUniqueInput;
@@ -750,6 +775,7 @@ export type TenantUpdateWithoutApiKeysInput = {
750
775
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
751
776
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
752
777
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
778
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
753
779
  };
754
780
  export type TenantUncheckedUpdateWithoutApiKeysInput = {
755
781
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -772,6 +798,7 @@ export type TenantUncheckedUpdateWithoutApiKeysInput = {
772
798
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
773
799
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
774
800
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
801
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
775
802
  };
776
803
  export type TenantCreateWithoutPropertiesInput = {
777
804
  id?: string;
@@ -794,6 +821,7 @@ export type TenantCreateWithoutPropertiesInput = {
794
821
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
795
822
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
796
823
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
824
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
797
825
  };
798
826
  export type TenantUncheckedCreateWithoutPropertiesInput = {
799
827
  id?: string;
@@ -816,6 +844,7 @@ export type TenantUncheckedCreateWithoutPropertiesInput = {
816
844
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
817
845
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
818
846
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
847
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
819
848
  };
820
849
  export type TenantCreateOrConnectWithoutPropertiesInput = {
821
850
  where: Prisma.TenantWhereUniqueInput;
@@ -851,6 +880,7 @@ export type TenantUpdateWithoutPropertiesInput = {
851
880
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
852
881
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
853
882
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
883
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
854
884
  };
855
885
  export type TenantUncheckedUpdateWithoutPropertiesInput = {
856
886
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -873,6 +903,7 @@ export type TenantUncheckedUpdateWithoutPropertiesInput = {
873
903
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
874
904
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
875
905
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
906
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
876
907
  };
877
908
  export type TenantCreateWithoutPaymentPlansInput = {
878
909
  id?: string;
@@ -895,6 +926,7 @@ export type TenantCreateWithoutPaymentPlansInput = {
895
926
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
896
927
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
897
928
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
929
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
898
930
  };
899
931
  export type TenantUncheckedCreateWithoutPaymentPlansInput = {
900
932
  id?: string;
@@ -917,6 +949,7 @@ export type TenantUncheckedCreateWithoutPaymentPlansInput = {
917
949
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
918
950
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
919
951
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
952
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
920
953
  };
921
954
  export type TenantCreateOrConnectWithoutPaymentPlansInput = {
922
955
  where: Prisma.TenantWhereUniqueInput;
@@ -952,6 +985,7 @@ export type TenantUpdateWithoutPaymentPlansInput = {
952
985
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
953
986
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
954
987
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
988
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
955
989
  };
956
990
  export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
957
991
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -974,6 +1008,7 @@ export type TenantUncheckedUpdateWithoutPaymentPlansInput = {
974
1008
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
975
1009
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
976
1010
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1011
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
977
1012
  };
978
1013
  export type TenantCreateWithoutPaymentMethodsInput = {
979
1014
  id?: string;
@@ -996,6 +1031,7 @@ export type TenantCreateWithoutPaymentMethodsInput = {
996
1031
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
997
1032
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
998
1033
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1034
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
999
1035
  };
1000
1036
  export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
1001
1037
  id?: string;
@@ -1018,6 +1054,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodsInput = {
1018
1054
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1019
1055
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1020
1056
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1057
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1021
1058
  };
1022
1059
  export type TenantCreateOrConnectWithoutPaymentMethodsInput = {
1023
1060
  where: Prisma.TenantWhereUniqueInput;
@@ -1053,6 +1090,7 @@ export type TenantUpdateWithoutPaymentMethodsInput = {
1053
1090
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1054
1091
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1055
1092
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1093
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1056
1094
  };
1057
1095
  export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
1058
1096
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1075,6 +1113,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodsInput = {
1075
1113
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1076
1114
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1077
1115
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1116
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1078
1117
  };
1079
1118
  export type TenantCreateWithoutContractsInput = {
1080
1119
  id?: string;
@@ -1097,6 +1136,7 @@ export type TenantCreateWithoutContractsInput = {
1097
1136
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
1098
1137
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
1099
1138
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1139
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1100
1140
  };
1101
1141
  export type TenantUncheckedCreateWithoutContractsInput = {
1102
1142
  id?: string;
@@ -1119,6 +1159,7 @@ export type TenantUncheckedCreateWithoutContractsInput = {
1119
1159
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1120
1160
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1121
1161
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1162
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1122
1163
  };
1123
1164
  export type TenantCreateOrConnectWithoutContractsInput = {
1124
1165
  where: Prisma.TenantWhereUniqueInput;
@@ -1154,6 +1195,7 @@ export type TenantUpdateWithoutContractsInput = {
1154
1195
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1155
1196
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1156
1197
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1198
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1157
1199
  };
1158
1200
  export type TenantUncheckedUpdateWithoutContractsInput = {
1159
1201
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1176,6 +1218,7 @@ export type TenantUncheckedUpdateWithoutContractsInput = {
1176
1218
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1177
1219
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1178
1220
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1221
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1179
1222
  };
1180
1223
  export type TenantCreateWithoutDocumentTemplatesInput = {
1181
1224
  id?: string;
@@ -1198,6 +1241,7 @@ export type TenantCreateWithoutDocumentTemplatesInput = {
1198
1241
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
1199
1242
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
1200
1243
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1244
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1201
1245
  };
1202
1246
  export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
1203
1247
  id?: string;
@@ -1220,6 +1264,7 @@ export type TenantUncheckedCreateWithoutDocumentTemplatesInput = {
1220
1264
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1221
1265
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1222
1266
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1267
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1223
1268
  };
1224
1269
  export type TenantCreateOrConnectWithoutDocumentTemplatesInput = {
1225
1270
  where: Prisma.TenantWhereUniqueInput;
@@ -1255,6 +1300,7 @@ export type TenantUpdateWithoutDocumentTemplatesInput = {
1255
1300
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1256
1301
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1257
1302
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1303
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1258
1304
  };
1259
1305
  export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
1260
1306
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1277,6 +1323,7 @@ export type TenantUncheckedUpdateWithoutDocumentTemplatesInput = {
1277
1323
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1278
1324
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1279
1325
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1326
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1280
1327
  };
1281
1328
  export type TenantCreateWithoutOfferLettersInput = {
1282
1329
  id?: string;
@@ -1299,6 +1346,7 @@ export type TenantCreateWithoutOfferLettersInput = {
1299
1346
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
1300
1347
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
1301
1348
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1349
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1302
1350
  };
1303
1351
  export type TenantUncheckedCreateWithoutOfferLettersInput = {
1304
1352
  id?: string;
@@ -1321,6 +1369,7 @@ export type TenantUncheckedCreateWithoutOfferLettersInput = {
1321
1369
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1322
1370
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1323
1371
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1372
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1324
1373
  };
1325
1374
  export type TenantCreateOrConnectWithoutOfferLettersInput = {
1326
1375
  where: Prisma.TenantWhereUniqueInput;
@@ -1356,6 +1405,7 @@ export type TenantUpdateWithoutOfferLettersInput = {
1356
1405
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1357
1406
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1358
1407
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1408
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1359
1409
  };
1360
1410
  export type TenantUncheckedUpdateWithoutOfferLettersInput = {
1361
1411
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1378,6 +1428,7 @@ export type TenantUncheckedUpdateWithoutOfferLettersInput = {
1378
1428
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1379
1429
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1380
1430
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1431
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1381
1432
  };
1382
1433
  export type TenantCreateWithoutContractTerminationsInput = {
1383
1434
  id?: string;
@@ -1400,6 +1451,7 @@ export type TenantCreateWithoutContractTerminationsInput = {
1400
1451
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
1401
1452
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
1402
1453
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1454
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1403
1455
  };
1404
1456
  export type TenantUncheckedCreateWithoutContractTerminationsInput = {
1405
1457
  id?: string;
@@ -1422,6 +1474,7 @@ export type TenantUncheckedCreateWithoutContractTerminationsInput = {
1422
1474
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1423
1475
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1424
1476
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1477
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1425
1478
  };
1426
1479
  export type TenantCreateOrConnectWithoutContractTerminationsInput = {
1427
1480
  where: Prisma.TenantWhereUniqueInput;
@@ -1457,6 +1510,7 @@ export type TenantUpdateWithoutContractTerminationsInput = {
1457
1510
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1458
1511
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1459
1512
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1513
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1460
1514
  };
1461
1515
  export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
1462
1516
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1479,6 +1533,7 @@ export type TenantUncheckedUpdateWithoutContractTerminationsInput = {
1479
1533
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1480
1534
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1481
1535
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1536
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1482
1537
  };
1483
1538
  export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
1484
1539
  id?: string;
@@ -1501,6 +1556,7 @@ export type TenantCreateWithoutPaymentMethodChangeRequestsInput = {
1501
1556
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
1502
1557
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
1503
1558
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1559
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1504
1560
  };
1505
1561
  export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
1506
1562
  id?: string;
@@ -1523,6 +1579,7 @@ export type TenantUncheckedCreateWithoutPaymentMethodChangeRequestsInput = {
1523
1579
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1524
1580
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1525
1581
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1582
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1526
1583
  };
1527
1584
  export type TenantCreateOrConnectWithoutPaymentMethodChangeRequestsInput = {
1528
1585
  where: Prisma.TenantWhereUniqueInput;
@@ -1558,6 +1615,7 @@ export type TenantUpdateWithoutPaymentMethodChangeRequestsInput = {
1558
1615
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1559
1616
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1560
1617
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1618
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1561
1619
  };
1562
1620
  export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
1563
1621
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1580,6 +1638,7 @@ export type TenantUncheckedUpdateWithoutPaymentMethodChangeRequestsInput = {
1580
1638
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1581
1639
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1582
1640
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1641
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1583
1642
  };
1584
1643
  export type TenantCreateWithoutDocumentRequirementRulesInput = {
1585
1644
  id?: string;
@@ -1602,6 +1661,7 @@ export type TenantCreateWithoutDocumentRequirementRulesInput = {
1602
1661
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
1603
1662
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
1604
1663
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1664
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1605
1665
  };
1606
1666
  export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
1607
1667
  id?: string;
@@ -1624,6 +1684,7 @@ export type TenantUncheckedCreateWithoutDocumentRequirementRulesInput = {
1624
1684
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1625
1685
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1626
1686
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1687
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1627
1688
  };
1628
1689
  export type TenantCreateOrConnectWithoutDocumentRequirementRulesInput = {
1629
1690
  where: Prisma.TenantWhereUniqueInput;
@@ -1659,6 +1720,7 @@ export type TenantUpdateWithoutDocumentRequirementRulesInput = {
1659
1720
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1660
1721
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1661
1722
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1723
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1662
1724
  };
1663
1725
  export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
1664
1726
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1681,6 +1743,7 @@ export type TenantUncheckedUpdateWithoutDocumentRequirementRulesInput = {
1681
1743
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1682
1744
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1683
1745
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1746
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1684
1747
  };
1685
1748
  export type TenantCreateWithoutEventChannelsInput = {
1686
1749
  id?: string;
@@ -1703,6 +1766,7 @@ export type TenantCreateWithoutEventChannelsInput = {
1703
1766
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
1704
1767
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
1705
1768
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1769
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1706
1770
  };
1707
1771
  export type TenantUncheckedCreateWithoutEventChannelsInput = {
1708
1772
  id?: string;
@@ -1725,6 +1789,7 @@ export type TenantUncheckedCreateWithoutEventChannelsInput = {
1725
1789
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1726
1790
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1727
1791
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1792
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1728
1793
  };
1729
1794
  export type TenantCreateOrConnectWithoutEventChannelsInput = {
1730
1795
  where: Prisma.TenantWhereUniqueInput;
@@ -1760,6 +1825,7 @@ export type TenantUpdateWithoutEventChannelsInput = {
1760
1825
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1761
1826
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1762
1827
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1828
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1763
1829
  };
1764
1830
  export type TenantUncheckedUpdateWithoutEventChannelsInput = {
1765
1831
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1782,6 +1848,7 @@ export type TenantUncheckedUpdateWithoutEventChannelsInput = {
1782
1848
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1783
1849
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1784
1850
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1851
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1785
1852
  };
1786
1853
  export type TenantCreateWithoutEventTypesInput = {
1787
1854
  id?: string;
@@ -1804,6 +1871,7 @@ export type TenantCreateWithoutEventTypesInput = {
1804
1871
  eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
1805
1872
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
1806
1873
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1874
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1807
1875
  };
1808
1876
  export type TenantUncheckedCreateWithoutEventTypesInput = {
1809
1877
  id?: string;
@@ -1826,6 +1894,7 @@ export type TenantUncheckedCreateWithoutEventTypesInput = {
1826
1894
  eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
1827
1895
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
1828
1896
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
1897
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1829
1898
  };
1830
1899
  export type TenantCreateOrConnectWithoutEventTypesInput = {
1831
1900
  where: Prisma.TenantWhereUniqueInput;
@@ -1861,6 +1930,7 @@ export type TenantUpdateWithoutEventTypesInput = {
1861
1930
  eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
1862
1931
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
1863
1932
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
1933
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1864
1934
  };
1865
1935
  export type TenantUncheckedUpdateWithoutEventTypesInput = {
1866
1936
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1883,6 +1953,7 @@ export type TenantUncheckedUpdateWithoutEventTypesInput = {
1883
1953
  eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
1884
1954
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
1885
1955
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
1956
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1886
1957
  };
1887
1958
  export type TenantCreateWithoutEventHandlersInput = {
1888
1959
  id?: string;
@@ -1905,6 +1976,7 @@ export type TenantCreateWithoutEventHandlersInput = {
1905
1976
  eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
1906
1977
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
1907
1978
  workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
1979
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
1908
1980
  };
1909
1981
  export type TenantUncheckedCreateWithoutEventHandlersInput = {
1910
1982
  id?: string;
@@ -1927,6 +1999,7 @@ export type TenantUncheckedCreateWithoutEventHandlersInput = {
1927
1999
  eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
1928
2000
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
1929
2001
  workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
2002
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
1930
2003
  };
1931
2004
  export type TenantCreateOrConnectWithoutEventHandlersInput = {
1932
2005
  where: Prisma.TenantWhereUniqueInput;
@@ -1962,6 +2035,7 @@ export type TenantUpdateWithoutEventHandlersInput = {
1962
2035
  eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
1963
2036
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
1964
2037
  workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
2038
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
1965
2039
  };
1966
2040
  export type TenantUncheckedUpdateWithoutEventHandlersInput = {
1967
2041
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1984,6 +2058,7 @@ export type TenantUncheckedUpdateWithoutEventHandlersInput = {
1984
2058
  eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
1985
2059
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
1986
2060
  workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
2061
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
1987
2062
  };
1988
2063
  export type TenantCreateWithoutWorkflowEventsInput = {
1989
2064
  id?: string;
@@ -2006,6 +2081,7 @@ export type TenantCreateWithoutWorkflowEventsInput = {
2006
2081
  eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
2007
2082
  eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
2008
2083
  eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
2084
+ propertyTransferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTenantInput;
2009
2085
  };
2010
2086
  export type TenantUncheckedCreateWithoutWorkflowEventsInput = {
2011
2087
  id?: string;
@@ -2028,6 +2104,7 @@ export type TenantUncheckedCreateWithoutWorkflowEventsInput = {
2028
2104
  eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
2029
2105
  eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
2030
2106
  eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
2107
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTenantInput;
2031
2108
  };
2032
2109
  export type TenantCreateOrConnectWithoutWorkflowEventsInput = {
2033
2110
  where: Prisma.TenantWhereUniqueInput;
@@ -2063,6 +2140,7 @@ export type TenantUpdateWithoutWorkflowEventsInput = {
2063
2140
  eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
2064
2141
  eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
2065
2142
  eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
2143
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTenantNestedInput;
2066
2144
  };
2067
2145
  export type TenantUncheckedUpdateWithoutWorkflowEventsInput = {
2068
2146
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -2085,6 +2163,112 @@ export type TenantUncheckedUpdateWithoutWorkflowEventsInput = {
2085
2163
  eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
2086
2164
  eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
2087
2165
  eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
2166
+ propertyTransferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTenantNestedInput;
2167
+ };
2168
+ export type TenantCreateWithoutPropertyTransferRequestsInput = {
2169
+ id?: string;
2170
+ name: string;
2171
+ subdomain: string;
2172
+ isActive?: boolean;
2173
+ createdAt?: Date | string;
2174
+ updatedAt?: Date | string;
2175
+ users?: Prisma.UserCreateNestedManyWithoutTenantInput;
2176
+ properties?: Prisma.PropertyCreateNestedManyWithoutTenantInput;
2177
+ paymentPlans?: Prisma.PaymentPlanCreateNestedManyWithoutTenantInput;
2178
+ paymentMethods?: Prisma.PropertyPaymentMethodCreateNestedManyWithoutTenantInput;
2179
+ contracts?: Prisma.ContractCreateNestedManyWithoutTenantInput;
2180
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestCreateNestedManyWithoutTenantInput;
2181
+ documentRequirementRules?: Prisma.DocumentRequirementRuleCreateNestedManyWithoutTenantInput;
2182
+ contractTerminations?: Prisma.ContractTerminationCreateNestedManyWithoutTenantInput;
2183
+ documentTemplates?: Prisma.DocumentTemplateCreateNestedManyWithoutTenantInput;
2184
+ offerLetters?: Prisma.OfferLetterCreateNestedManyWithoutTenantInput;
2185
+ apiKeys?: Prisma.ApiKeyCreateNestedManyWithoutTenantInput;
2186
+ eventChannels?: Prisma.EventChannelCreateNestedManyWithoutTenantInput;
2187
+ eventTypes?: Prisma.EventTypeCreateNestedManyWithoutTenantInput;
2188
+ eventHandlers?: Prisma.EventHandlerCreateNestedManyWithoutTenantInput;
2189
+ workflowEvents?: Prisma.WorkflowEventCreateNestedManyWithoutTenantInput;
2190
+ };
2191
+ export type TenantUncheckedCreateWithoutPropertyTransferRequestsInput = {
2192
+ id?: string;
2193
+ name: string;
2194
+ subdomain: string;
2195
+ isActive?: boolean;
2196
+ createdAt?: Date | string;
2197
+ updatedAt?: Date | string;
2198
+ users?: Prisma.UserUncheckedCreateNestedManyWithoutTenantInput;
2199
+ properties?: Prisma.PropertyUncheckedCreateNestedManyWithoutTenantInput;
2200
+ paymentPlans?: Prisma.PaymentPlanUncheckedCreateNestedManyWithoutTenantInput;
2201
+ paymentMethods?: Prisma.PropertyPaymentMethodUncheckedCreateNestedManyWithoutTenantInput;
2202
+ contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutTenantInput;
2203
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedCreateNestedManyWithoutTenantInput;
2204
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedCreateNestedManyWithoutTenantInput;
2205
+ contractTerminations?: Prisma.ContractTerminationUncheckedCreateNestedManyWithoutTenantInput;
2206
+ documentTemplates?: Prisma.DocumentTemplateUncheckedCreateNestedManyWithoutTenantInput;
2207
+ offerLetters?: Prisma.OfferLetterUncheckedCreateNestedManyWithoutTenantInput;
2208
+ apiKeys?: Prisma.ApiKeyUncheckedCreateNestedManyWithoutTenantInput;
2209
+ eventChannels?: Prisma.EventChannelUncheckedCreateNestedManyWithoutTenantInput;
2210
+ eventTypes?: Prisma.EventTypeUncheckedCreateNestedManyWithoutTenantInput;
2211
+ eventHandlers?: Prisma.EventHandlerUncheckedCreateNestedManyWithoutTenantInput;
2212
+ workflowEvents?: Prisma.WorkflowEventUncheckedCreateNestedManyWithoutTenantInput;
2213
+ };
2214
+ export type TenantCreateOrConnectWithoutPropertyTransferRequestsInput = {
2215
+ where: Prisma.TenantWhereUniqueInput;
2216
+ create: Prisma.XOR<Prisma.TenantCreateWithoutPropertyTransferRequestsInput, Prisma.TenantUncheckedCreateWithoutPropertyTransferRequestsInput>;
2217
+ };
2218
+ export type TenantUpsertWithoutPropertyTransferRequestsInput = {
2219
+ update: Prisma.XOR<Prisma.TenantUpdateWithoutPropertyTransferRequestsInput, Prisma.TenantUncheckedUpdateWithoutPropertyTransferRequestsInput>;
2220
+ create: Prisma.XOR<Prisma.TenantCreateWithoutPropertyTransferRequestsInput, Prisma.TenantUncheckedCreateWithoutPropertyTransferRequestsInput>;
2221
+ where?: Prisma.TenantWhereInput;
2222
+ };
2223
+ export type TenantUpdateToOneWithWhereWithoutPropertyTransferRequestsInput = {
2224
+ where?: Prisma.TenantWhereInput;
2225
+ data: Prisma.XOR<Prisma.TenantUpdateWithoutPropertyTransferRequestsInput, Prisma.TenantUncheckedUpdateWithoutPropertyTransferRequestsInput>;
2226
+ };
2227
+ export type TenantUpdateWithoutPropertyTransferRequestsInput = {
2228
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
2229
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
2230
+ subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
2231
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
2232
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
2233
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
2234
+ users?: Prisma.UserUpdateManyWithoutTenantNestedInput;
2235
+ properties?: Prisma.PropertyUpdateManyWithoutTenantNestedInput;
2236
+ paymentPlans?: Prisma.PaymentPlanUpdateManyWithoutTenantNestedInput;
2237
+ paymentMethods?: Prisma.PropertyPaymentMethodUpdateManyWithoutTenantNestedInput;
2238
+ contracts?: Prisma.ContractUpdateManyWithoutTenantNestedInput;
2239
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUpdateManyWithoutTenantNestedInput;
2240
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUpdateManyWithoutTenantNestedInput;
2241
+ contractTerminations?: Prisma.ContractTerminationUpdateManyWithoutTenantNestedInput;
2242
+ documentTemplates?: Prisma.DocumentTemplateUpdateManyWithoutTenantNestedInput;
2243
+ offerLetters?: Prisma.OfferLetterUpdateManyWithoutTenantNestedInput;
2244
+ apiKeys?: Prisma.ApiKeyUpdateManyWithoutTenantNestedInput;
2245
+ eventChannels?: Prisma.EventChannelUpdateManyWithoutTenantNestedInput;
2246
+ eventTypes?: Prisma.EventTypeUpdateManyWithoutTenantNestedInput;
2247
+ eventHandlers?: Prisma.EventHandlerUpdateManyWithoutTenantNestedInput;
2248
+ workflowEvents?: Prisma.WorkflowEventUpdateManyWithoutTenantNestedInput;
2249
+ };
2250
+ export type TenantUncheckedUpdateWithoutPropertyTransferRequestsInput = {
2251
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
2252
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
2253
+ subdomain?: Prisma.StringFieldUpdateOperationsInput | string;
2254
+ isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean;
2255
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
2256
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
2257
+ users?: Prisma.UserUncheckedUpdateManyWithoutTenantNestedInput;
2258
+ properties?: Prisma.PropertyUncheckedUpdateManyWithoutTenantNestedInput;
2259
+ paymentPlans?: Prisma.PaymentPlanUncheckedUpdateManyWithoutTenantNestedInput;
2260
+ paymentMethods?: Prisma.PropertyPaymentMethodUncheckedUpdateManyWithoutTenantNestedInput;
2261
+ contracts?: Prisma.ContractUncheckedUpdateManyWithoutTenantNestedInput;
2262
+ paymentMethodChangeRequests?: Prisma.PaymentMethodChangeRequestUncheckedUpdateManyWithoutTenantNestedInput;
2263
+ documentRequirementRules?: Prisma.DocumentRequirementRuleUncheckedUpdateManyWithoutTenantNestedInput;
2264
+ contractTerminations?: Prisma.ContractTerminationUncheckedUpdateManyWithoutTenantNestedInput;
2265
+ documentTemplates?: Prisma.DocumentTemplateUncheckedUpdateManyWithoutTenantNestedInput;
2266
+ offerLetters?: Prisma.OfferLetterUncheckedUpdateManyWithoutTenantNestedInput;
2267
+ apiKeys?: Prisma.ApiKeyUncheckedUpdateManyWithoutTenantNestedInput;
2268
+ eventChannels?: Prisma.EventChannelUncheckedUpdateManyWithoutTenantNestedInput;
2269
+ eventTypes?: Prisma.EventTypeUncheckedUpdateManyWithoutTenantNestedInput;
2270
+ eventHandlers?: Prisma.EventHandlerUncheckedUpdateManyWithoutTenantNestedInput;
2271
+ workflowEvents?: Prisma.WorkflowEventUncheckedUpdateManyWithoutTenantNestedInput;
2088
2272
  };
2089
2273
  /**
2090
2274
  * Count Type TenantCountOutputType
@@ -2105,6 +2289,7 @@ export type TenantCountOutputType = {
2105
2289
  eventTypes: number;
2106
2290
  eventHandlers: number;
2107
2291
  workflowEvents: number;
2292
+ propertyTransferRequests: number;
2108
2293
  };
2109
2294
  export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2110
2295
  users?: boolean | TenantCountOutputTypeCountUsersArgs;
@@ -2122,6 +2307,7 @@ export type TenantCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions
2122
2307
  eventTypes?: boolean | TenantCountOutputTypeCountEventTypesArgs;
2123
2308
  eventHandlers?: boolean | TenantCountOutputTypeCountEventHandlersArgs;
2124
2309
  workflowEvents?: boolean | TenantCountOutputTypeCountWorkflowEventsArgs;
2310
+ propertyTransferRequests?: boolean | TenantCountOutputTypeCountPropertyTransferRequestsArgs;
2125
2311
  };
2126
2312
  /**
2127
2313
  * TenantCountOutputType without action
@@ -2222,6 +2408,12 @@ export type TenantCountOutputTypeCountEventHandlersArgs<ExtArgs extends runtime.
2222
2408
  export type TenantCountOutputTypeCountWorkflowEventsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2223
2409
  where?: Prisma.WorkflowEventWhereInput;
2224
2410
  };
2411
+ /**
2412
+ * TenantCountOutputType without action
2413
+ */
2414
+ export type TenantCountOutputTypeCountPropertyTransferRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2415
+ where?: Prisma.PropertyTransferRequestWhereInput;
2416
+ };
2225
2417
  export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
2226
2418
  id?: boolean;
2227
2419
  name?: boolean;
@@ -2244,6 +2436,7 @@ export type TenantSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs =
2244
2436
  eventTypes?: boolean | Prisma.Tenant$eventTypesArgs<ExtArgs>;
2245
2437
  eventHandlers?: boolean | Prisma.Tenant$eventHandlersArgs<ExtArgs>;
2246
2438
  workflowEvents?: boolean | Prisma.Tenant$workflowEventsArgs<ExtArgs>;
2439
+ propertyTransferRequests?: boolean | Prisma.Tenant$propertyTransferRequestsArgs<ExtArgs>;
2247
2440
  _count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
2248
2441
  }, ExtArgs["result"]["tenant"]>;
2249
2442
  export type TenantSelectScalar = {
@@ -2271,6 +2464,7 @@ export type TenantInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
2271
2464
  eventTypes?: boolean | Prisma.Tenant$eventTypesArgs<ExtArgs>;
2272
2465
  eventHandlers?: boolean | Prisma.Tenant$eventHandlersArgs<ExtArgs>;
2273
2466
  workflowEvents?: boolean | Prisma.Tenant$workflowEventsArgs<ExtArgs>;
2467
+ propertyTransferRequests?: boolean | Prisma.Tenant$propertyTransferRequestsArgs<ExtArgs>;
2274
2468
  _count?: boolean | Prisma.TenantCountOutputTypeDefaultArgs<ExtArgs>;
2275
2469
  };
2276
2470
  export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
@@ -2291,6 +2485,7 @@ export type $TenantPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs
2291
2485
  eventTypes: Prisma.$EventTypePayload<ExtArgs>[];
2292
2486
  eventHandlers: Prisma.$EventHandlerPayload<ExtArgs>[];
2293
2487
  workflowEvents: Prisma.$WorkflowEventPayload<ExtArgs>[];
2488
+ propertyTransferRequests: Prisma.$PropertyTransferRequestPayload<ExtArgs>[];
2294
2489
  };
2295
2490
  scalars: runtime.Types.Extensions.GetPayloadResult<{
2296
2491
  id: string;
@@ -2591,6 +2786,7 @@ export interface Prisma__TenantClient<T, Null = never, ExtArgs extends runtime.T
2591
2786
  eventTypes<T extends Prisma.Tenant$eventTypesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$eventTypesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EventTypePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2592
2787
  eventHandlers<T extends Prisma.Tenant$eventHandlersArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$eventHandlersArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EventHandlerPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2593
2788
  workflowEvents<T extends Prisma.Tenant$workflowEventsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$workflowEventsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$WorkflowEventPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2789
+ propertyTransferRequests<T extends Prisma.Tenant$propertyTransferRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Tenant$propertyTransferRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyTransferRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
2594
2790
  /**
2595
2791
  * Attaches callbacks for the resolution and/or rejection of the Promise.
2596
2792
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -3294,6 +3490,29 @@ export type Tenant$workflowEventsArgs<ExtArgs extends runtime.Types.Extensions.I
3294
3490
  skip?: number;
3295
3491
  distinct?: Prisma.WorkflowEventScalarFieldEnum | Prisma.WorkflowEventScalarFieldEnum[];
3296
3492
  };
3493
+ /**
3494
+ * Tenant.propertyTransferRequests
3495
+ */
3496
+ export type Tenant$propertyTransferRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
3497
+ /**
3498
+ * Select specific fields to fetch from the PropertyTransferRequest
3499
+ */
3500
+ select?: Prisma.PropertyTransferRequestSelect<ExtArgs> | null;
3501
+ /**
3502
+ * Omit specific fields from the PropertyTransferRequest
3503
+ */
3504
+ omit?: Prisma.PropertyTransferRequestOmit<ExtArgs> | null;
3505
+ /**
3506
+ * Choose, which related nodes to fetch as well
3507
+ */
3508
+ include?: Prisma.PropertyTransferRequestInclude<ExtArgs> | null;
3509
+ where?: Prisma.PropertyTransferRequestWhereInput;
3510
+ orderBy?: Prisma.PropertyTransferRequestOrderByWithRelationInput | Prisma.PropertyTransferRequestOrderByWithRelationInput[];
3511
+ cursor?: Prisma.PropertyTransferRequestWhereUniqueInput;
3512
+ take?: number;
3513
+ skip?: number;
3514
+ distinct?: Prisma.PropertyTransferRequestScalarFieldEnum | Prisma.PropertyTransferRequestScalarFieldEnum[];
3515
+ };
3297
3516
  /**
3298
3517
  * Tenant without action
3299
3518
  */