@creator.co/creatorco-prisma-client 1.0.11 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -283,6 +283,11 @@ export type RakutenActivity = $Result.DefaultSelection<Prisma.$RakutenActivityPa
283
283
  *
284
284
  */
285
285
  export type SlowQueries = $Result.DefaultSelection<Prisma.$SlowQueriesPayload>
286
+ /**
287
+ * Model CreatorSearchFilter
288
+ *
289
+ */
290
+ export type CreatorSearchFilter = $Result.DefaultSelection<Prisma.$CreatorSearchFilterPayload>
286
291
 
287
292
  /**
288
293
  * ## Prisma Client ʲˢ
@@ -945,6 +950,16 @@ export class PrismaClient<
945
950
  * ```
946
951
  */
947
952
  get slowQueries(): Prisma.SlowQueriesDelegate<ExtArgs>;
953
+
954
+ /**
955
+ * `prisma.creatorSearchFilter`: Exposes CRUD operations for the **CreatorSearchFilter** model.
956
+ * Example usage:
957
+ * ```ts
958
+ * // Fetch zero or more CreatorSearchFilters
959
+ * const creatorSearchFilters = await prisma.creatorSearchFilter.findMany()
960
+ * ```
961
+ */
962
+ get creatorSearchFilter(): Prisma.CreatorSearchFilterDelegate<ExtArgs>;
948
963
  }
949
964
 
950
965
  export namespace Prisma {
@@ -1468,7 +1483,8 @@ export namespace Prisma {
1468
1483
  ListToSocialPost: 'ListToSocialPost',
1469
1484
  OptInView: 'OptInView',
1470
1485
  RakutenActivity: 'RakutenActivity',
1471
- SlowQueries: 'SlowQueries'
1486
+ SlowQueries: 'SlowQueries',
1487
+ CreatorSearchFilter: 'CreatorSearchFilter'
1472
1488
  };
1473
1489
 
1474
1490
  export type ModelName = (typeof ModelName)[keyof typeof ModelName]
@@ -1485,7 +1501,7 @@ export namespace Prisma {
1485
1501
 
1486
1502
  export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
1487
1503
  meta: {
1488
- modelProps: 'user' | 'log' | 'creatorProfile' | 'instagramProfile' | 'tiktokProfile' | 'youtubeProfile' | 'twitchProfile' | 'facebookProfile' | 'twitterProfile' | 'brandUserProfile' | 'brand' | 'searchContacts' | 'reportCredits' | 'brandToImage' | 'brandToCategory' | 'creatorToCategory' | 'chat' | 'message' | 'campaign' | 'campaignPin' | 'campaignToImage' | 'campaignToCategory' | 'campaignToCountry' | 'variable' | 'variableOption' | 'step' | 'campaignStep' | 'optInStep' | 'category' | 'optIn' | 'optInVariable' | 'socialPost' | 'socialPostTag' | 'image' | 'brandImage' | 'country' | 'state' | 'paymentTransaction' | 'brandAffiliateLink' | 'affiliateLink' | 'affiliateClick' | 'affiliateEvent' | 'savedFile' | 'campaignInvite' | 'creatorList' | 'creatorListItem' | 'socialProfile' | 'messageTemplate' | 'emailTemplate' | 'socialListeningList' | 'listToSocialPost' | 'optInView' | 'rakutenActivity' | 'slowQueries'
1504
+ modelProps: 'user' | 'log' | 'creatorProfile' | 'instagramProfile' | 'tiktokProfile' | 'youtubeProfile' | 'twitchProfile' | 'facebookProfile' | 'twitterProfile' | 'brandUserProfile' | 'brand' | 'searchContacts' | 'reportCredits' | 'brandToImage' | 'brandToCategory' | 'creatorToCategory' | 'chat' | 'message' | 'campaign' | 'campaignPin' | 'campaignToImage' | 'campaignToCategory' | 'campaignToCountry' | 'variable' | 'variableOption' | 'step' | 'campaignStep' | 'optInStep' | 'category' | 'optIn' | 'optInVariable' | 'socialPost' | 'socialPostTag' | 'image' | 'brandImage' | 'country' | 'state' | 'paymentTransaction' | 'brandAffiliateLink' | 'affiliateLink' | 'affiliateClick' | 'affiliateEvent' | 'savedFile' | 'campaignInvite' | 'creatorList' | 'creatorListItem' | 'socialProfile' | 'messageTemplate' | 'emailTemplate' | 'socialListeningList' | 'listToSocialPost' | 'optInView' | 'rakutenActivity' | 'slowQueries' | 'creatorSearchFilter'
1489
1505
  txIsolationLevel: Prisma.TransactionIsolationLevel
1490
1506
  },
1491
1507
  model: {
@@ -5053,6 +5069,72 @@ export namespace Prisma {
5053
5069
  }
5054
5070
  }
5055
5071
  }
5072
+ CreatorSearchFilter: {
5073
+ payload: Prisma.$CreatorSearchFilterPayload<ExtArgs>
5074
+ fields: Prisma.CreatorSearchFilterFieldRefs
5075
+ operations: {
5076
+ findUnique: {
5077
+ args: Prisma.CreatorSearchFilterFindUniqueArgs<ExtArgs>,
5078
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload> | null
5079
+ }
5080
+ findUniqueOrThrow: {
5081
+ args: Prisma.CreatorSearchFilterFindUniqueOrThrowArgs<ExtArgs>,
5082
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload>
5083
+ }
5084
+ findFirst: {
5085
+ args: Prisma.CreatorSearchFilterFindFirstArgs<ExtArgs>,
5086
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload> | null
5087
+ }
5088
+ findFirstOrThrow: {
5089
+ args: Prisma.CreatorSearchFilterFindFirstOrThrowArgs<ExtArgs>,
5090
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload>
5091
+ }
5092
+ findMany: {
5093
+ args: Prisma.CreatorSearchFilterFindManyArgs<ExtArgs>,
5094
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload>[]
5095
+ }
5096
+ create: {
5097
+ args: Prisma.CreatorSearchFilterCreateArgs<ExtArgs>,
5098
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload>
5099
+ }
5100
+ createMany: {
5101
+ args: Prisma.CreatorSearchFilterCreateManyArgs<ExtArgs>,
5102
+ result: Prisma.BatchPayload
5103
+ }
5104
+ delete: {
5105
+ args: Prisma.CreatorSearchFilterDeleteArgs<ExtArgs>,
5106
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload>
5107
+ }
5108
+ update: {
5109
+ args: Prisma.CreatorSearchFilterUpdateArgs<ExtArgs>,
5110
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload>
5111
+ }
5112
+ deleteMany: {
5113
+ args: Prisma.CreatorSearchFilterDeleteManyArgs<ExtArgs>,
5114
+ result: Prisma.BatchPayload
5115
+ }
5116
+ updateMany: {
5117
+ args: Prisma.CreatorSearchFilterUpdateManyArgs<ExtArgs>,
5118
+ result: Prisma.BatchPayload
5119
+ }
5120
+ upsert: {
5121
+ args: Prisma.CreatorSearchFilterUpsertArgs<ExtArgs>,
5122
+ result: $Utils.PayloadToResult<Prisma.$CreatorSearchFilterPayload>
5123
+ }
5124
+ aggregate: {
5125
+ args: Prisma.CreatorSearchFilterAggregateArgs<ExtArgs>,
5126
+ result: $Utils.Optional<AggregateCreatorSearchFilter>
5127
+ }
5128
+ groupBy: {
5129
+ args: Prisma.CreatorSearchFilterGroupByArgs<ExtArgs>,
5130
+ result: $Utils.Optional<CreatorSearchFilterGroupByOutputType>[]
5131
+ }
5132
+ count: {
5133
+ args: Prisma.CreatorSearchFilterCountArgs<ExtArgs>,
5134
+ result: $Utils.Optional<CreatorSearchFilterCountAggregateOutputType> | number
5135
+ }
5136
+ }
5137
+ }
5056
5138
  }
