/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `Customer` 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.js" import type * as Prisma from "../internal/prismaNamespace.js" /** * Model Customer * */ export type CustomerModel = runtime.Types.Result.DefaultSelection export type AggregateCustomer = { _count: CustomerCountAggregateOutputType | null _avg: CustomerAvgAggregateOutputType | null _sum: CustomerSumAggregateOutputType | null _min: CustomerMinAggregateOutputType | null _max: CustomerMaxAggregateOutputType | null } export type CustomerAvgAggregateOutputType = { id: number | null } export type CustomerSumAggregateOutputType = { id: number | null } export type CustomerMinAggregateOutputType = { id: number | null firstName: string | null lastName: string | null email: string | null mobileNumber: string | null address: string | null city: string | null state: string | null country: string | null isActive: boolean | null createdAt: Date | null updatedAt: Date | null deletedAt: Date | null } export type CustomerMaxAggregateOutputType = { id: number | null firstName: string | null lastName: string | null email: string | null mobileNumber: string | null address: string | null city: string | null state: string | null country: string | null isActive: boolean | null createdAt: Date | null updatedAt: Date | null deletedAt: Date | null } export type CustomerCountAggregateOutputType = { id: number firstName: number lastName: number email: number mobileNumber: number address: number city: number state: number country: number isActive: number createdAt: number updatedAt: number deletedAt: number _all: number } export type CustomerAvgAggregateInputType = { id?: true } export type CustomerSumAggregateInputType = { id?: true } export type CustomerMinAggregateInputType = { id?: true firstName?: true lastName?: true email?: true mobileNumber?: true address?: true city?: true state?: true country?: true isActive?: true createdAt?: true updatedAt?: true deletedAt?: true } export type CustomerMaxAggregateInputType = { id?: true firstName?: true lastName?: true email?: true mobileNumber?: true address?: true city?: true state?: true country?: true isActive?: true createdAt?: true updatedAt?: true deletedAt?: true } export type CustomerCountAggregateInputType = { id?: true firstName?: true lastName?: true email?: true mobileNumber?: true address?: true city?: true state?: true country?: true isActive?: true createdAt?: true updatedAt?: true deletedAt?: true _all?: true } export type CustomerAggregateArgs = { /** * Filter which Customer to aggregate. */ where?: Prisma.CustomerWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Customers to fetch. */ orderBy?: Prisma.CustomerOrderByWithRelationInput | Prisma.CustomerOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.CustomerWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Customers 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` Customers. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned Customers **/ _count?: true | CustomerCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: CustomerAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: CustomerSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: CustomerMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: CustomerMaxAggregateInputType } export type GetCustomerAggregateType = { [P in keyof T & keyof AggregateCustomer]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type CustomerGroupByArgs = { where?: Prisma.CustomerWhereInput orderBy?: Prisma.CustomerOrderByWithAggregationInput | Prisma.CustomerOrderByWithAggregationInput[] by: Prisma.CustomerScalarFieldEnum[] | Prisma.CustomerScalarFieldEnum having?: Prisma.CustomerScalarWhereWithAggregatesInput take?: number skip?: number _count?: CustomerCountAggregateInputType | true _avg?: CustomerAvgAggregateInputType _sum?: CustomerSumAggregateInputType _min?: CustomerMinAggregateInputType _max?: CustomerMaxAggregateInputType } export type CustomerGroupByOutputType = { id: number firstName: string lastName: string email: string | null mobileNumber: string address: string | null city: string | null state: string | null country: string | null isActive: boolean createdAt: Date updatedAt: Date deletedAt: Date | null _count: CustomerCountAggregateOutputType | null _avg: CustomerAvgAggregateOutputType | null _sum: CustomerSumAggregateOutputType | null _min: CustomerMinAggregateOutputType | null _max: CustomerMaxAggregateOutputType | null } type GetCustomerGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof CustomerGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type CustomerWhereInput = { AND?: Prisma.CustomerWhereInput | Prisma.CustomerWhereInput[] OR?: Prisma.CustomerWhereInput[] NOT?: Prisma.CustomerWhereInput | Prisma.CustomerWhereInput[] id?: Prisma.IntFilter<"Customer"> | number firstName?: Prisma.StringFilter<"Customer"> | string lastName?: Prisma.StringFilter<"Customer"> | string email?: Prisma.StringNullableFilter<"Customer"> | string | null mobileNumber?: Prisma.StringFilter<"Customer"> | string address?: Prisma.StringNullableFilter<"Customer"> | string | null city?: Prisma.StringNullableFilter<"Customer"> | string | null state?: Prisma.StringNullableFilter<"Customer"> | string | null country?: Prisma.StringNullableFilter<"Customer"> | string | null isActive?: Prisma.BoolFilter<"Customer"> | boolean createdAt?: Prisma.DateTimeFilter<"Customer"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Customer"> | Date | string deletedAt?: Prisma.DateTimeNullableFilter<"Customer"> | Date | string | null orders?: Prisma.OrderListRelationFilter salesInvoices?: Prisma.SalesInvoiceListRelationFilter stockMovements?: Prisma.StockMovementListRelationFilter } export type CustomerOrderByWithRelationInput = { id?: Prisma.SortOrder firstName?: Prisma.SortOrder lastName?: Prisma.SortOrder email?: Prisma.SortOrderInput | Prisma.SortOrder mobileNumber?: Prisma.SortOrder address?: Prisma.SortOrderInput | Prisma.SortOrder city?: Prisma.SortOrderInput | Prisma.SortOrder state?: Prisma.SortOrderInput | Prisma.SortOrder country?: Prisma.SortOrderInput | Prisma.SortOrder isActive?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder deletedAt?: Prisma.SortOrderInput | Prisma.SortOrder orders?: Prisma.OrderOrderByRelationAggregateInput salesInvoices?: Prisma.SalesInvoiceOrderByRelationAggregateInput stockMovements?: Prisma.StockMovementOrderByRelationAggregateInput _relevance?: Prisma.CustomerOrderByRelevanceInput } export type CustomerWhereUniqueInput = Prisma.AtLeast<{ id?: number mobileNumber?: string AND?: Prisma.CustomerWhereInput | Prisma.CustomerWhereInput[] OR?: Prisma.CustomerWhereInput[] NOT?: Prisma.CustomerWhereInput | Prisma.CustomerWhereInput[] firstName?: Prisma.StringFilter<"Customer"> | string lastName?: Prisma.StringFilter<"Customer"> | string email?: Prisma.StringNullableFilter<"Customer"> | string | null address?: Prisma.StringNullableFilter<"Customer"> | string | null city?: Prisma.StringNullableFilter<"Customer"> | string | null state?: Prisma.StringNullableFilter<"Customer"> | string | null country?: Prisma.StringNullableFilter<"Customer"> | string | null isActive?: Prisma.BoolFilter<"Customer"> | boolean createdAt?: Prisma.DateTimeFilter<"Customer"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Customer"> | Date | string deletedAt?: Prisma.DateTimeNullableFilter<"Customer"> | Date | string | null orders?: Prisma.OrderListRelationFilter salesInvoices?: Prisma.SalesInvoiceListRelationFilter stockMovements?: Prisma.StockMovementListRelationFilter }, "id" | "mobileNumber"> export type CustomerOrderByWithAggregationInput = { id?: Prisma.SortOrder firstName?: Prisma.SortOrder lastName?: Prisma.SortOrder email?: Prisma.SortOrderInput | Prisma.SortOrder mobileNumber?: Prisma.SortOrder address?: Prisma.SortOrderInput | Prisma.SortOrder city?: Prisma.SortOrderInput | Prisma.SortOrder state?: Prisma.SortOrderInput | Prisma.SortOrder country?: Prisma.SortOrderInput | Prisma.SortOrder isActive?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder deletedAt?: Prisma.SortOrderInput | Prisma.SortOrder _count?: Prisma.CustomerCountOrderByAggregateInput _avg?: Prisma.CustomerAvgOrderByAggregateInput _max?: Prisma.CustomerMaxOrderByAggregateInput _min?: Prisma.CustomerMinOrderByAggregateInput _sum?: Prisma.CustomerSumOrderByAggregateInput } export type CustomerScalarWhereWithAggregatesInput = { AND?: Prisma.CustomerScalarWhereWithAggregatesInput | Prisma.CustomerScalarWhereWithAggregatesInput[] OR?: Prisma.CustomerScalarWhereWithAggregatesInput[] NOT?: Prisma.CustomerScalarWhereWithAggregatesInput | Prisma.CustomerScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"Customer"> | number firstName?: Prisma.StringWithAggregatesFilter<"Customer"> | string lastName?: Prisma.StringWithAggregatesFilter<"Customer"> | string email?: Prisma.StringNullableWithAggregatesFilter<"Customer"> | string | null mobileNumber?: Prisma.StringWithAggregatesFilter<"Customer"> | string address?: Prisma.StringNullableWithAggregatesFilter<"Customer"> | string | null city?: Prisma.StringNullableWithAggregatesFilter<"Customer"> | string | null state?: Prisma.StringNullableWithAggregatesFilter<"Customer"> | string | null country?: Prisma.StringNullableWithAggregatesFilter<"Customer"> | string | null isActive?: Prisma.BoolWithAggregatesFilter<"Customer"> | boolean createdAt?: Prisma.DateTimeWithAggregatesFilter<"Customer"> | Date | string updatedAt?: Prisma.DateTimeWithAggregatesFilter<"Customer"> | Date | string deletedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Customer"> | Date | string | null } export type CustomerCreateInput = { firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null orders?: Prisma.OrderCreateNestedManyWithoutCustomerInput salesInvoices?: Prisma.SalesInvoiceCreateNestedManyWithoutCustomerInput stockMovements?: Prisma.StockMovementCreateNestedManyWithoutCustomerInput } export type CustomerUncheckedCreateInput = { id?: number firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null orders?: Prisma.OrderUncheckedCreateNestedManyWithoutCustomerInput salesInvoices?: Prisma.SalesInvoiceUncheckedCreateNestedManyWithoutCustomerInput stockMovements?: Prisma.StockMovementUncheckedCreateNestedManyWithoutCustomerInput } export type CustomerUpdateInput = { firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null orders?: Prisma.OrderUpdateManyWithoutCustomerNestedInput salesInvoices?: Prisma.SalesInvoiceUpdateManyWithoutCustomerNestedInput stockMovements?: Prisma.StockMovementUpdateManyWithoutCustomerNestedInput } export type CustomerUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null orders?: Prisma.OrderUncheckedUpdateManyWithoutCustomerNestedInput salesInvoices?: Prisma.SalesInvoiceUncheckedUpdateManyWithoutCustomerNestedInput stockMovements?: Prisma.StockMovementUncheckedUpdateManyWithoutCustomerNestedInput } export type CustomerCreateManyInput = { id?: number firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null } export type CustomerUpdateManyMutationInput = { firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null } export type CustomerUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null } export type CustomerOrderByRelevanceInput = { fields: Prisma.CustomerOrderByRelevanceFieldEnum | Prisma.CustomerOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type CustomerCountOrderByAggregateInput = { id?: Prisma.SortOrder firstName?: Prisma.SortOrder lastName?: Prisma.SortOrder email?: Prisma.SortOrder mobileNumber?: Prisma.SortOrder address?: Prisma.SortOrder city?: Prisma.SortOrder state?: Prisma.SortOrder country?: Prisma.SortOrder isActive?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder deletedAt?: Prisma.SortOrder } export type CustomerAvgOrderByAggregateInput = { id?: Prisma.SortOrder } export type CustomerMaxOrderByAggregateInput = { id?: Prisma.SortOrder firstName?: Prisma.SortOrder lastName?: Prisma.SortOrder email?: Prisma.SortOrder mobileNumber?: Prisma.SortOrder address?: Prisma.SortOrder city?: Prisma.SortOrder state?: Prisma.SortOrder country?: Prisma.SortOrder isActive?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder deletedAt?: Prisma.SortOrder } export type CustomerMinOrderByAggregateInput = { id?: Prisma.SortOrder firstName?: Prisma.SortOrder lastName?: Prisma.SortOrder email?: Prisma.SortOrder mobileNumber?: Prisma.SortOrder address?: Prisma.SortOrder city?: Prisma.SortOrder state?: Prisma.SortOrder country?: Prisma.SortOrder isActive?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder deletedAt?: Prisma.SortOrder } export type CustomerSumOrderByAggregateInput = { id?: Prisma.SortOrder } export type CustomerScalarRelationFilter = { is?: Prisma.CustomerWhereInput isNot?: Prisma.CustomerWhereInput } export type CustomerNullableScalarRelationFilter = { is?: Prisma.CustomerWhereInput | null isNot?: Prisma.CustomerWhereInput | null } export type CustomerCreateNestedOneWithoutOrdersInput = { create?: Prisma.XOR connectOrCreate?: Prisma.CustomerCreateOrConnectWithoutOrdersInput connect?: Prisma.CustomerWhereUniqueInput } export type CustomerUpdateOneRequiredWithoutOrdersNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.CustomerCreateOrConnectWithoutOrdersInput upsert?: Prisma.CustomerUpsertWithoutOrdersInput connect?: Prisma.CustomerWhereUniqueInput update?: Prisma.XOR, Prisma.CustomerUncheckedUpdateWithoutOrdersInput> } export type CustomerCreateNestedOneWithoutSalesInvoicesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.CustomerCreateOrConnectWithoutSalesInvoicesInput connect?: Prisma.CustomerWhereUniqueInput } export type CustomerUpdateOneWithoutSalesInvoicesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.CustomerCreateOrConnectWithoutSalesInvoicesInput upsert?: Prisma.CustomerUpsertWithoutSalesInvoicesInput disconnect?: Prisma.CustomerWhereInput | boolean delete?: Prisma.CustomerWhereInput | boolean connect?: Prisma.CustomerWhereUniqueInput update?: Prisma.XOR, Prisma.CustomerUncheckedUpdateWithoutSalesInvoicesInput> } export type CustomerCreateNestedOneWithoutStockMovementsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.CustomerCreateOrConnectWithoutStockMovementsInput connect?: Prisma.CustomerWhereUniqueInput } export type CustomerUpdateOneWithoutStockMovementsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.CustomerCreateOrConnectWithoutStockMovementsInput upsert?: Prisma.CustomerUpsertWithoutStockMovementsInput disconnect?: Prisma.CustomerWhereInput | boolean delete?: Prisma.CustomerWhereInput | boolean connect?: Prisma.CustomerWhereUniqueInput update?: Prisma.XOR, Prisma.CustomerUncheckedUpdateWithoutStockMovementsInput> } export type CustomerCreateWithoutOrdersInput = { firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null salesInvoices?: Prisma.SalesInvoiceCreateNestedManyWithoutCustomerInput stockMovements?: Prisma.StockMovementCreateNestedManyWithoutCustomerInput } export type CustomerUncheckedCreateWithoutOrdersInput = { id?: number firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null salesInvoices?: Prisma.SalesInvoiceUncheckedCreateNestedManyWithoutCustomerInput stockMovements?: Prisma.StockMovementUncheckedCreateNestedManyWithoutCustomerInput } export type CustomerCreateOrConnectWithoutOrdersInput = { where: Prisma.CustomerWhereUniqueInput create: Prisma.XOR } export type CustomerUpsertWithoutOrdersInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.CustomerWhereInput } export type CustomerUpdateToOneWithWhereWithoutOrdersInput = { where?: Prisma.CustomerWhereInput data: Prisma.XOR } export type CustomerUpdateWithoutOrdersInput = { firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null salesInvoices?: Prisma.SalesInvoiceUpdateManyWithoutCustomerNestedInput stockMovements?: Prisma.StockMovementUpdateManyWithoutCustomerNestedInput } export type CustomerUncheckedUpdateWithoutOrdersInput = { id?: Prisma.IntFieldUpdateOperationsInput | number firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null salesInvoices?: Prisma.SalesInvoiceUncheckedUpdateManyWithoutCustomerNestedInput stockMovements?: Prisma.StockMovementUncheckedUpdateManyWithoutCustomerNestedInput } export type CustomerCreateWithoutSalesInvoicesInput = { firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null orders?: Prisma.OrderCreateNestedManyWithoutCustomerInput stockMovements?: Prisma.StockMovementCreateNestedManyWithoutCustomerInput } export type CustomerUncheckedCreateWithoutSalesInvoicesInput = { id?: number firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null orders?: Prisma.OrderUncheckedCreateNestedManyWithoutCustomerInput stockMovements?: Prisma.StockMovementUncheckedCreateNestedManyWithoutCustomerInput } export type CustomerCreateOrConnectWithoutSalesInvoicesInput = { where: Prisma.CustomerWhereUniqueInput create: Prisma.XOR } export type CustomerUpsertWithoutSalesInvoicesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.CustomerWhereInput } export type CustomerUpdateToOneWithWhereWithoutSalesInvoicesInput = { where?: Prisma.CustomerWhereInput data: Prisma.XOR } export type CustomerUpdateWithoutSalesInvoicesInput = { firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null orders?: Prisma.OrderUpdateManyWithoutCustomerNestedInput stockMovements?: Prisma.StockMovementUpdateManyWithoutCustomerNestedInput } export type CustomerUncheckedUpdateWithoutSalesInvoicesInput = { id?: Prisma.IntFieldUpdateOperationsInput | number firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null orders?: Prisma.OrderUncheckedUpdateManyWithoutCustomerNestedInput stockMovements?: Prisma.StockMovementUncheckedUpdateManyWithoutCustomerNestedInput } export type CustomerCreateWithoutStockMovementsInput = { firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null orders?: Prisma.OrderCreateNestedManyWithoutCustomerInput salesInvoices?: Prisma.SalesInvoiceCreateNestedManyWithoutCustomerInput } export type CustomerUncheckedCreateWithoutStockMovementsInput = { id?: number firstName: string lastName: string email?: string | null mobileNumber: string address?: string | null city?: string | null state?: string | null country?: string | null isActive?: boolean createdAt?: Date | string updatedAt?: Date | string deletedAt?: Date | string | null orders?: Prisma.OrderUncheckedCreateNestedManyWithoutCustomerInput salesInvoices?: Prisma.SalesInvoiceUncheckedCreateNestedManyWithoutCustomerInput } export type CustomerCreateOrConnectWithoutStockMovementsInput = { where: Prisma.CustomerWhereUniqueInput create: Prisma.XOR } export type CustomerUpsertWithoutStockMovementsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.CustomerWhereInput } export type CustomerUpdateToOneWithWhereWithoutStockMovementsInput = { where?: Prisma.CustomerWhereInput data: Prisma.XOR } export type CustomerUpdateWithoutStockMovementsInput = { firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null orders?: Prisma.OrderUpdateManyWithoutCustomerNestedInput salesInvoices?: Prisma.SalesInvoiceUpdateManyWithoutCustomerNestedInput } export type CustomerUncheckedUpdateWithoutStockMovementsInput = { id?: Prisma.IntFieldUpdateOperationsInput | number firstName?: Prisma.StringFieldUpdateOperationsInput | string lastName?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.NullableStringFieldUpdateOperationsInput | string | null mobileNumber?: Prisma.StringFieldUpdateOperationsInput | string address?: Prisma.NullableStringFieldUpdateOperationsInput | string | null city?: Prisma.NullableStringFieldUpdateOperationsInput | string | null state?: Prisma.NullableStringFieldUpdateOperationsInput | string | null country?: Prisma.NullableStringFieldUpdateOperationsInput | string | null isActive?: Prisma.BoolFieldUpdateOperationsInput | boolean createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null orders?: Prisma.OrderUncheckedUpdateManyWithoutCustomerNestedInput salesInvoices?: Prisma.SalesInvoiceUncheckedUpdateManyWithoutCustomerNestedInput } /** * Count Type CustomerCountOutputType */ export type CustomerCountOutputType = { orders: number salesInvoices: number stockMovements: number } export type CustomerCountOutputTypeSelect = { orders?: boolean | CustomerCountOutputTypeCountOrdersArgs salesInvoices?: boolean | CustomerCountOutputTypeCountSalesInvoicesArgs stockMovements?: boolean | CustomerCountOutputTypeCountStockMovementsArgs } /** * CustomerCountOutputType without action */ export type CustomerCountOutputTypeDefaultArgs = { /** * Select specific fields to fetch from the CustomerCountOutputType */ select?: Prisma.CustomerCountOutputTypeSelect | null } /** * CustomerCountOutputType without action */ export type CustomerCountOutputTypeCountOrdersArgs = { where?: Prisma.OrderWhereInput } /** * CustomerCountOutputType without action */ export type CustomerCountOutputTypeCountSalesInvoicesArgs = { where?: Prisma.SalesInvoiceWhereInput } /** * CustomerCountOutputType without action */ export type CustomerCountOutputTypeCountStockMovementsArgs = { where?: Prisma.StockMovementWhereInput } export type CustomerSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean firstName?: boolean lastName?: boolean email?: boolean mobileNumber?: boolean address?: boolean city?: boolean state?: boolean country?: boolean isActive?: boolean createdAt?: boolean updatedAt?: boolean deletedAt?: boolean orders?: boolean | Prisma.Customer$ordersArgs salesInvoices?: boolean | Prisma.Customer$salesInvoicesArgs stockMovements?: boolean | Prisma.Customer$stockMovementsArgs _count?: boolean | Prisma.CustomerCountOutputTypeDefaultArgs }, ExtArgs["result"]["customer"]> export type CustomerSelectScalar = { id?: boolean firstName?: boolean lastName?: boolean email?: boolean mobileNumber?: boolean address?: boolean city?: boolean state?: boolean country?: boolean isActive?: boolean createdAt?: boolean updatedAt?: boolean deletedAt?: boolean } export type CustomerOmit = runtime.Types.Extensions.GetOmit<"id" | "firstName" | "lastName" | "email" | "mobileNumber" | "address" | "city" | "state" | "country" | "isActive" | "createdAt" | "updatedAt" | "deletedAt", ExtArgs["result"]["customer"]> export type CustomerInclude = { orders?: boolean | Prisma.Customer$ordersArgs salesInvoices?: boolean | Prisma.Customer$salesInvoicesArgs stockMovements?: boolean | Prisma.Customer$stockMovementsArgs _count?: boolean | Prisma.CustomerCountOutputTypeDefaultArgs } export type $CustomerPayload = { name: "Customer" objects: { orders: Prisma.$OrderPayload[] salesInvoices: Prisma.$SalesInvoicePayload[] stockMovements: Prisma.$StockMovementPayload[] } scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number firstName: string lastName: string email: string | null mobileNumber: string address: string | null city: string | null state: string | null country: string | null isActive: boolean createdAt: Date updatedAt: Date deletedAt: Date | null }, ExtArgs["result"]["customer"]> composites: {} } export type CustomerGetPayload = runtime.Types.Result.GetResult export type CustomerCountArgs = Omit & { select?: CustomerCountAggregateInputType | true } export interface CustomerDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['Customer'], meta: { name: 'Customer' } } /** * Find zero or one Customer that matches the filter. * @param {CustomerFindUniqueArgs} args - Arguments to find a Customer * @example * // Get one Customer * const customer = await prisma.customer.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__CustomerClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Customer that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {CustomerFindUniqueOrThrowArgs} args - Arguments to find a Customer * @example * // Get one Customer * const customer = await prisma.customer.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__CustomerClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Customer 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 {CustomerFindFirstArgs} args - Arguments to find a Customer * @example * // Get one Customer * const customer = await prisma.customer.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__CustomerClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Customer 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 {CustomerFindFirstOrThrowArgs} args - Arguments to find a Customer * @example * // Get one Customer * const customer = await prisma.customer.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__CustomerClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Customers 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 {CustomerFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Customers * const customers = await prisma.customer.findMany() * * // Get first 10 Customers * const customers = await prisma.customer.findMany({ take: 10 }) * * // Only select the `id` * const customerWithIdOnly = await prisma.customer.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Customer. * @param {CustomerCreateArgs} args - Arguments to create a Customer. * @example * // Create one Customer * const Customer = await prisma.customer.create({ * data: { * // ... data to create a Customer * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__CustomerClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Customers. * @param {CustomerCreateManyArgs} args - Arguments to create many Customers. * @example * // Create many Customers * const customer = await prisma.customer.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Customer. * @param {CustomerDeleteArgs} args - Arguments to delete one Customer. * @example * // Delete one Customer * const Customer = await prisma.customer.delete({ * where: { * // ... filter to delete one Customer * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__CustomerClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Customer. * @param {CustomerUpdateArgs} args - Arguments to update one Customer. * @example * // Update one Customer * const customer = await prisma.customer.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__CustomerClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Customers. * @param {CustomerDeleteManyArgs} args - Arguments to filter Customers to delete. * @example * // Delete a few Customers * const { count } = await prisma.customer.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Customers. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {CustomerUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Customers * const customer = await prisma.customer.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Customer. * @param {CustomerUpsertArgs} args - Arguments to update or create a Customer. * @example * // Update or create a Customer * const customer = await prisma.customer.upsert({ * create: { * // ... data to create a Customer * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Customer we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__CustomerClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Customers. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {CustomerCountArgs} args - Arguments to filter Customers to count. * @example * // Count the number of Customers * const count = await prisma.customer.count({ * where: { * // ... the filter for the Customers 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 Customer. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {CustomerAggregateArgs} 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 Customer. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {CustomerGroupByArgs} 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 CustomerGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: CustomerGroupByArgs['orderBy'] } : { orderBy?: CustomerGroupByArgs['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 ? GetCustomerGroupByPayload : Prisma.PrismaPromise /** * Fields of the Customer model */ readonly fields: CustomerFieldRefs; } /** * The delegate class that acts as a "Promise-like" for Customer. * 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__CustomerClient extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise" orders = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> salesInvoices = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> stockMovements = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> /** * Attaches callbacks for the resolution and/or rejection of the Promise. * @param onfulfilled The callback to execute when the Promise is resolved. * @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 Customer model */ export interface CustomerFieldRefs { readonly id: Prisma.FieldRef<"Customer", 'Int'> readonly firstName: Prisma.FieldRef<"Customer", 'String'> readonly lastName: Prisma.FieldRef<"Customer", 'String'> readonly email: Prisma.FieldRef<"Customer", 'String'> readonly mobileNumber: Prisma.FieldRef<"Customer", 'String'> readonly address: Prisma.FieldRef<"Customer", 'String'> readonly city: Prisma.FieldRef<"Customer", 'String'> readonly state: Prisma.FieldRef<"Customer", 'String'> readonly country: Prisma.FieldRef<"Customer", 'String'> readonly isActive: Prisma.FieldRef<"Customer", 'Boolean'> readonly createdAt: Prisma.FieldRef<"Customer", 'DateTime'> readonly updatedAt: Prisma.FieldRef<"Customer", 'DateTime'> readonly deletedAt: Prisma.FieldRef<"Customer", 'DateTime'> } // Custom InputTypes /** * Customer findUnique */ export type CustomerFindUniqueArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * Filter, which Customer to fetch. */ where: Prisma.CustomerWhereUniqueInput } /** * Customer findUniqueOrThrow */ export type CustomerFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * Filter, which Customer to fetch. */ where: Prisma.CustomerWhereUniqueInput } /** * Customer findFirst */ export type CustomerFindFirstArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * Filter, which Customer to fetch. */ where?: Prisma.CustomerWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Customers to fetch. */ orderBy?: Prisma.CustomerOrderByWithRelationInput | Prisma.CustomerOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for Customers. */ cursor?: Prisma.CustomerWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Customers 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` Customers. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Customers. */ distinct?: Prisma.CustomerScalarFieldEnum | Prisma.CustomerScalarFieldEnum[] } /** * Customer findFirstOrThrow */ export type CustomerFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * Filter, which Customer to fetch. */ where?: Prisma.CustomerWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Customers to fetch. */ orderBy?: Prisma.CustomerOrderByWithRelationInput | Prisma.CustomerOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for Customers. */ cursor?: Prisma.CustomerWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Customers 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` Customers. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Customers. */ distinct?: Prisma.CustomerScalarFieldEnum | Prisma.CustomerScalarFieldEnum[] } /** * Customer findMany */ export type CustomerFindManyArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * Filter, which Customers to fetch. */ where?: Prisma.CustomerWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Customers to fetch. */ orderBy?: Prisma.CustomerOrderByWithRelationInput | Prisma.CustomerOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing Customers. */ cursor?: Prisma.CustomerWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Customers 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` Customers. */ skip?: number distinct?: Prisma.CustomerScalarFieldEnum | Prisma.CustomerScalarFieldEnum[] } /** * Customer create */ export type CustomerCreateArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * The data needed to create a Customer. */ data: Prisma.XOR } /** * Customer createMany */ export type CustomerCreateManyArgs = { /** * The data used to create many Customers. */ data: Prisma.CustomerCreateManyInput | Prisma.CustomerCreateManyInput[] skipDuplicates?: boolean } /** * Customer update */ export type CustomerUpdateArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * The data needed to update a Customer. */ data: Prisma.XOR /** * Choose, which Customer to update. */ where: Prisma.CustomerWhereUniqueInput } /** * Customer updateMany */ export type CustomerUpdateManyArgs = { /** * The data used to update Customers. */ data: Prisma.XOR /** * Filter which Customers to update */ where?: Prisma.CustomerWhereInput /** * Limit how many Customers to update. */ limit?: number } /** * Customer upsert */ export type CustomerUpsertArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * The filter to search for the Customer to update in case it exists. */ where: Prisma.CustomerWhereUniqueInput /** * In case the Customer found by the `where` argument doesn't exist, create a new Customer with this data. */ create: Prisma.XOR /** * In case the Customer was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * Customer delete */ export type CustomerDeleteArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null /** * Filter which Customer to delete. */ where: Prisma.CustomerWhereUniqueInput } /** * Customer deleteMany */ export type CustomerDeleteManyArgs = { /** * Filter which Customers to delete */ where?: Prisma.CustomerWhereInput /** * Limit how many Customers to delete. */ limit?: number } /** * Customer.orders */ export type Customer$ordersArgs = { /** * Select specific fields to fetch from the Order */ select?: Prisma.OrderSelect | null /** * Omit specific fields from the Order */ omit?: Prisma.OrderOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.OrderInclude | null where?: Prisma.OrderWhereInput orderBy?: Prisma.OrderOrderByWithRelationInput | Prisma.OrderOrderByWithRelationInput[] cursor?: Prisma.OrderWhereUniqueInput take?: number skip?: number distinct?: Prisma.OrderScalarFieldEnum | Prisma.OrderScalarFieldEnum[] } /** * Customer.salesInvoices */ export type Customer$salesInvoicesArgs = { /** * Select specific fields to fetch from the SalesInvoice */ select?: Prisma.SalesInvoiceSelect | null /** * Omit specific fields from the SalesInvoice */ omit?: Prisma.SalesInvoiceOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.SalesInvoiceInclude | null where?: Prisma.SalesInvoiceWhereInput orderBy?: Prisma.SalesInvoiceOrderByWithRelationInput | Prisma.SalesInvoiceOrderByWithRelationInput[] cursor?: Prisma.SalesInvoiceWhereUniqueInput take?: number skip?: number distinct?: Prisma.SalesInvoiceScalarFieldEnum | Prisma.SalesInvoiceScalarFieldEnum[] } /** * Customer.stockMovements */ export type Customer$stockMovementsArgs = { /** * Select specific fields to fetch from the StockMovement */ select?: Prisma.StockMovementSelect | null /** * Omit specific fields from the StockMovement */ omit?: Prisma.StockMovementOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.StockMovementInclude | null where?: Prisma.StockMovementWhereInput orderBy?: Prisma.StockMovementOrderByWithRelationInput | Prisma.StockMovementOrderByWithRelationInput[] cursor?: Prisma.StockMovementWhereUniqueInput take?: number skip?: number distinct?: Prisma.StockMovementScalarFieldEnum | Prisma.StockMovementScalarFieldEnum[] } /** * Customer without action */ export type CustomerDefaultArgs = { /** * Select specific fields to fetch from the Customer */ select?: Prisma.CustomerSelect | null /** * Omit specific fields from the Customer */ omit?: Prisma.CustomerOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.CustomerInclude | null }