
/* !!! 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_trust_indicators` 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_trust_indicators
 * 
 */
export type cms_trust_indicatorsModel = runtime.Types.Result.DefaultSelection<Prisma.$cms_trust_indicatorsPayload>

export type AggregateCms_trust_indicators = {
  _count: Cms_trust_indicatorsCountAggregateOutputType | null
  _avg: Cms_trust_indicatorsAvgAggregateOutputType | null
  _sum: Cms_trust_indicatorsSumAggregateOutputType | null
  _min: Cms_trust_indicatorsMinAggregateOutputType | null
  _max: Cms_trust_indicatorsMaxAggregateOutputType | null
}

export type Cms_trust_indicatorsAvgAggregateOutputType = {
  id: number | null
  page_id: number | null
  sort_order: number | null
}

export type Cms_trust_indicatorsSumAggregateOutputType = {
  id: bigint | null
  page_id: bigint | null
  sort_order: number | null
}

export type Cms_trust_indicatorsMinAggregateOutputType = {
  id: bigint | null
  page_id: bigint | null
  title: string | null
  image: string | null
  sort_order: number | null
  status: boolean | null
  created_at: Date | null
  updated_at: Date | null
}

export type Cms_trust_indicatorsMaxAggregateOutputType = {
  id: bigint | null
  page_id: bigint | null
  title: string | null
  image: string | null
  sort_order: number | null
  status: boolean | null
  created_at: Date | null
  updated_at: Date | null
}

export type Cms_trust_indicatorsCountAggregateOutputType = {
  id: number
  page_id: number
  title: number
  image: number
  sort_order: number
  status: number
  created_at: number
  updated_at: number
  _all: number
}


export type Cms_trust_indicatorsAvgAggregateInputType = {
  id?: true
  page_id?: true
  sort_order?: true
}

export type Cms_trust_indicatorsSumAggregateInputType = {
  id?: true
  page_id?: true
  sort_order?: true
}

export type Cms_trust_indicatorsMinAggregateInputType = {
  id?: true
  page_id?: true
  title?: true
  image?: true
  sort_order?: true
  status?: true
  created_at?: true
  updated_at?: true
}

export type Cms_trust_indicatorsMaxAggregateInputType = {
  id?: true
  page_id?: true
  title?: true
  image?: true
  sort_order?: true
  status?: true
  created_at?: true
  updated_at?: true
}

export type Cms_trust_indicatorsCountAggregateInputType = {
  id?: true
  page_id?: true
  title?: true
  image?: true
  sort_order?: true
  status?: true
  created_at?: true
  updated_at?: true
  _all?: true
}

export type Cms_trust_indicatorsAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Filter which cms_trust_indicators to aggregate.
   */
  where?: Prisma.cms_trust_indicatorsWhereInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
   * 
   * Determine the order of cms_trust_indicators to fetch.
   */
  orderBy?: Prisma.cms_trust_indicatorsOrderByWithRelationInput | Prisma.cms_trust_indicatorsOrderByWithRelationInput[]
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
   * 
   * Sets the start position
   */
  cursor?: Prisma.cms_trust_indicatorsWhereUniqueInput
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
   * 
   * Take `±n` cms_trust_indicators 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_trust_indicators.
   */
  skip?: number
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Count returned cms_trust_indicators
  **/
  _count?: true | Cms_trust_indicatorsCountAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to average
  **/
  _avg?: Cms_trust_indicatorsAvgAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to sum
  **/
  _sum?: Cms_trust_indicatorsSumAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the minimum value
  **/
  _min?: Cms_trust_indicatorsMinAggregateInputType
  /**
   * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
   * 
   * Select which fields to find the maximum value
  **/
  _max?: Cms_trust_indicatorsMaxAggregateInputType
}

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