5057
5139
  } & {
5058
5140
  other: {
@@ -5394,6 +5476,7 @@ export namespace Prisma {
5394
5476
  socialListeningLists: number
5395
5477
  campaignInvites: number
5396
5478
  images: number
5479
+ creatorsearchfilter: number
5397
5480
  childBrands: number
5398
5481
  }
5399
5482
 
@@ -5412,6 +5495,7 @@ export namespace Prisma {
5412
5495
  socialListeningLists?: boolean | BrandCountOutputTypeCountSocialListeningListsArgs
5413
5496
  campaignInvites?: boolean | BrandCountOutputTypeCountCampaignInvitesArgs
5414
5497
  images?: boolean | BrandCountOutputTypeCountImagesArgs
5498
+ creatorsearchfilter?: boolean | BrandCountOutputTypeCountCreatorsearchfilterArgs
5415
5499
  childBrands?: boolean | BrandCountOutputTypeCountChildBrandsArgs
5416
5500
  }
5417
5501
 
@@ -5540,6 +5624,14 @@ export namespace Prisma {
5540
5624
  }
5541
5625
 
5542
5626
 
5627
+ /**
5628
+ * BrandCountOutputType without action
5629
+ */
5630
+ export type BrandCountOutputTypeCountCreatorsearchfilterArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5631
+ where?: CreatorSearchFilterWhereInput
5632
+ }
5633
+
5634
+
5543
5635
  /**
5544
5636
  * BrandCountOutputType without action
5545
5637
  */
@@ -18077,6 +18169,7 @@ export namespace Prisma {
18077
18169
  socialListeningLists?: boolean | Brand$socialListeningListsArgs<ExtArgs>
18078
18170
  campaignInvites?: boolean | Brand$campaignInvitesArgs<ExtArgs>
18079
18171
  images?: boolean | Brand$imagesArgs<ExtArgs>
18172
+ creatorsearchfilter?: boolean | Brand$creatorsearchfilterArgs<ExtArgs>
18080
18173
  parentBrand?: boolean | Brand$parentBrandArgs<ExtArgs>
18081
18174
  childBrands?: boolean | Brand$childBrandsArgs<ExtArgs>
18082
18175
  _count?: boolean | BrandCountOutputTypeDefaultArgs<ExtArgs>
@@ -18117,6 +18210,7 @@ export namespace Prisma {
18117
18210
  socialListeningLists?: boolean | Brand$socialListeningListsArgs<ExtArgs>
18118
18211
  campaignInvites?: boolean | Brand$campaignInvitesArgs<ExtArgs>
18119
18212
  images?: boolean | Brand$imagesArgs<ExtArgs>
18213
+ creatorsearchfilter?: boolean | Brand$creatorsearchfilterArgs<ExtArgs>
18120
18214
  parentBrand?: boolean | Brand$parentBrandArgs<ExtArgs>
18121
18215
  childBrands?: boolean | Brand$childBrandsArgs<ExtArgs>
18122
18216
  _count?: boolean | BrandCountOutputTypeDefaultArgs<ExtArgs>
@@ -18144,6 +18238,7 @@ export namespace Prisma {
18144
18238
  socialListeningLists: Prisma.$SocialListeningListPayload<ExtArgs>[]
18145
18239
  campaignInvites: Prisma.$CampaignInvitePayload<ExtArgs>[]
18146
18240
  images: Prisma.$BrandToImagePayload<ExtArgs>[]
18241
+ creatorsearchfilter: Prisma.$CreatorSearchFilterPayload<ExtArgs>[]
18147
18242
  parentBrand: Prisma.$BrandPayload<ExtArgs> | null
18148
18243
  childBrands: Prisma.$BrandPayload<ExtArgs>[]
18149
18244
  }
@@ -18562,6 +18657,8 @@ export namespace Prisma {
18562
18657
 
18563
18658
  images<T extends Brand$imagesArgs<ExtArgs> = {}>(args?: Subset<T, Brand$imagesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$BrandToImagePayload<ExtArgs>, T, 'findMany'> | Null>;
18564
18659
 
18660
+ creatorsearchfilter<T extends Brand$creatorsearchfilterArgs<ExtArgs> = {}>(args?: Subset<T, Brand$creatorsearchfilterArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findMany'> | Null>;
18661
+
18565
18662
  parentBrand<T extends Brand$parentBrandArgs<ExtArgs> = {}>(args?: Subset<T, Brand$parentBrandArgs<ExtArgs>>): Prisma__BrandClient<$Result.GetResult<Prisma.$BrandPayload<ExtArgs>, T, 'findUniqueOrThrow'> | null, null, ExtArgs>;
18566
18663
 
18567
18664
  childBrands<T extends Brand$childBrandsArgs<ExtArgs> = {}>(args?: Subset<T, Brand$childBrandsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$BrandPayload<ExtArgs>, T, 'findMany'> | Null>;
@@ -19276,6 +19373,27 @@ export namespace Prisma {
19276
19373
  }
19277
19374
 
19278
19375
 
19376
+ /**
19377
+ * Brand.creatorsearchfilter
19378
+ */
19379
+ export type Brand$creatorsearchfilterArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
19380
+ /**
19381
+ * Select specific fields to fetch from the CreatorSearchFilter
19382
+ */
19383
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
19384
+ /**
19385
+ * Choose, which related nodes to fetch as well.
19386
+ */
19387
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
19388
+ where?: CreatorSearchFilterWhereInput
19389
+ orderBy?: CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput | CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput[]
19390
+ cursor?: CreatorSearchFilterWhereUniqueInput
19391
+ take?: number
19392
+ skip?: number
19393
+ distinct?: CreatorSearchFilterScalarFieldEnum | CreatorSearchFilterScalarFieldEnum[]
19394
+ }
19395
+
19396
+
19279
19397
  /**
19280
19398
  * Brand.parentBrand
19281
19399
  */
@@ -63500,6 +63618,969 @@ export namespace Prisma {
63500
63618
 
63501
63619
 
63502
63620
 
63621
+ /**
63622
+ * Model CreatorSearchFilter
63623
+ */
63624
+
63625
+ export type AggregateCreatorSearchFilter = {
63626
+ _count: CreatorSearchFilterCountAggregateOutputType | null
63627
+ _avg: CreatorSearchFilterAvgAggregateOutputType | null
63628
+ _sum: CreatorSearchFilterSumAggregateOutputType | null
63629
+ _min: CreatorSearchFilterMinAggregateOutputType | null
63630
+ _max: CreatorSearchFilterMaxAggregateOutputType | null
63631
+ }
63632
+
63633
+ export type CreatorSearchFilterAvgAggregateOutputType = {
63634
+ id: number | null
63635
+ brandId: number | null
63636
+ }
63637
+
63638
+ export type CreatorSearchFilterSumAggregateOutputType = {
63639
+ id: number | null
63640
+ brandId: number | null
63641
+ }
63642
+
63643
+ export type CreatorSearchFilterMinAggregateOutputType = {
63644
+ id: number | null
63645
+ brandId: number | null
63646
+ title: string | null
63647
+ createdAt: Date | null
63648
+ updatedAt: Date | null
63649
+ }
63650
+
63651
+ export type CreatorSearchFilterMaxAggregateOutputType = {
63652
+ id: number | null
63653
+ brandId: number | null
63654
+ title: string | null
63655
+ createdAt: Date | null
63656
+ updatedAt: Date | null
63657
+ }
63658
+
63659
+ export type CreatorSearchFilterCountAggregateOutputType = {
63660
+ id: number
63661
+ brandId: number
63662
+ title: number
63663
+ filters: number
63664
+ createdAt: number
63665
+ updatedAt: number
63666
+ _all: number
63667
+ }
63668
+
63669
+
63670
+ export type CreatorSearchFilterAvgAggregateInputType = {
63671
+ id?: true
63672
+ brandId?: true
63673
+ }
63674
+
63675
+ export type CreatorSearchFilterSumAggregateInputType = {
63676
+ id?: true
63677
+ brandId?: true
63678
+ }
63679
+
63680
+ export type CreatorSearchFilterMinAggregateInputType = {
63681
+ id?: true
63682
+ brandId?: true
63683
+ title?: true
63684
+ createdAt?: true
63685
+ updatedAt?: true
63686
+ }
63687
+
63688
+ export type CreatorSearchFilterMaxAggregateInputType = {
63689
+ id?: true
63690
+ brandId?: true
63691
+ title?: true
63692
+ createdAt?: true
63693
+ updatedAt?: true
63694
+ }
63695
+
63696
+ export type CreatorSearchFilterCountAggregateInputType = {
63697
+ id?: true
63698
+ brandId?: true
63699
+ title?: true
63700
+ filters?: true
63701
+ createdAt?: true
63702
+ updatedAt?: true
63703
+ _all?: true
63704
+ }
63705
+
63706
+ export type CreatorSearchFilterAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
63707
+ /**
63708
+ * Filter which CreatorSearchFilter to aggregate.
63709
+ */
63710
+ where?: CreatorSearchFilterWhereInput
63711
+ /**
63712
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
63713
+ *
63714
+ * Determine the order of CreatorSearchFilters to fetch.
63715
+ */
63716
+ orderBy?: CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput | CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput[]
63717
+ /**
63718
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
63719
+ *
63720
+ * Sets the start position
63721
+ */
63722
+ cursor?: CreatorSearchFilterWhereUniqueInput
63723
+ /**
63724
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
63725
+ *
63726
+ * Take `±n` CreatorSearchFilters from the position of the cursor.
63727
+ */
63728
+ take?: number
63729
+ /**
63730
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
63731
+ *
63732
+ * Skip the first `n` CreatorSearchFilters.
63733
+ */
63734
+ skip?: number
63735
+ /**
63736
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
63737
+ *
63738
+ * Count returned CreatorSearchFilters
63739
+ **/
63740
+ _count?: true | CreatorSearchFilterCountAggregateInputType
63741
+ /**
63742
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
63743
+ *
63744
+ * Select which fields to average
63745
+ **/
63746
+ _avg?: CreatorSearchFilterAvgAggregateInputType
63747
+ /**
63748
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
63749
+ *
63750
+ * Select which fields to sum
63751
+ **/
63752
+ _sum?: CreatorSearchFilterSumAggregateInputType
63753
+ /**
63754
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
63755
+ *
63756
+ * Select which fields to find the minimum value
63757
+ **/
63758
+ _min?: CreatorSearchFilterMinAggregateInputType
63759
+ /**
63760
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
63761
+ *
63762
+ * Select which fields to find the maximum value
63763
+ **/
63764
+ _max?: CreatorSearchFilterMaxAggregateInputType
63765
+ }
63766
+
63767
+ export type GetCreatorSearchFilterAggregateType<T extends CreatorSearchFilterAggregateArgs> = {
63768
+ [P in keyof T & keyof AggregateCreatorSearchFilter]: P extends '_count' | 'count'
63769
+ ? T[P] extends true
63770
+ ? number
63771
+ : GetScalarType<T[P], AggregateCreatorSearchFilter[P]>
63772
+ : GetScalarType<T[P], AggregateCreatorSearchFilter[P]>
63773
+ }
63774
+
63775
+
63776
+
63777
+
63778
+ export type CreatorSearchFilterGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
63779
+ where?: CreatorSearchFilterWhereInput
63780
+ orderBy?: CreatorSearchFilterOrderByWithAggregationInput | CreatorSearchFilterOrderByWithAggregationInput[]
63781
+ by: CreatorSearchFilterScalarFieldEnum[] | CreatorSearchFilterScalarFieldEnum
63782
+ having?: CreatorSearchFilterScalarWhereWithAggregatesInput
63783
+ take?: number
63784
+ skip?: number
63785
+ _count?: CreatorSearchFilterCountAggregateInputType | true
63786
+ _avg?: CreatorSearchFilterAvgAggregateInputType
63787
+ _sum?: CreatorSearchFilterSumAggregateInputType
63788
+ _min?: CreatorSearchFilterMinAggregateInputType
63789
+ _max?: CreatorSearchFilterMaxAggregateInputType
63790
+ }
63791
+
63792
+ export type CreatorSearchFilterGroupByOutputType = {
63793
+ id: number
63794
+ brandId: number
63795
+ title: string
63796
+ filters: JsonValue
63797
+ createdAt: Date
63798
+ updatedAt: Date | null
63799
+ _count: CreatorSearchFilterCountAggregateOutputType | null
63800
+ _avg: CreatorSearchFilterAvgAggregateOutputType | null
63801
+ _sum: CreatorSearchFilterSumAggregateOutputType | null
63802
+ _min: CreatorSearchFilterMinAggregateOutputType | null
63803
+ _max: CreatorSearchFilterMaxAggregateOutputType | null
63804
+ }
63805
+
63806
+ type GetCreatorSearchFilterGroupByPayload<T extends CreatorSearchFilterGroupByArgs> = Prisma.PrismaPromise<
63807
+ Array<
63808
+ PickEnumerable<CreatorSearchFilterGroupByOutputType, T['by']> &
63809
+ {
63810
+ [P in ((keyof T) & (keyof CreatorSearchFilterGroupByOutputType))]: P extends '_count'
63811
+ ? T[P] extends boolean
63812
+ ? number
63813
+ : GetScalarType<T[P], CreatorSearchFilterGroupByOutputType[P]>
63814
+ : GetScalarType<T[P], CreatorSearchFilterGroupByOutputType[P]>
63815
+ }
63816
+ >
63817
+ >
63818
+
63819
+
63820
+ export type CreatorSearchFilterSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
63821
+ id?: boolean
63822
+ brandId?: boolean
63823
+ title?: boolean
63824
+ filters?: boolean
63825
+ createdAt?: boolean
63826
+ updatedAt?: boolean
63827
+ brand?: boolean | BrandDefaultArgs<ExtArgs>
63828
+ }, ExtArgs["result"]["creatorSearchFilter"]>
63829
+
63830
+ export type CreatorSearchFilterSelectScalar = {
63831
+ id?: boolean
63832
+ brandId?: boolean
63833
+ title?: boolean
63834
+ filters?: boolean
63835
+ createdAt?: boolean
63836
+ updatedAt?: boolean
63837
+ }
63838
+
63839
+ export type CreatorSearchFilterInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
63840
+ brand?: boolean | BrandDefaultArgs<ExtArgs>
63841
+ }
63842
+
63843
+
63844
+ export type $CreatorSearchFilterPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
63845
+ name: "CreatorSearchFilter"
63846
+ objects: {
63847
+ brand: Prisma.$BrandPayload<ExtArgs>
63848
+ }
63849
+ scalars: $Extensions.GetPayloadResult<{
63850
+ id: number
63851
+ brandId: number
63852
+ title: string
63853
+ filters: Prisma.JsonValue
63854
+ createdAt: Date
63855
+ updatedAt: Date | null
63856
+ }, ExtArgs["result"]["creatorSearchFilter"]>
63857
+ composites: {}
63858
+ }
63859
+
63860
+
63861
+ type CreatorSearchFilterGetPayload<S extends boolean | null | undefined | CreatorSearchFilterDefaultArgs> = $Result.GetResult<Prisma.$CreatorSearchFilterPayload, S>
63862
+
63863
+ type CreatorSearchFilterCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
63864
+ Omit<CreatorSearchFilterFindManyArgs, 'select' | 'include' | 'distinct' > & {
63865
+ select?: CreatorSearchFilterCountAggregateInputType | true
63866
+ }
63867
+
63868
+ export interface CreatorSearchFilterDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
63869
+ [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['CreatorSearchFilter'], meta: { name: 'CreatorSearchFilter' } }
63870
+ /**
63871
+ * Find zero or one CreatorSearchFilter that matches the filter.
63872
+ * @param {CreatorSearchFilterFindUniqueArgs} args - Arguments to find a CreatorSearchFilter
63873
+ * @example
63874
+ * // Get one CreatorSearchFilter
63875
+ * const creatorSearchFilter = await prisma.creatorSearchFilter.findUnique({
63876
+ * where: {
63877
+ * // ... provide filter here
63878
+ * }
63879
+ * })
63880
+ **/
63881
+ findUnique<T extends CreatorSearchFilterFindUniqueArgs<ExtArgs>>(
63882
+ args: SelectSubset<T, CreatorSearchFilterFindUniqueArgs<ExtArgs>>
63883
+ ): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findUnique'> | null, null, ExtArgs>
63884
+
63885
+ /**
63886
+ * Find one CreatorSearchFilter that matches the filter or throw an error with `error.code='P2025'`
63887
+ * if no matches were found.
63888
+ * @param {CreatorSearchFilterFindUniqueOrThrowArgs} args - Arguments to find a CreatorSearchFilter
63889
+ * @example
63890
+ * // Get one CreatorSearchFilter
63891
+ * const creatorSearchFilter = await prisma.creatorSearchFilter.findUniqueOrThrow({
63892
+ * where: {
63893
+ * // ... provide filter here
63894
+ * }
63895
+ * })
63896
+ **/
63897
+ findUniqueOrThrow<T extends CreatorSearchFilterFindUniqueOrThrowArgs<ExtArgs>>(
63898
+ args?: SelectSubset<T, CreatorSearchFilterFindUniqueOrThrowArgs<ExtArgs>>
63899
+ ): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findUniqueOrThrow'>, never, ExtArgs>
63900
+
63901
+ /**
63902
+ * Find the first CreatorSearchFilter that matches the filter.
63903
+ * Note, that providing `undefined` is treated as the value not being there.
63904
+ * Read more here: https://pris.ly/d/null-undefined
63905
+ * @param {CreatorSearchFilterFindFirstArgs} args - Arguments to find a CreatorSearchFilter
63906
+ * @example
63907
+ * // Get one CreatorSearchFilter
63908
+ * const creatorSearchFilter = await prisma.creatorSearchFilter.findFirst({
63909
+ * where: {
63910
+ * // ... provide filter here
63911
+ * }
63912
+ * })
63913
+ **/
63914
+ findFirst<T extends CreatorSearchFilterFindFirstArgs<ExtArgs>>(
63915
+ args?: SelectSubset<T, CreatorSearchFilterFindFirstArgs<ExtArgs>>
63916
+ ): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findFirst'> | null, null, ExtArgs>
63917
+
63918
+ /**
63919
+ * Find the first CreatorSearchFilter that matches the filter or
63920
+ * throw `PrismaKnownClientError` with `P2025` code if no matches were found.
63921
+ * Note, that providing `undefined` is treated as the value not being there.
63922
+ * Read more here: https://pris.ly/d/null-undefined
63923
+ * @param {CreatorSearchFilterFindFirstOrThrowArgs} args - Arguments to find a CreatorSearchFilter
63924
+ * @example
63925
+ * // Get one CreatorSearchFilter
63926
+ * const creatorSearchFilter = await prisma.creatorSearchFilter.findFirstOrThrow({
63927
+ * where: {
63928
+ * // ... provide filter here
63929
+ * }
63930
+ * })
63931
+ **/
63932
+ findFirstOrThrow<T extends CreatorSearchFilterFindFirstOrThrowArgs<ExtArgs>>(
63933
+ args?: SelectSubset<T, CreatorSearchFilterFindFirstOrThrowArgs<ExtArgs>>
63934
+ ): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findFirstOrThrow'>, never, ExtArgs>
63935
+
63936
+ /**
63937
+ * Find zero or more CreatorSearchFilters that matches the filter.
63938
+ * Note, that providing `undefined` is treated as the value not being there.
63939
+ * Read more here: https://pris.ly/d/null-undefined
63940
+ * @param {CreatorSearchFilterFindManyArgs=} args - Arguments to filter and select certain fields only.
63941
+ * @example
63942
+ * // Get all CreatorSearchFilters
63943
+ * const creatorSearchFilters = await prisma.creatorSearchFilter.findMany()
63944
+ *
63945
+ * // Get first 10 CreatorSearchFilters
63946
+ * const creatorSearchFilters = await prisma.creatorSearchFilter.findMany({ take: 10 })
63947
+ *
63948
+ * // Only select the `id`
63949
+ * const creatorSearchFilterWithIdOnly = await prisma.creatorSearchFilter.findMany({ select: { id: true } })
63950
+ *
63951
+ **/
63952
+ findMany<T extends CreatorSearchFilterFindManyArgs<ExtArgs>>(
63953
+ args?: SelectSubset<T, CreatorSearchFilterFindManyArgs<ExtArgs>>
63954
+ ): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'findMany'>>
63955
+
63956
+ /**
63957
+ * Create a CreatorSearchFilter.
63958
+ * @param {CreatorSearchFilterCreateArgs} args - Arguments to create a CreatorSearchFilter.
63959
+ * @example
63960
+ * // Create one CreatorSearchFilter
63961
+ * const CreatorSearchFilter = await prisma.creatorSearchFilter.create({
63962
+ * data: {
63963
+ * // ... data to create a CreatorSearchFilter
63964
+ * }
63965
+ * })
63966
+ *
63967
+ **/
63968
+ create<T extends CreatorSearchFilterCreateArgs<ExtArgs>>(
63969
+ args: SelectSubset<T, CreatorSearchFilterCreateArgs<ExtArgs>>
63970
+ ): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'create'>, never, ExtArgs>
63971
+
63972
+ /**
63973
+ * Create many CreatorSearchFilters.
63974
+ * @param {CreatorSearchFilterCreateManyArgs} args - Arguments to create many CreatorSearchFilters.
63975
+ * @example
63976
+ * // Create many CreatorSearchFilters
63977
+ * const creatorSearchFilter = await prisma.creatorSearchFilter.createMany({
63978
+ * data: {
63979
+ * // ... provide data here
63980
+ * }
63981
+ * })
63982
+ *
63983
+ **/
63984
+ createMany<T extends CreatorSearchFilterCreateManyArgs<ExtArgs>>(
63985
+ args?: SelectSubset<T, CreatorSearchFilterCreateManyArgs<ExtArgs>>
63986
+ ): Prisma.PrismaPromise<BatchPayload>
63987
+
63988
+ /**
63989
+ * Delete a CreatorSearchFilter.
63990
+ * @param {CreatorSearchFilterDeleteArgs} args - Arguments to delete one CreatorSearchFilter.
63991
+ * @example
63992
+ * // Delete one CreatorSearchFilter
63993
+ * const CreatorSearchFilter = await prisma.creatorSearchFilter.delete({
63994
+ * where: {
63995
+ * // ... filter to delete one CreatorSearchFilter
63996
+ * }
63997
+ * })
63998
+ *
63999
+ **/
64000
+ delete<T extends CreatorSearchFilterDeleteArgs<ExtArgs>>(
64001
+ args: SelectSubset<T, CreatorSearchFilterDeleteArgs<ExtArgs>>
64002
+ ): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'delete'>, never, ExtArgs>
64003
+
64004
+ /**
64005
+ * Update one CreatorSearchFilter.
64006
+ * @param {CreatorSearchFilterUpdateArgs} args - Arguments to update one CreatorSearchFilter.
64007
+ * @example
64008
+ * // Update one CreatorSearchFilter
64009
+ * const creatorSearchFilter = await prisma.creatorSearchFilter.update({
64010
+ * where: {
64011
+ * // ... provide filter here
64012
+ * },
64013
+ * data: {
64014
+ * // ... provide data here
64015
+ * }
64016
+ * })
64017
+ *
64018
+ **/
64019
+ update<T extends CreatorSearchFilterUpdateArgs<ExtArgs>>(
64020
+ args: SelectSubset<T, CreatorSearchFilterUpdateArgs<ExtArgs>>
64021
+ ): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'update'>, never, ExtArgs>
64022
+
64023
+ /**
64024
+ * Delete zero or more CreatorSearchFilters.
64025
+ * @param {CreatorSearchFilterDeleteManyArgs} args - Arguments to filter CreatorSearchFilters to delete.
64026
+ * @example
64027
+ * // Delete a few CreatorSearchFilters
64028
+ * const { count } = await prisma.creatorSearchFilter.deleteMany({
64029
+ * where: {
64030
+ * // ... provide filter here
64031
+ * }
64032
+ * })
64033
+ *
64034
+ **/
64035
+ deleteMany<T extends CreatorSearchFilterDeleteManyArgs<ExtArgs>>(
64036
+ args?: SelectSubset<T, CreatorSearchFilterDeleteManyArgs<ExtArgs>>
64037
+ ): Prisma.PrismaPromise<BatchPayload>
64038
+
64039
+ /**
64040
+ * Update zero or more CreatorSearchFilters.
64041
+ * Note, that providing `undefined` is treated as the value not being there.
64042
+ * Read more here: https://pris.ly/d/null-undefined
64043
+ * @param {CreatorSearchFilterUpdateManyArgs} args - Arguments to update one or more rows.
64044
+ * @example
64045
+ * // Update many CreatorSearchFilters
64046
+ * const creatorSearchFilter = await prisma.creatorSearchFilter.updateMany({
64047
+ * where: {
64048
+ * // ... provide filter here
64049
+ * },
64050
+ * data: {
64051
+ * // ... provide data here
64052
+ * }
64053
+ * })
64054
+ *
64055
+ **/
64056
+ updateMany<T extends CreatorSearchFilterUpdateManyArgs<ExtArgs>>(
64057
+ args: SelectSubset<T, CreatorSearchFilterUpdateManyArgs<ExtArgs>>
64058
+ ): Prisma.PrismaPromise<BatchPayload>
64059
+
64060
+ /**
64061
+ * Create or update one CreatorSearchFilter.
64062
+ * @param {CreatorSearchFilterUpsertArgs} args - Arguments to update or create a CreatorSearchFilter.
64063
+ * @example
64064
+ * // Update or create a CreatorSearchFilter
64065
+ * const creatorSearchFilter = await prisma.creatorSearchFilter.upsert({
64066
+ * create: {
64067
+ * // ... data to create a CreatorSearchFilter
64068
+ * },
64069
+ * update: {
64070
+ * // ... in case it already exists, update
64071
+ * },
64072
+ * where: {
64073
+ * // ... the filter for the CreatorSearchFilter we want to update
64074
+ * }
64075
+ * })
64076
+ **/
64077
+ upsert<T extends CreatorSearchFilterUpsertArgs<ExtArgs>>(
64078
+ args: SelectSubset<T, CreatorSearchFilterUpsertArgs<ExtArgs>>
64079
+ ): Prisma__CreatorSearchFilterClient<$Result.GetResult<Prisma.$CreatorSearchFilterPayload<ExtArgs>, T, 'upsert'>, never, ExtArgs>
64080
+
64081
+ /**
64082
+ * Count the number of CreatorSearchFilters.
64083
+ * Note, that providing `undefined` is treated as the value not being there.
64084
+ * Read more here: https://pris.ly/d/null-undefined
64085
+ * @param {CreatorSearchFilterCountArgs} args - Arguments to filter CreatorSearchFilters to count.
64086
+ * @example
64087
+ * // Count the number of CreatorSearchFilters
64088
+ * const count = await prisma.creatorSearchFilter.count({
64089
+ * where: {
64090
+ * // ... the filter for the CreatorSearchFilters we want to count
64091
+ * }
64092
+ * })
64093
+ **/
64094
+ count<T extends CreatorSearchFilterCountArgs>(
64095
+ args?: Subset<T, CreatorSearchFilterCountArgs>,
64096
+ ): Prisma.PrismaPromise<
64097
+ T extends $Utils.Record<'select', any>
64098
+ ? T['select'] extends true
64099
+ ? number
64100
+ : GetScalarType<T['select'], CreatorSearchFilterCountAggregateOutputType>
64101
+ : number
64102
+ >
64103
+
64104
+ /**
64105
+ * Allows you to perform aggregations operations on a CreatorSearchFilter.
64106
+ * Note, that providing `undefined` is treated as the value not being there.
64107
+ * Read more here: https://pris.ly/d/null-undefined
64108
+ * @param {CreatorSearchFilterAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
64109
+ * @example
64110
+ * // Ordered by age ascending
64111
+ * // Where email contains prisma.io
64112
+ * // Limited to the 10 users
64113
+ * const aggregations = await prisma.user.aggregate({
64114
+ * _avg: {
64115
+ * age: true,
64116
+ * },
64117
+ * where: {
64118
+ * email: {
64119
+ * contains: "prisma.io",
64120
+ * },
64121
+ * },
64122
+ * orderBy: {
64123
+ * age: "asc",
64124
+ * },
64125
+ * take: 10,
64126
+ * })
64127
+ **/
64128
+ aggregate<T extends CreatorSearchFilterAggregateArgs>(args: Subset<T, CreatorSearchFilterAggregateArgs>): Prisma.PrismaPromise<GetCreatorSearchFilterAggregateType<T>>
64129
+
64130
+ /**
64131
+ * Group by CreatorSearchFilter.
64132
+ * Note, that providing `undefined` is treated as the value not being there.
64133
+ * Read more here: https://pris.ly/d/null-undefined
64134
+ * @param {CreatorSearchFilterGroupByArgs} args - Group by arguments.
64135
+ * @example
64136
+ * // Group by city, order by createdAt, get count
64137
+ * const result = await prisma.user.groupBy({
64138
+ * by: ['city', 'createdAt'],
64139
+ * orderBy: {
64140
+ * createdAt: true
64141
+ * },
64142
+ * _count: {
64143
+ * _all: true
64144
+ * },
64145
+ * })
64146
+ *
64147
+ **/
64148
+ groupBy<
64149
+ T extends CreatorSearchFilterGroupByArgs,
64150
+ HasSelectOrTake extends Or<
64151
+ Extends<'skip', Keys<T>>,
64152
+ Extends<'take', Keys<T>>
64153
+ >,
64154
+ OrderByArg extends True extends HasSelectOrTake
64155
+ ? { orderBy: CreatorSearchFilterGroupByArgs['orderBy'] }
64156
+ : { orderBy?: CreatorSearchFilterGroupByArgs['orderBy'] },
64157
+ OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
64158
+ ByFields extends MaybeTupleToUnion<T['by']>,
64159
+ ByValid extends Has<ByFields, OrderFields>,
64160
+ HavingFields extends GetHavingFields<T['having']>,
64161
+ HavingValid extends Has<ByFields, HavingFields>,
64162
+ ByEmpty extends T['by'] extends never[] ? True : False,
64163
+ InputErrors extends ByEmpty extends True
64164
+ ? `Error: "by" must not be empty.`
64165
+ : HavingValid extends False
64166
+ ? {
64167
+ [P in HavingFields]: P extends ByFields
64168
+ ? never
64169
+ : P extends string
64170
+ ? `Error: Field "${P}" used in "having" needs to be provided in "by".`
64171
+ : [
64172
+ Error,
64173
+ 'Field ',
64174
+ P,
64175
+ ` in "having" needs to be provided in "by"`,
64176
+ ]
64177
+ }[HavingFields]
64178
+ : 'take' extends Keys<T>
64179
+ ? 'orderBy' extends Keys<T>
64180
+ ? ByValid extends True
64181
+ ? {}
64182
+ : {
64183
+ [P in OrderFields]: P extends ByFields
64184
+ ? never
64185
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
64186
+ }[OrderFields]
64187
+ : 'Error: If you provide "take", you also need to provide "orderBy"'
64188
+ : 'skip' extends Keys<T>
64189
+ ? 'orderBy' extends Keys<T>
64190
+ ? ByValid extends True
64191
+ ? {}
64192
+ : {
64193
+ [P in OrderFields]: P extends ByFields
64194
+ ? never
64195
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
64196
+ }[OrderFields]
64197
+ : 'Error: If you provide "skip", you also need to provide "orderBy"'
64198
+ : ByValid extends True
64199
+ ? {}
64200
+ : {
64201
+ [P in OrderFields]: P extends ByFields
64202
+ ? never
64203
+ : `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
64204
+ }[OrderFields]
64205
+ >(args: SubsetIntersection<T, CreatorSearchFilterGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetCreatorSearchFilterGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
64206
+ /**
64207
+ * Fields of the CreatorSearchFilter model
64208
+ */
64209
+ readonly fields: CreatorSearchFilterFieldRefs;
64210
+ }
64211
+
64212
+ /**
64213
+ * The delegate class that acts as a "Promise-like" for CreatorSearchFilter.
64214
+ * Why is this prefixed with `Prisma__`?
64215
+ * Because we want to prevent naming conflicts as mentioned in
64216
+ * https://github.com/prisma/prisma-client-js/issues/707
64217
+ */
64218
+ export interface Prisma__CreatorSearchFilterClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
64219
+ readonly [Symbol.toStringTag]: 'PrismaPromise';
64220
+
64221
+ brand<T extends BrandDefaultArgs<ExtArgs> = {}>(args?: Subset<T, BrandDefaultArgs<ExtArgs>>): Prisma__BrandClient<$Result.GetResult<Prisma.$BrandPayload<ExtArgs>, T, 'findUniqueOrThrow'> | Null, Null, ExtArgs>;
64222
+
64223
+ /**
64224
+ * Attaches callbacks for the resolution and/or rejection of the Promise.
64225
+ * @param onfulfilled The callback to execute when the Promise is resolved.
64226
+ * @param onrejected The callback to execute when the Promise is rejected.
64227
+ * @returns A Promise for the completion of which ever callback is executed.
64228
+ */
64229
+ then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>;
64230
+ /**
64231
+ * Attaches a callback for only the rejection of the Promise.
64232
+ * @param onrejected The callback to execute when the Promise is rejected.
64233
+ * @returns A Promise for the completion of the callback.
64234
+ */
64235
+ catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>;
64236
+ /**
64237
+ * Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
64238
+ * resolved value cannot be modified from the callback.
64239
+ * @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
64240
+ * @returns A Promise for the completion of the callback.
64241
+ */
64242
+ finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>;
64243
+ }
64244
+
64245
+
64246
+
64247
+ /**
64248
+ * Fields of the CreatorSearchFilter model
64249
+ */
64250
+ interface CreatorSearchFilterFieldRefs {
64251
+ readonly id: FieldRef<"CreatorSearchFilter", 'Int'>
64252
+ readonly brandId: FieldRef<"CreatorSearchFilter", 'Int'>
64253
+ readonly title: FieldRef<"CreatorSearchFilter", 'String'>
64254
+ readonly filters: FieldRef<"CreatorSearchFilter", 'Json'>
64255
+ readonly createdAt: FieldRef<"CreatorSearchFilter", 'DateTime'>
64256
+ readonly updatedAt: FieldRef<"CreatorSearchFilter", 'DateTime'>
64257
+ }
64258
+
64259
+
64260
+ // Custom InputTypes
64261
+
64262
+ /**
64263
+ * CreatorSearchFilter findUnique
64264
+ */
64265
+ export type CreatorSearchFilterFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64266
+ /**
64267
+ * Select specific fields to fetch from the CreatorSearchFilter
64268
+ */
64269
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64270
+ /**
64271
+ * Choose, which related nodes to fetch as well.
64272
+ */
64273
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64274
+ /**
64275
+ * Filter, which CreatorSearchFilter to fetch.
64276
+ */
64277
+ where: CreatorSearchFilterWhereUniqueInput
64278
+ }
64279
+
64280
+
64281
+ /**
64282
+ * CreatorSearchFilter findUniqueOrThrow
64283
+ */
64284
+ export type CreatorSearchFilterFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64285
+ /**
64286
+ * Select specific fields to fetch from the CreatorSearchFilter
64287
+ */
64288
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64289
+ /**
64290
+ * Choose, which related nodes to fetch as well.
64291
+ */
64292
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64293
+ /**
64294
+ * Filter, which CreatorSearchFilter to fetch.
64295
+ */
64296
+ where: CreatorSearchFilterWhereUniqueInput
64297
+ }
64298
+
64299
+
64300
+ /**
64301
+ * CreatorSearchFilter findFirst
64302
+ */
64303
+ export type CreatorSearchFilterFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64304
+ /**
64305
+ * Select specific fields to fetch from the CreatorSearchFilter
64306
+ */
64307
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64308
+ /**
64309
+ * Choose, which related nodes to fetch as well.
64310
+ */
64311
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64312
+ /**
64313
+ * Filter, which CreatorSearchFilter to fetch.
64314
+ */
64315
+ where?: CreatorSearchFilterWhereInput
64316
+ /**
64317
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
64318
+ *
64319
+ * Determine the order of CreatorSearchFilters to fetch.
64320
+ */
64321
+ orderBy?: CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput | CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput[]
64322
+ /**
64323
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
64324
+ *
64325
+ * Sets the position for searching for CreatorSearchFilters.
64326
+ */
64327
+ cursor?: CreatorSearchFilterWhereUniqueInput
64328
+ /**
64329
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
64330
+ *
64331
+ * Take `±n` CreatorSearchFilters from the position of the cursor.
64332
+ */
64333
+ take?: number
64334
+ /**
64335
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
64336
+ *
64337
+ * Skip the first `n` CreatorSearchFilters.
64338
+ */
64339
+ skip?: number
64340
+ /**
64341
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
64342
+ *
64343
+ * Filter by unique combinations of CreatorSearchFilters.
64344
+ */
64345
+ distinct?: CreatorSearchFilterScalarFieldEnum | CreatorSearchFilterScalarFieldEnum[]
64346
+ }
64347
+
64348
+
64349
+ /**
64350
+ * CreatorSearchFilter findFirstOrThrow
64351
+ */
64352
+ export type CreatorSearchFilterFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64353
+ /**
64354
+ * Select specific fields to fetch from the CreatorSearchFilter
64355
+ */
64356
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64357
+ /**
64358
+ * Choose, which related nodes to fetch as well.
64359
+ */
64360
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64361
+ /**
64362
+ * Filter, which CreatorSearchFilter to fetch.
64363
+ */
64364
+ where?: CreatorSearchFilterWhereInput
64365
+ /**
64366
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
64367
+ *
64368
+ * Determine the order of CreatorSearchFilters to fetch.
64369
+ */
64370
+ orderBy?: CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput | CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput[]
64371
+ /**
64372
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
64373
+ *
64374
+ * Sets the position for searching for CreatorSearchFilters.
64375
+ */
64376
+ cursor?: CreatorSearchFilterWhereUniqueInput
64377
+ /**
64378
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
64379
+ *
64380
+ * Take `±n` CreatorSearchFilters from the position of the cursor.
64381
+ */
64382
+ take?: number
64383
+ /**
64384
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
64385
+ *
64386
+ * Skip the first `n` CreatorSearchFilters.
64387
+ */
64388
+ skip?: number
64389
+ /**
64390
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
64391
+ *
64392
+ * Filter by unique combinations of CreatorSearchFilters.
64393
+ */
64394
+ distinct?: CreatorSearchFilterScalarFieldEnum | CreatorSearchFilterScalarFieldEnum[]
64395
+ }
64396
+
64397
+
64398
+ /**
64399
+ * CreatorSearchFilter findMany
64400
+ */
64401
+ export type CreatorSearchFilterFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64402
+ /**
64403
+ * Select specific fields to fetch from the CreatorSearchFilter
64404
+ */
64405
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64406
+ /**
64407
+ * Choose, which related nodes to fetch as well.
64408
+ */
64409
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64410
+ /**
64411
+ * Filter, which CreatorSearchFilters to fetch.
64412
+ */
64413
+ where?: CreatorSearchFilterWhereInput
64414
+ /**
64415
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
64416
+ *
64417
+ * Determine the order of CreatorSearchFilters to fetch.
64418
+ */
64419
+ orderBy?: CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput | CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput[]
64420
+ /**
64421
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
64422
+ *
64423
+ * Sets the position for listing CreatorSearchFilters.
64424
+ */
64425
+ cursor?: CreatorSearchFilterWhereUniqueInput
64426
+ /**
64427
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
64428
+ *
64429
+ * Take `±n` CreatorSearchFilters from the position of the cursor.
64430
+ */
64431
+ take?: number
64432
+ /**
64433
+ * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
64434
+ *
64435
+ * Skip the first `n` CreatorSearchFilters.
64436
+ */
64437
+ skip?: number
64438
+ distinct?: CreatorSearchFilterScalarFieldEnum | CreatorSearchFilterScalarFieldEnum[]
64439
+ }
64440
+
64441
+
64442
+ /**
64443
+ * CreatorSearchFilter create
64444
+ */
64445
+ export type CreatorSearchFilterCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64446
+ /**
64447
+ * Select specific fields to fetch from the CreatorSearchFilter
64448
+ */
64449
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64450
+ /**
64451
+ * Choose, which related nodes to fetch as well.
64452
+ */
64453
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64454
+ /**
64455
+ * The data needed to create a CreatorSearchFilter.
64456
+ */
64457
+ data: XOR<CreatorSearchFilterCreateInput, CreatorSearchFilterUncheckedCreateInput>
64458
+ }
64459
+
64460
+
64461
+ /**
64462
+ * CreatorSearchFilter createMany
64463
+ */
64464
+ export type CreatorSearchFilterCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64465
+ /**
64466
+ * The data used to create many CreatorSearchFilters.
64467
+ */
64468
+ data: CreatorSearchFilterCreateManyInput | CreatorSearchFilterCreateManyInput[]
64469
+ skipDuplicates?: boolean
64470
+ }
64471
+
64472
+
64473
+ /**
64474
+ * CreatorSearchFilter update
64475
+ */
64476
+ export type CreatorSearchFilterUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64477
+ /**
64478
+ * Select specific fields to fetch from the CreatorSearchFilter
64479
+ */
64480
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64481
+ /**
64482
+ * Choose, which related nodes to fetch as well.
64483
+ */
64484
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64485
+ /**
64486
+ * The data needed to update a CreatorSearchFilter.
64487
+ */
64488
+ data: XOR<CreatorSearchFilterUpdateInput, CreatorSearchFilterUncheckedUpdateInput>
64489
+ /**
64490
+ * Choose, which CreatorSearchFilter to update.
64491
+ */
64492
+ where: CreatorSearchFilterWhereUniqueInput
64493
+ }
64494
+
64495
+
64496
+ /**
64497
+ * CreatorSearchFilter updateMany
64498
+ */
64499
+ export type CreatorSearchFilterUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64500
+ /**
64501
+ * The data used to update CreatorSearchFilters.
64502
+ */
64503
+ data: XOR<CreatorSearchFilterUpdateManyMutationInput, CreatorSearchFilterUncheckedUpdateManyInput>
64504
+ /**
64505
+ * Filter which CreatorSearchFilters to update
64506
+ */
64507
+ where?: CreatorSearchFilterWhereInput
64508
+ }
64509
+
64510
+
64511
+ /**
64512
+ * CreatorSearchFilter upsert
64513
+ */
64514
+ export type CreatorSearchFilterUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64515
+ /**
64516
+ * Select specific fields to fetch from the CreatorSearchFilter
64517
+ */
64518
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64519
+ /**
64520
+ * Choose, which related nodes to fetch as well.
64521
+ */
64522
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64523
+ /**
64524
+ * The filter to search for the CreatorSearchFilter to update in case it exists.
64525
+ */
64526
+ where: CreatorSearchFilterWhereUniqueInput
64527
+ /**
64528
+ * In case the CreatorSearchFilter found by the `where` argument doesn't exist, create a new CreatorSearchFilter with this data.
64529
+ */
64530
+ create: XOR<CreatorSearchFilterCreateInput, CreatorSearchFilterUncheckedCreateInput>
64531
+ /**
64532
+ * In case the CreatorSearchFilter was found with the provided `where` argument, update it with this data.
64533
+ */
64534
+ update: XOR<CreatorSearchFilterUpdateInput, CreatorSearchFilterUncheckedUpdateInput>
64535
+ }
64536
+
64537
+
64538
+ /**
64539
+ * CreatorSearchFilter delete
64540
+ */
64541
+ export type CreatorSearchFilterDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64542
+ /**
64543
+ * Select specific fields to fetch from the CreatorSearchFilter
64544
+ */
64545
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64546
+ /**
64547
+ * Choose, which related nodes to fetch as well.
64548
+ */
64549
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64550
+ /**
64551
+ * Filter which CreatorSearchFilter to delete.
64552
+ */
64553
+ where: CreatorSearchFilterWhereUniqueInput
64554
+ }
64555
+
64556
+
64557
+ /**
64558
+ * CreatorSearchFilter deleteMany
64559
+ */
64560
+ export type CreatorSearchFilterDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64561
+ /**
64562
+ * Filter which CreatorSearchFilters to delete
64563
+ */
64564
+ where?: CreatorSearchFilterWhereInput
64565
+ }
64566
+
64567
+
64568
+ /**
64569
+ * CreatorSearchFilter without action
64570
+ */
64571
+ export type CreatorSearchFilterDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
64572
+ /**
64573
+ * Select specific fields to fetch from the CreatorSearchFilter
64574
+ */
64575
+ select?: CreatorSearchFilterSelect<ExtArgs> | null
64576
+ /**
64577
+ * Choose, which related nodes to fetch as well.
64578
+ */
64579
+ include?: CreatorSearchFilterInclude<ExtArgs> | null
64580
+ }
64581
+
64582
+
64583
+
63503
64584
  /**
63504
64585
  * Enums
63505
64586
  */
@@ -64347,6 +65428,18 @@ export namespace Prisma {
64347
65428
  export type SlowQueriesScalarFieldEnum = (typeof SlowQueriesScalarFieldEnum)[keyof typeof SlowQueriesScalarFieldEnum]
64348
65429
 
64349
65430
 
65431
+ export const CreatorSearchFilterScalarFieldEnum: {
65432
+ id: 'id',
65433
+ brandId: 'brandId',
65434
+ title: 'title',
65435
+ filters: 'filters',
65436
+ createdAt: 'createdAt',
65437
+ updatedAt: 'updatedAt'
65438
+ };
65439
+
65440
+ export type CreatorSearchFilterScalarFieldEnum = (typeof CreatorSearchFilterScalarFieldEnum)[keyof typeof CreatorSearchFilterScalarFieldEnum]
65441
+
65442
+
64350
65443
  export const SortOrder: {
64351
65444
  asc: 'asc',
64352
65445
  desc: 'desc'
@@ -64811,6 +65904,13 @@ export namespace Prisma {
64811
65904
  export type SlowQueriesOrderByRelevanceFieldEnum = (typeof SlowQueriesOrderByRelevanceFieldEnum)[keyof typeof SlowQueriesOrderByRelevanceFieldEnum]
64812
65905
 
64813
65906
 
65907
+ export const CreatorSearchFilterOrderByRelevanceFieldEnum: {
65908
+ title: 'title'
65909
+ };
65910
+
65911
+ export type CreatorSearchFilterOrderByRelevanceFieldEnum = (typeof CreatorSearchFilterOrderByRelevanceFieldEnum)[keyof typeof CreatorSearchFilterOrderByRelevanceFieldEnum]
65912
+
65913
+
64814
65914
  /**
64815
65915
  * Field references
64816
65916
  */
@@ -66089,6 +67189,7 @@ export namespace Prisma {
66089
67189
  socialListeningLists?: SocialListeningListListRelationFilter
66090
67190
  campaignInvites?: CampaignInviteListRelationFilter
66091
67191
  images?: BrandToImageListRelationFilter
67192
+ creatorsearchfilter?: CreatorSearchFilterListRelationFilter
66092
67193
  parentBrand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
66093
67194
  childBrands?: BrandListRelationFilter
66094
67195
  }
@@ -66125,6 +67226,7 @@ export namespace Prisma {
66125
67226
  socialListeningLists?: SocialListeningListOrderByRelationAggregateInput
66126
67227
  campaignInvites?: CampaignInviteOrderByRelationAggregateInput
66127
67228
  images?: BrandToImageOrderByRelationAggregateInput
67229
+ creatorsearchfilter?: CreatorSearchFilterOrderByRelationAggregateInput
66128
67230
  parentBrand?: BrandOrderByWithRelationAndSearchRelevanceInput
66129
67231
  childBrands?: BrandOrderByRelationAggregateInput
66130
67232
  _relevance?: BrandOrderByRelevanceInput
@@ -66165,6 +67267,7 @@ export namespace Prisma {
66165
67267
  socialListeningLists?: SocialListeningListListRelationFilter
66166
67268
  campaignInvites?: CampaignInviteListRelationFilter
66167
67269
  images?: BrandToImageListRelationFilter
67270
+ creatorsearchfilter?: CreatorSearchFilterListRelationFilter
66168
67271
  parentBrand?: XOR<BrandNullableRelationFilter, BrandWhereInput> | null
66169
67272
  childBrands?: BrandListRelationFilter
66170
67273
  }, "id">
@@ -69521,6 +70624,69 @@ export namespace Prisma {
69521
70624
  environment?: StringNullableWithAggregatesFilter<"SlowQueries"> | string | null
69522
70625
  }
69523
70626
 
70627
+ export type CreatorSearchFilterWhereInput = {
70628
+ AND?: CreatorSearchFilterWhereInput | CreatorSearchFilterWhereInput[]
70629
+ OR?: CreatorSearchFilterWhereInput[]
70630
+ NOT?: CreatorSearchFilterWhereInput | CreatorSearchFilterWhereInput[]
70631
+ id?: IntFilter<"CreatorSearchFilter"> | number
70632
+ brandId?: IntFilter<"CreatorSearchFilter"> | number
70633
+ title?: StringFilter<"CreatorSearchFilter"> | string
70634
+ filters?: JsonFilter<"CreatorSearchFilter">
70635
+ createdAt?: DateTimeFilter<"CreatorSearchFilter"> | Date | string
70636
+ updatedAt?: DateTimeNullableFilter<"CreatorSearchFilter"> | Date | string | null
70637
+ brand?: XOR<BrandRelationFilter, BrandWhereInput>
70638
+ }
70639
+
70640
+ export type CreatorSearchFilterOrderByWithRelationAndSearchRelevanceInput = {
70641
+ id?: SortOrder
70642
+ brandId?: SortOrder
70643
+ title?: SortOrder
70644
+ filters?: SortOrder
70645
+ createdAt?: SortOrder
70646
+ updatedAt?: SortOrderInput | SortOrder
70647
+ brand?: BrandOrderByWithRelationAndSearchRelevanceInput
70648
+ _relevance?: CreatorSearchFilterOrderByRelevanceInput
70649
+ }
70650
+
70651
+ export type CreatorSearchFilterWhereUniqueInput = Prisma.AtLeast<{
70652
+ id?: number
70653
+ AND?: CreatorSearchFilterWhereInput | CreatorSearchFilterWhereInput[]
70654
+ OR?: CreatorSearchFilterWhereInput[]
70655
+ NOT?: CreatorSearchFilterWhereInput | CreatorSearchFilterWhereInput[]
70656
+ brandId?: IntFilter<"CreatorSearchFilter"> | number
70657
+ title?: StringFilter<"CreatorSearchFilter"> | string
70658
+ filters?: JsonFilter<"CreatorSearchFilter">
70659
+ createdAt?: DateTimeFilter<"CreatorSearchFilter"> | Date | string
70660
+ updatedAt?: DateTimeNullableFilter<"CreatorSearchFilter"> | Date | string | null
70661
+ brand?: XOR<BrandRelationFilter, BrandWhereInput>
70662
+ }, "id">
70663
+
70664
+ export type CreatorSearchFilterOrderByWithAggregationInput = {
70665
+ id?: SortOrder
70666
+ brandId?: SortOrder
70667
+ title?: SortOrder
70668
+ filters?: SortOrder
70669
+ createdAt?: SortOrder
70670
+ updatedAt?: SortOrderInput | SortOrder
70671
+ _count?: CreatorSearchFilterCountOrderByAggregateInput
70672
+ _avg?: CreatorSearchFilterAvgOrderByAggregateInput
70673
+ _max?: CreatorSearchFilterMaxOrderByAggregateInput
70674
+ _min?: CreatorSearchFilterMinOrderByAggregateInput
70675
+ _sum?: CreatorSearchFilterSumOrderByAggregateInput
70676
+ }
70677
+
70678
+ export type CreatorSearchFilterScalarWhereWithAggregatesInput = {
70679
+ AND?: CreatorSearchFilterScalarWhereWithAggregatesInput | CreatorSearchFilterScalarWhereWithAggregatesInput[]
70680
+ OR?: CreatorSearchFilterScalarWhereWithAggregatesInput[]
70681
+ NOT?: CreatorSearchFilterScalarWhereWithAggregatesInput | CreatorSearchFilterScalarWhereWithAggregatesInput[]
70682
+ id?: IntWithAggregatesFilter<"CreatorSearchFilter"> | number
70683
+ brandId?: IntWithAggregatesFilter<"CreatorSearchFilter"> | number
70684
+ title?: StringWithAggregatesFilter<"CreatorSearchFilter"> | string
70685
+ filters?: JsonWithAggregatesFilter<"CreatorSearchFilter">
70686
+ createdAt?: DateTimeWithAggregatesFilter<"CreatorSearchFilter"> | Date | string
70687
+ updatedAt?: DateTimeNullableWithAggregatesFilter<"CreatorSearchFilter"> | Date | string | null
70688
+ }
70689
+
69524
70690
  export type UserCreateInput = {
69525
70691
  role: string
69526
70692
  email?: string | null
@@ -70868,6 +72034,7 @@ export namespace Prisma {
70868
72034
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
70869
72035
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
70870
72036
  images?: BrandToImageCreateNestedManyWithoutBrandInput
72037
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
70871
72038
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
70872
72039
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
70873
72040
  }
@@ -70903,6 +72070,7 @@ export namespace Prisma {
70903
72070
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
70904
72071
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
70905
72072
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
72073
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
70906
72074
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
70907
72075
  }
70908
72076
 
@@ -70935,6 +72103,7 @@ export namespace Prisma {
70935
72103
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
70936
72104
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
70937
72105
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
72106
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
70938
72107
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
70939
72108
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
70940
72109
  }
@@ -70970,6 +72139,7 @@ export namespace Prisma {
70970
72139
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
70971
72140
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
70972
72141
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
72142
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
70973
72143
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
70974
72144
  }
70975
72145
 
@@ -74312,6 +75482,65 @@ export namespace Prisma {
74312
75482
  environment?: NullableStringFieldUpdateOperationsInput | string | null
74313
75483
  }
74314
75484
 
75485
+ export type CreatorSearchFilterCreateInput = {
75486
+ title: string
75487
+ filters?: JsonNullValueInput | InputJsonValue
75488
+ createdAt?: Date | string
75489
+ updatedAt?: Date | string | null
75490
+ brand: BrandCreateNestedOneWithoutCreatorsearchfilterInput
75491
+ }
75492
+
75493
+ export type CreatorSearchFilterUncheckedCreateInput = {
75494
+ id?: number
75495
+ brandId: number
75496
+ title: string
75497
+ filters?: JsonNullValueInput | InputJsonValue
75498
+ createdAt?: Date | string
75499
+ updatedAt?: Date | string | null
75500
+ }
75501
+
75502
+ export type CreatorSearchFilterUpdateInput = {
75503
+ title?: StringFieldUpdateOperationsInput | string
75504
+ filters?: JsonNullValueInput | InputJsonValue
75505
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
75506
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
75507
+ brand?: BrandUpdateOneRequiredWithoutCreatorsearchfilterNestedInput
75508
+ }
75509
+
75510
+ export type CreatorSearchFilterUncheckedUpdateInput = {
75511
+ id?: IntFieldUpdateOperationsInput | number
75512
+ brandId?: IntFieldUpdateOperationsInput | number
75513
+ title?: StringFieldUpdateOperationsInput | string
75514
+ filters?: JsonNullValueInput | InputJsonValue
75515
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
75516
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
75517
+ }
75518
+
75519
+ export type CreatorSearchFilterCreateManyInput = {
75520
+ id?: number
75521
+ brandId: number
75522
+ title: string
75523
+ filters?: JsonNullValueInput | InputJsonValue
75524
+ createdAt?: Date | string
75525
+ updatedAt?: Date | string | null
75526
+ }
75527
+
75528
+ export type CreatorSearchFilterUpdateManyMutationInput = {
75529
+ title?: StringFieldUpdateOperationsInput | string
75530
+ filters?: JsonNullValueInput | InputJsonValue
75531
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
75532
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
75533
+ }
75534
+
75535
+ export type CreatorSearchFilterUncheckedUpdateManyInput = {
75536
+ id?: IntFieldUpdateOperationsInput | number
75537
+ brandId?: IntFieldUpdateOperationsInput | number
75538
+ title?: StringFieldUpdateOperationsInput | string
75539
+ filters?: JsonNullValueInput | InputJsonValue
75540
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
75541
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
75542
+ }
75543
+
74315
75544
  export type IntFilter<$PrismaModel = never> = {
74316
75545
  equals?: number | IntFieldRefInput<$PrismaModel>
74317
75546
  in?: number[] | ListIntFieldRefInput<$PrismaModel>
@@ -75603,6 +76832,12 @@ export namespace Prisma {
75603
76832
  none?: BrandToImageWhereInput
75604
76833
  }
75605
76834
 
76835
+ export type CreatorSearchFilterListRelationFilter = {
76836
+ every?: CreatorSearchFilterWhereInput
76837
+ some?: CreatorSearchFilterWhereInput
76838
+ none?: CreatorSearchFilterWhereInput
76839
+ }
76840
+
75606
76841
  export type CampaignOrderByRelationAggregateInput = {
75607
76842
  _count?: SortOrder
75608
76843
  }
@@ -75651,6 +76886,10 @@ export namespace Prisma {
75651
76886
  _count?: SortOrder
75652
76887
  }
75653
76888
 
76889
+ export type CreatorSearchFilterOrderByRelationAggregateInput = {
76890
+ _count?: SortOrder
76891
+ }
76892
+
75654
76893
  export type BrandOrderByRelevanceInput = {
75655
76894
  fields: BrandOrderByRelevanceFieldEnum | BrandOrderByRelevanceFieldEnum[]
75656
76895
  sort: SortOrder
@@ -78213,6 +79452,47 @@ export namespace Prisma {
78213
79452
  time?: SortOrder
78214
79453
  }
78215
79454
 
79455
+ export type CreatorSearchFilterOrderByRelevanceInput = {
79456
+ fields: CreatorSearchFilterOrderByRelevanceFieldEnum | CreatorSearchFilterOrderByRelevanceFieldEnum[]
79457
+ sort: SortOrder
79458
+ search: string
79459
+ }
79460
+
79461
+ export type CreatorSearchFilterCountOrderByAggregateInput = {
79462
+ id?: SortOrder
79463
+ brandId?: SortOrder
79464
+ title?: SortOrder
79465
+ filters?: SortOrder
79466
+ createdAt?: SortOrder
79467
+ updatedAt?: SortOrder
79468
+ }
79469
+
79470
+ export type CreatorSearchFilterAvgOrderByAggregateInput = {
79471
+ id?: SortOrder
79472
+ brandId?: SortOrder
79473
+ }
79474
+
79475
+ export type CreatorSearchFilterMaxOrderByAggregateInput = {
79476
+ id?: SortOrder
79477
+ brandId?: SortOrder
79478
+ title?: SortOrder
79479
+ createdAt?: SortOrder
79480
+ updatedAt?: SortOrder
79481
+ }
79482
+
79483
+ export type CreatorSearchFilterMinOrderByAggregateInput = {
79484
+ id?: SortOrder
79485
+ brandId?: SortOrder
79486
+ title?: SortOrder
79487
+ createdAt?: SortOrder
79488
+ updatedAt?: SortOrder
79489
+ }
79490
+
79491
+ export type CreatorSearchFilterSumOrderByAggregateInput = {
79492
+ id?: SortOrder
79493
+ brandId?: SortOrder
79494
+ }
79495
+
78216
79496
  export type UserCreateNestedOneWithoutReferredUsersInput = {
78217
79497
  create?: XOR<UserCreateWithoutReferredUsersInput, UserUncheckedCreateWithoutReferredUsersInput>
78218
79498
  connectOrCreate?: UserCreateOrConnectWithoutReferredUsersInput
@@ -79367,6 +80647,13 @@ export namespace Prisma {
79367
80647
  connect?: BrandToImageWhereUniqueInput | BrandToImageWhereUniqueInput[]
79368
80648
  }
79369
80649
 
80650
+ export type CreatorSearchFilterCreateNestedManyWithoutBrandInput = {
80651
+ create?: XOR<CreatorSearchFilterCreateWithoutBrandInput, CreatorSearchFilterUncheckedCreateWithoutBrandInput> | CreatorSearchFilterCreateWithoutBrandInput[] | CreatorSearchFilterUncheckedCreateWithoutBrandInput[]
80652
+ connectOrCreate?: CreatorSearchFilterCreateOrConnectWithoutBrandInput | CreatorSearchFilterCreateOrConnectWithoutBrandInput[]
80653
+ createMany?: CreatorSearchFilterCreateManyBrandInputEnvelope
80654
+ connect?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
80655
+ }
80656
+
79370
80657
  export type BrandCreateNestedOneWithoutChildBrandsInput = {
79371
80658
  create?: XOR<BrandCreateWithoutChildBrandsInput, BrandUncheckedCreateWithoutChildBrandsInput>
79372
80659
  connectOrCreate?: BrandCreateOrConnectWithoutChildBrandsInput
@@ -79496,6 +80783,13 @@ export namespace Prisma {
79496
80783
  connect?: BrandToImageWhereUniqueInput | BrandToImageWhereUniqueInput[]
79497
80784
  }
79498
80785
 
80786
+ export type CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput = {
80787
+ create?: XOR<CreatorSearchFilterCreateWithoutBrandInput, CreatorSearchFilterUncheckedCreateWithoutBrandInput> | CreatorSearchFilterCreateWithoutBrandInput[] | CreatorSearchFilterUncheckedCreateWithoutBrandInput[]
80788
+ connectOrCreate?: CreatorSearchFilterCreateOrConnectWithoutBrandInput | CreatorSearchFilterCreateOrConnectWithoutBrandInput[]
80789
+ createMany?: CreatorSearchFilterCreateManyBrandInputEnvelope
80790
+ connect?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
80791
+ }
80792
+
79499
80793
  export type BrandUncheckedCreateNestedManyWithoutParentBrandInput = {
79500
80794
  create?: XOR<BrandCreateWithoutParentBrandInput, BrandUncheckedCreateWithoutParentBrandInput> | BrandCreateWithoutParentBrandInput[] | BrandUncheckedCreateWithoutParentBrandInput[]
79501
80795
  connectOrCreate?: BrandCreateOrConnectWithoutParentBrandInput | BrandCreateOrConnectWithoutParentBrandInput[]
@@ -79739,6 +81033,20 @@ export namespace Prisma {
79739
81033
  deleteMany?: BrandToImageScalarWhereInput | BrandToImageScalarWhereInput[]
79740
81034
  }
79741
81035
 
81036
+ export type CreatorSearchFilterUpdateManyWithoutBrandNestedInput = {
81037
+ create?: XOR<CreatorSearchFilterCreateWithoutBrandInput, CreatorSearchFilterUncheckedCreateWithoutBrandInput> | CreatorSearchFilterCreateWithoutBrandInput[] | CreatorSearchFilterUncheckedCreateWithoutBrandInput[]
81038
+ connectOrCreate?: CreatorSearchFilterCreateOrConnectWithoutBrandInput | CreatorSearchFilterCreateOrConnectWithoutBrandInput[]
81039
+ upsert?: CreatorSearchFilterUpsertWithWhereUniqueWithoutBrandInput | CreatorSearchFilterUpsertWithWhereUniqueWithoutBrandInput[]
81040
+ createMany?: CreatorSearchFilterCreateManyBrandInputEnvelope
81041
+ set?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
81042
+ disconnect?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
81043
+ delete?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
81044
+ connect?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
81045
+ update?: CreatorSearchFilterUpdateWithWhereUniqueWithoutBrandInput | CreatorSearchFilterUpdateWithWhereUniqueWithoutBrandInput[]
81046
+ updateMany?: CreatorSearchFilterUpdateManyWithWhereWithoutBrandInput | CreatorSearchFilterUpdateManyWithWhereWithoutBrandInput[]
81047
+ deleteMany?: CreatorSearchFilterScalarWhereInput | CreatorSearchFilterScalarWhereInput[]
81048
+ }
81049
+
79742
81050
  export type BrandUpdateOneWithoutChildBrandsNestedInput = {
79743
81051
  create?: XOR<BrandCreateWithoutChildBrandsInput, BrandUncheckedCreateWithoutChildBrandsInput>
79744
81052
  connectOrCreate?: BrandCreateOrConnectWithoutChildBrandsInput
@@ -79989,6 +81297,20 @@ export namespace Prisma {
79989
81297
  deleteMany?: BrandToImageScalarWhereInput | BrandToImageScalarWhereInput[]
79990
81298
  }
79991
81299
 
81300
+ export type CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput = {
81301
+ create?: XOR<CreatorSearchFilterCreateWithoutBrandInput, CreatorSearchFilterUncheckedCreateWithoutBrandInput> | CreatorSearchFilterCreateWithoutBrandInput[] | CreatorSearchFilterUncheckedCreateWithoutBrandInput[]
81302
+ connectOrCreate?: CreatorSearchFilterCreateOrConnectWithoutBrandInput | CreatorSearchFilterCreateOrConnectWithoutBrandInput[]
81303
+ upsert?: CreatorSearchFilterUpsertWithWhereUniqueWithoutBrandInput | CreatorSearchFilterUpsertWithWhereUniqueWithoutBrandInput[]
81304
+ createMany?: CreatorSearchFilterCreateManyBrandInputEnvelope
81305
+ set?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
81306
+ disconnect?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
81307
+ delete?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
81308
+ connect?: CreatorSearchFilterWhereUniqueInput | CreatorSearchFilterWhereUniqueInput[]
81309
+ update?: CreatorSearchFilterUpdateWithWhereUniqueWithoutBrandInput | CreatorSearchFilterUpdateWithWhereUniqueWithoutBrandInput[]
81310
+ updateMany?: CreatorSearchFilterUpdateManyWithWhereWithoutBrandInput | CreatorSearchFilterUpdateManyWithWhereWithoutBrandInput[]
81311
+ deleteMany?: CreatorSearchFilterScalarWhereInput | CreatorSearchFilterScalarWhereInput[]
81312
+ }
81313
+
79992
81314
  export type BrandUncheckedUpdateManyWithoutParentBrandNestedInput = {
79993
81315
  create?: XOR<BrandCreateWithoutParentBrandInput, BrandUncheckedCreateWithoutParentBrandInput> | BrandCreateWithoutParentBrandInput[] | BrandUncheckedCreateWithoutParentBrandInput[]
79994
81316
  connectOrCreate?: BrandCreateOrConnectWithoutParentBrandInput | BrandCreateOrConnectWithoutParentBrandInput[]
@@ -82623,6 +83945,20 @@ export namespace Prisma {
82623
83945
  update?: XOR<XOR<UserUpdateToOneWithWhereWithoutRakutenActivityInput, UserUpdateWithoutRakutenActivityInput>, UserUncheckedUpdateWithoutRakutenActivityInput>
82624
83946
  }
82625
83947
 
83948
+ export type BrandCreateNestedOneWithoutCreatorsearchfilterInput = {
83949
+ create?: XOR<BrandCreateWithoutCreatorsearchfilterInput, BrandUncheckedCreateWithoutCreatorsearchfilterInput>
83950
+ connectOrCreate?: BrandCreateOrConnectWithoutCreatorsearchfilterInput
83951
+ connect?: BrandWhereUniqueInput
83952
+ }
83953
+
83954
+ export type BrandUpdateOneRequiredWithoutCreatorsearchfilterNestedInput = {
83955
+ create?: XOR<BrandCreateWithoutCreatorsearchfilterInput, BrandUncheckedCreateWithoutCreatorsearchfilterInput>
83956
+ connectOrCreate?: BrandCreateOrConnectWithoutCreatorsearchfilterInput
83957
+ upsert?: BrandUpsertWithoutCreatorsearchfilterInput
83958
+ connect?: BrandWhereUniqueInput
83959
+ update?: XOR<XOR<BrandUpdateToOneWithWhereWithoutCreatorsearchfilterInput, BrandUpdateWithoutCreatorsearchfilterInput>, BrandUncheckedUpdateWithoutCreatorsearchfilterInput>
83960
+ }
83961
+
82626
83962
  export type NestedIntFilter<$PrismaModel = never> = {
82627
83963
  equals?: number | IntFieldRefInput<$PrismaModel>
82628
83964
  in?: number[] | ListIntFieldRefInput<$PrismaModel>
@@ -83525,6 +84861,7 @@ export namespace Prisma {
83525
84861
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
83526
84862
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
83527
84863
  images?: BrandToImageCreateNestedManyWithoutBrandInput
84864
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
83528
84865
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
83529
84866
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
83530
84867
  }
@@ -83559,6 +84896,7 @@ export namespace Prisma {
83559
84896
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
83560
84897
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
83561
84898
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
84899
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
83562
84900
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
83563
84901
  }
83564
84902
 
@@ -85215,6 +86553,7 @@ export namespace Prisma {
85215
86553
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
85216
86554
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
85217
86555
  images?: BrandToImageCreateNestedManyWithoutBrandInput
86556
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
85218
86557
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
85219
86558
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
85220
86559
  }
@@ -85249,6 +86588,7 @@ export namespace Prisma {
85249
86588
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
85250
86589
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
85251
86590
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
86591
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
85252
86592
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
85253
86593
  }
85254
86594
 
@@ -85386,6 +86726,7 @@ export namespace Prisma {
85386
86726
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
85387
86727
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
85388
86728
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
86729
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
85389
86730
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
85390
86731
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
85391
86732
  }
@@ -85420,6 +86761,7 @@ export namespace Prisma {
85420
86761
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
85421
86762
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
85422
86763
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
86764
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
85423
86765
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
85424
86766
  }
85425
86767
 
@@ -85535,6 +86877,7 @@ export namespace Prisma {
85535
86877
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
85536
86878
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
85537
86879
  images?: BrandToImageCreateNestedManyWithoutBrandInput
86880
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
85538
86881
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
85539
86882
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
85540
86883
  }
@@ -85569,6 +86912,7 @@ export namespace Prisma {
85569
86912
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
85570
86913
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
85571
86914
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
86915
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
85572
86916
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
85573
86917
  }
85574
86918
 
@@ -85706,6 +87050,7 @@ export namespace Prisma {
85706
87050
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
85707
87051
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
85708
87052
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
87053
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
85709
87054
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
85710
87055
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
85711
87056
  }
@@ -85740,6 +87085,7 @@ export namespace Prisma {
85740
87085
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
85741
87086
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
85742
87087
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
87088
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
85743
87089
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
85744
87090
  }
85745
87091
 
@@ -85855,6 +87201,7 @@ export namespace Prisma {
85855
87201
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
85856
87202
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
85857
87203
  images?: BrandToImageCreateNestedManyWithoutBrandInput
87204
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
85858
87205
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
85859
87206
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
85860
87207
  }
@@ -85889,6 +87236,7 @@ export namespace Prisma {
85889
87236
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
85890
87237
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
85891
87238
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
87239
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
85892
87240
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
85893
87241
  }
85894
87242
 
@@ -86026,6 +87374,7 @@ export namespace Prisma {
86026
87374
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
86027
87375
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
86028
87376
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
87377
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
86029
87378
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
86030
87379
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
86031
87380
  }
@@ -86060,6 +87409,7 @@ export namespace Prisma {
86060
87409
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
86061
87410
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
86062
87411
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
87412
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
86063
87413
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
86064
87414
  }
86065
87415
 
@@ -86697,6 +88047,7 @@ export namespace Prisma {
86697
88047
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
86698
88048
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
86699
88049
  images?: BrandToImageCreateNestedManyWithoutBrandInput
88050
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
86700
88051
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
86701
88052
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
86702
88053
  }
@@ -86731,6 +88082,7 @@ export namespace Prisma {
86731
88082
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
86732
88083
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
86733
88084
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
88085
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
86734
88086
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
86735
88087
  }
86736
88088
 
@@ -86868,6 +88220,7 @@ export namespace Prisma {
86868
88220
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
86869
88221
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
86870
88222
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
88223
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
86871
88224
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
86872
88225
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
86873
88226
  }
@@ -86902,6 +88255,7 @@ export namespace Prisma {
86902
88255
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
86903
88256
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
86904
88257
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
88258
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
86905
88259
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
86906
88260
  }
86907
88261
 
@@ -87658,6 +89012,31 @@ export namespace Prisma {
87658
89012
  skipDuplicates?: boolean
87659
89013
  }
87660
89014
 
89015
+ export type CreatorSearchFilterCreateWithoutBrandInput = {
89016
+ title: string
89017
+ filters?: JsonNullValueInput | InputJsonValue
89018
+ createdAt?: Date | string
89019
+ updatedAt?: Date | string | null
89020
+ }
89021
+
89022
+ export type CreatorSearchFilterUncheckedCreateWithoutBrandInput = {
89023
+ id?: number
89024
+ title: string
89025
+ filters?: JsonNullValueInput | InputJsonValue
89026
+ createdAt?: Date | string
89027
+ updatedAt?: Date | string | null
89028
+ }
89029
+
89030
+ export type CreatorSearchFilterCreateOrConnectWithoutBrandInput = {
89031
+ where: CreatorSearchFilterWhereUniqueInput
89032
+ create: XOR<CreatorSearchFilterCreateWithoutBrandInput, CreatorSearchFilterUncheckedCreateWithoutBrandInput>
89033
+ }
89034
+
89035
+ export type CreatorSearchFilterCreateManyBrandInputEnvelope = {
89036
+ data: CreatorSearchFilterCreateManyBrandInput | CreatorSearchFilterCreateManyBrandInput[]
89037
+ skipDuplicates?: boolean
89038
+ }
89039
+
87661
89040
  export type BrandCreateWithoutChildBrandsInput = {
87662
89041
  name: string
87663
89042
  description?: string | null
@@ -87687,6 +89066,7 @@ export namespace Prisma {
87687
89066
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
87688
89067
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
87689
89068
  images?: BrandToImageCreateNestedManyWithoutBrandInput
89069
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
87690
89070
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
87691
89071
  }
87692
89072
 
@@ -87721,6 +89101,7 @@ export namespace Prisma {
87721
89101
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
87722
89102
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
87723
89103
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
89104
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
87724
89105
  }
87725
89106
 
87726
89107
  export type BrandCreateOrConnectWithoutChildBrandsInput = {
@@ -87757,6 +89138,7 @@ export namespace Prisma {
87757
89138
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
87758
89139
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
87759
89140
  images?: BrandToImageCreateNestedManyWithoutBrandInput
89141
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
87760
89142
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
87761
89143
  }
87762
89144
 
@@ -87790,6 +89172,7 @@ export namespace Prisma {
87790
89172
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
87791
89173
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
87792
89174
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
89175
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
87793
89176
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
87794
89177
  }
87795
89178
 
@@ -88505,6 +89888,34 @@ export namespace Prisma {
88505
89888
  type?: StringFilter<"BrandToImage"> | string
88506
89889
  }
88507
89890
 
89891
+ export type CreatorSearchFilterUpsertWithWhereUniqueWithoutBrandInput = {
89892
+ where: CreatorSearchFilterWhereUniqueInput
89893
+ update: XOR<CreatorSearchFilterUpdateWithoutBrandInput, CreatorSearchFilterUncheckedUpdateWithoutBrandInput>
89894
+ create: XOR<CreatorSearchFilterCreateWithoutBrandInput, CreatorSearchFilterUncheckedCreateWithoutBrandInput>
89895
+ }
89896
+
89897
+ export type CreatorSearchFilterUpdateWithWhereUniqueWithoutBrandInput = {
89898
+ where: CreatorSearchFilterWhereUniqueInput
89899
+ data: XOR<CreatorSearchFilterUpdateWithoutBrandInput, CreatorSearchFilterUncheckedUpdateWithoutBrandInput>
89900
+ }
89901
+
89902
+ export type CreatorSearchFilterUpdateManyWithWhereWithoutBrandInput = {
89903
+ where: CreatorSearchFilterScalarWhereInput
89904
+ data: XOR<CreatorSearchFilterUpdateManyMutationInput, CreatorSearchFilterUncheckedUpdateManyWithoutBrandInput>
89905
+ }
89906
+
89907
+ export type CreatorSearchFilterScalarWhereInput = {
89908
+ AND?: CreatorSearchFilterScalarWhereInput | CreatorSearchFilterScalarWhereInput[]
89909
+ OR?: CreatorSearchFilterScalarWhereInput[]
89910
+ NOT?: CreatorSearchFilterScalarWhereInput | CreatorSearchFilterScalarWhereInput[]
89911
+ id?: IntFilter<"CreatorSearchFilter"> | number
89912
+ brandId?: IntFilter<"CreatorSearchFilter"> | number
89913
+ title?: StringFilter<"CreatorSearchFilter"> | string
89914
+ filters?: JsonFilter<"CreatorSearchFilter">
89915
+ createdAt?: DateTimeFilter<"CreatorSearchFilter"> | Date | string
89916
+ updatedAt?: DateTimeNullableFilter<"CreatorSearchFilter"> | Date | string | null
89917
+ }
89918
+
88508
89919
  export type BrandUpsertWithoutChildBrandsInput = {
88509
89920
  update: XOR<BrandUpdateWithoutChildBrandsInput, BrandUncheckedUpdateWithoutChildBrandsInput>
88510
89921
  create: XOR<BrandCreateWithoutChildBrandsInput, BrandUncheckedCreateWithoutChildBrandsInput>
@@ -88545,6 +89956,7 @@ export namespace Prisma {
88545
89956
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
88546
89957
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
88547
89958
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
89959
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
88548
89960
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
88549
89961
  }
88550
89962
 
@@ -88579,6 +89991,7 @@ export namespace Prisma {
88579
89991
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
88580
89992
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
88581
89993
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
89994
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
88582
89995
  }
88583
89996
 
88584
89997
  export type BrandUpsertWithWhereUniqueWithoutParentBrandInput = {
@@ -88677,6 +90090,7 @@ export namespace Prisma {
88677
90090
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
88678
90091
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
88679
90092
  images?: BrandToImageCreateNestedManyWithoutBrandInput
90093
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
88680
90094
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
88681
90095
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
88682
90096
  }
@@ -88711,6 +90125,7 @@ export namespace Prisma {
88711
90125
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
88712
90126
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
88713
90127
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
90128
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
88714
90129
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
88715
90130
  }
88716
90131
 
@@ -88822,6 +90237,7 @@ export namespace Prisma {
88822
90237
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
88823
90238
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
88824
90239
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
90240
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
88825
90241
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
88826
90242
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
88827
90243
  }
@@ -88856,6 +90272,7 @@ export namespace Prisma {
88856
90272
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
88857
90273
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
88858
90274
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
90275
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
88859
90276
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
88860
90277
  }
88861
90278
 
@@ -88939,6 +90356,7 @@ export namespace Prisma {
88939
90356
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
88940
90357
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
88941
90358
  images?: BrandToImageCreateNestedManyWithoutBrandInput
90359
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
88942
90360
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
88943
90361
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
88944
90362
  }
@@ -88973,6 +90391,7 @@ export namespace Prisma {
88973
90391
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
88974
90392
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
88975
90393
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
90394
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
88976
90395
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
88977
90396
  }
88978
90397
 
@@ -89084,6 +90503,7 @@ export namespace Prisma {
89084
90503
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
89085
90504
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
89086
90505
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
90506
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
89087
90507
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
89088
90508
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
89089
90509
  }
@@ -89118,6 +90538,7 @@ export namespace Prisma {
89118
90538
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
89119
90539
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
89120
90540
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
90541
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
89121
90542
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
89122
90543
  }
89123
90544
 
@@ -89149,6 +90570,7 @@ export namespace Prisma {
89149
90570
  emailTemplates?: EmailTemplateCreateNestedManyWithoutBrandInput
89150
90571
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
89151
90572
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
90573
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
89152
90574
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
89153
90575
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
89154
90576
  }
@@ -89183,6 +90605,7 @@ export namespace Prisma {
89183
90605
  emailTemplates?: EmailTemplateUncheckedCreateNestedManyWithoutBrandInput
89184
90606
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
89185
90607
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
90608
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
89186
90609
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
89187
90610
  }
89188
90611
 
@@ -89251,6 +90674,7 @@ export namespace Prisma {
89251
90674
  emailTemplates?: EmailTemplateUpdateManyWithoutBrandNestedInput
89252
90675
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
89253
90676
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
90677
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
89254
90678
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
89255
90679
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
89256
90680
  }
@@ -89285,6 +90709,7 @@ export namespace Prisma {
89285
90709
  emailTemplates?: EmailTemplateUncheckedUpdateManyWithoutBrandNestedInput
89286
90710
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
89287
90711
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
90712
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
89288
90713
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
89289
90714
  }
89290
90715
 
@@ -89342,6 +90767,7 @@ export namespace Prisma {
89342
90767
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
89343
90768
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
89344
90769
  images?: BrandToImageCreateNestedManyWithoutBrandInput
90770
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
89345
90771
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
89346
90772
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
89347
90773
  }
@@ -89376,6 +90802,7 @@ export namespace Prisma {
89376
90802
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
89377
90803
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
89378
90804
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
90805
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
89379
90806
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
89380
90807
  }
89381
90808
 
@@ -89443,6 +90870,7 @@ export namespace Prisma {
89443
90870
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
89444
90871
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
89445
90872
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
90873
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
89446
90874
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
89447
90875
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
89448
90876
  }
@@ -89477,6 +90905,7 @@ export namespace Prisma {
89477
90905
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
89478
90906
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
89479
90907
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
90908
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
89480
90909
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
89481
90910
  }
89482
90911
 
@@ -90364,6 +91793,7 @@ export namespace Prisma {
90364
91793
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
90365
91794
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
90366
91795
  images?: BrandToImageCreateNestedManyWithoutBrandInput
91796
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
90367
91797
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
90368
91798
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
90369
91799
  }
@@ -90398,6 +91828,7 @@ export namespace Prisma {
90398
91828
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
90399
91829
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
90400
91830
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
91831
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
90401
91832
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
90402
91833
  }
90403
91834
 
@@ -90691,6 +92122,7 @@ export namespace Prisma {
90691
92122
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
90692
92123
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
90693
92124
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
92125
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
90694
92126
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
90695
92127
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
90696
92128
  }
@@ -90725,6 +92157,7 @@ export namespace Prisma {
90725
92157
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
90726
92158
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
90727
92159
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
92160
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
90728
92161
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
90729
92162
  }
90730
92163
 
@@ -95243,6 +96676,7 @@ export namespace Prisma {
95243
96676
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
95244
96677
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
95245
96678
  images?: BrandToImageCreateNestedManyWithoutBrandInput
96679
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
95246
96680
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
95247
96681
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
95248
96682
  }
@@ -95277,6 +96711,7 @@ export namespace Prisma {
95277
96711
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
95278
96712
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
95279
96713
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
96714
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
95280
96715
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
95281
96716
  }
95282
96717
 
@@ -95472,6 +96907,7 @@ export namespace Prisma {
95472
96907
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
95473
96908
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
95474
96909
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
96910
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
95475
96911
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
95476
96912
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
95477
96913
  }
@@ -95506,6 +96942,7 @@ export namespace Prisma {
95506
96942
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
95507
96943
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
95508
96944
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
96945
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
95509
96946
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
95510
96947
  }
95511
96948
 
@@ -95728,6 +97165,7 @@ export namespace Prisma {
95728
97165
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
95729
97166
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
95730
97167
  images?: BrandToImageCreateNestedManyWithoutBrandInput
97168
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
95731
97169
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
95732
97170
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
95733
97171
  }
@@ -95762,6 +97200,7 @@ export namespace Prisma {
95762
97200
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
95763
97201
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
95764
97202
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
97203
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
95765
97204
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
95766
97205
  }
95767
97206
 
@@ -95825,6 +97264,7 @@ export namespace Prisma {
95825
97264
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
95826
97265
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
95827
97266
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
97267
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
95828
97268
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
95829
97269
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
95830
97270
  }
@@ -95859,6 +97299,7 @@ export namespace Prisma {
95859
97299
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
95860
97300
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
95861
97301
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
97302
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
95862
97303
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
95863
97304
  }
95864
97305
 
@@ -96327,6 +97768,7 @@ export namespace Prisma {
96327
97768
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
96328
97769
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
96329
97770
  images?: BrandToImageCreateNestedManyWithoutBrandInput
97771
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
96330
97772
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
96331
97773
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
96332
97774
  }
@@ -96361,6 +97803,7 @@ export namespace Prisma {
96361
97803
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
96362
97804
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
96363
97805
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
97806
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
96364
97807
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
96365
97808
  }
96366
97809
 
@@ -96408,6 +97851,7 @@ export namespace Prisma {
96408
97851
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
96409
97852
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
96410
97853
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
97854
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
96411
97855
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
96412
97856
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
96413
97857
  }
@@ -96442,6 +97886,7 @@ export namespace Prisma {
96442
97886
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
96443
97887
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
96444
97888
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
97889
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
96445
97890
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
96446
97891
  }
96447
97892
 
@@ -96473,6 +97918,7 @@ export namespace Prisma {
96473
97918
  emailTemplates?: EmailTemplateCreateNestedManyWithoutBrandInput
96474
97919
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
96475
97920
  images?: BrandToImageCreateNestedManyWithoutBrandInput
97921
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
96476
97922
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
96477
97923
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
96478
97924
  }
@@ -96507,6 +97953,7 @@ export namespace Prisma {
96507
97953
  emailTemplates?: EmailTemplateUncheckedCreateNestedManyWithoutBrandInput
96508
97954
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
96509
97955
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
97956
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
96510
97957
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
96511
97958
  }
96512
97959
 
@@ -96784,6 +98231,7 @@ export namespace Prisma {
96784
98231
  emailTemplates?: EmailTemplateUpdateManyWithoutBrandNestedInput
96785
98232
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
96786
98233
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
98234
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
96787
98235
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
96788
98236
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
96789
98237
  }
@@ -96818,6 +98266,7 @@ export namespace Prisma {
96818
98266
  emailTemplates?: EmailTemplateUncheckedUpdateManyWithoutBrandNestedInput
96819
98267
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
96820
98268
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
98269
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
96821
98270
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
96822
98271
  }
96823
98272
 
@@ -97128,6 +98577,7 @@ export namespace Prisma {
97128
98577
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
97129
98578
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
97130
98579
  images?: BrandToImageCreateNestedManyWithoutBrandInput
98580
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
97131
98581
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
97132
98582
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
97133
98583
  }
@@ -97162,6 +98612,7 @@ export namespace Prisma {
97162
98612
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
97163
98613
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
97164
98614
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
98615
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
97165
98616
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
97166
98617
  }
97167
98618
 
@@ -97374,6 +98825,7 @@ export namespace Prisma {
97374
98825
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
97375
98826
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
97376
98827
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
98828
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
97377
98829
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
97378
98830
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
97379
98831
  }
@@ -97408,6 +98860,7 @@ export namespace Prisma {
97408
98860
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
97409
98861
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
97410
98862
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
98863
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
97411
98864
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
97412
98865
  }
97413
98866
 
@@ -98001,6 +99454,7 @@ export namespace Prisma {
98001
99454
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
98002
99455
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
98003
99456
  images?: BrandToImageCreateNestedManyWithoutBrandInput
99457
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
98004
99458
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
98005
99459
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
98006
99460
  }
@@ -98035,6 +99489,7 @@ export namespace Prisma {
98035
99489
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
98036
99490
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
98037
99491
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
99492
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
98038
99493
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
98039
99494
  }
98040
99495
 
@@ -98082,6 +99537,7 @@ export namespace Prisma {
98082
99537
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
98083
99538
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
98084
99539
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
99540
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
98085
99541
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
98086
99542
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
98087
99543
  }
@@ -98116,6 +99572,7 @@ export namespace Prisma {
98116
99572
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
98117
99573
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
98118
99574
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
99575
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
98119
99576
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
98120
99577
  }
98121
99578
 
@@ -98147,6 +99604,7 @@ export namespace Prisma {
98147
99604
  socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
98148
99605
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
98149
99606
  images?: BrandToImageCreateNestedManyWithoutBrandInput
99607
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
98150
99608
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
98151
99609
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
98152
99610
  }
@@ -98181,6 +99639,7 @@ export namespace Prisma {
98181
99639
  socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
98182
99640
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
98183
99641
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
99642
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
98184
99643
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
98185
99644
  }
98186
99645
 
@@ -98228,6 +99687,7 @@ export namespace Prisma {
98228
99687
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
98229
99688
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
98230
99689
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
99690
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
98231
99691
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
98232
99692
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
98233
99693
  }
@@ -98262,6 +99722,7 @@ export namespace Prisma {
98262
99722
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
98263
99723
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
98264
99724
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
99725
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
98265
99726
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
98266
99727
  }
98267
99728
 
@@ -98293,6 +99754,7 @@ export namespace Prisma {
98293
99754
  emailTemplates?: EmailTemplateCreateNestedManyWithoutBrandInput
98294
99755
  campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
98295
99756
  images?: BrandToImageCreateNestedManyWithoutBrandInput
99757
+ creatorsearchfilter?: CreatorSearchFilterCreateNestedManyWithoutBrandInput
98296
99758
  parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
98297
99759
  childBrands?: BrandCreateNestedManyWithoutParentBrandInput
98298
99760
  }
@@ -98327,6 +99789,7 @@ export namespace Prisma {
98327
99789
  emailTemplates?: EmailTemplateUncheckedCreateNestedManyWithoutBrandInput
98328
99790
  campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
98329
99791
  images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
99792
+ creatorsearchfilter?: CreatorSearchFilterUncheckedCreateNestedManyWithoutBrandInput
98330
99793
  childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
98331
99794
  }
98332
99795
 
@@ -98393,6 +99856,7 @@ export namespace Prisma {
98393
99856
  emailTemplates?: EmailTemplateUpdateManyWithoutBrandNestedInput
98394
99857
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
98395
99858
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
99859
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
98396
99860
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
98397
99861
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
98398
99862
  }
@@ -98427,6 +99891,7 @@ export namespace Prisma {
98427
99891
  emailTemplates?: EmailTemplateUncheckedUpdateManyWithoutBrandNestedInput
98428
99892
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
98429
99893
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
99894
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
98430
99895
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
98431
99896
  }
98432
99897
 
@@ -99122,6 +100587,156 @@ export namespace Prisma {
99122
100587
  socialProfiles?: SocialProfileUncheckedUpdateManyWithoutUserNestedInput
99123
100588
  }
99124
100589
 
100590
+ export type BrandCreateWithoutCreatorsearchfilterInput = {
100591
+ name: string
100592
+ description?: string | null
100593
+ website: string
100594
+ monthlyContacts?: number | null
100595
+ monthlyReports?: number | null
100596
+ lastContactDistribution?: Date | string | null
100597
+ logoUrl?: string | null
100598
+ affiliateBaseUrl?: string | null
100599
+ affiliateCommission?: number | null
100600
+ extraData?: JsonNullValueInput | InputJsonValue
100601
+ dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
100602
+ instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
100603
+ youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
100604
+ tiktokProfile?: TiktokProfileCreateNestedOneWithoutBrandInput
100605
+ campaigns?: CampaignCreateNestedManyWithoutBrandInput
100606
+ brandUsers?: BrandUserProfileCreateNestedManyWithoutBrandInput
100607
+ searchContacts?: SearchContactsCreateNestedManyWithoutBrandInput
100608
+ reportCredits?: ReportCreditsCreateNestedManyWithoutBrandInput
100609
+ categories?: BrandToCategoryCreateNestedManyWithoutCampaignInput
100610
+ paymentTransactions?: PaymentTransactionCreateNestedManyWithoutBrandInput
100611
+ savedfiles?: SavedFileCreateNestedManyWithoutBrandInput
100612
+ creatorLists?: CreatorListCreateNestedManyWithoutBrandInput
100613
+ affiliateLinks?: BrandAffiliateLinkCreateNestedManyWithoutBrandInput
100614
+ messageTemplate?: MessageTemplateCreateNestedManyWithoutBrandInput
100615
+ emailTemplates?: EmailTemplateCreateNestedManyWithoutBrandInput
100616
+ socialListeningLists?: SocialListeningListCreateNestedManyWithoutBrandInput
100617
+ campaignInvites?: CampaignInviteCreateNestedManyWithoutBrandInput
100618
+ images?: BrandToImageCreateNestedManyWithoutBrandInput
100619
+ parentBrand?: BrandCreateNestedOneWithoutChildBrandsInput
100620
+ childBrands?: BrandCreateNestedManyWithoutParentBrandInput
100621
+ }
100622
+
100623
+ export type BrandUncheckedCreateWithoutCreatorsearchfilterInput = {
100624
+ id?: number
100625
+ name: string
100626
+ description?: string | null
100627
+ website: string
100628
+ monthlyContacts?: number | null
100629
+ monthlyReports?: number | null
100630
+ lastContactDistribution?: Date | string | null
100631
+ logoUrl?: string | null
100632
+ affiliateBaseUrl?: string | null
100633
+ affiliateCommission?: number | null
100634
+ extraData?: JsonNullValueInput | InputJsonValue
100635
+ specialistId?: number | null
100636
+ parentBrandId?: number | null
100637
+ instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
100638
+ youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
100639
+ tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
100640
+ campaigns?: CampaignUncheckedCreateNestedManyWithoutBrandInput
100641
+ brandUsers?: BrandUserProfileUncheckedCreateNestedManyWithoutBrandInput
100642
+ searchContacts?: SearchContactsUncheckedCreateNestedManyWithoutBrandInput
100643
+ reportCredits?: ReportCreditsUncheckedCreateNestedManyWithoutBrandInput
100644
+ categories?: BrandToCategoryUncheckedCreateNestedManyWithoutCampaignInput
100645
+ paymentTransactions?: PaymentTransactionUncheckedCreateNestedManyWithoutBrandInput
100646
+ savedfiles?: SavedFileUncheckedCreateNestedManyWithoutBrandInput
100647
+ creatorLists?: CreatorListUncheckedCreateNestedManyWithoutBrandInput
100648
+ affiliateLinks?: BrandAffiliateLinkUncheckedCreateNestedManyWithoutBrandInput
100649
+ messageTemplate?: MessageTemplateUncheckedCreateNestedManyWithoutBrandInput
100650
+ emailTemplates?: EmailTemplateUncheckedCreateNestedManyWithoutBrandInput
100651
+ socialListeningLists?: SocialListeningListUncheckedCreateNestedManyWithoutBrandInput
100652
+ campaignInvites?: CampaignInviteUncheckedCreateNestedManyWithoutBrandInput
100653
+ images?: BrandToImageUncheckedCreateNestedManyWithoutBrandInput
100654
+ childBrands?: BrandUncheckedCreateNestedManyWithoutParentBrandInput
100655
+ }
100656
+
100657
+ export type BrandCreateOrConnectWithoutCreatorsearchfilterInput = {
100658
+ where: BrandWhereUniqueInput
100659
+ create: XOR<BrandCreateWithoutCreatorsearchfilterInput, BrandUncheckedCreateWithoutCreatorsearchfilterInput>
100660
+ }
100661
+
100662
+ export type BrandUpsertWithoutCreatorsearchfilterInput = {
100663
+ update: XOR<BrandUpdateWithoutCreatorsearchfilterInput, BrandUncheckedUpdateWithoutCreatorsearchfilterInput>
100664
+ create: XOR<BrandCreateWithoutCreatorsearchfilterInput, BrandUncheckedCreateWithoutCreatorsearchfilterInput>
100665
+ where?: BrandWhereInput
100666
+ }
100667
+
100668
+ export type BrandUpdateToOneWithWhereWithoutCreatorsearchfilterInput = {
100669
+ where?: BrandWhereInput
100670
+ data: XOR<BrandUpdateWithoutCreatorsearchfilterInput, BrandUncheckedUpdateWithoutCreatorsearchfilterInput>
100671
+ }
100672
+
100673
+ export type BrandUpdateWithoutCreatorsearchfilterInput = {
100674
+ name?: StringFieldUpdateOperationsInput | string
100675
+ description?: NullableStringFieldUpdateOperationsInput | string | null
100676
+ website?: StringFieldUpdateOperationsInput | string
100677
+ monthlyContacts?: NullableIntFieldUpdateOperationsInput | number | null
100678
+ monthlyReports?: NullableIntFieldUpdateOperationsInput | number | null
100679
+ lastContactDistribution?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
100680
+ logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
100681
+ affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
100682
+ affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
100683
+ extraData?: JsonNullValueInput | InputJsonValue
100684
+ dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
100685
+ instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
100686
+ youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
100687
+ tiktokProfile?: TiktokProfileUpdateOneWithoutBrandNestedInput
100688
+ campaigns?: CampaignUpdateManyWithoutBrandNestedInput
100689
+ brandUsers?: BrandUserProfileUpdateManyWithoutBrandNestedInput
100690
+ searchContacts?: SearchContactsUpdateManyWithoutBrandNestedInput
100691
+ reportCredits?: ReportCreditsUpdateManyWithoutBrandNestedInput
100692
+ categories?: BrandToCategoryUpdateManyWithoutCampaignNestedInput
100693
+ paymentTransactions?: PaymentTransactionUpdateManyWithoutBrandNestedInput
100694
+ savedfiles?: SavedFileUpdateManyWithoutBrandNestedInput
100695
+ creatorLists?: CreatorListUpdateManyWithoutBrandNestedInput
100696
+ affiliateLinks?: BrandAffiliateLinkUpdateManyWithoutBrandNestedInput
100697
+ messageTemplate?: MessageTemplateUpdateManyWithoutBrandNestedInput
100698
+ emailTemplates?: EmailTemplateUpdateManyWithoutBrandNestedInput
100699
+ socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
100700
+ campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
100701
+ images?: BrandToImageUpdateManyWithoutBrandNestedInput
100702
+ parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
100703
+ childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
100704
+ }
100705
+
100706
+ export type BrandUncheckedUpdateWithoutCreatorsearchfilterInput = {
100707
+ id?: IntFieldUpdateOperationsInput | number
100708
+ name?: StringFieldUpdateOperationsInput | string
100709
+ description?: NullableStringFieldUpdateOperationsInput | string | null
100710
+ website?: StringFieldUpdateOperationsInput | string
100711
+ monthlyContacts?: NullableIntFieldUpdateOperationsInput | number | null
100712
+ monthlyReports?: NullableIntFieldUpdateOperationsInput | number | null
100713
+ lastContactDistribution?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
100714
+ logoUrl?: NullableStringFieldUpdateOperationsInput | string | null
100715
+ affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
100716
+ affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
100717
+ extraData?: JsonNullValueInput | InputJsonValue
100718
+ specialistId?: NullableIntFieldUpdateOperationsInput | number | null
100719
+ parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
100720
+ instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
100721
+ youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
100722
+ tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
100723
+ campaigns?: CampaignUncheckedUpdateManyWithoutBrandNestedInput
100724
+ brandUsers?: BrandUserProfileUncheckedUpdateManyWithoutBrandNestedInput
100725
+ searchContacts?: SearchContactsUncheckedUpdateManyWithoutBrandNestedInput
100726
+ reportCredits?: ReportCreditsUncheckedUpdateManyWithoutBrandNestedInput
100727
+ categories?: BrandToCategoryUncheckedUpdateManyWithoutCampaignNestedInput
100728
+ paymentTransactions?: PaymentTransactionUncheckedUpdateManyWithoutBrandNestedInput
100729
+ savedfiles?: SavedFileUncheckedUpdateManyWithoutBrandNestedInput
100730
+ creatorLists?: CreatorListUncheckedUpdateManyWithoutBrandNestedInput
100731
+ affiliateLinks?: BrandAffiliateLinkUncheckedUpdateManyWithoutBrandNestedInput
100732
+ messageTemplate?: MessageTemplateUncheckedUpdateManyWithoutBrandNestedInput
100733
+ emailTemplates?: EmailTemplateUncheckedUpdateManyWithoutBrandNestedInput
100734
+ socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
100735
+ campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
100736
+ images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
100737
+ childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
100738
+ }
100739
+
99125
100740
  export type UserCreateManyReferrerInput = {
99126
100741
  id?: number
99127
100742
  role: string
@@ -99512,6 +101127,7 @@ export namespace Prisma {
99512
101127
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
99513
101128
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
99514
101129
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
101130
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
99515
101131
  parentBrand?: BrandUpdateOneWithoutChildBrandsNestedInput
99516
101132
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
99517
101133
  }
@@ -99546,6 +101162,7 @@ export namespace Prisma {
99546
101162
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
99547
101163
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
99548
101164
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
101165
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
99549
101166
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
99550
101167
  }
99551
101168
 
@@ -100066,6 +101683,14 @@ export namespace Prisma {
100066
101683
  type: string
100067
101684
  }
100068
101685
 
101686
+ export type CreatorSearchFilterCreateManyBrandInput = {
101687
+ id?: number
101688
+ title: string
101689
+ filters?: JsonNullValueInput | InputJsonValue
101690
+ createdAt?: Date | string
101691
+ updatedAt?: Date | string | null
101692
+ }
101693
+
100069
101694
  export type BrandCreateManyParentBrandInput = {
100070
101695
  id?: number
100071
101696
  name: string
@@ -100602,6 +102227,29 @@ export namespace Prisma {
100602
102227
  type?: StringFieldUpdateOperationsInput | string
100603
102228
  }
100604
102229
 
102230
+ export type CreatorSearchFilterUpdateWithoutBrandInput = {
102231
+ title?: StringFieldUpdateOperationsInput | string
102232
+ filters?: JsonNullValueInput | InputJsonValue
102233
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
102234
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
102235
+ }
102236
+
102237
+ export type CreatorSearchFilterUncheckedUpdateWithoutBrandInput = {
102238
+ id?: IntFieldUpdateOperationsInput | number
102239
+ title?: StringFieldUpdateOperationsInput | string
102240
+ filters?: JsonNullValueInput | InputJsonValue
102241
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
102242
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
102243
+ }
102244
+
102245
+ export type CreatorSearchFilterUncheckedUpdateManyWithoutBrandInput = {
102246
+ id?: IntFieldUpdateOperationsInput | number
102247
+ title?: StringFieldUpdateOperationsInput | string
102248
+ filters?: JsonNullValueInput | InputJsonValue
102249
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
102250
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
102251
+ }
102252
+
100605
102253
  export type BrandUpdateWithoutParentBrandInput = {
100606
102254
  name?: StringFieldUpdateOperationsInput | string
100607
102255
  description?: NullableStringFieldUpdateOperationsInput | string | null
@@ -100631,6 +102279,7 @@ export namespace Prisma {
100631
102279
  socialListeningLists?: SocialListeningListUpdateManyWithoutBrandNestedInput
100632
102280
  campaignInvites?: CampaignInviteUpdateManyWithoutBrandNestedInput
100633
102281
  images?: BrandToImageUpdateManyWithoutBrandNestedInput
102282
+ creatorsearchfilter?: CreatorSearchFilterUpdateManyWithoutBrandNestedInput
100634
102283
  childBrands?: BrandUpdateManyWithoutParentBrandNestedInput
100635
102284
  }
100636
102285
 
@@ -100664,6 +102313,7 @@ export namespace Prisma {
100664
102313
  socialListeningLists?: SocialListeningListUncheckedUpdateManyWithoutBrandNestedInput
100665
102314
  campaignInvites?: CampaignInviteUncheckedUpdateManyWithoutBrandNestedInput
100666
102315
  images?: BrandToImageUncheckedUpdateManyWithoutBrandNestedInput
102316
+ creatorsearchfilter?: CreatorSearchFilterUncheckedUpdateManyWithoutBrandNestedInput
100667
102317
  childBrands?: BrandUncheckedUpdateManyWithoutParentBrandNestedInput
100668
102318
  }
100669
102319
 
@@ -102302,6 +103952,10 @@ export namespace Prisma {
102302
103952
  * @deprecated Use SlowQueriesDefaultArgs instead
102303
103953
  */
102304
103954
  export type SlowQueriesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = SlowQueriesDefaultArgs<ExtArgs>
103955
+ /**
103956
+ * @deprecated Use CreatorSearchFilterDefaultArgs instead
103957
+ */
103958
+ export type CreatorSearchFilterArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CreatorSearchFilterDefaultArgs<ExtArgs>
102305
103959
 
102306
103960
  /**
102307
103961
  * Batch Payload for updateMany & deleteMany & createMany