/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `SendJob` 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" import type * as Prisma from "../internal/prismaNamespace" /** * Model SendJob * */ export type SendJobModel = runtime.Types.Result.DefaultSelection export type AggregateSendJob = { _count: SendJobCountAggregateOutputType | null _min: SendJobMinAggregateOutputType | null _max: SendJobMaxAggregateOutputType | null } export type SendJobMinAggregateOutputType = { id: string | null campaignId: string | null scheduledAt: Date | null status: $Enums.SendJobStatus | null idempotencyKey: string | null processedAt: Date | null errorMessage: string | null createdAt: Date | null updatedAt: Date | null } export type SendJobMaxAggregateOutputType = { id: string | null campaignId: string | null scheduledAt: Date | null status: $Enums.SendJobStatus | null idempotencyKey: string | null processedAt: Date | null errorMessage: string | null createdAt: Date | null updatedAt: Date | null } export type SendJobCountAggregateOutputType = { id: number campaignId: number scheduledAt: number status: number idempotencyKey: number processedAt: number errorMessage: number createdAt: number updatedAt: number _all: number } export type SendJobMinAggregateInputType = { id?: true campaignId?: true scheduledAt?: true status?: true idempotencyKey?: true processedAt?: true errorMessage?: true createdAt?: true updatedAt?: true } export type SendJobMaxAggregateInputType = { id?: true campaignId?: true scheduledAt?: true status?: true idempotencyKey?: true processedAt?: true errorMessage?: true createdAt?: true updatedAt?: true } export type SendJobCountAggregateInputType = { id?: true campaignId?: true scheduledAt?: true status?: true idempotencyKey?: true processedAt?: true errorMessage?: true createdAt?: true updatedAt?: true _all?: true } export type SendJobAggregateArgs = { /** * Filter which SendJob to aggregate. */ where?: Prisma.SendJobWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of SendJobs to fetch. */ orderBy?: Prisma.SendJobOrderByWithRelationInput | Prisma.SendJobOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.SendJobWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` SendJobs 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` SendJobs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned SendJobs **/ _count?: true | SendJobCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: SendJobMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: SendJobMaxAggregateInputType } export type GetSendJobAggregateType = { [P in keyof T & keyof AggregateSendJob]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type SendJobGroupByArgs = { where?: Prisma.SendJobWhereInput orderBy?: Prisma.SendJobOrderByWithAggregationInput | Prisma.SendJobOrderByWithAggregationInput[] by: Prisma.SendJobScalarFieldEnum[] | Prisma.SendJobScalarFieldEnum having?: Prisma.SendJobScalarWhereWithAggregatesInput take?: number skip?: number _count?: SendJobCountAggregateInputType | true _min?: SendJobMinAggregateInputType _max?: SendJobMaxAggregateInputType } export type SendJobGroupByOutputType = { id: string campaignId: string scheduledAt: Date status: $Enums.SendJobStatus idempotencyKey: string processedAt: Date | null errorMessage: string | null createdAt: Date updatedAt: Date _count: SendJobCountAggregateOutputType | null _min: SendJobMinAggregateOutputType | null _max: SendJobMaxAggregateOutputType | null } export type GetSendJobGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof SendJobGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type SendJobWhereInput = { AND?: Prisma.SendJobWhereInput | Prisma.SendJobWhereInput[] OR?: Prisma.SendJobWhereInput[] NOT?: Prisma.SendJobWhereInput | Prisma.SendJobWhereInput[] id?: Prisma.StringFilter<"SendJob"> | string campaignId?: Prisma.StringFilter<"SendJob"> | string scheduledAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string status?: Prisma.EnumSendJobStatusFilter<"SendJob"> | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFilter<"SendJob"> | string processedAt?: Prisma.DateTimeNullableFilter<"SendJob"> | Date | string | null errorMessage?: Prisma.StringNullableFilter<"SendJob"> | string | null createdAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string updatedAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string campaign?: Prisma.XOR } export type SendJobOrderByWithRelationInput = { id?: Prisma.SortOrder campaignId?: Prisma.SortOrder scheduledAt?: Prisma.SortOrder status?: Prisma.SortOrder idempotencyKey?: Prisma.SortOrder processedAt?: Prisma.SortOrderInput | Prisma.SortOrder errorMessage?: Prisma.SortOrderInput | Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder campaign?: Prisma.WarmupCampaignOrderByWithRelationInput } export type SendJobWhereUniqueInput = Prisma.AtLeast<{ id?: string idempotencyKey?: string AND?: Prisma.SendJobWhereInput | Prisma.SendJobWhereInput[] OR?: Prisma.SendJobWhereInput[] NOT?: Prisma.SendJobWhereInput | Prisma.SendJobWhereInput[] campaignId?: Prisma.StringFilter<"SendJob"> | string scheduledAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string status?: Prisma.EnumSendJobStatusFilter<"SendJob"> | $Enums.SendJobStatus processedAt?: Prisma.DateTimeNullableFilter<"SendJob"> | Date | string | null errorMessage?: Prisma.StringNullableFilter<"SendJob"> | string | null createdAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string updatedAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string campaign?: Prisma.XOR }, "id" | "idempotencyKey"> export type SendJobOrderByWithAggregationInput = { id?: Prisma.SortOrder campaignId?: Prisma.SortOrder scheduledAt?: Prisma.SortOrder status?: Prisma.SortOrder idempotencyKey?: Prisma.SortOrder processedAt?: Prisma.SortOrderInput | Prisma.SortOrder errorMessage?: Prisma.SortOrderInput | Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder _count?: Prisma.SendJobCountOrderByAggregateInput _max?: Prisma.SendJobMaxOrderByAggregateInput _min?: Prisma.SendJobMinOrderByAggregateInput } export type SendJobScalarWhereWithAggregatesInput = { AND?: Prisma.SendJobScalarWhereWithAggregatesInput | Prisma.SendJobScalarWhereWithAggregatesInput[] OR?: Prisma.SendJobScalarWhereWithAggregatesInput[] NOT?: Prisma.SendJobScalarWhereWithAggregatesInput | Prisma.SendJobScalarWhereWithAggregatesInput[] id?: Prisma.StringWithAggregatesFilter<"SendJob"> | string campaignId?: Prisma.StringWithAggregatesFilter<"SendJob"> | string scheduledAt?: Prisma.DateTimeWithAggregatesFilter<"SendJob"> | Date | string status?: Prisma.EnumSendJobStatusWithAggregatesFilter<"SendJob"> | $Enums.SendJobStatus idempotencyKey?: Prisma.StringWithAggregatesFilter<"SendJob"> | string processedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"SendJob"> | Date | string | null errorMessage?: Prisma.StringNullableWithAggregatesFilter<"SendJob"> | string | null createdAt?: Prisma.DateTimeWithAggregatesFilter<"SendJob"> | Date | string updatedAt?: Prisma.DateTimeWithAggregatesFilter<"SendJob"> | Date | string } export type SendJobCreateInput = { id?: string scheduledAt: Date | string status?: $Enums.SendJobStatus idempotencyKey: string processedAt?: Date | string | null errorMessage?: string | null createdAt?: Date | string updatedAt?: Date | string campaign: Prisma.WarmupCampaignCreateNestedOneWithoutSendJobsInput } export type SendJobUncheckedCreateInput = { id?: string campaignId: string scheduledAt: Date | string status?: $Enums.SendJobStatus idempotencyKey: string processedAt?: Date | string | null errorMessage?: string | null createdAt?: Date | string updatedAt?: Date | string } export type SendJobUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string status?: Prisma.EnumSendJobStatusFieldUpdateOperationsInput | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFieldUpdateOperationsInput | string processedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string campaign?: Prisma.WarmupCampaignUpdateOneRequiredWithoutSendJobsNestedInput } export type SendJobUncheckedUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string campaignId?: Prisma.StringFieldUpdateOperationsInput | string scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string status?: Prisma.EnumSendJobStatusFieldUpdateOperationsInput | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFieldUpdateOperationsInput | string processedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type SendJobCreateManyInput = { id?: string campaignId: string scheduledAt: Date | string status?: $Enums.SendJobStatus idempotencyKey: string processedAt?: Date | string | null errorMessage?: string | null createdAt?: Date | string updatedAt?: Date | string } export type SendJobUpdateManyMutationInput = { id?: Prisma.StringFieldUpdateOperationsInput | string scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string status?: Prisma.EnumSendJobStatusFieldUpdateOperationsInput | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFieldUpdateOperationsInput | string processedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type SendJobUncheckedUpdateManyInput = { id?: Prisma.StringFieldUpdateOperationsInput | string campaignId?: Prisma.StringFieldUpdateOperationsInput | string scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string status?: Prisma.EnumSendJobStatusFieldUpdateOperationsInput | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFieldUpdateOperationsInput | string processedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type SendJobCountOrderByAggregateInput = { id?: Prisma.SortOrder campaignId?: Prisma.SortOrder scheduledAt?: Prisma.SortOrder status?: Prisma.SortOrder idempotencyKey?: Prisma.SortOrder processedAt?: Prisma.SortOrder errorMessage?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type SendJobMaxOrderByAggregateInput = { id?: Prisma.SortOrder campaignId?: Prisma.SortOrder scheduledAt?: Prisma.SortOrder status?: Prisma.SortOrder idempotencyKey?: Prisma.SortOrder processedAt?: Prisma.SortOrder errorMessage?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type SendJobMinOrderByAggregateInput = { id?: Prisma.SortOrder campaignId?: Prisma.SortOrder scheduledAt?: Prisma.SortOrder status?: Prisma.SortOrder idempotencyKey?: Prisma.SortOrder processedAt?: Prisma.SortOrder errorMessage?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type SendJobListRelationFilter = { every?: Prisma.SendJobWhereInput some?: Prisma.SendJobWhereInput none?: Prisma.SendJobWhereInput } export type SendJobOrderByRelationAggregateInput = { _count?: Prisma.SortOrder } export type EnumSendJobStatusFieldUpdateOperationsInput = { set?: $Enums.SendJobStatus } export type NullableDateTimeFieldUpdateOperationsInput = { set?: Date | string | null } export type NullableStringFieldUpdateOperationsInput = { set?: string | null } export type SendJobCreateNestedManyWithoutCampaignInput = { create?: Prisma.XOR | Prisma.SendJobCreateWithoutCampaignInput[] | Prisma.SendJobUncheckedCreateWithoutCampaignInput[] connectOrCreate?: Prisma.SendJobCreateOrConnectWithoutCampaignInput | Prisma.SendJobCreateOrConnectWithoutCampaignInput[] createMany?: Prisma.SendJobCreateManyCampaignInputEnvelope connect?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] } export type SendJobUncheckedCreateNestedManyWithoutCampaignInput = { create?: Prisma.XOR | Prisma.SendJobCreateWithoutCampaignInput[] | Prisma.SendJobUncheckedCreateWithoutCampaignInput[] connectOrCreate?: Prisma.SendJobCreateOrConnectWithoutCampaignInput | Prisma.SendJobCreateOrConnectWithoutCampaignInput[] createMany?: Prisma.SendJobCreateManyCampaignInputEnvelope connect?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] } export type SendJobUpdateManyWithoutCampaignNestedInput = { create?: Prisma.XOR | Prisma.SendJobCreateWithoutCampaignInput[] | Prisma.SendJobUncheckedCreateWithoutCampaignInput[] connectOrCreate?: Prisma.SendJobCreateOrConnectWithoutCampaignInput | Prisma.SendJobCreateOrConnectWithoutCampaignInput[] upsert?: Prisma.SendJobUpsertWithWhereUniqueWithoutCampaignInput | Prisma.SendJobUpsertWithWhereUniqueWithoutCampaignInput[] createMany?: Prisma.SendJobCreateManyCampaignInputEnvelope set?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] disconnect?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] delete?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] connect?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] update?: Prisma.SendJobUpdateWithWhereUniqueWithoutCampaignInput | Prisma.SendJobUpdateWithWhereUniqueWithoutCampaignInput[] updateMany?: Prisma.SendJobUpdateManyWithWhereWithoutCampaignInput | Prisma.SendJobUpdateManyWithWhereWithoutCampaignInput[] deleteMany?: Prisma.SendJobScalarWhereInput | Prisma.SendJobScalarWhereInput[] } export type SendJobUncheckedUpdateManyWithoutCampaignNestedInput = { create?: Prisma.XOR | Prisma.SendJobCreateWithoutCampaignInput[] | Prisma.SendJobUncheckedCreateWithoutCampaignInput[] connectOrCreate?: Prisma.SendJobCreateOrConnectWithoutCampaignInput | Prisma.SendJobCreateOrConnectWithoutCampaignInput[] upsert?: Prisma.SendJobUpsertWithWhereUniqueWithoutCampaignInput | Prisma.SendJobUpsertWithWhereUniqueWithoutCampaignInput[] createMany?: Prisma.SendJobCreateManyCampaignInputEnvelope set?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] disconnect?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] delete?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] connect?: Prisma.SendJobWhereUniqueInput | Prisma.SendJobWhereUniqueInput[] update?: Prisma.SendJobUpdateWithWhereUniqueWithoutCampaignInput | Prisma.SendJobUpdateWithWhereUniqueWithoutCampaignInput[] updateMany?: Prisma.SendJobUpdateManyWithWhereWithoutCampaignInput | Prisma.SendJobUpdateManyWithWhereWithoutCampaignInput[] deleteMany?: Prisma.SendJobScalarWhereInput | Prisma.SendJobScalarWhereInput[] } export type SendJobCreateWithoutCampaignInput = { id?: string scheduledAt: Date | string status?: $Enums.SendJobStatus idempotencyKey: string processedAt?: Date | string | null errorMessage?: string | null createdAt?: Date | string updatedAt?: Date | string } export type SendJobUncheckedCreateWithoutCampaignInput = { id?: string scheduledAt: Date | string status?: $Enums.SendJobStatus idempotencyKey: string processedAt?: Date | string | null errorMessage?: string | null createdAt?: Date | string updatedAt?: Date | string } export type SendJobCreateOrConnectWithoutCampaignInput = { where: Prisma.SendJobWhereUniqueInput create: Prisma.XOR } export type SendJobCreateManyCampaignInputEnvelope = { data: Prisma.SendJobCreateManyCampaignInput | Prisma.SendJobCreateManyCampaignInput[] } export type SendJobUpsertWithWhereUniqueWithoutCampaignInput = { where: Prisma.SendJobWhereUniqueInput update: Prisma.XOR create: Prisma.XOR } export type SendJobUpdateWithWhereUniqueWithoutCampaignInput = { where: Prisma.SendJobWhereUniqueInput data: Prisma.XOR } export type SendJobUpdateManyWithWhereWithoutCampaignInput = { where: Prisma.SendJobScalarWhereInput data: Prisma.XOR } export type SendJobScalarWhereInput = { AND?: Prisma.SendJobScalarWhereInput | Prisma.SendJobScalarWhereInput[] OR?: Prisma.SendJobScalarWhereInput[] NOT?: Prisma.SendJobScalarWhereInput | Prisma.SendJobScalarWhereInput[] id?: Prisma.StringFilter<"SendJob"> | string campaignId?: Prisma.StringFilter<"SendJob"> | string scheduledAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string status?: Prisma.EnumSendJobStatusFilter<"SendJob"> | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFilter<"SendJob"> | string processedAt?: Prisma.DateTimeNullableFilter<"SendJob"> | Date | string | null errorMessage?: Prisma.StringNullableFilter<"SendJob"> | string | null createdAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string updatedAt?: Prisma.DateTimeFilter<"SendJob"> | Date | string } export type SendJobCreateManyCampaignInput = { id?: string scheduledAt: Date | string status?: $Enums.SendJobStatus idempotencyKey: string processedAt?: Date | string | null errorMessage?: string | null createdAt?: Date | string updatedAt?: Date | string } export type SendJobUpdateWithoutCampaignInput = { id?: Prisma.StringFieldUpdateOperationsInput | string scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string status?: Prisma.EnumSendJobStatusFieldUpdateOperationsInput | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFieldUpdateOperationsInput | string processedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type SendJobUncheckedUpdateWithoutCampaignInput = { id?: Prisma.StringFieldUpdateOperationsInput | string scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string status?: Prisma.EnumSendJobStatusFieldUpdateOperationsInput | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFieldUpdateOperationsInput | string processedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type SendJobUncheckedUpdateManyWithoutCampaignInput = { id?: Prisma.StringFieldUpdateOperationsInput | string scheduledAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string status?: Prisma.EnumSendJobStatusFieldUpdateOperationsInput | $Enums.SendJobStatus idempotencyKey?: Prisma.StringFieldUpdateOperationsInput | string processedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null errorMessage?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type SendJobSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean campaignId?: boolean scheduledAt?: boolean status?: boolean idempotencyKey?: boolean processedAt?: boolean errorMessage?: boolean createdAt?: boolean updatedAt?: boolean campaign?: boolean | Prisma.WarmupCampaignDefaultArgs }, ExtArgs["result"]["sendJob"]> export type SendJobSelectCreateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean campaignId?: boolean scheduledAt?: boolean status?: boolean idempotencyKey?: boolean processedAt?: boolean errorMessage?: boolean createdAt?: boolean updatedAt?: boolean campaign?: boolean | Prisma.WarmupCampaignDefaultArgs }, ExtArgs["result"]["sendJob"]> export type SendJobSelectUpdateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean campaignId?: boolean scheduledAt?: boolean status?: boolean idempotencyKey?: boolean processedAt?: boolean errorMessage?: boolean createdAt?: boolean updatedAt?: boolean campaign?: boolean | Prisma.WarmupCampaignDefaultArgs }, ExtArgs["result"]["sendJob"]> export type SendJobSelectScalar = { id?: boolean campaignId?: boolean scheduledAt?: boolean status?: boolean idempotencyKey?: boolean processedAt?: boolean errorMessage?: boolean createdAt?: boolean updatedAt?: boolean } export type SendJobOmit = runtime.Types.Extensions.GetOmit<"id" | "campaignId" | "scheduledAt" | "status" | "idempotencyKey" | "processedAt" | "errorMessage" | "createdAt" | "updatedAt", ExtArgs["result"]["sendJob"]> export type SendJobInclude = { campaign?: boolean | Prisma.WarmupCampaignDefaultArgs } export type SendJobIncludeCreateManyAndReturn = { campaign?: boolean | Prisma.WarmupCampaignDefaultArgs } export type SendJobIncludeUpdateManyAndReturn = { campaign?: boolean | Prisma.WarmupCampaignDefaultArgs } export type $SendJobPayload = { name: "SendJob" objects: { campaign: Prisma.$WarmupCampaignPayload } scalars: runtime.Types.Extensions.GetPayloadResult<{ id: string campaignId: string scheduledAt: Date status: $Enums.SendJobStatus idempotencyKey: string processedAt: Date | null errorMessage: string | null createdAt: Date updatedAt: Date }, ExtArgs["result"]["sendJob"]> composites: {} } export type SendJobGetPayload = runtime.Types.Result.GetResult export type SendJobCountArgs = Omit & { select?: SendJobCountAggregateInputType | true } export interface SendJobDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['SendJob'], meta: { name: 'SendJob' } } /** * Find zero or one SendJob that matches the filter. * @param {SendJobFindUniqueArgs} args - Arguments to find a SendJob * @example * // Get one SendJob * const sendJob = await prisma.sendJob.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__SendJobClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one SendJob that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {SendJobFindUniqueOrThrowArgs} args - Arguments to find a SendJob * @example * // Get one SendJob * const sendJob = await prisma.sendJob.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__SendJobClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first SendJob 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 {SendJobFindFirstArgs} args - Arguments to find a SendJob * @example * // Get one SendJob * const sendJob = await prisma.sendJob.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__SendJobClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first SendJob 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 {SendJobFindFirstOrThrowArgs} args - Arguments to find a SendJob * @example * // Get one SendJob * const sendJob = await prisma.sendJob.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__SendJobClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more SendJobs 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 {SendJobFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all SendJobs * const sendJobs = await prisma.sendJob.findMany() * * // Get first 10 SendJobs * const sendJobs = await prisma.sendJob.findMany({ take: 10 }) * * // Only select the `id` * const sendJobWithIdOnly = await prisma.sendJob.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a SendJob. * @param {SendJobCreateArgs} args - Arguments to create a SendJob. * @example * // Create one SendJob * const SendJob = await prisma.sendJob.create({ * data: { * // ... data to create a SendJob * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__SendJobClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many SendJobs. * @param {SendJobCreateManyArgs} args - Arguments to create many SendJobs. * @example * // Create many SendJobs * const sendJob = await prisma.sendJob.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create many SendJobs and returns the data saved in the database. * @param {SendJobCreateManyAndReturnArgs} args - Arguments to create many SendJobs. * @example * // Create many SendJobs * const sendJob = await prisma.sendJob.createManyAndReturn({ * data: [ * // ... provide data here * ] * }) * * // Create many SendJobs and only return the `id` * const sendJobWithIdOnly = await prisma.sendJob.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 SendJob. * @param {SendJobDeleteArgs} args - Arguments to delete one SendJob. * @example * // Delete one SendJob * const SendJob = await prisma.sendJob.delete({ * where: { * // ... filter to delete one SendJob * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__SendJobClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one SendJob. * @param {SendJobUpdateArgs} args - Arguments to update one SendJob. * @example * // Update one SendJob * const sendJob = await prisma.sendJob.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__SendJobClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more SendJobs. * @param {SendJobDeleteManyArgs} args - Arguments to filter SendJobs to delete. * @example * // Delete a few SendJobs * const { count } = await prisma.sendJob.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more SendJobs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {SendJobUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many SendJobs * const sendJob = await prisma.sendJob.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more SendJobs and returns the data updated in the database. * @param {SendJobUpdateManyAndReturnArgs} args - Arguments to update many SendJobs. * @example * // Update many SendJobs * const sendJob = await prisma.sendJob.updateManyAndReturn({ * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * * // Update zero or more SendJobs and only return the `id` * const sendJobWithIdOnly = await prisma.sendJob.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 SendJob. * @param {SendJobUpsertArgs} args - Arguments to update or create a SendJob. * @example * // Update or create a SendJob * const sendJob = await prisma.sendJob.upsert({ * create: { * // ... data to create a SendJob * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the SendJob we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__SendJobClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of SendJobs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {SendJobCountArgs} args - Arguments to filter SendJobs to count. * @example * // Count the number of SendJobs * const count = await prisma.sendJob.count({ * where: { * // ... the filter for the SendJobs 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 SendJob. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {SendJobAggregateArgs} 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 SendJob. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {SendJobGroupByArgs} 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 SendJobGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: SendJobGroupByArgs['orderBy'] } : { orderBy?: SendJobGroupByArgs['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 ? GetSendJobGroupByPayload : Prisma.PrismaPromise /** * Fields of the SendJob model */ readonly fields: SendJobFieldRefs; } /** * The delegate class that acts as a "Promise-like" for SendJob. * 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__SendJobClient extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise" campaign = {}>(args?: Prisma.Subset>): Prisma.Prisma__WarmupCampaignClient, 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 SendJob model */ export interface SendJobFieldRefs { readonly id: Prisma.FieldRef<"SendJob", 'String'> readonly campaignId: Prisma.FieldRef<"SendJob", 'String'> readonly scheduledAt: Prisma.FieldRef<"SendJob", 'DateTime'> readonly status: Prisma.FieldRef<"SendJob", 'SendJobStatus'> readonly idempotencyKey: Prisma.FieldRef<"SendJob", 'String'> readonly processedAt: Prisma.FieldRef<"SendJob", 'DateTime'> readonly errorMessage: Prisma.FieldRef<"SendJob", 'String'> readonly createdAt: Prisma.FieldRef<"SendJob", 'DateTime'> readonly updatedAt: Prisma.FieldRef<"SendJob", 'DateTime'> } // Custom InputTypes /** * SendJob findUnique */ export type SendJobFindUniqueArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * Filter, which SendJob to fetch. */ where: Prisma.SendJobWhereUniqueInput } /** * SendJob findUniqueOrThrow */ export type SendJobFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * Filter, which SendJob to fetch. */ where: Prisma.SendJobWhereUniqueInput } /** * SendJob findFirst */ export type SendJobFindFirstArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * Filter, which SendJob to fetch. */ where?: Prisma.SendJobWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of SendJobs to fetch. */ orderBy?: Prisma.SendJobOrderByWithRelationInput | Prisma.SendJobOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for SendJobs. */ cursor?: Prisma.SendJobWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` SendJobs 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` SendJobs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of SendJobs. */ distinct?: Prisma.SendJobScalarFieldEnum | Prisma.SendJobScalarFieldEnum[] } /** * SendJob findFirstOrThrow */ export type SendJobFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * Filter, which SendJob to fetch. */ where?: Prisma.SendJobWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of SendJobs to fetch. */ orderBy?: Prisma.SendJobOrderByWithRelationInput | Prisma.SendJobOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for SendJobs. */ cursor?: Prisma.SendJobWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` SendJobs 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` SendJobs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of SendJobs. */ distinct?: Prisma.SendJobScalarFieldEnum | Prisma.SendJobScalarFieldEnum[] } /** * SendJob findMany */ export type SendJobFindManyArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * Filter, which SendJobs to fetch. */ where?: Prisma.SendJobWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of SendJobs to fetch. */ orderBy?: Prisma.SendJobOrderByWithRelationInput | Prisma.SendJobOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing SendJobs. */ cursor?: Prisma.SendJobWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` SendJobs 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` SendJobs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of SendJobs. */ distinct?: Prisma.SendJobScalarFieldEnum | Prisma.SendJobScalarFieldEnum[] } /** * SendJob create */ export type SendJobCreateArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * The data needed to create a SendJob. */ data: Prisma.XOR } /** * SendJob createMany */ export type SendJobCreateManyArgs = { /** * The data used to create many SendJobs. */ data: Prisma.SendJobCreateManyInput | Prisma.SendJobCreateManyInput[] } /** * SendJob createManyAndReturn */ export type SendJobCreateManyAndReturnArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelectCreateManyAndReturn | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * The data used to create many SendJobs. */ data: Prisma.SendJobCreateManyInput | Prisma.SendJobCreateManyInput[] /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobIncludeCreateManyAndReturn | null } /** * SendJob update */ export type SendJobUpdateArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * The data needed to update a SendJob. */ data: Prisma.XOR /** * Choose, which SendJob to update. */ where: Prisma.SendJobWhereUniqueInput } /** * SendJob updateMany */ export type SendJobUpdateManyArgs = { /** * The data used to update SendJobs. */ data: Prisma.XOR /** * Filter which SendJobs to update */ where?: Prisma.SendJobWhereInput /** * Limit how many SendJobs to update. */ limit?: number } /** * SendJob updateManyAndReturn */ export type SendJobUpdateManyAndReturnArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelectUpdateManyAndReturn | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * The data used to update SendJobs. */ data: Prisma.XOR /** * Filter which SendJobs to update */ where?: Prisma.SendJobWhereInput /** * Limit how many SendJobs to update. */ limit?: number /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobIncludeUpdateManyAndReturn | null } /** * SendJob upsert */ export type SendJobUpsertArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * The filter to search for the SendJob to update in case it exists. */ where: Prisma.SendJobWhereUniqueInput /** * In case the SendJob found by the `where` argument doesn't exist, create a new SendJob with this data. */ create: Prisma.XOR /** * In case the SendJob was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * SendJob delete */ export type SendJobDeleteArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null /** * Filter which SendJob to delete. */ where: Prisma.SendJobWhereUniqueInput } /** * SendJob deleteMany */ export type SendJobDeleteManyArgs = { /** * Filter which SendJobs to delete */ where?: Prisma.SendJobWhereInput /** * Limit how many SendJobs to delete. */ limit?: number } /** * SendJob without action */ export type SendJobDefaultArgs = { /** * Select specific fields to fetch from the SendJob */ select?: Prisma.SendJobSelect | null /** * Omit specific fields from the SendJob */ omit?: Prisma.SendJobOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SendJobInclude | null }