/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `Deployment` model and its related types. * * 🟢 You can import this file directly. */ import type * as runtime from "@prisma/client/runtime/client" import type * as $Enums from "../enums.ts" import type * as Prisma from "../internal/prismaNamespace.ts" /** * Model Deployment * */ export type DeploymentModel = runtime.Types.Result.DefaultSelection export type AggregateDeployment = { _count: DeploymentCountAggregateOutputType | null _avg: DeploymentAvgAggregateOutputType | null _sum: DeploymentSumAggregateOutputType | null _min: DeploymentMinAggregateOutputType | null _max: DeploymentMaxAggregateOutputType | null } export type DeploymentAvgAggregateOutputType = { id: number | null valid: number | null projectId: number | null pipelineId: number | null } export type DeploymentSumAggregateOutputType = { id: number | null valid: number | null projectId: number | null pipelineId: number | null } export type DeploymentMinAggregateOutputType = { id: number | null branch: string | null env: string | null status: string | null commitHash: string | null commitMessage: string | null buildLog: string | null startedAt: Date | null finishedAt: Date | null valid: number | null createdAt: Date | null updatedAt: Date | null createdBy: string | null updatedBy: string | null projectId: number | null pipelineId: number | null } export type DeploymentMaxAggregateOutputType = { id: number | null branch: string | null env: string | null status: string | null commitHash: string | null commitMessage: string | null buildLog: string | null startedAt: Date | null finishedAt: Date | null valid: number | null createdAt: Date | null updatedAt: Date | null createdBy: string | null updatedBy: string | null projectId: number | null pipelineId: number | null } export type DeploymentCountAggregateOutputType = { id: number branch: number env: number status: number commitHash: number commitMessage: number buildLog: number startedAt: number finishedAt: number valid: number createdAt: number updatedAt: number createdBy: number updatedBy: number projectId: number pipelineId: number _all: number } export type DeploymentAvgAggregateInputType = { id?: true valid?: true projectId?: true pipelineId?: true } export type DeploymentSumAggregateInputType = { id?: true valid?: true projectId?: true pipelineId?: true } export type DeploymentMinAggregateInputType = { id?: true branch?: true env?: true status?: true commitHash?: true commitMessage?: true buildLog?: true startedAt?: true finishedAt?: true valid?: true createdAt?: true updatedAt?: true createdBy?: true updatedBy?: true projectId?: true pipelineId?: true } export type DeploymentMaxAggregateInputType = { id?: true branch?: true env?: true status?: true commitHash?: true commitMessage?: true buildLog?: true startedAt?: true finishedAt?: true valid?: true createdAt?: true updatedAt?: true createdBy?: true updatedBy?: true projectId?: true pipelineId?: true } export type DeploymentCountAggregateInputType = { id?: true branch?: true env?: true status?: true commitHash?: true commitMessage?: true buildLog?: true startedAt?: true finishedAt?: true valid?: true createdAt?: true updatedAt?: true createdBy?: true updatedBy?: true projectId?: true pipelineId?: true _all?: true } export type DeploymentAggregateArgs = { /** * Filter which Deployment to aggregate. */ where?: Prisma.DeploymentWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Deployments to fetch. */ orderBy?: Prisma.DeploymentOrderByWithRelationInput | Prisma.DeploymentOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.DeploymentWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Deployments from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` Deployments. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned Deployments **/ _count?: true | DeploymentCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: DeploymentAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: DeploymentSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: DeploymentMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: DeploymentMaxAggregateInputType } export type GetDeploymentAggregateType = { [P in keyof T & keyof AggregateDeployment]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type DeploymentGroupByArgs = { where?: Prisma.DeploymentWhereInput orderBy?: Prisma.DeploymentOrderByWithAggregationInput | Prisma.DeploymentOrderByWithAggregationInput[] by: Prisma.DeploymentScalarFieldEnum[] | Prisma.DeploymentScalarFieldEnum having?: Prisma.DeploymentScalarWhereWithAggregatesInput take?: number skip?: number _count?: DeploymentCountAggregateInputType | true _avg?: DeploymentAvgAggregateInputType _sum?: DeploymentSumAggregateInputType _min?: DeploymentMinAggregateInputType _max?: DeploymentMaxAggregateInputType } export type DeploymentGroupByOutputType = { id: number branch: string env: string | null status: string commitHash: string | null commitMessage: string | null buildLog: string | null startedAt: Date finishedAt: Date | null valid: number createdAt: Date updatedAt: Date createdBy: string updatedBy: string projectId: number pipelineId: number _count: DeploymentCountAggregateOutputType | null _avg: DeploymentAvgAggregateOutputType | null _sum: DeploymentSumAggregateOutputType | null _min: DeploymentMinAggregateOutputType | null _max: DeploymentMaxAggregateOutputType | null } type GetDeploymentGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof DeploymentGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type DeploymentWhereInput = { AND?: Prisma.DeploymentWhereInput | Prisma.DeploymentWhereInput[] OR?: Prisma.DeploymentWhereInput[] NOT?: Prisma.DeploymentWhereInput | Prisma.DeploymentWhereInput[] id?: Prisma.IntFilter<"Deployment"> | number branch?: Prisma.StringFilter<"Deployment"> | string env?: Prisma.StringNullableFilter<"Deployment"> | string | null status?: Prisma.StringFilter<"Deployment"> | string commitHash?: Prisma.StringNullableFilter<"Deployment"> | string | null commitMessage?: Prisma.StringNullableFilter<"Deployment"> | string | null buildLog?: Prisma.StringNullableFilter<"Deployment"> | string | null startedAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string finishedAt?: Prisma.DateTimeNullableFilter<"Deployment"> | Date | string | null valid?: Prisma.IntFilter<"Deployment"> | number createdAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string createdBy?: Prisma.StringFilter<"Deployment"> | string updatedBy?: Prisma.StringFilter<"Deployment"> | string projectId?: Prisma.IntFilter<"Deployment"> | number pipelineId?: Prisma.IntFilter<"Deployment"> | number Project?: Prisma.XOR | null } export type DeploymentOrderByWithRelationInput = { id?: Prisma.SortOrder branch?: Prisma.SortOrder env?: Prisma.SortOrderInput | Prisma.SortOrder status?: Prisma.SortOrder commitHash?: Prisma.SortOrderInput | Prisma.SortOrder commitMessage?: Prisma.SortOrderInput | Prisma.SortOrder buildLog?: Prisma.SortOrderInput | Prisma.SortOrder startedAt?: Prisma.SortOrder finishedAt?: Prisma.SortOrderInput | Prisma.SortOrder valid?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder createdBy?: Prisma.SortOrder updatedBy?: Prisma.SortOrder projectId?: Prisma.SortOrder pipelineId?: Prisma.SortOrder Project?: Prisma.ProjectOrderByWithRelationInput } export type DeploymentWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.DeploymentWhereInput | Prisma.DeploymentWhereInput[] OR?: Prisma.DeploymentWhereInput[] NOT?: Prisma.DeploymentWhereInput | Prisma.DeploymentWhereInput[] branch?: Prisma.StringFilter<"Deployment"> | string env?: Prisma.StringNullableFilter<"Deployment"> | string | null status?: Prisma.StringFilter<"Deployment"> | string commitHash?: Prisma.StringNullableFilter<"Deployment"> | string | null commitMessage?: Prisma.StringNullableFilter<"Deployment"> | string | null buildLog?: Prisma.StringNullableFilter<"Deployment"> | string | null startedAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string finishedAt?: Prisma.DateTimeNullableFilter<"Deployment"> | Date | string | null valid?: Prisma.IntFilter<"Deployment"> | number createdAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string createdBy?: Prisma.StringFilter<"Deployment"> | string updatedBy?: Prisma.StringFilter<"Deployment"> | string projectId?: Prisma.IntFilter<"Deployment"> | number pipelineId?: Prisma.IntFilter<"Deployment"> | number Project?: Prisma.XOR | null }, "id"> export type DeploymentOrderByWithAggregationInput = { id?: Prisma.SortOrder branch?: Prisma.SortOrder env?: Prisma.SortOrderInput | Prisma.SortOrder status?: Prisma.SortOrder commitHash?: Prisma.SortOrderInput | Prisma.SortOrder commitMessage?: Prisma.SortOrderInput | Prisma.SortOrder buildLog?: Prisma.SortOrderInput | Prisma.SortOrder startedAt?: Prisma.SortOrder finishedAt?: Prisma.SortOrderInput | Prisma.SortOrder valid?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder createdBy?: Prisma.SortOrder updatedBy?: Prisma.SortOrder projectId?: Prisma.SortOrder pipelineId?: Prisma.SortOrder _count?: Prisma.DeploymentCountOrderByAggregateInput _avg?: Prisma.DeploymentAvgOrderByAggregateInput _max?: Prisma.DeploymentMaxOrderByAggregateInput _min?: Prisma.DeploymentMinOrderByAggregateInput _sum?: Prisma.DeploymentSumOrderByAggregateInput } export type DeploymentScalarWhereWithAggregatesInput = { AND?: Prisma.DeploymentScalarWhereWithAggregatesInput | Prisma.DeploymentScalarWhereWithAggregatesInput[] OR?: Prisma.DeploymentScalarWhereWithAggregatesInput[] NOT?: Prisma.DeploymentScalarWhereWithAggregatesInput | Prisma.DeploymentScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"Deployment"> | number branch?: Prisma.StringWithAggregatesFilter<"Deployment"> | string env?: Prisma.StringNullableWithAggregatesFilter<"Deployment"> | string | null status?: Prisma.StringWithAggregatesFilter<"Deployment"> | string commitHash?: Prisma.StringNullableWithAggregatesFilter<"Deployment"> | string | null commitMessage?: Prisma.StringNullableWithAggregatesFilter<"Deployment"> | string | null buildLog?: Prisma.StringNullableWithAggregatesFilter<"Deployment"> | string | null startedAt?: Prisma.DateTimeWithAggregatesFilter<"Deployment"> | Date | string finishedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Deployment"> | Date | string | null valid?: Prisma.IntWithAggregatesFilter<"Deployment"> | number createdAt?: Prisma.DateTimeWithAggregatesFilter<"Deployment"> | Date | string updatedAt?: Prisma.DateTimeWithAggregatesFilter<"Deployment"> | Date | string createdBy?: Prisma.StringWithAggregatesFilter<"Deployment"> | string updatedBy?: Prisma.StringWithAggregatesFilter<"Deployment"> | string projectId?: Prisma.IntWithAggregatesFilter<"Deployment"> | number pipelineId?: Prisma.IntWithAggregatesFilter<"Deployment"> | number } export type DeploymentCreateInput = { branch: string env?: string | null status: string commitHash?: string | null commitMessage?: string | null buildLog?: string | null startedAt?: Date | string finishedAt?: Date | string | null valid?: number createdAt?: Date | string updatedAt?: Date | string createdBy: string updatedBy: string pipelineId: number Project?: Prisma.ProjectCreateNestedOneWithoutDeploymentsInput } export type DeploymentUncheckedCreateInput = { id?: number branch: string env?: string | null status: string commitHash?: string | null commitMessage?: string | null buildLog?: string | null startedAt?: Date | string finishedAt?: Date | string | null valid?: number createdAt?: Date | string updatedAt?: Date | string createdBy: string updatedBy: string projectId: number pipelineId: number } export type DeploymentUpdateInput = { branch?: Prisma.StringFieldUpdateOperationsInput | string env?: Prisma.NullableStringFieldUpdateOperationsInput | string | null status?: Prisma.StringFieldUpdateOperationsInput | string commitHash?: Prisma.NullableStringFieldUpdateOperationsInput | string | null commitMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null buildLog?: Prisma.NullableStringFieldUpdateOperationsInput | string | null startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null valid?: Prisma.IntFieldUpdateOperationsInput | number createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string createdBy?: Prisma.StringFieldUpdateOperationsInput | string updatedBy?: Prisma.StringFieldUpdateOperationsInput | string pipelineId?: Prisma.IntFieldUpdateOperationsInput | number Project?: Prisma.ProjectUpdateOneWithoutDeploymentsNestedInput } export type DeploymentUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number branch?: Prisma.StringFieldUpdateOperationsInput | string env?: Prisma.NullableStringFieldUpdateOperationsInput | string | null status?: Prisma.StringFieldUpdateOperationsInput | string commitHash?: Prisma.NullableStringFieldUpdateOperationsInput | string | null commitMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null buildLog?: Prisma.NullableStringFieldUpdateOperationsInput | string | null startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null valid?: Prisma.IntFieldUpdateOperationsInput | number createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string createdBy?: Prisma.StringFieldUpdateOperationsInput | string updatedBy?: Prisma.StringFieldUpdateOperationsInput | string projectId?: Prisma.IntFieldUpdateOperationsInput | number pipelineId?: Prisma.IntFieldUpdateOperationsInput | number } export type DeploymentCreateManyInput = { id?: number branch: string env?: string | null status: string commitHash?: string | null commitMessage?: string | null buildLog?: string | null startedAt?: Date | string finishedAt?: Date | string | null valid?: number createdAt?: Date | string updatedAt?: Date | string createdBy: string updatedBy: string projectId: number pipelineId: number } export type DeploymentUpdateManyMutationInput = { branch?: Prisma.StringFieldUpdateOperationsInput | string env?: Prisma.NullableStringFieldUpdateOperationsInput | string | null status?: Prisma.StringFieldUpdateOperationsInput | string commitHash?: Prisma.NullableStringFieldUpdateOperationsInput | string | null commitMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null buildLog?: Prisma.NullableStringFieldUpdateOperationsInput | string | null startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null valid?: Prisma.IntFieldUpdateOperationsInput | number createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string createdBy?: Prisma.StringFieldUpdateOperationsInput | string updatedBy?: Prisma.StringFieldUpdateOperationsInput | string pipelineId?: Prisma.IntFieldUpdateOperationsInput | number } export type DeploymentUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number branch?: Prisma.StringFieldUpdateOperationsInput | string env?: Prisma.NullableStringFieldUpdateOperationsInput | string | null status?: Prisma.StringFieldUpdateOperationsInput | string commitHash?: Prisma.NullableStringFieldUpdateOperationsInput | string | null commitMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null buildLog?: Prisma.NullableStringFieldUpdateOperationsInput | string | null startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null valid?: Prisma.IntFieldUpdateOperationsInput | number createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string createdBy?: Prisma.StringFieldUpdateOperationsInput | string updatedBy?: Prisma.StringFieldUpdateOperationsInput | string projectId?: Prisma.IntFieldUpdateOperationsInput | number pipelineId?: Prisma.IntFieldUpdateOperationsInput | number } export type DeploymentListRelationFilter = { every?: Prisma.DeploymentWhereInput some?: Prisma.DeploymentWhereInput none?: Prisma.DeploymentWhereInput } export type DeploymentOrderByRelationAggregateInput = { _count?: Prisma.SortOrder } export type DeploymentCountOrderByAggregateInput = { id?: Prisma.SortOrder branch?: Prisma.SortOrder env?: Prisma.SortOrder status?: Prisma.SortOrder commitHash?: Prisma.SortOrder commitMessage?: Prisma.SortOrder buildLog?: Prisma.SortOrder startedAt?: Prisma.SortOrder finishedAt?: Prisma.SortOrder valid?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder createdBy?: Prisma.SortOrder updatedBy?: Prisma.SortOrder projectId?: Prisma.SortOrder pipelineId?: Prisma.SortOrder } export type DeploymentAvgOrderByAggregateInput = { id?: Prisma.SortOrder valid?: Prisma.SortOrder projectId?: Prisma.SortOrder pipelineId?: Prisma.SortOrder } export type DeploymentMaxOrderByAggregateInput = { id?: Prisma.SortOrder branch?: Prisma.SortOrder env?: Prisma.SortOrder status?: Prisma.SortOrder commitHash?: Prisma.SortOrder commitMessage?: Prisma.SortOrder buildLog?: Prisma.SortOrder startedAt?: Prisma.SortOrder finishedAt?: Prisma.SortOrder valid?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder createdBy?: Prisma.SortOrder updatedBy?: Prisma.SortOrder projectId?: Prisma.SortOrder pipelineId?: Prisma.SortOrder } export type DeploymentMinOrderByAggregateInput = { id?: Prisma.SortOrder branch?: Prisma.SortOrder env?: Prisma.SortOrder status?: Prisma.SortOrder commitHash?: Prisma.SortOrder commitMessage?: Prisma.SortOrder buildLog?: Prisma.SortOrder startedAt?: Prisma.SortOrder finishedAt?: Prisma.SortOrder valid?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder createdBy?: Prisma.SortOrder updatedBy?: Prisma.SortOrder projectId?: Prisma.SortOrder pipelineId?: Prisma.SortOrder } export type DeploymentSumOrderByAggregateInput = { id?: Prisma.SortOrder valid?: Prisma.SortOrder projectId?: Prisma.SortOrder pipelineId?: Prisma.SortOrder } export type DeploymentCreateNestedManyWithoutProjectInput = { create?: Prisma.XOR | Prisma.DeploymentCreateWithoutProjectInput[] | Prisma.DeploymentUncheckedCreateWithoutProjectInput[] connectOrCreate?: Prisma.DeploymentCreateOrConnectWithoutProjectInput | Prisma.DeploymentCreateOrConnectWithoutProjectInput[] createMany?: Prisma.DeploymentCreateManyProjectInputEnvelope connect?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] } export type DeploymentUncheckedCreateNestedManyWithoutProjectInput = { create?: Prisma.XOR | Prisma.DeploymentCreateWithoutProjectInput[] | Prisma.DeploymentUncheckedCreateWithoutProjectInput[] connectOrCreate?: Prisma.DeploymentCreateOrConnectWithoutProjectInput | Prisma.DeploymentCreateOrConnectWithoutProjectInput[] createMany?: Prisma.DeploymentCreateManyProjectInputEnvelope connect?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] } export type DeploymentUpdateManyWithoutProjectNestedInput = { create?: Prisma.XOR | Prisma.DeploymentCreateWithoutProjectInput[] | Prisma.DeploymentUncheckedCreateWithoutProjectInput[] connectOrCreate?: Prisma.DeploymentCreateOrConnectWithoutProjectInput | Prisma.DeploymentCreateOrConnectWithoutProjectInput[] upsert?: Prisma.DeploymentUpsertWithWhereUniqueWithoutProjectInput | Prisma.DeploymentUpsertWithWhereUniqueWithoutProjectInput[] createMany?: Prisma.DeploymentCreateManyProjectInputEnvelope set?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] disconnect?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] delete?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] connect?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] update?: Prisma.DeploymentUpdateWithWhereUniqueWithoutProjectInput | Prisma.DeploymentUpdateWithWhereUniqueWithoutProjectInput[] updateMany?: Prisma.DeploymentUpdateManyWithWhereWithoutProjectInput | Prisma.DeploymentUpdateManyWithWhereWithoutProjectInput[] deleteMany?: Prisma.DeploymentScalarWhereInput | Prisma.DeploymentScalarWhereInput[] } export type DeploymentUncheckedUpdateManyWithoutProjectNestedInput = { create?: Prisma.XOR | Prisma.DeploymentCreateWithoutProjectInput[] | Prisma.DeploymentUncheckedCreateWithoutProjectInput[] connectOrCreate?: Prisma.DeploymentCreateOrConnectWithoutProjectInput | Prisma.DeploymentCreateOrConnectWithoutProjectInput[] upsert?: Prisma.DeploymentUpsertWithWhereUniqueWithoutProjectInput | Prisma.DeploymentUpsertWithWhereUniqueWithoutProjectInput[] createMany?: Prisma.DeploymentCreateManyProjectInputEnvelope set?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] disconnect?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] delete?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] connect?: Prisma.DeploymentWhereUniqueInput | Prisma.DeploymentWhereUniqueInput[] update?: Prisma.DeploymentUpdateWithWhereUniqueWithoutProjectInput | Prisma.DeploymentUpdateWithWhereUniqueWithoutProjectInput[] updateMany?: Prisma.DeploymentUpdateManyWithWhereWithoutProjectInput | Prisma.DeploymentUpdateManyWithWhereWithoutProjectInput[] deleteMany?: Prisma.DeploymentScalarWhereInput | Prisma.DeploymentScalarWhereInput[] } export type NullableDateTimeFieldUpdateOperationsInput = { set?: Date | string | null } export type DeploymentCreateWithoutProjectInput = { branch: string env?: string | null status: string commitHash?: string | null commitMessage?: string | null buildLog?: string | null startedAt?: Date | string finishedAt?: Date | string | null valid?: number createdAt?: Date | string updatedAt?: Date | string createdBy: string updatedBy: string pipelineId: number } export type DeploymentUncheckedCreateWithoutProjectInput = { id?: number branch: string env?: string | null status: string commitHash?: string | null commitMessage?: string | null buildLog?: string | null startedAt?: Date | string finishedAt?: Date | string | null valid?: number createdAt?: Date | string updatedAt?: Date | string createdBy: string updatedBy: string pipelineId: number } export type DeploymentCreateOrConnectWithoutProjectInput = { where: Prisma.DeploymentWhereUniqueInput create: Prisma.XOR } export type DeploymentCreateManyProjectInputEnvelope = { data: Prisma.DeploymentCreateManyProjectInput | Prisma.DeploymentCreateManyProjectInput[] } export type DeploymentUpsertWithWhereUniqueWithoutProjectInput = { where: Prisma.DeploymentWhereUniqueInput update: Prisma.XOR create: Prisma.XOR } export type DeploymentUpdateWithWhereUniqueWithoutProjectInput = { where: Prisma.DeploymentWhereUniqueInput data: Prisma.XOR } export type DeploymentUpdateManyWithWhereWithoutProjectInput = { where: Prisma.DeploymentScalarWhereInput data: Prisma.XOR } export type DeploymentScalarWhereInput = { AND?: Prisma.DeploymentScalarWhereInput | Prisma.DeploymentScalarWhereInput[] OR?: Prisma.DeploymentScalarWhereInput[] NOT?: Prisma.DeploymentScalarWhereInput | Prisma.DeploymentScalarWhereInput[] id?: Prisma.IntFilter<"Deployment"> | number branch?: Prisma.StringFilter<"Deployment"> | string env?: Prisma.StringNullableFilter<"Deployment"> | string | null status?: Prisma.StringFilter<"Deployment"> | string commitHash?: Prisma.StringNullableFilter<"Deployment"> | string | null commitMessage?: Prisma.StringNullableFilter<"Deployment"> | string | null buildLog?: Prisma.StringNullableFilter<"Deployment"> | string | null startedAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string finishedAt?: Prisma.DateTimeNullableFilter<"Deployment"> | Date | string | null valid?: Prisma.IntFilter<"Deployment"> | number createdAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Deployment"> | Date | string createdBy?: Prisma.StringFilter<"Deployment"> | string updatedBy?: Prisma.StringFilter<"Deployment"> | string projectId?: Prisma.IntFilter<"Deployment"> | number pipelineId?: Prisma.IntFilter<"Deployment"> | number } export type DeploymentCreateManyProjectInput = { id?: number branch: string env?: string | null status: string commitHash?: string | null commitMessage?: string | null buildLog?: string | null startedAt?: Date | string finishedAt?: Date | string | null valid?: number createdAt?: Date | string updatedAt?: Date | string createdBy: string updatedBy: string pipelineId: number } export type DeploymentUpdateWithoutProjectInput = { branch?: Prisma.StringFieldUpdateOperationsInput | string env?: Prisma.NullableStringFieldUpdateOperationsInput | string | null status?: Prisma.StringFieldUpdateOperationsInput | string commitHash?: Prisma.NullableStringFieldUpdateOperationsInput | string | null commitMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null buildLog?: Prisma.NullableStringFieldUpdateOperationsInput | string | null startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null valid?: Prisma.IntFieldUpdateOperationsInput | number createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string createdBy?: Prisma.StringFieldUpdateOperationsInput | string updatedBy?: Prisma.StringFieldUpdateOperationsInput | string pipelineId?: Prisma.IntFieldUpdateOperationsInput | number } export type DeploymentUncheckedUpdateWithoutProjectInput = { id?: Prisma.IntFieldUpdateOperationsInput | number branch?: Prisma.StringFieldUpdateOperationsInput | string env?: Prisma.NullableStringFieldUpdateOperationsInput | string | null status?: Prisma.StringFieldUpdateOperationsInput | string commitHash?: Prisma.NullableStringFieldUpdateOperationsInput | string | null commitMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null buildLog?: Prisma.NullableStringFieldUpdateOperationsInput | string | null startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null valid?: Prisma.IntFieldUpdateOperationsInput | number createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string createdBy?: Prisma.StringFieldUpdateOperationsInput | string updatedBy?: Prisma.StringFieldUpdateOperationsInput | string pipelineId?: Prisma.IntFieldUpdateOperationsInput | number } export type DeploymentUncheckedUpdateManyWithoutProjectInput = { id?: Prisma.IntFieldUpdateOperationsInput | number branch?: Prisma.StringFieldUpdateOperationsInput | string env?: Prisma.NullableStringFieldUpdateOperationsInput | string | null status?: Prisma.StringFieldUpdateOperationsInput | string commitHash?: Prisma.NullableStringFieldUpdateOperationsInput | string | null commitMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null buildLog?: Prisma.NullableStringFieldUpdateOperationsInput | string | null startedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string finishedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null valid?: Prisma.IntFieldUpdateOperationsInput | number createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string createdBy?: Prisma.StringFieldUpdateOperationsInput | string updatedBy?: Prisma.StringFieldUpdateOperationsInput | string pipelineId?: Prisma.IntFieldUpdateOperationsInput | number } export type DeploymentSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean branch?: boolean env?: boolean status?: boolean commitHash?: boolean commitMessage?: boolean buildLog?: boolean startedAt?: boolean finishedAt?: boolean valid?: boolean createdAt?: boolean updatedAt?: boolean createdBy?: boolean updatedBy?: boolean projectId?: boolean pipelineId?: boolean Project?: boolean | Prisma.Deployment$ProjectArgs }, ExtArgs["result"]["deployment"]> export type DeploymentSelectCreateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean branch?: boolean env?: boolean status?: boolean commitHash?: boolean commitMessage?: boolean buildLog?: boolean startedAt?: boolean finishedAt?: boolean valid?: boolean createdAt?: boolean updatedAt?: boolean createdBy?: boolean updatedBy?: boolean projectId?: boolean pipelineId?: boolean Project?: boolean | Prisma.Deployment$ProjectArgs }, ExtArgs["result"]["deployment"]> export type DeploymentSelectUpdateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean branch?: boolean env?: boolean status?: boolean commitHash?: boolean commitMessage?: boolean buildLog?: boolean startedAt?: boolean finishedAt?: boolean valid?: boolean createdAt?: boolean updatedAt?: boolean createdBy?: boolean updatedBy?: boolean projectId?: boolean pipelineId?: boolean Project?: boolean | Prisma.Deployment$ProjectArgs }, ExtArgs["result"]["deployment"]> export type DeploymentSelectScalar = { id?: boolean branch?: boolean env?: boolean status?: boolean commitHash?: boolean commitMessage?: boolean buildLog?: boolean startedAt?: boolean finishedAt?: boolean valid?: boolean createdAt?: boolean updatedAt?: boolean createdBy?: boolean updatedBy?: boolean projectId?: boolean pipelineId?: boolean } export type DeploymentOmit = runtime.Types.Extensions.GetOmit<"id" | "branch" | "env" | "status" | "commitHash" | "commitMessage" | "buildLog" | "startedAt" | "finishedAt" | "valid" | "createdAt" | "updatedAt" | "createdBy" | "updatedBy" | "projectId" | "pipelineId", ExtArgs["result"]["deployment"]> export type DeploymentInclude = { Project?: boolean | Prisma.Deployment$ProjectArgs } export type DeploymentIncludeCreateManyAndReturn = { Project?: boolean | Prisma.Deployment$ProjectArgs } export type DeploymentIncludeUpdateManyAndReturn = { Project?: boolean | Prisma.Deployment$ProjectArgs } export type $DeploymentPayload = { name: "Deployment" objects: { Project: Prisma.$ProjectPayload | null } scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number branch: string env: string | null status: string commitHash: string | null commitMessage: string | null buildLog: string | null startedAt: Date finishedAt: Date | null valid: number createdAt: Date updatedAt: Date createdBy: string updatedBy: string projectId: number pipelineId: number }, ExtArgs["result"]["deployment"]> composites: {} } export type DeploymentGetPayload = runtime.Types.Result.GetResult export type DeploymentCountArgs = Omit & { select?: DeploymentCountAggregateInputType | true } export interface DeploymentDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['Deployment'], meta: { name: 'Deployment' } } /** * Find zero or one Deployment that matches the filter. * @param {DeploymentFindUniqueArgs} args - Arguments to find a Deployment * @example * // Get one Deployment * const deployment = await prisma.deployment.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__DeploymentClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Deployment that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {DeploymentFindUniqueOrThrowArgs} args - Arguments to find a Deployment * @example * // Get one Deployment * const deployment = await prisma.deployment.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__DeploymentClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Deployment that matches the filter. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {DeploymentFindFirstArgs} args - Arguments to find a Deployment * @example * // Get one Deployment * const deployment = await prisma.deployment.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__DeploymentClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Deployment that matches the filter or * throw `PrismaKnownClientError` with `P2025` code if no matches were found. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {DeploymentFindFirstOrThrowArgs} args - Arguments to find a Deployment * @example * // Get one Deployment * const deployment = await prisma.deployment.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__DeploymentClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Deployments that matches the filter. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {DeploymentFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Deployments * const deployments = await prisma.deployment.findMany() * * // Get first 10 Deployments * const deployments = await prisma.deployment.findMany({ take: 10 }) * * // Only select the `id` * const deploymentWithIdOnly = await prisma.deployment.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Deployment. * @param {DeploymentCreateArgs} args - Arguments to create a Deployment. * @example * // Create one Deployment * const Deployment = await prisma.deployment.create({ * data: { * // ... data to create a Deployment * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__DeploymentClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Deployments. * @param {DeploymentCreateManyArgs} args - Arguments to create many Deployments. * @example * // Create many Deployments * const deployment = await prisma.deployment.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create many Deployments and returns the data saved in the database. * @param {DeploymentCreateManyAndReturnArgs} args - Arguments to create many Deployments. * @example * // Create many Deployments * const deployment = await prisma.deployment.createManyAndReturn({ * data: [ * // ... provide data here * ] * }) * * // Create many Deployments and only return the `id` * const deploymentWithIdOnly = await prisma.deployment.createManyAndReturn({ * select: { id: true }, * data: [ * // ... provide data here * ] * }) * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * */ createManyAndReturn(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "createManyAndReturn", GlobalOmitOptions>> /** * Delete a Deployment. * @param {DeploymentDeleteArgs} args - Arguments to delete one Deployment. * @example * // Delete one Deployment * const Deployment = await prisma.deployment.delete({ * where: { * // ... filter to delete one Deployment * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__DeploymentClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Deployment. * @param {DeploymentUpdateArgs} args - Arguments to update one Deployment. * @example * // Update one Deployment * const deployment = await prisma.deployment.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__DeploymentClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Deployments. * @param {DeploymentDeleteManyArgs} args - Arguments to filter Deployments to delete. * @example * // Delete a few Deployments * const { count } = await prisma.deployment.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Deployments. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {DeploymentUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Deployments * const deployment = await prisma.deployment.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Deployments and returns the data updated in the database. * @param {DeploymentUpdateManyAndReturnArgs} args - Arguments to update many Deployments. * @example * // Update many Deployments * const deployment = await prisma.deployment.updateManyAndReturn({ * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * * // Update zero or more Deployments and only return the `id` * const deploymentWithIdOnly = await prisma.deployment.updateManyAndReturn({ * select: { id: true }, * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * */ updateManyAndReturn(args: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "updateManyAndReturn", GlobalOmitOptions>> /** * Create or update one Deployment. * @param {DeploymentUpsertArgs} args - Arguments to update or create a Deployment. * @example * // Update or create a Deployment * const deployment = await prisma.deployment.upsert({ * create: { * // ... data to create a Deployment * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Deployment we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__DeploymentClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Deployments. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {DeploymentCountArgs} args - Arguments to filter Deployments to count. * @example * // Count the number of Deployments * const count = await prisma.deployment.count({ * where: { * // ... the filter for the Deployments we want to count * } * }) **/ count( args?: Prisma.Subset, ): Prisma.PrismaPromise< T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType : number > /** * Allows you to perform aggregations operations on a Deployment. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {DeploymentAggregateArgs} args - Select which aggregations you would like to apply and on what fields. * @example * // Ordered by age ascending * // Where email contains prisma.io * // Limited to the 10 users * const aggregations = await prisma.user.aggregate({ * _avg: { * age: true, * }, * where: { * email: { * contains: "prisma.io", * }, * }, * orderBy: { * age: "asc", * }, * take: 10, * }) **/ aggregate(args: Prisma.Subset): Prisma.PrismaPromise> /** * Group by Deployment. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {DeploymentGroupByArgs} args - Group by arguments. * @example * // Group by city, order by createdAt, get count * const result = await prisma.user.groupBy({ * by: ['city', 'createdAt'], * orderBy: { * createdAt: true * }, * _count: { * _all: true * }, * }) * **/ groupBy< T extends DeploymentGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: DeploymentGroupByArgs['orderBy'] } : { orderBy?: DeploymentGroupByArgs['orderBy'] }, OrderFields extends Prisma.ExcludeUnderscoreKeys>>, ByFields extends Prisma.MaybeTupleToUnion, ByValid extends Prisma.Has, HavingFields extends Prisma.GetHavingFields, HavingValid extends Prisma.Has, ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False, InputErrors extends ByEmpty extends Prisma.True ? `Error: "by" must not be empty.` : HavingValid extends Prisma.False ? { [P in HavingFields]: P extends ByFields ? never : P extends string ? `Error: Field "${P}" used in "having" needs to be provided in "by".` : [ Error, 'Field ', P, ` in "having" needs to be provided in "by"`, ] }[HavingFields] : 'take' extends Prisma.Keys ? 'orderBy' extends Prisma.Keys ? ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] : 'Error: If you provide "take", you also need to provide "orderBy"' : 'skip' extends Prisma.Keys ? 'orderBy' extends Prisma.Keys ? ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] : 'Error: If you provide "skip", you also need to provide "orderBy"' : ByValid extends Prisma.True ? {} : { [P in OrderFields]: P extends ByFields ? never : `Error: Field "${P}" in "orderBy" needs to be provided in "by"` }[OrderFields] >(args: Prisma.SubsetIntersection & InputErrors): {} extends InputErrors ? GetDeploymentGroupByPayload : Prisma.PrismaPromise /** * Fields of the Deployment model */ readonly fields: DeploymentFieldRefs; } /** * The delegate class that acts as a "Promise-like" for Deployment. * Why is this prefixed with `Prisma__`? * Because we want to prevent naming conflicts as mentioned in * https://github.com/prisma/prisma-client-js/issues/707 */ export interface Prisma__DeploymentClient extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise" Project = {}>(args?: Prisma.Subset>): Prisma.Prisma__ProjectClient, 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. * @param onrejected The callback to execute when the Promise is rejected. * @returns A Promise for the completion of which ever callback is executed. */ then(onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise /** * Attaches a callback for only the rejection of the Promise. * @param onrejected The callback to execute when the Promise is rejected. * @returns A Promise for the completion of the callback. */ catch(onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise /** * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The * resolved value cannot be modified from the callback. * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected). * @returns A Promise for the completion of the callback. */ finally(onfinally?: (() => void) | undefined | null): runtime.Types.Utils.JsPromise } /** * Fields of the Deployment model */ export interface DeploymentFieldRefs { readonly id: Prisma.FieldRef<"Deployment", 'Int'> readonly branch: Prisma.FieldRef<"Deployment", 'String'> readonly env: Prisma.FieldRef<"Deployment", 'String'> readonly status: Prisma.FieldRef<"Deployment", 'String'> readonly commitHash: Prisma.FieldRef<"Deployment", 'String'> readonly commitMessage: Prisma.FieldRef<"Deployment", 'String'> readonly buildLog: Prisma.FieldRef<"Deployment", 'String'> readonly startedAt: Prisma.FieldRef<"Deployment", 'DateTime'> readonly finishedAt: Prisma.FieldRef<"Deployment", 'DateTime'> readonly valid: Prisma.FieldRef<"Deployment", 'Int'> readonly createdAt: Prisma.FieldRef<"Deployment", 'DateTime'> readonly updatedAt: Prisma.FieldRef<"Deployment", 'DateTime'> readonly createdBy: Prisma.FieldRef<"Deployment", 'String'> readonly updatedBy: Prisma.FieldRef<"Deployment", 'String'> readonly projectId: Prisma.FieldRef<"Deployment", 'Int'> readonly pipelineId: Prisma.FieldRef<"Deployment", 'Int'> } // Custom InputTypes /** * Deployment findUnique */ export type DeploymentFindUniqueArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * Filter, which Deployment to fetch. */ where: Prisma.DeploymentWhereUniqueInput } /** * Deployment findUniqueOrThrow */ export type DeploymentFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * Filter, which Deployment to fetch. */ where: Prisma.DeploymentWhereUniqueInput } /** * Deployment findFirst */ export type DeploymentFindFirstArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * Filter, which Deployment to fetch. */ where?: Prisma.DeploymentWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Deployments to fetch. */ orderBy?: Prisma.DeploymentOrderByWithRelationInput | Prisma.DeploymentOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for Deployments. */ cursor?: Prisma.DeploymentWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Deployments from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` Deployments. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Deployments. */ distinct?: Prisma.DeploymentScalarFieldEnum | Prisma.DeploymentScalarFieldEnum[] } /** * Deployment findFirstOrThrow */ export type DeploymentFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * Filter, which Deployment to fetch. */ where?: Prisma.DeploymentWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Deployments to fetch. */ orderBy?: Prisma.DeploymentOrderByWithRelationInput | Prisma.DeploymentOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for Deployments. */ cursor?: Prisma.DeploymentWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Deployments from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` Deployments. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Deployments. */ distinct?: Prisma.DeploymentScalarFieldEnum | Prisma.DeploymentScalarFieldEnum[] } /** * Deployment findMany */ export type DeploymentFindManyArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * Filter, which Deployments to fetch. */ where?: Prisma.DeploymentWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Deployments to fetch. */ orderBy?: Prisma.DeploymentOrderByWithRelationInput | Prisma.DeploymentOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing Deployments. */ cursor?: Prisma.DeploymentWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Deployments from the position of the cursor. */ take?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Skip the first `n` Deployments. */ skip?: number distinct?: Prisma.DeploymentScalarFieldEnum | Prisma.DeploymentScalarFieldEnum[] } /** * Deployment create */ export type DeploymentCreateArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * The data needed to create a Deployment. */ data: Prisma.XOR } /** * Deployment createMany */ export type DeploymentCreateManyArgs = { /** * The data used to create many Deployments. */ data: Prisma.DeploymentCreateManyInput | Prisma.DeploymentCreateManyInput[] } /** * Deployment createManyAndReturn */ export type DeploymentCreateManyAndReturnArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelectCreateManyAndReturn | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * The data used to create many Deployments. */ data: Prisma.DeploymentCreateManyInput | Prisma.DeploymentCreateManyInput[] /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentIncludeCreateManyAndReturn | null } /** * Deployment update */ export type DeploymentUpdateArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * The data needed to update a Deployment. */ data: Prisma.XOR /** * Choose, which Deployment to update. */ where: Prisma.DeploymentWhereUniqueInput } /** * Deployment updateMany */ export type DeploymentUpdateManyArgs = { /** * The data used to update Deployments. */ data: Prisma.XOR /** * Filter which Deployments to update */ where?: Prisma.DeploymentWhereInput /** * Limit how many Deployments to update. */ limit?: number } /** * Deployment updateManyAndReturn */ export type DeploymentUpdateManyAndReturnArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelectUpdateManyAndReturn | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * The data used to update Deployments. */ data: Prisma.XOR /** * Filter which Deployments to update */ where?: Prisma.DeploymentWhereInput /** * Limit how many Deployments to update. */ limit?: number /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentIncludeUpdateManyAndReturn | null } /** * Deployment upsert */ export type DeploymentUpsertArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * The filter to search for the Deployment to update in case it exists. */ where: Prisma.DeploymentWhereUniqueInput /** * In case the Deployment found by the `where` argument doesn't exist, create a new Deployment with this data. */ create: Prisma.XOR /** * In case the Deployment was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * Deployment delete */ export type DeploymentDeleteArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null /** * Filter which Deployment to delete. */ where: Prisma.DeploymentWhereUniqueInput } /** * Deployment deleteMany */ export type DeploymentDeleteManyArgs = { /** * Filter which Deployments to delete */ where?: Prisma.DeploymentWhereInput /** * Limit how many Deployments to delete. */ limit?: number } /** * Deployment.Project */ export type Deployment$ProjectArgs = { /** * Select specific fields to fetch from the Project */ select?: Prisma.ProjectSelect | null /** * Omit specific fields from the Project */ omit?: Prisma.ProjectOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.ProjectInclude | null where?: Prisma.ProjectWhereInput } /** * Deployment without action */ export type DeploymentDefaultArgs = { /** * Select specific fields to fetch from the Deployment */ select?: Prisma.DeploymentSelect | null /** * Omit specific fields from the Deployment */ omit?: Prisma.DeploymentOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.DeploymentInclude | null }