export type cms_trust_indicatorsGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  where?: Prisma.cms_trust_indicatorsWhereInput
  orderBy?: Prisma.cms_trust_indicatorsOrderByWithAggregationInput | Prisma.cms_trust_indicatorsOrderByWithAggregationInput[]
  by: Prisma.Cms_trust_indicatorsScalarFieldEnum[] | Prisma.Cms_trust_indicatorsScalarFieldEnum
  having?: Prisma.cms_trust_indicatorsScalarWhereWithAggregatesInput
  take?: number
  skip?: number
  _count?: Cms_trust_indicatorsCountAggregateInputType | true
  _avg?: Cms_trust_indicatorsAvgAggregateInputType
  _sum?: Cms_trust_indicatorsSumAggregateInputType
  _min?: Cms_trust_indicatorsMinAggregateInputType
  _max?: Cms_trust_indicatorsMaxAggregateInputType
}

export type Cms_trust_indicatorsGroupByOutputType = {
  id: bigint
  page_id: bigint
  title: string
  image: string | null
  sort_order: number | null
  status: boolean | null
  created_at: Date | null
  updated_at: Date | null
  _count: Cms_trust_indicatorsCountAggregateOutputType | null
  _avg: Cms_trust_indicatorsAvgAggregateOutputType | null
  _sum: Cms_trust_indicatorsSumAggregateOutputType | null
  _min: Cms_trust_indicatorsMinAggregateOutputType | null
  _max: Cms_trust_indicatorsMaxAggregateOutputType | null
}

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



export type cms_trust_indicatorsWhereInput = {
  AND?: Prisma.cms_trust_indicatorsWhereInput | Prisma.cms_trust_indicatorsWhereInput[]
  OR?: Prisma.cms_trust_indicatorsWhereInput[]
  NOT?: Prisma.cms_trust_indicatorsWhereInput | Prisma.cms_trust_indicatorsWhereInput[]
  id?: Prisma.BigIntFilter<"cms_trust_indicators"> | bigint | number
  page_id?: Prisma.BigIntFilter<"cms_trust_indicators"> | bigint | number
  title?: Prisma.StringFilter<"cms_trust_indicators"> | string
  image?: Prisma.StringNullableFilter<"cms_trust_indicators"> | string | null
  sort_order?: Prisma.IntNullableFilter<"cms_trust_indicators"> | number | null
  status?: Prisma.BoolNullableFilter<"cms_trust_indicators"> | boolean | null
  created_at?: Prisma.DateTimeNullableFilter<"cms_trust_indicators"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableFilter<"cms_trust_indicators"> | Date | string | null
  cms_pages?: Prisma.XOR<Prisma.Cms_pagesScalarRelationFilter, Prisma.cms_pagesWhereInput>
}

export type cms_trust_indicatorsOrderByWithRelationInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  title?: Prisma.SortOrder
  image?: Prisma.SortOrderInput | Prisma.SortOrder
  sort_order?: 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_trust_indicatorsWhereUniqueInput = Prisma.AtLeast<{
  id?: bigint | number
  AND?: Prisma.cms_trust_indicatorsWhereInput | Prisma.cms_trust_indicatorsWhereInput[]
  OR?: Prisma.cms_trust_indicatorsWhereInput[]
  NOT?: Prisma.cms_trust_indicatorsWhereInput | Prisma.cms_trust_indicatorsWhereInput[]
  page_id?: Prisma.BigIntFilter<"cms_trust_indicators"> | bigint | number
  title?: Prisma.StringFilter<"cms_trust_indicators"> | string
  image?: Prisma.StringNullableFilter<"cms_trust_indicators"> | string | null
  sort_order?: Prisma.IntNullableFilter<"cms_trust_indicators"> | number | null
  status?: Prisma.BoolNullableFilter<"cms_trust_indicators"> | boolean | null
  created_at?: Prisma.DateTimeNullableFilter<"cms_trust_indicators"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableFilter<"cms_trust_indicators"> | Date | string | null
  cms_pages?: Prisma.XOR<Prisma.Cms_pagesScalarRelationFilter, Prisma.cms_pagesWhereInput>
}, "id">

