
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
/* eslint-disable */
// biome-ignore-all lint: generated file
// @ts-nocheck 
/*
 * This file exports the `cms_about` model and its related types.
 *
 * 🟢 You can import this file directly.
 */
import type * as runtime from "@prisma/client/runtime/library"
import type * as $Enums from "../enums"
import type * as Prisma from "../internal/prismaNamespace"

/**
 * Model cms_about
 * 
 */
export type cms_aboutModel = runtime.Types.Result.DefaultSelection<Prisma.$cms_aboutPayload>

export type AggregateCms_about = {
  _count: Cms_aboutCountAggregateOutputType | null
  _avg: Cms_aboutAvgAggregateOutputType | null
  _sum: Cms_aboutSumAggregateOutputType | null
  _min: Cms_aboutMinAggregateOutputType | null
  _max: Cms_aboutMaxAggregateOutputType | null
}

export type Cms_aboutAvgAggregateOutputType = {
  id: number | null
  page_id: number | null
}

export type Cms_aboutSumAggregateOutputType = {
  id: bigint | null
  page_id: bigint | null
}

export type Cms_aboutMinAggregateOutputType = {
  id: bigint | null
  page_id: bigint | null
  section_name: string | null
  image: string | null
  html_content: string | null
  status: boolean | null
  created_at: Date | null
  updated_at: Date | null
}

export type Cms_aboutMaxAggregateOutputType = {
  id: bigint | null
  page_id: bigint | null
  section_name: string | null
  image: string | null
  html_content: string | null
  status: boolean | null
  created_at: Date | null
  updated_at: Date | null
}

export type Cms_aboutCountAggregateOutputType = {
  id: number
  page_id: number
  section_name: number
  image: number
  html_content: number
  status: number
  created_at: number
  updated_at: number
  _all: number
}


export type Cms_aboutAvgAggregateInputType = {
  id?: true
  page_id?: true
}

export type Cms_aboutSumAggregateInputType = {
  id?: true
  page_id?: true
}

export type Cms_aboutMinAggregateInputType = {
  id?: true
  page_id?: true
  section_name?: true
  image?: true
  html_content?: true
  status?: true
  created_at?: true
  updated_at?: true
}

export type Cms_aboutMaxAggregateInputType = {
  id?: true
  page_id?: true
  section_name?: true
  image?: true
  html_content?: true
  status?: true
  created_at?: true
  updated_at?: true
}

export type Cms_aboutCountAggregateInputType = {
  id?: true
  page_id?: true
  section_name?: true
  image?: true
  html_content?: true
  status?: true
  created_at?: true
  updated_at?: true
  _all?: true
}

export type Cms_aboutAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which cms_about to aggregate.
   */
  where?: Prisma.cms_aboutWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of cms_abouts to fetch.
   */
  orderBy?: Prisma.cms_aboutOrderByWithRelationInput | Prisma.cms_aboutOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the start position
   */
  cursor?: Prisma.cms_aboutWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` cms_abouts 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` cms_abouts.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Count returned cms_abouts
  **/
  _count?: true | Cms_aboutCountAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to average
  **/
  _avg?: Cms_aboutAvgAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to sum
  **/
  _sum?: Cms_aboutSumAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the minimum value
  **/
  _min?: Cms_aboutMinAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the maximum value
  **/
  _max?: Cms_aboutMaxAggregateInputType
}

export type GetCms_aboutAggregateType<T extends Cms_aboutAggregateArgs> = {
      [P in keyof T & keyof AggregateCms_about]: P extends '_count' | 'count'
    ? T[P] extends true
      ? number
      : Prisma.GetScalarType<T[P], AggregateCms_about[P]>
    : Prisma.GetScalarType<T[P], AggregateCms_about[P]>
}




export type cms_aboutGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.cms_aboutWhereInput
  orderBy?: Prisma.cms_aboutOrderByWithAggregationInput | Prisma.cms_aboutOrderByWithAggregationInput[]
  by: Prisma.Cms_aboutScalarFieldEnum[] | Prisma.Cms_aboutScalarFieldEnum
  having?: Prisma.cms_aboutScalarWhereWithAggregatesInput
  take?: number
  skip?: number
  _count?: Cms_aboutCountAggregateInputType | true
  _avg?: Cms_aboutAvgAggregateInputType
  _sum?: Cms_aboutSumAggregateInputType
  _min?: Cms_aboutMinAggregateInputType
  _max?: Cms_aboutMaxAggregateInputType
}

