all the haul
This commit is contained in:
File diff suppressed because it is too large
Load Diff
+1641
-124
File diff suppressed because it is too large
Load Diff
@@ -1806,6 +1806,11 @@ export type CredentialFindManyArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
||||
* Skip the first `n` Credentials.
|
||||
*/
|
||||
skip?: number
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
||||
*
|
||||
* Filter by unique combinations of Credentials.
|
||||
*/
|
||||
distinct?: Prisma.CredentialScalarFieldEnum | Prisma.CredentialScalarFieldEnum[]
|
||||
}
|
||||
|
||||
|
||||
@@ -1146,6 +1146,11 @@ export type CredentialTypeFindManyArgs<ExtArgs extends runtime.Types.Extensions.
|
||||
* Skip the first `n` CredentialTypes.
|
||||
*/
|
||||
skip?: number
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
||||
*
|
||||
* Filter by unique combinations of CredentialTypes.
|
||||
*/
|
||||
distinct?: Prisma.CredentialTypeScalarFieldEnum | Prisma.CredentialTypeScalarFieldEnum[]
|
||||
}
|
||||
|
||||
|
||||
@@ -264,6 +264,7 @@ export type CwMemberWhereInput = {
|
||||
cwLastUpdated?: Prisma.DateTimeNullableFilter<"CwMember"> | Date | string | null
|
||||
createdAt?: Prisma.DateTimeFilter<"CwMember"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"CwMember"> | Date | string
|
||||
user?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null
|
||||
}
|
||||
|
||||
export type CwMemberOrderByWithRelationInput = {
|
||||
@@ -278,6 +279,7 @@ export type CwMemberOrderByWithRelationInput = {
|
||||
cwLastUpdated?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
createdAt?: Prisma.SortOrder
|
||||
updatedAt?: Prisma.SortOrder
|
||||
user?: Prisma.UserOrderByWithRelationInput
|
||||
}
|
||||
|
||||
export type CwMemberWhereUniqueInput = Prisma.AtLeast<{
|
||||
@@ -295,6 +297,7 @@ export type CwMemberWhereUniqueInput = Prisma.AtLeast<{
|
||||
cwLastUpdated?: Prisma.DateTimeNullableFilter<"CwMember"> | Date | string | null
|
||||
createdAt?: Prisma.DateTimeFilter<"CwMember"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"CwMember"> | Date | string
|
||||
user?: Prisma.XOR<Prisma.UserNullableScalarRelationFilter, Prisma.UserWhereInput> | null
|
||||
}, "id" | "cwMemberId" | "identifier">
|
||||
|
||||
export type CwMemberOrderByWithAggregationInput = {
|
||||
@@ -345,6 +348,7 @@ export type CwMemberCreateInput = {
|
||||
cwLastUpdated?: Date | string | null
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
user?: Prisma.UserCreateNestedOneWithoutCwMemberInput
|
||||
}
|
||||
|
||||
export type CwMemberUncheckedCreateInput = {
|
||||
@@ -359,6 +363,7 @@ export type CwMemberUncheckedCreateInput = {
|
||||
cwLastUpdated?: Date | string | null
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
user?: Prisma.UserUncheckedCreateNestedOneWithoutCwMemberInput
|
||||
}
|
||||
|
||||
export type CwMemberUpdateInput = {
|
||||
@@ -373,6 +378,7 @@ export type CwMemberUpdateInput = {
|
||||
cwLastUpdated?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
user?: Prisma.UserUpdateOneWithoutCwMemberNestedInput
|
||||
}
|
||||
|
||||
export type CwMemberUncheckedUpdateInput = {
|
||||
@@ -387,6 +393,7 @@ export type CwMemberUncheckedUpdateInput = {
|
||||
cwLastUpdated?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
user?: Prisma.UserUncheckedUpdateOneWithoutCwMemberNestedInput
|
||||
}
|
||||
|
||||
export type CwMemberCreateManyInput = {
|
||||
@@ -431,6 +438,11 @@ export type CwMemberUncheckedUpdateManyInput = {
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
}
|
||||
|
||||
export type CwMemberNullableScalarRelationFilter = {
|
||||
is?: Prisma.CwMemberWhereInput | null
|
||||
isNot?: Prisma.CwMemberWhereInput | null
|
||||
}
|
||||
|
||||
export type CwMemberCountOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
cwMemberId?: Prisma.SortOrder
|
||||
@@ -481,6 +493,94 @@ export type CwMemberSumOrderByAggregateInput = {
|
||||
cwMemberId?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type CwMemberCreateNestedOneWithoutUserInput = {
|
||||
create?: Prisma.XOR<Prisma.CwMemberCreateWithoutUserInput, Prisma.CwMemberUncheckedCreateWithoutUserInput>
|
||||
connectOrCreate?: Prisma.CwMemberCreateOrConnectWithoutUserInput
|
||||
connect?: Prisma.CwMemberWhereUniqueInput
|
||||
}
|
||||
|
||||
export type CwMemberUpdateOneWithoutUserNestedInput = {
|
||||
create?: Prisma.XOR<Prisma.CwMemberCreateWithoutUserInput, Prisma.CwMemberUncheckedCreateWithoutUserInput>
|
||||
connectOrCreate?: Prisma.CwMemberCreateOrConnectWithoutUserInput
|
||||
upsert?: Prisma.CwMemberUpsertWithoutUserInput
|
||||
disconnect?: Prisma.CwMemberWhereInput | boolean
|
||||
delete?: Prisma.CwMemberWhereInput | boolean
|
||||
connect?: Prisma.CwMemberWhereUniqueInput
|
||||
update?: Prisma.XOR<Prisma.XOR<Prisma.CwMemberUpdateToOneWithWhereWithoutUserInput, Prisma.CwMemberUpdateWithoutUserInput>, Prisma.CwMemberUncheckedUpdateWithoutUserInput>
|
||||
}
|
||||
|
||||
export type CwMemberCreateWithoutUserInput = {
|
||||
id?: string
|
||||
cwMemberId: number
|
||||
identifier: string
|
||||
firstName: string
|
||||
lastName: string
|
||||
officeEmail?: string | null
|
||||
inactiveFlag?: boolean
|
||||
apiKey?: string | null
|
||||
cwLastUpdated?: Date | string | null
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
}
|
||||
|
||||
export type CwMemberUncheckedCreateWithoutUserInput = {
|
||||
id?: string
|
||||
cwMemberId: number
|
||||
identifier: string
|
||||
firstName: string
|
||||
lastName: string
|
||||
officeEmail?: string | null
|
||||
inactiveFlag?: boolean
|
||||
apiKey?: string | null
|
||||
cwLastUpdated?: Date | string | null
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
}
|
||||
|
||||
export type CwMemberCreateOrConnectWithoutUserInput = {
|
||||
where: Prisma.CwMemberWhereUniqueInput
|
||||
create: Prisma.XOR<Prisma.CwMemberCreateWithoutUserInput, Prisma.CwMemberUncheckedCreateWithoutUserInput>
|
||||
}
|
||||
|
||||
export type CwMemberUpsertWithoutUserInput = {
|
||||
update: Prisma.XOR<Prisma.CwMemberUpdateWithoutUserInput, Prisma.CwMemberUncheckedUpdateWithoutUserInput>
|
||||
create: Prisma.XOR<Prisma.CwMemberCreateWithoutUserInput, Prisma.CwMemberUncheckedCreateWithoutUserInput>
|
||||
where?: Prisma.CwMemberWhereInput
|
||||
}
|
||||
|
||||
export type CwMemberUpdateToOneWithWhereWithoutUserInput = {
|
||||
where?: Prisma.CwMemberWhereInput
|
||||
data: Prisma.XOR<Prisma.CwMemberUpdateWithoutUserInput, Prisma.CwMemberUncheckedUpdateWithoutUserInput>
|
||||
}
|
||||
|
||||
export type CwMemberUpdateWithoutUserInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
cwMemberId?: Prisma.IntFieldUpdateOperationsInput | number
|
||||
identifier?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
firstName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
lastName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
officeEmail?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
inactiveFlag?: Prisma.BoolFieldUpdateOperationsInput | boolean
|
||||
apiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
cwLastUpdated?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
}
|
||||
|
||||
export type CwMemberUncheckedUpdateWithoutUserInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
cwMemberId?: Prisma.IntFieldUpdateOperationsInput | number
|
||||
identifier?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
firstName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
lastName?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
officeEmail?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
inactiveFlag?: Prisma.BoolFieldUpdateOperationsInput | boolean
|
||||
apiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
cwLastUpdated?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
}
|
||||
|
||||
|
||||
|
||||
export type CwMemberSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
||||
@@ -495,6 +595,7 @@ export type CwMemberSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
||||
cwLastUpdated?: boolean
|
||||
createdAt?: boolean
|
||||
updatedAt?: boolean
|
||||
user?: boolean | Prisma.CwMember$userArgs<ExtArgs>
|
||||
}, ExtArgs["result"]["cwMember"]>
|
||||
|
||||
export type CwMemberSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
||||
@@ -540,10 +641,17 @@ export type CwMemberSelectScalar = {
|
||||
}
|
||||
|
||||
export type CwMemberOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "cwMemberId" | "identifier" | "firstName" | "lastName" | "officeEmail" | "inactiveFlag" | "apiKey" | "cwLastUpdated" | "createdAt" | "updatedAt", ExtArgs["result"]["cwMember"]>
|
||||
export type CwMemberInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
user?: boolean | Prisma.CwMember$userArgs<ExtArgs>
|
||||
}
|
||||
export type CwMemberIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
|
||||
export type CwMemberIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
|
||||
|
||||
export type $CwMemberPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
name: "CwMember"
|
||||
objects: {}
|
||||
objects: {
|
||||
user: Prisma.$UserPayload<ExtArgs> | null
|
||||
}
|
||||
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
||||
id: string
|
||||
cwMemberId: number
|
||||
@@ -950,6 +1058,7 @@ readonly fields: CwMemberFieldRefs;
|
||||
*/
|
||||
export interface Prisma__CwMemberClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
||||
readonly [Symbol.toStringTag]: "PrismaPromise"
|
||||
user<T extends Prisma.CwMember$userArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.CwMember$userArgs<ExtArgs>>): Prisma.Prisma__UserClient<runtime.Types.Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
||||
/**
|
||||
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
||||
* @param onfulfilled The callback to execute when the Promise is resolved.
|
||||
@@ -1006,6 +1115,10 @@ export type CwMemberFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* Filter, which CwMember to fetch.
|
||||
*/
|
||||
@@ -1024,6 +1137,10 @@ export type CwMemberFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensio
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* Filter, which CwMember to fetch.
|
||||
*/
|
||||
@@ -1042,6 +1159,10 @@ export type CwMemberFindFirstArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* Filter, which CwMember to fetch.
|
||||
*/
|
||||
@@ -1090,6 +1211,10 @@ export type CwMemberFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extension
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* Filter, which CwMember to fetch.
|
||||
*/
|
||||
@@ -1138,6 +1263,10 @@ export type CwMemberFindManyArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* Filter, which CwMembers to fetch.
|
||||
*/
|
||||
@@ -1166,6 +1295,11 @@ export type CwMemberFindManyArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
||||
* Skip the first `n` CwMembers.
|
||||
*/
|
||||
skip?: number
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
||||
*
|
||||
* Filter by unique combinations of CwMembers.
|
||||
*/
|
||||
distinct?: Prisma.CwMemberScalarFieldEnum | Prisma.CwMemberScalarFieldEnum[]
|
||||
}
|
||||
|
||||
@@ -1181,6 +1315,10 @@ export type CwMemberCreateArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* The data needed to create a CwMember.
|
||||
*/
|
||||
@@ -1229,6 +1367,10 @@ export type CwMemberUpdateArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* The data needed to update a CwMember.
|
||||
*/
|
||||
@@ -1295,6 +1437,10 @@ export type CwMemberUpsertArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* The filter to search for the CwMember to update in case it exists.
|
||||
*/
|
||||
@@ -1321,6 +1467,10 @@ export type CwMemberDeleteArgs<ExtArgs extends runtime.Types.Extensions.Internal
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
/**
|
||||
* Filter which CwMember to delete.
|
||||
*/
|
||||
@@ -1341,6 +1491,25 @@ export type CwMemberDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
||||
limit?: number
|
||||
}
|
||||
|
||||
/**
|
||||
* CwMember.user
|
||||
*/
|
||||
export type CwMember$userArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
/**
|
||||
* Select specific fields to fetch from the User
|
||||
*/
|
||||
select?: Prisma.UserSelect<ExtArgs> | null
|
||||
/**
|
||||
* Omit specific fields from the User
|
||||
*/
|
||||
omit?: Prisma.UserOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.UserInclude<ExtArgs> | null
|
||||
where?: Prisma.UserWhereInput
|
||||
}
|
||||
|
||||
/**
|
||||
* CwMember without action
|
||||
*/
|
||||
@@ -1353,4 +1522,8 @@ export type CwMemberDefaultArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
||||
* Omit specific fields from the CwMember
|
||||
*/
|
||||
omit?: Prisma.CwMemberOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CwMemberInclude<ExtArgs> | null
|
||||
}
|
||||
|
||||
@@ -1474,6 +1474,11 @@ export type GeneratedQuotesFindManyArgs<ExtArgs extends runtime.Types.Extensions
|
||||
* Skip the first `n` GeneratedQuotes.
|
||||
*/
|
||||
skip?: number
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
||||
*
|
||||
* Filter by unique combinations of GeneratedQuotes.
|
||||
*/
|
||||
distinct?: Prisma.GeneratedQuotesScalarFieldEnum | Prisma.GeneratedQuotesScalarFieldEnum[]
|
||||
}
|
||||
|
||||
|
||||
+4085
-1574
File diff suppressed because it is too large
Load Diff
@@ -1175,6 +1175,11 @@ export type RoleFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalAr
|
||||
* Skip the first `n` Roles.
|
||||
*/
|
||||
skip?: number
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
||||
*
|
||||
* Filter by unique combinations of Roles.
|
||||
*/
|
||||
distinct?: Prisma.RoleScalarFieldEnum | Prisma.RoleScalarFieldEnum[]
|
||||
}
|
||||
|
||||
|
||||
@@ -1192,6 +1192,11 @@ export type SecureValueFindManyArgs<ExtArgs extends runtime.Types.Extensions.Int
|
||||
* Skip the first `n` SecureValues.
|
||||
*/
|
||||
skip?: number
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
||||
*
|
||||
* Filter by unique combinations of SecureValues.
|
||||
*/
|
||||
distinct?: Prisma.SecureValueScalarFieldEnum | Prisma.SecureValueScalarFieldEnum[]
|
||||
}
|
||||
|
||||
|
||||
@@ -361,22 +361,10 @@ export type SessionOrderByRelationAggregateInput = {
|
||||
_count?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type StringFieldUpdateOperationsInput = {
|
||||
set?: string
|
||||
}
|
||||
|
||||
export type DateTimeFieldUpdateOperationsInput = {
|
||||
set?: Date | string
|
||||
}
|
||||
|
||||
export type BoolFieldUpdateOperationsInput = {
|
||||
set?: boolean
|
||||
}
|
||||
|
||||
export type NullableDateTimeFieldUpdateOperationsInput = {
|
||||
set?: Date | string | null
|
||||
}
|
||||
|
||||
export type SessionCreateNestedManyWithoutUserInput = {
|
||||
create?: Prisma.XOR<Prisma.SessionCreateWithoutUserInput, Prisma.SessionUncheckedCreateWithoutUserInput> | Prisma.SessionCreateWithoutUserInput[] | Prisma.SessionUncheckedCreateWithoutUserInput[]
|
||||
connectOrCreate?: Prisma.SessionCreateOrConnectWithoutUserInput | Prisma.SessionCreateOrConnectWithoutUserInput[]
|
||||
@@ -1208,6 +1196,11 @@ export type SessionFindManyArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
||||
* Skip the first `n` Sessions.
|
||||
*/
|
||||
skip?: number
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
||||
*
|
||||
* Filter by unique combinations of Sessions.
|
||||
*/
|
||||
distinct?: Prisma.SessionScalarFieldEnum | Prisma.SessionScalarFieldEnum[]
|
||||
}
|
||||
|
||||
|
||||
@@ -20,15 +20,25 @@ export type UnifiSiteModel = runtime.Types.Result.DefaultSelection<Prisma.$Unifi
|
||||
|
||||
export type AggregateUnifiSite = {
|
||||
_count: UnifiSiteCountAggregateOutputType | null
|
||||
_avg: UnifiSiteAvgAggregateOutputType | null
|
||||
_sum: UnifiSiteSumAggregateOutputType | null
|
||||
_min: UnifiSiteMinAggregateOutputType | null
|
||||
_max: UnifiSiteMaxAggregateOutputType | null
|
||||
}
|
||||
|
||||
export type UnifiSiteAvgAggregateOutputType = {
|
||||
companyId: number | null
|
||||
}
|
||||
|
||||
export type UnifiSiteSumAggregateOutputType = {
|
||||
companyId: number | null
|
||||
}
|
||||
|
||||
export type UnifiSiteMinAggregateOutputType = {
|
||||
id: string | null
|
||||
name: string | null
|
||||
siteId: string | null
|
||||
companyId: string | null
|
||||
companyId: number | null
|
||||
createdAt: Date | null
|
||||
updatedAt: Date | null
|
||||
}
|
||||
@@ -37,7 +47,7 @@ export type UnifiSiteMaxAggregateOutputType = {
|
||||
id: string | null
|
||||
name: string | null
|
||||
siteId: string | null
|
||||
companyId: string | null
|
||||
companyId: number | null
|
||||
createdAt: Date | null
|
||||
updatedAt: Date | null
|
||||
}
|
||||
@@ -53,6 +63,14 @@ export type UnifiSiteCountAggregateOutputType = {
|
||||
}
|
||||
|
||||
|
||||
export type UnifiSiteAvgAggregateInputType = {
|
||||
companyId?: true
|
||||
}
|
||||
|
||||
export type UnifiSiteSumAggregateInputType = {
|
||||
companyId?: true
|
||||
}
|
||||
|
||||
export type UnifiSiteMinAggregateInputType = {
|
||||
id?: true
|
||||
name?: true
|
||||
@@ -116,6 +134,18 @@ export type UnifiSiteAggregateArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
||||
* Count returned UnifiSites
|
||||
**/
|
||||
_count?: true | UnifiSiteCountAggregateInputType
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
||||
*
|
||||
* Select which fields to average
|
||||
**/
|
||||
_avg?: UnifiSiteAvgAggregateInputType
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
||||
*
|
||||
* Select which fields to sum
|
||||
**/
|
||||
_sum?: UnifiSiteSumAggregateInputType
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
||||
*
|
||||
@@ -149,6 +179,8 @@ export type UnifiSiteGroupByArgs<ExtArgs extends runtime.Types.Extensions.Intern
|
||||
take?: number
|
||||
skip?: number
|
||||
_count?: UnifiSiteCountAggregateInputType | true
|
||||
_avg?: UnifiSiteAvgAggregateInputType
|
||||
_sum?: UnifiSiteSumAggregateInputType
|
||||
_min?: UnifiSiteMinAggregateInputType
|
||||
_max?: UnifiSiteMaxAggregateInputType
|
||||
}
|
||||
@@ -157,10 +189,12 @@ export type UnifiSiteGroupByOutputType = {
|
||||
id: string
|
||||
name: string
|
||||
siteId: string
|
||||
companyId: string | null
|
||||
companyId: number | null
|
||||
createdAt: Date
|
||||
updatedAt: Date
|
||||
_count: UnifiSiteCountAggregateOutputType | null
|
||||
_avg: UnifiSiteAvgAggregateOutputType | null
|
||||
_sum: UnifiSiteSumAggregateOutputType | null
|
||||
_min: UnifiSiteMinAggregateOutputType | null
|
||||
_max: UnifiSiteMaxAggregateOutputType | null
|
||||
}
|
||||
@@ -187,7 +221,7 @@ export type UnifiSiteWhereInput = {
|
||||
id?: Prisma.StringFilter<"UnifiSite"> | string
|
||||
name?: Prisma.StringFilter<"UnifiSite"> | string
|
||||
siteId?: Prisma.StringFilter<"UnifiSite"> | string
|
||||
companyId?: Prisma.StringNullableFilter<"UnifiSite"> | string | null
|
||||
companyId?: Prisma.IntNullableFilter<"UnifiSite"> | number | null
|
||||
createdAt?: Prisma.DateTimeFilter<"UnifiSite"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"UnifiSite"> | Date | string
|
||||
company?: Prisma.XOR<Prisma.CompanyNullableScalarRelationFilter, Prisma.CompanyWhereInput> | null
|
||||
@@ -210,7 +244,7 @@ export type UnifiSiteWhereUniqueInput = Prisma.AtLeast<{
|
||||
OR?: Prisma.UnifiSiteWhereInput[]
|
||||
NOT?: Prisma.UnifiSiteWhereInput | Prisma.UnifiSiteWhereInput[]
|
||||
name?: Prisma.StringFilter<"UnifiSite"> | string
|
||||
companyId?: Prisma.StringNullableFilter<"UnifiSite"> | string | null
|
||||
companyId?: Prisma.IntNullableFilter<"UnifiSite"> | number | null
|
||||
createdAt?: Prisma.DateTimeFilter<"UnifiSite"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"UnifiSite"> | Date | string
|
||||
company?: Prisma.XOR<Prisma.CompanyNullableScalarRelationFilter, Prisma.CompanyWhereInput> | null
|
||||
@@ -224,8 +258,10 @@ export type UnifiSiteOrderByWithAggregationInput = {
|
||||
createdAt?: Prisma.SortOrder
|
||||
updatedAt?: Prisma.SortOrder
|
||||
_count?: Prisma.UnifiSiteCountOrderByAggregateInput
|
||||
_avg?: Prisma.UnifiSiteAvgOrderByAggregateInput
|
||||
_max?: Prisma.UnifiSiteMaxOrderByAggregateInput
|
||||
_min?: Prisma.UnifiSiteMinOrderByAggregateInput
|
||||
_sum?: Prisma.UnifiSiteSumOrderByAggregateInput
|
||||
}
|
||||
|
||||
export type UnifiSiteScalarWhereWithAggregatesInput = {
|
||||
@@ -235,7 +271,7 @@ export type UnifiSiteScalarWhereWithAggregatesInput = {
|
||||
id?: Prisma.StringWithAggregatesFilter<"UnifiSite"> | string
|
||||
name?: Prisma.StringWithAggregatesFilter<"UnifiSite"> | string
|
||||
siteId?: Prisma.StringWithAggregatesFilter<"UnifiSite"> | string
|
||||
companyId?: Prisma.StringNullableWithAggregatesFilter<"UnifiSite"> | string | null
|
||||
companyId?: Prisma.IntNullableWithAggregatesFilter<"UnifiSite"> | number | null
|
||||
createdAt?: Prisma.DateTimeWithAggregatesFilter<"UnifiSite"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"UnifiSite"> | Date | string
|
||||
}
|
||||
@@ -253,7 +289,7 @@ export type UnifiSiteUncheckedCreateInput = {
|
||||
id?: string
|
||||
name: string
|
||||
siteId: string
|
||||
companyId?: string | null
|
||||
companyId?: number | null
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
}
|
||||
@@ -271,7 +307,7 @@ export type UnifiSiteUncheckedUpdateInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
siteId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
companyId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
companyId?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
}
|
||||
@@ -280,7 +316,7 @@ export type UnifiSiteCreateManyInput = {
|
||||
id?: string
|
||||
name: string
|
||||
siteId: string
|
||||
companyId?: string | null
|
||||
companyId?: number | null
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
}
|
||||
@@ -297,7 +333,7 @@ export type UnifiSiteUncheckedUpdateManyInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
siteId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
companyId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
companyId?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
}
|
||||
@@ -311,6 +347,10 @@ export type UnifiSiteCountOrderByAggregateInput = {
|
||||
updatedAt?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type UnifiSiteAvgOrderByAggregateInput = {
|
||||
companyId?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type UnifiSiteMaxOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
@@ -329,6 +369,10 @@ export type UnifiSiteMinOrderByAggregateInput = {
|
||||
updatedAt?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type UnifiSiteSumOrderByAggregateInput = {
|
||||
companyId?: Prisma.SortOrder
|
||||
}
|
||||
|
||||
export type UnifiSiteListRelationFilter = {
|
||||
every?: Prisma.UnifiSiteWhereInput
|
||||
some?: Prisma.UnifiSiteWhereInput
|
||||
@@ -430,7 +474,7 @@ export type UnifiSiteScalarWhereInput = {
|
||||
id?: Prisma.StringFilter<"UnifiSite"> | string
|
||||
name?: Prisma.StringFilter<"UnifiSite"> | string
|
||||
siteId?: Prisma.StringFilter<"UnifiSite"> | string
|
||||
companyId?: Prisma.StringNullableFilter<"UnifiSite"> | string | null
|
||||
companyId?: Prisma.IntNullableFilter<"UnifiSite"> | number | null
|
||||
createdAt?: Prisma.DateTimeFilter<"UnifiSite"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"UnifiSite"> | Date | string
|
||||
}
|
||||
@@ -528,7 +572,7 @@ export type $UnifiSitePayload<ExtArgs extends runtime.Types.Extensions.InternalA
|
||||
id: string
|
||||
name: string
|
||||
siteId: string
|
||||
companyId: string | null
|
||||
companyId: number | null
|
||||
createdAt: Date
|
||||
updatedAt: Date
|
||||
}, ExtArgs["result"]["unifiSite"]>
|
||||
@@ -958,7 +1002,7 @@ export interface UnifiSiteFieldRefs {
|
||||
readonly id: Prisma.FieldRef<"UnifiSite", 'String'>
|
||||
readonly name: Prisma.FieldRef<"UnifiSite", 'String'>
|
||||
readonly siteId: Prisma.FieldRef<"UnifiSite", 'String'>
|
||||
readonly companyId: Prisma.FieldRef<"UnifiSite", 'String'>
|
||||
readonly companyId: Prisma.FieldRef<"UnifiSite", 'Int'>
|
||||
readonly createdAt: Prisma.FieldRef<"UnifiSite", 'DateTime'>
|
||||
readonly updatedAt: Prisma.FieldRef<"UnifiSite", 'DateTime'>
|
||||
}
|
||||
@@ -1157,6 +1201,11 @@ export type UnifiSiteFindManyArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
||||
* Skip the first `n` UnifiSites.
|
||||
*/
|
||||
skip?: number
|
||||
/**
|
||||
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
||||
*
|
||||
* Filter by unique combinations of UnifiSites.
|
||||
*/
|
||||
distinct?: Prisma.UnifiSiteScalarFieldEnum | Prisma.UnifiSiteScalarFieldEnum[]
|
||||
}
|
||||
|
||||
|
||||
+2754
-118
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user