setup unifi wlans
This commit is contained in:
@@ -225,6 +225,7 @@ export type CompanyWhereInput = {
|
||||
createdAt?: Prisma.DateTimeFilter<"Company"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"Company"> | Date | string
|
||||
credentials?: Prisma.CredentialListRelationFilter
|
||||
unifiSites?: Prisma.UnifiSiteListRelationFilter
|
||||
}
|
||||
|
||||
export type CompanyOrderByWithRelationInput = {
|
||||
@@ -235,6 +236,7 @@ export type CompanyOrderByWithRelationInput = {
|
||||
createdAt?: Prisma.SortOrder
|
||||
updatedAt?: Prisma.SortOrder
|
||||
credentials?: Prisma.CredentialOrderByRelationAggregateInput
|
||||
unifiSites?: Prisma.UnifiSiteOrderByRelationAggregateInput
|
||||
}
|
||||
|
||||
export type CompanyWhereUniqueInput = Prisma.AtLeast<{
|
||||
@@ -248,6 +250,7 @@ export type CompanyWhereUniqueInput = Prisma.AtLeast<{
|
||||
createdAt?: Prisma.DateTimeFilter<"Company"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"Company"> | Date | string
|
||||
credentials?: Prisma.CredentialListRelationFilter
|
||||
unifiSites?: Prisma.UnifiSiteListRelationFilter
|
||||
}, "id" | "cw_CompanyId" | "cw_Identifier">
|
||||
|
||||
export type CompanyOrderByWithAggregationInput = {
|
||||
@@ -284,6 +287,7 @@ export type CompanyCreateInput = {
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
credentials?: Prisma.CredentialCreateNestedManyWithoutCompanyInput
|
||||
unifiSites?: Prisma.UnifiSiteCreateNestedManyWithoutCompanyInput
|
||||
}
|
||||
|
||||
export type CompanyUncheckedCreateInput = {
|
||||
@@ -294,6 +298,7 @@ export type CompanyUncheckedCreateInput = {
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
credentials?: Prisma.CredentialUncheckedCreateNestedManyWithoutCompanyInput
|
||||
unifiSites?: Prisma.UnifiSiteUncheckedCreateNestedManyWithoutCompanyInput
|
||||
}
|
||||
|
||||
export type CompanyUpdateInput = {
|
||||
@@ -304,6 +309,7 @@ export type CompanyUpdateInput = {
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
credentials?: Prisma.CredentialUpdateManyWithoutCompanyNestedInput
|
||||
unifiSites?: Prisma.UnifiSiteUpdateManyWithoutCompanyNestedInput
|
||||
}
|
||||
|
||||
export type CompanyUncheckedUpdateInput = {
|
||||
@@ -314,6 +320,7 @@ export type CompanyUncheckedUpdateInput = {
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
credentials?: Prisma.CredentialUncheckedUpdateManyWithoutCompanyNestedInput
|
||||
unifiSites?: Prisma.UnifiSiteUncheckedUpdateManyWithoutCompanyNestedInput
|
||||
}
|
||||
|
||||
export type CompanyCreateManyInput = {
|
||||
@@ -343,6 +350,11 @@ export type CompanyUncheckedUpdateManyInput = {
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
}
|
||||
|
||||
export type CompanyNullableScalarRelationFilter = {
|
||||
is?: Prisma.CompanyWhereInput | null
|
||||
isNot?: Prisma.CompanyWhereInput | null
|
||||
}
|
||||
|
||||
export type CompanyCountOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
@@ -383,6 +395,22 @@ export type CompanyScalarRelationFilter = {
|
||||
isNot?: Prisma.CompanyWhereInput
|
||||
}
|
||||
|
||||
export type CompanyCreateNestedOneWithoutUnifiSitesInput = {
|
||||
create?: Prisma.XOR<Prisma.CompanyCreateWithoutUnifiSitesInput, Prisma.CompanyUncheckedCreateWithoutUnifiSitesInput>
|
||||
connectOrCreate?: Prisma.CompanyCreateOrConnectWithoutUnifiSitesInput
|
||||
connect?: Prisma.CompanyWhereUniqueInput
|
||||
}
|
||||
|
||||
export type CompanyUpdateOneWithoutUnifiSitesNestedInput = {
|
||||
create?: Prisma.XOR<Prisma.CompanyCreateWithoutUnifiSitesInput, Prisma.CompanyUncheckedCreateWithoutUnifiSitesInput>
|
||||
connectOrCreate?: Prisma.CompanyCreateOrConnectWithoutUnifiSitesInput
|
||||
upsert?: Prisma.CompanyUpsertWithoutUnifiSitesInput
|
||||
disconnect?: Prisma.CompanyWhereInput | boolean
|
||||
delete?: Prisma.CompanyWhereInput | boolean
|
||||
connect?: Prisma.CompanyWhereUniqueInput
|
||||
update?: Prisma.XOR<Prisma.XOR<Prisma.CompanyUpdateToOneWithWhereWithoutUnifiSitesInput, Prisma.CompanyUpdateWithoutUnifiSitesInput>, Prisma.CompanyUncheckedUpdateWithoutUnifiSitesInput>
|
||||
}
|
||||
|
||||
export type IntFieldUpdateOperationsInput = {
|
||||
set?: number
|
||||
increment?: number
|
||||
@@ -405,6 +433,62 @@ export type CompanyUpdateOneRequiredWithoutCredentialsNestedInput = {
|
||||
update?: Prisma.XOR<Prisma.XOR<Prisma.CompanyUpdateToOneWithWhereWithoutCredentialsInput, Prisma.CompanyUpdateWithoutCredentialsInput>, Prisma.CompanyUncheckedUpdateWithoutCredentialsInput>
|
||||
}
|
||||
|
||||
export type CompanyCreateWithoutUnifiSitesInput = {
|
||||
id?: string
|
||||
name: string
|
||||
cw_CompanyId: number
|
||||
cw_Identifier: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
credentials?: Prisma.CredentialCreateNestedManyWithoutCompanyInput
|
||||
}
|
||||
|
||||
export type CompanyUncheckedCreateWithoutUnifiSitesInput = {
|
||||
id?: string
|
||||
name: string
|
||||
cw_CompanyId: number
|
||||
cw_Identifier: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
credentials?: Prisma.CredentialUncheckedCreateNestedManyWithoutCompanyInput
|
||||
}
|
||||
|
||||
export type CompanyCreateOrConnectWithoutUnifiSitesInput = {
|
||||
where: Prisma.CompanyWhereUniqueInput
|
||||
create: Prisma.XOR<Prisma.CompanyCreateWithoutUnifiSitesInput, Prisma.CompanyUncheckedCreateWithoutUnifiSitesInput>
|
||||
}
|
||||
|
||||
export type CompanyUpsertWithoutUnifiSitesInput = {
|
||||
update: Prisma.XOR<Prisma.CompanyUpdateWithoutUnifiSitesInput, Prisma.CompanyUncheckedUpdateWithoutUnifiSitesInput>
|
||||
create: Prisma.XOR<Prisma.CompanyCreateWithoutUnifiSitesInput, Prisma.CompanyUncheckedCreateWithoutUnifiSitesInput>
|
||||
where?: Prisma.CompanyWhereInput
|
||||
}
|
||||
|
||||
export type CompanyUpdateToOneWithWhereWithoutUnifiSitesInput = {
|
||||
where?: Prisma.CompanyWhereInput
|
||||
data: Prisma.XOR<Prisma.CompanyUpdateWithoutUnifiSitesInput, Prisma.CompanyUncheckedUpdateWithoutUnifiSitesInput>
|
||||
}
|
||||
|
||||
export type CompanyUpdateWithoutUnifiSitesInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
cw_CompanyId?: Prisma.IntFieldUpdateOperationsInput | number
|
||||
cw_Identifier?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
credentials?: Prisma.CredentialUpdateManyWithoutCompanyNestedInput
|
||||
}
|
||||
|
||||
export type CompanyUncheckedUpdateWithoutUnifiSitesInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
cw_CompanyId?: Prisma.IntFieldUpdateOperationsInput | number
|
||||
cw_Identifier?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
credentials?: Prisma.CredentialUncheckedUpdateManyWithoutCompanyNestedInput
|
||||
}
|
||||
|
||||
export type CompanyCreateWithoutCredentialsInput = {
|
||||
id?: string
|
||||
name: string
|
||||
@@ -412,6 +496,7 @@ export type CompanyCreateWithoutCredentialsInput = {
|
||||
cw_Identifier: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
unifiSites?: Prisma.UnifiSiteCreateNestedManyWithoutCompanyInput
|
||||
}
|
||||
|
||||
export type CompanyUncheckedCreateWithoutCredentialsInput = {
|
||||
@@ -421,6 +506,7 @@ export type CompanyUncheckedCreateWithoutCredentialsInput = {
|
||||
cw_Identifier: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
unifiSites?: Prisma.UnifiSiteUncheckedCreateNestedManyWithoutCompanyInput
|
||||
}
|
||||
|
||||
export type CompanyCreateOrConnectWithoutCredentialsInput = {
|
||||
@@ -446,6 +532,7 @@ export type CompanyUpdateWithoutCredentialsInput = {
|
||||
cw_Identifier?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
unifiSites?: Prisma.UnifiSiteUpdateManyWithoutCompanyNestedInput
|
||||
}
|
||||
|
||||
export type CompanyUncheckedUpdateWithoutCredentialsInput = {
|
||||
@@ -455,6 +542,7 @@ export type CompanyUncheckedUpdateWithoutCredentialsInput = {
|
||||
cw_Identifier?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
unifiSites?: Prisma.UnifiSiteUncheckedUpdateManyWithoutCompanyNestedInput
|
||||
}
|
||||
|
||||
|
||||
@@ -464,10 +552,12 @@ export type CompanyUncheckedUpdateWithoutCredentialsInput = {
|
||||
|
||||
export type CompanyCountOutputType = {
|
||||
credentials: number
|
||||
unifiSites: number
|
||||
}
|
||||
|
||||
export type CompanyCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
credentials?: boolean | CompanyCountOutputTypeCountCredentialsArgs
|
||||
unifiSites?: boolean | CompanyCountOutputTypeCountUnifiSitesArgs
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -487,6 +577,13 @@ export type CompanyCountOutputTypeCountCredentialsArgs<ExtArgs extends runtime.T
|
||||
where?: Prisma.CredentialWhereInput
|
||||
}
|
||||
|
||||
/**
|
||||
* CompanyCountOutputType without action
|
||||
*/
|
||||
export type CompanyCountOutputTypeCountUnifiSitesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
where?: Prisma.UnifiSiteWhereInput
|
||||
}
|
||||
|
||||
|
||||
export type CompanySelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
||||
id?: boolean
|
||||
@@ -496,6 +593,7 @@ export type CompanySelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
||||
createdAt?: boolean
|
||||
updatedAt?: boolean
|
||||
credentials?: boolean | Prisma.Company$credentialsArgs<ExtArgs>
|
||||
unifiSites?: boolean | Prisma.Company$unifiSitesArgs<ExtArgs>
|
||||
_count?: boolean | Prisma.CompanyCountOutputTypeDefaultArgs<ExtArgs>
|
||||
}, ExtArgs["result"]["company"]>
|
||||
|
||||
@@ -529,6 +627,7 @@ export type CompanySelectScalar = {
|
||||
export type CompanyOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "cw_CompanyId" | "cw_Identifier" | "createdAt" | "updatedAt", ExtArgs["result"]["company"]>
|
||||
export type CompanyInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
credentials?: boolean | Prisma.Company$credentialsArgs<ExtArgs>
|
||||
unifiSites?: boolean | Prisma.Company$unifiSitesArgs<ExtArgs>
|
||||
_count?: boolean | Prisma.CompanyCountOutputTypeDefaultArgs<ExtArgs>
|
||||
}
|
||||
export type CompanyIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
|
||||
@@ -538,6 +637,7 @@ export type $CompanyPayload<ExtArgs extends runtime.Types.Extensions.InternalArg
|
||||
name: "Company"
|
||||
objects: {
|
||||
credentials: Prisma.$CredentialPayload<ExtArgs>[]
|
||||
unifiSites: Prisma.$UnifiSitePayload<ExtArgs>[]
|
||||
}
|
||||
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
||||
id: string
|
||||
@@ -941,6 +1041,7 @@ readonly fields: CompanyFieldRefs;
|
||||
export interface Prisma__CompanyClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
||||
readonly [Symbol.toStringTag]: "PrismaPromise"
|
||||
credentials<T extends Prisma.Company$credentialsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Company$credentialsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$CredentialPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
||||
unifiSites<T extends Prisma.Company$unifiSitesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Company$unifiSitesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UnifiSitePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
||||
/**
|
||||
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
||||
* @param onfulfilled The callback to execute when the Promise is resolved.
|
||||
@@ -1387,6 +1488,30 @@ export type Company$credentialsArgs<ExtArgs extends runtime.Types.Extensions.Int
|
||||
distinct?: Prisma.CredentialScalarFieldEnum | Prisma.CredentialScalarFieldEnum[]
|
||||
}
|
||||
|
||||
/**
|
||||
* Company.unifiSites
|
||||
*/
|
||||
export type Company$unifiSitesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
/**
|
||||
* Select specific fields to fetch from the UnifiSite
|
||||
*/
|
||||
select?: Prisma.UnifiSiteSelect<ExtArgs> | null
|
||||
/**
|
||||
* Omit specific fields from the UnifiSite
|
||||
*/
|
||||
omit?: Prisma.UnifiSiteOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.UnifiSiteInclude<ExtArgs> | null
|
||||
where?: Prisma.UnifiSiteWhereInput
|
||||
orderBy?: Prisma.UnifiSiteOrderByWithRelationInput | Prisma.UnifiSiteOrderByWithRelationInput[]
|
||||
cursor?: Prisma.UnifiSiteWhereUniqueInput
|
||||
take?: number
|
||||
skip?: number
|
||||
distinct?: Prisma.UnifiSiteScalarFieldEnum | Prisma.UnifiSiteScalarFieldEnum[]
|
||||
}
|
||||
|
||||
/**
|
||||
* Company without action
|
||||
*/
|
||||
|
||||
@@ -28,6 +28,7 @@ export type CredentialMinAggregateOutputType = {
|
||||
id: string | null
|
||||
name: string | null
|
||||
notes: string | null
|
||||
subCredentialOfId: string | null
|
||||
typeId: string | null
|
||||
companyId: string | null
|
||||
createdAt: Date | null
|
||||
@@ -38,6 +39,7 @@ export type CredentialMaxAggregateOutputType = {
|
||||
id: string | null
|
||||
name: string | null
|
||||
notes: string | null
|
||||
subCredentialOfId: string | null
|
||||
typeId: string | null
|
||||
companyId: string | null
|
||||
createdAt: Date | null
|
||||
@@ -48,6 +50,7 @@ export type CredentialCountAggregateOutputType = {
|
||||
id: number
|
||||
name: number
|
||||
notes: number
|
||||
subCredentialOfId: number
|
||||
typeId: number
|
||||
fields: number
|
||||
companyId: number
|
||||
@@ -61,6 +64,7 @@ export type CredentialMinAggregateInputType = {
|
||||
id?: true
|
||||
name?: true
|
||||
notes?: true
|
||||
subCredentialOfId?: true
|
||||
typeId?: true
|
||||
companyId?: true
|
||||
createdAt?: true
|
||||
@@ -71,6 +75,7 @@ export type CredentialMaxAggregateInputType = {
|
||||
id?: true
|
||||
name?: true
|
||||
notes?: true
|
||||
subCredentialOfId?: true
|
||||
typeId?: true
|
||||
companyId?: true
|
||||
createdAt?: true
|
||||
@@ -81,6 +86,7 @@ export type CredentialCountAggregateInputType = {
|
||||
id?: true
|
||||
name?: true
|
||||
notes?: true
|
||||
subCredentialOfId?: true
|
||||
typeId?: true
|
||||
fields?: true
|
||||
companyId?: true
|
||||
@@ -165,6 +171,7 @@ export type CredentialGroupByOutputType = {
|
||||
id: string
|
||||
name: string
|
||||
notes: string | null
|
||||
subCredentialOfId: string | null
|
||||
typeId: string
|
||||
fields: runtime.JsonValue
|
||||
companyId: string
|
||||
@@ -197,11 +204,14 @@ export type CredentialWhereInput = {
|
||||
id?: Prisma.StringFilter<"Credential"> | string
|
||||
name?: Prisma.StringFilter<"Credential"> | string
|
||||
notes?: Prisma.StringNullableFilter<"Credential"> | string | null
|
||||
subCredentialOfId?: Prisma.StringNullableFilter<"Credential"> | string | null
|
||||
typeId?: Prisma.StringFilter<"Credential"> | string
|
||||
fields?: Prisma.JsonFilter<"Credential">
|
||||
companyId?: Prisma.StringFilter<"Credential"> | string
|
||||
createdAt?: Prisma.DateTimeFilter<"Credential"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"Credential"> | Date | string
|
||||
subCredentialOf?: Prisma.XOR<Prisma.CredentialNullableScalarRelationFilter, Prisma.CredentialWhereInput> | null
|
||||
subCredentials?: Prisma.CredentialListRelationFilter
|
||||
type?: Prisma.XOR<Prisma.CredentialTypeScalarRelationFilter, Prisma.CredentialTypeWhereInput>
|
||||
company?: Prisma.XOR<Prisma.CompanyScalarRelationFilter, Prisma.CompanyWhereInput>
|
||||
securevalues?: Prisma.SecureValueListRelationFilter
|
||||
@@ -211,11 +221,14 @@ export type CredentialOrderByWithRelationInput = {
|
||||
id?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
notes?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
subCredentialOfId?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
typeId?: Prisma.SortOrder
|
||||
fields?: Prisma.SortOrder
|
||||
companyId?: Prisma.SortOrder
|
||||
createdAt?: Prisma.SortOrder
|
||||
updatedAt?: Prisma.SortOrder
|
||||
subCredentialOf?: Prisma.CredentialOrderByWithRelationInput
|
||||
subCredentials?: Prisma.CredentialOrderByRelationAggregateInput
|
||||
type?: Prisma.CredentialTypeOrderByWithRelationInput
|
||||
company?: Prisma.CompanyOrderByWithRelationInput
|
||||
securevalues?: Prisma.SecureValueOrderByRelationAggregateInput
|
||||
@@ -228,11 +241,14 @@ export type CredentialWhereUniqueInput = Prisma.AtLeast<{
|
||||
NOT?: Prisma.CredentialWhereInput | Prisma.CredentialWhereInput[]
|
||||
name?: Prisma.StringFilter<"Credential"> | string
|
||||
notes?: Prisma.StringNullableFilter<"Credential"> | string | null
|
||||
subCredentialOfId?: Prisma.StringNullableFilter<"Credential"> | string | null
|
||||
typeId?: Prisma.StringFilter<"Credential"> | string
|
||||
fields?: Prisma.JsonFilter<"Credential">
|
||||
companyId?: Prisma.StringFilter<"Credential"> | string
|
||||
createdAt?: Prisma.DateTimeFilter<"Credential"> | Date | string
|
||||
updatedAt?: Prisma.DateTimeFilter<"Credential"> | Date | string
|
||||
subCredentialOf?: Prisma.XOR<Prisma.CredentialNullableScalarRelationFilter, Prisma.CredentialWhereInput> | null
|
||||
subCredentials?: Prisma.CredentialListRelationFilter
|
||||
type?: Prisma.XOR<Prisma.CredentialTypeScalarRelationFilter, Prisma.CredentialTypeWhereInput>
|
||||
company?: Prisma.XOR<Prisma.CompanyScalarRelationFilter, Prisma.CompanyWhereInput>
|
||||
securevalues?: Prisma.SecureValueListRelationFilter
|
||||
@@ -242,6 +258,7 @@ export type CredentialOrderByWithAggregationInput = {
|
||||
id?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
notes?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
subCredentialOfId?: Prisma.SortOrderInput | Prisma.SortOrder
|
||||
typeId?: Prisma.SortOrder
|
||||
fields?: Prisma.SortOrder
|
||||
companyId?: Prisma.SortOrder
|
||||
@@ -259,6 +276,7 @@ export type CredentialScalarWhereWithAggregatesInput = {
|
||||
id?: Prisma.StringWithAggregatesFilter<"Credential"> | string
|
||||
name?: Prisma.StringWithAggregatesFilter<"Credential"> | string
|
||||
notes?: Prisma.StringNullableWithAggregatesFilter<"Credential"> | string | null
|
||||
subCredentialOfId?: Prisma.StringNullableWithAggregatesFilter<"Credential"> | string | null
|
||||
typeId?: Prisma.StringWithAggregatesFilter<"Credential"> | string
|
||||
fields?: Prisma.JsonWithAggregatesFilter<"Credential">
|
||||
companyId?: Prisma.StringWithAggregatesFilter<"Credential"> | string
|
||||
@@ -273,6 +291,8 @@ export type CredentialCreateInput = {
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentialOf?: Prisma.CredentialCreateNestedOneWithoutSubCredentialsInput
|
||||
subCredentials?: Prisma.CredentialCreateNestedManyWithoutSubCredentialOfInput
|
||||
type: Prisma.CredentialTypeCreateNestedOneWithoutCredentialsInput
|
||||
company: Prisma.CompanyCreateNestedOneWithoutCredentialsInput
|
||||
securevalues?: Prisma.SecureValueCreateNestedManyWithoutCredentialInput
|
||||
@@ -282,11 +302,13 @@ export type CredentialUncheckedCreateInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
subCredentialOfId?: string | null
|
||||
typeId: string
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedCreateNestedManyWithoutSubCredentialOfInput
|
||||
securevalues?: Prisma.SecureValueUncheckedCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
|
||||
@@ -297,6 +319,8 @@ export type CredentialUpdateInput = {
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentialOf?: Prisma.CredentialUpdateOneWithoutSubCredentialsNestedInput
|
||||
subCredentials?: Prisma.CredentialUpdateManyWithoutSubCredentialOfNestedInput
|
||||
type?: Prisma.CredentialTypeUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
company?: Prisma.CompanyUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
securevalues?: Prisma.SecureValueUpdateManyWithoutCredentialNestedInput
|
||||
@@ -306,11 +330,13 @@ export type CredentialUncheckedUpdateInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
subCredentialOfId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
typeId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedUpdateManyWithoutSubCredentialOfNestedInput
|
||||
securevalues?: Prisma.SecureValueUncheckedUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
|
||||
@@ -318,6 +344,7 @@ export type CredentialCreateManyInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
subCredentialOfId?: string | null
|
||||
typeId: string
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId: string
|
||||
@@ -338,6 +365,7 @@ export type CredentialUncheckedUpdateManyInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
subCredentialOfId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
typeId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
@@ -360,10 +388,16 @@ export type CredentialScalarRelationFilter = {
|
||||
isNot?: Prisma.CredentialWhereInput
|
||||
}
|
||||
|
||||
export type CredentialNullableScalarRelationFilter = {
|
||||
is?: Prisma.CredentialWhereInput | null
|
||||
isNot?: Prisma.CredentialWhereInput | null
|
||||
}
|
||||
|
||||
export type CredentialCountOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
notes?: Prisma.SortOrder
|
||||
subCredentialOfId?: Prisma.SortOrder
|
||||
typeId?: Prisma.SortOrder
|
||||
fields?: Prisma.SortOrder
|
||||
companyId?: Prisma.SortOrder
|
||||
@@ -375,6 +409,7 @@ export type CredentialMaxOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
notes?: Prisma.SortOrder
|
||||
subCredentialOfId?: Prisma.SortOrder
|
||||
typeId?: Prisma.SortOrder
|
||||
companyId?: Prisma.SortOrder
|
||||
createdAt?: Prisma.SortOrder
|
||||
@@ -385,6 +420,7 @@ export type CredentialMinOrderByAggregateInput = {
|
||||
id?: Prisma.SortOrder
|
||||
name?: Prisma.SortOrder
|
||||
notes?: Prisma.SortOrder
|
||||
subCredentialOfId?: Prisma.SortOrder
|
||||
typeId?: Prisma.SortOrder
|
||||
companyId?: Prisma.SortOrder
|
||||
createdAt?: Prisma.SortOrder
|
||||
@@ -489,6 +525,64 @@ export type CredentialUpdateOneRequiredWithoutSecurevaluesNestedInput = {
|
||||
update?: Prisma.XOR<Prisma.XOR<Prisma.CredentialUpdateToOneWithWhereWithoutSecurevaluesInput, Prisma.CredentialUpdateWithoutSecurevaluesInput>, Prisma.CredentialUncheckedUpdateWithoutSecurevaluesInput>
|
||||
}
|
||||
|
||||
export type CredentialCreateNestedOneWithoutSubCredentialsInput = {
|
||||
create?: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialsInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialsInput>
|
||||
connectOrCreate?: Prisma.CredentialCreateOrConnectWithoutSubCredentialsInput
|
||||
connect?: Prisma.CredentialWhereUniqueInput
|
||||
}
|
||||
|
||||
export type CredentialCreateNestedManyWithoutSubCredentialOfInput = {
|
||||
create?: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialOfInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput> | Prisma.CredentialCreateWithoutSubCredentialOfInput[] | Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput[]
|
||||
connectOrCreate?: Prisma.CredentialCreateOrConnectWithoutSubCredentialOfInput | Prisma.CredentialCreateOrConnectWithoutSubCredentialOfInput[]
|
||||
createMany?: Prisma.CredentialCreateManySubCredentialOfInputEnvelope
|
||||
connect?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
}
|
||||
|
||||
export type CredentialUncheckedCreateNestedManyWithoutSubCredentialOfInput = {
|
||||
create?: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialOfInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput> | Prisma.CredentialCreateWithoutSubCredentialOfInput[] | Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput[]
|
||||
connectOrCreate?: Prisma.CredentialCreateOrConnectWithoutSubCredentialOfInput | Prisma.CredentialCreateOrConnectWithoutSubCredentialOfInput[]
|
||||
createMany?: Prisma.CredentialCreateManySubCredentialOfInputEnvelope
|
||||
connect?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
}
|
||||
|
||||
export type CredentialUpdateOneWithoutSubCredentialsNestedInput = {
|
||||
create?: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialsInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialsInput>
|
||||
connectOrCreate?: Prisma.CredentialCreateOrConnectWithoutSubCredentialsInput
|
||||
upsert?: Prisma.CredentialUpsertWithoutSubCredentialsInput
|
||||
disconnect?: Prisma.CredentialWhereInput | boolean
|
||||
delete?: Prisma.CredentialWhereInput | boolean
|
||||
connect?: Prisma.CredentialWhereUniqueInput
|
||||
update?: Prisma.XOR<Prisma.XOR<Prisma.CredentialUpdateToOneWithWhereWithoutSubCredentialsInput, Prisma.CredentialUpdateWithoutSubCredentialsInput>, Prisma.CredentialUncheckedUpdateWithoutSubCredentialsInput>
|
||||
}
|
||||
|
||||
export type CredentialUpdateManyWithoutSubCredentialOfNestedInput = {
|
||||
create?: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialOfInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput> | Prisma.CredentialCreateWithoutSubCredentialOfInput[] | Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput[]
|
||||
connectOrCreate?: Prisma.CredentialCreateOrConnectWithoutSubCredentialOfInput | Prisma.CredentialCreateOrConnectWithoutSubCredentialOfInput[]
|
||||
upsert?: Prisma.CredentialUpsertWithWhereUniqueWithoutSubCredentialOfInput | Prisma.CredentialUpsertWithWhereUniqueWithoutSubCredentialOfInput[]
|
||||
createMany?: Prisma.CredentialCreateManySubCredentialOfInputEnvelope
|
||||
set?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
disconnect?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
delete?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
connect?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
update?: Prisma.CredentialUpdateWithWhereUniqueWithoutSubCredentialOfInput | Prisma.CredentialUpdateWithWhereUniqueWithoutSubCredentialOfInput[]
|
||||
updateMany?: Prisma.CredentialUpdateManyWithWhereWithoutSubCredentialOfInput | Prisma.CredentialUpdateManyWithWhereWithoutSubCredentialOfInput[]
|
||||
deleteMany?: Prisma.CredentialScalarWhereInput | Prisma.CredentialScalarWhereInput[]
|
||||
}
|
||||
|
||||
export type CredentialUncheckedUpdateManyWithoutSubCredentialOfNestedInput = {
|
||||
create?: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialOfInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput> | Prisma.CredentialCreateWithoutSubCredentialOfInput[] | Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput[]
|
||||
connectOrCreate?: Prisma.CredentialCreateOrConnectWithoutSubCredentialOfInput | Prisma.CredentialCreateOrConnectWithoutSubCredentialOfInput[]
|
||||
upsert?: Prisma.CredentialUpsertWithWhereUniqueWithoutSubCredentialOfInput | Prisma.CredentialUpsertWithWhereUniqueWithoutSubCredentialOfInput[]
|
||||
createMany?: Prisma.CredentialCreateManySubCredentialOfInputEnvelope
|
||||
set?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
disconnect?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
delete?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
connect?: Prisma.CredentialWhereUniqueInput | Prisma.CredentialWhereUniqueInput[]
|
||||
update?: Prisma.CredentialUpdateWithWhereUniqueWithoutSubCredentialOfInput | Prisma.CredentialUpdateWithWhereUniqueWithoutSubCredentialOfInput[]
|
||||
updateMany?: Prisma.CredentialUpdateManyWithWhereWithoutSubCredentialOfInput | Prisma.CredentialUpdateManyWithWhereWithoutSubCredentialOfInput[]
|
||||
deleteMany?: Prisma.CredentialScalarWhereInput | Prisma.CredentialScalarWhereInput[]
|
||||
}
|
||||
|
||||
export type CredentialCreateWithoutCompanyInput = {
|
||||
id?: string
|
||||
name: string
|
||||
@@ -496,6 +590,8 @@ export type CredentialCreateWithoutCompanyInput = {
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentialOf?: Prisma.CredentialCreateNestedOneWithoutSubCredentialsInput
|
||||
subCredentials?: Prisma.CredentialCreateNestedManyWithoutSubCredentialOfInput
|
||||
type: Prisma.CredentialTypeCreateNestedOneWithoutCredentialsInput
|
||||
securevalues?: Prisma.SecureValueCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
@@ -504,10 +600,12 @@ export type CredentialUncheckedCreateWithoutCompanyInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
subCredentialOfId?: string | null
|
||||
typeId: string
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedCreateNestedManyWithoutSubCredentialOfInput
|
||||
securevalues?: Prisma.SecureValueUncheckedCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
|
||||
@@ -544,6 +642,7 @@ export type CredentialScalarWhereInput = {
|
||||
id?: Prisma.StringFilter<"Credential"> | string
|
||||
name?: Prisma.StringFilter<"Credential"> | string
|
||||
notes?: Prisma.StringNullableFilter<"Credential"> | string | null
|
||||
subCredentialOfId?: Prisma.StringNullableFilter<"Credential"> | string | null
|
||||
typeId?: Prisma.StringFilter<"Credential"> | string
|
||||
fields?: Prisma.JsonFilter<"Credential">
|
||||
companyId?: Prisma.StringFilter<"Credential"> | string
|
||||
@@ -558,6 +657,8 @@ export type CredentialCreateWithoutTypeInput = {
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentialOf?: Prisma.CredentialCreateNestedOneWithoutSubCredentialsInput
|
||||
subCredentials?: Prisma.CredentialCreateNestedManyWithoutSubCredentialOfInput
|
||||
company: Prisma.CompanyCreateNestedOneWithoutCredentialsInput
|
||||
securevalues?: Prisma.SecureValueCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
@@ -566,10 +667,12 @@ export type CredentialUncheckedCreateWithoutTypeInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
subCredentialOfId?: string | null
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedCreateNestedManyWithoutSubCredentialOfInput
|
||||
securevalues?: Prisma.SecureValueUncheckedCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
|
||||
@@ -606,6 +709,8 @@ export type CredentialCreateWithoutSecurevaluesInput = {
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentialOf?: Prisma.CredentialCreateNestedOneWithoutSubCredentialsInput
|
||||
subCredentials?: Prisma.CredentialCreateNestedManyWithoutSubCredentialOfInput
|
||||
type: Prisma.CredentialTypeCreateNestedOneWithoutCredentialsInput
|
||||
company: Prisma.CompanyCreateNestedOneWithoutCredentialsInput
|
||||
}
|
||||
@@ -614,11 +719,13 @@ export type CredentialUncheckedCreateWithoutSecurevaluesInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
subCredentialOfId?: string | null
|
||||
typeId: string
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedCreateNestedManyWithoutSubCredentialOfInput
|
||||
}
|
||||
|
||||
export type CredentialCreateOrConnectWithoutSecurevaluesInput = {
|
||||
@@ -644,6 +751,8 @@ export type CredentialUpdateWithoutSecurevaluesInput = {
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentialOf?: Prisma.CredentialUpdateOneWithoutSubCredentialsNestedInput
|
||||
subCredentials?: Prisma.CredentialUpdateManyWithoutSubCredentialOfNestedInput
|
||||
type?: Prisma.CredentialTypeUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
company?: Prisma.CompanyUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
}
|
||||
@@ -652,17 +761,140 @@ export type CredentialUncheckedUpdateWithoutSecurevaluesInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
subCredentialOfId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
typeId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedUpdateManyWithoutSubCredentialOfNestedInput
|
||||
}
|
||||
|
||||
export type CredentialCreateWithoutSubCredentialsInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentialOf?: Prisma.CredentialCreateNestedOneWithoutSubCredentialsInput
|
||||
type: Prisma.CredentialTypeCreateNestedOneWithoutCredentialsInput
|
||||
company: Prisma.CompanyCreateNestedOneWithoutCredentialsInput
|
||||
securevalues?: Prisma.SecureValueCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
|
||||
export type CredentialUncheckedCreateWithoutSubCredentialsInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
subCredentialOfId?: string | null
|
||||
typeId: string
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
securevalues?: Prisma.SecureValueUncheckedCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
|
||||
export type CredentialCreateOrConnectWithoutSubCredentialsInput = {
|
||||
where: Prisma.CredentialWhereUniqueInput
|
||||
create: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialsInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialsInput>
|
||||
}
|
||||
|
||||
export type CredentialCreateWithoutSubCredentialOfInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentials?: Prisma.CredentialCreateNestedManyWithoutSubCredentialOfInput
|
||||
type: Prisma.CredentialTypeCreateNestedOneWithoutCredentialsInput
|
||||
company: Prisma.CompanyCreateNestedOneWithoutCredentialsInput
|
||||
securevalues?: Prisma.SecureValueCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
|
||||
export type CredentialUncheckedCreateWithoutSubCredentialOfInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
typeId: string
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedCreateNestedManyWithoutSubCredentialOfInput
|
||||
securevalues?: Prisma.SecureValueUncheckedCreateNestedManyWithoutCredentialInput
|
||||
}
|
||||
|
||||
export type CredentialCreateOrConnectWithoutSubCredentialOfInput = {
|
||||
where: Prisma.CredentialWhereUniqueInput
|
||||
create: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialOfInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput>
|
||||
}
|
||||
|
||||
export type CredentialCreateManySubCredentialOfInputEnvelope = {
|
||||
data: Prisma.CredentialCreateManySubCredentialOfInput | Prisma.CredentialCreateManySubCredentialOfInput[]
|
||||
skipDuplicates?: boolean
|
||||
}
|
||||
|
||||
export type CredentialUpsertWithoutSubCredentialsInput = {
|
||||
update: Prisma.XOR<Prisma.CredentialUpdateWithoutSubCredentialsInput, Prisma.CredentialUncheckedUpdateWithoutSubCredentialsInput>
|
||||
create: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialsInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialsInput>
|
||||
where?: Prisma.CredentialWhereInput
|
||||
}
|
||||
|
||||
export type CredentialUpdateToOneWithWhereWithoutSubCredentialsInput = {
|
||||
where?: Prisma.CredentialWhereInput
|
||||
data: Prisma.XOR<Prisma.CredentialUpdateWithoutSubCredentialsInput, Prisma.CredentialUncheckedUpdateWithoutSubCredentialsInput>
|
||||
}
|
||||
|
||||
export type CredentialUpdateWithoutSubCredentialsInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentialOf?: Prisma.CredentialUpdateOneWithoutSubCredentialsNestedInput
|
||||
type?: Prisma.CredentialTypeUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
company?: Prisma.CompanyUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
securevalues?: Prisma.SecureValueUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
|
||||
export type CredentialUncheckedUpdateWithoutSubCredentialsInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
subCredentialOfId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
typeId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
securevalues?: Prisma.SecureValueUncheckedUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
|
||||
export type CredentialUpsertWithWhereUniqueWithoutSubCredentialOfInput = {
|
||||
where: Prisma.CredentialWhereUniqueInput
|
||||
update: Prisma.XOR<Prisma.CredentialUpdateWithoutSubCredentialOfInput, Prisma.CredentialUncheckedUpdateWithoutSubCredentialOfInput>
|
||||
create: Prisma.XOR<Prisma.CredentialCreateWithoutSubCredentialOfInput, Prisma.CredentialUncheckedCreateWithoutSubCredentialOfInput>
|
||||
}
|
||||
|
||||
export type CredentialUpdateWithWhereUniqueWithoutSubCredentialOfInput = {
|
||||
where: Prisma.CredentialWhereUniqueInput
|
||||
data: Prisma.XOR<Prisma.CredentialUpdateWithoutSubCredentialOfInput, Prisma.CredentialUncheckedUpdateWithoutSubCredentialOfInput>
|
||||
}
|
||||
|
||||
export type CredentialUpdateManyWithWhereWithoutSubCredentialOfInput = {
|
||||
where: Prisma.CredentialScalarWhereInput
|
||||
data: Prisma.XOR<Prisma.CredentialUpdateManyMutationInput, Prisma.CredentialUncheckedUpdateManyWithoutSubCredentialOfInput>
|
||||
}
|
||||
|
||||
export type CredentialCreateManyCompanyInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
subCredentialOfId?: string | null
|
||||
typeId: string
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Date | string
|
||||
@@ -676,6 +908,8 @@ export type CredentialUpdateWithoutCompanyInput = {
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentialOf?: Prisma.CredentialUpdateOneWithoutSubCredentialsNestedInput
|
||||
subCredentials?: Prisma.CredentialUpdateManyWithoutSubCredentialOfNestedInput
|
||||
type?: Prisma.CredentialTypeUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
securevalues?: Prisma.SecureValueUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
@@ -684,10 +918,12 @@ export type CredentialUncheckedUpdateWithoutCompanyInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
subCredentialOfId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
typeId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedUpdateManyWithoutSubCredentialOfNestedInput
|
||||
securevalues?: Prisma.SecureValueUncheckedUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
|
||||
@@ -695,6 +931,7 @@ export type CredentialUncheckedUpdateManyWithoutCompanyInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
subCredentialOfId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
typeId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -705,6 +942,7 @@ export type CredentialCreateManyTypeInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
subCredentialOfId?: string | null
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId: string
|
||||
createdAt?: Date | string
|
||||
@@ -718,6 +956,8 @@ export type CredentialUpdateWithoutTypeInput = {
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentialOf?: Prisma.CredentialUpdateOneWithoutSubCredentialsNestedInput
|
||||
subCredentials?: Prisma.CredentialUpdateManyWithoutSubCredentialOfNestedInput
|
||||
company?: Prisma.CompanyUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
securevalues?: Prisma.SecureValueUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
@@ -726,10 +966,12 @@ export type CredentialUncheckedUpdateWithoutTypeInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
subCredentialOfId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedUpdateManyWithoutSubCredentialOfNestedInput
|
||||
securevalues?: Prisma.SecureValueUncheckedUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
|
||||
@@ -737,6 +979,55 @@ export type CredentialUncheckedUpdateManyWithoutTypeInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
subCredentialOfId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
}
|
||||
|
||||
export type CredentialCreateManySubCredentialOfInput = {
|
||||
id?: string
|
||||
name: string
|
||||
notes?: string | null
|
||||
typeId: string
|
||||
fields: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId: string
|
||||
createdAt?: Date | string
|
||||
updatedAt?: Date | string
|
||||
}
|
||||
|
||||
export type CredentialUpdateWithoutSubCredentialOfInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentials?: Prisma.CredentialUpdateManyWithoutSubCredentialOfNestedInput
|
||||
type?: Prisma.CredentialTypeUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
company?: Prisma.CompanyUpdateOneRequiredWithoutCredentialsNestedInput
|
||||
securevalues?: Prisma.SecureValueUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
|
||||
export type CredentialUncheckedUpdateWithoutSubCredentialOfInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
typeId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
subCredentials?: Prisma.CredentialUncheckedUpdateManyWithoutSubCredentialOfNestedInput
|
||||
securevalues?: Prisma.SecureValueUncheckedUpdateManyWithoutCredentialNestedInput
|
||||
}
|
||||
|
||||
export type CredentialUncheckedUpdateManyWithoutSubCredentialOfInput = {
|
||||
id?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
name?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
||||
typeId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
fields?: Prisma.JsonNullValueInput | runtime.InputJsonValue
|
||||
companyId?: Prisma.StringFieldUpdateOperationsInput | string
|
||||
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
||||
@@ -749,10 +1040,12 @@ export type CredentialUncheckedUpdateManyWithoutTypeInput = {
|
||||
*/
|
||||
|
||||
export type CredentialCountOutputType = {
|
||||
subCredentials: number
|
||||
securevalues: number
|
||||
}
|
||||
|
||||
export type CredentialCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
subCredentials?: boolean | CredentialCountOutputTypeCountSubCredentialsArgs
|
||||
securevalues?: boolean | CredentialCountOutputTypeCountSecurevaluesArgs
|
||||
}
|
||||
|
||||
@@ -766,6 +1059,13 @@ export type CredentialCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.E
|
||||
select?: Prisma.CredentialCountOutputTypeSelect<ExtArgs> | null
|
||||
}
|
||||
|
||||
/**
|
||||
* CredentialCountOutputType without action
|
||||
*/
|
||||
export type CredentialCountOutputTypeCountSubCredentialsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
where?: Prisma.CredentialWhereInput
|
||||
}
|
||||
|
||||
/**
|
||||
* CredentialCountOutputType without action
|
||||
*/
|
||||
@@ -778,11 +1078,14 @@ export type CredentialSelect<ExtArgs extends runtime.Types.Extensions.InternalAr
|
||||
id?: boolean
|
||||
name?: boolean
|
||||
notes?: boolean
|
||||
subCredentialOfId?: boolean
|
||||
typeId?: boolean
|
||||
fields?: boolean
|
||||
companyId?: boolean
|
||||
createdAt?: boolean
|
||||
updatedAt?: boolean
|
||||
subCredentialOf?: boolean | Prisma.Credential$subCredentialOfArgs<ExtArgs>
|
||||
subCredentials?: boolean | Prisma.Credential$subCredentialsArgs<ExtArgs>
|
||||
type?: boolean | Prisma.CredentialTypeDefaultArgs<ExtArgs>
|
||||
company?: boolean | Prisma.CompanyDefaultArgs<ExtArgs>
|
||||
securevalues?: boolean | Prisma.Credential$securevaluesArgs<ExtArgs>
|
||||
@@ -793,11 +1096,13 @@ export type CredentialSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
||||
id?: boolean
|
||||
name?: boolean
|
||||
notes?: boolean
|
||||
subCredentialOfId?: boolean
|
||||
typeId?: boolean
|
||||
fields?: boolean
|
||||
companyId?: boolean
|
||||
createdAt?: boolean
|
||||
updatedAt?: boolean
|
||||
subCredentialOf?: boolean | Prisma.Credential$subCredentialOfArgs<ExtArgs>
|
||||
type?: boolean | Prisma.CredentialTypeDefaultArgs<ExtArgs>
|
||||
company?: boolean | Prisma.CompanyDefaultArgs<ExtArgs>
|
||||
}, ExtArgs["result"]["credential"]>
|
||||
@@ -806,11 +1111,13 @@ export type CredentialSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
||||
id?: boolean
|
||||
name?: boolean
|
||||
notes?: boolean
|
||||
subCredentialOfId?: boolean
|
||||
typeId?: boolean
|
||||
fields?: boolean
|
||||
companyId?: boolean
|
||||
createdAt?: boolean
|
||||
updatedAt?: boolean
|
||||
subCredentialOf?: boolean | Prisma.Credential$subCredentialOfArgs<ExtArgs>
|
||||
type?: boolean | Prisma.CredentialTypeDefaultArgs<ExtArgs>
|
||||
company?: boolean | Prisma.CompanyDefaultArgs<ExtArgs>
|
||||
}, ExtArgs["result"]["credential"]>
|
||||
@@ -819,6 +1126,7 @@ export type CredentialSelectScalar = {
|
||||
id?: boolean
|
||||
name?: boolean
|
||||
notes?: boolean
|
||||
subCredentialOfId?: boolean
|
||||
typeId?: boolean
|
||||
fields?: boolean
|
||||
companyId?: boolean
|
||||
@@ -826,18 +1134,22 @@ export type CredentialSelectScalar = {
|
||||
updatedAt?: boolean
|
||||
}
|
||||
|
||||
export type CredentialOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "notes" | "typeId" | "fields" | "companyId" | "createdAt" | "updatedAt", ExtArgs["result"]["credential"]>
|
||||
export type CredentialOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "notes" | "subCredentialOfId" | "typeId" | "fields" | "companyId" | "createdAt" | "updatedAt", ExtArgs["result"]["credential"]>
|
||||
export type CredentialInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
subCredentialOf?: boolean | Prisma.Credential$subCredentialOfArgs<ExtArgs>
|
||||
subCredentials?: boolean | Prisma.Credential$subCredentialsArgs<ExtArgs>
|
||||
type?: boolean | Prisma.CredentialTypeDefaultArgs<ExtArgs>
|
||||
company?: boolean | Prisma.CompanyDefaultArgs<ExtArgs>
|
||||
securevalues?: boolean | Prisma.Credential$securevaluesArgs<ExtArgs>
|
||||
_count?: boolean | Prisma.CredentialCountOutputTypeDefaultArgs<ExtArgs>
|
||||
}
|
||||
export type CredentialIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
subCredentialOf?: boolean | Prisma.Credential$subCredentialOfArgs<ExtArgs>
|
||||
type?: boolean | Prisma.CredentialTypeDefaultArgs<ExtArgs>
|
||||
company?: boolean | Prisma.CompanyDefaultArgs<ExtArgs>
|
||||
}
|
||||
export type CredentialIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
subCredentialOf?: boolean | Prisma.Credential$subCredentialOfArgs<ExtArgs>
|
||||
type?: boolean | Prisma.CredentialTypeDefaultArgs<ExtArgs>
|
||||
company?: boolean | Prisma.CompanyDefaultArgs<ExtArgs>
|
||||
}
|
||||
@@ -845,6 +1157,8 @@ export type CredentialIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.E
|
||||
export type $CredentialPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
name: "Credential"
|
||||
objects: {
|
||||
subCredentialOf: Prisma.$CredentialPayload<ExtArgs> | null
|
||||
subCredentials: Prisma.$CredentialPayload<ExtArgs>[]
|
||||
type: Prisma.$CredentialTypePayload<ExtArgs>
|
||||
company: Prisma.$CompanyPayload<ExtArgs>
|
||||
securevalues: Prisma.$SecureValuePayload<ExtArgs>[]
|
||||
@@ -853,6 +1167,7 @@ export type $CredentialPayload<ExtArgs extends runtime.Types.Extensions.Internal
|
||||
id: string
|
||||
name: string
|
||||
notes: string | null
|
||||
subCredentialOfId: string | null
|
||||
typeId: string
|
||||
fields: runtime.JsonValue
|
||||
companyId: string
|
||||
@@ -1252,6 +1567,8 @@ readonly fields: CredentialFieldRefs;
|
||||
*/
|
||||
export interface Prisma__CredentialClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
||||
readonly [Symbol.toStringTag]: "PrismaPromise"
|
||||
subCredentialOf<T extends Prisma.Credential$subCredentialOfArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Credential$subCredentialOfArgs<ExtArgs>>): Prisma.Prisma__CredentialClient<runtime.Types.Result.GetResult<Prisma.$CredentialPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
||||
subCredentials<T extends Prisma.Credential$subCredentialsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Credential$subCredentialsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$CredentialPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
||||
type<T extends Prisma.CredentialTypeDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.CredentialTypeDefaultArgs<ExtArgs>>): Prisma.Prisma__CredentialTypeClient<runtime.Types.Result.GetResult<Prisma.$CredentialTypePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
||||
company<T extends Prisma.CompanyDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.CompanyDefaultArgs<ExtArgs>>): Prisma.Prisma__CompanyClient<runtime.Types.Result.GetResult<Prisma.$CompanyPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
||||
securevalues<T extends Prisma.Credential$securevaluesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Credential$securevaluesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SecureValuePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
||||
@@ -1287,6 +1604,7 @@ export interface CredentialFieldRefs {
|
||||
readonly id: Prisma.FieldRef<"Credential", 'String'>
|
||||
readonly name: Prisma.FieldRef<"Credential", 'String'>
|
||||
readonly notes: Prisma.FieldRef<"Credential", 'String'>
|
||||
readonly subCredentialOfId: Prisma.FieldRef<"Credential", 'String'>
|
||||
readonly typeId: Prisma.FieldRef<"Credential", 'String'>
|
||||
readonly fields: Prisma.FieldRef<"Credential", 'Json'>
|
||||
readonly companyId: Prisma.FieldRef<"Credential", 'String'>
|
||||
@@ -1687,6 +2005,49 @@ export type CredentialDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.In
|
||||
limit?: number
|
||||
}
|
||||
|
||||
/**
|
||||
* Credential.subCredentialOf
|
||||
*/
|
||||
export type Credential$subCredentialOfArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
/**
|
||||
* Select specific fields to fetch from the Credential
|
||||
*/
|
||||
select?: Prisma.CredentialSelect<ExtArgs> | null
|
||||
/**
|
||||
* Omit specific fields from the Credential
|
||||
*/
|
||||
omit?: Prisma.CredentialOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CredentialInclude<ExtArgs> | null
|
||||
where?: Prisma.CredentialWhereInput
|
||||
}
|
||||
|
||||
/**
|
||||
* Credential.subCredentials
|
||||
*/
|
||||
export type Credential$subCredentialsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
||||
/**
|
||||
* Select specific fields to fetch from the Credential
|
||||
*/
|
||||
select?: Prisma.CredentialSelect<ExtArgs> | null
|
||||
/**
|
||||
* Omit specific fields from the Credential
|
||||
*/
|
||||
omit?: Prisma.CredentialOmit<ExtArgs> | null
|
||||
/**
|
||||
* Choose, which related nodes to fetch as well
|
||||
*/
|
||||
include?: Prisma.CredentialInclude<ExtArgs> | null
|
||||
where?: Prisma.CredentialWhereInput
|
||||
orderBy?: Prisma.CredentialOrderByWithRelationInput | Prisma.CredentialOrderByWithRelationInput[]
|
||||
cursor?: Prisma.CredentialWhereUniqueInput
|
||||
take?: number
|
||||
skip?: number
|
||||
distinct?: Prisma.CredentialScalarFieldEnum | Prisma.CredentialScalarFieldEnum[]
|
||||
}
|
||||
|
||||
/**
|
||||
* Credential.securevalues
|
||||
*/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user