export type Cms_aboutGroupByOutputType = {
  id: bigint
  page_id: bigint
  section_name: string | null
  image: string | null
  html_content: string | null
  status: boolean | null
  created_at: Date | null
  updated_at: Date | null
  _count: Cms_aboutCountAggregateOutputType | null
  _avg: Cms_aboutAvgAggregateOutputType | null
  _sum: Cms_aboutSumAggregateOutputType | null
  _min: Cms_aboutMinAggregateOutputType | null
  _max: Cms_aboutMaxAggregateOutputType | null
}

type GetCms_aboutGroupByPayload<T extends cms_aboutGroupByArgs> = Prisma.PrismaPromise<
  Array<
    Prisma.PickEnumerable<Cms_aboutGroupByOutputType, T['by']> &
      {
        [P in ((keyof T) & (keyof Cms_aboutGroupByOutputType))]: P extends '_count'
          ? T[P] extends boolean
            ? number
            : Prisma.GetScalarType<T[P], Cms_aboutGroupByOutputType[P]>
          : Prisma.GetScalarType<T[P], Cms_aboutGroupByOutputType[P]>
      }
    >
  >



export type cms_aboutWhereInput = {
  AND?: Prisma.cms_aboutWhereInput | Prisma.cms_aboutWhereInput[]
  OR?: Prisma.cms_aboutWhereInput[]
  NOT?: Prisma.cms_aboutWhereInput | Prisma.cms_aboutWhereInput[]
  id?: Prisma.BigIntFilter<"cms_about"> | bigint | number
  page_id?: Prisma.BigIntFilter<"cms_about"> | bigint | number
  section_name?: Prisma.StringNullableFilter<"cms_about"> | string | null
  image?: Prisma.StringNullableFilter<"cms_about"> | string | null
  html_content?: Prisma.StringNullableFilter<"cms_about"> | string | null
  status?: Prisma.BoolNullableFilter<"cms_about"> | boolean | null
  created_at?: Prisma.DateTimeNullableFilter<"cms_about"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableFilter<"cms_about"> | Date | string | null
  cms_pages?: Prisma.XOR<Prisma.Cms_pagesScalarRelationFilter, Prisma.cms_pagesWhereInput>
}

export type cms_aboutOrderByWithRelationInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  section_name?: Prisma.SortOrderInput | Prisma.SortOrder
  image?: Prisma.SortOrderInput | Prisma.SortOrder
  html_content?: Prisma.SortOrderInput | Prisma.SortOrder
  status?: Prisma.SortOrderInput | Prisma.SortOrder
  created_at?: Prisma.SortOrderInput | Prisma.SortOrder
  updated_at?: Prisma.SortOrderInput | Prisma.SortOrder
  cms_pages?: Prisma.cms_pagesOrderByWithRelationInput
}

export type cms_aboutWhereUniqueInput = Prisma.AtLeast<{
  id?: bigint | number
  page_id?: bigint | number
  AND?: Prisma.cms_aboutWhereInput | Prisma.cms_aboutWhereInput[]
  OR?: Prisma.cms_aboutWhereInput[]
  NOT?: Prisma.cms_aboutWhereInput | Prisma.cms_aboutWhereInput[]
  section_name?: Prisma.StringNullableFilter<"cms_about"> | string | null
  image?: Prisma.StringNullableFilter<"cms_about"> | string | null
  html_content?: Prisma.StringNullableFilter<"cms_about"> | string | null
  status?: Prisma.BoolNullableFilter<"cms_about"> | boolean | null
  created_at?: Prisma.DateTimeNullableFilter<"cms_about"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableFilter<"cms_about"> | Date | string | null
  cms_pages?: Prisma.XOR<Prisma.Cms_pagesScalarRelationFilter, Prisma.cms_pagesWhereInput>
}, "id" | "page_id">

export type cms_aboutOrderByWithAggregationInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  section_name?: Prisma.SortOrderInput | Prisma.SortOrder
  image?: Prisma.SortOrderInput | Prisma.SortOrder
  html_content?: Prisma.SortOrderInput | Prisma.SortOrder
  status?: Prisma.SortOrderInput | Prisma.SortOrder
  created_at?: Prisma.SortOrderInput | Prisma.SortOrder
  updated_at?: Prisma.SortOrderInput | Prisma.SortOrder
  _count?: Prisma.cms_aboutCountOrderByAggregateInput
  _avg?: Prisma.cms_aboutAvgOrderByAggregateInput
  _max?: Prisma.cms_aboutMaxOrderByAggregateInput
  _min?: Prisma.cms_aboutMinOrderByAggregateInput
  _sum?: Prisma.cms_aboutSumOrderByAggregateInput
}