export type cms_trust_indicatorsOrderByWithAggregationInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  title?: Prisma.SortOrder
  image?: Prisma.SortOrderInput | Prisma.SortOrder
  sort_order?: Prisma.SortOrderInput | Prisma.SortOrder
  status?: Prisma.SortOrderInput | Prisma.SortOrder
  created_at?: Prisma.SortOrderInput | Prisma.SortOrder
  updated_at?: Prisma.SortOrderInput | Prisma.SortOrder
  _count?: Prisma.cms_trust_indicatorsCountOrderByAggregateInput
  _avg?: Prisma.cms_trust_indicatorsAvgOrderByAggregateInput
  _max?: Prisma.cms_trust_indicatorsMaxOrderByAggregateInput
  _min?: Prisma.cms_trust_indicatorsMinOrderByAggregateInput
  _sum?: Prisma.cms_trust_indicatorsSumOrderByAggregateInput
}

export type cms_trust_indicatorsScalarWhereWithAggregatesInput = {
  AND?: Prisma.cms_trust_indicatorsScalarWhereWithAggregatesInput | Prisma.cms_trust_indicatorsScalarWhereWithAggregatesInput[]
  OR?: Prisma.cms_trust_indicatorsScalarWhereWithAggregatesInput[]
  NOT?: Prisma.cms_trust_indicatorsScalarWhereWithAggregatesInput | Prisma.cms_trust_indicatorsScalarWhereWithAggregatesInput[]
  id?: Prisma.BigIntWithAggregatesFilter<"cms_trust_indicators"> | bigint | number
  page_id?: Prisma.BigIntWithAggregatesFilter<"cms_trust_indicators"> | bigint | number
  title?: Prisma.StringWithAggregatesFilter<"cms_trust_indicators"> | string
  image?: Prisma.StringNullableWithAggregatesFilter<"cms_trust_indicators"> | string | null
  sort_order?: Prisma.IntNullableWithAggregatesFilter<"cms_trust_indicators"> | number | null
  status?: Prisma.BoolNullableWithAggregatesFilter<"cms_trust_indicators"> | boolean | null
  created_at?: Prisma.DateTimeNullableWithAggregatesFilter<"cms_trust_indicators"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableWithAggregatesFilter<"cms_trust_indicators"> | Date | string | null
}

export type cms_trust_indicatorsCreateInput = {
  id?: bigint | number
  title: string
  image?: string | null
  sort_order?: number | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
  cms_pages: Prisma.cms_pagesCreateNestedOneWithoutCms_trust_indicatorsInput
}

export type cms_trust_indicatorsUncheckedCreateInput = {
  id?: bigint | number
  page_id: bigint | number
  title: string
  image?: string | null
  sort_order?: number | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_trust_indicatorsUpdateInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  title?: Prisma.StringFieldUpdateOperationsInput | string
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  sort_order?: Prisma.NullableIntFieldUpdateOperationsInput | number | 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_trust_indicatorsNestedInput
}

