New fields for complex
This commit is contained in:
@@ -28,6 +28,9 @@ export type ComplexMinAggregateOutputType = {
|
||||
id: string | null
|
||||
complexName: string | null
|
||||
physicalAddress: string | null
|
||||
city: string | null
|
||||
state: string | null
|
||||
country: string | null
|
||||
complexSlug: string | null
|
||||
adminEmail: string | null
|
||||
planCode: string | null
|
||||
@@ -39,6 +42,9 @@ export type ComplexMaxAggregateOutputType = {
|
||||
id: string | null
|
||||
complexName: string | null
|
||||
physicalAddress: string | null
|
||||
city: string | null
|
||||
state: string | null
|
||||
country: string | null
|
||||
complexSlug: string | null
|
||||
adminEmail: string | null
|
||||
planCode: string | null
|
||||
@@ -50,6 +56,9 @@ export type ComplexCountAggregateOutputType = {
|
||||
id: number
|
||||
complexName: number
|
||||
physicalAddress: number
|
||||
city: number
|
||||
state: number
|
||||
country: number
|
||||
complexSlug: number
|
||||
adminEmail: number
|
||||
planCode: number
|
||||
@@ -63,6 +72,9 @@ export type ComplexMinAggregateInputType = {
|
||||
id?: true
|
||||
complexName?: true
|
||||
physicalAddress?: true
|
||||
city?: true
|
||||
state?: true
|
||||
country?: true
|
||||
complexSlug?: true
|
||||
adminEmail?: true
|
||||
planCode?: true
|
||||
@@ -74,6 +86,9 @@ export type ComplexMaxAggregateInputType = {
|
||||
id?: true
|
||||
complexName?: true
|
||||
physicalAddress?: true
|
||||
city?: true
|
||||
state?: true
|
||||
country?: true
|
||||
complexSlug?: true
|
||||
adminEmail?: true
|
||||
planCode?: true
|
||||
@@ -85,6 +100,9 @@ export type ComplexCountAggregateInputType = {
|
||||
id?: true
|
||||
complexName?: true
|
||||
physicalAddress?: true
|
||||
city?: true
|
||||
state?: true
|
||||
country?: true
|
||||
complexSlug?: true
|
||||
adminEmail?: true
|
||||
planCode?: true
|
||||
@@ -169,6 +187,9 @@ export type ComplexGroupByOutputType = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress: string | null
|
||||
city: string | null
|
||||
state: string | null
|
||||
country: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
planCode: string | null
|
||||
@@ -201,6 +222,9 @@ export type ComplexWhereInput = {
|
||||
id?: Prisma.UuidFilter<"Complex"> | string
|
||||
complexName?: Prisma.StringFilter<"Complex"> | string
|
||||
physicalAddress?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
city?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
state?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
country?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
complexSlug?: Prisma.StringFilter<"Complex"> | string
|
||||
adminEmail?: Prisma.StringFilter<"Complex"> | string
|
||||
planCode?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
@@ -215,6 +239,9 @@ export type ComplexOrderByWithRelationInput = {
|
||||
id?: Prisma.SortOrder
|
||||
complexName?: Prisma.SortOrder
|
||||
physicalAddress?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
city?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
state?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
country?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
complexSlug?: Prisma.SortOrder
|
||||
adminEmail?: Prisma.SortOrder
|
||||
planCode?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
@@ -233,6 +260,9 @@ export type ComplexWhereUniqueInput = Prisma.AtLeast<{
|
||||
NOT?: Prisma.ComplexWhereInput | Prisma.ComplexWhereInput[]
|
||||
complexName?: Prisma.StringFilter<"Complex"> | string
|
||||
physicalAddress?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
city?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
state?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
country?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
adminEmail?: Prisma.StringFilter<"Complex"> | string
|
||||
planCode?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
createdAt?: Prisma.DateTimeFilter<"Complex"> | Date | string
|
||||
@@ -246,6 +276,9 @@ export type ComplexOrderByWithAggregationInput = {
|
||||
id?: Prisma.SortOrder
|
||||
complexName?: Prisma.SortOrder
|
||||
physicalAddress?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
city?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
state?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
country?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
complexSlug?: Prisma.SortOrder
|
||||
adminEmail?: Prisma.SortOrder
|
||||
planCode?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
@@ -263,6 +296,9 @@ export type ComplexScalarWhereWithAggregatesInput = {
|
||||
id?: Prisma.UuidWithAggregatesFilter<"Complex"> | string
|
||||
complexName?: Prisma.StringWithAggregatesFilter<"Complex"> | string
|
||||
physicalAddress?: Prisma.StringNullableWithAggregatesFilter<"Complex"> | string | null
|
||||
city?: Prisma.StringNullableWithAggregatesFilter<"Complex"> | string | null
|
||||
state?: Prisma.StringNullableWithAggregatesFilter<"Complex"> | string | null
|
||||
country?: Prisma.StringNullableWithAggregatesFilter<"Complex"> | string | null
|
||||
complexSlug?: Prisma.StringWithAggregatesFilter<"Complex"> | string
|
||||
adminEmail?: Prisma.StringWithAggregatesFilter<"Complex"> | string
|
||||
planCode?: Prisma.StringNullableWithAggregatesFilter<"Complex"> | string | null
|
||||
@@ -274,6 +310,9 @@ export type ComplexCreateInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
createdAt?: Date | string
|
||||
@@ -287,6 +326,9 @@ export type ComplexUncheckedCreateInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
planCode?: string | null
|
||||
@@ -300,6 +342,9 @@ export type ComplexUpdateInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -313,6 +358,9 @@ export type ComplexUncheckedUpdateInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
planCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
@@ -326,6 +374,9 @@ export type ComplexCreateManyInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
planCode?: string | null
|
||||
@@ -337,6 +388,9 @@ export type ComplexUpdateManyMutationInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -347,6 +401,9 @@ export type ComplexUncheckedUpdateManyInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
planCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
@@ -358,6 +415,9 @@ export type ComplexCountOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
complexName?: Prisma.SortOrder
|
||||
physicalAddress?: Prisma.SortOrder
|
||||
city?: Prisma.SortOrder
|
||||
state?: Prisma.SortOrder
|
||||
country?: Prisma.SortOrder
|
||||
complexSlug?: Prisma.SortOrder
|
||||
adminEmail?: Prisma.SortOrder
|
||||
planCode?: Prisma.SortOrder
|
||||
@@ -369,6 +429,9 @@ export type ComplexMaxOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
complexName?: Prisma.SortOrder
|
||||
physicalAddress?: Prisma.SortOrder
|
||||
city?: Prisma.SortOrder
|
||||
state?: Prisma.SortOrder
|
||||
country?: Prisma.SortOrder
|
||||
complexSlug?: Prisma.SortOrder
|
||||
adminEmail?: Prisma.SortOrder
|
||||
planCode?: Prisma.SortOrder
|
||||
@@ -380,6 +443,9 @@ export type ComplexMinOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
complexName?: Prisma.SortOrder
|
||||
physicalAddress?: Prisma.SortOrder
|
||||
city?: Prisma.SortOrder
|
||||
state?: Prisma.SortOrder
|
||||
country?: Prisma.SortOrder
|
||||
complexSlug?: Prisma.SortOrder
|
||||
adminEmail?: Prisma.SortOrder
|
||||
planCode?: Prisma.SortOrder
|
||||
@@ -488,6 +554,9 @@ export type ComplexCreateWithoutUsersInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
createdAt?: Date | string
|
||||
@@ -500,6 +569,9 @@ export type ComplexUncheckedCreateWithoutUsersInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
planCode?: string | null
|
||||
@@ -528,6 +600,9 @@ export type ComplexUpdateWithoutUsersInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -540,6 +615,9 @@ export type ComplexUncheckedUpdateWithoutUsersInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
planCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
@@ -552,6 +630,9 @@ export type ComplexCreateWithoutCourtsInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
createdAt?: Date | string
|
||||
@@ -564,6 +645,9 @@ export type ComplexUncheckedCreateWithoutCourtsInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
planCode?: string | null
|
||||
@@ -592,6 +676,9 @@ export type ComplexUpdateWithoutCourtsInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -604,6 +691,9 @@ export type ComplexUncheckedUpdateWithoutCourtsInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
planCode?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
@@ -616,6 +706,9 @@ export type ComplexCreateWithoutPlanInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
createdAt?: Date | string
|
||||
@@ -628,6 +721,9 @@ export type ComplexUncheckedCreateWithoutPlanInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
createdAt?: Date | string
|
||||
@@ -669,6 +765,9 @@ export type ComplexScalarWhereInput = {
|
||||
id?: Prisma.UuidFilter<"Complex"> | string
|
||||
complexName?: Prisma.StringFilter<"Complex"> | string
|
||||
physicalAddress?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
city?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
state?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
country?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
complexSlug?: Prisma.StringFilter<"Complex"> | string
|
||||
adminEmail?: Prisma.StringFilter<"Complex"> | string
|
||||
planCode?: Prisma.StringNullableFilter<"Complex"> | string | null
|
||||
@@ -680,6 +779,9 @@ export type ComplexCreateManyPlanInput = {
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress?: string | null
|
||||
city?: string | null
|
||||
state?: string | null
|
||||
country?: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
createdAt?: Date | string
|
||||
@@ -690,6 +792,9 @@ export type ComplexUpdateWithoutPlanInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -702,6 +807,9 @@ export type ComplexUncheckedUpdateWithoutPlanInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -714,6 +822,9 @@ export type ComplexUncheckedUpdateManyWithoutPlanInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
complexName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
physicalAddress?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
complexSlug?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
adminEmail?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -764,6 +875,9 @@ export type ComplexSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
||||
id?: boolean
|
||||
complexName?: boolean
|
||||
physicalAddress?: boolean
|
||||
city?: boolean
|
||||
state?: boolean
|
||||
country?: boolean
|
||||
complexSlug?: boolean
|
||||
adminEmail?: boolean
|
||||
planCode?: boolean
|
||||
@@ -779,6 +893,9 @@ export type ComplexSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Exten
|
||||
id?: boolean
|
||||
complexName?: boolean
|
||||
physicalAddress?: boolean
|
||||
city?: boolean
|
||||
state?: boolean
|
||||
country?: boolean
|
||||
complexSlug?: boolean
|
||||
adminEmail?: boolean
|
||||
planCode?: boolean
|
||||
@@ -791,6 +908,9 @@ export type ComplexSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Exten
|
||||
id?: boolean
|
||||
complexName?: boolean
|
||||
physicalAddress?: boolean
|
||||
city?: boolean
|
||||
state?: boolean
|
||||
country?: boolean
|
||||
complexSlug?: boolean
|
||||
adminEmail?: boolean
|
||||
planCode?: boolean
|
||||
@@ -803,6 +923,9 @@ export type ComplexSelectScalar = {
|
||||
id?: boolean
|
||||
complexName?: boolean
|
||||
physicalAddress?: boolean
|
||||
city?: boolean
|
||||
state?: boolean
|
||||
country?: boolean
|
||||
complexSlug?: boolean
|
||||
adminEmail?: boolean
|
||||
planCode?: boolean
|
||||
@@ -810,7 +933,7 @@ export type ComplexSelectScalar = {
|
||||
updatedAt?: boolean
|
||||
}
|
||||
|
||||
export type ComplexOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "complexName" | "physicalAddress" | "complexSlug" | "adminEmail" | "planCode" | "createdAt" | "updatedAt", ExtArgs["result"]["complex"]>
|
||||
export type ComplexOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "complexName" | "physicalAddress" | "city" | "state" | "country" | "complexSlug" | "adminEmail" | "planCode" | "createdAt" | "updatedAt", ExtArgs["result"]["complex"]>
|
||||
export type ComplexInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
plan?: boolean | Prisma.Complex$planArgs<ExtArgs>
|
||||
users?: boolean | Prisma.Complex$usersArgs<ExtArgs>
|
||||
@@ -835,6 +958,9 @@ export type $ComplexPayload<ExtArgs extends runtime.Types.Extensions.InternalArg
|
||||
id: string
|
||||
complexName: string
|
||||
physicalAddress: string | null
|
||||
city: string | null
|
||||
state: string | null
|
||||
country: string | null
|
||||
complexSlug: string
|
||||
adminEmail: string
|
||||
planCode: string | null
|
||||
@@ -1269,6 +1395,9 @@ export interface ComplexFieldRefs {
|
||||
readonly id: Prisma.FieldRef<"Complex", 'String'>
|
||||
readonly complexName: Prisma.FieldRef<"Complex", 'String'>
|
||||
readonly physicalAddress: Prisma.FieldRef<"Complex", 'String'>
|
||||
readonly city: Prisma.FieldRef<"Complex", 'String'>
|
||||
readonly state: Prisma.FieldRef<"Complex", 'String'>
|
||||
readonly country: Prisma.FieldRef<"Complex", 'String'>
|
||||
readonly complexSlug: Prisma.FieldRef<"Complex", 'String'>
|
||||
readonly adminEmail: Prisma.FieldRef<"Complex", 'String'>
|
||||
readonly planCode: Prisma.FieldRef<"Complex", 'String'>
|
||||
|
||||
Reference in New Issue
Block a user