export type cms_aboutScalarWhereWithAggregatesInput = {
  AND?: Prisma.cms_aboutScalarWhereWithAggregatesInput | Prisma.cms_aboutScalarWhereWithAggregatesInput[]
  OR?: Prisma.cms_aboutScalarWhereWithAggregatesInput[]
  NOT?: Prisma.cms_aboutScalarWhereWithAggregatesInput | Prisma.cms_aboutScalarWhereWithAggregatesInput[]
  id?: Prisma.BigIntWithAggregatesFilter<"cms_about"> | bigint | number
  page_id?: Prisma.BigIntWithAggregatesFilter<"cms_about"> | bigint | number
  section_name?: Prisma.StringNullableWithAggregatesFilter<"cms_about"> | string | null
  image?: Prisma.StringNullableWithAggregatesFilter<"cms_about"> | string | null
  html_content?: Prisma.StringNullableWithAggregatesFilter<"cms_about"> | string | null
  status?: Prisma.BoolNullableWithAggregatesFilter<"cms_about"> | boolean | null
  created_at?: Prisma.DateTimeNullableWithAggregatesFilter<"cms_about"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableWithAggregatesFilter<"cms_about"> | Date | string | null
}

export type cms_aboutCreateInput = {
  id?: bigint | number
  section_name?: string | null
  image?: string | null
  html_content?: string | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
  cms_pages: Prisma.cms_pagesCreateNestedOneWithoutCms_aboutInput
}

export type cms_aboutUncheckedCreateInput = {
  id?: bigint | number
  page_id: bigint | number
  section_name?: string | null
  image?: string | null
  html_content?: string | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_aboutUpdateInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  section_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  html_content?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  cms_pages?: Prisma.cms_pagesUpdateOneRequiredWithoutCms_aboutNestedInput
}

export type cms_aboutUncheckedUpdateInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  page_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  section_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  html_content?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type cms_aboutCreateManyInput = {
  id?: bigint | number
  page_id: bigint | number
  section_name?: string | null
  image?: string | null
  html_content?: string | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_aboutUpdateManyMutationInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  section_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  html_content?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type cms_aboutUncheckedUpdateManyInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  page_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  section_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  html_content?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type Cms_aboutNullableScalarRelationFilter = {
  is?: Prisma.cms_aboutWhereInput | null
  isNot?: Prisma.cms_aboutWhereInput | null
}

export type cms_aboutCountOrderByAggregateInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  section_name?: Prisma.SortOrder
  image?: Prisma.SortOrder
  html_content?: Prisma.SortOrder
  status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

export type cms_aboutAvgOrderByAggregateInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
}

export type cms_aboutMaxOrderByAggregateInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  section_name?: Prisma.SortOrder
  image?: Prisma.SortOrder
  html_content?: Prisma.SortOrder
  status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

export type cms_aboutMinOrderByAggregateInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  section_name?: Prisma.SortOrder
  image?: Prisma.SortOrder
  html_content?: Prisma.SortOrder
  status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

export type cms_aboutSumOrderByAggregateInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
}

export type cms_aboutCreateNestedOneWithoutCms_pagesInput = {
  create?: Prisma.XOR<Prisma.cms_aboutCreateWithoutCms_pagesInput, Prisma.cms_aboutUncheckedCreateWithoutCms_pagesInput>
  connectOrCreate?: Prisma.cms_aboutCreateOrConnectWithoutCms_pagesInput
  connect?: Prisma.cms_aboutWhereUniqueInput
}

export type cms_aboutUncheckedCreateNestedOneWithoutCms_pagesInput = {
  create?: Prisma.XOR<Prisma.cms_aboutCreateWithoutCms_pagesInput, Prisma.cms_aboutUncheckedCreateWithoutCms_pagesInput>
  connectOrCreate?: Prisma.cms_aboutCreateOrConnectWithoutCms_pagesInput
  connect?: Prisma.cms_aboutWhereUniqueInput
}