export type cms_trust_indicatorsUncheckedUpdateInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  page_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  title?: Prisma.StringFieldUpdateOperationsInput | string
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  sort_order?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type cms_trust_indicatorsCreateManyInput = {
  id?: bigint | number
  page_id: bigint | number
  title: string
  image?: string | null
  sort_order?: number | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_trust_indicatorsUpdateManyMutationInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  title?: Prisma.StringFieldUpdateOperationsInput | string
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  sort_order?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type cms_trust_indicatorsUncheckedUpdateManyInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  page_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  title?: Prisma.StringFieldUpdateOperationsInput | string
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  sort_order?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type Cms_trust_indicatorsListRelationFilter = {
  every?: Prisma.cms_trust_indicatorsWhereInput
  some?: Prisma.cms_trust_indicatorsWhereInput
  none?: Prisma.cms_trust_indicatorsWhereInput
}

export type cms_trust_indicatorsOrderByRelationAggregateInput = {
  _count?: Prisma.SortOrder
}

export type cms_trust_indicatorsCountOrderByAggregateInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  title?: Prisma.SortOrder
  image?: Prisma.SortOrder
  sort_order?: Prisma.SortOrder
  status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

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

export type cms_trust_indicatorsMaxOrderByAggregateInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  title?: Prisma.SortOrder
  image?: Prisma.SortOrder
  sort_order?: Prisma.SortOrder
  status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

export type cms_trust_indicatorsMinOrderByAggregateInput = {
  id?: Prisma.SortOrder
  page_id?: Prisma.SortOrder
  title?: Prisma.SortOrder
  image?: Prisma.SortOrder
  sort_order?: Prisma.SortOrder
  status?: Prisma.SortOrder
  created_at?: Prisma.SortOrder
  updated_at?: Prisma.SortOrder
}

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

export type cms_trust_indicatorsCreateNestedManyWithoutCms_pagesInput = {
  create?: Prisma.XOR<Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput, Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput> | Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput[] | Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput[]
  connectOrCreate?: Prisma.cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput | Prisma.cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput[]
  createMany?: Prisma.cms_trust_indicatorsCreateManyCms_pagesInputEnvelope
  connect?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
}

export type cms_trust_indicatorsUncheckedCreateNestedManyWithoutCms_pagesInput = {
  create?: Prisma.XOR<Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput, Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput> | Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput[] | Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput[]
  connectOrCreate?: Prisma.cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput | Prisma.cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput[]
  createMany?: Prisma.cms_trust_indicatorsCreateManyCms_pagesInputEnvelope
  connect?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
}

export type cms_trust_indicatorsUpdateManyWithoutCms_pagesNestedInput = {
  create?: Prisma.XOR<Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput, Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput> | Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput[] | Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput[]
  connectOrCreate?: Prisma.cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput | Prisma.cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput[]
  upsert?: Prisma.cms_trust_indicatorsUpsertWithWhereUniqueWithoutCms_pagesInput | Prisma.cms_trust_indicatorsUpsertWithWhereUniqueWithoutCms_pagesInput[]
  createMany?: Prisma.cms_trust_indicatorsCreateManyCms_pagesInputEnvelope
  set?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
  disconnect?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
  delete?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
  connect?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
  update?: Prisma.cms_trust_indicatorsUpdateWithWhereUniqueWithoutCms_pagesInput | Prisma.cms_trust_indicatorsUpdateWithWhereUniqueWithoutCms_pagesInput[]
  updateMany?: Prisma.cms_trust_indicatorsUpdateManyWithWhereWithoutCms_pagesInput | Prisma.cms_trust_indicatorsUpdateManyWithWhereWithoutCms_pagesInput[]
  deleteMany?: Prisma.cms_trust_indicatorsScalarWhereInput | Prisma.cms_trust_indicatorsScalarWhereInput[]
}

export type cms_trust_indicatorsUncheckedUpdateManyWithoutCms_pagesNestedInput = {
  create?: Prisma.XOR<Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput, Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput> | Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput[] | Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput[]
  connectOrCreate?: Prisma.cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput | Prisma.cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput[]
  upsert?: Prisma.cms_trust_indicatorsUpsertWithWhereUniqueWithoutCms_pagesInput | Prisma.cms_trust_indicatorsUpsertWithWhereUniqueWithoutCms_pagesInput[]
  createMany?: Prisma.cms_trust_indicatorsCreateManyCms_pagesInputEnvelope
  set?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
  disconnect?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
  delete?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
  connect?: Prisma.cms_trust_indicatorsWhereUniqueInput | Prisma.cms_trust_indicatorsWhereUniqueInput[]
  update?: Prisma.cms_trust_indicatorsUpdateWithWhereUniqueWithoutCms_pagesInput | Prisma.cms_trust_indicatorsUpdateWithWhereUniqueWithoutCms_pagesInput[]
  updateMany?: Prisma.cms_trust_indicatorsUpdateManyWithWhereWithoutCms_pagesInput | Prisma.cms_trust_indicatorsUpdateManyWithWhereWithoutCms_pagesInput[]
  deleteMany?: Prisma.cms_trust_indicatorsScalarWhereInput | Prisma.cms_trust_indicatorsScalarWhereInput[]
}

export type cms_trust_indicatorsCreateWithoutCms_pagesInput = {
  id?: bigint | number
  title: string
  image?: string | null
  sort_order?: number | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput = {
  id?: bigint | number
  title: string
  image?: string | null
  sort_order?: number | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_trust_indicatorsCreateOrConnectWithoutCms_pagesInput = {
  where: Prisma.cms_trust_indicatorsWhereUniqueInput
  create: Prisma.XOR<Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput, Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput>
}

export type cms_trust_indicatorsCreateManyCms_pagesInputEnvelope = {
  data: Prisma.cms_trust_indicatorsCreateManyCms_pagesInput | Prisma.cms_trust_indicatorsCreateManyCms_pagesInput[]
  skipDuplicates?: boolean
}

export type cms_trust_indicatorsUpsertWithWhereUniqueWithoutCms_pagesInput = {
  where: Prisma.cms_trust_indicatorsWhereUniqueInput
  update: Prisma.XOR<Prisma.cms_trust_indicatorsUpdateWithoutCms_pagesInput, Prisma.cms_trust_indicatorsUncheckedUpdateWithoutCms_pagesInput>
  create: Prisma.XOR<Prisma.cms_trust_indicatorsCreateWithoutCms_pagesInput, Prisma.cms_trust_indicatorsUncheckedCreateWithoutCms_pagesInput>
}

export type cms_trust_indicatorsUpdateWithWhereUniqueWithoutCms_pagesInput = {
  where: Prisma.cms_trust_indicatorsWhereUniqueInput
  data: Prisma.XOR<Prisma.cms_trust_indicatorsUpdateWithoutCms_pagesInput, Prisma.cms_trust_indicatorsUncheckedUpdateWithoutCms_pagesInput>
}

export type cms_trust_indicatorsUpdateManyWithWhereWithoutCms_pagesInput = {
  where: Prisma.cms_trust_indicatorsScalarWhereInput
  data: Prisma.XOR<Prisma.cms_trust_indicatorsUpdateManyMutationInput, Prisma.cms_trust_indicatorsUncheckedUpdateManyWithoutCms_pagesInput>
}

export type cms_trust_indicatorsScalarWhereInput = {
  AND?: Prisma.cms_trust_indicatorsScalarWhereInput | Prisma.cms_trust_indicatorsScalarWhereInput[]
  OR?: Prisma.cms_trust_indicatorsScalarWhereInput[]
  NOT?: Prisma.cms_trust_indicatorsScalarWhereInput | Prisma.cms_trust_indicatorsScalarWhereInput[]
  id?: Prisma.BigIntFilter<"cms_trust_indicators"> | bigint | number
  page_id?: Prisma.BigIntFilter<"cms_trust_indicators"> | bigint | number
  title?: Prisma.StringFilter<"cms_trust_indicators"> | string
  image?: Prisma.StringNullableFilter<"cms_trust_indicators"> | string | null
  sort_order?: Prisma.IntNullableFilter<"cms_trust_indicators"> | number | null
  status?: Prisma.BoolNullableFilter<"cms_trust_indicators"> | boolean | null
  created_at?: Prisma.DateTimeNullableFilter<"cms_trust_indicators"> | Date | string | null
  updated_at?: Prisma.DateTimeNullableFilter<"cms_trust_indicators"> | Date | string | null
}

export type cms_trust_indicatorsCreateManyCms_pagesInput = {
  id?: bigint | number
  title: string
  image?: string | null
  sort_order?: number | null
  status?: boolean | null
  created_at?: Date | string | null
  updated_at?: Date | string | null
}

export type cms_trust_indicatorsUpdateWithoutCms_pagesInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  title?: Prisma.StringFieldUpdateOperationsInput | string
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  sort_order?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type cms_trust_indicatorsUncheckedUpdateWithoutCms_pagesInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  title?: Prisma.StringFieldUpdateOperationsInput | string
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  sort_order?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}

export type cms_trust_indicatorsUncheckedUpdateManyWithoutCms_pagesInput = {
  id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number
  title?: Prisma.StringFieldUpdateOperationsInput | string
  image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
  sort_order?: Prisma.NullableIntFieldUpdateOperationsInput | number | null
  status?: Prisma.NullableBoolFieldUpdateOperationsInput | boolean | null
  created_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
  updated_at?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
}



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

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

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

export type cms_trust_indicatorsSelectScalar = {
  id?: boolean
  page_id?: boolean
  title?: boolean
  image?: boolean
  sort_order?: boolean
  status?: boolean
  created_at?: boolean
  updated_at?: boolean
}

export type cms_trust_indicatorsOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "page_id" | "title" | "image" | "sort_order" | "status" | "created_at" | "updated_at", ExtArgs["result"]["cms_trust_indicators"]>
export type cms_trust_indicatorsInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}
export type cms_trust_indicatorsIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}
export type cms_trust_indicatorsIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  cms_pages?: boolean | Prisma.cms_pagesDefaultArgs<ExtArgs>
}

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

