@valentine-efagene/qshelter-common 2.0.72 → 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.
- package/dist/generated/client/browser.d.ts +5 -0
- package/dist/generated/client/client.d.ts +5 -0
- package/dist/generated/client/commonInputTypes.d.ts +30 -0
- package/dist/generated/client/enums.d.ts +10 -0
- package/dist/generated/client/enums.js +10 -1
- package/dist/generated/client/internal/class.d.ts +11 -0
- package/dist/generated/client/internal/class.js +2 -2
- package/dist/generated/client/internal/prismaNamespace.d.ts +110 -1
- package/dist/generated/client/internal/prismaNamespace.js +39 -3
- package/dist/generated/client/internal/prismaNamespaceBrowser.d.ts +38 -0
- package/dist/generated/client/internal/prismaNamespaceBrowser.js +39 -3
- package/dist/generated/client/models/Contract.d.ts +1522 -280
- package/dist/generated/client/models/PropertyTransferRequest.d.ts +2535 -0
- package/dist/generated/client/models/PropertyTransferRequest.js +1 -0
- package/dist/generated/client/models/PropertyUnit.d.ts +147 -0
- package/dist/generated/client/models/Tenant.d.ts +219 -0
- package/dist/generated/client/models/User.d.ts +632 -0
- package/dist/generated/client/models.d.ts +1 -0
- package/package.json +1 -1
- package/prisma/migrations/20260106062140_add_step_event_attachments/migration.sql +22 -0
- package/prisma/migrations/20260107121844_add_property_transfer_requests/migration.sql +64 -0
- package/prisma/schema.prisma +90 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -258,6 +258,7 @@ export type PropertyUnitWhereInput = {
|
|
|
258
258
|
updatedAt?: Prisma.DateTimeFilter<"PropertyUnit"> | Date | string;
|
|
259
259
|
variant?: Prisma.XOR<Prisma.PropertyVariantScalarRelationFilter, Prisma.PropertyVariantWhereInput>;
|
|
260
260
|
contracts?: Prisma.ContractListRelationFilter;
|
|
261
|
+
transferRequests?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
261
262
|
};
|
|
262
263
|
export type PropertyUnitOrderByWithRelationInput = {
|
|
263
264
|
id?: Prisma.SortOrder;
|
|
@@ -277,6 +278,7 @@ export type PropertyUnitOrderByWithRelationInput = {
|
|
|
277
278
|
updatedAt?: Prisma.SortOrder;
|
|
278
279
|
variant?: Prisma.PropertyVariantOrderByWithRelationInput;
|
|
279
280
|
contracts?: Prisma.ContractOrderByRelationAggregateInput;
|
|
281
|
+
transferRequests?: Prisma.PropertyTransferRequestOrderByRelationAggregateInput;
|
|
280
282
|
_relevance?: Prisma.PropertyUnitOrderByRelevanceInput;
|
|
281
283
|
};
|
|
282
284
|
export type PropertyUnitWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -301,6 +303,7 @@ export type PropertyUnitWhereUniqueInput = Prisma.AtLeast<{
|
|
|
301
303
|
updatedAt?: Prisma.DateTimeFilter<"PropertyUnit"> | Date | string;
|
|
302
304
|
variant?: Prisma.XOR<Prisma.PropertyVariantScalarRelationFilter, Prisma.PropertyVariantWhereInput>;
|
|
303
305
|
contracts?: Prisma.ContractListRelationFilter;
|
|
306
|
+
transferRequests?: Prisma.PropertyTransferRequestListRelationFilter;
|
|
304
307
|
}, "id" | "variantId_unitNumber">;
|
|
305
308
|
export type PropertyUnitOrderByWithAggregationInput = {
|
|
306
309
|
id?: Prisma.SortOrder;
|
|
@@ -361,6 +364,7 @@ export type PropertyUnitCreateInput = {
|
|
|
361
364
|
updatedAt?: Date | string;
|
|
362
365
|
variant: Prisma.PropertyVariantCreateNestedOneWithoutUnitsInput;
|
|
363
366
|
contracts?: Prisma.ContractCreateNestedManyWithoutPropertyUnitInput;
|
|
367
|
+
transferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTargetPropertyUnitInput;
|
|
364
368
|
};
|
|
365
369
|
export type PropertyUnitUncheckedCreateInput = {
|
|
366
370
|
id?: string;
|
|
@@ -379,6 +383,7 @@ export type PropertyUnitUncheckedCreateInput = {
|
|
|
379
383
|
createdAt?: Date | string;
|
|
380
384
|
updatedAt?: Date | string;
|
|
381
385
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutPropertyUnitInput;
|
|
386
|
+
transferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTargetPropertyUnitInput;
|
|
382
387
|
};
|
|
383
388
|
export type PropertyUnitUpdateInput = {
|
|
384
389
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -397,6 +402,7 @@ export type PropertyUnitUpdateInput = {
|
|
|
397
402
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
398
403
|
variant?: Prisma.PropertyVariantUpdateOneRequiredWithoutUnitsNestedInput;
|
|
399
404
|
contracts?: Prisma.ContractUpdateManyWithoutPropertyUnitNestedInput;
|
|
405
|
+
transferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTargetPropertyUnitNestedInput;
|
|
400
406
|
};
|
|
401
407
|
export type PropertyUnitUncheckedUpdateInput = {
|
|
402
408
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -415,6 +421,7 @@ export type PropertyUnitUncheckedUpdateInput = {
|
|
|
415
421
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
416
422
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
417
423
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutPropertyUnitNestedInput;
|
|
424
|
+
transferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTargetPropertyUnitNestedInput;
|
|
418
425
|
};
|
|
419
426
|
export type PropertyUnitCreateManyInput = {
|
|
420
427
|
id?: string;
|
|
@@ -598,6 +605,18 @@ export type PropertyUnitUpdateOneRequiredWithoutContractsNestedInput = {
|
|
|
598
605
|
connect?: Prisma.PropertyUnitWhereUniqueInput;
|
|
599
606
|
update?: Prisma.XOR<Prisma.XOR<Prisma.PropertyUnitUpdateToOneWithWhereWithoutContractsInput, Prisma.PropertyUnitUpdateWithoutContractsInput>, Prisma.PropertyUnitUncheckedUpdateWithoutContractsInput>;
|
|
600
607
|
};
|
|
608
|
+
export type PropertyUnitCreateNestedOneWithoutTransferRequestsInput = {
|
|
609
|
+
create?: Prisma.XOR<Prisma.PropertyUnitCreateWithoutTransferRequestsInput, Prisma.PropertyUnitUncheckedCreateWithoutTransferRequestsInput>;
|
|
610
|
+
connectOrCreate?: Prisma.PropertyUnitCreateOrConnectWithoutTransferRequestsInput;
|
|
611
|
+
connect?: Prisma.PropertyUnitWhereUniqueInput;
|
|
612
|
+
};
|
|
613
|
+
export type PropertyUnitUpdateOneRequiredWithoutTransferRequestsNestedInput = {
|
|
614
|
+
create?: Prisma.XOR<Prisma.PropertyUnitCreateWithoutTransferRequestsInput, Prisma.PropertyUnitUncheckedCreateWithoutTransferRequestsInput>;
|
|
615
|
+
connectOrCreate?: Prisma.PropertyUnitCreateOrConnectWithoutTransferRequestsInput;
|
|
616
|
+
upsert?: Prisma.PropertyUnitUpsertWithoutTransferRequestsInput;
|
|
617
|
+
connect?: Prisma.PropertyUnitWhereUniqueInput;
|
|
618
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.PropertyUnitUpdateToOneWithWhereWithoutTransferRequestsInput, Prisma.PropertyUnitUpdateWithoutTransferRequestsInput>, Prisma.PropertyUnitUncheckedUpdateWithoutTransferRequestsInput>;
|
|
619
|
+
};
|
|
601
620
|
export type PropertyUnitCreateWithoutVariantInput = {
|
|
602
621
|
id?: string;
|
|
603
622
|
unitNumber: string;
|
|
@@ -614,6 +633,7 @@ export type PropertyUnitCreateWithoutVariantInput = {
|
|
|
614
633
|
createdAt?: Date | string;
|
|
615
634
|
updatedAt?: Date | string;
|
|
616
635
|
contracts?: Prisma.ContractCreateNestedManyWithoutPropertyUnitInput;
|
|
636
|
+
transferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTargetPropertyUnitInput;
|
|
617
637
|
};
|
|
618
638
|
export type PropertyUnitUncheckedCreateWithoutVariantInput = {
|
|
619
639
|
id?: string;
|
|
@@ -631,6 +651,7 @@ export type PropertyUnitUncheckedCreateWithoutVariantInput = {
|
|
|
631
651
|
createdAt?: Date | string;
|
|
632
652
|
updatedAt?: Date | string;
|
|
633
653
|
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutPropertyUnitInput;
|
|
654
|
+
transferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTargetPropertyUnitInput;
|
|
634
655
|
};
|
|
635
656
|
export type PropertyUnitCreateOrConnectWithoutVariantInput = {
|
|
636
657
|
where: Prisma.PropertyUnitWhereUniqueInput;
|
|
@@ -689,6 +710,7 @@ export type PropertyUnitCreateWithoutContractsInput = {
|
|
|
689
710
|
createdAt?: Date | string;
|
|
690
711
|
updatedAt?: Date | string;
|
|
691
712
|
variant: Prisma.PropertyVariantCreateNestedOneWithoutUnitsInput;
|
|
713
|
+
transferRequests?: Prisma.PropertyTransferRequestCreateNestedManyWithoutTargetPropertyUnitInput;
|
|
692
714
|
};
|
|
693
715
|
export type PropertyUnitUncheckedCreateWithoutContractsInput = {
|
|
694
716
|
id?: string;
|
|
@@ -706,6 +728,7 @@ export type PropertyUnitUncheckedCreateWithoutContractsInput = {
|
|
|
706
728
|
ownerId?: string | null;
|
|
707
729
|
createdAt?: Date | string;
|
|
708
730
|
updatedAt?: Date | string;
|
|
731
|
+
transferRequests?: Prisma.PropertyTransferRequestUncheckedCreateNestedManyWithoutTargetPropertyUnitInput;
|
|
709
732
|
};
|
|
710
733
|
export type PropertyUnitCreateOrConnectWithoutContractsInput = {
|
|
711
734
|
where: Prisma.PropertyUnitWhereUniqueInput;
|
|
@@ -736,6 +759,7 @@ export type PropertyUnitUpdateWithoutContractsInput = {
|
|
|
736
759
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
737
760
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
738
761
|
variant?: Prisma.PropertyVariantUpdateOneRequiredWithoutUnitsNestedInput;
|
|
762
|
+
transferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTargetPropertyUnitNestedInput;
|
|
739
763
|
};
|
|
740
764
|
export type PropertyUnitUncheckedUpdateWithoutContractsInput = {
|
|
741
765
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -753,6 +777,92 @@ export type PropertyUnitUncheckedUpdateWithoutContractsInput = {
|
|
|
753
777
|
ownerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
754
778
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
755
779
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
780
|
+
transferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTargetPropertyUnitNestedInput;
|
|
781
|
+
};
|
|
782
|
+
export type PropertyUnitCreateWithoutTransferRequestsInput = {
|
|
783
|
+
id?: string;
|
|
784
|
+
unitNumber: string;
|
|
785
|
+
floorNumber?: number | null;
|
|
786
|
+
blockName?: string | null;
|
|
787
|
+
priceOverride?: number | null;
|
|
788
|
+
areaOverride?: number | null;
|
|
789
|
+
notes?: string | null;
|
|
790
|
+
status?: string;
|
|
791
|
+
reservedAt?: Date | string | null;
|
|
792
|
+
reservedUntil?: Date | string | null;
|
|
793
|
+
reservedById?: string | null;
|
|
794
|
+
ownerId?: string | null;
|
|
795
|
+
createdAt?: Date | string;
|
|
796
|
+
updatedAt?: Date | string;
|
|
797
|
+
variant: Prisma.PropertyVariantCreateNestedOneWithoutUnitsInput;
|
|
798
|
+
contracts?: Prisma.ContractCreateNestedManyWithoutPropertyUnitInput;
|
|
799
|
+
};
|
|
800
|
+
export type PropertyUnitUncheckedCreateWithoutTransferRequestsInput = {
|
|
801
|
+
id?: string;
|
|
802
|
+
variantId: string;
|
|
803
|
+
unitNumber: string;
|
|
804
|
+
floorNumber?: number | null;
|
|
805
|
+
blockName?: string | null;
|
|
806
|
+
priceOverride?: number | null;
|
|
807
|
+
areaOverride?: number | null;
|
|
808
|
+
notes?: string | null;
|
|
809
|
+
status?: string;
|
|
810
|
+
reservedAt?: Date | string | null;
|
|
811
|
+
reservedUntil?: Date | string | null;
|
|
812
|
+
reservedById?: string | null;
|
|
813
|
+
ownerId?: string | null;
|
|
814
|
+
createdAt?: Date | string;
|
|
815
|
+
updatedAt?: Date | string;
|
|
816
|
+
contracts?: Prisma.ContractUncheckedCreateNestedManyWithoutPropertyUnitInput;
|
|
817
|
+
};
|
|
818
|
+
export type PropertyUnitCreateOrConnectWithoutTransferRequestsInput = {
|
|
819
|
+
where: Prisma.PropertyUnitWhereUniqueInput;
|
|
820
|
+
create: Prisma.XOR<Prisma.PropertyUnitCreateWithoutTransferRequestsInput, Prisma.PropertyUnitUncheckedCreateWithoutTransferRequestsInput>;
|
|
821
|
+
};
|
|
822
|
+
export type PropertyUnitUpsertWithoutTransferRequestsInput = {
|
|
823
|
+
update: Prisma.XOR<Prisma.PropertyUnitUpdateWithoutTransferRequestsInput, Prisma.PropertyUnitUncheckedUpdateWithoutTransferRequestsInput>;
|
|
824
|
+
create: Prisma.XOR<Prisma.PropertyUnitCreateWithoutTransferRequestsInput, Prisma.PropertyUnitUncheckedCreateWithoutTransferRequestsInput>;
|
|
825
|
+
where?: Prisma.PropertyUnitWhereInput;
|
|
826
|
+
};
|
|
827
|
+
export type PropertyUnitUpdateToOneWithWhereWithoutTransferRequestsInput = {
|
|
828
|
+
where?: Prisma.PropertyUnitWhereInput;
|
|
829
|
+
data: Prisma.XOR<Prisma.PropertyUnitUpdateWithoutTransferRequestsInput, Prisma.PropertyUnitUncheckedUpdateWithoutTransferRequestsInput>;
|
|
830
|
+
};
|
|
831
|
+
export type PropertyUnitUpdateWithoutTransferRequestsInput = {
|
|
832
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
833
|
+
unitNumber?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
834
|
+
floorNumber?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
835
|
+
blockName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
836
|
+
priceOverride?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
837
|
+
areaOverride?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
838
|
+
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
839
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
840
|
+
reservedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
841
|
+
reservedUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
842
|
+
reservedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
843
|
+
ownerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
844
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
845
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
846
|
+
variant?: Prisma.PropertyVariantUpdateOneRequiredWithoutUnitsNestedInput;
|
|
847
|
+
contracts?: Prisma.ContractUpdateManyWithoutPropertyUnitNestedInput;
|
|
848
|
+
};
|
|
849
|
+
export type PropertyUnitUncheckedUpdateWithoutTransferRequestsInput = {
|
|
850
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
851
|
+
variantId?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
852
|
+
unitNumber?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
853
|
+
floorNumber?: Prisma.NullableIntFieldUpdateOperationsInput | number | null;
|
|
854
|
+
blockName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
855
|
+
priceOverride?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
856
|
+
areaOverride?: Prisma.NullableFloatFieldUpdateOperationsInput | number | null;
|
|
857
|
+
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
858
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
859
|
+
reservedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
860
|
+
reservedUntil?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null;
|
|
861
|
+
reservedById?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
862
|
+
ownerId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
|
|
863
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
864
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
865
|
+
contracts?: Prisma.ContractUncheckedUpdateManyWithoutPropertyUnitNestedInput;
|
|
756
866
|
};
|
|
757
867
|
export type PropertyUnitCreateManyVariantInput = {
|
|
758
868
|
id?: string;
|
|
@@ -786,6 +896,7 @@ export type PropertyUnitUpdateWithoutVariantInput = {
|
|
|
786
896
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
787
897
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
788
898
|
contracts?: Prisma.ContractUpdateManyWithoutPropertyUnitNestedInput;
|
|
899
|
+
transferRequests?: Prisma.PropertyTransferRequestUpdateManyWithoutTargetPropertyUnitNestedInput;
|
|
789
900
|
};
|
|
790
901
|
export type PropertyUnitUncheckedUpdateWithoutVariantInput = {
|
|
791
902
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -803,6 +914,7 @@ export type PropertyUnitUncheckedUpdateWithoutVariantInput = {
|
|
|
803
914
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
804
915
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
|
|
805
916
|
contracts?: Prisma.ContractUncheckedUpdateManyWithoutPropertyUnitNestedInput;
|
|
917
|
+
transferRequests?: Prisma.PropertyTransferRequestUncheckedUpdateManyWithoutTargetPropertyUnitNestedInput;
|
|
806
918
|
};
|
|
807
919
|
export type PropertyUnitUncheckedUpdateManyWithoutVariantInput = {
|
|
808
920
|
id?: Prisma.StringFieldUpdateOperationsInput | string;
|
|
@@ -825,9 +937,11 @@ export type PropertyUnitUncheckedUpdateManyWithoutVariantInput = {
|
|
|
825
937
|
*/
|
|
826
938
|
export type PropertyUnitCountOutputType = {
|
|
827
939
|
contracts: number;
|
|
940
|
+
transferRequests: number;
|
|
828
941
|
};
|
|
829
942
|
export type PropertyUnitCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
830
943
|
contracts?: boolean | PropertyUnitCountOutputTypeCountContractsArgs;
|
|
944
|
+
transferRequests?: boolean | PropertyUnitCountOutputTypeCountTransferRequestsArgs;
|
|
831
945
|
};
|
|
832
946
|
/**
|
|
833
947
|
* PropertyUnitCountOutputType without action
|
|
@@ -844,6 +958,12 @@ export type PropertyUnitCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types
|
|
|
844
958
|
export type PropertyUnitCountOutputTypeCountContractsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
845
959
|
where?: Prisma.ContractWhereInput;
|
|
846
960
|
};
|
|
961
|
+
/**
|
|
962
|
+
* PropertyUnitCountOutputType without action
|
|
963
|
+
*/
|
|
964
|
+
export type PropertyUnitCountOutputTypeCountTransferRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
965
|
+
where?: Prisma.PropertyTransferRequestWhereInput;
|
|
966
|
+
};
|
|
847
967
|
export type PropertyUnitSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
848
968
|
id?: boolean;
|
|
849
969
|
variantId?: boolean;
|
|
@@ -862,6 +982,7 @@ export type PropertyUnitSelect<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
862
982
|
updatedAt?: boolean;
|
|
863
983
|
variant?: boolean | Prisma.PropertyVariantDefaultArgs<ExtArgs>;
|
|
864
984
|
contracts?: boolean | Prisma.PropertyUnit$contractsArgs<ExtArgs>;
|
|
985
|
+
transferRequests?: boolean | Prisma.PropertyUnit$transferRequestsArgs<ExtArgs>;
|
|
865
986
|
_count?: boolean | Prisma.PropertyUnitCountOutputTypeDefaultArgs<ExtArgs>;
|
|
866
987
|
}, ExtArgs["result"]["propertyUnit"]>;
|
|
867
988
|
export type PropertyUnitSelectScalar = {
|
|
@@ -885,6 +1006,7 @@ export type PropertyUnitOmit<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
885
1006
|
export type PropertyUnitInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
886
1007
|
variant?: boolean | Prisma.PropertyVariantDefaultArgs<ExtArgs>;
|
|
887
1008
|
contracts?: boolean | Prisma.PropertyUnit$contractsArgs<ExtArgs>;
|
|
1009
|
+
transferRequests?: boolean | Prisma.PropertyUnit$transferRequestsArgs<ExtArgs>;
|
|
888
1010
|
_count?: boolean | Prisma.PropertyUnitCountOutputTypeDefaultArgs<ExtArgs>;
|
|
889
1011
|
};
|
|
890
1012
|
export type $PropertyUnitPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -892,6 +1014,7 @@ export type $PropertyUnitPayload<ExtArgs extends runtime.Types.Extensions.Intern
|
|
|
892
1014
|
objects: {
|
|
893
1015
|
variant: Prisma.$PropertyVariantPayload<ExtArgs>;
|
|
894
1016
|
contracts: Prisma.$ContractPayload<ExtArgs>[];
|
|
1017
|
+
transferRequests: Prisma.$PropertyTransferRequestPayload<ExtArgs>[];
|
|
895
1018
|
};
|
|
896
1019
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
897
1020
|
id: string;
|
|
@@ -1188,6 +1311,7 @@ export interface Prisma__PropertyUnitClient<T, Null = never, ExtArgs extends run
|
|
|
1188
1311
|
readonly [Symbol.toStringTag]: "PrismaPromise";
|
|
1189
1312
|
variant<T extends Prisma.PropertyVariantDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyVariantDefaultArgs<ExtArgs>>): Prisma.Prisma__PropertyVariantClient<runtime.Types.Result.GetResult<Prisma.$PropertyVariantPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
|
|
1190
1313
|
contracts<T extends Prisma.PropertyUnit$contractsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyUnit$contractsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1314
|
+
transferRequests<T extends Prisma.PropertyUnit$transferRequestsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.PropertyUnit$transferRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PropertyTransferRequestPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
|
|
1191
1315
|
/**
|
|
1192
1316
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1193
1317
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -1578,6 +1702,29 @@ export type PropertyUnit$contractsArgs<ExtArgs extends runtime.Types.Extensions.
|
|
|
1578
1702
|
skip?: number;
|
|
1579
1703
|
distinct?: Prisma.ContractScalarFieldEnum | Prisma.ContractScalarFieldEnum[];
|
|
1580
1704
|
};
|
|
1705
|
+
/**
|
|
1706
|
+
* PropertyUnit.transferRequests
|
|
1707
|
+
*/
|
|
1708
|
+
export type PropertyUnit$transferRequestsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1709
|
+
/**
|
|
1710
|
+
* Select specific fields to fetch from the PropertyTransferRequest
|
|
1711
|
+
*/
|
|
1712
|
+
select?: Prisma.PropertyTransferRequestSelect<ExtArgs> | null;
|
|
1713
|
+
/**
|
|
1714
|
+
* Omit specific fields from the PropertyTransferRequest
|
|
1715
|
+
*/
|
|
1716
|
+
omit?: Prisma.PropertyTransferRequestOmit<ExtArgs> | null;
|
|
1717
|
+
/**
|
|
1718
|
+
* Choose, which related nodes to fetch as well
|
|
1719
|
+
*/
|
|
1720
|
+
include?: Prisma.PropertyTransferRequestInclude<ExtArgs> | null;
|
|
1721
|
+
where?: Prisma.PropertyTransferRequestWhereInput;
|
|
1722
|
+
orderBy?: Prisma.PropertyTransferRequestOrderByWithRelationInput | Prisma.PropertyTransferRequestOrderByWithRelationInput[];
|
|
1723
|
+
cursor?: Prisma.PropertyTransferRequestWhereUniqueInput;
|
|
1724
|
+
take?: number;
|
|
1725
|
+
skip?: number;
|
|
1726
|
+
distinct?: Prisma.PropertyTransferRequestScalarFieldEnum | Prisma.PropertyTransferRequestScalarFieldEnum[];
|
|
1727
|
+
};
|
|
1581
1728
|
/**
|
|
1582
1729
|
* PropertyUnit without action
|
|
1583
1730
|
*/
|