export type cms_aboutUpdateOneWithoutCms_pagesNestedInput = {
  create?: Prisma.XOR<Prisma.cms_aboutCreateWithoutCms_pagesInput, Prisma.cms_aboutUncheckedCreateWithoutCms_pagesInput>
  connectOrCreate?: Prisma.cms_aboutCreateOrConnectWithoutCms_pagesInput
  upsert?: Prisma.cms_aboutUpsertWithoutCms_pagesInput
  disconnect?: Prisma.cms_aboutWhereInput | boolean
  delete?: Prisma.cms_aboutWhereInput | boolean
  connect?: Prisma.cms_aboutWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.cms_aboutUpdateToOneWithWhereWithoutCms_pagesInput, Prisma.cms_aboutUpdateWithoutCms_pagesInput>, Prisma.cms_aboutUncheckedUpdateWithoutCms_pagesInput>
}

export type cms_aboutUncheckedUpdateOneWithoutCms_pagesNestedInput = {
  create?: Prisma.XOR<Prisma.cms_aboutCreateWithoutCms_pagesInput, Prisma.cms_aboutUncheckedCreateWithoutCms_pagesInput>
  connectOrCreate?: Prisma.cms_aboutCreateOrConnectWithoutCms_pagesInput
  upsert?: Prisma.cms_aboutUpsertWithoutCms_pagesInput
  disconnect?: Prisma.cms_aboutWhereInput | boolean
  delete?: Prisma.cms_aboutWhereInput | boolean
  connect?: Prisma.cms_aboutWhereUniqueInput
  update?: Prisma.XOR<Prisma.XOR<Prisma.cms_aboutUpdateToOneWithWhereWithoutCms_pagesInput, Prisma.cms_aboutUpdateWithoutCms_pagesInput>, Prisma.cms_aboutUncheckedUpdateWithoutCms_pagesInput>
}

export type cms_aboutCreateWithoutCms_pagesInput = {
  id?: bigint | number
  section_name?: string | null
  image?: string | null
  html_content?: string | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_aboutUncheckedCreateWithoutCms_pagesInput = {
  id?: bigint | number
  section_name?: string | null
  image?: string | null
  html_content?: string | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_aboutCreateOrConnectWithoutCms_pagesInput = {
  where: Prisma.cms_aboutWhereUniqueInput
  create: Prisma.XOR<Prisma.cms_aboutCreateWithoutCms_pagesInput, Prisma.cms_aboutUncheckedCreateWithoutCms_pagesInput>
}

export type cms_aboutUpsertWithoutCms_pagesInput = {
  update: Prisma.XOR<Prisma.cms_aboutUpdateWithoutCms_pagesInput, Prisma.cms_aboutUncheckedUpdateWithoutCms_pagesInput>
  create: Prisma.XOR<Prisma.cms_aboutCreateWithoutCms_pagesInput, Prisma.cms_aboutUncheckedCreateWithoutCms_pagesInput>
  where?: Prisma.cms_aboutWhereInput
}

export type cms_aboutUpdateToOneWithWhereWithoutCms_pagesInput = {
  where?: Prisma.cms_aboutWhereInput
  data: Prisma.XOR<Prisma.cms_aboutUpdateWithoutCms_pagesInput, Prisma.cms_aboutUncheckedUpdateWithoutCms_pagesInput>
}

export type cms_aboutUpdateWithoutCms_pagesInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  section_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  html_content?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type cms_aboutUncheckedUpdateWithoutCms_pagesInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  section_name?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  html_content?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}



export type cms_aboutSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  page_id?: boolean
  section_name?: boolean
  image?: boolean
  html_content?: boolean
  status?: boolean
  created_at?: boolean
  updated_at?: boolean
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}, ExtArgs["result"]["cms_about"]>

export type cms_aboutSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  page_id?: boolean
  section_name?: boolean
  image?: boolean
  html_content?: boolean
  status?: boolean
  created_at?: boolean
  updated_at?: boolean
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}, ExtArgs["result"]["cms_about"]>

export type cms_aboutSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
  id?: boolean
  page_id?: boolean
  section_name?: boolean
  image?: boolean
  html_content?: boolean
  status?: boolean
  created_at?: boolean
  updated_at?: boolean
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}, ExtArgs["result"]["cms_about"]>

export type cms_aboutSelectScalar = {
  id?: boolean
  page_id?: boolean
  section_name?: boolean
  image?: boolean
  html_content?: boolean
  status?: boolean
  created_at?: boolean
  updated_at?: boolean
}