export type cms_trust_indicatorsGetPayload<S extends boolean | null | undefined | cms_trust_indicatorsDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$cms_trust_indicatorsPayload, S>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

  /**
   * Group by Cms_trust_indicators.
   * Note, that providing `undefined` is treated as the value not being there.
   * Read more here: https://pris.ly/d/null-undefined
   * @param {cms_trust_indicatorsGroupByArgs} 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_trust_indicatorsGroupByArgs,
    HasSelectOrTake extends Prisma.Or<
      Prisma.Extends<'skip', Prisma.Keys<T>>,
      Prisma.Extends<'take', Prisma.Keys<T>>
    >,
    OrderByArg extends Prisma.True extends HasSelectOrTake
      ? { orderBy: cms_trust_indicatorsGroupByArgs['orderBy'] }
      : { orderBy?: cms_trust_indicatorsGroupByArgs['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_trust_indicatorsGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetCms_trust_indicatorsGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
/**
 * Fields of the cms_trust_indicators model
 */
readonly fields: cms_trust_indicatorsFieldRefs;
}

/**
 * The delegate class that acts as a "Promise-like" for cms_trust_indicators.
 * 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_trust_indicatorsClient<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_trust_indicators model
 */
export interface cms_trust_indicatorsFieldRefs {
  readonly id: Prisma.FieldRef<"cms_trust_indicators", 'BigInt'>
  readonly page_id: Prisma.FieldRef<"cms_trust_indicators", 'BigInt'>
  readonly title: Prisma.FieldRef<"cms_trust_indicators", 'String'>
  readonly image: Prisma.FieldRef<"cms_trust_indicators", 'String'>
  readonly sort_order: Prisma.FieldRef<"cms_trust_indicators", 'Int'>
  readonly status: Prisma.FieldRef<"cms_trust_indicators", 'Boolean'>
  readonly created_at: Prisma.FieldRef<"cms_trust_indicators", 'DateTime'>
  readonly updated_at: Prisma.FieldRef<"cms_trust_indicators", 'DateTime'>
}
    