export type cms_aboutOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "page_id" | "section_name" | "image" | "html_content" | "status" | "created_at" | "updated_at", ExtArgs["result"]["cms_about"]>
export type cms_aboutInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}
export type cms_aboutIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}
export type cms_aboutIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}

export type $cms_aboutPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  name: "cms_about"
  objects: {
    cms_pages: Prisma.$cms_pagesPayload<ExtArgs>
  }
  scalars: runtime.Types.Extensions.GetPayloadResult<{
    id: bigint
    page_id: bigint
    section_name: string | null
    image: string | null
    html_content: string | null
    status: boolean | null
    created_at: Date | null
    updated_at: Date | null
  }, ExtArgs["result"]["cms_about"]>
  composites: {}
}

export type cms_aboutGetPayload<S extends boolean | null | undefined | cms_aboutDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload, S>

export type cms_aboutCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> =
  Omit<cms_aboutFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
    select?: Cms_aboutCountAggregateInputType | true
  }

export interface cms_aboutDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> {
  [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['cms_about'], meta: { name: 'cms_about' } }
  /**
   * Find zero or one Cms_about that matches the filter.
   * @param {cms_aboutFindUniqueArgs} args - Arguments to find a Cms_about
   * @example
   * // Get one Cms_about
   * const cms_about = await prisma.cms_about.findUnique({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findUnique<T extends cms_aboutFindUniqueArgs>(args: Prisma.SelectSubset<T, cms_aboutFindUniqueArgs<ExtArgs>>): Prisma.Prisma__cms_aboutClient<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>

  /**
   * Find one Cms_about that matches the filter or throw an error with `error.code='P2025'`
   * if no matches were found.
   * @param {cms_aboutFindUniqueOrThrowArgs} args - Arguments to find a Cms_about
   * @example
   * // Get one Cms_about
   * const cms_about = await prisma.cms_about.findUniqueOrThrow({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findUniqueOrThrow<T extends cms_aboutFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, cms_aboutFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__cms_aboutClient<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Find the first Cms_about 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 {cms_aboutFindFirstArgs} args - Arguments to find a Cms_about
   * @example
   * // Get one Cms_about
   * const cms_about = await prisma.cms_about.findFirst({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findFirst<T extends cms_aboutFindFirstArgs>(args?: Prisma.SelectSubset<T, cms_aboutFindFirstArgs<ExtArgs>>): Prisma.Prisma__cms_aboutClient<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>

  /**
   * Find the first Cms_about 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 {cms_aboutFindFirstOrThrowArgs} args - Arguments to find a Cms_about
   * @example
   * // Get one Cms_about
   * const cms_about = await prisma.cms_about.findFirstOrThrow({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   */
  findFirstOrThrow<T extends cms_aboutFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, cms_aboutFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__cms_aboutClient<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Find zero or more Cms_abouts 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 {cms_aboutFindManyArgs} args - Arguments to filter and select certain fields only.
   * @example
   * // Get all Cms_abouts
   * const cms_abouts = await prisma.cms_about.findMany()
   * 
   * // Get first 10 Cms_abouts
   * const cms_abouts = await prisma.cms_about.findMany({ take: 10 })
   * 
   * // Only select the `id`
   * const cms_aboutWithIdOnly = await prisma.cms_about.findMany({ select: { id: true } })
   * 
   */
  findMany<T extends cms_aboutFindManyArgs>(args?: Prisma.SelectSubset<T, cms_aboutFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>

  /**
   * Create a Cms_about.
   * @param {cms_aboutCreateArgs} args - Arguments to create a Cms_about.
   * @example
   * // Create one Cms_about
   * const Cms_about = await prisma.cms_about.create({
   *   data: {
   *     // ... data to create a Cms_about
   *   }
   * })
   * 
   */
  create<T extends cms_aboutCreateArgs>(args: Prisma.SelectSubset<T, cms_aboutCreateArgs<ExtArgs>>): Prisma.Prisma__cms_aboutClient<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Create many Cms_abouts.
   * @param {cms_aboutCreateManyArgs} args - Arguments to create many Cms_abouts.
   * @example
   * // Create many Cms_abouts
   * const cms_about = await prisma.cms_about.createMany({
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   *     
   */
  createMany<T extends cms_aboutCreateManyArgs>(args?: Prisma.SelectSubset<T, cms_aboutCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Create many Cms_abouts and returns the data saved in the database.
   * @param {cms_aboutCreateManyAndReturnArgs} args - Arguments to create many Cms_abouts.
   * @example
   * // Create many Cms_abouts
   * const cms_about = await prisma.cms_about.createManyAndReturn({
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * 
   * // Create many Cms_abouts and only return the `id`
   * const cms_aboutWithIdOnly = await prisma.cms_about.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<T extends cms_aboutCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, cms_aboutCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>

  /**
   * Delete a Cms_about.
   * @param {cms_aboutDeleteArgs} args - Arguments to delete one Cms_about.
   * @example
   * // Delete one Cms_about
   * const Cms_about = await prisma.cms_about.delete({
   *   where: {
   *     // ... filter to delete one Cms_about
   *   }
   * })
   * 
   */
  delete<T extends cms_aboutDeleteArgs>(args: Prisma.SelectSubset<T, cms_aboutDeleteArgs<ExtArgs>>): Prisma.Prisma__cms_aboutClient<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Update one Cms_about.
   * @param {cms_aboutUpdateArgs} args - Arguments to update one Cms_about.
   * @example
   * // Update one Cms_about
   * const cms_about = await prisma.cms_about.update({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: {
   *     // ... provide data here
   *   }
   * })
   * 
   */
  update<T extends cms_aboutUpdateArgs>(args: Prisma.SelectSubset<T, cms_aboutUpdateArgs<ExtArgs>>): Prisma.Prisma__cms_aboutClient<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>

  /**
   * Delete zero or more Cms_abouts.
   * @param {cms_aboutDeleteManyArgs} args - Arguments to filter Cms_abouts to delete.
   * @example
   * // Delete a few Cms_abouts
   * const { count } = await prisma.cms_about.deleteMany({
   *   where: {
   *     // ... provide filter here
   *   }
   * })
   * 
   */
  deleteMany<T extends cms_aboutDeleteManyArgs>(args?: Prisma.SelectSubset<T, cms_aboutDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Update zero or more Cms_abouts.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {cms_aboutUpdateManyArgs} args - Arguments to update one or more rows.
   * @example
   * // Update many Cms_abouts
   * const cms_about = await prisma.cms_about.updateMany({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: {
   *     // ... provide data here
   *   }
   * })
   * 
   */
  updateMany<T extends cms_aboutUpdateManyArgs>(args: Prisma.SelectSubset<T, cms_aboutUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload>

  /**
   * Update zero or more Cms_abouts and returns the data updated in the database.
   * @param {cms_aboutUpdateManyAndReturnArgs} args - Arguments to update many Cms_abouts.
   * @example
   * // Update many Cms_abouts
   * const cms_about = await prisma.cms_about.updateManyAndReturn({
   *   where: {
   *     // ... provide filter here
   *   },
   *   data: [
   *     // ... provide data here
   *   ]
   * })
   * 
   * // Update zero or more Cms_abouts and only return the `id`
   * const cms_aboutWithIdOnly = await prisma.cms_about.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<T extends cms_aboutUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, cms_aboutUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>

  /**
   * Create or update one Cms_about.
   * @param {cms_aboutUpsertArgs} args - Arguments to update or create a Cms_about.
   * @example
   * // Update or create a Cms_about
   * const cms_about = await prisma.cms_about.upsert({
   *   create: {
   *     // ... data to create a Cms_about
   *   },
   *   update: {
   *     // ... in case it already exists, update
   *   },
   *   where: {
   *     // ... the filter for the Cms_about we want to update
   *   }
   * })
   */
  upsert<T extends cms_aboutUpsertArgs>(args: Prisma.SelectSubset<T, cms_aboutUpsertArgs<ExtArgs>>): Prisma.Prisma__cms_aboutClient<runtime.Types.Result.GetResult<Prisma.$cms_aboutPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>


  /**
   * Count the number of Cms_abouts.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {cms_aboutCountArgs} args - Arguments to filter Cms_abouts to count.
   * @example
   * // Count the number of Cms_abouts
   * const count = await prisma.cms_about.count({
   *   where: {
   *     // ... the filter for the Cms_abouts we want to count
   *   }
   * })
  **/
  count<T extends cms_aboutCountArgs>(
    args?: Prisma.Subset<T, cms_aboutCountArgs>,
  ): Prisma.PrismaPromise<
    T extends runtime.Types.Utils.Record<'select', any>
      ? T['select'] extends true
        ? number
        : Prisma.GetScalarType<T['select'], Cms_aboutCountAggregateOutputType>
      : number
  >

  /**
   * Allows you to perform aggregations operations on a Cms_about.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {Cms_aboutAggregateArgs} 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<T extends Cms_aboutAggregateArgs>(args: Prisma.Subset<T, Cms_aboutAggregateArgs>): Prisma.PrismaPromise<GetCms_aboutAggregateType<T>>

  /**
   * Group by Cms_about.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {cms_aboutGroupByArgs} 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 cms_aboutGroupByArgs,
    HasSelectOrTake extends Prisma.Or<
      Prisma.Extends<'skip', Prisma.Keys<T>>,
      Prisma.Extends<'take', Prisma.Keys<T>>
    >,
    OrderByArg extends Prisma.True extends HasSelectOrTake
      ? { orderBy: cms_aboutGroupByArgs['orderBy'] }
      : { orderBy?: cms_aboutGroupByArgs['orderBy'] },
    OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>,
    ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
    ByValid extends Prisma.Has<ByFields, OrderFields>,
    HavingFields extends Prisma.GetHavingFields<T['having']>,
    HavingValid extends Prisma.Has<ByFields, HavingFields>,
    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<T>
    ? 'orderBy' extends Prisma.Keys<T>
      ? 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<T>
    ? 'orderBy' extends Prisma.Keys<T>
      ? 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<T, cms_aboutGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetCms_aboutGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
/**
 * Fields of the cms_about model
 */
readonly fields: cms_aboutFieldRefs;
}

/**
 * The delegate class that acts as a "Promise-like" for cms_about.
 * 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__cms_aboutClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
  readonly [Symbol.toStringTag]: "PrismaPromise"
  cms_pages<T extends Prisma.cms_pagesDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.cms_pagesDefaultArgs<ExtArgs>>): Prisma.Prisma__cms_pagesClient<runtime.Types.Result.GetResult<Prisma.$cms_pagesPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
  /**
   * Attaches callbacks for the resolution and/or rejection of the Promise.
   * @param onfulfilled The callback to execute when the Promise is resolved.
   * @param onrejected The callback to execute when the Promise is rejected.
   * @returns A Promise for the completion of which ever callback is executed.
   */
  then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2>
  /**
   * 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<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult>
  /**
   * 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<T>
}




/**
 * Fields of the cms_about model
 */
export interface cms_aboutFieldRefs {
  readonly id: Prisma.FieldRef<"cms_about", 'BigInt'>
  readonly page_id: Prisma.FieldRef<"cms_about", 'BigInt'>
  readonly section_name: Prisma.FieldRef<"cms_about", 'String'>
  readonly image: Prisma.FieldRef<"cms_about", 'String'>
  readonly html_content: Prisma.FieldRef<"cms_about", 'String'>
  readonly status: Prisma.FieldRef<"cms_about", 'Boolean'>
  readonly created_at: Prisma.FieldRef<"cms_about", 'DateTime'>
  readonly updated_at: Prisma.FieldRef<"cms_about", 'DateTime'>
}
    

// Custom InputTypes
/**
 * cms_about findUnique
 */
export type cms_aboutFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * Filter, which cms_about to fetch.
   */
  where: Prisma.cms_aboutWhereUniqueInput
}

/**
 * cms_about findUniqueOrThrow
 */
export type cms_aboutFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * Filter, which cms_about to fetch.
   */
  where: Prisma.cms_aboutWhereUniqueInput
}

/**
 * cms_about findFirst
 */
export type cms_aboutFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * Filter, which cms_about to fetch.
   */
  where?: Prisma.cms_aboutWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of cms_abouts to fetch.
   */
  orderBy?: Prisma.cms_aboutOrderByWithRelationInput | Prisma.cms_aboutOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for searching for cms_abouts.
   */
  cursor?: Prisma.cms_aboutWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` cms_abouts 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` cms_abouts.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
   * 
   * Filter by unique combinations of cms_abouts.
   */
  distinct?: Prisma.Cms_aboutScalarFieldEnum | Prisma.Cms_aboutScalarFieldEnum[]
}

/**
 * cms_about findFirstOrThrow
 */
export type cms_aboutFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * Filter, which cms_about to fetch.
   */
  where?: Prisma.cms_aboutWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of cms_abouts to fetch.
   */
  orderBy?: Prisma.cms_aboutOrderByWithRelationInput | Prisma.cms_aboutOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for searching for cms_abouts.
   */
  cursor?: Prisma.cms_aboutWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` cms_abouts 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` cms_abouts.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
   * 
   * Filter by unique combinations of cms_abouts.
   */
  distinct?: Prisma.Cms_aboutScalarFieldEnum | Prisma.Cms_aboutScalarFieldEnum[]
}

/**
 * cms_about findMany
 */
export type cms_aboutFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * Filter, which cms_abouts to fetch.
   */
  where?: Prisma.cms_aboutWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of cms_abouts to fetch.
   */
  orderBy?: Prisma.cms_aboutOrderByWithRelationInput | Prisma.cms_aboutOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the position for listing cms_abouts.
   */
  cursor?: Prisma.cms_aboutWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` cms_abouts 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` cms_abouts.
   */
  skip?: number
  distinct?: Prisma.Cms_aboutScalarFieldEnum | Prisma.Cms_aboutScalarFieldEnum[]
}

/**
 * cms_about create
 */
export type cms_aboutCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * The data needed to create a cms_about.
   */
  data: Prisma.XOR<Prisma.cms_aboutCreateInput, Prisma.cms_aboutUncheckedCreateInput>
}

/**
 * cms_about createMany
 */
export type cms_aboutCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to create many cms_abouts.
   */
  data: Prisma.cms_aboutCreateManyInput | Prisma.cms_aboutCreateManyInput[]
  skipDuplicates?: boolean
}

/**
 * cms_about createManyAndReturn
 */
export type cms_aboutCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelectCreateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * The data used to create many cms_abouts.
   */
  data: Prisma.cms_aboutCreateManyInput | Prisma.cms_aboutCreateManyInput[]
  skipDuplicates?: boolean
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutIncludeCreateManyAndReturn<ExtArgs> | null
}