// Custom InputTypes
/**
 * cms_trust_indicators findUnique
 */
export type cms_trust_indicatorsFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_trust_indicators
   */
  select?: Prisma.cms_trust_indicatorsSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_trust_indicators
   */
  omit?: Prisma.cms_trust_indicatorsOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_trust_indicatorsInclude<ExtArgs> | null
  /**
   * Filter, which cms_trust_indicators to fetch.
   */
  where: Prisma.cms_trust_indicatorsWhereUniqueInput
}

/**
 * cms_trust_indicators findUniqueOrThrow
 */
export type cms_trust_indicatorsFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_trust_indicators
   */
  select?: Prisma.cms_trust_indicatorsSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_trust_indicators
   */
  omit?: Prisma.cms_trust_indicatorsOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_trust_indicatorsInclude<ExtArgs> | null
  /**
   * Filter, which cms_trust_indicators to fetch.
   */
  where: Prisma.cms_trust_indicatorsWhereUniqueInput
}

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

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

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

/**
 * cms_trust_indicators create
 */
export type cms_trust_indicatorsCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_trust_indicators
   */
  select?: Prisma.cms_trust_indicatorsSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_trust_indicators
   */
  omit?: Prisma.cms_trust_indicatorsOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_trust_indicatorsInclude<ExtArgs> | null
  /**
   * The data needed to create a cms_trust_indicators.
   */
  data: Prisma.XOR<Prisma.cms_trust_indicatorsCreateInput, Prisma.cms_trust_indicatorsUncheckedCreateInput>
}

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

/**
 * cms_trust_indicators createManyAndReturn
 */
export type cms_trust_indicatorsCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_trust_indicators
   */
  select?: Prisma.cms_trust_indicatorsSelectCreateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the cms_trust_indicators
   */
  omit?: Prisma.cms_trust_indicatorsOmit<ExtArgs> | null
  /**
   * The data used to create many cms_trust_indicators.
   */
  data: Prisma.cms_trust_indicatorsCreateManyInput | Prisma.cms_trust_indicatorsCreateManyInput[]
  skipDuplicates?: boolean
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_trust_indicatorsIncludeCreateManyAndReturn<ExtArgs> | null
}

/**
 * cms_trust_indicators update
 */
export type cms_trust_indicatorsUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_trust_indicators
   */
  select?: Prisma.cms_trust_indicatorsSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_trust_indicators
   */
  omit?: Prisma.cms_trust_indicatorsOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_trust_indicatorsInclude<ExtArgs> | null
  /**
   * The data needed to update a cms_trust_indicators.
   */
  data: Prisma.XOR<Prisma.cms_trust_indicatorsUpdateInput, Prisma.cms_trust_indicatorsUncheckedUpdateInput>
  /**
   * Choose, which cms_trust_indicators to update.
   */
  where: Prisma.cms_trust_indicatorsWhereUniqueInput
}

/**
 * cms_trust_indicators updateMany
 */
export type cms_trust_indicatorsUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * The data used to update cms_trust_indicators.
   */
  data: Prisma.XOR<Prisma.cms_trust_indicatorsUpdateManyMutationInput, Prisma.cms_trust_indicatorsUncheckedUpdateManyInput>
  /**
   * Filter which cms_trust_indicators to update
   */
  where?: Prisma.cms_trust_indicatorsWhereInput
  /**
   * Limit how many cms_trust_indicators to update.
   */
  limit?: number
}

/**
 * cms_trust_indicators updateManyAndReturn
 */
export type cms_trust_indicatorsUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_trust_indicators
   */
  select?: Prisma.cms_trust_indicatorsSelectUpdateManyAndReturn<ExtArgs> | null
  /**
   * Omit specific fields from the cms_trust_indicators
   */
  omit?: Prisma.cms_trust_indicatorsOmit<ExtArgs> | null
  /**
   * The data used to update cms_trust_indicators.
   */
  data: Prisma.XOR<Prisma.cms_trust_indicatorsUpdateManyMutationInput, Prisma.cms_trust_indicatorsUncheckedUpdateManyInput>
  /**
   * Filter which cms_trust_indicators to update
   */
  where?: Prisma.cms_trust_indicatorsWhereInput
  /**
   * Limit how many cms_trust_indicators to update.
   */
  limit?: number
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_trust_indicatorsIncludeUpdateManyAndReturn<ExtArgs> | null
}

/**
 * cms_trust_indicators upsert
 */
export type cms_trust_indicatorsUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_trust_indicators
   */
  select?: Prisma.cms_trust_indicatorsSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_trust_indicators
   */
  omit?: Prisma.cms_trust_indicatorsOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_trust_indicatorsInclude<ExtArgs> | null
  /**
   * The filter to search for the cms_trust_indicators to update in case it exists.
   */
  where: Prisma.cms_trust_indicatorsWhereUniqueInput
  /**
   * In case the cms_trust_indicators found by the `where` argument doesn't exist, create a new cms_trust_indicators with this data.
   */
  create: Prisma.XOR<Prisma.cms_trust_indicatorsCreateInput, Prisma.cms_trust_indicatorsUncheckedCreateInput>
  /**
   * In case the cms_trust_indicators was found with the provided `where` argument, update it with this data.
   */
  update: Prisma.XOR<Prisma.cms_trust_indicatorsUpdateInput, Prisma.cms_trust_indicatorsUncheckedUpdateInput>
}

/**
 * cms_trust_indicators delete
 */
export type cms_trust_indicatorsDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
  /**
   * Select specific fields to fetch from the cms_trust_indicators
   */
  select?: Prisma.cms_trust_indicatorsSelect<ExtArgs> | null
  /**
   * Omit specific fields from the cms_trust_indicators
   */
  omit?: Prisma.cms_trust_indicatorsOmit<ExtArgs> | null
  /**
   * Choose, which related nodes to fetch as well
   */
  include?: Prisma.cms_trust_indicatorsInclude<ExtArgs> | null
  /**
   * Filter which cms_trust_indicators to delete.
   */
  where: Prisma.cms_trust_indicatorsWhereUniqueInput
}

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

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