/**
 * cms_about update
 */
export type cms_aboutUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * The data needed to update a cms_about.
   */
  data: Prisma.XOR<Prisma.cms_aboutUpdateInput, Prisma.cms_aboutUncheckedUpdateInput>
  /**
   * Choose, which cms_about to update.
   */
  where: Prisma.cms_aboutWhereUniqueInput
}

/**
 * cms_about updateMany
 */
export type cms_aboutUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to update cms_abouts.
   */
  data: Prisma.XOR<Prisma.cms_aboutUpdateManyMutationInput, Prisma.cms_aboutUncheckedUpdateManyInput>
  /**
   * Filter which cms_abouts to update
   */
  where?: Prisma.cms_aboutWhereInput
  /**
   * Limit how many cms_abouts to update.
   */
  limit?: number
}

/**
 * cms_about updateManyAndReturn
 */
export type cms_aboutUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelectUpdateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * The data used to update cms_abouts.
   */
  data: Prisma.XOR<Prisma.cms_aboutUpdateManyMutationInput, Prisma.cms_aboutUncheckedUpdateManyInput>
  /**
   * Filter which cms_abouts to update
   */
  where?: Prisma.cms_aboutWhereInput
  /**
   * Limit how many cms_abouts to update.
   */
  limit?: number
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutIncludeUpdateManyAndReturn<ExtArgs> | null
}

/**
 * cms_about upsert
 */
export type cms_aboutUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * The filter to search for the cms_about to update in case it exists.
   */
  where: Prisma.cms_aboutWhereUniqueInput
  /**
   * In case the cms_about found by the `where` argument doesn't exist, create a new cms_about with this data.
   */
  create: Prisma.XOR<Prisma.cms_aboutCreateInput, Prisma.cms_aboutUncheckedCreateInput>
  /**
   * In case the cms_about was found with the provided `where` argument, update it with this data.
   */
  update: Prisma.XOR<Prisma.cms_aboutUpdateInput, Prisma.cms_aboutUncheckedUpdateInput>
}

/**
 * cms_about delete
 */
export type cms_aboutDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
  /**
   * Filter which cms_about to delete.
   */
  where: Prisma.cms_aboutWhereUniqueInput
}

/**
 * cms_about deleteMany
 */
export type cms_aboutDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which cms_abouts to delete
   */
  where?: Prisma.cms_aboutWhereInput
  /**
   * Limit how many cms_abouts to delete.
   */
  limit?: number
}

/**
 * cms_about without action
 */
export type cms_aboutDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_about
   */
  select?: Prisma.cms_aboutSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_about
   */
  omit?: Prisma.cms_aboutOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_aboutInclude<ExtArgs> | null
}
